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> |
| 46 | #include <import/xxhash.h> |
| 47 | |
Willy Tarreau | b255105 | 2020-06-09 09:07:15 +0200 | [diff] [blame] | 48 | #include <haproxy/api.h> |
| 49 | #include <haproxy/arg.h> |
| 50 | #include <haproxy/base64.h> |
Willy Tarreau | f1d32c4 | 2020-06-04 21:07:02 +0200 | [diff] [blame] | 51 | #include <haproxy/channel.h> |
Willy Tarreau | c13ed53 | 2020-06-02 10:22:45 +0200 | [diff] [blame] | 52 | #include <haproxy/chunk.h> |
Willy Tarreau | 83487a8 | 2020-06-04 20:19:54 +0200 | [diff] [blame] | 53 | #include <haproxy/cli.h> |
Willy Tarreau | 7ea393d | 2020-06-04 18:02:10 +0200 | [diff] [blame] | 54 | #include <haproxy/connection.h> |
Willy Tarreau | b255105 | 2020-06-09 09:07:15 +0200 | [diff] [blame] | 55 | #include <haproxy/dynbuf.h> |
Willy Tarreau | 8d36697 | 2020-05-27 16:10:29 +0200 | [diff] [blame] | 56 | #include <haproxy/errors.h> |
Willy Tarreau | b255105 | 2020-06-09 09:07:15 +0200 | [diff] [blame] | 57 | #include <haproxy/fd.h> |
| 58 | #include <haproxy/freq_ctr.h> |
Willy Tarreau | 762d7a5 | 2020-06-04 11:23:07 +0200 | [diff] [blame] | 59 | #include <haproxy/frontend.h> |
Willy Tarreau | f268ee8 | 2020-06-04 17:05:57 +0200 | [diff] [blame] | 60 | #include <haproxy/global.h> |
Willy Tarreau | c761f84 | 2020-06-04 11:40:28 +0200 | [diff] [blame] | 61 | #include <haproxy/http_rules.h> |
Willy Tarreau | aeed4a8 | 2020-06-04 22:01:04 +0200 | [diff] [blame] | 62 | #include <haproxy/log.h> |
Willy Tarreau | 6019fab | 2020-05-27 16:26:00 +0200 | [diff] [blame] | 63 | #include <haproxy/openssl-compat.h> |
Willy Tarreau | 225a90a | 2020-06-04 15:06:28 +0200 | [diff] [blame] | 64 | #include <haproxy/pattern-t.h> |
Willy Tarreau | b255105 | 2020-06-09 09:07:15 +0200 | [diff] [blame] | 65 | #include <haproxy/proto_tcp.h> |
Willy Tarreau | a264d96 | 2020-06-04 22:29:18 +0200 | [diff] [blame] | 66 | #include <haproxy/proxy.h> |
Willy Tarreau | 1e56f92 | 2020-06-04 23:20:13 +0200 | [diff] [blame] | 67 | #include <haproxy/server.h> |
Willy Tarreau | 334099c | 2020-06-03 18:38:48 +0200 | [diff] [blame] | 68 | #include <haproxy/shctx.h> |
Willy Tarreau | 47d7f90 | 2020-06-04 14:25:47 +0200 | [diff] [blame] | 69 | #include <haproxy/ssl_ckch.h> |
Willy Tarreau | 52d8872 | 2020-06-04 14:29:23 +0200 | [diff] [blame] | 70 | #include <haproxy/ssl_crtlist.h> |
Willy Tarreau | 209108d | 2020-06-04 20:30:20 +0200 | [diff] [blame] | 71 | #include <haproxy/ssl_sock.h> |
Willy Tarreau | b2bd865 | 2020-06-04 14:21:22 +0200 | [diff] [blame] | 72 | #include <haproxy/ssl_utils.h> |
William Lallemand | 17d0caa | 2022-03-16 17:48:19 +0100 | [diff] [blame] | 73 | #include <haproxy/sample.h> |
Amaury Denoyelle | 9963fa7 | 2020-11-03 17:10:00 +0100 | [diff] [blame] | 74 | #include <haproxy/stats.h> |
Willy Tarreau | dfd3de8 | 2020-06-04 23:46:14 +0200 | [diff] [blame] | 75 | #include <haproxy/stream-t.h> |
Willy Tarreau | 5e539c9 | 2020-06-04 20:45:39 +0200 | [diff] [blame] | 76 | #include <haproxy/stream_interface.h> |
Willy Tarreau | cea0e1b | 2020-06-04 17:25:40 +0200 | [diff] [blame] | 77 | #include <haproxy/task.h> |
Willy Tarreau | c2f7c58 | 2020-06-02 18:15:32 +0200 | [diff] [blame] | 78 | #include <haproxy/ticks.h> |
Willy Tarreau | 92b4f13 | 2020-06-01 11:05:15 +0200 | [diff] [blame] | 79 | #include <haproxy/time.h> |
Willy Tarreau | b255105 | 2020-06-09 09:07:15 +0200 | [diff] [blame] | 80 | #include <haproxy/tools.h> |
Willy Tarreau | a171892 | 2020-06-04 16:25:31 +0200 | [diff] [blame] | 81 | #include <haproxy/vars.h> |
Frédéric Lécaille | ec21652 | 2020-11-23 14:33:30 +0100 | [diff] [blame] | 82 | #include <haproxy/xprt_quic.h> |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 83 | |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 84 | |
Willy Tarreau | 9356dac | 2019-05-10 09:22:53 +0200 | [diff] [blame] | 85 | /* ***** READ THIS before adding code here! ***** |
| 86 | * |
| 87 | * Due to API incompatibilities between multiple OpenSSL versions and their |
| 88 | * derivatives, it's often tempting to add macros to (re-)define certain |
| 89 | * symbols. Please do not do this here, and do it in common/openssl-compat.h |
| 90 | * exclusively so that the whole code consistently uses the same macros. |
| 91 | * |
| 92 | * Whenever possible if a macro is missing in certain versions, it's better |
| 93 | * to conditionally define it in openssl-compat.h than using lots of ifdefs. |
| 94 | */ |
| 95 | |
Willy Tarreau | 71b734c | 2014-01-28 15:19:44 +0100 | [diff] [blame] | 96 | int sslconns = 0; |
| 97 | int totalsslconns = 0; |
Emeric Brun | ece0c33 | 2017-12-06 13:51:49 +0100 | [diff] [blame] | 98 | int nb_engines = 0; |
Emeric Brun | e1f38db | 2012-09-03 20:36:47 +0200 | [diff] [blame] | 99 | |
William Lallemand | e0f3fd5 | 2020-02-25 14:53:06 +0100 | [diff] [blame] | 100 | static struct eb_root cert_issuer_tree = EB_ROOT; /* issuers tree from "issuers-chain-path" */ |
| 101 | |
William Lallemand | 7fd8b45 | 2020-05-07 15:20:43 +0200 | [diff] [blame] | 102 | struct global_ssl global_ssl = { |
Willy Tarreau | ef93460 | 2016-12-22 23:12:01 +0100 | [diff] [blame] | 103 | #ifdef LISTEN_DEFAULT_CIPHERS |
| 104 | .listen_default_ciphers = LISTEN_DEFAULT_CIPHERS, |
| 105 | #endif |
| 106 | #ifdef CONNECT_DEFAULT_CIPHERS |
| 107 | .connect_default_ciphers = CONNECT_DEFAULT_CIPHERS, |
| 108 | #endif |
Ilya Shipitsin | f34ed0b | 2020-11-21 14:37:34 +0500 | [diff] [blame] | 109 | #ifdef HAVE_SSL_CTX_SET_CIPHERSUITES |
Dirkjan Bussink | 415150f | 2018-09-14 11:14:21 +0200 | [diff] [blame] | 110 | .listen_default_ciphersuites = LISTEN_DEFAULT_CIPHERSUITES, |
Dirkjan Bussink | 415150f | 2018-09-14 11:14:21 +0200 | [diff] [blame] | 111 | .connect_default_ciphersuites = CONNECT_DEFAULT_CIPHERSUITES, |
| 112 | #endif |
Willy Tarreau | ef93460 | 2016-12-22 23:12:01 +0100 | [diff] [blame] | 113 | .listen_default_ssloptions = BC_SSL_O_NONE, |
| 114 | .connect_default_ssloptions = SRV_SSL_O_NONE, |
| 115 | |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 116 | .listen_default_sslmethods.flags = MC_SSL_O_ALL, |
| 117 | .listen_default_sslmethods.min = CONF_TLSV_NONE, |
| 118 | .listen_default_sslmethods.max = CONF_TLSV_NONE, |
| 119 | .connect_default_sslmethods.flags = MC_SSL_O_ALL, |
| 120 | .connect_default_sslmethods.min = CONF_TLSV_NONE, |
| 121 | .connect_default_sslmethods.max = CONF_TLSV_NONE, |
| 122 | |
Willy Tarreau | ef93460 | 2016-12-22 23:12:01 +0100 | [diff] [blame] | 123 | #ifdef DEFAULT_SSL_MAX_RECORD |
| 124 | .max_record = DEFAULT_SSL_MAX_RECORD, |
| 125 | #endif |
| 126 | .default_dh_param = SSL_DEFAULT_DH_PARAM, |
| 127 | .ctx_cache = DEFAULT_SSL_CTX_CACHE, |
Thierry FOURNIER | 5bf7732 | 2017-02-25 12:45:22 +0100 | [diff] [blame] | 128 | .capture_cipherlist = 0, |
William Lallemand | 3af48e7 | 2020-02-03 17:15:52 +0100 | [diff] [blame] | 129 | .extra_files = SSL_GF_ALL, |
William Lallemand | 8e8581e | 2020-10-20 17:36:46 +0200 | [diff] [blame] | 130 | .extra_files_noext = 0, |
William Lallemand | ca5cf0a | 2021-06-09 16:46:12 +0200 | [diff] [blame] | 131 | #ifdef HAVE_SSL_KEYLOG |
William Lallemand | 7d42ef5 | 2020-07-06 11:41:30 +0200 | [diff] [blame] | 132 | .keylog = 0 |
| 133 | #endif |
Willy Tarreau | ef93460 | 2016-12-22 23:12:01 +0100 | [diff] [blame] | 134 | }; |
| 135 | |
Olivier Houchard | a8955d5 | 2019-04-07 22:00:38 +0200 | [diff] [blame] | 136 | static BIO_METHOD *ha_meth; |
| 137 | |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 138 | DECLARE_STATIC_POOL(ssl_sock_ctx_pool, "ssl_sock_ctx_pool", sizeof(struct ssl_sock_ctx)); |
| 139 | |
Amaury Denoyelle | 9963fa7 | 2020-11-03 17:10:00 +0100 | [diff] [blame] | 140 | /* ssl stats module */ |
| 141 | enum { |
Amaury Denoyelle | d0447a7 | 2020-11-03 17:10:02 +0100 | [diff] [blame] | 142 | SSL_ST_SESS, |
| 143 | SSL_ST_REUSED_SESS, |
Amaury Denoyelle | 034c162 | 2020-11-13 16:05:00 +0100 | [diff] [blame] | 144 | SSL_ST_FAILED_HANDSHAKE, |
Amaury Denoyelle | fbc3377 | 2020-11-03 17:10:01 +0100 | [diff] [blame] | 145 | |
Amaury Denoyelle | 9963fa7 | 2020-11-03 17:10:00 +0100 | [diff] [blame] | 146 | SSL_ST_STATS_COUNT /* must be the last member of the enum */ |
| 147 | }; |
| 148 | |
| 149 | static struct name_desc ssl_stats[] = { |
Amaury Denoyelle | 034c162 | 2020-11-13 16:05:00 +0100 | [diff] [blame] | 150 | [SSL_ST_SESS] = { .name = "ssl_sess", |
| 151 | .desc = "Total number of ssl sessions established" }, |
| 152 | [SSL_ST_REUSED_SESS] = { .name = "ssl_reused_sess", |
| 153 | .desc = "Total number of ssl sessions reused" }, |
| 154 | [SSL_ST_FAILED_HANDSHAKE] = { .name = "ssl_failed_handshake", |
| 155 | .desc = "Total number of failed handshake" }, |
Amaury Denoyelle | 9963fa7 | 2020-11-03 17:10:00 +0100 | [diff] [blame] | 156 | }; |
| 157 | |
| 158 | static struct ssl_counters { |
Amaury Denoyelle | d0447a7 | 2020-11-03 17:10:02 +0100 | [diff] [blame] | 159 | long long sess; |
| 160 | long long reused_sess; |
Amaury Denoyelle | 034c162 | 2020-11-13 16:05:00 +0100 | [diff] [blame] | 161 | long long failed_handshake; |
Amaury Denoyelle | 9963fa7 | 2020-11-03 17:10:00 +0100 | [diff] [blame] | 162 | } ssl_counters; |
| 163 | |
| 164 | static void ssl_fill_stats(void *data, struct field *stats) |
| 165 | { |
Amaury Denoyelle | fbc3377 | 2020-11-03 17:10:01 +0100 | [diff] [blame] | 166 | struct ssl_counters *counters = data; |
| 167 | |
Amaury Denoyelle | 034c162 | 2020-11-13 16:05:00 +0100 | [diff] [blame] | 168 | stats[SSL_ST_SESS] = mkf_u64(FN_COUNTER, counters->sess); |
| 169 | stats[SSL_ST_REUSED_SESS] = mkf_u64(FN_COUNTER, counters->reused_sess); |
| 170 | stats[SSL_ST_FAILED_HANDSHAKE] = mkf_u64(FN_COUNTER, counters->failed_handshake); |
Amaury Denoyelle | 9963fa7 | 2020-11-03 17:10:00 +0100 | [diff] [blame] | 171 | } |
| 172 | |
| 173 | static struct stats_module ssl_stats_module = { |
| 174 | .name = "ssl", |
| 175 | .fill_stats = ssl_fill_stats, |
| 176 | .stats = ssl_stats, |
| 177 | .stats_count = SSL_ST_STATS_COUNT, |
| 178 | .counters = &ssl_counters, |
| 179 | .counters_size = sizeof(ssl_counters), |
| 180 | .domain_flags = MK_STATS_PROXY_DOMAIN(STATS_PX_CAP_FE|STATS_PX_CAP_LI|STATS_PX_CAP_BE|STATS_PX_CAP_SRV), |
| 181 | .clearable = 1, |
| 182 | }; |
| 183 | |
| 184 | INITCALL1(STG_REGISTER, stats_register_module, &ssl_stats_module); |
| 185 | |
Willy Tarreau | 691d503 | 2021-01-20 14:55:01 +0100 | [diff] [blame] | 186 | /* 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] | 187 | struct task *ssl_sock_io_cb(struct task *, void *, unsigned int); |
Olivier Houchard | 000694c | 2019-05-23 14:45:12 +0200 | [diff] [blame] | 188 | static int ssl_sock_handshake(struct connection *conn, unsigned int flag); |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 189 | |
Olivier Houchard | a8955d5 | 2019-04-07 22:00:38 +0200 | [diff] [blame] | 190 | /* Methods to implement OpenSSL BIO */ |
| 191 | static int ha_ssl_write(BIO *h, const char *buf, int num) |
| 192 | { |
| 193 | struct buffer tmpbuf; |
| 194 | struct ssl_sock_ctx *ctx; |
| 195 | int ret; |
| 196 | |
| 197 | ctx = BIO_get_data(h); |
| 198 | tmpbuf.size = num; |
| 199 | tmpbuf.area = (void *)(uintptr_t)buf; |
| 200 | tmpbuf.data = num; |
| 201 | tmpbuf.head = 0; |
| 202 | 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] | 203 | 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] | 204 | BIO_set_retry_write(h); |
Olivier Houchard | a28454e | 2019-04-24 12:04:36 +0200 | [diff] [blame] | 205 | ret = -1; |
Olivier Houchard | b51937e | 2019-05-01 17:24:36 +0200 | [diff] [blame] | 206 | } else if (ret == 0) |
| 207 | BIO_clear_retry_flags(h); |
Olivier Houchard | a8955d5 | 2019-04-07 22:00:38 +0200 | [diff] [blame] | 208 | return ret; |
| 209 | } |
| 210 | |
| 211 | static int ha_ssl_gets(BIO *h, char *buf, int size) |
| 212 | { |
| 213 | |
| 214 | return 0; |
| 215 | } |
| 216 | |
| 217 | static int ha_ssl_puts(BIO *h, const char *str) |
| 218 | { |
| 219 | |
| 220 | return ha_ssl_write(h, str, strlen(str)); |
| 221 | } |
| 222 | |
| 223 | static int ha_ssl_read(BIO *h, char *buf, int size) |
| 224 | { |
| 225 | struct buffer tmpbuf; |
| 226 | struct ssl_sock_ctx *ctx; |
| 227 | int ret; |
| 228 | |
| 229 | ctx = BIO_get_data(h); |
| 230 | tmpbuf.size = size; |
| 231 | tmpbuf.area = buf; |
| 232 | tmpbuf.data = 0; |
| 233 | tmpbuf.head = 0; |
| 234 | 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] | 235 | 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] | 236 | BIO_set_retry_read(h); |
Olivier Houchard | a28454e | 2019-04-24 12:04:36 +0200 | [diff] [blame] | 237 | ret = -1; |
Olivier Houchard | b51937e | 2019-05-01 17:24:36 +0200 | [diff] [blame] | 238 | } else if (ret == 0) |
| 239 | BIO_clear_retry_flags(h); |
Olivier Houchard | a8955d5 | 2019-04-07 22:00:38 +0200 | [diff] [blame] | 240 | |
| 241 | return ret; |
| 242 | } |
| 243 | |
| 244 | static long ha_ssl_ctrl(BIO *h, int cmd, long arg1, void *arg2) |
| 245 | { |
| 246 | int ret = 0; |
| 247 | switch (cmd) { |
| 248 | case BIO_CTRL_DUP: |
| 249 | case BIO_CTRL_FLUSH: |
| 250 | ret = 1; |
| 251 | break; |
| 252 | } |
| 253 | return ret; |
| 254 | } |
| 255 | |
| 256 | static int ha_ssl_new(BIO *h) |
| 257 | { |
| 258 | BIO_set_init(h, 1); |
| 259 | BIO_set_data(h, NULL); |
| 260 | BIO_clear_flags(h, ~0); |
| 261 | return 1; |
| 262 | } |
| 263 | |
| 264 | static int ha_ssl_free(BIO *data) |
| 265 | { |
| 266 | |
| 267 | return 1; |
| 268 | } |
| 269 | |
| 270 | |
Willy Tarreau | 5db847a | 2019-05-09 14:13:35 +0200 | [diff] [blame] | 271 | #if defined(USE_THREAD) && (HA_OPENSSL_VERSION_NUMBER < 0x10100000L) |
Christopher Faulet | 9dcf9b6 | 2017-11-13 10:34:01 +0100 | [diff] [blame] | 272 | |
Emeric Brun | 821bb9b | 2017-06-15 16:37:39 +0200 | [diff] [blame] | 273 | static HA_RWLOCK_T *ssl_rwlocks; |
| 274 | |
| 275 | |
| 276 | unsigned long ssl_id_function(void) |
| 277 | { |
| 278 | return (unsigned long)tid; |
| 279 | } |
| 280 | |
| 281 | void ssl_locking_function(int mode, int n, const char * file, int line) |
| 282 | { |
| 283 | if (mode & CRYPTO_LOCK) { |
| 284 | if (mode & CRYPTO_READ) |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 285 | HA_RWLOCK_RDLOCK(SSL_LOCK, &ssl_rwlocks[n]); |
Emeric Brun | 821bb9b | 2017-06-15 16:37:39 +0200 | [diff] [blame] | 286 | else |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 287 | HA_RWLOCK_WRLOCK(SSL_LOCK, &ssl_rwlocks[n]); |
Emeric Brun | 821bb9b | 2017-06-15 16:37:39 +0200 | [diff] [blame] | 288 | } |
| 289 | else { |
| 290 | if (mode & CRYPTO_READ) |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 291 | HA_RWLOCK_RDUNLOCK(SSL_LOCK, &ssl_rwlocks[n]); |
Emeric Brun | 821bb9b | 2017-06-15 16:37:39 +0200 | [diff] [blame] | 292 | else |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 293 | HA_RWLOCK_WRUNLOCK(SSL_LOCK, &ssl_rwlocks[n]); |
Emeric Brun | 821bb9b | 2017-06-15 16:37:39 +0200 | [diff] [blame] | 294 | } |
| 295 | } |
| 296 | |
| 297 | static int ssl_locking_init(void) |
| 298 | { |
| 299 | int i; |
| 300 | |
| 301 | ssl_rwlocks = malloc(sizeof(HA_RWLOCK_T)*CRYPTO_num_locks()); |
| 302 | if (!ssl_rwlocks) |
| 303 | return -1; |
| 304 | |
| 305 | for (i = 0 ; i < CRYPTO_num_locks() ; i++) |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 306 | HA_RWLOCK_INIT(&ssl_rwlocks[i]); |
Emeric Brun | 821bb9b | 2017-06-15 16:37:39 +0200 | [diff] [blame] | 307 | |
| 308 | CRYPTO_set_id_callback(ssl_id_function); |
| 309 | CRYPTO_set_locking_callback(ssl_locking_function); |
| 310 | |
| 311 | return 0; |
| 312 | } |
Christopher Faulet | 9dcf9b6 | 2017-11-13 10:34:01 +0100 | [diff] [blame] | 313 | |
Emeric Brun | 821bb9b | 2017-06-15 16:37:39 +0200 | [diff] [blame] | 314 | #endif |
| 315 | |
Willy Tarreau | af613e8 | 2020-06-05 08:40:51 +0200 | [diff] [blame] | 316 | __decl_thread(HA_SPINLOCK_T ckch_lock); |
Emeric Brun | 821bb9b | 2017-06-15 16:37:39 +0200 | [diff] [blame] | 317 | |
William Lallemand | bc6ca7c | 2019-10-29 23:48:19 +0100 | [diff] [blame] | 318 | |
Emmanuel Hocdet | d4f9a60 | 2019-10-24 11:32:47 +0200 | [diff] [blame] | 319 | /* |
Emmanuel Hocdet | b270e81 | 2019-11-21 19:09:31 +0100 | [diff] [blame] | 320 | * deduplicate cafile (and crlfile) |
Emmanuel Hocdet | d4f9a60 | 2019-10-24 11:32:47 +0200 | [diff] [blame] | 321 | */ |
| 322 | struct cafile_entry { |
| 323 | X509_STORE *ca_store; |
Emmanuel Hocdet | 129d328 | 2019-10-24 18:08:51 +0200 | [diff] [blame] | 324 | STACK_OF(X509_NAME) *ca_list; |
Emmanuel Hocdet | d4f9a60 | 2019-10-24 11:32:47 +0200 | [diff] [blame] | 325 | struct ebmb_node node; |
| 326 | char path[0]; |
| 327 | }; |
| 328 | |
| 329 | static struct eb_root cafile_tree = EB_ROOT_UNIQUE; |
| 330 | |
| 331 | static X509_STORE* ssl_store_get0_locations_file(char *path) |
| 332 | { |
| 333 | struct ebmb_node *eb; |
| 334 | |
| 335 | eb = ebst_lookup(&cafile_tree, path); |
| 336 | if (eb) { |
| 337 | struct cafile_entry *ca_e; |
| 338 | ca_e = ebmb_entry(eb, struct cafile_entry, node); |
| 339 | return ca_e->ca_store; |
| 340 | } |
| 341 | return NULL; |
| 342 | } |
| 343 | |
Remi Tricot-Le Breton | fb00f31 | 2021-03-23 16:41:53 +0100 | [diff] [blame] | 344 | int ssl_store_load_locations_file(char *path, int create_if_none) |
Emmanuel Hocdet | d4f9a60 | 2019-10-24 11:32:47 +0200 | [diff] [blame] | 345 | { |
Remi Tricot-Le Breton | fb00f31 | 2021-03-23 16:41:53 +0100 | [diff] [blame] | 346 | X509_STORE *store = ssl_store_get0_locations_file(path); |
| 347 | |
| 348 | /* If this function is called by the CLI, we should not call the |
| 349 | * X509_STORE_load_locations function because it performs forbidden disk |
| 350 | * accesses. */ |
| 351 | if (!store && create_if_none) { |
Emmanuel Hocdet | d4f9a60 | 2019-10-24 11:32:47 +0200 | [diff] [blame] | 352 | struct cafile_entry *ca_e; |
Remi Tricot-Le Breton | fb00f31 | 2021-03-23 16:41:53 +0100 | [diff] [blame] | 353 | store = X509_STORE_new(); |
Emmanuel Hocdet | d4f9a60 | 2019-10-24 11:32:47 +0200 | [diff] [blame] | 354 | if (X509_STORE_load_locations(store, path, NULL)) { |
| 355 | int pathlen; |
| 356 | pathlen = strlen(path); |
| 357 | ca_e = calloc(1, sizeof(*ca_e) + pathlen + 1); |
| 358 | if (ca_e) { |
| 359 | memcpy(ca_e->path, path, pathlen + 1); |
| 360 | ca_e->ca_store = store; |
| 361 | ebst_insert(&cafile_tree, &ca_e->node); |
Emmanuel Hocdet | d4f9a60 | 2019-10-24 11:32:47 +0200 | [diff] [blame] | 362 | } |
Remi Tricot-Le Breton | fb00f31 | 2021-03-23 16:41:53 +0100 | [diff] [blame] | 363 | } else { |
| 364 | X509_STORE_free(store); |
| 365 | store = NULL; |
Emmanuel Hocdet | d4f9a60 | 2019-10-24 11:32:47 +0200 | [diff] [blame] | 366 | } |
Emmanuel Hocdet | d4f9a60 | 2019-10-24 11:32:47 +0200 | [diff] [blame] | 367 | } |
Remi Tricot-Le Breton | fb00f31 | 2021-03-23 16:41:53 +0100 | [diff] [blame] | 368 | return (store != NULL); |
Emmanuel Hocdet | d4f9a60 | 2019-10-24 11:32:47 +0200 | [diff] [blame] | 369 | } |
| 370 | |
| 371 | /* mimic what X509_STORE_load_locations do with store_ctx */ |
| 372 | static int ssl_set_cert_crl_file(X509_STORE *store_ctx, char *path) |
| 373 | { |
| 374 | X509_STORE *store; |
| 375 | store = ssl_store_get0_locations_file(path); |
| 376 | if (store_ctx && store) { |
| 377 | int i; |
| 378 | X509_OBJECT *obj; |
| 379 | STACK_OF(X509_OBJECT) *objs = X509_STORE_get0_objects(store); |
| 380 | for (i = 0; i < sk_X509_OBJECT_num(objs); i++) { |
| 381 | obj = sk_X509_OBJECT_value(objs, i); |
| 382 | switch (X509_OBJECT_get_type(obj)) { |
| 383 | case X509_LU_X509: |
| 384 | X509_STORE_add_cert(store_ctx, X509_OBJECT_get0_X509(obj)); |
| 385 | break; |
| 386 | case X509_LU_CRL: |
| 387 | X509_STORE_add_crl(store_ctx, X509_OBJECT_get0_X509_CRL(obj)); |
| 388 | break; |
| 389 | default: |
| 390 | break; |
| 391 | } |
| 392 | } |
| 393 | return 1; |
| 394 | } |
| 395 | return 0; |
| 396 | } |
| 397 | |
Ilya Shipitsin | 77e3b4a | 2020-03-10 12:06:11 +0500 | [diff] [blame] | 398 | /* SSL_CTX_load_verify_locations substitute, internally call X509_STORE_load_locations */ |
Emmanuel Hocdet | d4f9a60 | 2019-10-24 11:32:47 +0200 | [diff] [blame] | 399 | static int ssl_set_verify_locations_file(SSL_CTX *ctx, char *path) |
| 400 | { |
| 401 | X509_STORE *store_ctx = SSL_CTX_get_cert_store(ctx); |
| 402 | return ssl_set_cert_crl_file(store_ctx, path); |
| 403 | } |
| 404 | |
Emmanuel Hocdet | 129d328 | 2019-10-24 18:08:51 +0200 | [diff] [blame] | 405 | /* |
| 406 | Extract CA_list from CA_file already in tree. |
| 407 | Duplicate ca_name is tracking with ebtree. It's simplify openssl compatibility. |
| 408 | Return a shared ca_list: SSL_dup_CA_list must be used before set it on SSL_CTX. |
| 409 | */ |
| 410 | static STACK_OF(X509_NAME)* ssl_get_client_ca_file(char *path) |
| 411 | { |
| 412 | struct ebmb_node *eb; |
| 413 | struct cafile_entry *ca_e; |
| 414 | |
| 415 | eb = ebst_lookup(&cafile_tree, path); |
| 416 | if (!eb) |
| 417 | return NULL; |
| 418 | ca_e = ebmb_entry(eb, struct cafile_entry, node); |
| 419 | |
| 420 | if (ca_e->ca_list == NULL) { |
| 421 | int i; |
| 422 | unsigned long key; |
| 423 | struct eb_root ca_name_tree = EB_ROOT; |
| 424 | struct eb64_node *node, *back; |
| 425 | struct { |
| 426 | struct eb64_node node; |
| 427 | X509_NAME *xname; |
| 428 | } *ca_name; |
| 429 | STACK_OF(X509_OBJECT) *objs; |
| 430 | STACK_OF(X509_NAME) *skn; |
| 431 | X509 *x; |
| 432 | X509_NAME *xn; |
| 433 | |
| 434 | skn = sk_X509_NAME_new_null(); |
| 435 | /* take x509 from cafile_tree */ |
| 436 | objs = X509_STORE_get0_objects(ca_e->ca_store); |
| 437 | for (i = 0; i < sk_X509_OBJECT_num(objs); i++) { |
| 438 | x = X509_OBJECT_get0_X509(sk_X509_OBJECT_value(objs, i)); |
| 439 | if (!x) |
| 440 | continue; |
| 441 | xn = X509_get_subject_name(x); |
| 442 | if (!xn) |
| 443 | continue; |
| 444 | /* Check for duplicates. */ |
| 445 | key = X509_NAME_hash(xn); |
| 446 | for (node = eb64_lookup(&ca_name_tree, key), ca_name = NULL; |
| 447 | node && ca_name == NULL; |
| 448 | node = eb64_next(node)) { |
| 449 | ca_name = container_of(node, typeof(*ca_name), node); |
| 450 | if (X509_NAME_cmp(xn, ca_name->xname) != 0) |
| 451 | ca_name = NULL; |
| 452 | } |
| 453 | /* find a duplicate */ |
| 454 | if (ca_name) |
| 455 | continue; |
| 456 | ca_name = calloc(1, sizeof *ca_name); |
| 457 | xn = X509_NAME_dup(xn); |
| 458 | if (!ca_name || |
| 459 | !xn || |
| 460 | !sk_X509_NAME_push(skn, xn)) { |
| 461 | free(ca_name); |
| 462 | X509_NAME_free(xn); |
| 463 | sk_X509_NAME_pop_free(skn, X509_NAME_free); |
| 464 | sk_X509_NAME_free(skn); |
| 465 | skn = NULL; |
| 466 | break; |
| 467 | } |
| 468 | ca_name->node.key = key; |
| 469 | ca_name->xname = xn; |
| 470 | eb64_insert(&ca_name_tree, &ca_name->node); |
| 471 | } |
| 472 | ca_e->ca_list = skn; |
| 473 | /* remove temporary ca_name tree */ |
| 474 | node = eb64_first(&ca_name_tree); |
| 475 | while (node) { |
| 476 | ca_name = container_of(node, typeof(*ca_name), node); |
| 477 | back = eb64_next(node); |
| 478 | eb64_delete(node); |
| 479 | free(ca_name); |
| 480 | node = back; |
| 481 | } |
| 482 | } |
| 483 | return ca_e->ca_list; |
| 484 | } |
| 485 | |
Willy Tarreau | ff88270 | 2021-04-10 17:23:00 +0200 | [diff] [blame] | 486 | struct pool_head *pool_head_ssl_capture __read_mostly = NULL; |
William Lallemand | 15e1694 | 2020-05-15 00:25:08 +0200 | [diff] [blame] | 487 | int ssl_capture_ptr_index = -1; |
Frédéric Lécaille | 901ee2f | 2020-11-23 11:19:04 +0100 | [diff] [blame] | 488 | int ssl_app_data_index = -1; |
Willy Tarreau | ef93460 | 2016-12-22 23:12:01 +0100 | [diff] [blame] | 489 | |
William Lallemand | ca5cf0a | 2021-06-09 16:46:12 +0200 | [diff] [blame] | 490 | #ifdef HAVE_SSL_KEYLOG |
William Lallemand | 7d42ef5 | 2020-07-06 11:41:30 +0200 | [diff] [blame] | 491 | int ssl_keylog_index = -1; |
Willy Tarreau | ff88270 | 2021-04-10 17:23:00 +0200 | [diff] [blame] | 492 | struct pool_head *pool_head_ssl_keylog __read_mostly = NULL; |
| 493 | struct pool_head *pool_head_ssl_keylog_str __read_mostly = NULL; |
William Lallemand | 7d42ef5 | 2020-07-06 11:41:30 +0200 | [diff] [blame] | 494 | #endif |
| 495 | |
Nenad Merdanovic | 200b0fa | 2015-05-09 08:46:01 +0200 | [diff] [blame] | 496 | #if (defined SSL_CTRL_SET_TLSEXT_TICKET_KEY_CB && TLS_TICKETS_NO > 0) |
| 497 | struct list tlskeys_reference = LIST_HEAD_INIT(tlskeys_reference); |
| 498 | #endif |
| 499 | |
Emmanuel Hocdet | 9ac143b | 2017-05-29 14:36:20 +0200 | [diff] [blame] | 500 | #ifndef OPENSSL_NO_ENGINE |
William Lallemand | dad3105 | 2020-05-14 17:47:32 +0200 | [diff] [blame] | 501 | unsigned int openssl_engines_initialized; |
Grant Zhang | 872f9c2 | 2017-01-21 01:10:18 +0000 | [diff] [blame] | 502 | struct list openssl_engines = LIST_HEAD_INIT(openssl_engines); |
| 503 | struct ssl_engine_list { |
| 504 | struct list list; |
| 505 | ENGINE *e; |
| 506 | }; |
Emmanuel Hocdet | 9ac143b | 2017-05-29 14:36:20 +0200 | [diff] [blame] | 507 | #endif |
Grant Zhang | 872f9c2 | 2017-01-21 01:10:18 +0000 | [diff] [blame] | 508 | |
Remi Gacogne | 8de5415 | 2014-07-15 11:36:40 +0200 | [diff] [blame] | 509 | #ifndef OPENSSL_NO_DH |
Remi Gacogne | 4f902b8 | 2015-05-28 16:23:00 +0200 | [diff] [blame] | 510 | static int ssl_dh_ptr_index = -1; |
Remi Gacogne | 47783ef | 2015-05-29 15:53:22 +0200 | [diff] [blame] | 511 | static DH *global_dh = NULL; |
Remi Gacogne | 8de5415 | 2014-07-15 11:36:40 +0200 | [diff] [blame] | 512 | static DH *local_dh_1024 = NULL; |
| 513 | static DH *local_dh_2048 = NULL; |
| 514 | static DH *local_dh_4096 = NULL; |
Emmanuel Hocdet | cc6c2a2 | 2017-03-03 17:04:14 +0100 | [diff] [blame] | 515 | static DH *ssl_get_tmp_dh(SSL *ssl, int export, int keylen); |
Remi Gacogne | 8de5415 | 2014-07-15 11:36:40 +0200 | [diff] [blame] | 516 | #endif /* OPENSSL_NO_DH */ |
| 517 | |
Emmanuel Hocdet | fdec789 | 2017-01-13 17:48:18 +0100 | [diff] [blame] | 518 | #if (defined SSL_CTRL_SET_TLSEXT_HOSTNAME && !defined SSL_NO_GENERATE_CERTIFICATES) |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 519 | /* X509V3 Extensions that will be added on generated certificates */ |
| 520 | #define X509V3_EXT_SIZE 5 |
| 521 | static char *x509v3_ext_names[X509V3_EXT_SIZE] = { |
| 522 | "basicConstraints", |
| 523 | "nsComment", |
| 524 | "subjectKeyIdentifier", |
| 525 | "authorityKeyIdentifier", |
| 526 | "keyUsage", |
| 527 | }; |
| 528 | static char *x509v3_ext_values[X509V3_EXT_SIZE] = { |
| 529 | "CA:FALSE", |
| 530 | "\"OpenSSL Generated Certificate\"", |
| 531 | "hash", |
| 532 | "keyid,issuer:always", |
| 533 | "nonRepudiation,digitalSignature,keyEncipherment" |
| 534 | }; |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 535 | /* LRU cache to store generated certificate */ |
| 536 | static struct lru64_head *ssl_ctx_lru_tree = NULL; |
| 537 | static unsigned int ssl_ctx_lru_seed = 0; |
Emeric Brun | 821bb9b | 2017-06-15 16:37:39 +0200 | [diff] [blame] | 538 | static unsigned int ssl_ctx_serial; |
Willy Tarreau | 86abe44 | 2018-11-25 20:12:18 +0100 | [diff] [blame] | 539 | __decl_rwlock(ssl_ctx_lru_rwlock); |
Emeric Brun | 821bb9b | 2017-06-15 16:37:39 +0200 | [diff] [blame] | 540 | |
Willy Tarreau | c8ad3be | 2015-06-17 15:48:26 +0200 | [diff] [blame] | 541 | #endif // SSL_CTRL_SET_TLSEXT_HOSTNAME |
| 542 | |
yanbzhu | be2774d | 2015-12-10 15:07:30 -0500 | [diff] [blame] | 543 | /* The order here matters for picking a default context, |
| 544 | * keep the most common keytype at the bottom of the list |
| 545 | */ |
| 546 | const char *SSL_SOCK_KEYTYPE_NAMES[] = { |
| 547 | "dsa", |
| 548 | "ecdsa", |
| 549 | "rsa" |
| 550 | }; |
yanbzhu | be2774d | 2015-12-10 15:07:30 -0500 | [diff] [blame] | 551 | |
William Lallemand | c3cd35f | 2017-11-28 11:04:43 +0100 | [diff] [blame] | 552 | static struct shared_context *ssl_shctx = NULL; /* ssl shared session cache */ |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 553 | static struct eb_root *sh_ssl_sess_tree; /* ssl shared session tree */ |
| 554 | |
Dragan Dosen | 9ac9809 | 2020-05-11 15:51:45 +0200 | [diff] [blame] | 555 | /* Dedicated callback functions for heartbeat and clienthello. |
| 556 | */ |
| 557 | #ifdef TLS1_RT_HEARTBEAT |
| 558 | static void ssl_sock_parse_heartbeat(struct connection *conn, int write_p, int version, |
| 559 | int content_type, const void *buf, size_t len, |
| 560 | SSL *ssl); |
| 561 | #endif |
| 562 | static void ssl_sock_parse_clienthello(struct connection *conn, int write_p, int version, |
| 563 | int content_type, const void *buf, size_t len, |
| 564 | SSL *ssl); |
| 565 | |
William Lallemand | ca5cf0a | 2021-06-09 16:46:12 +0200 | [diff] [blame] | 566 | #ifdef HAVE_SSL_KEYLOG |
William Lallemand | 7d42ef5 | 2020-07-06 11:41:30 +0200 | [diff] [blame] | 567 | static void ssl_init_keylog(struct connection *conn, int write_p, int version, |
| 568 | int content_type, const void *buf, size_t len, |
| 569 | SSL *ssl); |
| 570 | #endif |
| 571 | |
Dragan Dosen | 1e7ed04 | 2020-05-08 18:30:00 +0200 | [diff] [blame] | 572 | /* List head of all registered SSL/TLS protocol message callbacks. */ |
| 573 | struct list ssl_sock_msg_callbacks = LIST_HEAD_INIT(ssl_sock_msg_callbacks); |
| 574 | |
| 575 | /* Registers the function <func> in order to be called on SSL/TLS protocol |
| 576 | * message processing. It will return 0 if the function <func> is not set |
| 577 | * or if it fails to allocate memory. |
| 578 | */ |
| 579 | int ssl_sock_register_msg_callback(ssl_sock_msg_callback_func func) |
| 580 | { |
| 581 | struct ssl_sock_msg_callback *cbk; |
| 582 | |
| 583 | if (!func) |
| 584 | return 0; |
| 585 | |
| 586 | cbk = calloc(1, sizeof(*cbk)); |
| 587 | if (!cbk) { |
| 588 | ha_alert("out of memory in ssl_sock_register_msg_callback().\n"); |
| 589 | return 0; |
| 590 | } |
| 591 | |
| 592 | cbk->func = func; |
| 593 | |
Willy Tarreau | 2b71810 | 2021-04-21 07:32:39 +0200 | [diff] [blame] | 594 | LIST_APPEND(&ssl_sock_msg_callbacks, &cbk->list); |
Dragan Dosen | 1e7ed04 | 2020-05-08 18:30:00 +0200 | [diff] [blame] | 595 | |
| 596 | return 1; |
| 597 | } |
| 598 | |
Dragan Dosen | 9ac9809 | 2020-05-11 15:51:45 +0200 | [diff] [blame] | 599 | /* Used to register dedicated SSL/TLS protocol message callbacks. |
| 600 | */ |
| 601 | static int ssl_sock_register_msg_callbacks(void) |
| 602 | { |
| 603 | #ifdef TLS1_RT_HEARTBEAT |
| 604 | if (!ssl_sock_register_msg_callback(ssl_sock_parse_heartbeat)) |
| 605 | return ERR_ABORT; |
| 606 | #endif |
| 607 | if (global_ssl.capture_cipherlist > 0) { |
| 608 | if (!ssl_sock_register_msg_callback(ssl_sock_parse_clienthello)) |
| 609 | return ERR_ABORT; |
| 610 | } |
William Lallemand | ca5cf0a | 2021-06-09 16:46:12 +0200 | [diff] [blame] | 611 | #ifdef HAVE_SSL_KEYLOG |
William Lallemand | 7d42ef5 | 2020-07-06 11:41:30 +0200 | [diff] [blame] | 612 | if (global_ssl.keylog > 0) { |
| 613 | if (!ssl_sock_register_msg_callback(ssl_init_keylog)) |
| 614 | return ERR_ABORT; |
| 615 | } |
| 616 | #endif |
| 617 | |
Christopher Faulet | fc633b6 | 2020-11-06 15:24:23 +0100 | [diff] [blame] | 618 | return ERR_NONE; |
Dragan Dosen | 9ac9809 | 2020-05-11 15:51:45 +0200 | [diff] [blame] | 619 | } |
| 620 | |
Dragan Dosen | 1e7ed04 | 2020-05-08 18:30:00 +0200 | [diff] [blame] | 621 | /* Used to free all SSL/TLS protocol message callbacks that were |
| 622 | * registered by using ssl_sock_register_msg_callback(). |
| 623 | */ |
| 624 | static void ssl_sock_unregister_msg_callbacks(void) |
| 625 | { |
| 626 | struct ssl_sock_msg_callback *cbk, *cbkback; |
| 627 | |
| 628 | list_for_each_entry_safe(cbk, cbkback, &ssl_sock_msg_callbacks, list) { |
Willy Tarreau | 2b71810 | 2021-04-21 07:32:39 +0200 | [diff] [blame] | 629 | LIST_DELETE(&cbk->list); |
Dragan Dosen | 1e7ed04 | 2020-05-08 18:30:00 +0200 | [diff] [blame] | 630 | free(cbk); |
| 631 | } |
| 632 | } |
| 633 | |
Dragan Dosen | eb607fe | 2020-05-11 17:17:06 +0200 | [diff] [blame] | 634 | SSL *ssl_sock_get_ssl_object(struct connection *conn) |
| 635 | { |
| 636 | if (!ssl_sock_is_ssl(conn)) |
| 637 | return NULL; |
| 638 | |
| 639 | return ((struct ssl_sock_ctx *)(conn->xprt_ctx))->ssl; |
| 640 | } |
Emmanuel Hocdet | fdec789 | 2017-01-13 17:48:18 +0100 | [diff] [blame] | 641 | /* |
| 642 | * This function gives the detail of the SSL error. It is used only |
| 643 | * if the debug mode and the verbose mode are activated. It dump all |
| 644 | * the SSL error until the stack was empty. |
| 645 | */ |
| 646 | static forceinline void ssl_sock_dump_errors(struct connection *conn) |
| 647 | { |
| 648 | unsigned long ret; |
| 649 | |
| 650 | if (unlikely(global.mode & MODE_DEBUG)) { |
| 651 | while(1) { |
| 652 | ret = ERR_get_error(); |
| 653 | if (ret == 0) |
| 654 | return; |
Willy Tarreau | 566cebc | 2021-03-02 19:32:39 +0100 | [diff] [blame] | 655 | fprintf(stderr, "fd[%#x] OpenSSL error[0x%lx] %s: %s\n", |
| 656 | conn->handle.fd, ret, |
Emmanuel Hocdet | fdec789 | 2017-01-13 17:48:18 +0100 | [diff] [blame] | 657 | ERR_func_error_string(ret), ERR_reason_error_string(ret)); |
| 658 | } |
| 659 | } |
| 660 | } |
| 661 | |
yanbzhu | be2774d | 2015-12-10 15:07:30 -0500 | [diff] [blame] | 662 | |
Emmanuel Hocdet | 9ac143b | 2017-05-29 14:36:20 +0200 | [diff] [blame] | 663 | #ifndef OPENSSL_NO_ENGINE |
William Lallemand | dad3105 | 2020-05-14 17:47:32 +0200 | [diff] [blame] | 664 | 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] | 665 | { |
| 666 | int err_code = ERR_ABORT; |
| 667 | ENGINE *engine; |
| 668 | struct ssl_engine_list *el; |
| 669 | |
| 670 | /* grab the structural reference to the engine */ |
| 671 | engine = ENGINE_by_id(engine_id); |
| 672 | if (engine == NULL) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 673 | 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] | 674 | goto fail_get; |
| 675 | } |
| 676 | |
| 677 | if (!ENGINE_init(engine)) { |
| 678 | /* the engine couldn't initialise, release it */ |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 679 | ha_alert("ssl-engine %s: failed to initialize\n", engine_id); |
Grant Zhang | 872f9c2 | 2017-01-21 01:10:18 +0000 | [diff] [blame] | 680 | goto fail_init; |
| 681 | } |
| 682 | |
| 683 | if (ENGINE_set_default_string(engine, def_algorithms) == 0) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 684 | 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] | 685 | goto fail_set_method; |
| 686 | } |
| 687 | |
| 688 | el = calloc(1, sizeof(*el)); |
Remi Tricot-Le Breton | 46697c8 | 2021-05-12 17:45:21 +0200 | [diff] [blame] | 689 | if (!el) |
| 690 | goto fail_alloc; |
Grant Zhang | 872f9c2 | 2017-01-21 01:10:18 +0000 | [diff] [blame] | 691 | el->e = engine; |
Willy Tarreau | 2b71810 | 2021-04-21 07:32:39 +0200 | [diff] [blame] | 692 | LIST_INSERT(&openssl_engines, &el->list); |
Emeric Brun | ece0c33 | 2017-12-06 13:51:49 +0100 | [diff] [blame] | 693 | nb_engines++; |
| 694 | if (global_ssl.async) |
| 695 | global.ssl_used_async_engines = nb_engines; |
Grant Zhang | 872f9c2 | 2017-01-21 01:10:18 +0000 | [diff] [blame] | 696 | return 0; |
| 697 | |
Remi Tricot-Le Breton | 46697c8 | 2021-05-12 17:45:21 +0200 | [diff] [blame] | 698 | fail_alloc: |
Grant Zhang | 872f9c2 | 2017-01-21 01:10:18 +0000 | [diff] [blame] | 699 | fail_set_method: |
| 700 | /* release the functional reference from ENGINE_init() */ |
| 701 | ENGINE_finish(engine); |
| 702 | |
| 703 | fail_init: |
| 704 | /* release the structural reference from ENGINE_by_id() */ |
| 705 | ENGINE_free(engine); |
| 706 | |
| 707 | fail_get: |
| 708 | return err_code; |
| 709 | } |
Emmanuel Hocdet | 9ac143b | 2017-05-29 14:36:20 +0200 | [diff] [blame] | 710 | #endif |
Grant Zhang | 872f9c2 | 2017-01-21 01:10:18 +0000 | [diff] [blame] | 711 | |
Ilya Shipitsin | bdec3ba | 2020-11-14 01:56:34 +0500 | [diff] [blame] | 712 | #ifdef SSL_MODE_ASYNC |
Emeric Brun | 3854e01 | 2017-05-17 20:42:48 +0200 | [diff] [blame] | 713 | /* |
| 714 | * openssl async fd handler |
| 715 | */ |
Emeric Brun | d0e095c | 2019-04-19 17:15:28 +0200 | [diff] [blame] | 716 | void ssl_async_fd_handler(int fd) |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 717 | { |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 718 | struct ssl_sock_ctx *ctx = fdtab[fd].owner; |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 719 | |
Emeric Brun | 3854e01 | 2017-05-17 20:42:48 +0200 | [diff] [blame] | 720 | /* fd is an async enfine fd, we must stop |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 721 | * to poll this fd until it is requested |
| 722 | */ |
Emeric Brun | bbc1654 | 2017-06-02 15:54:06 +0000 | [diff] [blame] | 723 | fd_stop_recv(fd); |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 724 | fd_cant_recv(fd); |
| 725 | |
| 726 | /* crypto engine is available, let's notify the associated |
| 727 | * connection that it can pursue its processing. |
| 728 | */ |
Olivier Houchard | a459826 | 2020-09-15 22:16:02 +0200 | [diff] [blame] | 729 | tasklet_wakeup(ctx->wait_event.tasklet); |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 730 | } |
| 731 | |
Emeric Brun | 3854e01 | 2017-05-17 20:42:48 +0200 | [diff] [blame] | 732 | /* |
| 733 | * openssl async delayed SSL_free handler |
| 734 | */ |
Emeric Brun | d0e095c | 2019-04-19 17:15:28 +0200 | [diff] [blame] | 735 | void ssl_async_fd_free(int fd) |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 736 | { |
| 737 | SSL *ssl = fdtab[fd].owner; |
Emeric Brun | 3854e01 | 2017-05-17 20:42:48 +0200 | [diff] [blame] | 738 | OSSL_ASYNC_FD all_fd[32]; |
| 739 | size_t num_all_fds = 0; |
| 740 | int i; |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 741 | |
Emeric Brun | 3854e01 | 2017-05-17 20:42:48 +0200 | [diff] [blame] | 742 | /* We suppose that the async job for a same SSL * |
| 743 | * are serialized. So if we are awake it is |
| 744 | * because the running job has just finished |
| 745 | * and we can remove all async fds safely |
| 746 | */ |
| 747 | SSL_get_all_async_fds(ssl, NULL, &num_all_fds); |
| 748 | if (num_all_fds > 32) { |
| 749 | send_log(NULL, LOG_EMERG, "haproxy: openssl returns too many async fds. It seems a bug. Process may crash\n"); |
| 750 | return; |
| 751 | } |
| 752 | |
| 753 | SSL_get_all_async_fds(ssl, all_fd, &num_all_fds); |
| 754 | for (i=0 ; i < num_all_fds ; i++) |
Willy Tarreau | 6767245 | 2020-08-26 11:44:17 +0200 | [diff] [blame] | 755 | fd_stop_both(all_fd[i]); |
Emeric Brun | 3854e01 | 2017-05-17 20:42:48 +0200 | [diff] [blame] | 756 | |
| 757 | /* 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] | 758 | SSL_free(ssl); |
Willy Tarreau | 4781b15 | 2021-04-06 13:53:36 +0200 | [diff] [blame] | 759 | _HA_ATOMIC_DEC(&sslconns); |
| 760 | _HA_ATOMIC_DEC(&jobs); |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 761 | } |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 762 | /* |
Emeric Brun | 3854e01 | 2017-05-17 20:42:48 +0200 | [diff] [blame] | 763 | * function used to manage a returned SSL_ERROR_WANT_ASYNC |
| 764 | * and enable/disable polling for async fds |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 765 | */ |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 766 | static inline void ssl_async_process_fds(struct ssl_sock_ctx *ctx) |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 767 | { |
Willy Tarreau | a9786b6 | 2018-01-25 07:22:13 +0100 | [diff] [blame] | 768 | OSSL_ASYNC_FD add_fd[32]; |
Emeric Brun | 3854e01 | 2017-05-17 20:42:48 +0200 | [diff] [blame] | 769 | OSSL_ASYNC_FD del_fd[32]; |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 770 | SSL *ssl = ctx->ssl; |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 771 | size_t num_add_fds = 0; |
| 772 | size_t num_del_fds = 0; |
Emeric Brun | 3854e01 | 2017-05-17 20:42:48 +0200 | [diff] [blame] | 773 | int i; |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 774 | |
| 775 | SSL_get_changed_async_fds(ssl, NULL, &num_add_fds, NULL, |
| 776 | &num_del_fds); |
Emeric Brun | 3854e01 | 2017-05-17 20:42:48 +0200 | [diff] [blame] | 777 | if (num_add_fds > 32 || num_del_fds > 32) { |
| 778 | 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] | 779 | return; |
| 780 | } |
| 781 | |
Emeric Brun | 3854e01 | 2017-05-17 20:42:48 +0200 | [diff] [blame] | 782 | 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] | 783 | |
Emeric Brun | 3854e01 | 2017-05-17 20:42:48 +0200 | [diff] [blame] | 784 | /* We remove unused fds from the fdtab */ |
| 785 | for (i=0 ; i < num_del_fds ; i++) |
Willy Tarreau | 6767245 | 2020-08-26 11:44:17 +0200 | [diff] [blame] | 786 | fd_stop_both(del_fd[i]); |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 787 | |
Emeric Brun | 3854e01 | 2017-05-17 20:42:48 +0200 | [diff] [blame] | 788 | /* We add new fds to the fdtab */ |
| 789 | for (i=0 ; i < num_add_fds ; i++) { |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 790 | fd_insert(add_fd[i], ctx, ssl_async_fd_handler, tid_bit); |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 791 | } |
| 792 | |
Emeric Brun | 3854e01 | 2017-05-17 20:42:48 +0200 | [diff] [blame] | 793 | num_add_fds = 0; |
| 794 | SSL_get_all_async_fds(ssl, NULL, &num_add_fds); |
| 795 | if (num_add_fds > 32) { |
| 796 | send_log(NULL, LOG_EMERG, "haproxy: openssl returns too many async fds. It seems a bug. Process may crash\n"); |
| 797 | return; |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 798 | } |
Emeric Brun | 3854e01 | 2017-05-17 20:42:48 +0200 | [diff] [blame] | 799 | |
| 800 | /* We activate the polling for all known async fds */ |
| 801 | SSL_get_all_async_fds(ssl, add_fd, &num_add_fds); |
Emeric Brun | ce9e01c | 2017-05-31 10:02:53 +0000 | [diff] [blame] | 802 | for (i=0 ; i < num_add_fds ; i++) { |
Emeric Brun | 3854e01 | 2017-05-17 20:42:48 +0200 | [diff] [blame] | 803 | fd_want_recv(add_fd[i]); |
Emeric Brun | ce9e01c | 2017-05-31 10:02:53 +0000 | [diff] [blame] | 804 | /* To ensure that the fd cache won't be used |
| 805 | * We'll prefer to catch a real RD event |
| 806 | * because handling an EAGAIN on this fd will |
| 807 | * result in a context switch and also |
| 808 | * some engines uses a fd in blocking mode. |
| 809 | */ |
| 810 | fd_cant_recv(add_fd[i]); |
| 811 | } |
Emeric Brun | 3854e01 | 2017-05-17 20:42:48 +0200 | [diff] [blame] | 812 | |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 813 | } |
| 814 | #endif |
| 815 | |
William Lallemand | 104a7a6 | 2019-10-14 14:14:59 +0200 | [diff] [blame] | 816 | #if (defined SSL_CTRL_SET_TLSEXT_STATUS_REQ_CB && !defined OPENSSL_NO_OCSP) |
Emeric Brun | 4f3c87a | 2014-06-20 15:46:13 +0200 | [diff] [blame] | 817 | /* |
| 818 | * This function returns the number of seconds elapsed |
| 819 | * since the Epoch, 1970-01-01 00:00:00 +0000 (UTC) and the |
| 820 | * date presented un ASN1_GENERALIZEDTIME. |
| 821 | * |
| 822 | * In parsing error case, it returns -1. |
| 823 | */ |
| 824 | static long asn1_generalizedtime_to_epoch(ASN1_GENERALIZEDTIME *d) |
| 825 | { |
| 826 | long epoch; |
| 827 | char *p, *end; |
| 828 | const unsigned short month_offset[12] = { |
| 829 | 0, 31, 59, 90, 120, 151, 181, 212, 243, 273, 304, 334 |
| 830 | }; |
Remi Tricot-Le Breton | 1adb439 | 2021-06-09 17:16:18 +0200 | [diff] [blame] | 831 | unsigned long year, month; |
Emeric Brun | 4f3c87a | 2014-06-20 15:46:13 +0200 | [diff] [blame] | 832 | |
| 833 | if (!d || (d->type != V_ASN1_GENERALIZEDTIME)) return -1; |
| 834 | |
| 835 | p = (char *)d->data; |
| 836 | end = p + d->length; |
| 837 | |
| 838 | if (end - p < 4) return -1; |
| 839 | year = 1000 * (p[0] - '0') + 100 * (p[1] - '0') + 10 * (p[2] - '0') + p[3] - '0'; |
| 840 | p += 4; |
| 841 | if (end - p < 2) return -1; |
| 842 | month = 10 * (p[0] - '0') + p[1] - '0'; |
| 843 | if (month < 1 || month > 12) return -1; |
| 844 | /* Compute the number of seconds since 1 jan 1970 and the beginning of current month |
| 845 | We consider leap years and the current month (<marsh or not) */ |
| 846 | epoch = ( ((year - 1970) * 365) |
| 847 | + ((year - (month < 3)) / 4 - (year - (month < 3)) / 100 + (year - (month < 3)) / 400) |
| 848 | - ((1970 - 1) / 4 - (1970 - 1) / 100 + (1970 - 1) / 400) |
| 849 | + month_offset[month-1] |
| 850 | ) * 24 * 60 * 60; |
| 851 | p += 2; |
| 852 | if (end - p < 2) return -1; |
| 853 | /* Add the number of seconds of completed days of current month */ |
| 854 | epoch += (10 * (p[0] - '0') + p[1] - '0' - 1) * 24 * 60 * 60; |
| 855 | p += 2; |
| 856 | if (end - p < 2) return -1; |
| 857 | /* Add the completed hours of the current day */ |
| 858 | epoch += (10 * (p[0] - '0') + p[1] - '0') * 60 * 60; |
| 859 | p += 2; |
| 860 | if (end - p < 2) return -1; |
| 861 | /* Add the completed minutes of the current hour */ |
| 862 | epoch += (10 * (p[0] - '0') + p[1] - '0') * 60; |
| 863 | p += 2; |
| 864 | if (p == end) return -1; |
| 865 | /* Test if there is available seconds */ |
| 866 | if (p[0] < '0' || p[0] > '9') |
| 867 | goto nosec; |
| 868 | if (end - p < 2) return -1; |
| 869 | /* Add the seconds of the current minute */ |
| 870 | epoch += 10 * (p[0] - '0') + p[1] - '0'; |
| 871 | p += 2; |
| 872 | if (p == end) return -1; |
| 873 | /* Ignore seconds float part if present */ |
| 874 | if (p[0] == '.') { |
| 875 | do { |
| 876 | if (++p == end) return -1; |
| 877 | } while (p[0] >= '0' && p[0] <= '9'); |
| 878 | } |
| 879 | |
| 880 | nosec: |
| 881 | if (p[0] == 'Z') { |
| 882 | if (end - p != 1) return -1; |
| 883 | return epoch; |
| 884 | } |
| 885 | else if (p[0] == '+') { |
| 886 | if (end - p != 5) return -1; |
| 887 | /* Apply timezone offset */ |
Frederik Deweerdt | 953917a | 2017-10-16 07:37:31 -0700 | [diff] [blame] | 888 | 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] | 889 | } |
| 890 | else if (p[0] == '-') { |
| 891 | if (end - p != 5) return -1; |
| 892 | /* Apply timezone offset */ |
Frederik Deweerdt | 953917a | 2017-10-16 07:37:31 -0700 | [diff] [blame] | 893 | 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] | 894 | } |
| 895 | |
| 896 | return -1; |
| 897 | } |
| 898 | |
William Lallemand | 104a7a6 | 2019-10-14 14:14:59 +0200 | [diff] [blame] | 899 | /* |
| 900 | * struct alignment works here such that the key.key is the same as key_data |
| 901 | * Do not change the placement of key_data |
| 902 | */ |
| 903 | struct certificate_ocsp { |
| 904 | struct ebmb_node key; |
| 905 | unsigned char key_data[OCSP_MAX_CERTID_ASN1_LENGTH]; |
| 906 | struct buffer response; |
William Lallemand | 76b4a12 | 2020-08-04 17:41:39 +0200 | [diff] [blame] | 907 | int refcount; |
William Lallemand | 104a7a6 | 2019-10-14 14:14:59 +0200 | [diff] [blame] | 908 | long expire; |
| 909 | }; |
| 910 | |
| 911 | struct ocsp_cbk_arg { |
| 912 | int is_single; |
| 913 | int single_kt; |
| 914 | union { |
| 915 | struct certificate_ocsp *s_ocsp; |
| 916 | /* |
| 917 | * m_ocsp will have multiple entries dependent on key type |
| 918 | * Entry 0 - DSA |
| 919 | * Entry 1 - ECDSA |
| 920 | * Entry 2 - RSA |
| 921 | */ |
| 922 | struct certificate_ocsp *m_ocsp[SSL_SOCK_NUM_KEYTYPES]; |
| 923 | }; |
| 924 | }; |
| 925 | |
Emeric Brun | 1d3865b | 2014-06-20 15:37:32 +0200 | [diff] [blame] | 926 | static struct eb_root cert_ocsp_tree = EB_ROOT_UNIQUE; |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 927 | |
| 928 | /* This function starts to check if the OCSP response (in DER format) contained |
| 929 | * in chunk 'ocsp_response' is valid (else exits on error). |
| 930 | * If 'cid' is not NULL, it will be compared to the OCSP certificate ID |
| 931 | * contained in the OCSP Response and exits on error if no match. |
| 932 | * If it's a valid OCSP Response: |
| 933 | * If 'ocsp' is not NULL, the chunk is copied in the OCSP response's container |
| 934 | * pointed by 'ocsp'. |
| 935 | * If 'ocsp' is NULL, the function looks up into the OCSP response's |
| 936 | * containers tree (using as index the ASN1 form of the OCSP Certificate ID extracted |
| 937 | * from the response) and exits on error if not found. Finally, If an OCSP response is |
| 938 | * already present in the container, it will be overwritten. |
| 939 | * |
| 940 | * Note: OCSP response containing more than one OCSP Single response is not |
| 941 | * considered valid. |
| 942 | * |
| 943 | * Returns 0 on success, 1 in error case. |
| 944 | */ |
Willy Tarreau | 83061a8 | 2018-07-13 11:56:34 +0200 | [diff] [blame] | 945 | static int ssl_sock_load_ocsp_response(struct buffer *ocsp_response, |
| 946 | struct certificate_ocsp *ocsp, |
| 947 | OCSP_CERTID *cid, char **err) |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 948 | { |
| 949 | OCSP_RESPONSE *resp; |
| 950 | OCSP_BASICRESP *bs = NULL; |
| 951 | OCSP_SINGLERESP *sr; |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 952 | OCSP_CERTID *id; |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 953 | unsigned char *p = (unsigned char *) ocsp_response->area; |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 954 | int rc , count_sr; |
Emeric Brun | 13a6b48 | 2014-06-20 15:44:34 +0200 | [diff] [blame] | 955 | ASN1_GENERALIZEDTIME *revtime, *thisupd, *nextupd = NULL; |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 956 | int reason; |
| 957 | int ret = 1; |
| 958 | |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 959 | resp = d2i_OCSP_RESPONSE(NULL, (const unsigned char **)&p, |
| 960 | ocsp_response->data); |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 961 | if (!resp) { |
| 962 | memprintf(err, "Unable to parse OCSP response"); |
| 963 | goto out; |
| 964 | } |
| 965 | |
| 966 | rc = OCSP_response_status(resp); |
| 967 | if (rc != OCSP_RESPONSE_STATUS_SUCCESSFUL) { |
| 968 | memprintf(err, "OCSP response status not successful"); |
| 969 | goto out; |
| 970 | } |
| 971 | |
| 972 | bs = OCSP_response_get1_basic(resp); |
| 973 | if (!bs) { |
| 974 | memprintf(err, "Failed to get basic response from OCSP Response"); |
| 975 | goto out; |
| 976 | } |
| 977 | |
| 978 | count_sr = OCSP_resp_count(bs); |
| 979 | if (count_sr > 1) { |
| 980 | memprintf(err, "OCSP response ignored because contains multiple single responses (%d)", count_sr); |
| 981 | goto out; |
| 982 | } |
| 983 | |
| 984 | sr = OCSP_resp_get0(bs, 0); |
| 985 | if (!sr) { |
| 986 | memprintf(err, "Failed to get OCSP single response"); |
| 987 | goto out; |
| 988 | } |
| 989 | |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 990 | id = (OCSP_CERTID*)OCSP_SINGLERESP_get0_id(sr); |
| 991 | |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 992 | rc = OCSP_single_get0_status(sr, &reason, &revtime, &thisupd, &nextupd); |
Emmanuel Hocdet | ef60705 | 2017-10-24 14:57:16 +0200 | [diff] [blame] | 993 | if (rc != V_OCSP_CERTSTATUS_GOOD && rc != V_OCSP_CERTSTATUS_REVOKED) { |
Emmanuel Hocdet | 872085c | 2017-10-10 15:18:52 +0200 | [diff] [blame] | 994 | memprintf(err, "OCSP single response: certificate status is unknown"); |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 995 | goto out; |
| 996 | } |
| 997 | |
Emeric Brun | 13a6b48 | 2014-06-20 15:44:34 +0200 | [diff] [blame] | 998 | if (!nextupd) { |
| 999 | memprintf(err, "OCSP single response: missing nextupdate"); |
| 1000 | goto out; |
| 1001 | } |
| 1002 | |
Emeric Brun | c8b27b6 | 2014-06-19 14:16:17 +0200 | [diff] [blame] | 1003 | rc = OCSP_check_validity(thisupd, nextupd, OCSP_MAX_RESPONSE_TIME_SKEW, -1); |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 1004 | if (!rc) { |
| 1005 | memprintf(err, "OCSP single response: no longer valid."); |
| 1006 | goto out; |
| 1007 | } |
| 1008 | |
| 1009 | if (cid) { |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 1010 | if (OCSP_id_cmp(id, cid)) { |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 1011 | memprintf(err, "OCSP single response: Certificate ID does not match certificate and issuer"); |
| 1012 | goto out; |
| 1013 | } |
| 1014 | } |
| 1015 | |
| 1016 | if (!ocsp) { |
| 1017 | unsigned char key[OCSP_MAX_CERTID_ASN1_LENGTH]; |
| 1018 | unsigned char *p; |
| 1019 | |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 1020 | rc = i2d_OCSP_CERTID(id, NULL); |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 1021 | if (!rc) { |
| 1022 | memprintf(err, "OCSP single response: Unable to encode Certificate ID"); |
| 1023 | goto out; |
| 1024 | } |
| 1025 | |
| 1026 | if (rc > OCSP_MAX_CERTID_ASN1_LENGTH) { |
| 1027 | memprintf(err, "OCSP single response: Certificate ID too long"); |
| 1028 | goto out; |
| 1029 | } |
| 1030 | |
| 1031 | p = key; |
| 1032 | memset(key, 0, OCSP_MAX_CERTID_ASN1_LENGTH); |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 1033 | i2d_OCSP_CERTID(id, &p); |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 1034 | ocsp = (struct certificate_ocsp *)ebmb_lookup(&cert_ocsp_tree, key, OCSP_MAX_CERTID_ASN1_LENGTH); |
| 1035 | if (!ocsp) { |
| 1036 | memprintf(err, "OCSP single response: Certificate ID does not match any certificate or issuer"); |
| 1037 | goto out; |
| 1038 | } |
| 1039 | } |
| 1040 | |
| 1041 | /* According to comments on "chunk_dup", the |
| 1042 | previous chunk buffer will be freed */ |
| 1043 | if (!chunk_dup(&ocsp->response, ocsp_response)) { |
| 1044 | memprintf(err, "OCSP response: Memory allocation error"); |
| 1045 | goto out; |
| 1046 | } |
| 1047 | |
Emeric Brun | 4f3c87a | 2014-06-20 15:46:13 +0200 | [diff] [blame] | 1048 | ocsp->expire = asn1_generalizedtime_to_epoch(nextupd) - OCSP_MAX_RESPONSE_TIME_SKEW; |
Remi Tricot-Le Breton | 1adb439 | 2021-06-09 17:16:18 +0200 | [diff] [blame] | 1049 | if (ocsp->expire < 0) { |
| 1050 | memprintf(err, "OCSP single response: Invalid \"Next Update\" time"); |
| 1051 | goto out; |
| 1052 | } |
Emeric Brun | 4f3c87a | 2014-06-20 15:46:13 +0200 | [diff] [blame] | 1053 | |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 1054 | ret = 0; |
| 1055 | out: |
Janusz Dziemidowicz | 8d71049 | 2017-03-08 16:59:41 +0100 | [diff] [blame] | 1056 | ERR_clear_error(); |
| 1057 | |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 1058 | if (bs) |
| 1059 | OCSP_BASICRESP_free(bs); |
| 1060 | |
| 1061 | if (resp) |
| 1062 | OCSP_RESPONSE_free(resp); |
| 1063 | |
| 1064 | return ret; |
| 1065 | } |
| 1066 | /* |
| 1067 | * External function use to update the OCSP response in the OCSP response's |
| 1068 | * containers tree. The chunk 'ocsp_response' must contain the OCSP response |
| 1069 | * to update in DER format. |
| 1070 | * |
| 1071 | * Returns 0 on success, 1 in error case. |
| 1072 | */ |
Willy Tarreau | 83061a8 | 2018-07-13 11:56:34 +0200 | [diff] [blame] | 1073 | int ssl_sock_update_ocsp_response(struct buffer *ocsp_response, char **err) |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 1074 | { |
| 1075 | return ssl_sock_load_ocsp_response(ocsp_response, NULL, NULL, err); |
| 1076 | } |
| 1077 | |
William Lallemand | 4a66013 | 2019-10-14 14:51:41 +0200 | [diff] [blame] | 1078 | #endif |
| 1079 | |
Nenad Merdanovic | 05552d4 | 2015-02-27 19:56:49 +0100 | [diff] [blame] | 1080 | #if (defined SSL_CTRL_SET_TLSEXT_TICKET_KEY_CB && TLS_TICKETS_NO > 0) |
| 1081 | 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) |
| 1082 | { |
Christopher Faulet | 16f45c8 | 2018-02-16 11:23:49 +0100 | [diff] [blame] | 1083 | struct tls_keys_ref *ref; |
Emeric Brun | 9e75477 | 2019-01-10 17:51:55 +0100 | [diff] [blame] | 1084 | union tls_sess_key *keys; |
Nenad Merdanovic | 05552d4 | 2015-02-27 19:56:49 +0100 | [diff] [blame] | 1085 | struct connection *conn; |
| 1086 | int head; |
| 1087 | int i; |
Christopher Faulet | 16f45c8 | 2018-02-16 11:23:49 +0100 | [diff] [blame] | 1088 | int ret = -1; /* error by default */ |
Nenad Merdanovic | 05552d4 | 2015-02-27 19:56:49 +0100 | [diff] [blame] | 1089 | |
Thierry FOURNIER | 28962c9 | 2018-06-17 21:37:05 +0200 | [diff] [blame] | 1090 | conn = SSL_get_ex_data(s, ssl_app_data_index); |
Willy Tarreau | 07d94e4 | 2018-09-20 10:57:52 +0200 | [diff] [blame] | 1091 | ref = __objt_listener(conn->target)->bind_conf->keys_ref; |
Christopher Faulet | 16f45c8 | 2018-02-16 11:23:49 +0100 | [diff] [blame] | 1092 | HA_RWLOCK_RDLOCK(TLSKEYS_REF_LOCK, &ref->lock); |
| 1093 | |
| 1094 | keys = ref->tlskeys; |
| 1095 | head = ref->tls_ticket_enc_index; |
Nenad Merdanovic | 05552d4 | 2015-02-27 19:56:49 +0100 | [diff] [blame] | 1096 | |
| 1097 | if (enc) { |
| 1098 | memcpy(key_name, keys[head].name, 16); |
| 1099 | |
| 1100 | if(!RAND_pseudo_bytes(iv, EVP_MAX_IV_LENGTH)) |
Christopher Faulet | 16f45c8 | 2018-02-16 11:23:49 +0100 | [diff] [blame] | 1101 | goto end; |
Nenad Merdanovic | 05552d4 | 2015-02-27 19:56:49 +0100 | [diff] [blame] | 1102 | |
Emeric Brun | 9e75477 | 2019-01-10 17:51:55 +0100 | [diff] [blame] | 1103 | if (ref->key_size_bits == 128) { |
Nenad Merdanovic | 05552d4 | 2015-02-27 19:56:49 +0100 | [diff] [blame] | 1104 | |
Emeric Brun | 9e75477 | 2019-01-10 17:51:55 +0100 | [diff] [blame] | 1105 | if(!EVP_EncryptInit_ex(ectx, EVP_aes_128_cbc(), NULL, keys[head].key_128.aes_key, iv)) |
| 1106 | goto end; |
| 1107 | |
Willy Tarreau | 9356dac | 2019-05-10 09:22:53 +0200 | [diff] [blame] | 1108 | 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] | 1109 | ret = 1; |
| 1110 | } |
| 1111 | else if (ref->key_size_bits == 256 ) { |
| 1112 | |
| 1113 | if(!EVP_EncryptInit_ex(ectx, EVP_aes_256_cbc(), NULL, keys[head].key_256.aes_key, iv)) |
| 1114 | goto end; |
| 1115 | |
Willy Tarreau | 9356dac | 2019-05-10 09:22:53 +0200 | [diff] [blame] | 1116 | 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] | 1117 | ret = 1; |
| 1118 | } |
Nenad Merdanovic | 05552d4 | 2015-02-27 19:56:49 +0100 | [diff] [blame] | 1119 | } else { |
| 1120 | for (i = 0; i < TLS_TICKETS_NO; i++) { |
| 1121 | if (!memcmp(key_name, keys[(head + i) % TLS_TICKETS_NO].name, 16)) |
| 1122 | goto found; |
| 1123 | } |
Christopher Faulet | 16f45c8 | 2018-02-16 11:23:49 +0100 | [diff] [blame] | 1124 | ret = 0; |
| 1125 | goto end; |
Nenad Merdanovic | 05552d4 | 2015-02-27 19:56:49 +0100 | [diff] [blame] | 1126 | |
Christopher Faulet | 16f45c8 | 2018-02-16 11:23:49 +0100 | [diff] [blame] | 1127 | found: |
Emeric Brun | 9e75477 | 2019-01-10 17:51:55 +0100 | [diff] [blame] | 1128 | if (ref->key_size_bits == 128) { |
Willy Tarreau | 9356dac | 2019-05-10 09:22:53 +0200 | [diff] [blame] | 1129 | 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] | 1130 | if(!EVP_DecryptInit_ex(ectx, EVP_aes_128_cbc(), NULL, keys[(head + i) % TLS_TICKETS_NO].key_128.aes_key, iv)) |
| 1131 | goto end; |
| 1132 | /* 2 for key renewal, 1 if current key is still valid */ |
| 1133 | ret = i ? 2 : 1; |
| 1134 | } |
| 1135 | else if (ref->key_size_bits == 256) { |
Willy Tarreau | 9356dac | 2019-05-10 09:22:53 +0200 | [diff] [blame] | 1136 | 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] | 1137 | if(!EVP_DecryptInit_ex(ectx, EVP_aes_256_cbc(), NULL, keys[(head + i) % TLS_TICKETS_NO].key_256.aes_key, iv)) |
| 1138 | goto end; |
| 1139 | /* 2 for key renewal, 1 if current key is still valid */ |
| 1140 | ret = i ? 2 : 1; |
| 1141 | } |
Nenad Merdanovic | 05552d4 | 2015-02-27 19:56:49 +0100 | [diff] [blame] | 1142 | } |
Emeric Brun | 9e75477 | 2019-01-10 17:51:55 +0100 | [diff] [blame] | 1143 | |
Christopher Faulet | 16f45c8 | 2018-02-16 11:23:49 +0100 | [diff] [blame] | 1144 | end: |
| 1145 | HA_RWLOCK_RDUNLOCK(TLSKEYS_REF_LOCK, &ref->lock); |
| 1146 | return ret; |
Nenad Merdanovic | 200b0fa | 2015-05-09 08:46:01 +0200 | [diff] [blame] | 1147 | } |
| 1148 | |
| 1149 | struct tls_keys_ref *tlskeys_ref_lookup(const char *filename) |
| 1150 | { |
| 1151 | struct tls_keys_ref *ref; |
| 1152 | |
| 1153 | list_for_each_entry(ref, &tlskeys_reference, list) |
| 1154 | if (ref->filename && strcmp(filename, ref->filename) == 0) |
| 1155 | return ref; |
| 1156 | return NULL; |
| 1157 | } |
| 1158 | |
| 1159 | struct tls_keys_ref *tlskeys_ref_lookupid(int unique_id) |
| 1160 | { |
| 1161 | struct tls_keys_ref *ref; |
| 1162 | |
| 1163 | list_for_each_entry(ref, &tlskeys_reference, list) |
| 1164 | if (ref->unique_id == unique_id) |
| 1165 | return ref; |
| 1166 | return NULL; |
| 1167 | } |
| 1168 | |
Ilya Shipitsin | 77e3b4a | 2020-03-10 12:06:11 +0500 | [diff] [blame] | 1169 | /* Update the key into ref: if keysize doesn't |
Emeric Brun | 9e75477 | 2019-01-10 17:51:55 +0100 | [diff] [blame] | 1170 | * match existing ones, this function returns -1 |
| 1171 | * else it returns 0 on success. |
| 1172 | */ |
| 1173 | int ssl_sock_update_tlskey_ref(struct tls_keys_ref *ref, |
Willy Tarreau | 83061a8 | 2018-07-13 11:56:34 +0200 | [diff] [blame] | 1174 | struct buffer *tlskey) |
Christopher Faulet | 16f45c8 | 2018-02-16 11:23:49 +0100 | [diff] [blame] | 1175 | { |
Emeric Brun | 9e75477 | 2019-01-10 17:51:55 +0100 | [diff] [blame] | 1176 | if (ref->key_size_bits == 128) { |
| 1177 | if (tlskey->data != sizeof(struct tls_sess_key_128)) |
| 1178 | return -1; |
| 1179 | } |
| 1180 | else if (ref->key_size_bits == 256) { |
| 1181 | if (tlskey->data != sizeof(struct tls_sess_key_256)) |
| 1182 | return -1; |
| 1183 | } |
| 1184 | else |
| 1185 | return -1; |
| 1186 | |
Christopher Faulet | 16f45c8 | 2018-02-16 11:23:49 +0100 | [diff] [blame] | 1187 | HA_RWLOCK_WRLOCK(TLSKEYS_REF_LOCK, &ref->lock); |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 1188 | memcpy((char *) (ref->tlskeys + ((ref->tls_ticket_enc_index + 2) % TLS_TICKETS_NO)), |
| 1189 | tlskey->area, tlskey->data); |
Christopher Faulet | 16f45c8 | 2018-02-16 11:23:49 +0100 | [diff] [blame] | 1190 | ref->tls_ticket_enc_index = (ref->tls_ticket_enc_index + 1) % TLS_TICKETS_NO; |
| 1191 | HA_RWLOCK_WRUNLOCK(TLSKEYS_REF_LOCK, &ref->lock); |
Emeric Brun | 9e75477 | 2019-01-10 17:51:55 +0100 | [diff] [blame] | 1192 | |
| 1193 | return 0; |
Christopher Faulet | 16f45c8 | 2018-02-16 11:23:49 +0100 | [diff] [blame] | 1194 | } |
| 1195 | |
Willy Tarreau | 83061a8 | 2018-07-13 11:56:34 +0200 | [diff] [blame] | 1196 | int ssl_sock_update_tlskey(char *filename, struct buffer *tlskey, char **err) |
Christopher Faulet | 16f45c8 | 2018-02-16 11:23:49 +0100 | [diff] [blame] | 1197 | { |
Nenad Merdanovic | 200b0fa | 2015-05-09 08:46:01 +0200 | [diff] [blame] | 1198 | struct tls_keys_ref *ref = tlskeys_ref_lookup(filename); |
| 1199 | |
| 1200 | if(!ref) { |
| 1201 | memprintf(err, "Unable to locate the referenced filename: %s", filename); |
| 1202 | return 1; |
| 1203 | } |
Emeric Brun | 9e75477 | 2019-01-10 17:51:55 +0100 | [diff] [blame] | 1204 | if (ssl_sock_update_tlskey_ref(ref, tlskey) < 0) { |
| 1205 | memprintf(err, "Invalid key size"); |
| 1206 | return 1; |
| 1207 | } |
| 1208 | |
Nenad Merdanovic | 200b0fa | 2015-05-09 08:46:01 +0200 | [diff] [blame] | 1209 | return 0; |
Nenad Merdanovic | 05552d4 | 2015-02-27 19:56:49 +0100 | [diff] [blame] | 1210 | } |
Nenad Merdanovic | 200b0fa | 2015-05-09 08:46:01 +0200 | [diff] [blame] | 1211 | |
| 1212 | /* This function finalize the configuration parsing. Its set all the |
Willy Tarreau | d1c5750 | 2016-12-22 22:46:15 +0100 | [diff] [blame] | 1213 | * automatic ids. It's called just after the basic checks. It returns |
| 1214 | * 0 on success otherwise ERR_*. |
Nenad Merdanovic | 200b0fa | 2015-05-09 08:46:01 +0200 | [diff] [blame] | 1215 | */ |
Willy Tarreau | d1c5750 | 2016-12-22 22:46:15 +0100 | [diff] [blame] | 1216 | static int tlskeys_finalize_config(void) |
Nenad Merdanovic | 200b0fa | 2015-05-09 08:46:01 +0200 | [diff] [blame] | 1217 | { |
| 1218 | int i = 0; |
| 1219 | struct tls_keys_ref *ref, *ref2, *ref3; |
| 1220 | struct list tkr = LIST_HEAD_INIT(tkr); |
| 1221 | |
| 1222 | list_for_each_entry(ref, &tlskeys_reference, list) { |
| 1223 | if (ref->unique_id == -1) { |
| 1224 | /* Look for the first free id. */ |
| 1225 | while (1) { |
| 1226 | list_for_each_entry(ref2, &tlskeys_reference, list) { |
| 1227 | if (ref2->unique_id == i) { |
| 1228 | i++; |
| 1229 | break; |
| 1230 | } |
| 1231 | } |
| 1232 | if (&ref2->list == &tlskeys_reference) |
| 1233 | break; |
| 1234 | } |
| 1235 | |
| 1236 | /* Uses the unique id and increment it for the next entry. */ |
| 1237 | ref->unique_id = i; |
| 1238 | i++; |
| 1239 | } |
| 1240 | } |
| 1241 | |
| 1242 | /* This sort the reference list by id. */ |
| 1243 | list_for_each_entry_safe(ref, ref2, &tlskeys_reference, list) { |
Willy Tarreau | 2b71810 | 2021-04-21 07:32:39 +0200 | [diff] [blame] | 1244 | LIST_DELETE(&ref->list); |
Nenad Merdanovic | 200b0fa | 2015-05-09 08:46:01 +0200 | [diff] [blame] | 1245 | list_for_each_entry(ref3, &tkr, list) { |
| 1246 | if (ref->unique_id < ref3->unique_id) { |
Willy Tarreau | 2b71810 | 2021-04-21 07:32:39 +0200 | [diff] [blame] | 1247 | LIST_APPEND(&ref3->list, &ref->list); |
Nenad Merdanovic | 200b0fa | 2015-05-09 08:46:01 +0200 | [diff] [blame] | 1248 | break; |
| 1249 | } |
| 1250 | } |
| 1251 | if (&ref3->list == &tkr) |
Willy Tarreau | 2b71810 | 2021-04-21 07:32:39 +0200 | [diff] [blame] | 1252 | LIST_APPEND(&tkr, &ref->list); |
Nenad Merdanovic | 200b0fa | 2015-05-09 08:46:01 +0200 | [diff] [blame] | 1253 | } |
| 1254 | |
| 1255 | /* swap root */ |
Willy Tarreau | 2b71810 | 2021-04-21 07:32:39 +0200 | [diff] [blame] | 1256 | LIST_INSERT(&tkr, &tlskeys_reference); |
| 1257 | LIST_DELETE(&tkr); |
Christopher Faulet | fc633b6 | 2020-11-06 15:24:23 +0100 | [diff] [blame] | 1258 | return ERR_NONE; |
Nenad Merdanovic | 200b0fa | 2015-05-09 08:46:01 +0200 | [diff] [blame] | 1259 | } |
Nenad Merdanovic | 05552d4 | 2015-02-27 19:56:49 +0100 | [diff] [blame] | 1260 | #endif /* SSL_CTRL_SET_TLSEXT_TICKET_KEY_CB */ |
| 1261 | |
Emmanuel Hocdet | fdec789 | 2017-01-13 17:48:18 +0100 | [diff] [blame] | 1262 | #ifndef OPENSSL_NO_OCSP |
William Lallemand | 76b4a12 | 2020-08-04 17:41:39 +0200 | [diff] [blame] | 1263 | int ocsp_ex_index = -1; |
| 1264 | |
yanbzhu | be2774d | 2015-12-10 15:07:30 -0500 | [diff] [blame] | 1265 | int ssl_sock_get_ocsp_arg_kt_index(int evp_keytype) |
| 1266 | { |
| 1267 | switch (evp_keytype) { |
| 1268 | case EVP_PKEY_RSA: |
| 1269 | return 2; |
| 1270 | case EVP_PKEY_DSA: |
| 1271 | return 0; |
| 1272 | case EVP_PKEY_EC: |
| 1273 | return 1; |
| 1274 | } |
| 1275 | |
| 1276 | return -1; |
| 1277 | } |
| 1278 | |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 1279 | /* |
| 1280 | * Callback used to set OCSP status extension content in server hello. |
| 1281 | */ |
| 1282 | int ssl_sock_ocsp_stapling_cbk(SSL *ssl, void *arg) |
| 1283 | { |
yanbzhu | be2774d | 2015-12-10 15:07:30 -0500 | [diff] [blame] | 1284 | struct certificate_ocsp *ocsp; |
| 1285 | struct ocsp_cbk_arg *ocsp_arg; |
| 1286 | char *ssl_buf; |
William Lallemand | 76b4a12 | 2020-08-04 17:41:39 +0200 | [diff] [blame] | 1287 | SSL_CTX *ctx; |
yanbzhu | be2774d | 2015-12-10 15:07:30 -0500 | [diff] [blame] | 1288 | EVP_PKEY *ssl_pkey; |
| 1289 | int key_type; |
| 1290 | int index; |
| 1291 | |
William Lallemand | 76b4a12 | 2020-08-04 17:41:39 +0200 | [diff] [blame] | 1292 | ctx = SSL_get_SSL_CTX(ssl); |
| 1293 | if (!ctx) |
| 1294 | return SSL_TLSEXT_ERR_NOACK; |
| 1295 | |
| 1296 | ocsp_arg = SSL_CTX_get_ex_data(ctx, ocsp_ex_index); |
| 1297 | if (!ocsp_arg) |
| 1298 | return SSL_TLSEXT_ERR_NOACK; |
yanbzhu | be2774d | 2015-12-10 15:07:30 -0500 | [diff] [blame] | 1299 | |
| 1300 | ssl_pkey = SSL_get_privatekey(ssl); |
| 1301 | if (!ssl_pkey) |
| 1302 | return SSL_TLSEXT_ERR_NOACK; |
| 1303 | |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 1304 | key_type = EVP_PKEY_base_id(ssl_pkey); |
yanbzhu | be2774d | 2015-12-10 15:07:30 -0500 | [diff] [blame] | 1305 | |
| 1306 | if (ocsp_arg->is_single && ocsp_arg->single_kt == key_type) |
| 1307 | ocsp = ocsp_arg->s_ocsp; |
| 1308 | else { |
| 1309 | /* For multiple certs per context, we have to find the correct OCSP response based on |
| 1310 | * the certificate type |
| 1311 | */ |
| 1312 | index = ssl_sock_get_ocsp_arg_kt_index(key_type); |
| 1313 | |
| 1314 | if (index < 0) |
| 1315 | return SSL_TLSEXT_ERR_NOACK; |
| 1316 | |
| 1317 | ocsp = ocsp_arg->m_ocsp[index]; |
| 1318 | |
| 1319 | } |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 1320 | |
| 1321 | if (!ocsp || |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 1322 | !ocsp->response.area || |
| 1323 | !ocsp->response.data || |
Emeric Brun | 4f3c87a | 2014-06-20 15:46:13 +0200 | [diff] [blame] | 1324 | (ocsp->expire < now.tv_sec)) |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 1325 | return SSL_TLSEXT_ERR_NOACK; |
| 1326 | |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 1327 | ssl_buf = OPENSSL_malloc(ocsp->response.data); |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 1328 | if (!ssl_buf) |
| 1329 | return SSL_TLSEXT_ERR_NOACK; |
| 1330 | |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 1331 | memcpy(ssl_buf, ocsp->response.area, ocsp->response.data); |
| 1332 | SSL_set_tlsext_status_ocsp_resp(ssl, ssl_buf, ocsp->response.data); |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 1333 | |
| 1334 | return SSL_TLSEXT_ERR_OK; |
| 1335 | } |
| 1336 | |
William Lallemand | 4a66013 | 2019-10-14 14:51:41 +0200 | [diff] [blame] | 1337 | #endif |
| 1338 | |
Ilya Shipitsin | b3201a3 | 2020-10-18 09:11:50 +0500 | [diff] [blame] | 1339 | #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] | 1340 | |
| 1341 | |
| 1342 | /* |
| 1343 | * Decrease the refcount of the struct ocsp_response and frees it if it's not |
| 1344 | * used anymore. Also removes it from the tree if free'd. |
| 1345 | */ |
| 1346 | static void ssl_sock_free_ocsp(struct certificate_ocsp *ocsp) |
| 1347 | { |
| 1348 | if (!ocsp) |
| 1349 | return; |
| 1350 | |
| 1351 | ocsp->refcount--; |
| 1352 | if (ocsp->refcount <= 0) { |
| 1353 | ebmb_delete(&ocsp->key); |
| 1354 | chunk_destroy(&ocsp->response); |
| 1355 | free(ocsp); |
| 1356 | } |
| 1357 | } |
| 1358 | |
| 1359 | |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 1360 | /* |
| 1361 | * 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] | 1362 | * ocsp_response buffer was found in the cert_key_and_chain. To enable OCSP |
| 1363 | * status extension, the issuer's certificate is mandatory. It should be |
| 1364 | * present in ckch->ocsp_issuer. |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 1365 | * |
William Lallemand | 246c024 | 2019-10-11 08:59:13 +0200 | [diff] [blame] | 1366 | * In addition, the ckch->ocsp_reponse buffer is loaded as a DER format of an |
| 1367 | * OCSP response. If file is empty or content is not a valid OCSP response, |
| 1368 | * OCSP status extension is enabled but OCSP response is ignored (a warning is |
| 1369 | * displayed). |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 1370 | * |
| 1371 | * 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] | 1372 | * successfully enabled, or -1 in other error case. |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 1373 | */ |
Emmanuel Hocdet | 6f507c7 | 2020-02-18 15:56:39 +0100 | [diff] [blame] | 1374 | 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] | 1375 | { |
Emmanuel Hocdet | 6f507c7 | 2020-02-18 15:56:39 +0100 | [diff] [blame] | 1376 | X509 *x, *issuer; |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 1377 | OCSP_CERTID *cid = NULL; |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 1378 | int i, ret = -1; |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 1379 | struct certificate_ocsp *ocsp = NULL, *iocsp; |
| 1380 | char *warn = NULL; |
| 1381 | unsigned char *p; |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 1382 | void (*callback) (void); |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 1383 | |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 1384 | |
William Lallemand | 246c024 | 2019-10-11 08:59:13 +0200 | [diff] [blame] | 1385 | x = ckch->cert; |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 1386 | if (!x) |
| 1387 | goto out; |
| 1388 | |
William Lallemand | 246c024 | 2019-10-11 08:59:13 +0200 | [diff] [blame] | 1389 | issuer = ckch->ocsp_issuer; |
Emmanuel Hocdet | 6f507c7 | 2020-02-18 15:56:39 +0100 | [diff] [blame] | 1390 | /* take issuer from chain over ocsp_issuer, is what is done historicaly */ |
| 1391 | if (chain) { |
| 1392 | /* check if one of the certificate of the chain is the issuer */ |
| 1393 | for (i = 0; i < sk_X509_num(chain); i++) { |
| 1394 | X509 *ti = sk_X509_value(chain, i); |
| 1395 | if (X509_check_issued(ti, x) == X509_V_OK) { |
| 1396 | issuer = ti; |
| 1397 | break; |
| 1398 | } |
| 1399 | } |
| 1400 | } |
William Lallemand | 246c024 | 2019-10-11 08:59:13 +0200 | [diff] [blame] | 1401 | if (!issuer) |
| 1402 | goto out; |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 1403 | |
| 1404 | cid = OCSP_cert_to_id(0, x, issuer); |
| 1405 | if (!cid) |
| 1406 | goto out; |
| 1407 | |
| 1408 | i = i2d_OCSP_CERTID(cid, NULL); |
| 1409 | if (!i || (i > OCSP_MAX_CERTID_ASN1_LENGTH)) |
| 1410 | goto out; |
| 1411 | |
Vincent Bernat | 02779b6 | 2016-04-03 13:48:43 +0200 | [diff] [blame] | 1412 | ocsp = calloc(1, sizeof(*ocsp)); |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 1413 | if (!ocsp) |
| 1414 | goto out; |
| 1415 | |
| 1416 | p = ocsp->key_data; |
| 1417 | i2d_OCSP_CERTID(cid, &p); |
| 1418 | |
| 1419 | iocsp = (struct certificate_ocsp *)ebmb_insert(&cert_ocsp_tree, &ocsp->key, OCSP_MAX_CERTID_ASN1_LENGTH); |
| 1420 | if (iocsp == ocsp) |
| 1421 | ocsp = NULL; |
| 1422 | |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 1423 | #ifndef SSL_CTX_get_tlsext_status_cb |
| 1424 | # define SSL_CTX_get_tlsext_status_cb(ctx, cb) \ |
| 1425 | *cb = (void (*) (void))ctx->tlsext_status_cb; |
| 1426 | #endif |
| 1427 | SSL_CTX_get_tlsext_status_cb(ctx, &callback); |
| 1428 | |
| 1429 | if (!callback) { |
William Lallemand | a560c06 | 2020-07-31 11:43:20 +0200 | [diff] [blame] | 1430 | struct ocsp_cbk_arg *cb_arg; |
Emmanuel Hocdet | b7a4c34 | 2017-01-06 12:57:46 +0100 | [diff] [blame] | 1431 | EVP_PKEY *pkey; |
yanbzhu | be2774d | 2015-12-10 15:07:30 -0500 | [diff] [blame] | 1432 | |
William Lallemand | a560c06 | 2020-07-31 11:43:20 +0200 | [diff] [blame] | 1433 | cb_arg = calloc(1, sizeof(*cb_arg)); |
| 1434 | if (!cb_arg) |
| 1435 | goto out; |
| 1436 | |
yanbzhu | be2774d | 2015-12-10 15:07:30 -0500 | [diff] [blame] | 1437 | cb_arg->is_single = 1; |
| 1438 | cb_arg->s_ocsp = iocsp; |
William Lallemand | 76b4a12 | 2020-08-04 17:41:39 +0200 | [diff] [blame] | 1439 | iocsp->refcount++; |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 1440 | |
Emmanuel Hocdet | b7a4c34 | 2017-01-06 12:57:46 +0100 | [diff] [blame] | 1441 | pkey = X509_get_pubkey(x); |
| 1442 | cb_arg->single_kt = EVP_PKEY_base_id(pkey); |
| 1443 | EVP_PKEY_free(pkey); |
yanbzhu | be2774d | 2015-12-10 15:07:30 -0500 | [diff] [blame] | 1444 | |
| 1445 | SSL_CTX_set_tlsext_status_cb(ctx, ssl_sock_ocsp_stapling_cbk); |
William Lallemand | 76b4a12 | 2020-08-04 17:41:39 +0200 | [diff] [blame] | 1446 | 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 */ |
| 1447 | |
yanbzhu | be2774d | 2015-12-10 15:07:30 -0500 | [diff] [blame] | 1448 | } else { |
| 1449 | /* |
| 1450 | * If the ctx has a status CB, then we have previously set an OCSP staple for this ctx |
| 1451 | * Update that cb_arg with the new cert's staple |
| 1452 | */ |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 1453 | struct ocsp_cbk_arg *cb_arg; |
yanbzhu | be2774d | 2015-12-10 15:07:30 -0500 | [diff] [blame] | 1454 | struct certificate_ocsp *tmp_ocsp; |
| 1455 | int index; |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 1456 | int key_type; |
Emmanuel Hocdet | b7a4c34 | 2017-01-06 12:57:46 +0100 | [diff] [blame] | 1457 | EVP_PKEY *pkey; |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 1458 | |
William Lallemand | 76b4a12 | 2020-08-04 17:41:39 +0200 | [diff] [blame] | 1459 | cb_arg = SSL_CTX_get_ex_data(ctx, ocsp_ex_index); |
yanbzhu | be2774d | 2015-12-10 15:07:30 -0500 | [diff] [blame] | 1460 | |
| 1461 | /* |
| 1462 | * The following few lines will convert cb_arg from a single ocsp to multi ocsp |
| 1463 | * the order of operations below matter, take care when changing it |
| 1464 | */ |
| 1465 | tmp_ocsp = cb_arg->s_ocsp; |
| 1466 | index = ssl_sock_get_ocsp_arg_kt_index(cb_arg->single_kt); |
| 1467 | cb_arg->s_ocsp = NULL; |
| 1468 | cb_arg->m_ocsp[index] = tmp_ocsp; |
| 1469 | cb_arg->is_single = 0; |
| 1470 | cb_arg->single_kt = 0; |
| 1471 | |
Emmanuel Hocdet | b7a4c34 | 2017-01-06 12:57:46 +0100 | [diff] [blame] | 1472 | pkey = X509_get_pubkey(x); |
| 1473 | key_type = EVP_PKEY_base_id(pkey); |
| 1474 | EVP_PKEY_free(pkey); |
| 1475 | |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 1476 | index = ssl_sock_get_ocsp_arg_kt_index(key_type); |
William Lallemand | 76b4a12 | 2020-08-04 17:41:39 +0200 | [diff] [blame] | 1477 | if (index >= 0 && !cb_arg->m_ocsp[index]) { |
yanbzhu | be2774d | 2015-12-10 15:07:30 -0500 | [diff] [blame] | 1478 | cb_arg->m_ocsp[index] = iocsp; |
William Lallemand | 76b4a12 | 2020-08-04 17:41:39 +0200 | [diff] [blame] | 1479 | iocsp->refcount++; |
| 1480 | } |
yanbzhu | be2774d | 2015-12-10 15:07:30 -0500 | [diff] [blame] | 1481 | } |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 1482 | |
| 1483 | ret = 0; |
| 1484 | |
| 1485 | warn = NULL; |
William Lallemand | 86e4d63 | 2020-08-07 00:44:32 +0200 | [diff] [blame] | 1486 | if (ssl_sock_load_ocsp_response(ckch->ocsp_response, iocsp, cid, &warn)) { |
William Lallemand | 3b5f360 | 2019-10-16 18:05:05 +0200 | [diff] [blame] | 1487 | memprintf(&warn, "Loading: %s. Content will be ignored", warn ? warn : "failure"); |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 1488 | ha_warning("%s.\n", warn); |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 1489 | } |
| 1490 | |
| 1491 | out: |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 1492 | if (cid) |
| 1493 | OCSP_CERTID_free(cid); |
| 1494 | |
| 1495 | if (ocsp) |
| 1496 | free(ocsp); |
| 1497 | |
| 1498 | if (warn) |
| 1499 | free(warn); |
| 1500 | |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 1501 | return ret; |
| 1502 | } |
Emmanuel Hocdet | a73a222 | 2020-10-26 13:55:30 +0100 | [diff] [blame] | 1503 | #endif |
| 1504 | |
| 1505 | #ifdef OPENSSL_IS_BORINGSSL |
Emmanuel Hocdet | 6f507c7 | 2020-02-18 15:56:39 +0100 | [diff] [blame] | 1506 | 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] | 1507 | { |
William Lallemand | 4a66013 | 2019-10-14 14:51:41 +0200 | [diff] [blame] | 1508 | 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] | 1509 | } |
| 1510 | #endif |
| 1511 | |
William Lallemand | 4a66013 | 2019-10-14 14:51:41 +0200 | [diff] [blame] | 1512 | |
Ilya Shipitsin | 7bbf586 | 2021-02-06 18:55:27 +0500 | [diff] [blame] | 1513 | #ifdef HAVE_SSL_CTX_ADD_SERVER_CUSTOM_EXT |
Janusz Dziemidowicz | 2c701b5 | 2015-03-07 23:03:59 +0100 | [diff] [blame] | 1514 | |
| 1515 | #define CT_EXTENSION_TYPE 18 |
| 1516 | |
William Lallemand | 03c331c | 2020-05-13 10:10:01 +0200 | [diff] [blame] | 1517 | int sctl_ex_index = -1; |
Janusz Dziemidowicz | 2c701b5 | 2015-03-07 23:03:59 +0100 | [diff] [blame] | 1518 | |
| 1519 | int ssl_sock_sctl_add_cbk(SSL *ssl, unsigned ext_type, const unsigned char **out, size_t *outlen, int *al, void *add_arg) |
| 1520 | { |
Willy Tarreau | 83061a8 | 2018-07-13 11:56:34 +0200 | [diff] [blame] | 1521 | struct buffer *sctl = add_arg; |
Janusz Dziemidowicz | 2c701b5 | 2015-03-07 23:03:59 +0100 | [diff] [blame] | 1522 | |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 1523 | *out = (unsigned char *) sctl->area; |
| 1524 | *outlen = sctl->data; |
Janusz Dziemidowicz | 2c701b5 | 2015-03-07 23:03:59 +0100 | [diff] [blame] | 1525 | |
| 1526 | return 1; |
| 1527 | } |
| 1528 | |
| 1529 | int ssl_sock_sctl_parse_cbk(SSL *s, unsigned int ext_type, const unsigned char *in, size_t inlen, int *al, void *parse_arg) |
| 1530 | { |
| 1531 | return 1; |
| 1532 | } |
| 1533 | |
William Lallemand | a17f411 | 2019-10-10 15:16:44 +0200 | [diff] [blame] | 1534 | static int ssl_sock_load_sctl(SSL_CTX *ctx, struct buffer *sctl) |
Janusz Dziemidowicz | 2c701b5 | 2015-03-07 23:03:59 +0100 | [diff] [blame] | 1535 | { |
Janusz Dziemidowicz | 2c701b5 | 2015-03-07 23:03:59 +0100 | [diff] [blame] | 1536 | int ret = -1; |
Janusz Dziemidowicz | 2c701b5 | 2015-03-07 23:03:59 +0100 | [diff] [blame] | 1537 | |
William Lallemand | a17f411 | 2019-10-10 15:16:44 +0200 | [diff] [blame] | 1538 | 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] | 1539 | goto out; |
| 1540 | |
Janusz Dziemidowicz | 2c701b5 | 2015-03-07 23:03:59 +0100 | [diff] [blame] | 1541 | SSL_CTX_set_ex_data(ctx, sctl_ex_index, sctl); |
| 1542 | |
| 1543 | ret = 0; |
| 1544 | |
| 1545 | out: |
| 1546 | return ret; |
| 1547 | } |
| 1548 | |
| 1549 | #endif |
| 1550 | |
Emeric Brun | e1f38db | 2012-09-03 20:36:47 +0200 | [diff] [blame] | 1551 | void ssl_sock_infocbk(const SSL *ssl, int where, int ret) |
| 1552 | { |
Thierry FOURNIER | 28962c9 | 2018-06-17 21:37:05 +0200 | [diff] [blame] | 1553 | struct connection *conn = SSL_get_ex_data(ssl, ssl_app_data_index); |
Olivier Houchard | 7b5fd1e | 2019-02-28 18:10:45 +0100 | [diff] [blame] | 1554 | struct ssl_sock_ctx *ctx = conn->xprt_ctx; |
Emeric Brun | d8b2bb5 | 2014-01-28 15:43:53 +0100 | [diff] [blame] | 1555 | BIO *write_bio; |
Willy Tarreau | 622317d | 2015-02-27 16:36:16 +0100 | [diff] [blame] | 1556 | (void)ret; /* shut gcc stupid warning */ |
Emeric Brun | e1f38db | 2012-09-03 20:36:47 +0200 | [diff] [blame] | 1557 | |
Dirkjan Bussink | 526894f | 2019-01-21 09:35:03 -0800 | [diff] [blame] | 1558 | #ifndef SSL_OP_NO_RENEGOTIATION |
| 1559 | /* Please note that BoringSSL defines this macro to zero so don't |
| 1560 | * change this to #if and do not assign a default value to this macro! |
| 1561 | */ |
Emeric Brun | e1f38db | 2012-09-03 20:36:47 +0200 | [diff] [blame] | 1562 | if (where & SSL_CB_HANDSHAKE_START) { |
| 1563 | /* Disable renegotiation (CVE-2009-3555) */ |
Willy Tarreau | c192b0a | 2020-01-23 09:11:58 +0100 | [diff] [blame] | 1564 | 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] | 1565 | conn->flags |= CO_FL_ERROR; |
Willy Tarreau | 20879a0 | 2012-12-03 16:32:10 +0100 | [diff] [blame] | 1566 | conn->err_code = CO_ER_SSL_RENEG; |
| 1567 | } |
Emeric Brun | e1f38db | 2012-09-03 20:36:47 +0200 | [diff] [blame] | 1568 | } |
Dirkjan Bussink | 526894f | 2019-01-21 09:35:03 -0800 | [diff] [blame] | 1569 | #endif |
Emeric Brun | d8b2bb5 | 2014-01-28 15:43:53 +0100 | [diff] [blame] | 1570 | |
| 1571 | if ((where & SSL_CB_ACCEPT_LOOP) == SSL_CB_ACCEPT_LOOP) { |
Olivier Houchard | 7b5fd1e | 2019-02-28 18:10:45 +0100 | [diff] [blame] | 1572 | if (!(ctx->xprt_st & SSL_SOCK_ST_FL_16K_WBFSIZE)) { |
Emeric Brun | d8b2bb5 | 2014-01-28 15:43:53 +0100 | [diff] [blame] | 1573 | /* Long certificate chains optimz |
Ilya Shipitsin | 77e3b4a | 2020-03-10 12:06:11 +0500 | [diff] [blame] | 1574 | If write and read bios are different, we |
Emeric Brun | d8b2bb5 | 2014-01-28 15:43:53 +0100 | [diff] [blame] | 1575 | consider that the buffering was activated, |
| 1576 | so we rise the output buffer size from 4k |
| 1577 | to 16k */ |
| 1578 | write_bio = SSL_get_wbio(ssl); |
| 1579 | if (write_bio != SSL_get_rbio(ssl)) { |
| 1580 | BIO_set_write_buffer_size(write_bio, 16384); |
Olivier Houchard | 7b5fd1e | 2019-02-28 18:10:45 +0100 | [diff] [blame] | 1581 | ctx->xprt_st |= SSL_SOCK_ST_FL_16K_WBFSIZE; |
Emeric Brun | d8b2bb5 | 2014-01-28 15:43:53 +0100 | [diff] [blame] | 1582 | } |
| 1583 | } |
| 1584 | } |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 1585 | } |
| 1586 | |
Emeric Brun | e64aef1 | 2012-09-21 13:15:06 +0200 | [diff] [blame] | 1587 | /* Callback is called for each certificate of the chain during a verify |
| 1588 | ok is set to 1 if preverify detect no error on current certificate. |
| 1589 | Returns 0 to break the handshake, 1 otherwise. */ |
Evan Broder | be55431 | 2013-06-27 00:05:25 -0700 | [diff] [blame] | 1590 | int ssl_sock_bind_verifycbk(int ok, X509_STORE_CTX *x_store) |
Emeric Brun | e64aef1 | 2012-09-21 13:15:06 +0200 | [diff] [blame] | 1591 | { |
| 1592 | SSL *ssl; |
| 1593 | struct connection *conn; |
Olivier Houchard | 7b5fd1e | 2019-02-28 18:10:45 +0100 | [diff] [blame] | 1594 | struct ssl_sock_ctx *ctx; |
Emeric Brun | 81c00f0 | 2012-09-21 14:31:21 +0200 | [diff] [blame] | 1595 | int err, depth; |
Emeric Brun | e64aef1 | 2012-09-21 13:15:06 +0200 | [diff] [blame] | 1596 | |
| 1597 | 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] | 1598 | conn = SSL_get_ex_data(ssl, ssl_app_data_index); |
Emeric Brun | e64aef1 | 2012-09-21 13:15:06 +0200 | [diff] [blame] | 1599 | |
Olivier Houchard | 7b5fd1e | 2019-02-28 18:10:45 +0100 | [diff] [blame] | 1600 | ctx = conn->xprt_ctx; |
| 1601 | |
| 1602 | ctx->xprt_st |= SSL_SOCK_ST_FL_VERIFY_DONE; |
Emeric Brun | e64aef1 | 2012-09-21 13:15:06 +0200 | [diff] [blame] | 1603 | |
Emeric Brun | 81c00f0 | 2012-09-21 14:31:21 +0200 | [diff] [blame] | 1604 | if (ok) /* no errors */ |
| 1605 | return ok; |
| 1606 | |
| 1607 | depth = X509_STORE_CTX_get_error_depth(x_store); |
| 1608 | err = X509_STORE_CTX_get_error(x_store); |
| 1609 | |
| 1610 | /* check if CA error needs to be ignored */ |
| 1611 | if (depth > 0) { |
Olivier Houchard | 7b5fd1e | 2019-02-28 18:10:45 +0100 | [diff] [blame] | 1612 | if (!SSL_SOCK_ST_TO_CA_ERROR(ctx->xprt_st)) { |
| 1613 | ctx->xprt_st |= SSL_SOCK_CA_ERROR_TO_ST(err); |
| 1614 | ctx->xprt_st |= SSL_SOCK_CAEDEPTH_TO_ST(depth); |
Emeric Brun | f282a81 | 2012-09-21 15:27:54 +0200 | [diff] [blame] | 1615 | } |
| 1616 | |
Willy Tarreau | 731248f | 2020-02-04 14:02:02 +0100 | [diff] [blame] | 1617 | 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] | 1618 | ssl_sock_dump_errors(conn); |
Emeric Brun | 1eb20ef | 2012-12-03 13:24:29 +0100 | [diff] [blame] | 1619 | ERR_clear_error(); |
Emeric Brun | 81c00f0 | 2012-09-21 14:31:21 +0200 | [diff] [blame] | 1620 | return 1; |
Emeric Brun | 1eb20ef | 2012-12-03 13:24:29 +0100 | [diff] [blame] | 1621 | } |
Emeric Brun | 81c00f0 | 2012-09-21 14:31:21 +0200 | [diff] [blame] | 1622 | |
Willy Tarreau | 20879a0 | 2012-12-03 16:32:10 +0100 | [diff] [blame] | 1623 | conn->err_code = CO_ER_SSL_CA_FAIL; |
Emeric Brun | 81c00f0 | 2012-09-21 14:31:21 +0200 | [diff] [blame] | 1624 | return 0; |
| 1625 | } |
| 1626 | |
Olivier Houchard | 7b5fd1e | 2019-02-28 18:10:45 +0100 | [diff] [blame] | 1627 | if (!SSL_SOCK_ST_TO_CRTERROR(ctx->xprt_st)) |
| 1628 | ctx->xprt_st |= SSL_SOCK_CRTERROR_TO_ST(err); |
Emeric Brun | f282a81 | 2012-09-21 15:27:54 +0200 | [diff] [blame] | 1629 | |
Emeric Brun | 81c00f0 | 2012-09-21 14:31:21 +0200 | [diff] [blame] | 1630 | /* check if certificate error needs to be ignored */ |
Willy Tarreau | 731248f | 2020-02-04 14:02:02 +0100 | [diff] [blame] | 1631 | 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] | 1632 | ssl_sock_dump_errors(conn); |
Emeric Brun | 1eb20ef | 2012-12-03 13:24:29 +0100 | [diff] [blame] | 1633 | ERR_clear_error(); |
Emeric Brun | 81c00f0 | 2012-09-21 14:31:21 +0200 | [diff] [blame] | 1634 | return 1; |
Emeric Brun | 1eb20ef | 2012-12-03 13:24:29 +0100 | [diff] [blame] | 1635 | } |
Emeric Brun | 81c00f0 | 2012-09-21 14:31:21 +0200 | [diff] [blame] | 1636 | |
Willy Tarreau | 20879a0 | 2012-12-03 16:32:10 +0100 | [diff] [blame] | 1637 | conn->err_code = CO_ER_SSL_CRT_FAIL; |
Emeric Brun | 81c00f0 | 2012-09-21 14:31:21 +0200 | [diff] [blame] | 1638 | return 0; |
Emeric Brun | e64aef1 | 2012-09-21 13:15:06 +0200 | [diff] [blame] | 1639 | } |
| 1640 | |
Dragan Dosen | 9ac9809 | 2020-05-11 15:51:45 +0200 | [diff] [blame] | 1641 | #ifdef TLS1_RT_HEARTBEAT |
| 1642 | static void ssl_sock_parse_heartbeat(struct connection *conn, int write_p, int version, |
| 1643 | int content_type, const void *buf, size_t len, |
| 1644 | SSL *ssl) |
| 1645 | { |
| 1646 | /* test heartbeat received (write_p is set to 0 |
| 1647 | for a received record) */ |
| 1648 | if ((content_type == TLS1_RT_HEARTBEAT) && (write_p == 0)) { |
| 1649 | struct ssl_sock_ctx *ctx = conn->xprt_ctx; |
| 1650 | const unsigned char *p = buf; |
| 1651 | unsigned int payload; |
| 1652 | |
| 1653 | ctx->xprt_st |= SSL_SOCK_RECV_HEARTBEAT; |
| 1654 | |
| 1655 | /* Check if this is a CVE-2014-0160 exploitation attempt. */ |
| 1656 | if (*p != TLS1_HB_REQUEST) |
| 1657 | return; |
| 1658 | |
| 1659 | if (len < 1 + 2 + 16) /* 1 type + 2 size + 0 payload + 16 padding */ |
| 1660 | goto kill_it; |
| 1661 | |
| 1662 | payload = (p[1] * 256) + p[2]; |
| 1663 | if (3 + payload + 16 <= len) |
| 1664 | return; /* OK no problem */ |
| 1665 | kill_it: |
| 1666 | /* We have a clear heartbleed attack (CVE-2014-0160), the |
| 1667 | * advertised payload is larger than the advertised packet |
| 1668 | * length, so we have garbage in the buffer between the |
| 1669 | * payload and the end of the buffer (p+len). We can't know |
| 1670 | * if the SSL stack is patched, and we don't know if we can |
| 1671 | * safely wipe out the area between p+3+len and payload. |
| 1672 | * So instead, we prevent the response from being sent by |
| 1673 | * setting the max_send_fragment to 0 and we report an SSL |
| 1674 | * error, which will kill this connection. It will be reported |
| 1675 | * above as SSL_ERROR_SSL while an other handshake failure with |
| 1676 | * a heartbeat message will be reported as SSL_ERROR_SYSCALL. |
| 1677 | */ |
| 1678 | ssl->max_send_fragment = 0; |
| 1679 | SSLerr(SSL_F_TLS1_HEARTBEAT, SSL_R_SSL_HANDSHAKE_FAILURE); |
| 1680 | } |
| 1681 | } |
| 1682 | #endif |
| 1683 | |
| 1684 | static void ssl_sock_parse_clienthello(struct connection *conn, int write_p, int version, |
| 1685 | int content_type, const void *buf, size_t len, |
| 1686 | SSL *ssl) |
Thierry FOURNIER | 5bf7732 | 2017-02-25 12:45:22 +0100 | [diff] [blame] | 1687 | { |
Emmanuel Hocdet | e380474 | 2017-03-08 11:07:10 +0100 | [diff] [blame] | 1688 | struct ssl_capture *capture; |
Thierry FOURNIER | 5bf7732 | 2017-02-25 12:45:22 +0100 | [diff] [blame] | 1689 | unsigned char *msg; |
| 1690 | unsigned char *end; |
Emmanuel Hocdet | e380474 | 2017-03-08 11:07:10 +0100 | [diff] [blame] | 1691 | size_t rec_len; |
Thierry FOURNIER | 5bf7732 | 2017-02-25 12:45:22 +0100 | [diff] [blame] | 1692 | |
| 1693 | /* This function is called for "from client" and "to server" |
| 1694 | * connections. The combination of write_p == 0 and content_type == 22 |
Joseph Herlant | 017b3da | 2018-11-15 09:07:59 -0800 | [diff] [blame] | 1695 | * is only available during "from client" connection. |
Thierry FOURNIER | 5bf7732 | 2017-02-25 12:45:22 +0100 | [diff] [blame] | 1696 | */ |
| 1697 | |
| 1698 | /* "write_p" is set to 0 is the bytes are received messages, |
| 1699 | * otherwise it is set to 1. |
| 1700 | */ |
| 1701 | if (write_p != 0) |
| 1702 | return; |
| 1703 | |
| 1704 | /* content_type contains the type of message received or sent |
| 1705 | * according with the SSL/TLS protocol spec. This message is |
| 1706 | * encoded with one byte. The value 256 (two bytes) is used |
| 1707 | * for designing the SSL/TLS record layer. According with the |
| 1708 | * rfc6101, the expected message (other than 256) are: |
| 1709 | * - change_cipher_spec(20) |
| 1710 | * - alert(21) |
| 1711 | * - handshake(22) |
| 1712 | * - application_data(23) |
| 1713 | * - (255) |
| 1714 | * We are interessed by the handshake and specially the client |
| 1715 | * hello. |
| 1716 | */ |
| 1717 | if (content_type != 22) |
| 1718 | return; |
| 1719 | |
| 1720 | /* The message length is at least 4 bytes, containing the |
| 1721 | * message type and the message length. |
| 1722 | */ |
| 1723 | if (len < 4) |
| 1724 | return; |
| 1725 | |
| 1726 | /* First byte of the handshake message id the type of |
Ilya Shipitsin | 77e3b4a | 2020-03-10 12:06:11 +0500 | [diff] [blame] | 1727 | * message. The known types are: |
Thierry FOURNIER | 5bf7732 | 2017-02-25 12:45:22 +0100 | [diff] [blame] | 1728 | * - hello_request(0) |
| 1729 | * - client_hello(1) |
| 1730 | * - server_hello(2) |
| 1731 | * - certificate(11) |
| 1732 | * - server_key_exchange (12) |
| 1733 | * - certificate_request(13) |
| 1734 | * - server_hello_done(14) |
| 1735 | * We are interested by the client hello. |
| 1736 | */ |
| 1737 | msg = (unsigned char *)buf; |
| 1738 | if (msg[0] != 1) |
| 1739 | return; |
| 1740 | |
| 1741 | /* Next three bytes are the length of the message. The total length |
| 1742 | * must be this decoded length + 4. If the length given as argument |
| 1743 | * is not the same, we abort the protocol dissector. |
| 1744 | */ |
| 1745 | rec_len = (msg[1] << 16) + (msg[2] << 8) + msg[3]; |
| 1746 | if (len < rec_len + 4) |
| 1747 | return; |
| 1748 | msg += 4; |
| 1749 | end = msg + rec_len; |
| 1750 | if (end < msg) |
| 1751 | return; |
| 1752 | |
| 1753 | /* Expect 2 bytes for protocol version (1 byte for major and 1 byte |
| 1754 | * for minor, the random, composed by 4 bytes for the unix time and |
Baptiste Assmann | 6be139f | 2018-11-28 15:20:25 +0100 | [diff] [blame] | 1755 | * 28 bytes for unix payload. So we jump 1 + 1 + 4 + 28. |
| 1756 | */ |
| 1757 | msg += 1 + 1 + 4 + 28; |
| 1758 | if (msg > end) |
| 1759 | return; |
| 1760 | |
| 1761 | /* Next, is session id: |
| 1762 | * if present, we have to jump by length + 1 for the size information |
| 1763 | * if not present, we have to jump by 1 only |
Thierry FOURNIER | 5bf7732 | 2017-02-25 12:45:22 +0100 | [diff] [blame] | 1764 | */ |
Baptiste Assmann | 6be139f | 2018-11-28 15:20:25 +0100 | [diff] [blame] | 1765 | if (msg[0] > 0) |
| 1766 | msg += msg[0]; |
| 1767 | msg += 1; |
Thierry FOURNIER | 5bf7732 | 2017-02-25 12:45:22 +0100 | [diff] [blame] | 1768 | if (msg > end) |
| 1769 | return; |
| 1770 | |
| 1771 | /* Next two bytes are the ciphersuite length. */ |
| 1772 | if (msg + 2 > end) |
| 1773 | return; |
| 1774 | rec_len = (msg[0] << 8) + msg[1]; |
| 1775 | msg += 2; |
| 1776 | if (msg + rec_len > end || msg + rec_len < msg) |
| 1777 | return; |
| 1778 | |
Willy Tarreau | b454e90 | 2021-03-22 15:09:41 +0100 | [diff] [blame] | 1779 | capture = pool_alloc(pool_head_ssl_capture); |
Emmanuel Hocdet | e380474 | 2017-03-08 11:07:10 +0100 | [diff] [blame] | 1780 | if (!capture) |
| 1781 | return; |
Thierry FOURNIER | 5bf7732 | 2017-02-25 12:45:22 +0100 | [diff] [blame] | 1782 | /* Compute the xxh64 of the ciphersuite. */ |
| 1783 | capture->xxh64 = XXH64(msg, rec_len, 0); |
| 1784 | |
| 1785 | /* Capture the ciphersuite. */ |
Emmanuel Hocdet | e380474 | 2017-03-08 11:07:10 +0100 | [diff] [blame] | 1786 | capture->ciphersuite_len = (global_ssl.capture_cipherlist < rec_len) ? |
| 1787 | global_ssl.capture_cipherlist : rec_len; |
Thierry FOURNIER | 5bf7732 | 2017-02-25 12:45:22 +0100 | [diff] [blame] | 1788 | memcpy(capture->ciphersuite, msg, capture->ciphersuite_len); |
Emmanuel Hocdet | e380474 | 2017-03-08 11:07:10 +0100 | [diff] [blame] | 1789 | |
| 1790 | SSL_set_ex_data(ssl, ssl_capture_ptr_index, capture); |
Thierry FOURNIER | 5bf7732 | 2017-02-25 12:45:22 +0100 | [diff] [blame] | 1791 | } |
William Lallemand | 7d42ef5 | 2020-07-06 11:41:30 +0200 | [diff] [blame] | 1792 | |
| 1793 | |
William Lallemand | ca5cf0a | 2021-06-09 16:46:12 +0200 | [diff] [blame] | 1794 | #ifdef HAVE_SSL_KEYLOG |
William Lallemand | 7d42ef5 | 2020-07-06 11:41:30 +0200 | [diff] [blame] | 1795 | static void ssl_init_keylog(struct connection *conn, int write_p, int version, |
| 1796 | int content_type, const void *buf, size_t len, |
| 1797 | SSL *ssl) |
| 1798 | { |
| 1799 | struct ssl_keylog *keylog; |
| 1800 | |
| 1801 | if (SSL_get_ex_data(ssl, ssl_keylog_index)) |
| 1802 | return; |
| 1803 | |
Willy Tarreau | f208ac0 | 2021-03-22 21:10:12 +0100 | [diff] [blame] | 1804 | keylog = pool_zalloc(pool_head_ssl_keylog); |
William Lallemand | 7d42ef5 | 2020-07-06 11:41:30 +0200 | [diff] [blame] | 1805 | if (!keylog) |
| 1806 | return; |
| 1807 | |
William Lallemand | 7d42ef5 | 2020-07-06 11:41:30 +0200 | [diff] [blame] | 1808 | if (!SSL_set_ex_data(ssl, ssl_keylog_index, keylog)) { |
| 1809 | pool_free(pool_head_ssl_keylog, keylog); |
| 1810 | return; |
| 1811 | } |
| 1812 | } |
| 1813 | #endif |
Thierry FOURNIER | 5bf7732 | 2017-02-25 12:45:22 +0100 | [diff] [blame] | 1814 | |
Emeric Brun | 29f037d | 2014-04-25 19:05:36 +0200 | [diff] [blame] | 1815 | /* Callback is called for ssl protocol analyse */ |
| 1816 | void ssl_sock_msgcbk(int write_p, int version, int content_type, const void *buf, size_t len, SSL *ssl, void *arg) |
| 1817 | { |
Dragan Dosen | 1e7ed04 | 2020-05-08 18:30:00 +0200 | [diff] [blame] | 1818 | struct connection *conn = SSL_get_ex_data(ssl, ssl_app_data_index); |
| 1819 | struct ssl_sock_msg_callback *cbk; |
| 1820 | |
Dragan Dosen | 1e7ed04 | 2020-05-08 18:30:00 +0200 | [diff] [blame] | 1821 | /* Try to call all callback functions that were registered by using |
| 1822 | * ssl_sock_register_msg_callback(). |
| 1823 | */ |
| 1824 | list_for_each_entry(cbk, &ssl_sock_msg_callbacks, list) { |
| 1825 | cbk->func(conn, write_p, version, content_type, buf, len, ssl); |
| 1826 | } |
Emeric Brun | 29f037d | 2014-04-25 19:05:36 +0200 | [diff] [blame] | 1827 | } |
| 1828 | |
Bernard Spil | 13c53f8 | 2018-02-15 13:34:58 +0100 | [diff] [blame] | 1829 | #if defined(OPENSSL_NPN_NEGOTIATED) && !defined(OPENSSL_NO_NEXTPROTONEG) |
Olivier Houchard | c756600 | 2018-11-20 23:33:50 +0100 | [diff] [blame] | 1830 | static int ssl_sock_srv_select_protos(SSL *s, unsigned char **out, unsigned char *outlen, |
| 1831 | const unsigned char *in, unsigned int inlen, |
| 1832 | void *arg) |
| 1833 | { |
| 1834 | struct server *srv = arg; |
| 1835 | |
| 1836 | if (SSL_select_next_proto(out, outlen, in, inlen, (unsigned char *)srv->ssl_ctx.npn_str, |
| 1837 | srv->ssl_ctx.npn_len) == OPENSSL_NPN_NEGOTIATED) |
| 1838 | return SSL_TLSEXT_ERR_OK; |
| 1839 | return SSL_TLSEXT_ERR_NOACK; |
| 1840 | } |
| 1841 | #endif |
| 1842 | |
| 1843 | #if defined(OPENSSL_NPN_NEGOTIATED) && !defined(OPENSSL_NO_NEXTPROTONEG) |
Willy Tarreau | 6c9a3d5 | 2012-10-18 18:57:14 +0200 | [diff] [blame] | 1844 | /* This callback is used so that the server advertises the list of |
Ilya Shipitsin | 77e3b4a | 2020-03-10 12:06:11 +0500 | [diff] [blame] | 1845 | * negotiable protocols for NPN. |
Willy Tarreau | 6c9a3d5 | 2012-10-18 18:57:14 +0200 | [diff] [blame] | 1846 | */ |
| 1847 | static int ssl_sock_advertise_npn_protos(SSL *s, const unsigned char **data, |
| 1848 | unsigned int *len, void *arg) |
| 1849 | { |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 1850 | struct ssl_bind_conf *conf = arg; |
Willy Tarreau | 6c9a3d5 | 2012-10-18 18:57:14 +0200 | [diff] [blame] | 1851 | |
| 1852 | *data = (const unsigned char *)conf->npn_str; |
| 1853 | *len = conf->npn_len; |
| 1854 | return SSL_TLSEXT_ERR_OK; |
| 1855 | } |
| 1856 | #endif |
| 1857 | |
Dirkjan Bussink | 48f1c4e | 2014-02-13 12:29:42 +0100 | [diff] [blame] | 1858 | #ifdef TLSEXT_TYPE_application_layer_protocol_negotiation |
Willy Tarreau | ab861d3 | 2013-04-02 02:30:41 +0200 | [diff] [blame] | 1859 | /* This callback is used so that the server advertises the list of |
Ilya Shipitsin | 77e3b4a | 2020-03-10 12:06:11 +0500 | [diff] [blame] | 1860 | * negotiable protocols for ALPN. |
Willy Tarreau | ab861d3 | 2013-04-02 02:30:41 +0200 | [diff] [blame] | 1861 | */ |
Dirkjan Bussink | 48f1c4e | 2014-02-13 12:29:42 +0100 | [diff] [blame] | 1862 | static int ssl_sock_advertise_alpn_protos(SSL *s, const unsigned char **out, |
| 1863 | unsigned char *outlen, |
| 1864 | const unsigned char *server, |
| 1865 | unsigned int server_len, void *arg) |
Willy Tarreau | ab861d3 | 2013-04-02 02:30:41 +0200 | [diff] [blame] | 1866 | { |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 1867 | struct ssl_bind_conf *conf = arg; |
Willy Tarreau | ab861d3 | 2013-04-02 02:30:41 +0200 | [diff] [blame] | 1868 | |
Dirkjan Bussink | 48f1c4e | 2014-02-13 12:29:42 +0100 | [diff] [blame] | 1869 | if (SSL_select_next_proto((unsigned char**) out, outlen, (const unsigned char *)conf->alpn_str, |
| 1870 | conf->alpn_len, server, server_len) != OPENSSL_NPN_NEGOTIATED) { |
| 1871 | return SSL_TLSEXT_ERR_NOACK; |
| 1872 | } |
Willy Tarreau | ab861d3 | 2013-04-02 02:30:41 +0200 | [diff] [blame] | 1873 | return SSL_TLSEXT_ERR_OK; |
| 1874 | } |
| 1875 | #endif |
| 1876 | |
Willy Tarreau | c8ad3be | 2015-06-17 15:48:26 +0200 | [diff] [blame] | 1877 | #ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME |
Emmanuel Hocdet | fdec789 | 2017-01-13 17:48:18 +0100 | [diff] [blame] | 1878 | #ifndef SSL_NO_GENERATE_CERTIFICATES |
Christopher Faulet | 85b5a1a | 2015-10-09 11:46:32 +0200 | [diff] [blame] | 1879 | |
Shimi Gersner | adabbfe | 2020-08-23 13:58:13 +0300 | [diff] [blame] | 1880 | /* Configure a DNS SAN extenion on a certificate. */ |
| 1881 | int ssl_sock_add_san_ext(X509V3_CTX* ctx, X509* cert, const char *servername) { |
| 1882 | int failure = 0; |
| 1883 | X509_EXTENSION *san_ext = NULL; |
| 1884 | CONF *conf = NULL; |
| 1885 | struct buffer *san_name = get_trash_chunk(); |
| 1886 | |
| 1887 | conf = NCONF_new(NULL); |
| 1888 | if (!conf) { |
| 1889 | failure = 1; |
| 1890 | goto cleanup; |
| 1891 | } |
| 1892 | |
| 1893 | /* Build an extension based on the DNS entry above */ |
| 1894 | chunk_appendf(san_name, "DNS:%s", servername); |
| 1895 | san_ext = X509V3_EXT_nconf_nid(conf, ctx, NID_subject_alt_name, san_name->area); |
| 1896 | if (!san_ext) { |
| 1897 | failure = 1; |
| 1898 | goto cleanup; |
| 1899 | } |
| 1900 | |
| 1901 | /* Add the extension */ |
| 1902 | if (!X509_add_ext(cert, san_ext, -1 /* Add to end */)) { |
| 1903 | failure = 1; |
| 1904 | goto cleanup; |
| 1905 | } |
| 1906 | |
| 1907 | /* Success */ |
| 1908 | failure = 0; |
| 1909 | |
| 1910 | cleanup: |
| 1911 | if (NULL != san_ext) X509_EXTENSION_free(san_ext); |
| 1912 | if (NULL != conf) NCONF_free(conf); |
| 1913 | |
| 1914 | return failure; |
| 1915 | } |
| 1916 | |
Christopher Faulet | 3054880 | 2015-06-11 13:39:32 +0200 | [diff] [blame] | 1917 | /* Create a X509 certificate with the specified servername and serial. This |
| 1918 | * function returns a SSL_CTX object or NULL if an error occurs. */ |
Christopher Faulet | 7969a33 | 2015-10-09 11:15:03 +0200 | [diff] [blame] | 1919 | static SSL_CTX * |
Christopher Faulet | 635c0ad | 2015-11-12 11:35:51 +0100 | [diff] [blame] | 1920 | 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] | 1921 | { |
Shimi Gersner | 5846c49 | 2020-08-23 13:58:12 +0300 | [diff] [blame] | 1922 | X509 *cacert = bind_conf->ca_sign_ckch->cert; |
| 1923 | EVP_PKEY *capkey = bind_conf->ca_sign_ckch->key; |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 1924 | SSL_CTX *ssl_ctx = NULL; |
| 1925 | X509 *newcrt = NULL; |
| 1926 | EVP_PKEY *pkey = NULL; |
Emmanuel Hocdet | 1596929 | 2017-08-11 10:56:00 +0200 | [diff] [blame] | 1927 | SSL *tmp_ssl = NULL; |
Emmanuel Hocdet | a9b8402 | 2018-10-01 18:41:36 +0200 | [diff] [blame] | 1928 | CONF *ctmp = NULL; |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 1929 | X509_NAME *name; |
| 1930 | const EVP_MD *digest; |
| 1931 | X509V3_CTX ctx; |
| 1932 | unsigned int i; |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 1933 | int key_type; |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 1934 | |
Christopher Faulet | 48a8332 | 2017-07-28 16:56:09 +0200 | [diff] [blame] | 1935 | /* Get the private key of the default certificate and use it */ |
Ilya Shipitsin | af20488 | 2020-12-19 03:12:12 +0500 | [diff] [blame] | 1936 | #ifdef HAVE_SSL_CTX_get0_privatekey |
Emmanuel Hocdet | 1596929 | 2017-08-11 10:56:00 +0200 | [diff] [blame] | 1937 | pkey = SSL_CTX_get0_privatekey(bind_conf->default_ctx); |
| 1938 | #else |
| 1939 | tmp_ssl = SSL_new(bind_conf->default_ctx); |
| 1940 | if (tmp_ssl) |
| 1941 | pkey = SSL_get_privatekey(tmp_ssl); |
| 1942 | #endif |
| 1943 | if (!pkey) |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 1944 | goto mkcert_error; |
| 1945 | |
| 1946 | /* Create the certificate */ |
| 1947 | if (!(newcrt = X509_new())) |
| 1948 | goto mkcert_error; |
| 1949 | |
| 1950 | /* Set version number for the certificate (X509v3) and the serial |
| 1951 | * number */ |
| 1952 | if (X509_set_version(newcrt, 2L) != 1) |
| 1953 | goto mkcert_error; |
Willy Tarreau | 1db4273 | 2021-04-06 11:44:07 +0200 | [diff] [blame] | 1954 | 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] | 1955 | |
| 1956 | /* Set duration for the certificate */ |
Rosen Penev | 6818595 | 2018-12-14 08:47:02 -0800 | [diff] [blame] | 1957 | if (!X509_gmtime_adj(X509_getm_notBefore(newcrt), (long)-60*60*24) || |
| 1958 | !X509_gmtime_adj(X509_getm_notAfter(newcrt),(long)60*60*24*365)) |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 1959 | goto mkcert_error; |
| 1960 | |
| 1961 | /* set public key in the certificate */ |
| 1962 | if (X509_set_pubkey(newcrt, pkey) != 1) |
| 1963 | goto mkcert_error; |
| 1964 | |
| 1965 | /* Set issuer name from the CA */ |
| 1966 | if (!(name = X509_get_subject_name(cacert))) |
| 1967 | goto mkcert_error; |
| 1968 | if (X509_set_issuer_name(newcrt, name) != 1) |
| 1969 | goto mkcert_error; |
| 1970 | |
| 1971 | /* Set the subject name using the same, but the CN */ |
| 1972 | name = X509_NAME_dup(name); |
| 1973 | if (X509_NAME_add_entry_by_txt(name, "CN", MBSTRING_ASC, |
| 1974 | (const unsigned char *)servername, |
| 1975 | -1, -1, 0) != 1) { |
| 1976 | X509_NAME_free(name); |
| 1977 | goto mkcert_error; |
| 1978 | } |
| 1979 | if (X509_set_subject_name(newcrt, name) != 1) { |
| 1980 | X509_NAME_free(name); |
| 1981 | goto mkcert_error; |
| 1982 | } |
| 1983 | X509_NAME_free(name); |
| 1984 | |
| 1985 | /* Add x509v3 extensions as specified */ |
Emmanuel Hocdet | a9b8402 | 2018-10-01 18:41:36 +0200 | [diff] [blame] | 1986 | ctmp = NCONF_new(NULL); |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 1987 | X509V3_set_ctx(&ctx, cacert, newcrt, NULL, NULL, 0); |
| 1988 | for (i = 0; i < X509V3_EXT_SIZE; i++) { |
| 1989 | X509_EXTENSION *ext; |
| 1990 | |
Emmanuel Hocdet | a9b8402 | 2018-10-01 18:41:36 +0200 | [diff] [blame] | 1991 | 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] | 1992 | goto mkcert_error; |
| 1993 | if (!X509_add_ext(newcrt, ext, -1)) { |
| 1994 | X509_EXTENSION_free(ext); |
| 1995 | goto mkcert_error; |
| 1996 | } |
| 1997 | X509_EXTENSION_free(ext); |
| 1998 | } |
| 1999 | |
Shimi Gersner | adabbfe | 2020-08-23 13:58:13 +0300 | [diff] [blame] | 2000 | /* Add SAN extension */ |
| 2001 | if (ssl_sock_add_san_ext(&ctx, newcrt, servername)) { |
| 2002 | goto mkcert_error; |
| 2003 | } |
| 2004 | |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 2005 | /* Sign the certificate with the CA private key */ |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 2006 | |
| 2007 | key_type = EVP_PKEY_base_id(capkey); |
| 2008 | |
| 2009 | if (key_type == EVP_PKEY_DSA) |
| 2010 | digest = EVP_sha1(); |
| 2011 | else if (key_type == EVP_PKEY_RSA) |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 2012 | digest = EVP_sha256(); |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 2013 | else if (key_type == EVP_PKEY_EC) |
Christopher Faulet | 7969a33 | 2015-10-09 11:15:03 +0200 | [diff] [blame] | 2014 | digest = EVP_sha256(); |
| 2015 | else { |
Ilya Shipitsin | ec36c91 | 2021-01-07 11:57:42 +0500 | [diff] [blame] | 2016 | #ifdef ASN1_PKEY_CTRL_DEFAULT_MD_NID |
Christopher Faulet | 7969a33 | 2015-10-09 11:15:03 +0200 | [diff] [blame] | 2017 | int nid; |
| 2018 | |
| 2019 | if (EVP_PKEY_get_default_digest_nid(capkey, &nid) <= 0) |
| 2020 | goto mkcert_error; |
| 2021 | if (!(digest = EVP_get_digestbynid(nid))) |
| 2022 | goto mkcert_error; |
Christopher Faulet | e7db216 | 2015-10-19 13:59:24 +0200 | [diff] [blame] | 2023 | #else |
| 2024 | goto mkcert_error; |
| 2025 | #endif |
Christopher Faulet | 7969a33 | 2015-10-09 11:15:03 +0200 | [diff] [blame] | 2026 | } |
| 2027 | |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 2028 | if (!(X509_sign(newcrt, capkey, digest))) |
| 2029 | goto mkcert_error; |
| 2030 | |
| 2031 | /* Create and set the new SSL_CTX */ |
| 2032 | if (!(ssl_ctx = SSL_CTX_new(SSLv23_server_method()))) |
| 2033 | goto mkcert_error; |
| 2034 | if (!SSL_CTX_use_PrivateKey(ssl_ctx, pkey)) |
| 2035 | goto mkcert_error; |
| 2036 | if (!SSL_CTX_use_certificate(ssl_ctx, newcrt)) |
| 2037 | goto mkcert_error; |
| 2038 | if (!SSL_CTX_check_private_key(ssl_ctx)) |
| 2039 | goto mkcert_error; |
| 2040 | |
Shimi Gersner | 5846c49 | 2020-08-23 13:58:12 +0300 | [diff] [blame] | 2041 | /* Build chaining the CA cert and the rest of the chain, keep these order */ |
| 2042 | #if defined(SSL_CTX_add1_chain_cert) |
| 2043 | if (!SSL_CTX_add1_chain_cert(ssl_ctx, bind_conf->ca_sign_ckch->cert)) { |
| 2044 | goto mkcert_error; |
| 2045 | } |
| 2046 | |
| 2047 | if (bind_conf->ca_sign_ckch->chain) { |
| 2048 | for (i = 0; i < sk_X509_num(bind_conf->ca_sign_ckch->chain); i++) { |
| 2049 | X509 *chain_cert = sk_X509_value(bind_conf->ca_sign_ckch->chain, i); |
| 2050 | if (!SSL_CTX_add1_chain_cert(ssl_ctx, chain_cert)) { |
| 2051 | goto mkcert_error; |
| 2052 | } |
| 2053 | } |
| 2054 | } |
| 2055 | #endif |
| 2056 | |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 2057 | if (newcrt) X509_free(newcrt); |
Christopher Faulet | 7969a33 | 2015-10-09 11:15:03 +0200 | [diff] [blame] | 2058 | |
Emmanuel Hocdet | cc6c2a2 | 2017-03-03 17:04:14 +0100 | [diff] [blame] | 2059 | #ifndef OPENSSL_NO_DH |
Christopher Faulet | 85b5a1a | 2015-10-09 11:46:32 +0200 | [diff] [blame] | 2060 | SSL_CTX_set_tmp_dh_callback(ssl_ctx, ssl_get_tmp_dh); |
Emmanuel Hocdet | cc6c2a2 | 2017-03-03 17:04:14 +0100 | [diff] [blame] | 2061 | #endif |
Christopher Faulet | 85b5a1a | 2015-10-09 11:46:32 +0200 | [diff] [blame] | 2062 | #if defined(SSL_CTX_set_tmp_ecdh) && !defined(OPENSSL_NO_ECDH) |
| 2063 | { |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 2064 | 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] | 2065 | EC_KEY *ecc; |
| 2066 | int nid; |
| 2067 | |
| 2068 | if ((nid = OBJ_sn2nid(ecdhe)) == NID_undef) |
| 2069 | goto end; |
| 2070 | if (!(ecc = EC_KEY_new_by_curve_name(nid))) |
| 2071 | goto end; |
| 2072 | SSL_CTX_set_tmp_ecdh(ssl_ctx, ecc); |
| 2073 | EC_KEY_free(ecc); |
| 2074 | } |
| 2075 | #endif |
| 2076 | end: |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 2077 | return ssl_ctx; |
| 2078 | |
| 2079 | mkcert_error: |
Emmanuel Hocdet | a9b8402 | 2018-10-01 18:41:36 +0200 | [diff] [blame] | 2080 | if (ctmp) NCONF_free(ctmp); |
Emmanuel Hocdet | 1596929 | 2017-08-11 10:56:00 +0200 | [diff] [blame] | 2081 | if (tmp_ssl) SSL_free(tmp_ssl); |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 2082 | if (ssl_ctx) SSL_CTX_free(ssl_ctx); |
| 2083 | if (newcrt) X509_free(newcrt); |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 2084 | return NULL; |
| 2085 | } |
| 2086 | |
Christopher Faulet | 7969a33 | 2015-10-09 11:15:03 +0200 | [diff] [blame] | 2087 | SSL_CTX * |
Christopher Faulet | 635c0ad | 2015-11-12 11:35:51 +0100 | [diff] [blame] | 2088 | 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] | 2089 | { |
Willy Tarreau | 07d94e4 | 2018-09-20 10:57:52 +0200 | [diff] [blame] | 2090 | struct bind_conf *bind_conf = __objt_listener(conn->target)->bind_conf; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 2091 | struct ssl_sock_ctx *ctx = conn->xprt_ctx; |
Christopher Faulet | 635c0ad | 2015-11-12 11:35:51 +0100 | [diff] [blame] | 2092 | |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 2093 | return ssl_sock_do_create_cert(servername, bind_conf, ctx->ssl); |
Christopher Faulet | 7969a33 | 2015-10-09 11:15:03 +0200 | [diff] [blame] | 2094 | } |
| 2095 | |
Christopher Faulet | 3054880 | 2015-06-11 13:39:32 +0200 | [diff] [blame] | 2096 | /* 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] | 2097 | * certificates and immediately assign it to the SSL session if not null. */ |
Christopher Faulet | 3054880 | 2015-06-11 13:39:32 +0200 | [diff] [blame] | 2098 | SSL_CTX * |
Emeric Brun | 821bb9b | 2017-06-15 16:37:39 +0200 | [diff] [blame] | 2099 | 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] | 2100 | { |
| 2101 | struct lru64 *lru = NULL; |
| 2102 | |
| 2103 | if (ssl_ctx_lru_tree) { |
Willy Tarreau | 03f4ec4 | 2018-05-17 10:56:47 +0200 | [diff] [blame] | 2104 | HA_RWLOCK_WRLOCK(SSL_GEN_CERTS_LOCK, &ssl_ctx_lru_rwlock); |
Shimi Gersner | 5846c49 | 2020-08-23 13:58:12 +0300 | [diff] [blame] | 2105 | 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] | 2106 | if (lru && lru->domain) { |
| 2107 | if (ssl) |
| 2108 | SSL_set_SSL_CTX(ssl, (SSL_CTX *)lru->data); |
Willy Tarreau | 03f4ec4 | 2018-05-17 10:56:47 +0200 | [diff] [blame] | 2109 | HA_RWLOCK_WRUNLOCK(SSL_GEN_CERTS_LOCK, &ssl_ctx_lru_rwlock); |
Christopher Faulet | 3054880 | 2015-06-11 13:39:32 +0200 | [diff] [blame] | 2110 | return (SSL_CTX *)lru->data; |
Emeric Brun | 821bb9b | 2017-06-15 16:37:39 +0200 | [diff] [blame] | 2111 | } |
Willy Tarreau | 03f4ec4 | 2018-05-17 10:56:47 +0200 | [diff] [blame] | 2112 | HA_RWLOCK_WRUNLOCK(SSL_GEN_CERTS_LOCK, &ssl_ctx_lru_rwlock); |
Christopher Faulet | 3054880 | 2015-06-11 13:39:32 +0200 | [diff] [blame] | 2113 | } |
| 2114 | return NULL; |
| 2115 | } |
| 2116 | |
Emeric Brun | 821bb9b | 2017-06-15 16:37:39 +0200 | [diff] [blame] | 2117 | /* Same as <ssl_sock_assign_generated_cert> but without SSL session. This |
| 2118 | * function is not thread-safe, it should only be used to check if a certificate |
| 2119 | * exists in the lru cache (with no warranty it will not be removed by another |
| 2120 | * thread). It is kept for backward compatibility. */ |
| 2121 | SSL_CTX * |
| 2122 | ssl_sock_get_generated_cert(unsigned int key, struct bind_conf *bind_conf) |
| 2123 | { |
| 2124 | return ssl_sock_assign_generated_cert(key, bind_conf, NULL); |
| 2125 | } |
| 2126 | |
Christopher Faulet | d2cab92 | 2015-07-28 16:03:47 +0200 | [diff] [blame] | 2127 | /* Set a certificate int the LRU cache used to store generated |
| 2128 | * certificate. Return 0 on success, otherwise -1 */ |
| 2129 | int |
Christopher Faulet | 635c0ad | 2015-11-12 11:35:51 +0100 | [diff] [blame] | 2130 | 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] | 2131 | { |
| 2132 | struct lru64 *lru = NULL; |
| 2133 | |
| 2134 | if (ssl_ctx_lru_tree) { |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 2135 | HA_RWLOCK_WRLOCK(SSL_GEN_CERTS_LOCK, &ssl_ctx_lru_rwlock); |
Shimi Gersner | 5846c49 | 2020-08-23 13:58:12 +0300 | [diff] [blame] | 2136 | 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] | 2137 | if (!lru) { |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 2138 | HA_RWLOCK_WRUNLOCK(SSL_GEN_CERTS_LOCK, &ssl_ctx_lru_rwlock); |
Christopher Faulet | d2cab92 | 2015-07-28 16:03:47 +0200 | [diff] [blame] | 2139 | return -1; |
Emeric Brun | 821bb9b | 2017-06-15 16:37:39 +0200 | [diff] [blame] | 2140 | } |
Christopher Faulet | 3054880 | 2015-06-11 13:39:32 +0200 | [diff] [blame] | 2141 | if (lru->domain && lru->data) |
| 2142 | lru->free((SSL_CTX *)lru->data); |
Shimi Gersner | 5846c49 | 2020-08-23 13:58:12 +0300 | [diff] [blame] | 2143 | 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] | 2144 | HA_RWLOCK_WRUNLOCK(SSL_GEN_CERTS_LOCK, &ssl_ctx_lru_rwlock); |
Christopher Faulet | d2cab92 | 2015-07-28 16:03:47 +0200 | [diff] [blame] | 2145 | return 0; |
Christopher Faulet | 3054880 | 2015-06-11 13:39:32 +0200 | [diff] [blame] | 2146 | } |
Christopher Faulet | d2cab92 | 2015-07-28 16:03:47 +0200 | [diff] [blame] | 2147 | return -1; |
Christopher Faulet | 3054880 | 2015-06-11 13:39:32 +0200 | [diff] [blame] | 2148 | } |
| 2149 | |
Christopher Faulet | 635c0ad | 2015-11-12 11:35:51 +0100 | [diff] [blame] | 2150 | /* Compute the key of the certificate. */ |
Christopher Faulet | 3054880 | 2015-06-11 13:39:32 +0200 | [diff] [blame] | 2151 | unsigned int |
Christopher Faulet | 635c0ad | 2015-11-12 11:35:51 +0100 | [diff] [blame] | 2152 | ssl_sock_generated_cert_key(const void *data, size_t len) |
Christopher Faulet | 3054880 | 2015-06-11 13:39:32 +0200 | [diff] [blame] | 2153 | { |
| 2154 | return XXH32(data, len, ssl_ctx_lru_seed); |
| 2155 | } |
| 2156 | |
Willy Tarreau | 2f63ef4 | 2015-10-20 15:16:01 +0200 | [diff] [blame] | 2157 | /* Generate a cert and immediately assign it to the SSL session so that the cert's |
| 2158 | * refcount is maintained regardless of the cert's presence in the LRU cache. |
| 2159 | */ |
Emmanuel Hocdet | 253c62b | 2017-08-14 11:01:25 +0200 | [diff] [blame] | 2160 | static int |
Christopher Faulet | 7969a33 | 2015-10-09 11:15:03 +0200 | [diff] [blame] | 2161 | 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] | 2162 | { |
Shimi Gersner | 5846c49 | 2020-08-23 13:58:12 +0300 | [diff] [blame] | 2163 | X509 *cacert = bind_conf->ca_sign_ckch->cert; |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 2164 | SSL_CTX *ssl_ctx = NULL; |
| 2165 | struct lru64 *lru = NULL; |
Christopher Faulet | 635c0ad | 2015-11-12 11:35:51 +0100 | [diff] [blame] | 2166 | unsigned int key; |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 2167 | |
Christopher Faulet | 635c0ad | 2015-11-12 11:35:51 +0100 | [diff] [blame] | 2168 | key = ssl_sock_generated_cert_key(servername, strlen(servername)); |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 2169 | if (ssl_ctx_lru_tree) { |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 2170 | HA_RWLOCK_WRLOCK(SSL_GEN_CERTS_LOCK, &ssl_ctx_lru_rwlock); |
Christopher Faulet | 635c0ad | 2015-11-12 11:35:51 +0100 | [diff] [blame] | 2171 | lru = lru64_get(key, ssl_ctx_lru_tree, cacert, 0); |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 2172 | if (lru && lru->domain) |
| 2173 | ssl_ctx = (SSL_CTX *)lru->data; |
Christopher Faulet | d2cab92 | 2015-07-28 16:03:47 +0200 | [diff] [blame] | 2174 | if (!ssl_ctx && lru) { |
Christopher Faulet | 635c0ad | 2015-11-12 11:35:51 +0100 | [diff] [blame] | 2175 | ssl_ctx = ssl_sock_do_create_cert(servername, bind_conf, ssl); |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 2176 | lru64_commit(lru, ssl_ctx, cacert, 0, (void (*)(void *))SSL_CTX_free); |
Christopher Faulet | d2cab92 | 2015-07-28 16:03:47 +0200 | [diff] [blame] | 2177 | } |
Willy Tarreau | 2f63ef4 | 2015-10-20 15:16:01 +0200 | [diff] [blame] | 2178 | SSL_set_SSL_CTX(ssl, ssl_ctx); |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 2179 | HA_RWLOCK_WRUNLOCK(SSL_GEN_CERTS_LOCK, &ssl_ctx_lru_rwlock); |
Emmanuel Hocdet | 253c62b | 2017-08-14 11:01:25 +0200 | [diff] [blame] | 2180 | return 1; |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 2181 | } |
Willy Tarreau | 2f63ef4 | 2015-10-20 15:16:01 +0200 | [diff] [blame] | 2182 | else { |
Christopher Faulet | 635c0ad | 2015-11-12 11:35:51 +0100 | [diff] [blame] | 2183 | ssl_ctx = ssl_sock_do_create_cert(servername, bind_conf, ssl); |
Willy Tarreau | 2f63ef4 | 2015-10-20 15:16:01 +0200 | [diff] [blame] | 2184 | SSL_set_SSL_CTX(ssl, ssl_ctx); |
| 2185 | /* No LRU cache, this CTX will be released as soon as the session dies */ |
| 2186 | SSL_CTX_free(ssl_ctx); |
Emmanuel Hocdet | 253c62b | 2017-08-14 11:01:25 +0200 | [diff] [blame] | 2187 | return 1; |
Willy Tarreau | 2f63ef4 | 2015-10-20 15:16:01 +0200 | [diff] [blame] | 2188 | } |
Emmanuel Hocdet | 253c62b | 2017-08-14 11:01:25 +0200 | [diff] [blame] | 2189 | return 0; |
| 2190 | } |
| 2191 | static int |
| 2192 | ssl_sock_generate_certificate_from_conn(struct bind_conf *bind_conf, SSL *ssl) |
| 2193 | { |
| 2194 | unsigned int key; |
Thierry FOURNIER | 28962c9 | 2018-06-17 21:37:05 +0200 | [diff] [blame] | 2195 | struct connection *conn = SSL_get_ex_data(ssl, ssl_app_data_index); |
Emmanuel Hocdet | 253c62b | 2017-08-14 11:01:25 +0200 | [diff] [blame] | 2196 | |
Willy Tarreau | f5bdb64 | 2019-07-17 11:29:32 +0200 | [diff] [blame] | 2197 | if (conn_get_dst(conn)) { |
Willy Tarreau | 085a151 | 2019-07-17 14:47:35 +0200 | [diff] [blame] | 2198 | 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] | 2199 | if (ssl_sock_assign_generated_cert(key, bind_conf, ssl)) |
Emmanuel Hocdet | 253c62b | 2017-08-14 11:01:25 +0200 | [diff] [blame] | 2200 | return 1; |
Emmanuel Hocdet | 253c62b | 2017-08-14 11:01:25 +0200 | [diff] [blame] | 2201 | } |
| 2202 | return 0; |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 2203 | } |
Emmanuel Hocdet | fdec789 | 2017-01-13 17:48:18 +0100 | [diff] [blame] | 2204 | #endif /* !defined SSL_NO_GENERATE_CERTIFICATES */ |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 2205 | |
Willy Tarreau | 9a1ab08 | 2019-05-09 13:26:41 +0200 | [diff] [blame] | 2206 | #if (HA_OPENSSL_VERSION_NUMBER < 0x1010000fL) |
Emmanuel Hocdet | 4aa615f | 2017-05-18 12:33:19 +0200 | [diff] [blame] | 2207 | |
| 2208 | 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] | 2209 | { |
Emmanuel Hocdet | 23877ab | 2017-07-12 12:53:02 +0200 | [diff] [blame] | 2210 | #if SSL_OP_NO_SSLv3 |
Emmanuel Hocdet | 4aa615f | 2017-05-18 12:33:19 +0200 | [diff] [blame] | 2211 | c == SET_SERVER ? SSL_CTX_set_ssl_version(ctx, SSLv3_server_method()) |
Emmanuel Hocdet | ecb0e23 | 2017-05-18 11:56:58 +0200 | [diff] [blame] | 2212 | : SSL_CTX_set_ssl_version(ctx, SSLv3_client_method()); |
| 2213 | #endif |
| 2214 | } |
Emmanuel Hocdet | 4aa615f | 2017-05-18 12:33:19 +0200 | [diff] [blame] | 2215 | static void ctx_set_TLSv10_func(SSL_CTX *ctx, set_context_func c) { |
| 2216 | c == SET_SERVER ? SSL_CTX_set_ssl_version(ctx, TLSv1_server_method()) |
Emmanuel Hocdet | ecb0e23 | 2017-05-18 11:56:58 +0200 | [diff] [blame] | 2217 | : SSL_CTX_set_ssl_version(ctx, TLSv1_client_method()); |
| 2218 | } |
Emmanuel Hocdet | 4aa615f | 2017-05-18 12:33:19 +0200 | [diff] [blame] | 2219 | 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] | 2220 | #if SSL_OP_NO_TLSv1_1 |
Emmanuel Hocdet | 4aa615f | 2017-05-18 12:33:19 +0200 | [diff] [blame] | 2221 | 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] | 2222 | : SSL_CTX_set_ssl_version(ctx, TLSv1_1_client_method()); |
| 2223 | #endif |
| 2224 | } |
Emmanuel Hocdet | 4aa615f | 2017-05-18 12:33:19 +0200 | [diff] [blame] | 2225 | 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] | 2226 | #if SSL_OP_NO_TLSv1_2 |
Emmanuel Hocdet | 4aa615f | 2017-05-18 12:33:19 +0200 | [diff] [blame] | 2227 | 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] | 2228 | : SSL_CTX_set_ssl_version(ctx, TLSv1_2_client_method()); |
| 2229 | #endif |
| 2230 | } |
Bertrand Jacquin | a25282b | 2018-08-14 00:56:13 +0100 | [diff] [blame] | 2231 | /* TLSv1.2 is the last supported version in this context. */ |
Emmanuel Hocdet | 4aa615f | 2017-05-18 12:33:19 +0200 | [diff] [blame] | 2232 | static void ctx_set_TLSv13_func(SSL_CTX *ctx, set_context_func c) {} |
| 2233 | /* Unusable in this context. */ |
| 2234 | static void ssl_set_SSLv3_func(SSL *ssl, set_context_func c) {} |
| 2235 | static void ssl_set_TLSv10_func(SSL *ssl, set_context_func c) {} |
| 2236 | static void ssl_set_TLSv11_func(SSL *ssl, set_context_func c) {} |
| 2237 | static void ssl_set_TLSv12_func(SSL *ssl, set_context_func c) {} |
| 2238 | static void ssl_set_TLSv13_func(SSL *ssl, set_context_func c) {} |
Emmanuel Hocdet | ecb0e23 | 2017-05-18 11:56:58 +0200 | [diff] [blame] | 2239 | #else /* openssl >= 1.1.0 */ |
Emmanuel Hocdet | 4aa615f | 2017-05-18 12:33:19 +0200 | [diff] [blame] | 2240 | |
| 2241 | static void ctx_set_SSLv3_func(SSL_CTX *ctx, set_context_func c) { |
| 2242 | c == SET_MAX ? SSL_CTX_set_max_proto_version(ctx, SSL3_VERSION) |
Emmanuel Hocdet | ecb0e23 | 2017-05-18 11:56:58 +0200 | [diff] [blame] | 2243 | : SSL_CTX_set_min_proto_version(ctx, SSL3_VERSION); |
| 2244 | } |
Emmanuel Hocdet | 4aa615f | 2017-05-18 12:33:19 +0200 | [diff] [blame] | 2245 | static void ssl_set_SSLv3_func(SSL *ssl, set_context_func c) { |
| 2246 | c == SET_MAX ? SSL_set_max_proto_version(ssl, SSL3_VERSION) |
| 2247 | : SSL_set_min_proto_version(ssl, SSL3_VERSION); |
| 2248 | } |
| 2249 | static void ctx_set_TLSv10_func(SSL_CTX *ctx, set_context_func c) { |
| 2250 | c == SET_MAX ? SSL_CTX_set_max_proto_version(ctx, TLS1_VERSION) |
Emmanuel Hocdet | ecb0e23 | 2017-05-18 11:56:58 +0200 | [diff] [blame] | 2251 | : SSL_CTX_set_min_proto_version(ctx, TLS1_VERSION); |
| 2252 | } |
Emmanuel Hocdet | 4aa615f | 2017-05-18 12:33:19 +0200 | [diff] [blame] | 2253 | static void ssl_set_TLSv10_func(SSL *ssl, set_context_func c) { |
| 2254 | c == SET_MAX ? SSL_set_max_proto_version(ssl, TLS1_VERSION) |
| 2255 | : SSL_set_min_proto_version(ssl, TLS1_VERSION); |
| 2256 | } |
| 2257 | static void ctx_set_TLSv11_func(SSL_CTX *ctx, set_context_func c) { |
| 2258 | 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] | 2259 | : SSL_CTX_set_min_proto_version(ctx, TLS1_1_VERSION); |
| 2260 | } |
Emmanuel Hocdet | 4aa615f | 2017-05-18 12:33:19 +0200 | [diff] [blame] | 2261 | static void ssl_set_TLSv11_func(SSL *ssl, set_context_func c) { |
| 2262 | c == SET_MAX ? SSL_set_max_proto_version(ssl, TLS1_1_VERSION) |
| 2263 | : SSL_set_min_proto_version(ssl, TLS1_1_VERSION); |
| 2264 | } |
| 2265 | static void ctx_set_TLSv12_func(SSL_CTX *ctx, set_context_func c) { |
| 2266 | 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] | 2267 | : SSL_CTX_set_min_proto_version(ctx, TLS1_2_VERSION); |
| 2268 | } |
Emmanuel Hocdet | 4aa615f | 2017-05-18 12:33:19 +0200 | [diff] [blame] | 2269 | static void ssl_set_TLSv12_func(SSL *ssl, set_context_func c) { |
| 2270 | c == SET_MAX ? SSL_set_max_proto_version(ssl, TLS1_2_VERSION) |
| 2271 | : SSL_set_min_proto_version(ssl, TLS1_2_VERSION); |
| 2272 | } |
| 2273 | static void ctx_set_TLSv13_func(SSL_CTX *ctx, set_context_func c) { |
William Lallemand | e8a8aa4 | 2021-06-02 16:09:11 +0200 | [diff] [blame] | 2274 | #if (HA_OPENSSL_VERSION_NUMBER >= 0x10101000L) |
Emmanuel Hocdet | 4aa615f | 2017-05-18 12:33:19 +0200 | [diff] [blame] | 2275 | 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] | 2276 | : SSL_CTX_set_min_proto_version(ctx, TLS1_3_VERSION); |
| 2277 | #endif |
| 2278 | } |
Emmanuel Hocdet | 4aa615f | 2017-05-18 12:33:19 +0200 | [diff] [blame] | 2279 | static void ssl_set_TLSv13_func(SSL *ssl, set_context_func c) { |
William Lallemand | e8a8aa4 | 2021-06-02 16:09:11 +0200 | [diff] [blame] | 2280 | #if (HA_OPENSSL_VERSION_NUMBER >= 0x10101000L) |
Emmanuel Hocdet | 4aa615f | 2017-05-18 12:33:19 +0200 | [diff] [blame] | 2281 | c == SET_MAX ? SSL_set_max_proto_version(ssl, TLS1_3_VERSION) |
| 2282 | : SSL_set_min_proto_version(ssl, TLS1_3_VERSION); |
Emmanuel Hocdet | ecb0e23 | 2017-05-18 11:56:58 +0200 | [diff] [blame] | 2283 | #endif |
Emmanuel Hocdet | ecb0e23 | 2017-05-18 11:56:58 +0200 | [diff] [blame] | 2284 | } |
Emmanuel Hocdet | 4aa615f | 2017-05-18 12:33:19 +0200 | [diff] [blame] | 2285 | #endif |
| 2286 | static void ctx_set_None_func(SSL_CTX *ctx, set_context_func c) { } |
| 2287 | static void ssl_set_None_func(SSL *ssl, set_context_func c) { } |
Emmanuel Hocdet | ecb0e23 | 2017-05-18 11:56:58 +0200 | [diff] [blame] | 2288 | |
William Lallemand | 7fd8b45 | 2020-05-07 15:20:43 +0200 | [diff] [blame] | 2289 | struct methodVersions methodVersions[] = { |
Emmanuel Hocdet | 4aa615f | 2017-05-18 12:33:19 +0200 | [diff] [blame] | 2290 | {0, 0, ctx_set_None_func, ssl_set_None_func, "NONE"}, /* CONF_TLSV_NONE */ |
| 2291 | {SSL_OP_NO_SSLv3, MC_SSL_O_NO_SSLV3, ctx_set_SSLv3_func, ssl_set_SSLv3_func, "SSLv3"}, /* CONF_SSLV3 */ |
| 2292 | {SSL_OP_NO_TLSv1, MC_SSL_O_NO_TLSV10, ctx_set_TLSv10_func, ssl_set_TLSv10_func, "TLSv1.0"}, /* CONF_TLSV10 */ |
| 2293 | {SSL_OP_NO_TLSv1_1, MC_SSL_O_NO_TLSV11, ctx_set_TLSv11_func, ssl_set_TLSv11_func, "TLSv1.1"}, /* CONF_TLSV11 */ |
| 2294 | {SSL_OP_NO_TLSv1_2, MC_SSL_O_NO_TLSV12, ctx_set_TLSv12_func, ssl_set_TLSv12_func, "TLSv1.2"}, /* CONF_TLSV12 */ |
| 2295 | {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] | 2296 | }; |
| 2297 | |
Emmanuel Hocdet | 530141f | 2017-03-01 18:54:56 +0100 | [diff] [blame] | 2298 | static void ssl_sock_switchctx_set(SSL *ssl, SSL_CTX *ctx) |
| 2299 | { |
| 2300 | SSL_set_verify(ssl, SSL_CTX_get_verify_mode(ctx), ssl_sock_bind_verifycbk); |
| 2301 | SSL_set_client_CA_list(ssl, SSL_dup_CA_list(SSL_CTX_get_client_CA_list(ctx))); |
| 2302 | SSL_set_SSL_CTX(ssl, ctx); |
| 2303 | } |
| 2304 | |
Ilya Shipitsin | 1fc44d4 | 2021-01-23 00:09:14 +0500 | [diff] [blame] | 2305 | #ifdef HAVE_SSL_CLIENT_HELLO_CB |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2306 | |
Frédéric Lécaille | 901ee2f | 2020-11-23 11:19:04 +0100 | [diff] [blame] | 2307 | int ssl_sock_switchctx_err_cbk(SSL *ssl, int *al, void *priv) |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2308 | { |
Emmanuel Hocdet | 253c62b | 2017-08-14 11:01:25 +0200 | [diff] [blame] | 2309 | struct bind_conf *s = priv; |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2310 | (void)al; /* shut gcc stupid warning */ |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2311 | |
Emmanuel Hocdet | 253c62b | 2017-08-14 11:01:25 +0200 | [diff] [blame] | 2312 | if (SSL_get_servername(ssl, TLSEXT_NAMETYPE_host_name) || s->generate_certs) |
| 2313 | return SSL_TLSEXT_ERR_OK; |
| 2314 | return SSL_TLSEXT_ERR_NOACK; |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2315 | } |
| 2316 | |
Emmanuel Hocdet | 84e417d | 2017-08-16 11:33:17 +0200 | [diff] [blame] | 2317 | #ifdef OPENSSL_IS_BORINGSSL |
Frédéric Lécaille | 901ee2f | 2020-11-23 11:19:04 +0100 | [diff] [blame] | 2318 | int ssl_sock_switchctx_cbk(const struct ssl_early_callback_ctx *ctx) |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2319 | { |
Emmanuel Hocdet | 48e8755 | 2017-08-16 11:28:44 +0200 | [diff] [blame] | 2320 | SSL *ssl = ctx->ssl; |
Emmanuel Hocdet | 84e417d | 2017-08-16 11:33:17 +0200 | [diff] [blame] | 2321 | #else |
Frédéric Lécaille | 901ee2f | 2020-11-23 11:19:04 +0100 | [diff] [blame] | 2322 | int ssl_sock_switchctx_cbk(SSL *ssl, int *al, void *arg) |
Emmanuel Hocdet | 84e417d | 2017-08-16 11:33:17 +0200 | [diff] [blame] | 2323 | { |
| 2324 | #endif |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2325 | struct connection *conn; |
| 2326 | struct bind_conf *s; |
| 2327 | const uint8_t *extension_data; |
| 2328 | size_t extension_len; |
Emmanuel Hocdet | 9f9b0c6 | 2018-09-03 16:29:16 +0200 | [diff] [blame] | 2329 | int has_rsa_sig = 0, has_ecdsa_sig = 0; |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2330 | |
| 2331 | char *wildp = NULL; |
| 2332 | const uint8_t *servername; |
Emmanuel Hocdet | 48e8755 | 2017-08-16 11:28:44 +0200 | [diff] [blame] | 2333 | size_t servername_len; |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2334 | 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] | 2335 | int allow_early = 0; |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2336 | int i; |
| 2337 | |
Thierry FOURNIER | 28962c9 | 2018-06-17 21:37:05 +0200 | [diff] [blame] | 2338 | conn = SSL_get_ex_data(ssl, ssl_app_data_index); |
Willy Tarreau | a882552 | 2018-10-15 13:20:07 +0200 | [diff] [blame] | 2339 | s = __objt_listener(conn->target)->bind_conf; |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2340 | |
Frédéric Lécaille | e9473c7 | 2020-11-23 15:37:11 +0100 | [diff] [blame] | 2341 | #ifdef USE_QUIC |
| 2342 | if (conn->qc) { |
| 2343 | /* Look for the QUIC transport parameters. */ |
| 2344 | #ifdef OPENSSL_IS_BORINGSSL |
| 2345 | if (!SSL_early_callback_ctx_extension_get(ctx, TLS_EXTENSION_QUIC_TRANSPORT_PARAMETERS, |
| 2346 | &extension_data, &extension_len)) |
| 2347 | #else |
| 2348 | if (!SSL_client_hello_get0_ext(ssl, TLS_EXTENSION_QUIC_TRANSPORT_PARAMETERS, |
| 2349 | &extension_data, &extension_len)) |
| 2350 | #endif |
| 2351 | goto abort; |
| 2352 | |
| 2353 | if (!quic_transport_params_store(conn->qc, 0, extension_data, |
| 2354 | extension_data + extension_len)) |
| 2355 | goto abort; |
| 2356 | } |
| 2357 | #endif |
| 2358 | |
Olivier Houchard | 9679ac9 | 2017-10-27 14:58:08 +0200 | [diff] [blame] | 2359 | if (s->ssl_conf.early_data) |
Olivier Houchard | c2aae74 | 2017-09-22 18:26:28 +0200 | [diff] [blame] | 2360 | allow_early = 1; |
Emmanuel Hocdet | 84e417d | 2017-08-16 11:33:17 +0200 | [diff] [blame] | 2361 | #ifdef OPENSSL_IS_BORINGSSL |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2362 | if (SSL_early_callback_ctx_extension_get(ctx, TLSEXT_TYPE_server_name, |
| 2363 | &extension_data, &extension_len)) { |
Emmanuel Hocdet | 84e417d | 2017-08-16 11:33:17 +0200 | [diff] [blame] | 2364 | #else |
| 2365 | if (SSL_client_hello_get0_ext(ssl, TLSEXT_TYPE_server_name, &extension_data, &extension_len)) { |
| 2366 | #endif |
Emmanuel Hocdet | 48e8755 | 2017-08-16 11:28:44 +0200 | [diff] [blame] | 2367 | /* |
| 2368 | * The server_name extension was given too much extensibility when it |
| 2369 | * was written, so parsing the normal case is a bit complex. |
| 2370 | */ |
| 2371 | size_t len; |
| 2372 | if (extension_len <= 2) |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2373 | goto abort; |
Emmanuel Hocdet | 48e8755 | 2017-08-16 11:28:44 +0200 | [diff] [blame] | 2374 | /* Extract the length of the supplied list of names. */ |
| 2375 | len = (*extension_data++) << 8; |
| 2376 | len |= *extension_data++; |
| 2377 | if (len + 2 != extension_len) |
| 2378 | goto abort; |
| 2379 | /* |
| 2380 | * The list in practice only has a single element, so we only consider |
| 2381 | * the first one. |
| 2382 | */ |
| 2383 | if (len == 0 || *extension_data++ != TLSEXT_NAMETYPE_host_name) |
| 2384 | goto abort; |
| 2385 | extension_len = len - 1; |
| 2386 | /* Now we can finally pull out the byte array with the actual hostname. */ |
| 2387 | if (extension_len <= 2) |
| 2388 | goto abort; |
| 2389 | len = (*extension_data++) << 8; |
| 2390 | len |= *extension_data++; |
| 2391 | if (len == 0 || len + 2 > extension_len || len > TLSEXT_MAXLEN_host_name |
| 2392 | || memchr(extension_data, 0, len) != NULL) |
| 2393 | goto abort; |
| 2394 | servername = extension_data; |
| 2395 | servername_len = len; |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2396 | } else { |
Emmanuel Hocdet | 253c62b | 2017-08-14 11:01:25 +0200 | [diff] [blame] | 2397 | #if (!defined SSL_NO_GENERATE_CERTIFICATES) |
| 2398 | if (s->generate_certs && ssl_sock_generate_certificate_from_conn(s, ssl)) { |
Olivier Houchard | c2aae74 | 2017-09-22 18:26:28 +0200 | [diff] [blame] | 2399 | goto allow_early; |
Emmanuel Hocdet | 253c62b | 2017-08-14 11:01:25 +0200 | [diff] [blame] | 2400 | } |
| 2401 | #endif |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2402 | /* without SNI extension, is the default_ctx (need SSL_TLSEXT_ERR_NOACK) */ |
Emmanuel Hocdet | f6b37c6 | 2017-03-06 15:34:44 +0100 | [diff] [blame] | 2403 | if (!s->strict_sni) { |
William Lallemand | 21724f0 | 2019-11-04 17:56:13 +0100 | [diff] [blame] | 2404 | HA_RWLOCK_RDLOCK(SNI_LOCK, &s->sni_lock); |
Emmanuel Hocdet | 48e8755 | 2017-08-16 11:28:44 +0200 | [diff] [blame] | 2405 | ssl_sock_switchctx_set(ssl, s->default_ctx); |
William Lallemand | 21724f0 | 2019-11-04 17:56:13 +0100 | [diff] [blame] | 2406 | HA_RWLOCK_RDUNLOCK(SNI_LOCK, &s->sni_lock); |
Olivier Houchard | c2aae74 | 2017-09-22 18:26:28 +0200 | [diff] [blame] | 2407 | goto allow_early; |
Emmanuel Hocdet | f6b37c6 | 2017-03-06 15:34:44 +0100 | [diff] [blame] | 2408 | } |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2409 | goto abort; |
| 2410 | } |
| 2411 | |
Ilya Shipitsin | 77e3b4a | 2020-03-10 12:06:11 +0500 | [diff] [blame] | 2412 | /* extract/check clientHello information */ |
Emmanuel Hocdet | 84e417d | 2017-08-16 11:33:17 +0200 | [diff] [blame] | 2413 | #ifdef OPENSSL_IS_BORINGSSL |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2414 | 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] | 2415 | #else |
| 2416 | if (SSL_client_hello_get0_ext(ssl, TLSEXT_TYPE_signature_algorithms, &extension_data, &extension_len)) { |
| 2417 | #endif |
Emmanuel Hocdet | 48e8755 | 2017-08-16 11:28:44 +0200 | [diff] [blame] | 2418 | uint8_t sign; |
| 2419 | size_t len; |
| 2420 | if (extension_len < 2) |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2421 | goto abort; |
Emmanuel Hocdet | 48e8755 | 2017-08-16 11:28:44 +0200 | [diff] [blame] | 2422 | len = (*extension_data++) << 8; |
| 2423 | len |= *extension_data++; |
| 2424 | if (len + 2 != extension_len) |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2425 | goto abort; |
Emmanuel Hocdet | 48e8755 | 2017-08-16 11:28:44 +0200 | [diff] [blame] | 2426 | if (len % 2 != 0) |
| 2427 | goto abort; |
| 2428 | for (; len > 0; len -= 2) { |
| 2429 | extension_data++; /* hash */ |
| 2430 | sign = *extension_data++; |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2431 | switch (sign) { |
| 2432 | case TLSEXT_signature_rsa: |
Emmanuel Hocdet | 9f9b0c6 | 2018-09-03 16:29:16 +0200 | [diff] [blame] | 2433 | has_rsa_sig = 1; |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2434 | break; |
| 2435 | case TLSEXT_signature_ecdsa: |
| 2436 | has_ecdsa_sig = 1; |
| 2437 | break; |
| 2438 | default: |
| 2439 | continue; |
| 2440 | } |
Emmanuel Hocdet | 9f9b0c6 | 2018-09-03 16:29:16 +0200 | [diff] [blame] | 2441 | if (has_ecdsa_sig && has_rsa_sig) |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2442 | break; |
| 2443 | } |
| 2444 | } else { |
Bertrand Jacquin | a25282b | 2018-08-14 00:56:13 +0100 | [diff] [blame] | 2445 | /* without TLSEXT_TYPE_signature_algorithms extension (< TLSv1.2) */ |
Emmanuel Hocdet | 9f9b0c6 | 2018-09-03 16:29:16 +0200 | [diff] [blame] | 2446 | has_rsa_sig = 1; |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2447 | } |
| 2448 | 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] | 2449 | const SSL_CIPHER *cipher; |
| 2450 | size_t len; |
| 2451 | const uint8_t *cipher_suites; |
Emmanuel Hocdet | 9f9b0c6 | 2018-09-03 16:29:16 +0200 | [diff] [blame] | 2452 | has_ecdsa_sig = 0; |
Emmanuel Hocdet | 84e417d | 2017-08-16 11:33:17 +0200 | [diff] [blame] | 2453 | #ifdef OPENSSL_IS_BORINGSSL |
Emmanuel Hocdet | 48e8755 | 2017-08-16 11:28:44 +0200 | [diff] [blame] | 2454 | len = ctx->cipher_suites_len; |
| 2455 | cipher_suites = ctx->cipher_suites; |
Emmanuel Hocdet | 84e417d | 2017-08-16 11:33:17 +0200 | [diff] [blame] | 2456 | #else |
| 2457 | len = SSL_client_hello_get0_ciphers(ssl, &cipher_suites); |
| 2458 | #endif |
Emmanuel Hocdet | 48e8755 | 2017-08-16 11:28:44 +0200 | [diff] [blame] | 2459 | if (len % 2 != 0) |
| 2460 | goto abort; |
| 2461 | for (; len != 0; len -= 2, cipher_suites += 2) { |
Emmanuel Hocdet | 84e417d | 2017-08-16 11:33:17 +0200 | [diff] [blame] | 2462 | #ifdef OPENSSL_IS_BORINGSSL |
Emmanuel Hocdet | 48e8755 | 2017-08-16 11:28:44 +0200 | [diff] [blame] | 2463 | uint16_t cipher_suite = (cipher_suites[0] << 8) | cipher_suites[1]; |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2464 | cipher = SSL_get_cipher_by_value(cipher_suite); |
Emmanuel Hocdet | 84e417d | 2017-08-16 11:33:17 +0200 | [diff] [blame] | 2465 | #else |
| 2466 | cipher = SSL_CIPHER_find(ssl, cipher_suites); |
| 2467 | #endif |
Emmanuel Hocdet | 019f9b1 | 2017-10-02 17:12:06 +0200 | [diff] [blame] | 2468 | if (cipher && SSL_CIPHER_get_auth_nid(cipher) == NID_auth_ecdsa) { |
Emmanuel Hocdet | 9f9b0c6 | 2018-09-03 16:29:16 +0200 | [diff] [blame] | 2469 | has_ecdsa_sig = 1; |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2470 | break; |
| 2471 | } |
| 2472 | } |
| 2473 | } |
| 2474 | |
Emmanuel Hocdet | 48e8755 | 2017-08-16 11:28:44 +0200 | [diff] [blame] | 2475 | for (i = 0; i < trash.size && i < servername_len; i++) { |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 2476 | trash.area[i] = tolower(servername[i]); |
| 2477 | if (!wildp && (trash.area[i] == '.')) |
| 2478 | wildp = &trash.area[i]; |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2479 | } |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 2480 | trash.area[i] = 0; |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2481 | |
William Lallemand | 150bfa8 | 2019-09-19 17:12:49 +0200 | [diff] [blame] | 2482 | HA_RWLOCK_RDLOCK(SNI_LOCK, &s->sni_lock); |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2483 | |
William Lallemand | 94bd319 | 2020-08-14 14:43:35 +0200 | [diff] [blame] | 2484 | /* Look for an ECDSA, RSA and DSA certificate, first in the single |
| 2485 | * name and if not found in the wildcard */ |
Emmanuel Hocdet | 3777e3a | 2019-11-06 16:05:34 +0100 | [diff] [blame] | 2486 | for (i = 0; i < 2; i++) { |
| 2487 | if (i == 0) /* lookup in full qualified names */ |
| 2488 | node = ebst_lookup(&s->sni_ctx, trash.area); |
William Lallemand | 30f9e09 | 2020-08-17 14:31:19 +0200 | [diff] [blame] | 2489 | else if (i == 1 && wildp) /* lookup in wildcards names */ |
Emmanuel Hocdet | 3777e3a | 2019-11-06 16:05:34 +0100 | [diff] [blame] | 2490 | node = ebst_lookup(&s->sni_w_ctx, wildp); |
| 2491 | else |
| 2492 | break; |
William Lallemand | 30f9e09 | 2020-08-17 14:31:19 +0200 | [diff] [blame] | 2493 | |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2494 | for (n = node; n; n = ebmb_next_dup(n)) { |
William Lallemand | 30f9e09 | 2020-08-17 14:31:19 +0200 | [diff] [blame] | 2495 | |
Emmanuel Hocdet | 3777e3a | 2019-11-06 16:05:34 +0100 | [diff] [blame] | 2496 | /* lookup a not neg filter */ |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2497 | if (!container_of(n, struct sni_ctx, name)->neg) { |
William Lallemand | 30f9e09 | 2020-08-17 14:31:19 +0200 | [diff] [blame] | 2498 | struct sni_ctx *sni, *sni_tmp; |
| 2499 | int skip = 0; |
| 2500 | |
| 2501 | if (i == 1 && wildp) { /* wildcard */ |
| 2502 | /* If this is a wildcard, look for an exclusion on the same crt-list line */ |
| 2503 | sni = container_of(n, struct sni_ctx, name); |
| 2504 | 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] | 2505 | 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] | 2506 | skip = 1; |
| 2507 | break; |
| 2508 | } |
| 2509 | } |
| 2510 | if (skip) |
| 2511 | continue; |
| 2512 | } |
| 2513 | |
Emmanuel Hocdet | ddc090b | 2017-10-27 18:43:29 +0200 | [diff] [blame] | 2514 | switch(container_of(n, struct sni_ctx, name)->kinfo.sig) { |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2515 | case TLSEXT_signature_ecdsa: |
Emmanuel Hocdet | 9f9b0c6 | 2018-09-03 16:29:16 +0200 | [diff] [blame] | 2516 | if (!node_ecdsa) |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2517 | node_ecdsa = n; |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2518 | break; |
| 2519 | case TLSEXT_signature_rsa: |
Emmanuel Hocdet | 9f9b0c6 | 2018-09-03 16:29:16 +0200 | [diff] [blame] | 2520 | if (!node_rsa) |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2521 | node_rsa = n; |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2522 | break; |
Emmanuel Hocdet | ddc090b | 2017-10-27 18:43:29 +0200 | [diff] [blame] | 2523 | default: /* TLSEXT_signature_anonymous|dsa */ |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2524 | if (!node_anonymous) |
| 2525 | node_anonymous = n; |
| 2526 | break; |
| 2527 | } |
| 2528 | } |
| 2529 | } |
William Lallemand | 94bd319 | 2020-08-14 14:43:35 +0200 | [diff] [blame] | 2530 | } |
| 2531 | /* Once the certificates are found, select them depending on what is |
| 2532 | * supported in the client and by key_signature priority order: EDSA > |
| 2533 | * RSA > DSA */ |
William Lallemand | 5b1d1f6 | 2020-08-14 15:30:13 +0200 | [diff] [blame] | 2534 | if (has_ecdsa_sig && node_ecdsa) |
| 2535 | node = node_ecdsa; |
| 2536 | else if (has_rsa_sig && node_rsa) |
| 2537 | node = node_rsa; |
| 2538 | else if (node_anonymous) |
| 2539 | node = node_anonymous; |
| 2540 | else if (node_ecdsa) |
| 2541 | node = node_ecdsa; /* no ecdsa signature case (< TLSv1.2) */ |
| 2542 | else |
| 2543 | node = node_rsa; /* no rsa signature case (far far away) */ |
| 2544 | |
William Lallemand | 94bd319 | 2020-08-14 14:43:35 +0200 | [diff] [blame] | 2545 | if (node) { |
| 2546 | /* switch ctx */ |
| 2547 | struct ssl_bind_conf *conf = container_of(node, struct sni_ctx, name)->conf; |
| 2548 | ssl_sock_switchctx_set(ssl, container_of(node, struct sni_ctx, name)->ctx); |
| 2549 | if (conf) { |
| 2550 | methodVersions[conf->ssl_methods.min].ssl_set_version(ssl, SET_MIN); |
| 2551 | methodVersions[conf->ssl_methods.max].ssl_set_version(ssl, SET_MAX); |
| 2552 | if (conf->early_data) |
| 2553 | allow_early = 1; |
Emmanuel Hocdet | 3777e3a | 2019-11-06 16:05:34 +0100 | [diff] [blame] | 2554 | } |
William Lallemand | 94bd319 | 2020-08-14 14:43:35 +0200 | [diff] [blame] | 2555 | HA_RWLOCK_RDUNLOCK(SNI_LOCK, &s->sni_lock); |
| 2556 | goto allow_early; |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2557 | } |
William Lallemand | 150bfa8 | 2019-09-19 17:12:49 +0200 | [diff] [blame] | 2558 | |
William Lallemand | 0201047 | 2019-10-18 11:02:19 +0200 | [diff] [blame] | 2559 | HA_RWLOCK_RDUNLOCK(SNI_LOCK, &s->sni_lock); |
Emmanuel Hocdet | 253c62b | 2017-08-14 11:01:25 +0200 | [diff] [blame] | 2560 | #if (!defined SSL_NO_GENERATE_CERTIFICATES) |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 2561 | if (s->generate_certs && ssl_sock_generate_certificate(trash.area, s, ssl)) { |
Emmanuel Hocdet | 253c62b | 2017-08-14 11:01:25 +0200 | [diff] [blame] | 2562 | /* switch ctx done in ssl_sock_generate_certificate */ |
Olivier Houchard | c2aae74 | 2017-09-22 18:26:28 +0200 | [diff] [blame] | 2563 | goto allow_early; |
Emmanuel Hocdet | 253c62b | 2017-08-14 11:01:25 +0200 | [diff] [blame] | 2564 | } |
| 2565 | #endif |
Emmanuel Hocdet | f6b37c6 | 2017-03-06 15:34:44 +0100 | [diff] [blame] | 2566 | if (!s->strict_sni) { |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2567 | /* no certificate match, is the default_ctx */ |
William Lallemand | 21724f0 | 2019-11-04 17:56:13 +0100 | [diff] [blame] | 2568 | HA_RWLOCK_RDLOCK(SNI_LOCK, &s->sni_lock); |
Emmanuel Hocdet | 48e8755 | 2017-08-16 11:28:44 +0200 | [diff] [blame] | 2569 | ssl_sock_switchctx_set(ssl, s->default_ctx); |
William Lallemand | 21724f0 | 2019-11-04 17:56:13 +0100 | [diff] [blame] | 2570 | HA_RWLOCK_RDUNLOCK(SNI_LOCK, &s->sni_lock); |
William Lallemand | 0f2291b | 2021-11-18 17:46:26 +0100 | [diff] [blame] | 2571 | goto allow_early; |
Emmanuel Hocdet | f6b37c6 | 2017-03-06 15:34:44 +0100 | [diff] [blame] | 2572 | } |
William Lallemand | 0f2291b | 2021-11-18 17:46:26 +0100 | [diff] [blame] | 2573 | |
| 2574 | /* other cases fallback on abort, if strict-sni is set but no node was found */ |
| 2575 | |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2576 | abort: |
| 2577 | /* abort handshake (was SSL_TLSEXT_ERR_ALERT_FATAL) */ |
| 2578 | conn->err_code = CO_ER_SSL_HANDSHAKE; |
Emmanuel Hocdet | 84e417d | 2017-08-16 11:33:17 +0200 | [diff] [blame] | 2579 | #ifdef OPENSSL_IS_BORINGSSL |
Emmanuel Hocdet | 48e8755 | 2017-08-16 11:28:44 +0200 | [diff] [blame] | 2580 | return ssl_select_cert_error; |
Emmanuel Hocdet | 84e417d | 2017-08-16 11:33:17 +0200 | [diff] [blame] | 2581 | #else |
| 2582 | *al = SSL_AD_UNRECOGNIZED_NAME; |
| 2583 | return 0; |
| 2584 | #endif |
William Lallemand | 0f2291b | 2021-11-18 17:46:26 +0100 | [diff] [blame] | 2585 | |
| 2586 | allow_early: |
| 2587 | #ifdef OPENSSL_IS_BORINGSSL |
| 2588 | if (allow_early) |
| 2589 | SSL_set_early_data_enabled(ssl, 1); |
| 2590 | #else |
| 2591 | if (!allow_early) |
| 2592 | SSL_set_max_early_data(ssl, 0); |
| 2593 | #endif |
| 2594 | return 1; |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2595 | } |
| 2596 | |
William Lallemand | 0faf526 | 2021-11-18 15:25:16 +0100 | [diff] [blame] | 2597 | #else /* ! HAVE_SSL_CLIENT_HELLO_CB */ |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2598 | |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 2599 | /* Sets the SSL ctx of <ssl> to match the advertised server name. Returns a |
| 2600 | * warning when no match is found, which implies the default (first) cert |
| 2601 | * will keep being used. |
| 2602 | */ |
Emmanuel Hocdet | fdec789 | 2017-01-13 17:48:18 +0100 | [diff] [blame] | 2603 | static int ssl_sock_switchctx_cbk(SSL *ssl, int *al, void *priv) |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 2604 | { |
| 2605 | const char *servername; |
| 2606 | const char *wildp = NULL; |
Emmanuel Hocdet | 7c41a1b | 2013-05-07 20:20:06 +0200 | [diff] [blame] | 2607 | struct ebmb_node *node, *n; |
Emmanuel Hocdet | fdec789 | 2017-01-13 17:48:18 +0100 | [diff] [blame] | 2608 | struct bind_conf *s = priv; |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 2609 | int i; |
| 2610 | (void)al; /* shut gcc stupid warning */ |
| 2611 | |
| 2612 | servername = SSL_get_servername(ssl, TLSEXT_NAMETYPE_host_name); |
Emmanuel Hocdet | 6562337 | 2013-01-24 17:17:15 +0100 | [diff] [blame] | 2613 | if (!servername) { |
Emmanuel Hocdet | fdec789 | 2017-01-13 17:48:18 +0100 | [diff] [blame] | 2614 | #if (!defined SSL_NO_GENERATE_CERTIFICATES) |
Emmanuel Hocdet | 253c62b | 2017-08-14 11:01:25 +0200 | [diff] [blame] | 2615 | if (s->generate_certs && ssl_sock_generate_certificate_from_conn(s, ssl)) |
| 2616 | return SSL_TLSEXT_ERR_OK; |
Emmanuel Hocdet | fdec789 | 2017-01-13 17:48:18 +0100 | [diff] [blame] | 2617 | #endif |
Emmanuel Hocdet | f6b37c6 | 2017-03-06 15:34:44 +0100 | [diff] [blame] | 2618 | if (s->strict_sni) |
| 2619 | return SSL_TLSEXT_ERR_ALERT_FATAL; |
William Lallemand | 21724f0 | 2019-11-04 17:56:13 +0100 | [diff] [blame] | 2620 | HA_RWLOCK_RDLOCK(SNI_LOCK, &s->sni_lock); |
Emmanuel Hocdet | f6b37c6 | 2017-03-06 15:34:44 +0100 | [diff] [blame] | 2621 | ssl_sock_switchctx_set(ssl, s->default_ctx); |
William Lallemand | 21724f0 | 2019-11-04 17:56:13 +0100 | [diff] [blame] | 2622 | HA_RWLOCK_RDUNLOCK(SNI_LOCK, &s->sni_lock); |
Emmanuel Hocdet | f6b37c6 | 2017-03-06 15:34:44 +0100 | [diff] [blame] | 2623 | return SSL_TLSEXT_ERR_NOACK; |
Emmanuel Hocdet | 6562337 | 2013-01-24 17:17:15 +0100 | [diff] [blame] | 2624 | } |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 2625 | |
Willy Tarreau | 19d14ef | 2012-10-29 16:51:55 +0100 | [diff] [blame] | 2626 | for (i = 0; i < trash.size; i++) { |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 2627 | if (!servername[i]) |
| 2628 | break; |
Willy Tarreau | f278eec | 2020-07-05 21:46:32 +0200 | [diff] [blame] | 2629 | trash.area[i] = tolower((unsigned char)servername[i]); |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 2630 | if (!wildp && (trash.area[i] == '.')) |
| 2631 | wildp = &trash.area[i]; |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 2632 | } |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 2633 | trash.area[i] = 0; |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 2634 | |
William Lallemand | 150bfa8 | 2019-09-19 17:12:49 +0200 | [diff] [blame] | 2635 | HA_RWLOCK_RDLOCK(SNI_LOCK, &s->sni_lock); |
Emmanuel Hocdet | c5fdf0f | 2019-11-04 15:49:46 +0100 | [diff] [blame] | 2636 | node = NULL; |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 2637 | /* lookup in full qualified names */ |
Emmanuel Hocdet | c5fdf0f | 2019-11-04 15:49:46 +0100 | [diff] [blame] | 2638 | for (n = ebst_lookup(&s->sni_ctx, trash.area); n; n = ebmb_next_dup(n)) { |
| 2639 | /* lookup a not neg filter */ |
Emmanuel Hocdet | 7c41a1b | 2013-05-07 20:20:06 +0200 | [diff] [blame] | 2640 | if (!container_of(n, struct sni_ctx, name)->neg) { |
| 2641 | node = n; |
| 2642 | break; |
Emmanuel Hocdet | 6562337 | 2013-01-24 17:17:15 +0100 | [diff] [blame] | 2643 | } |
Emmanuel Hocdet | 7c41a1b | 2013-05-07 20:20:06 +0200 | [diff] [blame] | 2644 | } |
| 2645 | if (!node && wildp) { |
| 2646 | /* lookup in wildcards names */ |
Emmanuel Hocdet | c5fdf0f | 2019-11-04 15:49:46 +0100 | [diff] [blame] | 2647 | for (n = ebst_lookup(&s->sni_w_ctx, wildp); n; n = ebmb_next_dup(n)) { |
| 2648 | /* lookup a not neg filter */ |
| 2649 | if (!container_of(n, struct sni_ctx, name)->neg) { |
| 2650 | node = n; |
| 2651 | break; |
| 2652 | } |
| 2653 | } |
Emmanuel Hocdet | 7c41a1b | 2013-05-07 20:20:06 +0200 | [diff] [blame] | 2654 | } |
Emmanuel Hocdet | c5fdf0f | 2019-11-04 15:49:46 +0100 | [diff] [blame] | 2655 | if (!node) { |
Emmanuel Hocdet | fdec789 | 2017-01-13 17:48:18 +0100 | [diff] [blame] | 2656 | #if (!defined SSL_NO_GENERATE_CERTIFICATES) |
Emmanuel Hocdet | 253c62b | 2017-08-14 11:01:25 +0200 | [diff] [blame] | 2657 | if (s->generate_certs && ssl_sock_generate_certificate(servername, s, ssl)) { |
| 2658 | /* switch ctx done in ssl_sock_generate_certificate */ |
William Lallemand | 150bfa8 | 2019-09-19 17:12:49 +0200 | [diff] [blame] | 2659 | HA_RWLOCK_RDUNLOCK(SNI_LOCK, &s->sni_lock); |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 2660 | return SSL_TLSEXT_ERR_OK; |
| 2661 | } |
Emmanuel Hocdet | fdec789 | 2017-01-13 17:48:18 +0100 | [diff] [blame] | 2662 | #endif |
William Lallemand | 21724f0 | 2019-11-04 17:56:13 +0100 | [diff] [blame] | 2663 | if (s->strict_sni) { |
| 2664 | HA_RWLOCK_RDUNLOCK(SNI_LOCK, &s->sni_lock); |
Emmanuel Hocdet | f6b37c6 | 2017-03-06 15:34:44 +0100 | [diff] [blame] | 2665 | return SSL_TLSEXT_ERR_ALERT_FATAL; |
William Lallemand | 21724f0 | 2019-11-04 17:56:13 +0100 | [diff] [blame] | 2666 | } |
Emmanuel Hocdet | f6b37c6 | 2017-03-06 15:34:44 +0100 | [diff] [blame] | 2667 | ssl_sock_switchctx_set(ssl, s->default_ctx); |
William Lallemand | 21724f0 | 2019-11-04 17:56:13 +0100 | [diff] [blame] | 2668 | HA_RWLOCK_RDUNLOCK(SNI_LOCK, &s->sni_lock); |
Emmanuel Hocdet | f6b37c6 | 2017-03-06 15:34:44 +0100 | [diff] [blame] | 2669 | return SSL_TLSEXT_ERR_OK; |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 2670 | } |
| 2671 | |
| 2672 | /* switch ctx */ |
Emmanuel Hocdet | 530141f | 2017-03-01 18:54:56 +0100 | [diff] [blame] | 2673 | 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] | 2674 | HA_RWLOCK_RDUNLOCK(SNI_LOCK, &s->sni_lock); |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 2675 | return SSL_TLSEXT_ERR_OK; |
| 2676 | } |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2677 | #endif /* (!) OPENSSL_IS_BORINGSSL */ |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 2678 | #endif /* SSL_CTRL_SET_TLSEXT_HOSTNAME */ |
| 2679 | |
Emeric Brun | a4bcd9a | 2012-09-20 16:19:02 +0200 | [diff] [blame] | 2680 | #ifndef OPENSSL_NO_DH |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 2681 | |
| 2682 | static DH * ssl_get_dh_1024(void) |
| 2683 | { |
Remi Gacogne | d3a341a | 2015-05-29 16:26:17 +0200 | [diff] [blame] | 2684 | static unsigned char dh1024_p[]={ |
| 2685 | 0xFA,0xF9,0x2A,0x22,0x2A,0xA7,0x7F,0xE1,0x67,0x4E,0x53,0xF7, |
| 2686 | 0x56,0x13,0xC3,0xB1,0xE3,0x29,0x6B,0x66,0x31,0x6A,0x7F,0xB3, |
| 2687 | 0xC2,0x68,0x6B,0xCB,0x1D,0x57,0x39,0x1D,0x1F,0xFF,0x1C,0xC9, |
| 2688 | 0xA6,0xA4,0x98,0x82,0x31,0x5D,0x25,0xFF,0x8A,0xE0,0x73,0x96, |
| 2689 | 0x81,0xC8,0x83,0x79,0xC1,0x5A,0x04,0xF8,0x37,0x0D,0xA8,0x3D, |
| 2690 | 0xAE,0x74,0xBC,0xDB,0xB6,0xA4,0x75,0xD9,0x71,0x8A,0xA0,0x17, |
| 2691 | 0x9E,0x2D,0xC8,0xA8,0xDF,0x2C,0x5F,0x82,0x95,0xF8,0x92,0x9B, |
| 2692 | 0xA7,0x33,0x5F,0x89,0x71,0xC8,0x2D,0x6B,0x18,0x86,0xC4,0x94, |
| 2693 | 0x22,0xA5,0x52,0x8D,0xF6,0xF6,0xD2,0x37,0x92,0x0F,0xA5,0xCC, |
| 2694 | 0xDB,0x7B,0x1D,0x3D,0xA1,0x31,0xB7,0x80,0x8F,0x0B,0x67,0x5E, |
| 2695 | 0x36,0xA5,0x60,0x0C,0xF1,0x95,0x33,0x8B, |
| 2696 | }; |
| 2697 | static unsigned char dh1024_g[]={ |
| 2698 | 0x02, |
| 2699 | }; |
| 2700 | |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 2701 | BIGNUM *p; |
| 2702 | BIGNUM *g; |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 2703 | DH *dh = DH_new(); |
| 2704 | if (dh) { |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 2705 | p = BN_bin2bn(dh1024_p, sizeof dh1024_p, NULL); |
| 2706 | g = BN_bin2bn(dh1024_g, sizeof dh1024_g, NULL); |
Remi Gacogne | d3a341a | 2015-05-29 16:26:17 +0200 | [diff] [blame] | 2707 | |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 2708 | if (!p || !g) { |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 2709 | DH_free(dh); |
| 2710 | dh = NULL; |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 2711 | } else { |
| 2712 | DH_set0_pqg(dh, p, NULL, g); |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 2713 | } |
| 2714 | } |
| 2715 | return dh; |
| 2716 | } |
| 2717 | |
| 2718 | static DH *ssl_get_dh_2048(void) |
| 2719 | { |
Remi Gacogne | d3a341a | 2015-05-29 16:26:17 +0200 | [diff] [blame] | 2720 | static unsigned char dh2048_p[]={ |
| 2721 | 0xEC,0x86,0xF8,0x70,0xA0,0x33,0x16,0xEC,0x05,0x1A,0x73,0x59, |
| 2722 | 0xCD,0x1F,0x8B,0xF8,0x29,0xE4,0xD2,0xCF,0x52,0xDD,0xC2,0x24, |
| 2723 | 0x8D,0xB5,0x38,0x9A,0xFB,0x5C,0xA4,0xE4,0xB2,0xDA,0xCE,0x66, |
| 2724 | 0x50,0x74,0xA6,0x85,0x4D,0x4B,0x1D,0x30,0xB8,0x2B,0xF3,0x10, |
| 2725 | 0xE9,0xA7,0x2D,0x05,0x71,0xE7,0x81,0xDF,0x8B,0x59,0x52,0x3B, |
| 2726 | 0x5F,0x43,0x0B,0x68,0xF1,0xDB,0x07,0xBE,0x08,0x6B,0x1B,0x23, |
| 2727 | 0xEE,0x4D,0xCC,0x9E,0x0E,0x43,0xA0,0x1E,0xDF,0x43,0x8C,0xEC, |
| 2728 | 0xBE,0xBE,0x90,0xB4,0x51,0x54,0xB9,0x2F,0x7B,0x64,0x76,0x4E, |
| 2729 | 0x5D,0xD4,0x2E,0xAE,0xC2,0x9E,0xAE,0x51,0x43,0x59,0xC7,0x77, |
| 2730 | 0x9C,0x50,0x3C,0x0E,0xED,0x73,0x04,0x5F,0xF1,0x4C,0x76,0x2A, |
| 2731 | 0xD8,0xF8,0xCF,0xFC,0x34,0x40,0xD1,0xB4,0x42,0x61,0x84,0x66, |
| 2732 | 0x42,0x39,0x04,0xF8,0x68,0xB2,0x62,0xD7,0x55,0xED,0x1B,0x74, |
| 2733 | 0x75,0x91,0xE0,0xC5,0x69,0xC1,0x31,0x5C,0xDB,0x7B,0x44,0x2E, |
| 2734 | 0xCE,0x84,0x58,0x0D,0x1E,0x66,0x0C,0xC8,0x44,0x9E,0xFD,0x40, |
| 2735 | 0x08,0x67,0x5D,0xFB,0xA7,0x76,0x8F,0x00,0x11,0x87,0xE9,0x93, |
| 2736 | 0xF9,0x7D,0xC4,0xBC,0x74,0x55,0x20,0xD4,0x4A,0x41,0x2F,0x43, |
| 2737 | 0x42,0x1A,0xC1,0xF2,0x97,0x17,0x49,0x27,0x37,0x6B,0x2F,0x88, |
| 2738 | 0x7E,0x1C,0xA0,0xA1,0x89,0x92,0x27,0xD9,0x56,0x5A,0x71,0xC1, |
| 2739 | 0x56,0x37,0x7E,0x3A,0x9D,0x05,0xE7,0xEE,0x5D,0x8F,0x82,0x17, |
| 2740 | 0xBC,0xE9,0xC2,0x93,0x30,0x82,0xF9,0xF4,0xC9,0xAE,0x49,0xDB, |
| 2741 | 0xD0,0x54,0xB4,0xD9,0x75,0x4D,0xFA,0x06,0xB8,0xD6,0x38,0x41, |
| 2742 | 0xB7,0x1F,0x77,0xF3, |
| 2743 | }; |
| 2744 | static unsigned char dh2048_g[]={ |
| 2745 | 0x02, |
| 2746 | }; |
| 2747 | |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 2748 | BIGNUM *p; |
| 2749 | BIGNUM *g; |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 2750 | DH *dh = DH_new(); |
| 2751 | if (dh) { |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 2752 | p = BN_bin2bn(dh2048_p, sizeof dh2048_p, NULL); |
| 2753 | g = BN_bin2bn(dh2048_g, sizeof dh2048_g, NULL); |
Remi Gacogne | d3a341a | 2015-05-29 16:26:17 +0200 | [diff] [blame] | 2754 | |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 2755 | if (!p || !g) { |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 2756 | DH_free(dh); |
| 2757 | dh = NULL; |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 2758 | } else { |
| 2759 | DH_set0_pqg(dh, p, NULL, g); |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 2760 | } |
| 2761 | } |
| 2762 | return dh; |
| 2763 | } |
| 2764 | |
| 2765 | static DH *ssl_get_dh_4096(void) |
| 2766 | { |
Remi Gacogne | d3a341a | 2015-05-29 16:26:17 +0200 | [diff] [blame] | 2767 | static unsigned char dh4096_p[]={ |
| 2768 | 0xDE,0x16,0x94,0xCD,0x99,0x58,0x07,0xF1,0xF7,0x32,0x96,0x11, |
| 2769 | 0x04,0x82,0xD4,0x84,0x72,0x80,0x99,0x06,0xCA,0xF0,0xA3,0x68, |
| 2770 | 0x07,0xCE,0x64,0x50,0xE7,0x74,0x45,0x20,0x80,0x5E,0x4D,0xAD, |
| 2771 | 0xA5,0xB6,0xED,0xFA,0x80,0x6C,0x3B,0x35,0xC4,0x9A,0x14,0x6B, |
| 2772 | 0x32,0xBB,0xFD,0x1F,0x17,0x8E,0xB7,0x1F,0xD6,0xFA,0x3F,0x7B, |
| 2773 | 0xEE,0x16,0xA5,0x62,0x33,0x0D,0xED,0xBC,0x4E,0x58,0xE5,0x47, |
| 2774 | 0x4D,0xE9,0xAB,0x8E,0x38,0xD3,0x6E,0x90,0x57,0xE3,0x22,0x15, |
| 2775 | 0x33,0xBD,0xF6,0x43,0x45,0xB5,0x10,0x0A,0xBE,0x2C,0xB4,0x35, |
| 2776 | 0xB8,0x53,0x8D,0xAD,0xFB,0xA7,0x1F,0x85,0x58,0x41,0x7A,0x79, |
| 2777 | 0x20,0x68,0xB3,0xE1,0x3D,0x08,0x76,0xBF,0x86,0x0D,0x49,0xE3, |
| 2778 | 0x82,0x71,0x8C,0xB4,0x8D,0x81,0x84,0xD4,0xE7,0xBE,0x91,0xDC, |
| 2779 | 0x26,0x39,0x48,0x0F,0x35,0xC4,0xCA,0x65,0xE3,0x40,0x93,0x52, |
| 2780 | 0x76,0x58,0x7D,0xDD,0x51,0x75,0xDC,0x69,0x61,0xBF,0x47,0x2C, |
| 2781 | 0x16,0x68,0x2D,0xC9,0x29,0xD3,0xE6,0xC0,0x99,0x48,0xA0,0x9A, |
| 2782 | 0xC8,0x78,0xC0,0x6D,0x81,0x67,0x12,0x61,0x3F,0x71,0xBA,0x41, |
| 2783 | 0x1F,0x6C,0x89,0x44,0x03,0xBA,0x3B,0x39,0x60,0xAA,0x28,0x55, |
| 2784 | 0x59,0xAE,0xB8,0xFA,0xCB,0x6F,0xA5,0x1A,0xF7,0x2B,0xDD,0x52, |
| 2785 | 0x8A,0x8B,0xE2,0x71,0xA6,0x5E,0x7E,0xD8,0x2E,0x18,0xE0,0x66, |
| 2786 | 0xDF,0xDD,0x22,0x21,0x99,0x52,0x73,0xA6,0x33,0x20,0x65,0x0E, |
| 2787 | 0x53,0xE7,0x6B,0x9B,0xC5,0xA3,0x2F,0x97,0x65,0x76,0xD3,0x47, |
| 2788 | 0x23,0x77,0x12,0xB6,0x11,0x7B,0x24,0xED,0xF1,0xEF,0xC0,0xE2, |
| 2789 | 0xA3,0x7E,0x67,0x05,0x3E,0x96,0x4D,0x45,0xC2,0x18,0xD1,0x73, |
| 2790 | 0x9E,0x07,0xF3,0x81,0x6E,0x52,0x63,0xF6,0x20,0x76,0xB9,0x13, |
| 2791 | 0xD2,0x65,0x30,0x18,0x16,0x09,0x16,0x9E,0x8F,0xF1,0xD2,0x10, |
| 2792 | 0x5A,0xD3,0xD4,0xAF,0x16,0x61,0xDA,0x55,0x2E,0x18,0x5E,0x14, |
| 2793 | 0x08,0x54,0x2E,0x2A,0x25,0xA2,0x1A,0x9B,0x8B,0x32,0xA9,0xFD, |
| 2794 | 0xC2,0x48,0x96,0xE1,0x80,0xCA,0xE9,0x22,0x17,0xBB,0xCE,0x3E, |
| 2795 | 0x9E,0xED,0xC7,0xF1,0x1F,0xEC,0x17,0x21,0xDC,0x7B,0x82,0x48, |
| 2796 | 0x8E,0xBB,0x4B,0x9D,0x5B,0x04,0x04,0xDA,0xDB,0x39,0xDF,0x01, |
| 2797 | 0x40,0xC3,0xAA,0x26,0x23,0x89,0x75,0xC6,0x0B,0xD0,0xA2,0x60, |
| 2798 | 0x6A,0xF1,0xCC,0x65,0x18,0x98,0x1B,0x52,0xD2,0x74,0x61,0xCC, |
| 2799 | 0xBD,0x60,0xAE,0xA3,0xA0,0x66,0x6A,0x16,0x34,0x92,0x3F,0x41, |
| 2800 | 0x40,0x31,0x29,0xC0,0x2C,0x63,0xB2,0x07,0x8D,0xEB,0x94,0xB8, |
| 2801 | 0xE8,0x47,0x92,0x52,0x93,0x6A,0x1B,0x7E,0x1A,0x61,0xB3,0x1B, |
| 2802 | 0xF0,0xD6,0x72,0x9B,0xF1,0xB0,0xAF,0xBF,0x3E,0x65,0xEF,0x23, |
| 2803 | 0x1D,0x6F,0xFF,0x70,0xCD,0x8A,0x4C,0x8A,0xA0,0x72,0x9D,0xBE, |
| 2804 | 0xD4,0xBB,0x24,0x47,0x4A,0x68,0xB5,0xF5,0xC6,0xD5,0x7A,0xCD, |
| 2805 | 0xCA,0x06,0x41,0x07,0xAD,0xC2,0x1E,0xE6,0x54,0xA7,0xAD,0x03, |
| 2806 | 0xD9,0x12,0xC1,0x9C,0x13,0xB1,0xC9,0x0A,0x43,0x8E,0x1E,0x08, |
| 2807 | 0xCE,0x50,0x82,0x73,0x5F,0xA7,0x55,0x1D,0xD9,0x59,0xAC,0xB5, |
| 2808 | 0xEA,0x02,0x7F,0x6C,0x5B,0x74,0x96,0x98,0x67,0x24,0xA3,0x0F, |
| 2809 | 0x15,0xFC,0xA9,0x7D,0x3E,0x67,0xD1,0x70,0xF8,0x97,0xF3,0x67, |
| 2810 | 0xC5,0x8C,0x88,0x44,0x08,0x02,0xC7,0x2B, |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 2811 | }; |
Remi Gacogne | d3a341a | 2015-05-29 16:26:17 +0200 | [diff] [blame] | 2812 | static unsigned char dh4096_g[]={ |
| 2813 | 0x02, |
| 2814 | }; |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 2815 | |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 2816 | BIGNUM *p; |
| 2817 | BIGNUM *g; |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 2818 | DH *dh = DH_new(); |
| 2819 | if (dh) { |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 2820 | p = BN_bin2bn(dh4096_p, sizeof dh4096_p, NULL); |
| 2821 | g = BN_bin2bn(dh4096_g, sizeof dh4096_g, NULL); |
Remi Gacogne | d3a341a | 2015-05-29 16:26:17 +0200 | [diff] [blame] | 2822 | |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 2823 | if (!p || !g) { |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 2824 | DH_free(dh); |
| 2825 | dh = NULL; |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 2826 | } else { |
| 2827 | DH_set0_pqg(dh, p, NULL, g); |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 2828 | } |
| 2829 | } |
| 2830 | return dh; |
| 2831 | } |
| 2832 | |
| 2833 | /* Returns Diffie-Hellman parameters matching the private key length |
Willy Tarreau | ef93460 | 2016-12-22 23:12:01 +0100 | [diff] [blame] | 2834 | but not exceeding global_ssl.default_dh_param */ |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 2835 | static DH *ssl_get_tmp_dh(SSL *ssl, int export, int keylen) |
| 2836 | { |
| 2837 | DH *dh = NULL; |
| 2838 | EVP_PKEY *pkey = SSL_get_privatekey(ssl); |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 2839 | int type; |
| 2840 | |
| 2841 | type = pkey ? EVP_PKEY_base_id(pkey) : EVP_PKEY_NONE; |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 2842 | |
| 2843 | /* The keylen supplied by OpenSSL can only be 512 or 1024. |
| 2844 | See ssl3_send_server_key_exchange() in ssl/s3_srvr.c |
| 2845 | */ |
| 2846 | if (type == EVP_PKEY_RSA || type == EVP_PKEY_DSA) { |
| 2847 | keylen = EVP_PKEY_bits(pkey); |
| 2848 | } |
| 2849 | |
Willy Tarreau | ef93460 | 2016-12-22 23:12:01 +0100 | [diff] [blame] | 2850 | if (keylen > global_ssl.default_dh_param) { |
| 2851 | keylen = global_ssl.default_dh_param; |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 2852 | } |
| 2853 | |
Remi Gacogne | d3a341a | 2015-05-29 16:26:17 +0200 | [diff] [blame] | 2854 | if (keylen >= 4096) { |
Remi Gacogne | 8de5415 | 2014-07-15 11:36:40 +0200 | [diff] [blame] | 2855 | dh = local_dh_4096; |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 2856 | } |
| 2857 | else if (keylen >= 2048) { |
Remi Gacogne | 8de5415 | 2014-07-15 11:36:40 +0200 | [diff] [blame] | 2858 | dh = local_dh_2048; |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 2859 | } |
| 2860 | else { |
Remi Gacogne | 8de5415 | 2014-07-15 11:36:40 +0200 | [diff] [blame] | 2861 | dh = local_dh_1024; |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 2862 | } |
| 2863 | |
| 2864 | return dh; |
| 2865 | } |
| 2866 | |
Remi Gacogne | 47783ef | 2015-05-29 15:53:22 +0200 | [diff] [blame] | 2867 | static DH * ssl_sock_get_dh_from_file(const char *filename) |
Emeric Brun | a4bcd9a | 2012-09-20 16:19:02 +0200 | [diff] [blame] | 2868 | { |
Emeric Brun | a4bcd9a | 2012-09-20 16:19:02 +0200 | [diff] [blame] | 2869 | DH *dh = NULL; |
Remi Gacogne | 47783ef | 2015-05-29 15:53:22 +0200 | [diff] [blame] | 2870 | BIO *in = BIO_new(BIO_s_file()); |
Emeric Brun | a4bcd9a | 2012-09-20 16:19:02 +0200 | [diff] [blame] | 2871 | |
Emeric Brun | a4bcd9a | 2012-09-20 16:19:02 +0200 | [diff] [blame] | 2872 | if (in == NULL) |
| 2873 | goto end; |
| 2874 | |
Remi Gacogne | 47783ef | 2015-05-29 15:53:22 +0200 | [diff] [blame] | 2875 | if (BIO_read_filename(in, filename) <= 0) |
Emeric Brun | a4bcd9a | 2012-09-20 16:19:02 +0200 | [diff] [blame] | 2876 | goto end; |
| 2877 | |
Remi Gacogne | 47783ef | 2015-05-29 15:53:22 +0200 | [diff] [blame] | 2878 | dh = PEM_read_bio_DHparams(in, NULL, NULL, NULL); |
| 2879 | |
| 2880 | end: |
| 2881 | if (in) |
| 2882 | BIO_free(in); |
| 2883 | |
Emeric Brun | e1b4ed4 | 2018-08-16 15:14:12 +0200 | [diff] [blame] | 2884 | ERR_clear_error(); |
| 2885 | |
Remi Gacogne | 47783ef | 2015-05-29 15:53:22 +0200 | [diff] [blame] | 2886 | return dh; |
| 2887 | } |
| 2888 | |
| 2889 | int ssl_sock_load_global_dh_param_from_file(const char *filename) |
| 2890 | { |
| 2891 | global_dh = ssl_sock_get_dh_from_file(filename); |
| 2892 | |
| 2893 | if (global_dh) { |
| 2894 | return 0; |
| 2895 | } |
| 2896 | |
| 2897 | return -1; |
| 2898 | } |
Emeric Brun | a4bcd9a | 2012-09-20 16:19:02 +0200 | [diff] [blame] | 2899 | #endif |
| 2900 | |
William Lallemand | 9117de9 | 2019-10-04 00:29:42 +0200 | [diff] [blame] | 2901 | /* 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] | 2902 | 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] | 2903 | struct bind_conf *s, struct ssl_bind_conf *conf, |
| 2904 | struct pkey_info kinfo, char *name, int order) |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 2905 | { |
| 2906 | struct sni_ctx *sc; |
Emmanuel Hocdet | 7c41a1b | 2013-05-07 20:20:06 +0200 | [diff] [blame] | 2907 | int wild = 0, neg = 0; |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 2908 | |
Emmanuel Hocdet | 7c41a1b | 2013-05-07 20:20:06 +0200 | [diff] [blame] | 2909 | if (*name == '!') { |
| 2910 | neg = 1; |
| 2911 | name++; |
| 2912 | } |
| 2913 | if (*name == '*') { |
| 2914 | wild = 1; |
| 2915 | name++; |
| 2916 | } |
| 2917 | /* !* filter is a nop */ |
| 2918 | if (neg && wild) |
| 2919 | return order; |
| 2920 | if (*name) { |
| 2921 | int j, len; |
| 2922 | len = strlen(name); |
Thierry FOURNIER / OZON.IO | 07c3d78 | 2016-10-06 10:56:48 +0200 | [diff] [blame] | 2923 | for (j = 0; j < len && j < trash.size; j++) |
Willy Tarreau | f278eec | 2020-07-05 21:46:32 +0200 | [diff] [blame] | 2924 | trash.area[j] = tolower((unsigned char)name[j]); |
Thierry FOURNIER / OZON.IO | 07c3d78 | 2016-10-06 10:56:48 +0200 | [diff] [blame] | 2925 | if (j >= trash.size) |
William Lallemand | fe49bb3 | 2019-10-03 23:46:33 +0200 | [diff] [blame] | 2926 | return -1; |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 2927 | trash.area[j] = 0; |
Thierry FOURNIER / OZON.IO | 07c3d78 | 2016-10-06 10:56:48 +0200 | [diff] [blame] | 2928 | |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 2929 | sc = malloc(sizeof(struct sni_ctx) + len + 1); |
Thierry FOURNIER / OZON.IO | 7a3bd3b | 2016-10-06 10:35:29 +0200 | [diff] [blame] | 2930 | if (!sc) |
William Lallemand | fe49bb3 | 2019-10-03 23:46:33 +0200 | [diff] [blame] | 2931 | return -1; |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 2932 | memcpy(sc->name.key, trash.area, len + 1); |
William Lallemand | 02e19a5 | 2020-04-08 16:11:26 +0200 | [diff] [blame] | 2933 | SSL_CTX_up_ref(ctx); |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 2934 | sc->ctx = ctx; |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 2935 | sc->conf = conf; |
Emmanuel Hocdet | ddc090b | 2017-10-27 18:43:29 +0200 | [diff] [blame] | 2936 | sc->kinfo = kinfo; |
Emmanuel Hocdet | 7c41a1b | 2013-05-07 20:20:06 +0200 | [diff] [blame] | 2937 | sc->order = order++; |
| 2938 | sc->neg = neg; |
William Lallemand | 1d29c74 | 2019-10-04 00:53:29 +0200 | [diff] [blame] | 2939 | sc->wild = wild; |
| 2940 | sc->name.node.leaf_p = NULL; |
William Lallemand | cfca142 | 2020-03-05 10:17:47 +0100 | [diff] [blame] | 2941 | sc->ckch_inst = ckch_inst; |
Willy Tarreau | 2b71810 | 2021-04-21 07:32:39 +0200 | [diff] [blame] | 2942 | LIST_APPEND(&ckch_inst->sni_ctx, &sc->by_ckch_inst); |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 2943 | } |
| 2944 | return order; |
| 2945 | } |
| 2946 | |
William Lallemand | 6af0399 | 2019-07-23 15:00:54 +0200 | [diff] [blame] | 2947 | /* |
William Lallemand | 1d29c74 | 2019-10-04 00:53:29 +0200 | [diff] [blame] | 2948 | * Insert the sni_ctxs that are listed in the ckch_inst, in the bind_conf's sni_ctx tree |
| 2949 | * This function can't return an error. |
| 2950 | * |
| 2951 | * *CAUTION*: The caller must lock the sni tree if called in multithreading mode |
| 2952 | */ |
William Lallemand | c756bbd | 2020-05-13 17:23:59 +0200 | [diff] [blame] | 2953 | 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] | 2954 | { |
| 2955 | |
| 2956 | struct sni_ctx *sc0, *sc0b, *sc1; |
| 2957 | struct ebmb_node *node; |
| 2958 | |
| 2959 | list_for_each_entry_safe(sc0, sc0b, &ckch_inst->sni_ctx, by_ckch_inst) { |
| 2960 | |
| 2961 | /* ignore if sc0 was already inserted in a tree */ |
| 2962 | if (sc0->name.node.leaf_p) |
| 2963 | continue; |
| 2964 | |
| 2965 | /* Check for duplicates. */ |
| 2966 | if (sc0->wild) |
| 2967 | node = ebst_lookup(&bind_conf->sni_w_ctx, (char *)sc0->name.key); |
| 2968 | else |
| 2969 | node = ebst_lookup(&bind_conf->sni_ctx, (char *)sc0->name.key); |
| 2970 | |
| 2971 | for (; node; node = ebmb_next_dup(node)) { |
| 2972 | sc1 = ebmb_entry(node, struct sni_ctx, name); |
| 2973 | if (sc1->ctx == sc0->ctx && sc1->conf == sc0->conf |
| 2974 | && sc1->neg == sc0->neg && sc1->wild == sc0->wild) { |
| 2975 | /* it's a duplicate, we should remove and free it */ |
Willy Tarreau | 2b71810 | 2021-04-21 07:32:39 +0200 | [diff] [blame] | 2976 | LIST_DELETE(&sc0->by_ckch_inst); |
William Lallemand | 02e19a5 | 2020-04-08 16:11:26 +0200 | [diff] [blame] | 2977 | SSL_CTX_free(sc0->ctx); |
Willy Tarreau | 61cfdf4 | 2021-02-20 10:46:51 +0100 | [diff] [blame] | 2978 | ha_free(&sc0); |
William Lallemand | e15029b | 2019-10-14 10:46:58 +0200 | [diff] [blame] | 2979 | break; |
William Lallemand | 1d29c74 | 2019-10-04 00:53:29 +0200 | [diff] [blame] | 2980 | } |
| 2981 | } |
| 2982 | |
| 2983 | /* if duplicate, ignore the insertion */ |
| 2984 | if (!sc0) |
| 2985 | continue; |
| 2986 | |
| 2987 | if (sc0->wild) |
| 2988 | ebst_insert(&bind_conf->sni_w_ctx, &sc0->name); |
| 2989 | else |
| 2990 | ebst_insert(&bind_conf->sni_ctx, &sc0->name); |
Remi Tricot-Le Breton | 8218aed | 2021-03-17 14:56:54 +0100 | [diff] [blame] | 2991 | } |
William Lallemand | 21724f0 | 2019-11-04 17:56:13 +0100 | [diff] [blame] | 2992 | |
Remi Tricot-Le Breton | 8218aed | 2021-03-17 14:56:54 +0100 | [diff] [blame] | 2993 | /* replace the default_ctx if required with the instance's ctx. */ |
| 2994 | if (ckch_inst->is_default) { |
| 2995 | SSL_CTX_free(bind_conf->default_ctx); |
| 2996 | SSL_CTX_up_ref(ckch_inst->ctx); |
| 2997 | bind_conf->default_ctx = ckch_inst->ctx; |
William Lallemand | 1d29c74 | 2019-10-04 00:53:29 +0200 | [diff] [blame] | 2998 | } |
| 2999 | } |
| 3000 | |
| 3001 | /* |
William Lallemand | e3af8fb | 2019-10-08 11:36:53 +0200 | [diff] [blame] | 3002 | * tree used to store the ckchs ordered by filename/bundle name |
William Lallemand | 6af0399 | 2019-07-23 15:00:54 +0200 | [diff] [blame] | 3003 | */ |
William Lallemand | e3af8fb | 2019-10-08 11:36:53 +0200 | [diff] [blame] | 3004 | struct eb_root ckchs_tree = EB_ROOT_UNIQUE; |
William Lallemand | 6af0399 | 2019-07-23 15:00:54 +0200 | [diff] [blame] | 3005 | |
William Lallemand | 2954c47 | 2020-03-06 21:54:13 +0100 | [diff] [blame] | 3006 | /* tree of crtlist (crt-list/directory) */ |
William Lallemand | c756bbd | 2020-05-13 17:23:59 +0200 | [diff] [blame] | 3007 | struct eb_root crtlists_tree = EB_ROOT_UNIQUE; |
William Lallemand | fa89222 | 2019-07-23 16:06:08 +0200 | [diff] [blame] | 3008 | |
Emeric Brun | 7a88336 | 2019-10-17 13:27:40 +0200 | [diff] [blame] | 3009 | /* Loads Diffie-Hellman parameter from a ckchs to an SSL_CTX. |
Ilya Shipitsin | 77e3b4a | 2020-03-10 12:06:11 +0500 | [diff] [blame] | 3010 | * If there is no DH parameter available in the ckchs, the global |
Emeric Brun | 7a88336 | 2019-10-17 13:27:40 +0200 | [diff] [blame] | 3011 | * DH parameter is loaded into the SSL_CTX and if there is no |
| 3012 | * DH parameter available in ckchs nor in global, the default |
| 3013 | * DH parameters are applied on the SSL_CTX. |
| 3014 | * Returns a bitfield containing the flags: |
| 3015 | * ERR_FATAL in any fatal error case |
| 3016 | * ERR_ALERT if a reason of the error is availabine in err |
| 3017 | * ERR_WARN if a warning is available into err |
| 3018 | * The value 0 means there is no error nor warning and |
| 3019 | * the operation succeed. |
| 3020 | */ |
William Lallemand | fa89222 | 2019-07-23 16:06:08 +0200 | [diff] [blame] | 3021 | #ifndef OPENSSL_NO_DH |
Emeric Brun | 7a88336 | 2019-10-17 13:27:40 +0200 | [diff] [blame] | 3022 | static int ssl_sock_load_dh_params(SSL_CTX *ctx, const struct cert_key_and_chain *ckch, |
| 3023 | const char *path, char **err) |
William Lallemand | fa89222 | 2019-07-23 16:06:08 +0200 | [diff] [blame] | 3024 | { |
Emeric Brun | 7a88336 | 2019-10-17 13:27:40 +0200 | [diff] [blame] | 3025 | int ret = 0; |
William Lallemand | fa89222 | 2019-07-23 16:06:08 +0200 | [diff] [blame] | 3026 | DH *dh = NULL; |
| 3027 | |
William Lallemand | a8c7374 | 2019-07-31 18:31:34 +0200 | [diff] [blame] | 3028 | if (ckch && ckch->dh) { |
William Lallemand | fa89222 | 2019-07-23 16:06:08 +0200 | [diff] [blame] | 3029 | dh = ckch->dh; |
Emeric Brun | a9363eb | 2019-10-17 14:53:03 +0200 | [diff] [blame] | 3030 | if (!SSL_CTX_set_tmp_dh(ctx, dh)) { |
| 3031 | memprintf(err, "%sunable to load the DH parameter specified in '%s'", |
| 3032 | err && *err ? *err : "", path); |
| 3033 | #if defined(SSL_CTX_set_dh_auto) |
| 3034 | SSL_CTX_set_dh_auto(ctx, 1); |
| 3035 | memprintf(err, "%s, SSL library will use an automatically generated DH parameter.\n", |
| 3036 | err && *err ? *err : ""); |
| 3037 | #else |
| 3038 | memprintf(err, "%s, DH ciphers won't be available.\n", |
| 3039 | err && *err ? *err : ""); |
| 3040 | #endif |
| 3041 | ret |= ERR_WARN; |
| 3042 | goto end; |
| 3043 | } |
William Lallemand | fa89222 | 2019-07-23 16:06:08 +0200 | [diff] [blame] | 3044 | |
| 3045 | if (ssl_dh_ptr_index >= 0) { |
| 3046 | /* store a pointer to the DH params to avoid complaining about |
| 3047 | ssl-default-dh-param not being set for this SSL_CTX */ |
| 3048 | SSL_CTX_set_ex_data(ctx, ssl_dh_ptr_index, dh); |
| 3049 | } |
| 3050 | } |
| 3051 | else if (global_dh) { |
Emeric Brun | a9363eb | 2019-10-17 14:53:03 +0200 | [diff] [blame] | 3052 | if (!SSL_CTX_set_tmp_dh(ctx, global_dh)) { |
| 3053 | memprintf(err, "%sunable to use the global DH parameter for certificate '%s'", |
| 3054 | err && *err ? *err : "", path); |
| 3055 | #if defined(SSL_CTX_set_dh_auto) |
| 3056 | SSL_CTX_set_dh_auto(ctx, 1); |
| 3057 | memprintf(err, "%s, SSL library will use an automatically generated DH parameter.\n", |
| 3058 | err && *err ? *err : ""); |
| 3059 | #else |
| 3060 | memprintf(err, "%s, DH ciphers won't be available.\n", |
| 3061 | err && *err ? *err : ""); |
| 3062 | #endif |
| 3063 | ret |= ERR_WARN; |
| 3064 | goto end; |
| 3065 | } |
William Lallemand | fa89222 | 2019-07-23 16:06:08 +0200 | [diff] [blame] | 3066 | } |
| 3067 | else { |
| 3068 | /* Clear openssl global errors stack */ |
| 3069 | ERR_clear_error(); |
| 3070 | |
Willy Tarreau | 6d27a92 | 2020-11-05 19:38:05 +0100 | [diff] [blame] | 3071 | if (global_ssl.default_dh_param && global_ssl.default_dh_param <= 1024) { |
William Lallemand | fa89222 | 2019-07-23 16:06:08 +0200 | [diff] [blame] | 3072 | /* we are limited to DH parameter of 1024 bits anyway */ |
| 3073 | if (local_dh_1024 == NULL) |
| 3074 | local_dh_1024 = ssl_get_dh_1024(); |
| 3075 | |
Emeric Brun | 7a88336 | 2019-10-17 13:27:40 +0200 | [diff] [blame] | 3076 | if (local_dh_1024 == NULL) { |
| 3077 | memprintf(err, "%sunable to load default 1024 bits DH parameter for certificate '%s'.\n", |
| 3078 | err && *err ? *err : "", path); |
| 3079 | ret |= ERR_ALERT | ERR_FATAL; |
William Lallemand | fa89222 | 2019-07-23 16:06:08 +0200 | [diff] [blame] | 3080 | goto end; |
Emeric Brun | 7a88336 | 2019-10-17 13:27:40 +0200 | [diff] [blame] | 3081 | } |
William Lallemand | fa89222 | 2019-07-23 16:06:08 +0200 | [diff] [blame] | 3082 | |
Emeric Brun | a9363eb | 2019-10-17 14:53:03 +0200 | [diff] [blame] | 3083 | if (!SSL_CTX_set_tmp_dh(ctx, local_dh_1024)) { |
| 3084 | memprintf(err, "%sunable to load default 1024 bits DH parameter for certificate '%s'.\n", |
| 3085 | err && *err ? *err : "", path); |
| 3086 | #if defined(SSL_CTX_set_dh_auto) |
| 3087 | SSL_CTX_set_dh_auto(ctx, 1); |
| 3088 | memprintf(err, "%s, SSL library will use an automatically generated DH parameter.\n", |
| 3089 | err && *err ? *err : ""); |
| 3090 | #else |
| 3091 | memprintf(err, "%s, DH ciphers won't be available.\n", |
| 3092 | err && *err ? *err : ""); |
| 3093 | #endif |
| 3094 | ret |= ERR_WARN; |
| 3095 | goto end; |
| 3096 | } |
William Lallemand | fa89222 | 2019-07-23 16:06:08 +0200 | [diff] [blame] | 3097 | } |
| 3098 | else { |
| 3099 | SSL_CTX_set_tmp_dh_callback(ctx, ssl_get_tmp_dh); |
| 3100 | } |
William Lallemand | 8d0f893 | 2019-10-17 18:03:58 +0200 | [diff] [blame] | 3101 | } |
| 3102 | |
William Lallemand | f9568fc | 2019-10-16 18:27:58 +0200 | [diff] [blame] | 3103 | end: |
William Lallemand | f9568fc | 2019-10-16 18:27:58 +0200 | [diff] [blame] | 3104 | ERR_clear_error(); |
William Lallemand | f9568fc | 2019-10-16 18:27:58 +0200 | [diff] [blame] | 3105 | return ret; |
| 3106 | } |
Emmanuel Hocdet | 54227d8 | 2019-07-30 17:04:01 +0200 | [diff] [blame] | 3107 | #endif |
William Lallemand | fa89222 | 2019-07-23 16:06:08 +0200 | [diff] [blame] | 3108 | |
Remi Tricot-Le Breton | ec805a3 | 2021-01-25 17:19:42 +0100 | [diff] [blame] | 3109 | |
| 3110 | /* Load a certificate chain into an SSL context. |
Emeric Brun | a96b582 | 2019-10-17 13:25:14 +0200 | [diff] [blame] | 3111 | * Returns a bitfield containing the flags: |
| 3112 | * ERR_FATAL in any fatal error case |
| 3113 | * ERR_ALERT if the reason of the error is available in err |
| 3114 | * ERR_WARN if a warning is available into err |
| 3115 | * The value 0 means there is no error nor warning and |
| 3116 | * the operation succeed. |
yanbzhu | 488a4d2 | 2015-12-01 15:16:07 -0500 | [diff] [blame] | 3117 | */ |
Remi Tricot-Le Breton | ec805a3 | 2021-01-25 17:19:42 +0100 | [diff] [blame] | 3118 | static int ssl_sock_load_cert_chain(const char *path, const struct cert_key_and_chain *ckch, |
| 3119 | SSL_CTX *ctx, STACK_OF(X509) **find_chain, char **err) |
yanbzhu | 488a4d2 | 2015-12-01 15:16:07 -0500 | [diff] [blame] | 3120 | { |
Emeric Brun | a96b582 | 2019-10-17 13:25:14 +0200 | [diff] [blame] | 3121 | int errcode = 0; |
| 3122 | |
Remi Tricot-Le Breton | ec805a3 | 2021-01-25 17:19:42 +0100 | [diff] [blame] | 3123 | if (find_chain == NULL) { |
| 3124 | errcode |= ERR_FATAL; |
| 3125 | goto end; |
yanbzhu | 488a4d2 | 2015-12-01 15:16:07 -0500 | [diff] [blame] | 3126 | } |
| 3127 | |
| 3128 | if (!SSL_CTX_use_certificate(ctx, ckch->cert)) { |
| 3129 | memprintf(err, "%sunable to load SSL certificate into SSL Context '%s'.\n", |
| 3130 | err && *err ? *err : "", path); |
Emeric Brun | a96b582 | 2019-10-17 13:25:14 +0200 | [diff] [blame] | 3131 | errcode |= ERR_ALERT | ERR_FATAL; |
| 3132 | goto end; |
yanbzhu | 488a4d2 | 2015-12-01 15:16:07 -0500 | [diff] [blame] | 3133 | } |
| 3134 | |
Emmanuel Hocdet | b90d2cb | 2020-02-18 15:27:32 +0100 | [diff] [blame] | 3135 | if (ckch->chain) { |
Remi Tricot-Le Breton | ec805a3 | 2021-01-25 17:19:42 +0100 | [diff] [blame] | 3136 | *find_chain = ckch->chain; |
Emmanuel Hocdet | b90d2cb | 2020-02-18 15:27:32 +0100 | [diff] [blame] | 3137 | } else { |
| 3138 | /* Find Certificate Chain in global */ |
| 3139 | struct issuer_chain *issuer; |
Emmanuel Hocdet | ef87e0a | 2020-03-23 11:29:11 +0100 | [diff] [blame] | 3140 | issuer = ssl_get0_issuer_chain(ckch->cert); |
Emmanuel Hocdet | b90d2cb | 2020-02-18 15:27:32 +0100 | [diff] [blame] | 3141 | if (issuer) |
Remi Tricot-Le Breton | ec805a3 | 2021-01-25 17:19:42 +0100 | [diff] [blame] | 3142 | *find_chain = issuer->chain; |
Emmanuel Hocdet | b90d2cb | 2020-02-18 15:27:32 +0100 | [diff] [blame] | 3143 | } |
William Lallemand | 8588857 | 2020-02-27 14:48:35 +0100 | [diff] [blame] | 3144 | |
Remi Tricot-Le Breton | ec805a3 | 2021-01-25 17:19:42 +0100 | [diff] [blame] | 3145 | if (!*find_chain) { |
William Lallemand | 935d829 | 2020-08-12 20:02:10 +0200 | [diff] [blame] | 3146 | /* always put a null chain stack in the SSL_CTX so it does not |
| 3147 | * try to build the chain from the verify store */ |
Remi Tricot-Le Breton | ec805a3 | 2021-01-25 17:19:42 +0100 | [diff] [blame] | 3148 | *find_chain = sk_X509_new_null(); |
William Lallemand | 935d829 | 2020-08-12 20:02:10 +0200 | [diff] [blame] | 3149 | } |
| 3150 | |
William Lallemand | f187ce6 | 2020-06-02 18:27:20 +0200 | [diff] [blame] | 3151 | /* 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] | 3152 | #ifdef SSL_CTX_set1_chain |
Remi Tricot-Le Breton | ec805a3 | 2021-01-25 17:19:42 +0100 | [diff] [blame] | 3153 | if (!SSL_CTX_set1_chain(ctx, *find_chain)) { |
William Lallemand | 935d829 | 2020-08-12 20:02:10 +0200 | [diff] [blame] | 3154 | memprintf(err, "%sunable to load chain certificate into SSL Context '%s'. Make sure you are linking against Openssl >= 1.0.2.\n", |
| 3155 | err && *err ? *err : "", path); |
| 3156 | errcode |= ERR_ALERT | ERR_FATAL; |
| 3157 | goto end; |
| 3158 | } |
William Lallemand | f187ce6 | 2020-06-02 18:27:20 +0200 | [diff] [blame] | 3159 | #else |
| 3160 | { /* legacy compat (< openssl 1.0.2) */ |
Emmanuel Hocdet | 4fed93e | 2020-02-28 16:00:34 +0100 | [diff] [blame] | 3161 | X509 *ca; |
William Lallemand | f187ce6 | 2020-06-02 18:27:20 +0200 | [diff] [blame] | 3162 | STACK_OF(X509) *chain; |
Remi Tricot-Le Breton | ec805a3 | 2021-01-25 17:19:42 +0100 | [diff] [blame] | 3163 | chain = X509_chain_up_ref(*find_chain); |
William Lallemand | f187ce6 | 2020-06-02 18:27:20 +0200 | [diff] [blame] | 3164 | while ((ca = sk_X509_shift(chain))) |
Emmanuel Hocdet | 4fed93e | 2020-02-28 16:00:34 +0100 | [diff] [blame] | 3165 | if (!SSL_CTX_add_extra_chain_cert(ctx, ca)) { |
Emmanuel Hocdet | 4fed93e | 2020-02-28 16:00:34 +0100 | [diff] [blame] | 3166 | memprintf(err, "%sunable to load chain certificate into SSL Context '%s'.\n", |
| 3167 | err && *err ? *err : "", path); |
William Lallemand | f187ce6 | 2020-06-02 18:27:20 +0200 | [diff] [blame] | 3168 | X509_free(ca); |
| 3169 | sk_X509_pop_free(chain, X509_free); |
Emmanuel Hocdet | 4fed93e | 2020-02-28 16:00:34 +0100 | [diff] [blame] | 3170 | errcode |= ERR_ALERT | ERR_FATAL; |
| 3171 | goto end; |
| 3172 | } |
Emmanuel Hocdet | 4fed93e | 2020-02-28 16:00:34 +0100 | [diff] [blame] | 3173 | } |
William Lallemand | f187ce6 | 2020-06-02 18:27:20 +0200 | [diff] [blame] | 3174 | #endif |
yanbzhu | 488a4d2 | 2015-12-01 15:16:07 -0500 | [diff] [blame] | 3175 | |
William Lallemand | 9a1d839 | 2020-08-10 17:28:23 +0200 | [diff] [blame] | 3176 | #ifdef SSL_CTX_build_cert_chain |
William Lallemand | bf298af | 2020-08-10 16:18:45 +0200 | [diff] [blame] | 3177 | /* remove the Root CA from the SSL_CTX if the option is activated */ |
| 3178 | if (global_ssl.skip_self_issued_ca) { |
| 3179 | if (!SSL_CTX_build_cert_chain(ctx, SSL_BUILD_CHAIN_FLAG_NO_ROOT|SSL_BUILD_CHAIN_FLAG_UNTRUSTED|SSL_BUILD_CHAIN_FLAG_IGNORE_ERROR)) { |
| 3180 | memprintf(err, "%sunable to load chain certificate into SSL Context '%s'.\n", |
| 3181 | err && *err ? *err : "", path); |
| 3182 | errcode |= ERR_ALERT | ERR_FATAL; |
| 3183 | goto end; |
| 3184 | } |
| 3185 | } |
William Lallemand | 9a1d839 | 2020-08-10 17:28:23 +0200 | [diff] [blame] | 3186 | #endif |
William Lallemand | bf298af | 2020-08-10 16:18:45 +0200 | [diff] [blame] | 3187 | |
Remi Tricot-Le Breton | ec805a3 | 2021-01-25 17:19:42 +0100 | [diff] [blame] | 3188 | end: |
| 3189 | return errcode; |
| 3190 | } |
| 3191 | |
| 3192 | |
| 3193 | /* Loads the info in ckch into ctx |
| 3194 | * Returns a bitfield containing the flags: |
| 3195 | * ERR_FATAL in any fatal error case |
| 3196 | * ERR_ALERT if the reason of the error is available in err |
| 3197 | * ERR_WARN if a warning is available into err |
| 3198 | * The value 0 means there is no error nor warning and |
| 3199 | * the operation succeed. |
| 3200 | */ |
| 3201 | static int ssl_sock_put_ckch_into_ctx(const char *path, const struct cert_key_and_chain *ckch, SSL_CTX *ctx, char **err) |
| 3202 | { |
| 3203 | int errcode = 0; |
| 3204 | STACK_OF(X509) *find_chain = NULL; |
| 3205 | |
| 3206 | if (SSL_CTX_use_PrivateKey(ctx, ckch->key) <= 0) { |
| 3207 | memprintf(err, "%sunable to load SSL private key into SSL Context '%s'.\n", |
| 3208 | err && *err ? *err : "", path); |
| 3209 | errcode |= ERR_ALERT | ERR_FATAL; |
| 3210 | return errcode; |
| 3211 | } |
| 3212 | |
| 3213 | /* Load certificate chain */ |
| 3214 | errcode |= ssl_sock_load_cert_chain(path, ckch, ctx, &find_chain, err); |
| 3215 | if (errcode & ERR_CODE) |
| 3216 | goto end; |
| 3217 | |
William Lallemand | fa89222 | 2019-07-23 16:06:08 +0200 | [diff] [blame] | 3218 | #ifndef OPENSSL_NO_DH |
| 3219 | /* store a NULL pointer to indicate we have not yet loaded |
| 3220 | a custom DH param file */ |
| 3221 | if (ssl_dh_ptr_index >= 0) { |
| 3222 | SSL_CTX_set_ex_data(ctx, ssl_dh_ptr_index, NULL); |
| 3223 | } |
| 3224 | |
Emeric Brun | 7a88336 | 2019-10-17 13:27:40 +0200 | [diff] [blame] | 3225 | errcode |= ssl_sock_load_dh_params(ctx, ckch, path, err); |
| 3226 | if (errcode & ERR_CODE) { |
William Lallemand | fa89222 | 2019-07-23 16:06:08 +0200 | [diff] [blame] | 3227 | memprintf(err, "%sunable to load DH parameters from file '%s'.\n", |
| 3228 | err && *err ? *err : "", path); |
Emeric Brun | a96b582 | 2019-10-17 13:25:14 +0200 | [diff] [blame] | 3229 | goto end; |
William Lallemand | fa89222 | 2019-07-23 16:06:08 +0200 | [diff] [blame] | 3230 | } |
| 3231 | #endif |
| 3232 | |
Ilya Shipitsin | 7bbf586 | 2021-02-06 18:55:27 +0500 | [diff] [blame] | 3233 | #ifdef HAVE_SSL_CTX_ADD_SERVER_CUSTOM_EXT |
William Lallemand | a17f411 | 2019-10-10 15:16:44 +0200 | [diff] [blame] | 3234 | if (sctl_ex_index >= 0 && ckch->sctl) { |
| 3235 | if (ssl_sock_load_sctl(ctx, ckch->sctl) < 0) { |
| 3236 | 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] | 3237 | err && *err ? *err : "", path); |
Emeric Brun | a96b582 | 2019-10-17 13:25:14 +0200 | [diff] [blame] | 3238 | errcode |= ERR_ALERT | ERR_FATAL; |
| 3239 | goto end; |
William Lallemand | a17f411 | 2019-10-10 15:16:44 +0200 | [diff] [blame] | 3240 | } |
| 3241 | } |
| 3242 | #endif |
| 3243 | |
Emmanuel Hocdet | a73a222 | 2020-10-26 13:55:30 +0100 | [diff] [blame] | 3244 | #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] | 3245 | /* Load OCSP Info into context */ |
| 3246 | if (ckch->ocsp_response) { |
Emmanuel Hocdet | 6f507c7 | 2020-02-18 15:56:39 +0100 | [diff] [blame] | 3247 | if (ssl_sock_load_ocsp(ctx, ckch, find_chain) < 0) { |
Tim Duesterhus | 9312853 | 2019-11-23 23:45:10 +0100 | [diff] [blame] | 3248 | 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", |
| 3249 | err && *err ? *err : "", path); |
Emeric Brun | a96b582 | 2019-10-17 13:25:14 +0200 | [diff] [blame] | 3250 | errcode |= ERR_ALERT | ERR_FATAL; |
| 3251 | goto end; |
William Lallemand | 246c024 | 2019-10-11 08:59:13 +0200 | [diff] [blame] | 3252 | } |
| 3253 | } |
William Lallemand | 246c024 | 2019-10-11 08:59:13 +0200 | [diff] [blame] | 3254 | #endif |
| 3255 | |
Emeric Brun | a96b582 | 2019-10-17 13:25:14 +0200 | [diff] [blame] | 3256 | end: |
| 3257 | return errcode; |
yanbzhu | 488a4d2 | 2015-12-01 15:16:07 -0500 | [diff] [blame] | 3258 | } |
| 3259 | |
Remi Tricot-Le Breton | d817dc7 | 2021-01-25 17:19:43 +0100 | [diff] [blame] | 3260 | |
| 3261 | /* Loads the info of a ckch built out of a backend certificate into an SSL ctx |
| 3262 | * Returns a bitfield containing the flags: |
| 3263 | * ERR_FATAL in any fatal error case |
| 3264 | * ERR_ALERT if the reason of the error is available in err |
| 3265 | * ERR_WARN if a warning is available into err |
| 3266 | * The value 0 means there is no error nor warning and |
| 3267 | * the operation succeed. |
| 3268 | */ |
| 3269 | static int ssl_sock_put_srv_ckch_into_ctx(const char *path, const struct cert_key_and_chain *ckch, |
| 3270 | SSL_CTX *ctx, char **err) |
| 3271 | { |
| 3272 | int errcode = 0; |
| 3273 | STACK_OF(X509) *find_chain = NULL; |
| 3274 | |
| 3275 | /* Load the private key */ |
| 3276 | if (SSL_CTX_use_PrivateKey(ctx, ckch->key) <= 0) { |
| 3277 | memprintf(err, "%sunable to load SSL private key into SSL Context '%s'.\n", |
| 3278 | err && *err ? *err : "", path); |
| 3279 | errcode |= ERR_ALERT | ERR_FATAL; |
| 3280 | } |
| 3281 | |
| 3282 | /* Load certificate chain */ |
| 3283 | errcode |= ssl_sock_load_cert_chain(path, ckch, ctx, &find_chain, err); |
| 3284 | if (errcode & ERR_CODE) |
| 3285 | goto end; |
| 3286 | |
| 3287 | if (SSL_CTX_check_private_key(ctx) <= 0) { |
| 3288 | memprintf(err, "%sinconsistencies between private key and certificate loaded from PEM file '%s'.\n", |
| 3289 | err && *err ? *err : "", path); |
| 3290 | errcode |= ERR_ALERT | ERR_FATAL; |
| 3291 | } |
| 3292 | |
| 3293 | end: |
| 3294 | return errcode; |
| 3295 | } |
| 3296 | |
| 3297 | |
William Lallemand | 614ca0d | 2019-10-07 13:52:11 +0200 | [diff] [blame] | 3298 | /* |
| 3299 | * This function allocate a ckch_inst and create its snis |
Emeric Brun | 054563d | 2019-10-17 13:16:58 +0200 | [diff] [blame] | 3300 | * |
| 3301 | * Returns a bitfield containing the flags: |
| 3302 | * ERR_FATAL in any fatal error case |
| 3303 | * ERR_ALERT if the reason of the error is available in err |
| 3304 | * ERR_WARN if a warning is available into err |
William Lallemand | 614ca0d | 2019-10-07 13:52:11 +0200 | [diff] [blame] | 3305 | */ |
William Lallemand | c756bbd | 2020-05-13 17:23:59 +0200 | [diff] [blame] | 3306 | 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] | 3307 | 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] | 3308 | { |
William Lallemand | c940207 | 2019-05-15 15:33:54 +0200 | [diff] [blame] | 3309 | SSL_CTX *ctx; |
William Lallemand | c940207 | 2019-05-15 15:33:54 +0200 | [diff] [blame] | 3310 | int i; |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 3311 | int order = 0; |
| 3312 | X509_NAME *xname; |
| 3313 | char *str; |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 3314 | EVP_PKEY *pkey; |
Emmanuel Hocdet | ddc090b | 2017-10-27 18:43:29 +0200 | [diff] [blame] | 3315 | struct pkey_info kinfo = { .sig = TLSEXT_signature_anonymous, .bits = 0 }; |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 3316 | #ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME |
| 3317 | STACK_OF(GENERAL_NAME) *names; |
| 3318 | #endif |
William Lallemand | 36b8463 | 2019-07-18 19:28:17 +0200 | [diff] [blame] | 3319 | struct cert_key_and_chain *ckch; |
William Lallemand | 614ca0d | 2019-10-07 13:52:11 +0200 | [diff] [blame] | 3320 | struct ckch_inst *ckch_inst = NULL; |
Emeric Brun | 054563d | 2019-10-17 13:16:58 +0200 | [diff] [blame] | 3321 | int errcode = 0; |
| 3322 | |
| 3323 | *ckchi = NULL; |
William Lallemand | a59191b | 2019-05-15 16:08:56 +0200 | [diff] [blame] | 3324 | |
William Lallemand | e3af8fb | 2019-10-08 11:36:53 +0200 | [diff] [blame] | 3325 | if (!ckchs || !ckchs->ckch) |
Emeric Brun | 054563d | 2019-10-17 13:16:58 +0200 | [diff] [blame] | 3326 | return ERR_FATAL; |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 3327 | |
William Lallemand | e3af8fb | 2019-10-08 11:36:53 +0200 | [diff] [blame] | 3328 | ckch = ckchs->ckch; |
William Lallemand | 36b8463 | 2019-07-18 19:28:17 +0200 | [diff] [blame] | 3329 | |
William Lallemand | c940207 | 2019-05-15 15:33:54 +0200 | [diff] [blame] | 3330 | ctx = SSL_CTX_new(SSLv23_server_method()); |
| 3331 | if (!ctx) { |
| 3332 | memprintf(err, "%sunable to allocate SSL context for cert '%s'.\n", |
| 3333 | err && *err ? *err : "", path); |
Emeric Brun | 054563d | 2019-10-17 13:16:58 +0200 | [diff] [blame] | 3334 | errcode |= ERR_ALERT | ERR_FATAL; |
| 3335 | goto error; |
William Lallemand | c940207 | 2019-05-15 15:33:54 +0200 | [diff] [blame] | 3336 | } |
| 3337 | |
Emeric Brun | a96b582 | 2019-10-17 13:25:14 +0200 | [diff] [blame] | 3338 | errcode |= ssl_sock_put_ckch_into_ctx(path, ckch, ctx, err); |
| 3339 | if (errcode & ERR_CODE) |
William Lallemand | 614ca0d | 2019-10-07 13:52:11 +0200 | [diff] [blame] | 3340 | goto error; |
William Lallemand | 614ca0d | 2019-10-07 13:52:11 +0200 | [diff] [blame] | 3341 | |
| 3342 | ckch_inst = ckch_inst_new(); |
| 3343 | if (!ckch_inst) { |
| 3344 | memprintf(err, "%sunable to allocate SSL context for cert '%s'.\n", |
| 3345 | err && *err ? *err : "", path); |
Emeric Brun | 054563d | 2019-10-17 13:16:58 +0200 | [diff] [blame] | 3346 | errcode |= ERR_ALERT | ERR_FATAL; |
William Lallemand | d919937 | 2019-10-04 15:37:05 +0200 | [diff] [blame] | 3347 | goto error; |
William Lallemand | c940207 | 2019-05-15 15:33:54 +0200 | [diff] [blame] | 3348 | } |
| 3349 | |
William Lallemand | 36b8463 | 2019-07-18 19:28:17 +0200 | [diff] [blame] | 3350 | pkey = X509_get_pubkey(ckch->cert); |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 3351 | if (pkey) { |
Emmanuel Hocdet | ddc090b | 2017-10-27 18:43:29 +0200 | [diff] [blame] | 3352 | kinfo.bits = EVP_PKEY_bits(pkey); |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 3353 | switch(EVP_PKEY_base_id(pkey)) { |
| 3354 | case EVP_PKEY_RSA: |
Emmanuel Hocdet | ddc090b | 2017-10-27 18:43:29 +0200 | [diff] [blame] | 3355 | kinfo.sig = TLSEXT_signature_rsa; |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 3356 | break; |
| 3357 | case EVP_PKEY_EC: |
Emmanuel Hocdet | ddc090b | 2017-10-27 18:43:29 +0200 | [diff] [blame] | 3358 | kinfo.sig = TLSEXT_signature_ecdsa; |
| 3359 | break; |
| 3360 | case EVP_PKEY_DSA: |
| 3361 | kinfo.sig = TLSEXT_signature_dsa; |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 3362 | break; |
| 3363 | } |
| 3364 | EVP_PKEY_free(pkey); |
| 3365 | } |
| 3366 | |
Emeric Brun | 50bcecc | 2013-04-22 13:05:23 +0200 | [diff] [blame] | 3367 | if (fcount) { |
William Lallemand | fe49bb3 | 2019-10-03 23:46:33 +0200 | [diff] [blame] | 3368 | while (fcount--) { |
William Lallemand | 1d29c74 | 2019-10-04 00:53:29 +0200 | [diff] [blame] | 3369 | 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] | 3370 | if (order < 0) { |
| 3371 | memprintf(err, "%sunable to create a sni context.\n", err && *err ? *err : ""); |
Emeric Brun | 054563d | 2019-10-17 13:16:58 +0200 | [diff] [blame] | 3372 | errcode |= ERR_ALERT | ERR_FATAL; |
William Lallemand | d919937 | 2019-10-04 15:37:05 +0200 | [diff] [blame] | 3373 | goto error; |
William Lallemand | fe49bb3 | 2019-10-03 23:46:33 +0200 | [diff] [blame] | 3374 | } |
| 3375 | } |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 3376 | } |
| 3377 | else { |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 3378 | #ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME |
William Lallemand | 36b8463 | 2019-07-18 19:28:17 +0200 | [diff] [blame] | 3379 | 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] | 3380 | if (names) { |
| 3381 | for (i = 0; i < sk_GENERAL_NAME_num(names); i++) { |
| 3382 | GENERAL_NAME *name = sk_GENERAL_NAME_value(names, i); |
| 3383 | if (name->type == GEN_DNS) { |
| 3384 | if (ASN1_STRING_to_UTF8((unsigned char **)&str, name->d.dNSName) >= 0) { |
William Lallemand | 1d29c74 | 2019-10-04 00:53:29 +0200 | [diff] [blame] | 3385 | 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] | 3386 | OPENSSL_free(str); |
William Lallemand | fe49bb3 | 2019-10-03 23:46:33 +0200 | [diff] [blame] | 3387 | if (order < 0) { |
| 3388 | memprintf(err, "%sunable to create a sni context.\n", err && *err ? *err : ""); |
Emeric Brun | 054563d | 2019-10-17 13:16:58 +0200 | [diff] [blame] | 3389 | errcode |= ERR_ALERT | ERR_FATAL; |
William Lallemand | d919937 | 2019-10-04 15:37:05 +0200 | [diff] [blame] | 3390 | goto error; |
William Lallemand | fe49bb3 | 2019-10-03 23:46:33 +0200 | [diff] [blame] | 3391 | } |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 3392 | } |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 3393 | } |
| 3394 | } |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 3395 | sk_GENERAL_NAME_pop_free(names, GENERAL_NAME_free); |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 3396 | } |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 3397 | #endif /* SSL_CTRL_SET_TLSEXT_HOSTNAME */ |
William Lallemand | 36b8463 | 2019-07-18 19:28:17 +0200 | [diff] [blame] | 3398 | xname = X509_get_subject_name(ckch->cert); |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 3399 | i = -1; |
| 3400 | while ((i = X509_NAME_get_index_by_NID(xname, NID_commonName, i)) != -1) { |
| 3401 | X509_NAME_ENTRY *entry = X509_NAME_get_entry(xname, i); |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 3402 | ASN1_STRING *value; |
| 3403 | |
| 3404 | value = X509_NAME_ENTRY_get_data(entry); |
| 3405 | if (ASN1_STRING_to_UTF8((unsigned char **)&str, value) >= 0) { |
William Lallemand | 1d29c74 | 2019-10-04 00:53:29 +0200 | [diff] [blame] | 3406 | 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] | 3407 | OPENSSL_free(str); |
William Lallemand | fe49bb3 | 2019-10-03 23:46:33 +0200 | [diff] [blame] | 3408 | if (order < 0) { |
| 3409 | memprintf(err, "%sunable to create a sni context.\n", err && *err ? *err : ""); |
Emeric Brun | 054563d | 2019-10-17 13:16:58 +0200 | [diff] [blame] | 3410 | errcode |= ERR_ALERT | ERR_FATAL; |
William Lallemand | d919937 | 2019-10-04 15:37:05 +0200 | [diff] [blame] | 3411 | goto error; |
William Lallemand | fe49bb3 | 2019-10-03 23:46:33 +0200 | [diff] [blame] | 3412 | } |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 3413 | } |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 3414 | } |
| 3415 | } |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 3416 | /* we must not free the SSL_CTX anymore below, since it's already in |
| 3417 | * the tree, so it will be discovered and cleaned in time. |
| 3418 | */ |
Emeric Brun | a4bcd9a | 2012-09-20 16:19:02 +0200 | [diff] [blame] | 3419 | |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 3420 | #ifndef SSL_CTRL_SET_TLSEXT_HOSTNAME |
Willy Tarreau | 2a65ff0 | 2012-09-13 17:54:29 +0200 | [diff] [blame] | 3421 | if (bind_conf->default_ctx) { |
Willy Tarreau | eb6cead | 2012-09-20 19:43:14 +0200 | [diff] [blame] | 3422 | memprintf(err, "%sthis version of openssl cannot load multiple SSL certificates.\n", |
| 3423 | err && *err ? *err : ""); |
Emeric Brun | 054563d | 2019-10-17 13:16:58 +0200 | [diff] [blame] | 3424 | errcode |= ERR_ALERT | ERR_FATAL; |
William Lallemand | d919937 | 2019-10-04 15:37:05 +0200 | [diff] [blame] | 3425 | goto error; |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 3426 | } |
| 3427 | #endif |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 3428 | if (!bind_conf->default_ctx) { |
Willy Tarreau | 2a65ff0 | 2012-09-13 17:54:29 +0200 | [diff] [blame] | 3429 | bind_conf->default_ctx = ctx; |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 3430 | bind_conf->default_ssl_conf = ssl_conf; |
William Lallemand | 21724f0 | 2019-11-04 17:56:13 +0100 | [diff] [blame] | 3431 | ckch_inst->is_default = 1; |
William Lallemand | 02e19a5 | 2020-04-08 16:11:26 +0200 | [diff] [blame] | 3432 | SSL_CTX_up_ref(ctx); |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 3433 | } |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 3434 | |
Remi Tricot-Le Breton | 8218aed | 2021-03-17 14:56:54 +0100 | [diff] [blame] | 3435 | /* Always keep a reference to the newly constructed SSL_CTX in the |
| 3436 | * instance. This way if the instance has no SNIs, the SSL_CTX will |
| 3437 | * still be linked. */ |
| 3438 | SSL_CTX_up_ref(ctx); |
| 3439 | ckch_inst->ctx = ctx; |
| 3440 | |
William Lallemand | 9117de9 | 2019-10-04 00:29:42 +0200 | [diff] [blame] | 3441 | /* everything succeed, the ckch instance can be used */ |
| 3442 | ckch_inst->bind_conf = bind_conf; |
William Lallemand | 150bfa8 | 2019-09-19 17:12:49 +0200 | [diff] [blame] | 3443 | ckch_inst->ssl_conf = ssl_conf; |
William Lallemand | cfca142 | 2020-03-05 10:17:47 +0100 | [diff] [blame] | 3444 | ckch_inst->ckch_store = ckchs; |
William Lallemand | 9117de9 | 2019-10-04 00:29:42 +0200 | [diff] [blame] | 3445 | |
William Lallemand | 02e19a5 | 2020-04-08 16:11:26 +0200 | [diff] [blame] | 3446 | SSL_CTX_free(ctx); /* we need to free the ctx since we incremented the refcount where it's used */ |
| 3447 | |
Emeric Brun | 054563d | 2019-10-17 13:16:58 +0200 | [diff] [blame] | 3448 | *ckchi = ckch_inst; |
| 3449 | return errcode; |
William Lallemand | d919937 | 2019-10-04 15:37:05 +0200 | [diff] [blame] | 3450 | |
| 3451 | error: |
| 3452 | /* free the allocated sni_ctxs */ |
William Lallemand | 614ca0d | 2019-10-07 13:52:11 +0200 | [diff] [blame] | 3453 | if (ckch_inst) { |
William Lallemand | 02e19a5 | 2020-04-08 16:11:26 +0200 | [diff] [blame] | 3454 | if (ckch_inst->is_default) |
| 3455 | SSL_CTX_free(ctx); |
| 3456 | |
William Lallemand | d9d5d1b | 2020-04-09 16:31:05 +0200 | [diff] [blame] | 3457 | ckch_inst_free(ckch_inst); |
William Lallemand | 614ca0d | 2019-10-07 13:52:11 +0200 | [diff] [blame] | 3458 | ckch_inst = NULL; |
William Lallemand | d919937 | 2019-10-04 15:37:05 +0200 | [diff] [blame] | 3459 | } |
William Lallemand | d919937 | 2019-10-04 15:37:05 +0200 | [diff] [blame] | 3460 | SSL_CTX_free(ctx); |
| 3461 | |
Emeric Brun | 054563d | 2019-10-17 13:16:58 +0200 | [diff] [blame] | 3462 | return errcode; |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 3463 | } |
| 3464 | |
Remi Tricot-Le Breton | d817dc7 | 2021-01-25 17:19:43 +0100 | [diff] [blame] | 3465 | |
| 3466 | /* |
| 3467 | * This function allocate a ckch_inst that will be used on the backend side |
| 3468 | * (server line) |
| 3469 | * |
| 3470 | * Returns a bitfield containing the flags: |
| 3471 | * ERR_FATAL in any fatal error case |
| 3472 | * ERR_ALERT if the reason of the error is available in err |
| 3473 | * ERR_WARN if a warning is available into err |
| 3474 | */ |
| 3475 | 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] | 3476 | struct ckch_inst **ckchi, char **err) |
Remi Tricot-Le Breton | d817dc7 | 2021-01-25 17:19:43 +0100 | [diff] [blame] | 3477 | { |
| 3478 | SSL_CTX *ctx; |
| 3479 | struct cert_key_and_chain *ckch; |
| 3480 | struct ckch_inst *ckch_inst = NULL; |
| 3481 | int errcode = 0; |
| 3482 | |
| 3483 | *ckchi = NULL; |
| 3484 | |
| 3485 | if (!ckchs || !ckchs->ckch) |
| 3486 | return ERR_FATAL; |
| 3487 | |
| 3488 | ckch = ckchs->ckch; |
| 3489 | |
| 3490 | ctx = SSL_CTX_new(SSLv23_client_method()); |
| 3491 | if (!ctx) { |
| 3492 | memprintf(err, "%sunable to allocate SSL context for cert '%s'.\n", |
| 3493 | err && *err ? *err : "", path); |
| 3494 | errcode |= ERR_ALERT | ERR_FATAL; |
| 3495 | goto error; |
| 3496 | } |
| 3497 | |
Remi Tricot-Le Breton | d817dc7 | 2021-01-25 17:19:43 +0100 | [diff] [blame] | 3498 | errcode |= ssl_sock_put_srv_ckch_into_ctx(path, ckch, ctx, err); |
| 3499 | if (errcode & ERR_CODE) |
| 3500 | goto error; |
| 3501 | |
| 3502 | ckch_inst = ckch_inst_new(); |
| 3503 | if (!ckch_inst) { |
| 3504 | memprintf(err, "%sunable to allocate SSL context for cert '%s'.\n", |
| 3505 | err && *err ? *err : "", path); |
| 3506 | errcode |= ERR_ALERT | ERR_FATAL; |
| 3507 | goto error; |
| 3508 | } |
| 3509 | |
Remi Tricot-Le Breton | d817dc7 | 2021-01-25 17:19:43 +0100 | [diff] [blame] | 3510 | /* everything succeed, the ckch instance can be used */ |
| 3511 | ckch_inst->bind_conf = NULL; |
| 3512 | ckch_inst->ssl_conf = NULL; |
| 3513 | ckch_inst->ckch_store = ckchs; |
William Lallemand | 795bd9b | 2021-01-26 11:27:42 +0100 | [diff] [blame] | 3514 | ckch_inst->ctx = ctx; |
William Lallemand | db26e2b | 2021-01-26 12:01:46 +0100 | [diff] [blame] | 3515 | ckch_inst->is_server_instance = 1; |
Remi Tricot-Le Breton | d817dc7 | 2021-01-25 17:19:43 +0100 | [diff] [blame] | 3516 | |
| 3517 | *ckchi = ckch_inst; |
| 3518 | return errcode; |
| 3519 | |
| 3520 | error: |
Remi Tricot-Le Breton | d817dc7 | 2021-01-25 17:19:43 +0100 | [diff] [blame] | 3521 | SSL_CTX_free(ctx); |
| 3522 | |
| 3523 | return errcode; |
| 3524 | } |
| 3525 | |
Willy Tarreau | 8c5414a | 2019-10-16 17:06:25 +0200 | [diff] [blame] | 3526 | /* Returns a set of ERR_* flags possibly with an error in <err>. */ |
William Lallemand | 614ca0d | 2019-10-07 13:52:11 +0200 | [diff] [blame] | 3527 | static int ssl_sock_load_ckchs(const char *path, struct ckch_store *ckchs, |
| 3528 | struct bind_conf *bind_conf, struct ssl_bind_conf *ssl_conf, |
William Lallemand | 24bde43 | 2020-03-09 16:48:43 +0100 | [diff] [blame] | 3529 | char **sni_filter, int fcount, struct ckch_inst **ckch_inst, char **err) |
William Lallemand | 614ca0d | 2019-10-07 13:52:11 +0200 | [diff] [blame] | 3530 | { |
Emeric Brun | 054563d | 2019-10-17 13:16:58 +0200 | [diff] [blame] | 3531 | int errcode = 0; |
William Lallemand | 614ca0d | 2019-10-07 13:52:11 +0200 | [diff] [blame] | 3532 | |
| 3533 | /* we found the ckchs in the tree, we can use it directly */ |
William Lallemand | e7eb1fe | 2020-09-16 16:17:51 +0200 | [diff] [blame] | 3534 | 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] | 3535 | |
Emeric Brun | 054563d | 2019-10-17 13:16:58 +0200 | [diff] [blame] | 3536 | if (errcode & ERR_CODE) |
| 3537 | return errcode; |
William Lallemand | 614ca0d | 2019-10-07 13:52:11 +0200 | [diff] [blame] | 3538 | |
William Lallemand | 24bde43 | 2020-03-09 16:48:43 +0100 | [diff] [blame] | 3539 | ssl_sock_load_cert_sni(*ckch_inst, bind_conf); |
William Lallemand | 614ca0d | 2019-10-07 13:52:11 +0200 | [diff] [blame] | 3540 | |
| 3541 | /* succeed, add the instance to the ckch_store's list of instance */ |
Willy Tarreau | 2b71810 | 2021-04-21 07:32:39 +0200 | [diff] [blame] | 3542 | LIST_APPEND(&ckchs->ckch_inst, &((*ckch_inst)->by_ckchs)); |
Emeric Brun | 054563d | 2019-10-17 13:16:58 +0200 | [diff] [blame] | 3543 | return errcode; |
William Lallemand | 614ca0d | 2019-10-07 13:52:11 +0200 | [diff] [blame] | 3544 | } |
| 3545 | |
William Lallemand | db26e2b | 2021-01-26 12:01:46 +0100 | [diff] [blame] | 3546 | /* This function generates a <struct ckch_inst *> for a <struct server *>, and |
| 3547 | * fill the SSL_CTX of the server. |
| 3548 | * |
| 3549 | * 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] | 3550 | 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] | 3551 | struct server *server, struct ckch_inst **ckch_inst, char **err) |
Remi Tricot-Le Breton | d817dc7 | 2021-01-25 17:19:43 +0100 | [diff] [blame] | 3552 | { |
| 3553 | int errcode = 0; |
| 3554 | |
| 3555 | /* we found the ckchs in the tree, we can use it directly */ |
William Lallemand | 795bd9b | 2021-01-26 11:27:42 +0100 | [diff] [blame] | 3556 | 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] | 3557 | |
| 3558 | if (errcode & ERR_CODE) |
| 3559 | return errcode; |
| 3560 | |
William Lallemand | db26e2b | 2021-01-26 12:01:46 +0100 | [diff] [blame] | 3561 | (*ckch_inst)->server = server; |
| 3562 | /* Keep the reference to the SSL_CTX in the server. */ |
| 3563 | SSL_CTX_up_ref((*ckch_inst)->ctx); |
| 3564 | server->ssl_ctx.ctx = (*ckch_inst)->ctx; |
Remi Tricot-Le Breton | d817dc7 | 2021-01-25 17:19:43 +0100 | [diff] [blame] | 3565 | /* succeed, add the instance to the ckch_store's list of instance */ |
Willy Tarreau | 2b71810 | 2021-04-21 07:32:39 +0200 | [diff] [blame] | 3566 | LIST_APPEND(&ckchs->ckch_inst, &((*ckch_inst)->by_ckchs)); |
Remi Tricot-Le Breton | d817dc7 | 2021-01-25 17:19:43 +0100 | [diff] [blame] | 3567 | return errcode; |
| 3568 | } |
| 3569 | |
William Lallemand | 6be66ec | 2020-03-06 22:26:32 +0100 | [diff] [blame] | 3570 | |
William Lallemand | 4c68bba | 2020-03-30 18:45:10 +0200 | [diff] [blame] | 3571 | |
| 3572 | |
| 3573 | /* Make sure openssl opens /dev/urandom before the chroot. The work is only |
| 3574 | * done once. Zero is returned if the operation fails. No error is returned |
| 3575 | * if the random is said as not implemented, because we expect that openssl |
| 3576 | * will use another method once needed. |
| 3577 | */ |
| 3578 | static int ssl_initialize_random() |
| 3579 | { |
| 3580 | unsigned char random; |
| 3581 | static int random_initialized = 0; |
| 3582 | |
| 3583 | if (!random_initialized && RAND_bytes(&random, 1) != 0) |
| 3584 | random_initialized = 1; |
| 3585 | |
| 3586 | return random_initialized; |
| 3587 | } |
| 3588 | |
William Lallemand | 2954c47 | 2020-03-06 21:54:13 +0100 | [diff] [blame] | 3589 | /* Load a crt-list file, this is done in 2 parts: |
| 3590 | * - store the content of the file in a crtlist structure with crtlist_entry structures |
| 3591 | * - generate the instances by iterating on entries in the crtlist struct |
| 3592 | * |
| 3593 | * Nothing is locked there, this function is used in the configuration parser. |
| 3594 | * |
| 3595 | * Returns a set of ERR_* flags possibly with an error in <err>. |
| 3596 | */ |
William Lallemand | 6be66ec | 2020-03-06 22:26:32 +0100 | [diff] [blame] | 3597 | 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] | 3598 | { |
| 3599 | struct crtlist *crtlist = NULL; |
| 3600 | struct ebmb_node *eb; |
William Lallemand | 4939831 | 2020-03-30 17:01:33 +0200 | [diff] [blame] | 3601 | struct crtlist_entry *entry = NULL; |
William Lallemand | 79d31ec | 2020-03-25 15:10:49 +0100 | [diff] [blame] | 3602 | struct bind_conf_list *bind_conf_node = NULL; |
William Lallemand | 2954c47 | 2020-03-06 21:54:13 +0100 | [diff] [blame] | 3603 | int cfgerr = 0; |
William Lallemand | 41ca930 | 2020-04-08 13:15:18 +0200 | [diff] [blame] | 3604 | char *end; |
William Lallemand | 2954c47 | 2020-03-06 21:54:13 +0100 | [diff] [blame] | 3605 | |
William Lallemand | 79d31ec | 2020-03-25 15:10:49 +0100 | [diff] [blame] | 3606 | bind_conf_node = malloc(sizeof(*bind_conf_node)); |
| 3607 | if (!bind_conf_node) { |
| 3608 | memprintf(err, "%sCan't alloc memory!\n", err && *err ? *err : ""); |
| 3609 | cfgerr |= ERR_FATAL | ERR_ALERT; |
| 3610 | goto error; |
| 3611 | } |
| 3612 | bind_conf_node->next = NULL; |
| 3613 | bind_conf_node->bind_conf = bind_conf; |
| 3614 | |
William Lallemand | 41ca930 | 2020-04-08 13:15:18 +0200 | [diff] [blame] | 3615 | /* strip trailing slashes, including first one */ |
| 3616 | for (end = file + strlen(file) - 1; end >= file && *end == '/'; end--) |
| 3617 | *end = 0; |
| 3618 | |
William Lallemand | 2954c47 | 2020-03-06 21:54:13 +0100 | [diff] [blame] | 3619 | /* look for an existing crtlist or create one */ |
| 3620 | eb = ebst_lookup(&crtlists_tree, file); |
| 3621 | if (eb) { |
| 3622 | crtlist = ebmb_entry(eb, struct crtlist, node); |
| 3623 | } else { |
William Lallemand | 6be66ec | 2020-03-06 22:26:32 +0100 | [diff] [blame] | 3624 | /* load a crt-list OR a directory */ |
| 3625 | if (dir) |
| 3626 | cfgerr |= crtlist_load_cert_dir(file, bind_conf, &crtlist, err); |
| 3627 | else |
| 3628 | cfgerr |= crtlist_parse_file(file, bind_conf, curproxy, &crtlist, err); |
| 3629 | |
William Lallemand | 2954c47 | 2020-03-06 21:54:13 +0100 | [diff] [blame] | 3630 | if (!(cfgerr & ERR_CODE)) |
| 3631 | ebst_insert(&crtlists_tree, &crtlist->node); |
| 3632 | } |
| 3633 | |
| 3634 | if (cfgerr & ERR_CODE) { |
| 3635 | cfgerr |= ERR_FATAL | ERR_ALERT; |
| 3636 | goto error; |
| 3637 | } |
| 3638 | |
| 3639 | /* generates ckch instance from the crtlist_entry */ |
| 3640 | list_for_each_entry(entry, &crtlist->ord_entries, by_crtlist) { |
| 3641 | struct ckch_store *store; |
| 3642 | struct ckch_inst *ckch_inst = NULL; |
| 3643 | |
| 3644 | store = entry->node.key; |
| 3645 | cfgerr |= ssl_sock_load_ckchs(store->path, store, bind_conf, entry->ssl_conf, entry->filters, entry->fcount, &ckch_inst, err); |
| 3646 | if (cfgerr & ERR_CODE) { |
| 3647 | memprintf(err, "error processing line %d in file '%s' : %s", entry->linenum, file, *err); |
| 3648 | goto error; |
| 3649 | } |
Willy Tarreau | 2b71810 | 2021-04-21 07:32:39 +0200 | [diff] [blame] | 3650 | LIST_APPEND(&entry->ckch_inst, &ckch_inst->by_crtlist_entry); |
William Lallemand | caa1619 | 2020-04-08 16:29:15 +0200 | [diff] [blame] | 3651 | ckch_inst->crtlist_entry = entry; |
William Lallemand | 2954c47 | 2020-03-06 21:54:13 +0100 | [diff] [blame] | 3652 | } |
William Lallemand | 2954c47 | 2020-03-06 21:54:13 +0100 | [diff] [blame] | 3653 | |
William Lallemand | 79d31ec | 2020-03-25 15:10:49 +0100 | [diff] [blame] | 3654 | /* add the bind_conf to the list */ |
| 3655 | bind_conf_node->next = crtlist->bind_conf; |
| 3656 | crtlist->bind_conf = bind_conf_node; |
| 3657 | |
William Lallemand | 2954c47 | 2020-03-06 21:54:13 +0100 | [diff] [blame] | 3658 | return cfgerr; |
| 3659 | error: |
| 3660 | { |
William Lallemand | 4939831 | 2020-03-30 17:01:33 +0200 | [diff] [blame] | 3661 | struct crtlist_entry *lastentry; |
William Lallemand | 2954c47 | 2020-03-06 21:54:13 +0100 | [diff] [blame] | 3662 | struct ckch_inst *inst, *s_inst; |
| 3663 | |
William Lallemand | 4939831 | 2020-03-30 17:01:33 +0200 | [diff] [blame] | 3664 | lastentry = entry; /* which entry we tried to generate last */ |
| 3665 | if (lastentry) { |
| 3666 | list_for_each_entry(entry, &crtlist->ord_entries, by_crtlist) { |
| 3667 | if (entry == lastentry) /* last entry we tried to generate, no need to go further */ |
| 3668 | break; |
| 3669 | |
| 3670 | 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] | 3671 | |
William Lallemand | 4939831 | 2020-03-30 17:01:33 +0200 | [diff] [blame] | 3672 | /* this was not generated for this bind_conf, skip */ |
| 3673 | if (inst->bind_conf != bind_conf) |
| 3674 | continue; |
| 3675 | |
William Lallemand | d9d5d1b | 2020-04-09 16:31:05 +0200 | [diff] [blame] | 3676 | /* free the sni_ctx and instance */ |
| 3677 | ckch_inst_free(inst); |
William Lallemand | 4939831 | 2020-03-30 17:01:33 +0200 | [diff] [blame] | 3678 | } |
William Lallemand | 2954c47 | 2020-03-06 21:54:13 +0100 | [diff] [blame] | 3679 | } |
William Lallemand | 2954c47 | 2020-03-06 21:54:13 +0100 | [diff] [blame] | 3680 | } |
William Lallemand | 79d31ec | 2020-03-25 15:10:49 +0100 | [diff] [blame] | 3681 | free(bind_conf_node); |
William Lallemand | 2954c47 | 2020-03-06 21:54:13 +0100 | [diff] [blame] | 3682 | } |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 3683 | return cfgerr; |
| 3684 | } |
| 3685 | |
William Lallemand | 06b22a8 | 2020-03-16 14:45:55 +0100 | [diff] [blame] | 3686 | /* Returns a set of ERR_* flags possibly with an error in <err>. */ |
| 3687 | int ssl_sock_load_cert(char *path, struct bind_conf *bind_conf, char **err) |
| 3688 | { |
| 3689 | struct stat buf; |
William Lallemand | 06b22a8 | 2020-03-16 14:45:55 +0100 | [diff] [blame] | 3690 | int cfgerr = 0; |
| 3691 | struct ckch_store *ckchs; |
William Lallemand | 24bde43 | 2020-03-09 16:48:43 +0100 | [diff] [blame] | 3692 | struct ckch_inst *ckch_inst = NULL; |
William Lallemand | 06ce84a | 2020-11-20 15:36:13 +0100 | [diff] [blame] | 3693 | int found = 0; /* did we found a file to load ? */ |
William Lallemand | 06b22a8 | 2020-03-16 14:45:55 +0100 | [diff] [blame] | 3694 | |
| 3695 | if ((ckchs = ckchs_lookup(path))) { |
| 3696 | /* we found the ckchs in the tree, we can use it directly */ |
William Lallemand | 06ce84a | 2020-11-20 15:36:13 +0100 | [diff] [blame] | 3697 | cfgerr |= ssl_sock_load_ckchs(path, ckchs, bind_conf, NULL, NULL, 0, &ckch_inst, err); |
| 3698 | found++; |
| 3699 | } else if (stat(path, &buf) == 0) { |
| 3700 | found++; |
William Lallemand | 06b22a8 | 2020-03-16 14:45:55 +0100 | [diff] [blame] | 3701 | if (S_ISDIR(buf.st_mode) == 0) { |
William Lallemand | bd8e6ed | 2020-09-16 16:08:08 +0200 | [diff] [blame] | 3702 | ckchs = ckchs_load_cert_file(path, err); |
William Lallemand | 06b22a8 | 2020-03-16 14:45:55 +0100 | [diff] [blame] | 3703 | if (!ckchs) |
William Lallemand | 06ce84a | 2020-11-20 15:36:13 +0100 | [diff] [blame] | 3704 | cfgerr |= ERR_ALERT | ERR_FATAL; |
| 3705 | 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] | 3706 | } else { |
William Lallemand | 06ce84a | 2020-11-20 15:36:13 +0100 | [diff] [blame] | 3707 | 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] | 3708 | } |
| 3709 | } else { |
| 3710 | /* stat failed, could be a bundle */ |
| 3711 | if (global_ssl.extra_files & SSL_GF_BUNDLE) { |
William Lallemand | dfa93be | 2020-09-16 14:48:52 +0200 | [diff] [blame] | 3712 | char fp[MAXPATHLEN+1] = {0}; |
| 3713 | int n = 0; |
| 3714 | |
| 3715 | /* Load all possible certs and keys in separate ckch_store */ |
| 3716 | for (n = 0; n < SSL_SOCK_NUM_KEYTYPES; n++) { |
| 3717 | struct stat buf; |
| 3718 | int ret; |
| 3719 | |
| 3720 | ret = snprintf(fp, sizeof(fp), "%s.%s", path, SSL_SOCK_KEYTYPE_NAMES[n]); |
| 3721 | if (ret > sizeof(fp)) |
| 3722 | continue; |
| 3723 | |
| 3724 | if ((ckchs = ckchs_lookup(fp))) { |
| 3725 | 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] | 3726 | found++; |
William Lallemand | dfa93be | 2020-09-16 14:48:52 +0200 | [diff] [blame] | 3727 | } else { |
| 3728 | if (stat(fp, &buf) == 0) { |
William Lallemand | 06ce84a | 2020-11-20 15:36:13 +0100 | [diff] [blame] | 3729 | found++; |
William Lallemand | bd8e6ed | 2020-09-16 16:08:08 +0200 | [diff] [blame] | 3730 | ckchs = ckchs_load_cert_file(fp, err); |
William Lallemand | dfa93be | 2020-09-16 14:48:52 +0200 | [diff] [blame] | 3731 | if (!ckchs) |
William Lallemand | 06ce84a | 2020-11-20 15:36:13 +0100 | [diff] [blame] | 3732 | cfgerr |= ERR_ALERT | ERR_FATAL; |
William Lallemand | dfa93be | 2020-09-16 14:48:52 +0200 | [diff] [blame] | 3733 | cfgerr |= ssl_sock_load_ckchs(fp, ckchs, bind_conf, NULL, NULL, 0, &ckch_inst, err); |
| 3734 | } |
| 3735 | } |
| 3736 | } |
William Lallemand | b7fdfdf | 2020-12-04 15:45:02 +0100 | [diff] [blame] | 3737 | #if HA_OPENSSL_VERSION_NUMBER < 0x10101000L |
| 3738 | if (found) { |
| 3739 | memprintf(err, "%sCan't load '%s'. Loading a multi certificates bundle requires OpenSSL >= 1.1.1\n", |
| 3740 | err && *err ? *err : "", path); |
| 3741 | cfgerr |= ERR_ALERT | ERR_FATAL; |
| 3742 | } |
| 3743 | #endif |
William Lallemand | 06b22a8 | 2020-03-16 14:45:55 +0100 | [diff] [blame] | 3744 | } |
| 3745 | } |
William Lallemand | 06ce84a | 2020-11-20 15:36:13 +0100 | [diff] [blame] | 3746 | if (!found) { |
| 3747 | memprintf(err, "%sunable to stat SSL certificate from file '%s' : %s.\n", |
| 3748 | err && *err ? *err : "", path, strerror(errno)); |
| 3749 | cfgerr |= ERR_ALERT | ERR_FATAL; |
| 3750 | } |
William Lallemand | 06b22a8 | 2020-03-16 14:45:55 +0100 | [diff] [blame] | 3751 | |
| 3752 | return cfgerr; |
| 3753 | } |
| 3754 | |
Remi Tricot-Le Breton | d817dc7 | 2021-01-25 17:19:43 +0100 | [diff] [blame] | 3755 | |
| 3756 | /* Create a full ssl context and ckch instance that will be used for a specific |
| 3757 | * backend server (server configuration line). |
| 3758 | * Returns a set of ERR_* flags possibly with an error in <err>. |
| 3759 | */ |
| 3760 | int ssl_sock_load_srv_cert(char *path, struct server *server, char **err) |
| 3761 | { |
| 3762 | struct stat buf; |
| 3763 | int cfgerr = 0; |
| 3764 | struct ckch_store *ckchs; |
| 3765 | int found = 0; /* did we found a file to load ? */ |
| 3766 | |
| 3767 | if ((ckchs = ckchs_lookup(path))) { |
| 3768 | /* we found the ckchs in the tree, we can use it directly */ |
William Lallemand | db26e2b | 2021-01-26 12:01:46 +0100 | [diff] [blame] | 3769 | 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] | 3770 | found++; |
| 3771 | } else if (stat(path, &buf) == 0) { |
| 3772 | /* We do not manage directories on backend side. */ |
| 3773 | if (S_ISDIR(buf.st_mode) == 0) { |
| 3774 | ++found; |
| 3775 | ckchs = ckchs_load_cert_file(path, err); |
| 3776 | if (!ckchs) |
| 3777 | cfgerr |= ERR_ALERT | ERR_FATAL; |
William Lallemand | db26e2b | 2021-01-26 12:01:46 +0100 | [diff] [blame] | 3778 | 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] | 3779 | } |
| 3780 | } |
| 3781 | if (!found) { |
| 3782 | memprintf(err, "%sunable to stat SSL certificate from file '%s' : %s.\n", |
| 3783 | err && *err ? *err : "", path, strerror(errno)); |
| 3784 | cfgerr |= ERR_ALERT | ERR_FATAL; |
| 3785 | } |
| 3786 | |
| 3787 | return cfgerr; |
| 3788 | } |
| 3789 | |
Emmanuel Hocdet | f6b37c6 | 2017-03-06 15:34:44 +0100 | [diff] [blame] | 3790 | /* Create an initial CTX used to start the SSL connection before switchctx */ |
Emmanuel Hocdet | abd3233 | 2017-05-05 18:06:12 +0200 | [diff] [blame] | 3791 | static int |
Emmanuel Hocdet | f6b37c6 | 2017-03-06 15:34:44 +0100 | [diff] [blame] | 3792 | ssl_sock_initial_ctx(struct bind_conf *bind_conf) |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 3793 | { |
Emmanuel Hocdet | 4de1ff1 | 2017-03-03 12:21:32 +0100 | [diff] [blame] | 3794 | SSL_CTX *ctx = NULL; |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 3795 | long options = |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 3796 | SSL_OP_ALL | /* all known workarounds for bugs */ |
| 3797 | SSL_OP_NO_SSLv2 | |
| 3798 | SSL_OP_NO_COMPRESSION | |
Emeric Brun | a4bcd9a | 2012-09-20 16:19:02 +0200 | [diff] [blame] | 3799 | SSL_OP_SINGLE_DH_USE | |
Emeric Brun | 2b58d04 | 2012-09-20 17:10:03 +0200 | [diff] [blame] | 3800 | SSL_OP_SINGLE_ECDH_USE | |
Emeric Brun | 3c4bc6e | 2012-10-04 18:44:19 +0200 | [diff] [blame] | 3801 | SSL_OP_NO_SESSION_RESUMPTION_ON_RENEGOTIATION | |
Lukas Tribus | 926594f | 2018-05-18 17:55:57 +0200 | [diff] [blame] | 3802 | SSL_OP_PRIORITIZE_CHACHA | |
Emeric Brun | 3c4bc6e | 2012-10-04 18:44:19 +0200 | [diff] [blame] | 3803 | SSL_OP_CIPHER_SERVER_PREFERENCE; |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 3804 | long mode = |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 3805 | SSL_MODE_ENABLE_PARTIAL_WRITE | |
| 3806 | SSL_MODE_ACCEPT_MOVING_WRITE_BUFFER | |
Willy Tarreau | 396a186 | 2014-11-13 14:06:52 +0100 | [diff] [blame] | 3807 | SSL_MODE_RELEASE_BUFFERS | |
| 3808 | SSL_MODE_SMALL_BUFFERS; |
Emmanuel Hocdet | 4366476 | 2017-08-09 18:26:20 +0200 | [diff] [blame] | 3809 | 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] | 3810 | int i, min, max, hole; |
Emmanuel Hocdet | abd3233 | 2017-05-05 18:06:12 +0200 | [diff] [blame] | 3811 | int flags = MC_SSL_O_ALL; |
| 3812 | int cfgerr = 0; |
William Lallemand | 50df1cb | 2020-06-02 10:52:24 +0200 | [diff] [blame] | 3813 | const int default_min_ver = CONF_TLSV12; |
Emmanuel Hocdet | 4de1ff1 | 2017-03-03 12:21:32 +0100 | [diff] [blame] | 3814 | |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 3815 | ctx = SSL_CTX_new(SSLv23_server_method()); |
Emmanuel Hocdet | abd3233 | 2017-05-05 18:06:12 +0200 | [diff] [blame] | 3816 | bind_conf->initial_ctx = ctx; |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 3817 | |
Emmanuel Hocdet | abd3233 | 2017-05-05 18:06:12 +0200 | [diff] [blame] | 3818 | 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] | 3819 | ha_warning("Proxy '%s': no-sslv3/no-tlsv1x are ignored for bind '%s' at [%s:%d]. " |
| 3820 | "Use only 'ssl-min-ver' and 'ssl-max-ver' to fix.\n", |
| 3821 | 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] | 3822 | else |
| 3823 | flags = conf_ssl_methods->flags; |
| 3824 | |
Emmanuel Hocdet | bd695fe | 2017-05-15 15:53:41 +0200 | [diff] [blame] | 3825 | min = conf_ssl_methods->min; |
| 3826 | max = conf_ssl_methods->max; |
William Lallemand | 50df1cb | 2020-06-02 10:52:24 +0200 | [diff] [blame] | 3827 | |
| 3828 | /* default minimum is TLSV12, */ |
| 3829 | if (!min) { |
| 3830 | if (!max || (max >= default_min_ver)) { |
| 3831 | min = default_min_ver; |
| 3832 | } else { |
| 3833 | 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). " |
| 3834 | "Setting the ssl-min-ver to %s. Use 'ssl-min-ver' to fix this.\n", |
| 3835 | bind_conf->frontend->id, bind_conf->arg, bind_conf->file, bind_conf->line, methodVersions[default_min_ver].name, methodVersions[max].name); |
| 3836 | min = max; |
| 3837 | } |
| 3838 | } |
Emmanuel Hocdet | 4aa615f | 2017-05-18 12:33:19 +0200 | [diff] [blame] | 3839 | /* 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] | 3840 | if (min) |
| 3841 | flags |= (methodVersions[min].flag - 1); |
| 3842 | if (max) |
| 3843 | flags |= ~((methodVersions[max].flag << 1) - 1); |
Emmanuel Hocdet | 4aa615f | 2017-05-18 12:33:19 +0200 | [diff] [blame] | 3844 | /* find min, max and holes */ |
Emmanuel Hocdet | b4e9ba4 | 2017-03-30 19:25:07 +0200 | [diff] [blame] | 3845 | min = max = CONF_TLSV_NONE; |
| 3846 | hole = 0; |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 3847 | for (i = CONF_TLSV_MIN; i <= CONF_TLSV_MAX; i++) |
Emmanuel Hocdet | b4e9ba4 | 2017-03-30 19:25:07 +0200 | [diff] [blame] | 3848 | /* version is in openssl && version not disable in configuration */ |
Emmanuel Hocdet | abd3233 | 2017-05-05 18:06:12 +0200 | [diff] [blame] | 3849 | if (methodVersions[i].option && !(flags & methodVersions[i].flag)) { |
Emmanuel Hocdet | b4e9ba4 | 2017-03-30 19:25:07 +0200 | [diff] [blame] | 3850 | if (min) { |
| 3851 | if (hole) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 3852 | ha_warning("Proxy '%s': SSL/TLS versions range not contiguous for bind '%s' at [%s:%d]. " |
| 3853 | "Hole find for %s. Use only 'ssl-min-ver' and 'ssl-max-ver' to fix.\n", |
| 3854 | bind_conf->frontend->id, bind_conf->arg, bind_conf->file, bind_conf->line, |
| 3855 | methodVersions[hole].name); |
Emmanuel Hocdet | b4e9ba4 | 2017-03-30 19:25:07 +0200 | [diff] [blame] | 3856 | hole = 0; |
| 3857 | } |
| 3858 | max = i; |
| 3859 | } |
| 3860 | else { |
| 3861 | min = max = i; |
| 3862 | } |
| 3863 | } |
| 3864 | else { |
| 3865 | if (min) |
| 3866 | hole = i; |
Emmanuel Hocdet | b4e9ba4 | 2017-03-30 19:25:07 +0200 | [diff] [blame] | 3867 | } |
Emmanuel Hocdet | abd3233 | 2017-05-05 18:06:12 +0200 | [diff] [blame] | 3868 | if (!min) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 3869 | ha_alert("Proxy '%s': all SSL/TLS versions are disabled for bind '%s' at [%s:%d].\n", |
| 3870 | 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] | 3871 | cfgerr += 1; |
| 3872 | } |
Emmanuel Hocdet | df701a2 | 2017-05-18 12:46:50 +0200 | [diff] [blame] | 3873 | /* save real min/max in bind_conf */ |
| 3874 | conf_ssl_methods->min = min; |
| 3875 | conf_ssl_methods->max = max; |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 3876 | |
Willy Tarreau | 9a1ab08 | 2019-05-09 13:26:41 +0200 | [diff] [blame] | 3877 | #if (HA_OPENSSL_VERSION_NUMBER < 0x1010000fL) |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 3878 | /* 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] | 3879 | precautionary measure to avoid any surprise with older openssl version. */ |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 3880 | if (min == max) |
Emmanuel Hocdet | 4aa615f | 2017-05-18 12:33:19 +0200 | [diff] [blame] | 3881 | methodVersions[min].ctx_set_version(ctx, SET_SERVER); |
Emmanuel Hocdet | abd3233 | 2017-05-05 18:06:12 +0200 | [diff] [blame] | 3882 | else |
William Lallemand | d0712f3 | 2020-06-11 17:34:00 +0200 | [diff] [blame] | 3883 | for (i = CONF_TLSV_MIN; i <= CONF_TLSV_MAX; i++) { |
| 3884 | /* clear every version flags in case SSL_CTX_new() |
| 3885 | * returns an SSL_CTX with disabled versions */ |
| 3886 | SSL_CTX_clear_options(ctx, methodVersions[i].option); |
| 3887 | |
Emmanuel Hocdet | abd3233 | 2017-05-05 18:06:12 +0200 | [diff] [blame] | 3888 | if (flags & methodVersions[i].flag) |
| 3889 | options |= methodVersions[i].option; |
William Lallemand | d0712f3 | 2020-06-11 17:34:00 +0200 | [diff] [blame] | 3890 | |
| 3891 | } |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 3892 | #else /* openssl >= 1.1.0 */ |
Emmanuel Hocdet | b4e9ba4 | 2017-03-30 19:25:07 +0200 | [diff] [blame] | 3893 | /* 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] | 3894 | methodVersions[min].ctx_set_version(ctx, SET_MIN); |
| 3895 | methodVersions[max].ctx_set_version(ctx, SET_MAX); |
Emeric Brun | fa5c5c8 | 2017-04-28 16:19:51 +0200 | [diff] [blame] | 3896 | #endif |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 3897 | |
| 3898 | if (bind_conf->ssl_options & BC_SSL_O_NO_TLS_TICKETS) |
| 3899 | options |= SSL_OP_NO_TICKET; |
| 3900 | if (bind_conf->ssl_options & BC_SSL_O_PREF_CLIE_CIPH) |
| 3901 | options &= ~SSL_OP_CIPHER_SERVER_PREFERENCE; |
Dirkjan Bussink | 526894f | 2019-01-21 09:35:03 -0800 | [diff] [blame] | 3902 | |
| 3903 | #ifdef SSL_OP_NO_RENEGOTIATION |
| 3904 | options |= SSL_OP_NO_RENEGOTIATION; |
| 3905 | #endif |
| 3906 | |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 3907 | SSL_CTX_set_options(ctx, options); |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 3908 | |
Ilya Shipitsin | bdec3ba | 2020-11-14 01:56:34 +0500 | [diff] [blame] | 3909 | #ifdef SSL_MODE_ASYNC |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 3910 | if (global_ssl.async) |
| 3911 | mode |= SSL_MODE_ASYNC; |
| 3912 | #endif |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 3913 | SSL_CTX_set_mode(ctx, mode); |
Emmanuel Hocdet | 4de1ff1 | 2017-03-03 12:21:32 +0100 | [diff] [blame] | 3914 | if (global_ssl.life_time) |
| 3915 | SSL_CTX_set_timeout(ctx, global_ssl.life_time); |
Emmanuel Hocdet | f6b37c6 | 2017-03-06 15:34:44 +0100 | [diff] [blame] | 3916 | |
| 3917 | #ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME |
| 3918 | #ifdef OPENSSL_IS_BORINGSSL |
| 3919 | SSL_CTX_set_select_certificate_cb(ctx, ssl_sock_switchctx_cbk); |
| 3920 | SSL_CTX_set_tlsext_servername_callback(ctx, ssl_sock_switchctx_err_cbk); |
Ilya Shipitsin | e9ff899 | 2020-01-19 12:20:14 +0500 | [diff] [blame] | 3921 | #elif defined(SSL_OP_NO_ANTI_REPLAY) |
Olivier Houchard | 545989f | 2019-12-17 15:39:54 +0100 | [diff] [blame] | 3922 | if (bind_conf->ssl_conf.early_data) |
Olivier Houchard | 51088ce | 2019-01-02 18:46:41 +0100 | [diff] [blame] | 3923 | SSL_CTX_set_options(ctx, SSL_OP_NO_ANTI_REPLAY); |
Emmanuel Hocdet | 84e417d | 2017-08-16 11:33:17 +0200 | [diff] [blame] | 3924 | SSL_CTX_set_client_hello_cb(ctx, ssl_sock_switchctx_cbk, NULL); |
| 3925 | SSL_CTX_set_tlsext_servername_callback(ctx, ssl_sock_switchctx_err_cbk); |
Emmanuel Hocdet | f6b37c6 | 2017-03-06 15:34:44 +0100 | [diff] [blame] | 3926 | #else |
| 3927 | SSL_CTX_set_tlsext_servername_callback(ctx, ssl_sock_switchctx_cbk); |
Emmanuel Hocdet | f6b37c6 | 2017-03-06 15:34:44 +0100 | [diff] [blame] | 3928 | #endif |
Emmanuel Hocdet | 253c62b | 2017-08-14 11:01:25 +0200 | [diff] [blame] | 3929 | SSL_CTX_set_tlsext_servername_arg(ctx, bind_conf); |
Emmanuel Hocdet | f6b37c6 | 2017-03-06 15:34:44 +0100 | [diff] [blame] | 3930 | #endif |
Emmanuel Hocdet | abd3233 | 2017-05-05 18:06:12 +0200 | [diff] [blame] | 3931 | return cfgerr; |
Emmanuel Hocdet | 4de1ff1 | 2017-03-03 12:21:32 +0100 | [diff] [blame] | 3932 | } |
| 3933 | |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 3934 | |
| 3935 | static inline void sh_ssl_sess_free_blocks(struct shared_block *first, struct shared_block *block) |
| 3936 | { |
| 3937 | if (first == block) { |
| 3938 | struct sh_ssl_sess_hdr *sh_ssl_sess = (struct sh_ssl_sess_hdr *)first->data; |
| 3939 | if (first->len > 0) |
| 3940 | sh_ssl_sess_tree_delete(sh_ssl_sess); |
| 3941 | } |
| 3942 | } |
| 3943 | |
| 3944 | /* return first block from sh_ssl_sess */ |
| 3945 | static inline struct shared_block *sh_ssl_sess_first_block(struct sh_ssl_sess_hdr *sh_ssl_sess) |
| 3946 | { |
| 3947 | return (struct shared_block *)((unsigned char *)sh_ssl_sess - ((struct shared_block *)NULL)->data); |
| 3948 | |
| 3949 | } |
| 3950 | |
| 3951 | /* store a session into the cache |
| 3952 | * s_id : session id padded with zero to SSL_MAX_SSL_SESSION_ID_LENGTH |
| 3953 | * data: asn1 encoded session |
| 3954 | * data_len: asn1 encoded session length |
| 3955 | * Returns 1 id session was stored (else 0) |
| 3956 | */ |
| 3957 | static int sh_ssl_sess_store(unsigned char *s_id, unsigned char *data, int data_len) |
| 3958 | { |
| 3959 | struct shared_block *first; |
| 3960 | struct sh_ssl_sess_hdr *sh_ssl_sess, *oldsh_ssl_sess; |
| 3961 | |
Frédéric Lécaille | 0bec807 | 2018-10-22 17:55:57 +0200 | [diff] [blame] | 3962 | 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] | 3963 | if (!first) { |
| 3964 | /* Could not retrieve enough free blocks to store that session */ |
| 3965 | return 0; |
| 3966 | } |
| 3967 | |
| 3968 | /* STORE the key in the first elem */ |
| 3969 | sh_ssl_sess = (struct sh_ssl_sess_hdr *)first->data; |
| 3970 | memcpy(sh_ssl_sess->key_data, s_id, SSL_MAX_SSL_SESSION_ID_LENGTH); |
| 3971 | first->len = sizeof(struct sh_ssl_sess_hdr); |
| 3972 | |
| 3973 | /* it returns the already existing node |
| 3974 | or current node if none, never returns null */ |
| 3975 | oldsh_ssl_sess = sh_ssl_sess_tree_insert(sh_ssl_sess); |
| 3976 | if (oldsh_ssl_sess != sh_ssl_sess) { |
| 3977 | /* NOTE: Row couldn't be in use because we lock read & write function */ |
| 3978 | /* release the reserved row */ |
| 3979 | shctx_row_dec_hot(ssl_shctx, first); |
| 3980 | /* replace the previous session already in the tree */ |
| 3981 | sh_ssl_sess = oldsh_ssl_sess; |
| 3982 | /* ignore the previous session data, only use the header */ |
| 3983 | first = sh_ssl_sess_first_block(sh_ssl_sess); |
| 3984 | shctx_row_inc_hot(ssl_shctx, first); |
| 3985 | first->len = sizeof(struct sh_ssl_sess_hdr); |
| 3986 | } |
| 3987 | |
Frédéric Lécaille | 0bec807 | 2018-10-22 17:55:57 +0200 | [diff] [blame] | 3988 | 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] | 3989 | shctx_row_dec_hot(ssl_shctx, first); |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 3990 | return 0; |
William Lallemand | 99b90af | 2018-01-03 19:15:51 +0100 | [diff] [blame] | 3991 | } |
| 3992 | |
| 3993 | shctx_row_dec_hot(ssl_shctx, first); |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 3994 | |
| 3995 | return 1; |
| 3996 | } |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 3997 | |
Olivier Houchard | bd84ac8 | 2017-11-03 13:43:35 +0100 | [diff] [blame] | 3998 | /* SSL callback used when a new session is created while connecting to a server */ |
| 3999 | static int ssl_sess_new_srv_cb(SSL *ssl, SSL_SESSION *sess) |
| 4000 | { |
Thierry FOURNIER | 28962c9 | 2018-06-17 21:37:05 +0200 | [diff] [blame] | 4001 | struct connection *conn = SSL_get_ex_data(ssl, ssl_app_data_index); |
Olivier Houchard | e6060c5 | 2017-11-16 17:42:52 +0100 | [diff] [blame] | 4002 | struct server *s; |
Olivier Houchard | bd84ac8 | 2017-11-03 13:43:35 +0100 | [diff] [blame] | 4003 | |
Willy Tarreau | 07d94e4 | 2018-09-20 10:57:52 +0200 | [diff] [blame] | 4004 | s = __objt_server(conn->target); |
Olivier Houchard | bd84ac8 | 2017-11-03 13:43:35 +0100 | [diff] [blame] | 4005 | |
William Lallemand | 3ce6eed | 2021-02-08 10:43:44 +0100 | [diff] [blame] | 4006 | /* RWLOCK: only read lock the SSL cache even when writing in it because there is |
| 4007 | * one cache per thread, it only prevents to flush it from the CLI in |
| 4008 | * another thread */ |
| 4009 | |
Olivier Houchard | e6060c5 | 2017-11-16 17:42:52 +0100 | [diff] [blame] | 4010 | if (!(s->ssl_ctx.options & SRV_SSL_O_NO_REUSE)) { |
| 4011 | int len; |
| 4012 | unsigned char *ptr; |
William Lallemand | c78ac5a | 2021-11-17 02:59:21 +0100 | [diff] [blame] | 4013 | const char *sni; |
Olivier Houchard | bd84ac8 | 2017-11-03 13:43:35 +0100 | [diff] [blame] | 4014 | |
Olivier Houchard | e6060c5 | 2017-11-16 17:42:52 +0100 | [diff] [blame] | 4015 | len = i2d_SSL_SESSION(sess, NULL); |
William Lallemand | c78ac5a | 2021-11-17 02:59:21 +0100 | [diff] [blame] | 4016 | sni = SSL_get_servername(ssl, TLSEXT_NAMETYPE_host_name); |
William Lallemand | 3ce6eed | 2021-02-08 10:43:44 +0100 | [diff] [blame] | 4017 | HA_RWLOCK_RDLOCK(SSL_SERVER_LOCK, &s->ssl_ctx.lock); |
Olivier Houchard | e6060c5 | 2017-11-16 17:42:52 +0100 | [diff] [blame] | 4018 | if (s->ssl_ctx.reused_sess[tid].ptr && s->ssl_ctx.reused_sess[tid].allocated_size >= len) { |
| 4019 | ptr = s->ssl_ctx.reused_sess[tid].ptr; |
| 4020 | } else { |
Willy Tarreau | 3bda3f4 | 2021-02-26 21:05:08 +0100 | [diff] [blame] | 4021 | ptr = realloc(s->ssl_ctx.reused_sess[tid].ptr, len); |
| 4022 | s->ssl_ctx.reused_sess[tid].ptr = ptr; |
Olivier Houchard | e6060c5 | 2017-11-16 17:42:52 +0100 | [diff] [blame] | 4023 | s->ssl_ctx.reused_sess[tid].allocated_size = len; |
| 4024 | } |
| 4025 | if (s->ssl_ctx.reused_sess[tid].ptr) { |
| 4026 | s->ssl_ctx.reused_sess[tid].size = i2d_SSL_SESSION(sess, |
| 4027 | &ptr); |
| 4028 | } |
William Lallemand | c78ac5a | 2021-11-17 02:59:21 +0100 | [diff] [blame] | 4029 | |
| 4030 | if (s->ssl_ctx.reused_sess[tid].sni) { |
| 4031 | /* if the new sni is empty or isn' t the same as the old one */ |
| 4032 | if ((!sni) || strcmp(s->ssl_ctx.reused_sess[tid].sni, sni) != 0) { |
| 4033 | ha_free(&s->ssl_ctx.reused_sess[tid].sni); |
| 4034 | if (sni) |
| 4035 | s->ssl_ctx.reused_sess[tid].sni = strdup(sni); |
| 4036 | } |
| 4037 | } else if (sni) { |
| 4038 | /* if there wasn't an old sni but there is a new one */ |
| 4039 | s->ssl_ctx.reused_sess[tid].sni = strdup(sni); |
| 4040 | } |
William Lallemand | 3ce6eed | 2021-02-08 10:43:44 +0100 | [diff] [blame] | 4041 | HA_RWLOCK_RDUNLOCK(SSL_SERVER_LOCK, &s->ssl_ctx.lock); |
Olivier Houchard | e6060c5 | 2017-11-16 17:42:52 +0100 | [diff] [blame] | 4042 | } else { |
William Lallemand | 3ce6eed | 2021-02-08 10:43:44 +0100 | [diff] [blame] | 4043 | HA_RWLOCK_RDLOCK(SSL_SERVER_LOCK, &s->ssl_ctx.lock); |
Willy Tarreau | 61cfdf4 | 2021-02-20 10:46:51 +0100 | [diff] [blame] | 4044 | ha_free(&s->ssl_ctx.reused_sess[tid].ptr); |
William Lallemand | 3ce6eed | 2021-02-08 10:43:44 +0100 | [diff] [blame] | 4045 | HA_RWLOCK_RDUNLOCK(SSL_SERVER_LOCK, &s->ssl_ctx.lock); |
Olivier Houchard | e6060c5 | 2017-11-16 17:42:52 +0100 | [diff] [blame] | 4046 | } |
| 4047 | |
| 4048 | return 0; |
Olivier Houchard | bd84ac8 | 2017-11-03 13:43:35 +0100 | [diff] [blame] | 4049 | } |
| 4050 | |
Olivier Houchard | e6060c5 | 2017-11-16 17:42:52 +0100 | [diff] [blame] | 4051 | |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4052 | /* SSL callback used on new session creation */ |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 4053 | int sh_ssl_sess_new_cb(SSL *ssl, SSL_SESSION *sess) |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4054 | { |
| 4055 | unsigned char encsess[SHSESS_MAX_DATA_LEN]; /* encoded session */ |
| 4056 | unsigned char encid[SSL_MAX_SSL_SESSION_ID_LENGTH]; /* encoded id */ |
| 4057 | unsigned char *p; |
| 4058 | int data_len; |
Emeric Brun | eb46965 | 2019-10-08 18:27:37 +0200 | [diff] [blame] | 4059 | unsigned int sid_length; |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4060 | const unsigned char *sid_data; |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4061 | |
| 4062 | /* 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] | 4063 | * so we don't store it to keep size. |
Emeric Brun | eb46965 | 2019-10-08 18:27:37 +0200 | [diff] [blame] | 4064 | * note: SSL_SESSION_set1_id is using |
| 4065 | * a memcpy so we need to use a different pointer |
| 4066 | * than sid_data or sid_ctx_data to avoid valgrind |
| 4067 | * complaining. |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4068 | */ |
| 4069 | |
| 4070 | sid_data = SSL_SESSION_get_id(sess, &sid_length); |
Emeric Brun | eb46965 | 2019-10-08 18:27:37 +0200 | [diff] [blame] | 4071 | |
| 4072 | /* copy value in an other buffer */ |
| 4073 | memcpy(encid, sid_data, sid_length); |
| 4074 | |
| 4075 | /* pad with 0 */ |
| 4076 | if (sid_length < SSL_MAX_SSL_SESSION_ID_LENGTH) |
| 4077 | memset(encid + sid_length, 0, SSL_MAX_SSL_SESSION_ID_LENGTH-sid_length); |
| 4078 | |
| 4079 | /* force length to zero to avoid ASN1 encoding */ |
| 4080 | SSL_SESSION_set1_id(sess, encid, 0); |
| 4081 | |
| 4082 | /* force length to zero to avoid ASN1 encoding */ |
| 4083 | SSL_SESSION_set1_id_context(sess, (const unsigned char *)SHCTX_APPNAME, 0); |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4084 | |
| 4085 | /* check if buffer is large enough for the ASN1 encoded session */ |
| 4086 | data_len = i2d_SSL_SESSION(sess, NULL); |
| 4087 | if (data_len > SHSESS_MAX_DATA_LEN) |
| 4088 | goto err; |
| 4089 | |
| 4090 | p = encsess; |
| 4091 | |
| 4092 | /* process ASN1 session encoding before the lock */ |
| 4093 | i2d_SSL_SESSION(sess, &p); |
| 4094 | |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4095 | |
William Lallemand | a3c77cf | 2017-10-30 23:44:40 +0100 | [diff] [blame] | 4096 | shctx_lock(ssl_shctx); |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4097 | /* store to cache */ |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 4098 | sh_ssl_sess_store(encid, encsess, data_len); |
William Lallemand | a3c77cf | 2017-10-30 23:44:40 +0100 | [diff] [blame] | 4099 | shctx_unlock(ssl_shctx); |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4100 | err: |
| 4101 | /* reset original length values */ |
Emeric Brun | eb46965 | 2019-10-08 18:27:37 +0200 | [diff] [blame] | 4102 | SSL_SESSION_set1_id(sess, encid, sid_length); |
| 4103 | 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] | 4104 | |
| 4105 | return 0; /* do not increment session reference count */ |
| 4106 | } |
| 4107 | |
| 4108 | /* 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] | 4109 | 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] | 4110 | { |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 4111 | struct sh_ssl_sess_hdr *sh_ssl_sess; |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4112 | unsigned char data[SHSESS_MAX_DATA_LEN], *p; |
| 4113 | unsigned char tmpkey[SSL_MAX_SSL_SESSION_ID_LENGTH]; |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4114 | SSL_SESSION *sess; |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 4115 | struct shared_block *first; |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4116 | |
Willy Tarreau | 37d6939 | 2021-06-15 16:39:22 +0200 | [diff] [blame] | 4117 | _HA_ATOMIC_INC(&global.shctx_lookups); |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4118 | |
| 4119 | /* allow the session to be freed automatically by openssl */ |
| 4120 | *do_copy = 0; |
| 4121 | |
| 4122 | /* tree key is zeros padded sessionid */ |
| 4123 | if (key_len < SSL_MAX_SSL_SESSION_ID_LENGTH) { |
| 4124 | memcpy(tmpkey, key, key_len); |
| 4125 | memset(tmpkey + key_len, 0, SSL_MAX_SSL_SESSION_ID_LENGTH - key_len); |
| 4126 | key = tmpkey; |
| 4127 | } |
| 4128 | |
| 4129 | /* lock cache */ |
William Lallemand | a3c77cf | 2017-10-30 23:44:40 +0100 | [diff] [blame] | 4130 | shctx_lock(ssl_shctx); |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4131 | |
| 4132 | /* lookup for session */ |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 4133 | sh_ssl_sess = sh_ssl_sess_tree_lookup(key); |
| 4134 | if (!sh_ssl_sess) { |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4135 | /* no session found: unlock cache and exit */ |
William Lallemand | a3c77cf | 2017-10-30 23:44:40 +0100 | [diff] [blame] | 4136 | shctx_unlock(ssl_shctx); |
Willy Tarreau | 37d6939 | 2021-06-15 16:39:22 +0200 | [diff] [blame] | 4137 | _HA_ATOMIC_INC(&global.shctx_misses); |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4138 | return NULL; |
| 4139 | } |
| 4140 | |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 4141 | /* sh_ssl_sess (shared_block->data) is at the end of shared_block */ |
| 4142 | first = sh_ssl_sess_first_block(sh_ssl_sess); |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4143 | |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 4144 | 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] | 4145 | |
William Lallemand | a3c77cf | 2017-10-30 23:44:40 +0100 | [diff] [blame] | 4146 | shctx_unlock(ssl_shctx); |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4147 | |
| 4148 | /* decode ASN1 session */ |
| 4149 | p = data; |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 4150 | 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] | 4151 | /* Reset session id and session id contenxt */ |
| 4152 | if (sess) { |
| 4153 | SSL_SESSION_set1_id(sess, key, key_len); |
| 4154 | SSL_SESSION_set1_id_context(sess, (const unsigned char *)SHCTX_APPNAME, strlen(SHCTX_APPNAME)); |
| 4155 | } |
| 4156 | |
| 4157 | return sess; |
| 4158 | } |
| 4159 | |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 4160 | |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4161 | /* 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] | 4162 | void sh_ssl_sess_remove_cb(SSL_CTX *ctx, SSL_SESSION *sess) |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4163 | { |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 4164 | struct sh_ssl_sess_hdr *sh_ssl_sess; |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4165 | unsigned char tmpkey[SSL_MAX_SSL_SESSION_ID_LENGTH]; |
| 4166 | unsigned int sid_length; |
| 4167 | const unsigned char *sid_data; |
| 4168 | (void)ctx; |
| 4169 | |
| 4170 | sid_data = SSL_SESSION_get_id(sess, &sid_length); |
| 4171 | /* tree key is zeros padded sessionid */ |
| 4172 | if (sid_length < SSL_MAX_SSL_SESSION_ID_LENGTH) { |
| 4173 | memcpy(tmpkey, sid_data, sid_length); |
| 4174 | memset(tmpkey+sid_length, 0, SSL_MAX_SSL_SESSION_ID_LENGTH - sid_length); |
| 4175 | sid_data = tmpkey; |
| 4176 | } |
| 4177 | |
William Lallemand | a3c77cf | 2017-10-30 23:44:40 +0100 | [diff] [blame] | 4178 | shctx_lock(ssl_shctx); |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4179 | |
| 4180 | /* lookup for session */ |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 4181 | sh_ssl_sess = sh_ssl_sess_tree_lookup(sid_data); |
| 4182 | if (sh_ssl_sess) { |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4183 | /* free session */ |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 4184 | sh_ssl_sess_tree_delete(sh_ssl_sess); |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4185 | } |
| 4186 | |
| 4187 | /* unlock cache */ |
William Lallemand | a3c77cf | 2017-10-30 23:44:40 +0100 | [diff] [blame] | 4188 | shctx_unlock(ssl_shctx); |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4189 | } |
| 4190 | |
| 4191 | /* Set session cache mode to server and disable openssl internal cache. |
| 4192 | * Set shared cache callbacks on an ssl context. |
| 4193 | * Shared context MUST be firstly initialized */ |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 4194 | void ssl_set_shctx(SSL_CTX *ctx) |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4195 | { |
| 4196 | SSL_CTX_set_session_id_context(ctx, (const unsigned char *)SHCTX_APPNAME, strlen(SHCTX_APPNAME)); |
| 4197 | |
| 4198 | if (!ssl_shctx) { |
| 4199 | SSL_CTX_set_session_cache_mode(ctx, SSL_SESS_CACHE_OFF); |
| 4200 | return; |
| 4201 | } |
| 4202 | |
| 4203 | SSL_CTX_set_session_cache_mode(ctx, SSL_SESS_CACHE_SERVER | |
| 4204 | SSL_SESS_CACHE_NO_INTERNAL | |
| 4205 | SSL_SESS_CACHE_NO_AUTO_CLEAR); |
| 4206 | |
| 4207 | /* Set callbacks */ |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 4208 | SSL_CTX_sess_set_new_cb(ctx, sh_ssl_sess_new_cb); |
| 4209 | SSL_CTX_sess_set_get_cb(ctx, sh_ssl_sess_get_cb); |
| 4210 | SSL_CTX_sess_set_remove_cb(ctx, sh_ssl_sess_remove_cb); |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4211 | } |
William Lallemand | 7d42ef5 | 2020-07-06 11:41:30 +0200 | [diff] [blame] | 4212 | |
| 4213 | /* |
| 4214 | * https://developer.mozilla.org/en-US/docs/Mozilla/Projects/NSS/Key_Log_Format |
| 4215 | * |
| 4216 | * The format is: |
| 4217 | * * <Label> <space> <ClientRandom> <space> <Secret> |
| 4218 | * We only need to copy the secret as there is a sample fetch for the ClientRandom |
| 4219 | */ |
| 4220 | |
William Lallemand | ca5cf0a | 2021-06-09 16:46:12 +0200 | [diff] [blame] | 4221 | #ifdef HAVE_SSL_KEYLOG |
William Lallemand | 7d42ef5 | 2020-07-06 11:41:30 +0200 | [diff] [blame] | 4222 | void SSL_CTX_keylog(const SSL *ssl, const char *line) |
| 4223 | { |
| 4224 | struct ssl_keylog *keylog; |
| 4225 | char *lastarg = NULL; |
| 4226 | char *dst = NULL; |
| 4227 | |
| 4228 | keylog = SSL_get_ex_data(ssl, ssl_keylog_index); |
| 4229 | if (!keylog) |
| 4230 | return; |
| 4231 | |
| 4232 | lastarg = strrchr(line, ' '); |
| 4233 | if (lastarg == NULL || ++lastarg == NULL) |
| 4234 | return; |
| 4235 | |
| 4236 | dst = pool_alloc(pool_head_ssl_keylog_str); |
| 4237 | if (!dst) |
| 4238 | return; |
| 4239 | |
| 4240 | strncpy(dst, lastarg, SSL_KEYLOG_MAX_SECRET_SIZE-1); |
| 4241 | dst[SSL_KEYLOG_MAX_SECRET_SIZE-1] = '\0'; |
| 4242 | |
| 4243 | if (strncmp(line, "CLIENT_RANDOM ", strlen("CLIENT RANDOM ")) == 0) { |
| 4244 | if (keylog->client_random) |
| 4245 | goto error; |
| 4246 | keylog->client_random = dst; |
| 4247 | |
| 4248 | } else if (strncmp(line, "CLIENT_EARLY_TRAFFIC_SECRET ", strlen("CLIENT_EARLY_TRAFFIC_SECRET ")) == 0) { |
| 4249 | if (keylog->client_early_traffic_secret) |
| 4250 | goto error; |
| 4251 | keylog->client_early_traffic_secret = dst; |
| 4252 | |
| 4253 | } else if (strncmp(line, "CLIENT_HANDSHAKE_TRAFFIC_SECRET ", strlen("CLIENT_HANDSHAKE_TRAFFIC_SECRET ")) == 0) { |
| 4254 | if(keylog->client_handshake_traffic_secret) |
| 4255 | goto error; |
| 4256 | keylog->client_handshake_traffic_secret = dst; |
| 4257 | |
| 4258 | } else if (strncmp(line, "SERVER_HANDSHAKE_TRAFFIC_SECRET ", strlen("SERVER_HANDSHAKE_TRAFFIC_SECRET ")) == 0) { |
| 4259 | if (keylog->server_handshake_traffic_secret) |
| 4260 | goto error; |
| 4261 | keylog->server_handshake_traffic_secret = dst; |
| 4262 | |
| 4263 | } else if (strncmp(line, "CLIENT_TRAFFIC_SECRET_0 ", strlen("CLIENT_TRAFFIC_SECRET_0 ")) == 0) { |
| 4264 | if (keylog->client_traffic_secret_0) |
| 4265 | goto error; |
| 4266 | keylog->client_traffic_secret_0 = dst; |
| 4267 | |
| 4268 | } else if (strncmp(line, "SERVER_TRAFFIC_SECRET_0 ", strlen("SERVER_TRAFFIC_SECRET_0 ")) == 0) { |
| 4269 | if (keylog->server_traffic_secret_0) |
| 4270 | goto error; |
| 4271 | keylog->server_traffic_secret_0 = dst; |
| 4272 | |
| 4273 | } else if (strncmp(line, "EARLY_EXPORTER_SECRET ", strlen("EARLY_EXPORTER_SECRET ")) == 0) { |
| 4274 | if (keylog->early_exporter_secret) |
| 4275 | goto error; |
| 4276 | keylog->early_exporter_secret = dst; |
| 4277 | |
| 4278 | } else if (strncmp(line, "EXPORTER_SECRET ", strlen("EXPORTER_SECRET ")) == 0) { |
| 4279 | if (keylog->exporter_secret) |
| 4280 | goto error; |
| 4281 | keylog->exporter_secret = dst; |
| 4282 | } else { |
| 4283 | goto error; |
| 4284 | } |
| 4285 | |
| 4286 | return; |
| 4287 | |
| 4288 | error: |
| 4289 | pool_free(pool_head_ssl_keylog_str, dst); |
| 4290 | |
| 4291 | return; |
| 4292 | } |
| 4293 | #endif |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4294 | |
William Lallemand | 8b45391 | 2019-11-21 15:48:10 +0100 | [diff] [blame] | 4295 | /* |
| 4296 | * This function applies the SSL configuration on a SSL_CTX |
| 4297 | * It returns an error code and fills the <err> buffer |
| 4298 | */ |
| 4299 | 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] | 4300 | { |
| 4301 | struct proxy *curproxy = bind_conf->frontend; |
| 4302 | int cfgerr = 0; |
| 4303 | int verify = SSL_VERIFY_NONE; |
Willy Tarreau | 5d4cafb | 2018-01-04 18:55:19 +0100 | [diff] [blame] | 4304 | struct ssl_bind_conf __maybe_unused *ssl_conf_cur; |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 4305 | const char *conf_ciphers; |
Ilya Shipitsin | f34ed0b | 2020-11-21 14:37:34 +0500 | [diff] [blame] | 4306 | #ifdef HAVE_SSL_CTX_SET_CIPHERSUITES |
Dirkjan Bussink | 415150f | 2018-09-14 11:14:21 +0200 | [diff] [blame] | 4307 | const char *conf_ciphersuites; |
| 4308 | #endif |
Emmanuel Hocdet | e7f2b73 | 2017-01-09 16:15:54 +0100 | [diff] [blame] | 4309 | const char *conf_curves = NULL; |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 4310 | |
Emmanuel Hocdet | df701a2 | 2017-05-18 12:46:50 +0200 | [diff] [blame] | 4311 | if (ssl_conf) { |
| 4312 | struct tls_version_filter *conf_ssl_methods = &ssl_conf->ssl_methods; |
| 4313 | int i, min, max; |
| 4314 | int flags = MC_SSL_O_ALL; |
| 4315 | |
| 4316 | /* 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] | 4317 | min = conf_ssl_methods->min ? conf_ssl_methods->min : bind_conf->ssl_conf.ssl_methods.min; |
| 4318 | 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] | 4319 | if (min) |
| 4320 | flags |= (methodVersions[min].flag - 1); |
| 4321 | if (max) |
| 4322 | flags |= ~((methodVersions[max].flag << 1) - 1); |
| 4323 | min = max = CONF_TLSV_NONE; |
| 4324 | for (i = CONF_TLSV_MIN; i <= CONF_TLSV_MAX; i++) |
| 4325 | if (methodVersions[i].option && !(flags & methodVersions[i].flag)) { |
| 4326 | if (min) |
| 4327 | max = i; |
| 4328 | else |
| 4329 | min = max = i; |
| 4330 | } |
| 4331 | /* save real min/max */ |
| 4332 | conf_ssl_methods->min = min; |
| 4333 | conf_ssl_methods->max = max; |
| 4334 | if (!min) { |
Tim Duesterhus | 9312853 | 2019-11-23 23:45:10 +0100 | [diff] [blame] | 4335 | memprintf(err, "%sProxy '%s': all SSL/TLS versions are disabled for bind '%s' at [%s:%d].\n", |
| 4336 | 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] | 4337 | cfgerr |= ERR_ALERT | ERR_FATAL; |
Emmanuel Hocdet | df701a2 | 2017-05-18 12:46:50 +0200 | [diff] [blame] | 4338 | } |
| 4339 | } |
| 4340 | |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 4341 | 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] | 4342 | case SSL_SOCK_VERIFY_NONE: |
| 4343 | verify = SSL_VERIFY_NONE; |
| 4344 | break; |
| 4345 | case SSL_SOCK_VERIFY_OPTIONAL: |
| 4346 | verify = SSL_VERIFY_PEER; |
| 4347 | break; |
| 4348 | case SSL_SOCK_VERIFY_REQUIRED: |
| 4349 | verify = SSL_VERIFY_PEER|SSL_VERIFY_FAIL_IF_NO_PEER_CERT; |
| 4350 | break; |
| 4351 | } |
| 4352 | SSL_CTX_set_verify(ctx, verify, ssl_sock_bind_verifycbk); |
| 4353 | if (verify & SSL_VERIFY_PEER) { |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 4354 | 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] | 4355 | 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] | 4356 | 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] | 4357 | if (ca_file || ca_verify_file) { |
Emmanuel Hocdet | d4f9a60 | 2019-10-24 11:32:47 +0200 | [diff] [blame] | 4358 | /* set CAfile to verify */ |
Emmanuel Hocdet | 842e94e | 2019-12-16 16:39:17 +0100 | [diff] [blame] | 4359 | if (ca_file && !ssl_set_verify_locations_file(ctx, ca_file)) { |
Emmanuel Hocdet | d4f9a60 | 2019-10-24 11:32:47 +0200 | [diff] [blame] | 4360 | 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] | 4361 | 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] | 4362 | cfgerr |= ERR_ALERT | ERR_FATAL; |
Emeric Brun | d94b3fe | 2012-09-20 18:23:56 +0200 | [diff] [blame] | 4363 | } |
Emmanuel Hocdet | 842e94e | 2019-12-16 16:39:17 +0100 | [diff] [blame] | 4364 | if (ca_verify_file && !ssl_set_verify_locations_file(ctx, ca_verify_file)) { |
| 4365 | memprintf(err, "%sProxy '%s': unable to set CA-no-names file '%s' for bind '%s' at [%s:%d].\n", |
| 4366 | err && *err ? *err : "", curproxy->id, ca_verify_file, bind_conf->arg, bind_conf->file, bind_conf->line); |
| 4367 | cfgerr |= ERR_ALERT | ERR_FATAL; |
| 4368 | } |
| 4369 | 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] | 4370 | /* set CA names for client cert request, function returns void */ |
Emmanuel Hocdet | 129d328 | 2019-10-24 18:08:51 +0200 | [diff] [blame] | 4371 | 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] | 4372 | } |
Emeric Brun | d94b3fe | 2012-09-20 18:23:56 +0200 | [diff] [blame] | 4373 | } |
Emeric Brun | 850efd5 | 2014-01-29 12:24:34 +0100 | [diff] [blame] | 4374 | else { |
Tim Duesterhus | 9312853 | 2019-11-23 23:45:10 +0100 | [diff] [blame] | 4375 | memprintf(err, "%sProxy '%s': verify is enabled but no CA file specified for bind '%s' at [%s:%d].\n", |
| 4376 | 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] | 4377 | cfgerr |= ERR_ALERT | ERR_FATAL; |
Emeric Brun | 850efd5 | 2014-01-29 12:24:34 +0100 | [diff] [blame] | 4378 | } |
Emeric Brun | 051cdab | 2012-10-02 19:25:50 +0200 | [diff] [blame] | 4379 | #ifdef X509_V_FLAG_CRL_CHECK |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 4380 | if (crl_file) { |
Emeric Brun | d94b3fe | 2012-09-20 18:23:56 +0200 | [diff] [blame] | 4381 | X509_STORE *store = SSL_CTX_get_cert_store(ctx); |
| 4382 | |
Emmanuel Hocdet | b270e81 | 2019-11-21 19:09:31 +0100 | [diff] [blame] | 4383 | if (!ssl_set_cert_crl_file(store, crl_file)) { |
Tim Duesterhus | 9312853 | 2019-11-23 23:45:10 +0100 | [diff] [blame] | 4384 | memprintf(err, "%sProxy '%s': unable to configure CRL file '%s' for bind '%s' at [%s:%d].\n", |
| 4385 | 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] | 4386 | cfgerr |= ERR_ALERT | ERR_FATAL; |
Emeric Brun | d94b3fe | 2012-09-20 18:23:56 +0200 | [diff] [blame] | 4387 | } |
Emeric Brun | 561e574 | 2012-10-02 15:20:55 +0200 | [diff] [blame] | 4388 | else { |
| 4389 | X509_STORE_set_flags(store, X509_V_FLAG_CRL_CHECK|X509_V_FLAG_CRL_CHECK_ALL); |
| 4390 | } |
Emeric Brun | d94b3fe | 2012-09-20 18:23:56 +0200 | [diff] [blame] | 4391 | } |
Emeric Brun | 051cdab | 2012-10-02 19:25:50 +0200 | [diff] [blame] | 4392 | #endif |
Emeric Brun | 644cde0 | 2012-12-14 11:21:13 +0100 | [diff] [blame] | 4393 | ERR_clear_error(); |
Emeric Brun | d94b3fe | 2012-09-20 18:23:56 +0200 | [diff] [blame] | 4394 | } |
Nenad Merdanovic | 05552d4 | 2015-02-27 19:56:49 +0100 | [diff] [blame] | 4395 | #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] | 4396 | if(bind_conf->keys_ref) { |
Nenad Merdanovic | 05552d4 | 2015-02-27 19:56:49 +0100 | [diff] [blame] | 4397 | 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] | 4398 | memprintf(err, "%sProxy '%s': unable to set callback for TLS ticket validation for bind '%s' at [%s:%d].\n", |
| 4399 | 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] | 4400 | cfgerr |= ERR_ALERT | ERR_FATAL; |
Nenad Merdanovic | 05552d4 | 2015-02-27 19:56:49 +0100 | [diff] [blame] | 4401 | } |
| 4402 | } |
| 4403 | #endif |
| 4404 | |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 4405 | ssl_set_shctx(ctx); |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 4406 | conf_ciphers = (ssl_conf && ssl_conf->ciphers) ? ssl_conf->ciphers : bind_conf->ssl_conf.ciphers; |
| 4407 | if (conf_ciphers && |
| 4408 | !SSL_CTX_set_cipher_list(ctx, conf_ciphers)) { |
Tim Duesterhus | 9312853 | 2019-11-23 23:45:10 +0100 | [diff] [blame] | 4409 | memprintf(err, "%sProxy '%s': unable to set SSL cipher list to '%s' for bind '%s' at [%s:%d].\n", |
| 4410 | 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] | 4411 | cfgerr |= ERR_ALERT | ERR_FATAL; |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 4412 | } |
| 4413 | |
Ilya Shipitsin | f34ed0b | 2020-11-21 14:37:34 +0500 | [diff] [blame] | 4414 | #ifdef HAVE_SSL_CTX_SET_CIPHERSUITES |
Dirkjan Bussink | 415150f | 2018-09-14 11:14:21 +0200 | [diff] [blame] | 4415 | conf_ciphersuites = (ssl_conf && ssl_conf->ciphersuites) ? ssl_conf->ciphersuites : bind_conf->ssl_conf.ciphersuites; |
| 4416 | if (conf_ciphersuites && |
| 4417 | !SSL_CTX_set_ciphersuites(ctx, conf_ciphersuites)) { |
Tim Duesterhus | 9312853 | 2019-11-23 23:45:10 +0100 | [diff] [blame] | 4418 | memprintf(err, "%sProxy '%s': unable to set TLS 1.3 cipher suites to '%s' for bind '%s' at [%s:%d].\n", |
| 4419 | 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] | 4420 | cfgerr |= ERR_ALERT | ERR_FATAL; |
Dirkjan Bussink | 415150f | 2018-09-14 11:14:21 +0200 | [diff] [blame] | 4421 | } |
| 4422 | #endif |
| 4423 | |
Emmanuel Hocdet | cc6c2a2 | 2017-03-03 17:04:14 +0100 | [diff] [blame] | 4424 | #ifndef OPENSSL_NO_DH |
Remi Gacogne | 47783ef | 2015-05-29 15:53:22 +0200 | [diff] [blame] | 4425 | /* If tune.ssl.default-dh-param has not been set, |
| 4426 | neither has ssl-default-dh-file and no static DH |
| 4427 | params were in the certificate file. */ |
Willy Tarreau | ef93460 | 2016-12-22 23:12:01 +0100 | [diff] [blame] | 4428 | if (global_ssl.default_dh_param == 0 && |
Remi Gacogne | 47783ef | 2015-05-29 15:53:22 +0200 | [diff] [blame] | 4429 | global_dh == NULL && |
Remi Gacogne | 4f902b8 | 2015-05-28 16:23:00 +0200 | [diff] [blame] | 4430 | (ssl_dh_ptr_index == -1 || |
| 4431 | SSL_CTX_get_ex_data(ctx, ssl_dh_ptr_index) == NULL)) { |
Willy Tarreau | 3ba77d2 | 2020-05-08 09:31:18 +0200 | [diff] [blame] | 4432 | /* default to dh-param 2048 */ |
| 4433 | global_ssl.default_dh_param = 2048; |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 4434 | } |
Remi Gacogne | 8de5415 | 2014-07-15 11:36:40 +0200 | [diff] [blame] | 4435 | |
Willy Tarreau | ef93460 | 2016-12-22 23:12:01 +0100 | [diff] [blame] | 4436 | if (global_ssl.default_dh_param >= 1024) { |
Remi Gacogne | 8de5415 | 2014-07-15 11:36:40 +0200 | [diff] [blame] | 4437 | if (local_dh_1024 == NULL) { |
| 4438 | local_dh_1024 = ssl_get_dh_1024(); |
| 4439 | } |
Willy Tarreau | ef93460 | 2016-12-22 23:12:01 +0100 | [diff] [blame] | 4440 | if (global_ssl.default_dh_param >= 2048) { |
Remi Gacogne | 8de5415 | 2014-07-15 11:36:40 +0200 | [diff] [blame] | 4441 | if (local_dh_2048 == NULL) { |
| 4442 | local_dh_2048 = ssl_get_dh_2048(); |
| 4443 | } |
Willy Tarreau | ef93460 | 2016-12-22 23:12:01 +0100 | [diff] [blame] | 4444 | if (global_ssl.default_dh_param >= 4096) { |
Remi Gacogne | 8de5415 | 2014-07-15 11:36:40 +0200 | [diff] [blame] | 4445 | if (local_dh_4096 == NULL) { |
| 4446 | local_dh_4096 = ssl_get_dh_4096(); |
| 4447 | } |
Remi Gacogne | 8de5415 | 2014-07-15 11:36:40 +0200 | [diff] [blame] | 4448 | } |
| 4449 | } |
| 4450 | } |
| 4451 | #endif /* OPENSSL_NO_DH */ |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 4452 | |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 4453 | SSL_CTX_set_info_callback(ctx, ssl_sock_infocbk); |
Ilya Shipitsin | 7ff7747 | 2021-02-08 16:55:06 +0500 | [diff] [blame] | 4454 | #ifdef SSL_CTRL_SET_MSG_CALLBACK |
Emeric Brun | 29f037d | 2014-04-25 19:05:36 +0200 | [diff] [blame] | 4455 | SSL_CTX_set_msg_callback(ctx, ssl_sock_msgcbk); |
Willy Tarreau | 5cbe4ef | 2014-05-08 22:45:11 +0200 | [diff] [blame] | 4456 | #endif |
William Lallemand | ca5cf0a | 2021-06-09 16:46:12 +0200 | [diff] [blame] | 4457 | #ifdef HAVE_SSL_KEYLOG |
William Lallemand | 7d42ef5 | 2020-07-06 11:41:30 +0200 | [diff] [blame] | 4458 | SSL_CTX_set_keylog_callback(ctx, SSL_CTX_keylog); |
| 4459 | #endif |
Emeric Brun | 29f037d | 2014-04-25 19:05:36 +0200 | [diff] [blame] | 4460 | |
Bernard Spil | 13c53f8 | 2018-02-15 13:34:58 +0100 | [diff] [blame] | 4461 | #if defined(OPENSSL_NPN_NEGOTIATED) && !defined(OPENSSL_NO_NEXTPROTONEG) |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 4462 | ssl_conf_cur = NULL; |
| 4463 | if (ssl_conf && ssl_conf->npn_str) |
| 4464 | ssl_conf_cur = ssl_conf; |
| 4465 | else if (bind_conf->ssl_conf.npn_str) |
| 4466 | ssl_conf_cur = &bind_conf->ssl_conf; |
| 4467 | if (ssl_conf_cur) |
| 4468 | 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] | 4469 | #endif |
Dirkjan Bussink | 48f1c4e | 2014-02-13 12:29:42 +0100 | [diff] [blame] | 4470 | #ifdef TLSEXT_TYPE_application_layer_protocol_negotiation |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 4471 | ssl_conf_cur = NULL; |
| 4472 | if (ssl_conf && ssl_conf->alpn_str) |
| 4473 | ssl_conf_cur = ssl_conf; |
| 4474 | else if (bind_conf->ssl_conf.alpn_str) |
| 4475 | ssl_conf_cur = &bind_conf->ssl_conf; |
| 4476 | if (ssl_conf_cur) |
| 4477 | 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] | 4478 | #endif |
Ilya Shipitsin | 0aa8c29 | 2020-11-04 00:39:07 +0500 | [diff] [blame] | 4479 | #if defined(SSL_CTX_set1_curves_list) |
Emmanuel Hocdet | e7f2b73 | 2017-01-09 16:15:54 +0100 | [diff] [blame] | 4480 | conf_curves = (ssl_conf && ssl_conf->curves) ? ssl_conf->curves : bind_conf->ssl_conf.curves; |
| 4481 | if (conf_curves) { |
| 4482 | if (!SSL_CTX_set1_curves_list(ctx, conf_curves)) { |
Tim Duesterhus | 9312853 | 2019-11-23 23:45:10 +0100 | [diff] [blame] | 4483 | memprintf(err, "%sProxy '%s': unable to set SSL curves list to '%s' for bind '%s' at [%s:%d].\n", |
| 4484 | 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] | 4485 | cfgerr |= ERR_ALERT | ERR_FATAL; |
Emmanuel Hocdet | e7f2b73 | 2017-01-09 16:15:54 +0100 | [diff] [blame] | 4486 | } |
Emmanuel Hocdet | a52bb15 | 2017-03-20 11:11:49 +0100 | [diff] [blame] | 4487 | (void)SSL_CTX_set_ecdh_auto(ctx, 1); |
Emmanuel Hocdet | e7f2b73 | 2017-01-09 16:15:54 +0100 | [diff] [blame] | 4488 | } |
| 4489 | #endif |
Emeric Brun | 2b58d04 | 2012-09-20 17:10:03 +0200 | [diff] [blame] | 4490 | #if defined(SSL_CTX_set_tmp_ecdh) && !defined(OPENSSL_NO_ECDH) |
Emmanuel Hocdet | e7f2b73 | 2017-01-09 16:15:54 +0100 | [diff] [blame] | 4491 | if (!conf_curves) { |
Emeric Brun | 2b58d04 | 2012-09-20 17:10:03 +0200 | [diff] [blame] | 4492 | int i; |
| 4493 | EC_KEY *ecdh; |
Willy Tarreau | 9a1ab08 | 2019-05-09 13:26:41 +0200 | [diff] [blame] | 4494 | #if (HA_OPENSSL_VERSION_NUMBER >= 0x10101000L) |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 4495 | const char *ecdhe = (ssl_conf && ssl_conf->ecdhe) ? ssl_conf->ecdhe : |
Olivier Houchard | c2aae74 | 2017-09-22 18:26:28 +0200 | [diff] [blame] | 4496 | (bind_conf->ssl_conf.ecdhe ? bind_conf->ssl_conf.ecdhe : |
| 4497 | NULL); |
| 4498 | |
| 4499 | if (ecdhe == NULL) { |
Eric Salama | 3c8bde8 | 2019-11-20 11:33:40 +0100 | [diff] [blame] | 4500 | (void)SSL_CTX_set_ecdh_auto(ctx, 1); |
Olivier Houchard | c2aae74 | 2017-09-22 18:26:28 +0200 | [diff] [blame] | 4501 | return cfgerr; |
| 4502 | } |
| 4503 | #else |
| 4504 | const char *ecdhe = (ssl_conf && ssl_conf->ecdhe) ? ssl_conf->ecdhe : |
| 4505 | (bind_conf->ssl_conf.ecdhe ? bind_conf->ssl_conf.ecdhe : |
| 4506 | ECDHE_DEFAULT_CURVE); |
| 4507 | #endif |
Emeric Brun | 2b58d04 | 2012-09-20 17:10:03 +0200 | [diff] [blame] | 4508 | |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 4509 | i = OBJ_sn2nid(ecdhe); |
Emeric Brun | 2b58d04 | 2012-09-20 17:10:03 +0200 | [diff] [blame] | 4510 | if (!i || ((ecdh = EC_KEY_new_by_curve_name(i)) == NULL)) { |
Tim Duesterhus | 9312853 | 2019-11-23 23:45:10 +0100 | [diff] [blame] | 4511 | memprintf(err, "%sProxy '%s': unable to set elliptic named curve to '%s' for bind '%s' at [%s:%d].\n", |
| 4512 | 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] | 4513 | cfgerr |= ERR_ALERT | ERR_FATAL; |
Emeric Brun | 2b58d04 | 2012-09-20 17:10:03 +0200 | [diff] [blame] | 4514 | } |
| 4515 | else { |
| 4516 | SSL_CTX_set_tmp_ecdh(ctx, ecdh); |
| 4517 | EC_KEY_free(ecdh); |
| 4518 | } |
| 4519 | } |
| 4520 | #endif |
| 4521 | |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 4522 | return cfgerr; |
| 4523 | } |
| 4524 | |
Evan Broder | be55431 | 2013-06-27 00:05:25 -0700 | [diff] [blame] | 4525 | static int ssl_sock_srv_hostcheck(const char *pattern, const char *hostname) |
| 4526 | { |
| 4527 | const char *pattern_wildcard, *pattern_left_label_end, *hostname_left_label_end; |
| 4528 | size_t prefixlen, suffixlen; |
| 4529 | |
| 4530 | /* Trivial case */ |
William Lallemand | 2d6fd0a | 2020-09-14 15:20:10 +0200 | [diff] [blame] | 4531 | if (strcasecmp(pattern, hostname) == 0) |
Evan Broder | be55431 | 2013-06-27 00:05:25 -0700 | [diff] [blame] | 4532 | return 1; |
| 4533 | |
Evan Broder | be55431 | 2013-06-27 00:05:25 -0700 | [diff] [blame] | 4534 | /* The rest of this logic is based on RFC 6125, section 6.4.3 |
| 4535 | * (http://tools.ietf.org/html/rfc6125#section-6.4.3) */ |
| 4536 | |
Emeric Brun | a848dae | 2013-10-08 11:27:28 +0200 | [diff] [blame] | 4537 | pattern_wildcard = NULL; |
| 4538 | pattern_left_label_end = pattern; |
| 4539 | while (*pattern_left_label_end != '.') { |
| 4540 | switch (*pattern_left_label_end) { |
| 4541 | case 0: |
| 4542 | /* End of label not found */ |
| 4543 | return 0; |
| 4544 | case '*': |
| 4545 | /* If there is more than one wildcards */ |
| 4546 | if (pattern_wildcard) |
| 4547 | return 0; |
| 4548 | pattern_wildcard = pattern_left_label_end; |
| 4549 | break; |
| 4550 | } |
| 4551 | pattern_left_label_end++; |
| 4552 | } |
| 4553 | |
| 4554 | /* If it's not trivial and there is no wildcard, it can't |
| 4555 | * match */ |
| 4556 | if (!pattern_wildcard) |
Evan Broder | be55431 | 2013-06-27 00:05:25 -0700 | [diff] [blame] | 4557 | return 0; |
| 4558 | |
| 4559 | /* Make sure all labels match except the leftmost */ |
| 4560 | hostname_left_label_end = strchr(hostname, '.'); |
| 4561 | if (!hostname_left_label_end |
William Lallemand | 2d6fd0a | 2020-09-14 15:20:10 +0200 | [diff] [blame] | 4562 | || strcasecmp(pattern_left_label_end, hostname_left_label_end) != 0) |
Evan Broder | be55431 | 2013-06-27 00:05:25 -0700 | [diff] [blame] | 4563 | return 0; |
| 4564 | |
| 4565 | /* Make sure the leftmost label of the hostname is long enough |
| 4566 | * that the wildcard can match */ |
Emeric Brun | 369da85 | 2013-10-08 11:39:35 +0200 | [diff] [blame] | 4567 | if (hostname_left_label_end - hostname < (pattern_left_label_end - pattern) - 1) |
Evan Broder | be55431 | 2013-06-27 00:05:25 -0700 | [diff] [blame] | 4568 | return 0; |
| 4569 | |
| 4570 | /* Finally compare the string on either side of the |
| 4571 | * wildcard */ |
| 4572 | prefixlen = pattern_wildcard - pattern; |
| 4573 | suffixlen = pattern_left_label_end - (pattern_wildcard + 1); |
William Lallemand | 2d6fd0a | 2020-09-14 15:20:10 +0200 | [diff] [blame] | 4574 | if ((prefixlen && (strncasecmp(pattern, hostname, prefixlen) != 0)) |
| 4575 | || (suffixlen && (strncasecmp(pattern_wildcard + 1, hostname_left_label_end - suffixlen, suffixlen) != 0))) |
Evan Broder | be55431 | 2013-06-27 00:05:25 -0700 | [diff] [blame] | 4576 | return 0; |
| 4577 | |
| 4578 | return 1; |
| 4579 | } |
| 4580 | |
| 4581 | static int ssl_sock_srv_verifycbk(int ok, X509_STORE_CTX *ctx) |
| 4582 | { |
| 4583 | SSL *ssl; |
| 4584 | struct connection *conn; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 4585 | struct ssl_sock_ctx *ssl_ctx; |
Willy Tarreau | 2ab8867 | 2017-07-05 18:23:03 +0200 | [diff] [blame] | 4586 | const char *servername; |
Willy Tarreau | 71d058c | 2017-07-26 20:09:56 +0200 | [diff] [blame] | 4587 | const char *sni; |
Evan Broder | be55431 | 2013-06-27 00:05:25 -0700 | [diff] [blame] | 4588 | |
| 4589 | int depth; |
| 4590 | X509 *cert; |
| 4591 | STACK_OF(GENERAL_NAME) *alt_names; |
| 4592 | int i; |
| 4593 | X509_NAME *cert_subject; |
| 4594 | char *str; |
| 4595 | |
| 4596 | if (ok == 0) |
| 4597 | return ok; |
| 4598 | |
| 4599 | 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] | 4600 | conn = SSL_get_ex_data(ssl, ssl_app_data_index); |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 4601 | ssl_ctx = conn->xprt_ctx; |
Evan Broder | be55431 | 2013-06-27 00:05:25 -0700 | [diff] [blame] | 4602 | |
Willy Tarreau | ad92a9a | 2017-07-28 11:38:41 +0200 | [diff] [blame] | 4603 | /* We're checking if the provided hostnames match the desired one. The |
| 4604 | * desired hostname comes from the SNI we presented if any, or if not |
| 4605 | * provided then it may have been explicitly stated using a "verifyhost" |
| 4606 | * directive. If neither is set, we don't care about the name so the |
| 4607 | * verification is OK. |
Willy Tarreau | 2ab8867 | 2017-07-05 18:23:03 +0200 | [diff] [blame] | 4608 | */ |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 4609 | servername = SSL_get_servername(ssl_ctx->ssl, TLSEXT_NAMETYPE_host_name); |
Willy Tarreau | 71d058c | 2017-07-26 20:09:56 +0200 | [diff] [blame] | 4610 | sni = servername; |
Willy Tarreau | 2ab8867 | 2017-07-05 18:23:03 +0200 | [diff] [blame] | 4611 | if (!servername) { |
Willy Tarreau | 07d94e4 | 2018-09-20 10:57:52 +0200 | [diff] [blame] | 4612 | servername = __objt_server(conn->target)->ssl_ctx.verify_host; |
Willy Tarreau | 2ab8867 | 2017-07-05 18:23:03 +0200 | [diff] [blame] | 4613 | if (!servername) |
| 4614 | return ok; |
| 4615 | } |
Evan Broder | be55431 | 2013-06-27 00:05:25 -0700 | [diff] [blame] | 4616 | |
| 4617 | /* We only need to verify the CN on the actual server cert, |
| 4618 | * not the indirect CAs */ |
| 4619 | depth = X509_STORE_CTX_get_error_depth(ctx); |
| 4620 | if (depth != 0) |
| 4621 | return ok; |
| 4622 | |
| 4623 | /* At this point, the cert is *not* OK unless we can find a |
| 4624 | * hostname match */ |
| 4625 | ok = 0; |
| 4626 | |
| 4627 | cert = X509_STORE_CTX_get_current_cert(ctx); |
| 4628 | /* It seems like this might happen if verify peer isn't set */ |
| 4629 | if (!cert) |
| 4630 | return ok; |
| 4631 | |
| 4632 | alt_names = X509_get_ext_d2i(cert, NID_subject_alt_name, NULL, NULL); |
| 4633 | if (alt_names) { |
| 4634 | for (i = 0; !ok && i < sk_GENERAL_NAME_num(alt_names); i++) { |
| 4635 | GENERAL_NAME *name = sk_GENERAL_NAME_value(alt_names, i); |
| 4636 | if (name->type == GEN_DNS) { |
Willy Tarreau | 9a1ab08 | 2019-05-09 13:26:41 +0200 | [diff] [blame] | 4637 | #if HA_OPENSSL_VERSION_NUMBER < 0x00907000L |
Emeric Brun | a33410c | 2013-09-17 15:47:48 +0200 | [diff] [blame] | 4638 | if (ASN1_STRING_to_UTF8((unsigned char **)&str, name->d.ia5) >= 0) { |
| 4639 | #else |
Evan Broder | be55431 | 2013-06-27 00:05:25 -0700 | [diff] [blame] | 4640 | if (ASN1_STRING_to_UTF8((unsigned char **)&str, name->d.dNSName) >= 0) { |
Emeric Brun | a33410c | 2013-09-17 15:47:48 +0200 | [diff] [blame] | 4641 | #endif |
Evan Broder | be55431 | 2013-06-27 00:05:25 -0700 | [diff] [blame] | 4642 | ok = ssl_sock_srv_hostcheck(str, servername); |
| 4643 | OPENSSL_free(str); |
| 4644 | } |
| 4645 | } |
| 4646 | } |
Emeric Brun | 4ad50a4 | 2013-09-17 15:19:54 +0200 | [diff] [blame] | 4647 | sk_GENERAL_NAME_pop_free(alt_names, GENERAL_NAME_free); |
Evan Broder | be55431 | 2013-06-27 00:05:25 -0700 | [diff] [blame] | 4648 | } |
| 4649 | |
| 4650 | cert_subject = X509_get_subject_name(cert); |
| 4651 | i = -1; |
| 4652 | while (!ok && (i = X509_NAME_get_index_by_NID(cert_subject, NID_commonName, i)) != -1) { |
| 4653 | X509_NAME_ENTRY *entry = X509_NAME_get_entry(cert_subject, i); |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 4654 | ASN1_STRING *value; |
| 4655 | value = X509_NAME_ENTRY_get_data(entry); |
| 4656 | if (ASN1_STRING_to_UTF8((unsigned char **)&str, value) >= 0) { |
Evan Broder | be55431 | 2013-06-27 00:05:25 -0700 | [diff] [blame] | 4657 | ok = ssl_sock_srv_hostcheck(str, servername); |
| 4658 | OPENSSL_free(str); |
| 4659 | } |
| 4660 | } |
| 4661 | |
Willy Tarreau | 71d058c | 2017-07-26 20:09:56 +0200 | [diff] [blame] | 4662 | /* report the mismatch and indicate if SNI was used or not */ |
| 4663 | if (!ok && !conn->err_code) |
| 4664 | 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] | 4665 | return ok; |
| 4666 | } |
| 4667 | |
Emeric Brun | 94324a4 | 2012-10-11 14:00:19 +0200 | [diff] [blame] | 4668 | /* prepare ssl context from servers options. Returns an error count */ |
Willy Tarreau | 0320934 | 2016-12-22 17:08:28 +0100 | [diff] [blame] | 4669 | int ssl_sock_prepare_srv_ctx(struct server *srv) |
Emeric Brun | 94324a4 | 2012-10-11 14:00:19 +0200 | [diff] [blame] | 4670 | { |
Willy Tarreau | 0320934 | 2016-12-22 17:08:28 +0100 | [diff] [blame] | 4671 | struct proxy *curproxy = srv->proxy; |
Emeric Brun | 94324a4 | 2012-10-11 14:00:19 +0200 | [diff] [blame] | 4672 | int cfgerr = 0; |
William Lallemand | 6338b7d | 2021-12-28 18:47:17 +0100 | [diff] [blame] | 4673 | SSL_CTX *ctx; |
Emeric Brun | 94324a4 | 2012-10-11 14:00:19 +0200 | [diff] [blame] | 4674 | |
Thierry Fournier | 383085f | 2013-01-24 14:15:43 +0100 | [diff] [blame] | 4675 | /* Make sure openssl opens /dev/urandom before the chroot */ |
| 4676 | if (!ssl_initialize_random()) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 4677 | ha_alert("OpenSSL random data generator initialization failed.\n"); |
Thierry Fournier | 383085f | 2013-01-24 14:15:43 +0100 | [diff] [blame] | 4678 | cfgerr++; |
| 4679 | } |
| 4680 | |
Willy Tarreau | fce0311 | 2015-01-15 21:32:40 +0100 | [diff] [blame] | 4681 | /* Automatic memory computations need to know we use SSL there */ |
| 4682 | global.ssl_used_backend = 1; |
| 4683 | |
| 4684 | /* Initiate SSL context for current server */ |
Emeric Brun | 821bb9b | 2017-06-15 16:37:39 +0200 | [diff] [blame] | 4685 | if (!srv->ssl_ctx.reused_sess) { |
Olivier Houchard | e6060c5 | 2017-11-16 17:42:52 +0100 | [diff] [blame] | 4686 | if ((srv->ssl_ctx.reused_sess = calloc(1, global.nbthread*sizeof(*srv->ssl_ctx.reused_sess))) == NULL) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 4687 | ha_alert("Proxy '%s', server '%s' [%s:%d] out of memory.\n", |
| 4688 | curproxy->id, srv->id, |
| 4689 | srv->conf.file, srv->conf.line); |
Emeric Brun | 821bb9b | 2017-06-15 16:37:39 +0200 | [diff] [blame] | 4690 | cfgerr++; |
| 4691 | return cfgerr; |
| 4692 | } |
| 4693 | } |
Christopher Faulet | f61f33a | 2020-03-27 18:55:49 +0100 | [diff] [blame] | 4694 | if (srv->use_ssl == 1) |
Emeric Brun | 94324a4 | 2012-10-11 14:00:19 +0200 | [diff] [blame] | 4695 | srv->xprt = &ssl_sock; |
Emeric Brun | 94324a4 | 2012-10-11 14:00:19 +0200 | [diff] [blame] | 4696 | |
William Lallemand | 6338b7d | 2021-12-28 18:47:17 +0100 | [diff] [blame] | 4697 | if (srv->ssl_ctx.client_crt) { |
| 4698 | char *err = NULL; |
| 4699 | int err_code = 0; |
| 4700 | |
| 4701 | /* If there is a crt keyword there, the SSL_CTX will be created here. */ |
| 4702 | err_code = ssl_sock_load_srv_cert(srv->ssl_ctx.client_crt, srv, &err); |
| 4703 | if (err_code != ERR_NONE) { |
| 4704 | if ((err_code & ERR_WARN) && !(err_code & ERR_ALERT)) |
| 4705 | ha_warning("%s", err); |
| 4706 | else |
| 4707 | ha_alert("%s", err); |
| 4708 | |
| 4709 | if (err_code & (ERR_FATAL|ERR_ABORT)) |
| 4710 | cfgerr++; |
| 4711 | } |
| 4712 | ha_free(&err); |
| 4713 | } |
| 4714 | |
| 4715 | ctx = srv->ssl_ctx.ctx; |
| 4716 | |
Remi Tricot-Le Breton | d817dc7 | 2021-01-25 17:19:43 +0100 | [diff] [blame] | 4717 | /* The context will be uninitialized if there wasn't any "cert" option |
| 4718 | * in the server line. */ |
Emmanuel Hocdet | 4de1ff1 | 2017-03-03 12:21:32 +0100 | [diff] [blame] | 4719 | if (!ctx) { |
Remi Tricot-Le Breton | d817dc7 | 2021-01-25 17:19:43 +0100 | [diff] [blame] | 4720 | ctx = SSL_CTX_new(SSLv23_client_method()); |
| 4721 | if (!ctx) { |
| 4722 | ha_alert("config : %s '%s', server '%s': unable to allocate ssl context.\n", |
| 4723 | proxy_type_str(curproxy), curproxy->id, |
| 4724 | srv->id); |
| 4725 | cfgerr++; |
| 4726 | return cfgerr; |
| 4727 | } |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 4728 | |
Remi Tricot-Le Breton | d817dc7 | 2021-01-25 17:19:43 +0100 | [diff] [blame] | 4729 | srv->ssl_ctx.ctx = ctx; |
| 4730 | } |
Remi Tricot-Le Breton | 442b7f2 | 2021-01-25 17:19:41 +0100 | [diff] [blame] | 4731 | |
| 4732 | cfgerr += ssl_sock_prepare_srv_ssl_ctx(srv, srv->ssl_ctx.ctx); |
| 4733 | |
| 4734 | return cfgerr; |
| 4735 | } |
| 4736 | |
| 4737 | |
| 4738 | /* Initialize an SSL context that will be used on the backend side. |
| 4739 | * Returns an error count. |
| 4740 | */ |
| 4741 | int ssl_sock_prepare_srv_ssl_ctx(const struct server *srv, SSL_CTX *ctx) |
| 4742 | { |
| 4743 | struct proxy *curproxy = srv->proxy; |
| 4744 | int cfgerr = 0; |
| 4745 | long options = |
| 4746 | SSL_OP_ALL | /* all known workarounds for bugs */ |
| 4747 | SSL_OP_NO_SSLv2 | |
| 4748 | SSL_OP_NO_COMPRESSION; |
| 4749 | long mode = |
| 4750 | SSL_MODE_ENABLE_PARTIAL_WRITE | |
| 4751 | SSL_MODE_ACCEPT_MOVING_WRITE_BUFFER | |
| 4752 | SSL_MODE_RELEASE_BUFFERS | |
| 4753 | SSL_MODE_SMALL_BUFFERS; |
| 4754 | int verify = SSL_VERIFY_NONE; |
| 4755 | const struct tls_version_filter *conf_ssl_methods = &srv->ssl_ctx.methods; |
| 4756 | int i, min, max, hole; |
| 4757 | int flags = MC_SSL_O_ALL; |
| 4758 | |
Emmanuel Hocdet | abd3233 | 2017-05-05 18:06:12 +0200 | [diff] [blame] | 4759 | 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] | 4760 | ha_warning("config : %s '%s': no-sslv3/no-tlsv1x are ignored for server '%s'. " |
| 4761 | "Use only 'ssl-min-ver' and 'ssl-max-ver' to fix.\n", |
| 4762 | proxy_type_str(curproxy), curproxy->id, srv->id); |
Emmanuel Hocdet | abd3233 | 2017-05-05 18:06:12 +0200 | [diff] [blame] | 4763 | else |
| 4764 | flags = conf_ssl_methods->flags; |
| 4765 | |
Emmanuel Hocdet | b4e9ba4 | 2017-03-30 19:25:07 +0200 | [diff] [blame] | 4766 | /* Real min and max should be determinate with configuration and openssl's capabilities */ |
| 4767 | if (conf_ssl_methods->min) |
Emmanuel Hocdet | abd3233 | 2017-05-05 18:06:12 +0200 | [diff] [blame] | 4768 | flags |= (methodVersions[conf_ssl_methods->min].flag - 1); |
Emmanuel Hocdet | b4e9ba4 | 2017-03-30 19:25:07 +0200 | [diff] [blame] | 4769 | if (conf_ssl_methods->max) |
Emmanuel Hocdet | abd3233 | 2017-05-05 18:06:12 +0200 | [diff] [blame] | 4770 | flags |= ~((methodVersions[conf_ssl_methods->max].flag << 1) - 1); |
Emmanuel Hocdet | b4e9ba4 | 2017-03-30 19:25:07 +0200 | [diff] [blame] | 4771 | |
Emmanuel Hocdet | 4aa615f | 2017-05-18 12:33:19 +0200 | [diff] [blame] | 4772 | /* find min, max and holes */ |
Emmanuel Hocdet | b4e9ba4 | 2017-03-30 19:25:07 +0200 | [diff] [blame] | 4773 | min = max = CONF_TLSV_NONE; |
| 4774 | hole = 0; |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 4775 | for (i = CONF_TLSV_MIN; i <= CONF_TLSV_MAX; i++) |
Emmanuel Hocdet | b4e9ba4 | 2017-03-30 19:25:07 +0200 | [diff] [blame] | 4776 | /* version is in openssl && version not disable in configuration */ |
Emmanuel Hocdet | abd3233 | 2017-05-05 18:06:12 +0200 | [diff] [blame] | 4777 | if (methodVersions[i].option && !(flags & methodVersions[i].flag)) { |
Emmanuel Hocdet | b4e9ba4 | 2017-03-30 19:25:07 +0200 | [diff] [blame] | 4778 | if (min) { |
| 4779 | if (hole) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 4780 | ha_warning("config : %s '%s': SSL/TLS versions range not contiguous for server '%s'. " |
| 4781 | "Hole find for %s. Use only 'ssl-min-ver' and 'ssl-max-ver' to fix.\n", |
| 4782 | proxy_type_str(curproxy), curproxy->id, srv->id, |
| 4783 | methodVersions[hole].name); |
Emmanuel Hocdet | b4e9ba4 | 2017-03-30 19:25:07 +0200 | [diff] [blame] | 4784 | hole = 0; |
| 4785 | } |
| 4786 | max = i; |
| 4787 | } |
| 4788 | else { |
| 4789 | min = max = i; |
| 4790 | } |
| 4791 | } |
| 4792 | else { |
| 4793 | if (min) |
| 4794 | hole = i; |
Emmanuel Hocdet | b4e9ba4 | 2017-03-30 19:25:07 +0200 | [diff] [blame] | 4795 | } |
Emmanuel Hocdet | abd3233 | 2017-05-05 18:06:12 +0200 | [diff] [blame] | 4796 | if (!min) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 4797 | ha_alert("config : %s '%s': all SSL/TLS versions are disabled for server '%s'.\n", |
| 4798 | proxy_type_str(curproxy), curproxy->id, srv->id); |
Emmanuel Hocdet | abd3233 | 2017-05-05 18:06:12 +0200 | [diff] [blame] | 4799 | cfgerr += 1; |
| 4800 | } |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 4801 | |
Willy Tarreau | 9a1ab08 | 2019-05-09 13:26:41 +0200 | [diff] [blame] | 4802 | #if (HA_OPENSSL_VERSION_NUMBER < 0x1010000fL) |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 4803 | /* 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] | 4804 | precautionary measure to avoid any surprise with older openssl version. */ |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 4805 | if (min == max) |
Emmanuel Hocdet | 4aa615f | 2017-05-18 12:33:19 +0200 | [diff] [blame] | 4806 | methodVersions[min].ctx_set_version(ctx, SET_CLIENT); |
Emmanuel Hocdet | abd3233 | 2017-05-05 18:06:12 +0200 | [diff] [blame] | 4807 | else |
| 4808 | for (i = CONF_TLSV_MIN; i <= CONF_TLSV_MAX; i++) |
| 4809 | if (flags & methodVersions[i].flag) |
| 4810 | options |= methodVersions[i].option; |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 4811 | #else /* openssl >= 1.1.0 */ |
Emmanuel Hocdet | b4e9ba4 | 2017-03-30 19:25:07 +0200 | [diff] [blame] | 4812 | /* 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] | 4813 | methodVersions[min].ctx_set_version(ctx, SET_MIN); |
| 4814 | methodVersions[max].ctx_set_version(ctx, SET_MAX); |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 4815 | #endif |
| 4816 | |
| 4817 | if (srv->ssl_ctx.options & SRV_SSL_O_NO_TLS_TICKETS) |
| 4818 | options |= SSL_OP_NO_TICKET; |
Emmanuel Hocdet | 4de1ff1 | 2017-03-03 12:21:32 +0100 | [diff] [blame] | 4819 | SSL_CTX_set_options(ctx, options); |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 4820 | |
Ilya Shipitsin | bdec3ba | 2020-11-14 01:56:34 +0500 | [diff] [blame] | 4821 | #ifdef SSL_MODE_ASYNC |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 4822 | if (global_ssl.async) |
| 4823 | mode |= SSL_MODE_ASYNC; |
| 4824 | #endif |
Emmanuel Hocdet | 4de1ff1 | 2017-03-03 12:21:32 +0100 | [diff] [blame] | 4825 | SSL_CTX_set_mode(ctx, mode); |
Emmanuel Hocdet | 4de1ff1 | 2017-03-03 12:21:32 +0100 | [diff] [blame] | 4826 | |
Emeric Brun | 850efd5 | 2014-01-29 12:24:34 +0100 | [diff] [blame] | 4827 | if (global.ssl_server_verify == SSL_SERVER_VERIFY_REQUIRED) |
| 4828 | verify = SSL_VERIFY_PEER; |
Emeric Brun | 850efd5 | 2014-01-29 12:24:34 +0100 | [diff] [blame] | 4829 | switch (srv->ssl_ctx.verify) { |
| 4830 | case SSL_SOCK_VERIFY_NONE: |
| 4831 | verify = SSL_VERIFY_NONE; |
| 4832 | break; |
| 4833 | case SSL_SOCK_VERIFY_REQUIRED: |
| 4834 | verify = SSL_VERIFY_PEER; |
| 4835 | break; |
| 4836 | } |
Remi Tricot-Le Breton | 442b7f2 | 2021-01-25 17:19:41 +0100 | [diff] [blame] | 4837 | SSL_CTX_set_verify(ctx, verify, |
Willy Tarreau | 2ab8867 | 2017-07-05 18:23:03 +0200 | [diff] [blame] | 4838 | (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] | 4839 | if (verify & SSL_VERIFY_PEER) { |
Emeric Brun | ef42d92 | 2012-10-11 16:11:36 +0200 | [diff] [blame] | 4840 | if (srv->ssl_ctx.ca_file) { |
Emmanuel Hocdet | d4f9a60 | 2019-10-24 11:32:47 +0200 | [diff] [blame] | 4841 | /* set CAfile to verify */ |
Remi Tricot-Le Breton | 442b7f2 | 2021-01-25 17:19:41 +0100 | [diff] [blame] | 4842 | if (!ssl_set_verify_locations_file(ctx, srv->ssl_ctx.ca_file)) { |
Emmanuel Hocdet | d4f9a60 | 2019-10-24 11:32:47 +0200 | [diff] [blame] | 4843 | ha_alert("Proxy '%s', server '%s' [%s:%d] unable to set CA file '%s'.\n", |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 4844 | curproxy->id, srv->id, |
| 4845 | srv->conf.file, srv->conf.line, srv->ssl_ctx.ca_file); |
Emeric Brun | ef42d92 | 2012-10-11 16:11:36 +0200 | [diff] [blame] | 4846 | cfgerr++; |
| 4847 | } |
| 4848 | } |
Emeric Brun | 850efd5 | 2014-01-29 12:24:34 +0100 | [diff] [blame] | 4849 | else { |
| 4850 | if (global.ssl_server_verify == SSL_SERVER_VERIFY_REQUIRED) |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 4851 | ha_alert("Proxy '%s', server '%s' [%s:%d] verify is enabled by default but no CA file specified. If you're running on a LAN where you're certain to trust the server's certificate, please set an explicit 'verify none' statement on the 'server' line, or use 'ssl-server-verify none' in the global section to disable server-side verifications by default.\n", |
| 4852 | curproxy->id, srv->id, |
| 4853 | srv->conf.file, srv->conf.line); |
Emeric Brun | 850efd5 | 2014-01-29 12:24:34 +0100 | [diff] [blame] | 4854 | else |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 4855 | ha_alert("Proxy '%s', server '%s' [%s:%d] verify is enabled but no CA file specified.\n", |
| 4856 | curproxy->id, srv->id, |
| 4857 | srv->conf.file, srv->conf.line); |
Emeric Brun | 850efd5 | 2014-01-29 12:24:34 +0100 | [diff] [blame] | 4858 | cfgerr++; |
| 4859 | } |
Emeric Brun | ef42d92 | 2012-10-11 16:11:36 +0200 | [diff] [blame] | 4860 | #ifdef X509_V_FLAG_CRL_CHECK |
| 4861 | if (srv->ssl_ctx.crl_file) { |
Remi Tricot-Le Breton | 442b7f2 | 2021-01-25 17:19:41 +0100 | [diff] [blame] | 4862 | X509_STORE *store = SSL_CTX_get_cert_store(ctx); |
Emeric Brun | ef42d92 | 2012-10-11 16:11:36 +0200 | [diff] [blame] | 4863 | |
Emmanuel Hocdet | b270e81 | 2019-11-21 19:09:31 +0100 | [diff] [blame] | 4864 | if (!ssl_set_cert_crl_file(store, srv->ssl_ctx.crl_file)) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 4865 | ha_alert("Proxy '%s', server '%s' [%s:%d] unable to configure CRL file '%s'.\n", |
| 4866 | curproxy->id, srv->id, |
| 4867 | srv->conf.file, srv->conf.line, srv->ssl_ctx.crl_file); |
Emeric Brun | ef42d92 | 2012-10-11 16:11:36 +0200 | [diff] [blame] | 4868 | cfgerr++; |
| 4869 | } |
| 4870 | else { |
| 4871 | X509_STORE_set_flags(store, X509_V_FLAG_CRL_CHECK|X509_V_FLAG_CRL_CHECK_ALL); |
| 4872 | } |
| 4873 | } |
| 4874 | #endif |
| 4875 | } |
| 4876 | |
Remi Tricot-Le Breton | 442b7f2 | 2021-01-25 17:19:41 +0100 | [diff] [blame] | 4877 | SSL_CTX_set_session_cache_mode(ctx, SSL_SESS_CACHE_CLIENT | SSL_SESS_CACHE_NO_INTERNAL_STORE); |
| 4878 | SSL_CTX_sess_set_new_cb(ctx, ssl_sess_new_srv_cb); |
Emeric Brun | 94324a4 | 2012-10-11 14:00:19 +0200 | [diff] [blame] | 4879 | if (srv->ssl_ctx.ciphers && |
Remi Tricot-Le Breton | 442b7f2 | 2021-01-25 17:19:41 +0100 | [diff] [blame] | 4880 | !SSL_CTX_set_cipher_list(ctx, srv->ssl_ctx.ciphers)) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 4881 | ha_alert("Proxy '%s', server '%s' [%s:%d] : unable to set SSL cipher list to '%s'.\n", |
| 4882 | curproxy->id, srv->id, |
| 4883 | srv->conf.file, srv->conf.line, srv->ssl_ctx.ciphers); |
Emeric Brun | 94324a4 | 2012-10-11 14:00:19 +0200 | [diff] [blame] | 4884 | cfgerr++; |
| 4885 | } |
Dirkjan Bussink | 415150f | 2018-09-14 11:14:21 +0200 | [diff] [blame] | 4886 | |
Ilya Shipitsin | f34ed0b | 2020-11-21 14:37:34 +0500 | [diff] [blame] | 4887 | #ifdef HAVE_SSL_CTX_SET_CIPHERSUITES |
Dirkjan Bussink | 415150f | 2018-09-14 11:14:21 +0200 | [diff] [blame] | 4888 | if (srv->ssl_ctx.ciphersuites && |
Remi Tricot-Le Breton | 442b7f2 | 2021-01-25 17:19:41 +0100 | [diff] [blame] | 4889 | !SSL_CTX_set_ciphersuites(ctx, srv->ssl_ctx.ciphersuites)) { |
Dirkjan Bussink | 415150f | 2018-09-14 11:14:21 +0200 | [diff] [blame] | 4890 | ha_alert("Proxy '%s', server '%s' [%s:%d] : unable to set TLS 1.3 cipher suites to '%s'.\n", |
| 4891 | curproxy->id, srv->id, |
| 4892 | srv->conf.file, srv->conf.line, srv->ssl_ctx.ciphersuites); |
| 4893 | cfgerr++; |
| 4894 | } |
| 4895 | #endif |
Olivier Houchard | c756600 | 2018-11-20 23:33:50 +0100 | [diff] [blame] | 4896 | #if defined(OPENSSL_NPN_NEGOTIATED) && !defined(OPENSSL_NO_NEXTPROTONEG) |
| 4897 | if (srv->ssl_ctx.npn_str) |
Remi Tricot-Le Breton | 442b7f2 | 2021-01-25 17:19:41 +0100 | [diff] [blame] | 4898 | 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] | 4899 | #endif |
| 4900 | #ifdef TLSEXT_TYPE_application_layer_protocol_negotiation |
| 4901 | if (srv->ssl_ctx.alpn_str) |
| 4902 | SSL_CTX_set_alpn_protos(ctx, (unsigned char *)srv->ssl_ctx.alpn_str, srv->ssl_ctx.alpn_len); |
| 4903 | #endif |
| 4904 | |
Emeric Brun | 94324a4 | 2012-10-11 14:00:19 +0200 | [diff] [blame] | 4905 | |
| 4906 | return cfgerr; |
| 4907 | } |
| 4908 | |
Frédéric Lécaille | ec21652 | 2020-11-23 14:33:30 +0100 | [diff] [blame] | 4909 | /* |
| 4910 | * Create an initial CTX used to start the SSL connections. |
| 4911 | * May be used by QUIC xprt which makes usage of SSL sessions initialized from SSL_CTXs. |
| 4912 | * Returns 0 if succeeded, or something >0 if not. |
| 4913 | */ |
| 4914 | #ifdef USE_QUIC |
| 4915 | static int ssl_initial_ctx(struct bind_conf *bind_conf) |
| 4916 | { |
| 4917 | if (bind_conf->xprt == xprt_get(XPRT_QUIC)) |
| 4918 | return ssl_quic_initial_ctx(bind_conf); |
| 4919 | else |
| 4920 | return ssl_sock_initial_ctx(bind_conf); |
| 4921 | } |
| 4922 | #else |
| 4923 | static int ssl_initial_ctx(struct bind_conf *bind_conf) |
| 4924 | { |
| 4925 | return ssl_sock_initial_ctx(bind_conf); |
| 4926 | } |
| 4927 | #endif |
| 4928 | |
Willy Tarreau | 2a65ff0 | 2012-09-13 17:54:29 +0200 | [diff] [blame] | 4929 | /* 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] | 4930 | * be NULL, in which case nothing is done. Returns the number of errors |
| 4931 | * encountered. |
| 4932 | */ |
Willy Tarreau | 0320934 | 2016-12-22 17:08:28 +0100 | [diff] [blame] | 4933 | int ssl_sock_prepare_all_ctx(struct bind_conf *bind_conf) |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 4934 | { |
| 4935 | struct ebmb_node *node; |
| 4936 | struct sni_ctx *sni; |
| 4937 | int err = 0; |
William Lallemand | 8b45391 | 2019-11-21 15:48:10 +0100 | [diff] [blame] | 4938 | int errcode = 0; |
| 4939 | char *errmsg = NULL; |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 4940 | |
Willy Tarreau | fce0311 | 2015-01-15 21:32:40 +0100 | [diff] [blame] | 4941 | /* Automatic memory computations need to know we use SSL there */ |
| 4942 | global.ssl_used_frontend = 1; |
| 4943 | |
Emmanuel Hocdet | f6b37c6 | 2017-03-06 15:34:44 +0100 | [diff] [blame] | 4944 | /* Make sure openssl opens /dev/urandom before the chroot */ |
| 4945 | if (!ssl_initialize_random()) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 4946 | ha_alert("OpenSSL random data generator initialization failed.\n"); |
Emmanuel Hocdet | f6b37c6 | 2017-03-06 15:34:44 +0100 | [diff] [blame] | 4947 | err++; |
| 4948 | } |
| 4949 | /* Create initial_ctx used to start the ssl connection before do switchctx */ |
| 4950 | if (!bind_conf->initial_ctx) { |
Frédéric Lécaille | ec21652 | 2020-11-23 14:33:30 +0100 | [diff] [blame] | 4951 | err += ssl_initial_ctx(bind_conf); |
Emmanuel Hocdet | f6b37c6 | 2017-03-06 15:34:44 +0100 | [diff] [blame] | 4952 | /* It should not be necessary to call this function, but it's |
| 4953 | necessary first to check and move all initialisation related |
Frédéric Lécaille | ec21652 | 2020-11-23 14:33:30 +0100 | [diff] [blame] | 4954 | to initial_ctx in ssl_initial_ctx. */ |
William Lallemand | 8b45391 | 2019-11-21 15:48:10 +0100 | [diff] [blame] | 4955 | errcode |= ssl_sock_prepare_ctx(bind_conf, NULL, bind_conf->initial_ctx, &errmsg); |
Emmanuel Hocdet | f6b37c6 | 2017-03-06 15:34:44 +0100 | [diff] [blame] | 4956 | } |
Emeric Brun | 0bed994 | 2014-10-30 19:25:24 +0100 | [diff] [blame] | 4957 | if (bind_conf->default_ctx) |
William Lallemand | 8b45391 | 2019-11-21 15:48:10 +0100 | [diff] [blame] | 4958 | errcode |= ssl_sock_prepare_ctx(bind_conf, bind_conf->default_ssl_conf, bind_conf->default_ctx, &errmsg); |
Emeric Brun | 0bed994 | 2014-10-30 19:25:24 +0100 | [diff] [blame] | 4959 | |
Willy Tarreau | 2a65ff0 | 2012-09-13 17:54:29 +0200 | [diff] [blame] | 4960 | node = ebmb_first(&bind_conf->sni_ctx); |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 4961 | while (node) { |
| 4962 | sni = ebmb_entry(node, struct sni_ctx, name); |
Emeric Brun | 0bed994 | 2014-10-30 19:25:24 +0100 | [diff] [blame] | 4963 | if (!sni->order && sni->ctx != bind_conf->default_ctx) |
| 4964 | /* only initialize the CTX on its first occurrence and |
| 4965 | if it is not the default_ctx */ |
William Lallemand | 8b45391 | 2019-11-21 15:48:10 +0100 | [diff] [blame] | 4966 | errcode |= ssl_sock_prepare_ctx(bind_conf, sni->conf, sni->ctx, &errmsg); |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 4967 | node = ebmb_next(node); |
| 4968 | } |
| 4969 | |
Willy Tarreau | 2a65ff0 | 2012-09-13 17:54:29 +0200 | [diff] [blame] | 4970 | node = ebmb_first(&bind_conf->sni_w_ctx); |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 4971 | while (node) { |
| 4972 | sni = ebmb_entry(node, struct sni_ctx, name); |
William Lallemand | 8b45391 | 2019-11-21 15:48:10 +0100 | [diff] [blame] | 4973 | if (!sni->order && sni->ctx != bind_conf->default_ctx) { |
Emeric Brun | 0bed994 | 2014-10-30 19:25:24 +0100 | [diff] [blame] | 4974 | /* only initialize the CTX on its first occurrence and |
| 4975 | if it is not the default_ctx */ |
William Lallemand | 8b45391 | 2019-11-21 15:48:10 +0100 | [diff] [blame] | 4976 | errcode |= ssl_sock_prepare_ctx(bind_conf, sni->conf, sni->ctx, &errmsg); |
| 4977 | } |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 4978 | node = ebmb_next(node); |
| 4979 | } |
William Lallemand | 8b45391 | 2019-11-21 15:48:10 +0100 | [diff] [blame] | 4980 | |
| 4981 | if (errcode & ERR_WARN) { |
Tim Duesterhus | c0e820c | 2019-11-23 23:52:30 +0100 | [diff] [blame] | 4982 | ha_warning("%s", errmsg); |
William Lallemand | 8b45391 | 2019-11-21 15:48:10 +0100 | [diff] [blame] | 4983 | } else if (errcode & ERR_CODE) { |
Tim Duesterhus | c0e820c | 2019-11-23 23:52:30 +0100 | [diff] [blame] | 4984 | ha_alert("%s", errmsg); |
William Lallemand | 8b45391 | 2019-11-21 15:48:10 +0100 | [diff] [blame] | 4985 | err++; |
| 4986 | } |
| 4987 | |
| 4988 | free(errmsg); |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 4989 | return err; |
| 4990 | } |
| 4991 | |
Willy Tarreau | 55d3791 | 2016-12-21 23:38:39 +0100 | [diff] [blame] | 4992 | /* Prepares all the contexts for a bind_conf and allocates the shared SSL |
| 4993 | * context if needed. Returns < 0 on error, 0 on success. The warnings and |
| 4994 | * alerts are directly emitted since the rest of the stack does it below. |
| 4995 | */ |
| 4996 | int ssl_sock_prepare_bind_conf(struct bind_conf *bind_conf) |
| 4997 | { |
| 4998 | struct proxy *px = bind_conf->frontend; |
| 4999 | int alloc_ctx; |
| 5000 | int err; |
| 5001 | |
| 5002 | if (!bind_conf->is_ssl) { |
| 5003 | if (bind_conf->default_ctx) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 5004 | ha_warning("Proxy '%s': A certificate was specified but SSL was not enabled on bind '%s' at [%s:%d] (use 'ssl').\n", |
| 5005 | px->id, bind_conf->arg, bind_conf->file, bind_conf->line); |
Willy Tarreau | 55d3791 | 2016-12-21 23:38:39 +0100 | [diff] [blame] | 5006 | } |
| 5007 | return 0; |
| 5008 | } |
| 5009 | if (!bind_conf->default_ctx) { |
Emmanuel Hocdet | aa0d637 | 2017-08-09 11:24:25 +0200 | [diff] [blame] | 5010 | if (bind_conf->strict_sni && !bind_conf->generate_certs) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 5011 | ha_warning("Proxy '%s': no SSL certificate specified for bind '%s' at [%s:%d], ssl connections will fail (use 'crt').\n", |
| 5012 | px->id, bind_conf->arg, bind_conf->file, bind_conf->line); |
Emmanuel Hocdet | aa0d637 | 2017-08-09 11:24:25 +0200 | [diff] [blame] | 5013 | } |
| 5014 | else { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 5015 | ha_alert("Proxy '%s': no SSL certificate specified for bind '%s' at [%s:%d] (use 'crt').\n", |
| 5016 | px->id, bind_conf->arg, bind_conf->file, bind_conf->line); |
Emmanuel Hocdet | aa0d637 | 2017-08-09 11:24:25 +0200 | [diff] [blame] | 5017 | return -1; |
| 5018 | } |
Willy Tarreau | 55d3791 | 2016-12-21 23:38:39 +0100 | [diff] [blame] | 5019 | } |
William Lallemand | c61c0b3 | 2017-12-04 18:46:39 +0100 | [diff] [blame] | 5020 | if (!ssl_shctx && global.tune.sslcachesize) { |
William Lallemand | c3cd35f | 2017-11-28 11:04:43 +0100 | [diff] [blame] | 5021 | alloc_ctx = shctx_init(&ssl_shctx, global.tune.sslcachesize, |
Frédéric Lécaille | b7838af | 2018-10-22 16:21:39 +0200 | [diff] [blame] | 5022 | sizeof(struct sh_ssl_sess_hdr) + SHSESS_BLOCK_MIN_SIZE, -1, |
William Lallemand | c3cd35f | 2017-11-28 11:04:43 +0100 | [diff] [blame] | 5023 | sizeof(*sh_ssl_sess_tree), |
| 5024 | ((global.nbthread > 1) || (!global_ssl.private_cache && (global.nbproc > 1))) ? 1 : 0); |
Frédéric Lécaille | 4c8aa11 | 2018-10-25 20:22:46 +0200 | [diff] [blame] | 5025 | if (alloc_ctx <= 0) { |
William Lallemand | c3cd35f | 2017-11-28 11:04:43 +0100 | [diff] [blame] | 5026 | if (alloc_ctx == SHCTX_E_INIT_LOCK) |
| 5027 | 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"); |
| 5028 | else |
| 5029 | ha_alert("Unable to allocate SSL session cache.\n"); |
| 5030 | return -1; |
| 5031 | } |
| 5032 | /* free block callback */ |
| 5033 | ssl_shctx->free_block = sh_ssl_sess_free_blocks; |
| 5034 | /* init the root tree within the extra space */ |
| 5035 | sh_ssl_sess_tree = (void *)ssl_shctx + sizeof(struct shared_context); |
| 5036 | *sh_ssl_sess_tree = EB_ROOT_UNIQUE; |
Willy Tarreau | 55d3791 | 2016-12-21 23:38:39 +0100 | [diff] [blame] | 5037 | } |
Willy Tarreau | 55d3791 | 2016-12-21 23:38:39 +0100 | [diff] [blame] | 5038 | err = 0; |
| 5039 | /* initialize all certificate contexts */ |
| 5040 | err += ssl_sock_prepare_all_ctx(bind_conf); |
| 5041 | |
| 5042 | /* initialize CA variables if the certificates generation is enabled */ |
| 5043 | err += ssl_sock_load_ca(bind_conf); |
| 5044 | |
| 5045 | return -err; |
| 5046 | } |
Christopher Faulet | 77fe80c | 2015-07-29 13:02:40 +0200 | [diff] [blame] | 5047 | |
William Lallemand | 9d11868 | 2021-12-30 11:25:43 +0100 | [diff] [blame] | 5048 | /* release ssl context allocated for servers. Most of the field free here |
| 5049 | * must also be allocated in srv_ssl_settings_cpy() */ |
Christopher Faulet | 77fe80c | 2015-07-29 13:02:40 +0200 | [diff] [blame] | 5050 | void ssl_sock_free_srv_ctx(struct server *srv) |
| 5051 | { |
Olivier Houchard | c756600 | 2018-11-20 23:33:50 +0100 | [diff] [blame] | 5052 | #ifdef TLSEXT_TYPE_application_layer_protocol_negotiation |
William Lallemand | 9d11868 | 2021-12-30 11:25:43 +0100 | [diff] [blame] | 5053 | ha_free(&srv->ssl_ctx.alpn_str); |
Olivier Houchard | c756600 | 2018-11-20 23:33:50 +0100 | [diff] [blame] | 5054 | #endif |
Lukas Tribus | da95fd9 | 2018-11-25 13:21:27 +0100 | [diff] [blame] | 5055 | #ifdef OPENSSL_NPN_NEGOTIATED |
William Lallemand | 9d11868 | 2021-12-30 11:25:43 +0100 | [diff] [blame] | 5056 | ha_free(&srv->ssl_ctx.npn_str); |
Lukas Tribus | 7706b85 | 2018-11-26 22:57:17 +0100 | [diff] [blame] | 5057 | #endif |
Christopher Faulet | 58feb49 | 2020-10-07 13:20:23 +0200 | [diff] [blame] | 5058 | if (srv->ssl_ctx.reused_sess) { |
| 5059 | int i; |
| 5060 | |
William Lallemand | c78ac5a | 2021-11-17 02:59:21 +0100 | [diff] [blame] | 5061 | for (i = 0; i < global.nbthread; i++) { |
Willy Tarreau | e709e82 | 2021-02-26 21:06:32 +0100 | [diff] [blame] | 5062 | ha_free(&srv->ssl_ctx.reused_sess[i].ptr); |
William Lallemand | c78ac5a | 2021-11-17 02:59:21 +0100 | [diff] [blame] | 5063 | ha_free(&srv->ssl_ctx.reused_sess[i].sni); |
| 5064 | } |
Willy Tarreau | e709e82 | 2021-02-26 21:06:32 +0100 | [diff] [blame] | 5065 | ha_free(&srv->ssl_ctx.reused_sess); |
Christopher Faulet | 58feb49 | 2020-10-07 13:20:23 +0200 | [diff] [blame] | 5066 | } |
| 5067 | |
Willy Tarreau | e709e82 | 2021-02-26 21:06:32 +0100 | [diff] [blame] | 5068 | if (srv->ssl_ctx.ctx) { |
Christopher Faulet | 77fe80c | 2015-07-29 13:02:40 +0200 | [diff] [blame] | 5069 | SSL_CTX_free(srv->ssl_ctx.ctx); |
Willy Tarreau | e709e82 | 2021-02-26 21:06:32 +0100 | [diff] [blame] | 5070 | srv->ssl_ctx.ctx = NULL; |
| 5071 | } |
William Lallemand | 9d11868 | 2021-12-30 11:25:43 +0100 | [diff] [blame] | 5072 | |
| 5073 | ha_free(&srv->ssl_ctx.ca_file); |
| 5074 | ha_free(&srv->ssl_ctx.crl_file); |
| 5075 | ha_free(&srv->ssl_ctx.client_crt); |
| 5076 | ha_free(&srv->ssl_ctx.verify_host); |
| 5077 | #ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME |
| 5078 | ha_free(&srv->sni_expr); |
William Lallemand | 17d0caa | 2022-03-16 17:48:19 +0100 | [diff] [blame] | 5079 | release_sample_expr(srv->ssl_ctx.sni); |
| 5080 | srv->ssl_ctx.sni = NULL; |
William Lallemand | 9d11868 | 2021-12-30 11:25:43 +0100 | [diff] [blame] | 5081 | #endif |
| 5082 | ha_free(&srv->ssl_ctx.ciphers); |
| 5083 | #ifdef HAVE_SSL_CTX_SET_CIPHERSUITES |
| 5084 | ha_free(&srv->ssl_ctx.ciphersuites); |
| 5085 | #endif |
William Lallemand | ec3d2d6 | 2021-12-30 14:45:19 +0100 | [diff] [blame] | 5086 | /* If there is a certificate we must unlink the ckch instance */ |
| 5087 | ckch_inst_free(srv->ssl_ctx.inst); |
Christopher Faulet | 77fe80c | 2015-07-29 13:02:40 +0200 | [diff] [blame] | 5088 | } |
| 5089 | |
Willy Tarreau | 2a65ff0 | 2012-09-13 17:54:29 +0200 | [diff] [blame] | 5090 | /* 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] | 5091 | * be NULL, in which case nothing is done. The default_ctx is nullified too. |
| 5092 | */ |
Willy Tarreau | 2a65ff0 | 2012-09-13 17:54:29 +0200 | [diff] [blame] | 5093 | void ssl_sock_free_all_ctx(struct bind_conf *bind_conf) |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 5094 | { |
| 5095 | struct ebmb_node *node, *back; |
| 5096 | struct sni_ctx *sni; |
| 5097 | |
Willy Tarreau | 2a65ff0 | 2012-09-13 17:54:29 +0200 | [diff] [blame] | 5098 | node = ebmb_first(&bind_conf->sni_ctx); |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 5099 | while (node) { |
| 5100 | sni = ebmb_entry(node, struct sni_ctx, name); |
| 5101 | back = ebmb_next(node); |
| 5102 | ebmb_delete(node); |
William Lallemand | 02e19a5 | 2020-04-08 16:11:26 +0200 | [diff] [blame] | 5103 | SSL_CTX_free(sni->ctx); |
Willy Tarreau | 2b71810 | 2021-04-21 07:32:39 +0200 | [diff] [blame] | 5104 | LIST_DELETE(&sni->by_ckch_inst); |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 5105 | free(sni); |
| 5106 | node = back; |
| 5107 | } |
| 5108 | |
Willy Tarreau | 2a65ff0 | 2012-09-13 17:54:29 +0200 | [diff] [blame] | 5109 | node = ebmb_first(&bind_conf->sni_w_ctx); |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 5110 | while (node) { |
| 5111 | sni = ebmb_entry(node, struct sni_ctx, name); |
| 5112 | back = ebmb_next(node); |
| 5113 | ebmb_delete(node); |
William Lallemand | 02e19a5 | 2020-04-08 16:11:26 +0200 | [diff] [blame] | 5114 | SSL_CTX_free(sni->ctx); |
Willy Tarreau | 2b71810 | 2021-04-21 07:32:39 +0200 | [diff] [blame] | 5115 | LIST_DELETE(&sni->by_ckch_inst); |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 5116 | free(sni); |
| 5117 | node = back; |
| 5118 | } |
William Lallemand | b240869 | 2020-06-24 09:54:29 +0200 | [diff] [blame] | 5119 | |
Emmanuel Hocdet | f6b37c6 | 2017-03-06 15:34:44 +0100 | [diff] [blame] | 5120 | SSL_CTX_free(bind_conf->initial_ctx); |
| 5121 | bind_conf->initial_ctx = NULL; |
William Lallemand | 02e19a5 | 2020-04-08 16:11:26 +0200 | [diff] [blame] | 5122 | SSL_CTX_free(bind_conf->default_ctx); |
Willy Tarreau | 2a65ff0 | 2012-09-13 17:54:29 +0200 | [diff] [blame] | 5123 | bind_conf->default_ctx = NULL; |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 5124 | bind_conf->default_ssl_conf = NULL; |
Emeric Brun | e1f38db | 2012-09-03 20:36:47 +0200 | [diff] [blame] | 5125 | } |
William Lallemand | b240869 | 2020-06-24 09:54:29 +0200 | [diff] [blame] | 5126 | |
| 5127 | |
| 5128 | void ssl_sock_deinit() |
| 5129 | { |
| 5130 | crtlist_deinit(); /* must be free'd before the ckchs */ |
| 5131 | ckch_deinit(); |
| 5132 | } |
| 5133 | REGISTER_POST_DEINIT(ssl_sock_deinit); |
Emeric Brun | e1f38db | 2012-09-03 20:36:47 +0200 | [diff] [blame] | 5134 | |
Willy Tarreau | 795cdab | 2016-12-22 17:30:54 +0100 | [diff] [blame] | 5135 | /* Destroys all the contexts for a bind_conf. This is used during deinit(). */ |
| 5136 | void ssl_sock_destroy_bind_conf(struct bind_conf *bind_conf) |
| 5137 | { |
| 5138 | ssl_sock_free_ca(bind_conf); |
| 5139 | ssl_sock_free_all_ctx(bind_conf); |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 5140 | ssl_sock_free_ssl_conf(&bind_conf->ssl_conf); |
Willy Tarreau | 795cdab | 2016-12-22 17:30:54 +0100 | [diff] [blame] | 5141 | free(bind_conf->ca_sign_file); |
| 5142 | free(bind_conf->ca_sign_pass); |
Willy Tarreau | 17b4aa1 | 2018-07-17 10:05:32 +0200 | [diff] [blame] | 5143 | if (bind_conf->keys_ref && !--bind_conf->keys_ref->refcount) { |
Willy Tarreau | 795cdab | 2016-12-22 17:30:54 +0100 | [diff] [blame] | 5144 | free(bind_conf->keys_ref->filename); |
| 5145 | free(bind_conf->keys_ref->tlskeys); |
Willy Tarreau | 2b71810 | 2021-04-21 07:32:39 +0200 | [diff] [blame] | 5146 | LIST_DELETE(&bind_conf->keys_ref->list); |
Willy Tarreau | 795cdab | 2016-12-22 17:30:54 +0100 | [diff] [blame] | 5147 | free(bind_conf->keys_ref); |
| 5148 | } |
| 5149 | bind_conf->keys_ref = NULL; |
Willy Tarreau | 795cdab | 2016-12-22 17:30:54 +0100 | [diff] [blame] | 5150 | bind_conf->ca_sign_pass = NULL; |
| 5151 | bind_conf->ca_sign_file = NULL; |
Willy Tarreau | 795cdab | 2016-12-22 17:30:54 +0100 | [diff] [blame] | 5152 | } |
| 5153 | |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 5154 | /* Load CA cert file and private key used to generate certificates */ |
| 5155 | int |
Willy Tarreau | 0320934 | 2016-12-22 17:08:28 +0100 | [diff] [blame] | 5156 | ssl_sock_load_ca(struct bind_conf *bind_conf) |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 5157 | { |
Willy Tarreau | 0320934 | 2016-12-22 17:08:28 +0100 | [diff] [blame] | 5158 | struct proxy *px = bind_conf->frontend; |
Shimi Gersner | 5846c49 | 2020-08-23 13:58:12 +0300 | [diff] [blame] | 5159 | struct cert_key_and_chain *ckch = NULL; |
| 5160 | int ret = 0; |
| 5161 | char *err = NULL; |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 5162 | |
Christopher Faulet | f8bb0ce | 2017-09-15 09:52:49 +0200 | [diff] [blame] | 5163 | if (!bind_conf->generate_certs) |
Shimi Gersner | 5846c49 | 2020-08-23 13:58:12 +0300 | [diff] [blame] | 5164 | return ret; |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 5165 | |
Emmanuel Hocdet | fdec789 | 2017-01-13 17:48:18 +0100 | [diff] [blame] | 5166 | #if (defined SSL_CTRL_SET_TLSEXT_HOSTNAME && !defined SSL_NO_GENERATE_CERTIFICATES) |
Emeric Brun | 821bb9b | 2017-06-15 16:37:39 +0200 | [diff] [blame] | 5167 | if (global_ssl.ctx_cache) { |
Willy Tarreau | ef93460 | 2016-12-22 23:12:01 +0100 | [diff] [blame] | 5168 | ssl_ctx_lru_tree = lru64_new(global_ssl.ctx_cache); |
Emeric Brun | 821bb9b | 2017-06-15 16:37:39 +0200 | [diff] [blame] | 5169 | } |
Christopher Faulet | d2cab92 | 2015-07-28 16:03:47 +0200 | [diff] [blame] | 5170 | ssl_ctx_lru_seed = (unsigned int)time(NULL); |
Emeric Brun | 821bb9b | 2017-06-15 16:37:39 +0200 | [diff] [blame] | 5171 | ssl_ctx_serial = now_ms; |
Willy Tarreau | a84c267 | 2015-10-09 12:10:13 +0200 | [diff] [blame] | 5172 | #endif |
Christopher Faulet | d2cab92 | 2015-07-28 16:03:47 +0200 | [diff] [blame] | 5173 | |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 5174 | if (!bind_conf->ca_sign_file) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 5175 | ha_alert("Proxy '%s': cannot enable certificate generation, " |
| 5176 | "no CA certificate File configured at [%s:%d].\n", |
| 5177 | px->id, bind_conf->file, bind_conf->line); |
Shimi Gersner | 5846c49 | 2020-08-23 13:58:12 +0300 | [diff] [blame] | 5178 | goto failed; |
Christopher Faulet | c6f02fb | 2015-10-09 10:53:31 +0200 | [diff] [blame] | 5179 | } |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 5180 | |
Shimi Gersner | 5846c49 | 2020-08-23 13:58:12 +0300 | [diff] [blame] | 5181 | /* Allocate cert structure */ |
Tim Duesterhus | e52b6e5 | 2020-09-12 20:26:43 +0200 | [diff] [blame] | 5182 | ckch = calloc(1, sizeof(*ckch)); |
Shimi Gersner | 5846c49 | 2020-08-23 13:58:12 +0300 | [diff] [blame] | 5183 | if (!ckch) { |
| 5184 | ha_alert("Proxy '%s': Failed to read CA certificate file '%s' at [%s:%d]. Chain allocation failure\n", |
| 5185 | px->id, bind_conf->ca_sign_file, bind_conf->file, bind_conf->line); |
| 5186 | goto failed; |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 5187 | } |
Shimi Gersner | 5846c49 | 2020-08-23 13:58:12 +0300 | [diff] [blame] | 5188 | |
| 5189 | /* Try to parse file */ |
| 5190 | if (ssl_sock_load_files_into_ckch(bind_conf->ca_sign_file, ckch, &err)) { |
| 5191 | ha_alert("Proxy '%s': Failed to read CA certificate file '%s' at [%s:%d]. Chain loading failed: %s\n", |
| 5192 | 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] | 5193 | free(err); |
Shimi Gersner | 5846c49 | 2020-08-23 13:58:12 +0300 | [diff] [blame] | 5194 | goto failed; |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 5195 | } |
Shimi Gersner | 5846c49 | 2020-08-23 13:58:12 +0300 | [diff] [blame] | 5196 | |
| 5197 | /* Fail if missing cert or pkey */ |
| 5198 | if ((!ckch->cert) || (!ckch->key)) { |
| 5199 | ha_alert("Proxy '%s': Failed to read CA certificate file '%s' at [%s:%d]. Chain missing certificate or private key\n", |
| 5200 | px->id, bind_conf->ca_sign_file, bind_conf->file, bind_conf->line); |
| 5201 | goto failed; |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 5202 | } |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 5203 | |
Shimi Gersner | 5846c49 | 2020-08-23 13:58:12 +0300 | [diff] [blame] | 5204 | /* Final assignment to bind */ |
| 5205 | bind_conf->ca_sign_ckch = ckch; |
| 5206 | return ret; |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 5207 | |
Shimi Gersner | 5846c49 | 2020-08-23 13:58:12 +0300 | [diff] [blame] | 5208 | failed: |
| 5209 | if (ckch) { |
| 5210 | ssl_sock_free_cert_key_and_chain_contents(ckch); |
| 5211 | free(ckch); |
| 5212 | } |
| 5213 | |
Christopher Faulet | c6f02fb | 2015-10-09 10:53:31 +0200 | [diff] [blame] | 5214 | bind_conf->generate_certs = 0; |
Shimi Gersner | 5846c49 | 2020-08-23 13:58:12 +0300 | [diff] [blame] | 5215 | ret++; |
| 5216 | return ret; |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 5217 | } |
| 5218 | |
| 5219 | /* Release CA cert and private key used to generate certificated */ |
| 5220 | void |
| 5221 | ssl_sock_free_ca(struct bind_conf *bind_conf) |
| 5222 | { |
Shimi Gersner | 5846c49 | 2020-08-23 13:58:12 +0300 | [diff] [blame] | 5223 | if (bind_conf->ca_sign_ckch) { |
| 5224 | 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] | 5225 | ha_free(&bind_conf->ca_sign_ckch); |
Shimi Gersner | 5846c49 | 2020-08-23 13:58:12 +0300 | [diff] [blame] | 5226 | } |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 5227 | } |
| 5228 | |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5229 | /* |
Frédéric Lécaille | 5aa9241 | 2020-11-09 15:59:23 +0100 | [diff] [blame] | 5230 | * Try to allocate the BIO and SSL session objects of <conn> connection with <bio> and |
| 5231 | * <ssl> as addresses, <bio_meth> as BIO method and <ssl_ctx> as SSL context inherited settings. |
| 5232 | * Connect the allocated BIO to the allocated SSL session. Also set <ctx> as address of custom |
| 5233 | * 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] | 5234 | * 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] | 5235 | * as parameters to this function. |
| 5236 | * Return 0 if succeeded, -1 if not. If failed, sets the ->err_code member of <conn> to |
| 5237 | * CO_ER_SSL_NO_MEM. |
| 5238 | */ |
| 5239 | int ssl_bio_and_sess_init(struct connection *conn, SSL_CTX *ssl_ctx, |
| 5240 | SSL **ssl, BIO **bio, BIO_METHOD *bio_meth, void *ctx) |
| 5241 | { |
| 5242 | int retry = 1; |
| 5243 | |
| 5244 | retry: |
| 5245 | /* Alloc a new SSL session. */ |
| 5246 | *ssl = SSL_new(ssl_ctx); |
| 5247 | if (!*ssl) { |
| 5248 | if (!retry--) |
| 5249 | goto err; |
| 5250 | |
| 5251 | pool_gc(NULL); |
| 5252 | goto retry; |
| 5253 | } |
| 5254 | |
| 5255 | *bio = BIO_new(bio_meth); |
| 5256 | if (!*bio) { |
| 5257 | SSL_free(*ssl); |
| 5258 | *ssl = NULL; |
| 5259 | if (!retry--) |
| 5260 | goto err; |
| 5261 | |
| 5262 | pool_gc(NULL); |
| 5263 | goto retry; |
| 5264 | } |
| 5265 | |
| 5266 | BIO_set_data(*bio, ctx); |
| 5267 | SSL_set_bio(*ssl, *bio, *bio); |
| 5268 | |
| 5269 | /* set connection pointer. */ |
| 5270 | if (!SSL_set_ex_data(*ssl, ssl_app_data_index, conn)) { |
| 5271 | SSL_free(*ssl); |
| 5272 | *ssl = NULL; |
| 5273 | if (!retry--) |
| 5274 | goto err; |
| 5275 | |
| 5276 | pool_gc(NULL); |
| 5277 | goto retry; |
| 5278 | } |
| 5279 | |
| 5280 | return 0; |
| 5281 | |
| 5282 | err: |
| 5283 | conn->err_code = CO_ER_SSL_NO_MEM; |
| 5284 | return -1; |
| 5285 | } |
| 5286 | |
Olivier Houchard | bc5ce92 | 2021-03-05 23:47:00 +0100 | [diff] [blame] | 5287 | /* This function is called when all the XPRT have been initialized. We can |
| 5288 | * now attempt to start the SSL handshake. |
| 5289 | */ |
| 5290 | static int ssl_sock_start(struct connection *conn, void *xprt_ctx) |
| 5291 | { |
| 5292 | struct ssl_sock_ctx *ctx = xprt_ctx; |
| 5293 | |
| 5294 | if (ctx->xprt->start) { |
| 5295 | int ret; |
| 5296 | |
| 5297 | ret = ctx->xprt->start(conn, ctx->xprt_ctx); |
| 5298 | if (ret < 0) |
| 5299 | return ret; |
| 5300 | } |
| 5301 | tasklet_wakeup(ctx->wait_event.tasklet); |
| 5302 | |
| 5303 | return 0; |
| 5304 | } |
| 5305 | |
Frédéric Lécaille | 5aa9241 | 2020-11-09 15:59:23 +0100 | [diff] [blame] | 5306 | /* |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5307 | * This function is called if SSL * context is not yet allocated. The function |
| 5308 | * is designed to be called before any other data-layer operation and sets the |
| 5309 | * handshake flag on the connection. It is safe to call it multiple times. |
| 5310 | * It returns 0 on success and -1 in error case. |
| 5311 | */ |
Olivier Houchard | e179d0e | 2019-03-21 18:27:17 +0100 | [diff] [blame] | 5312 | static int ssl_sock_init(struct connection *conn, void **xprt_ctx) |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5313 | { |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 5314 | struct ssl_sock_ctx *ctx; |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5315 | /* already initialized */ |
Olivier Houchard | e179d0e | 2019-03-21 18:27:17 +0100 | [diff] [blame] | 5316 | if (*xprt_ctx) |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5317 | return 0; |
| 5318 | |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 5319 | ctx = pool_alloc(ssl_sock_ctx_pool); |
| 5320 | if (!ctx) { |
| 5321 | conn->err_code = CO_ER_SSL_NO_MEM; |
| 5322 | return -1; |
| 5323 | } |
Willy Tarreau | 3c39a7d | 2019-06-14 14:42:29 +0200 | [diff] [blame] | 5324 | ctx->wait_event.tasklet = tasklet_new(); |
| 5325 | if (!ctx->wait_event.tasklet) { |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 5326 | conn->err_code = CO_ER_SSL_NO_MEM; |
| 5327 | pool_free(ssl_sock_ctx_pool, ctx); |
| 5328 | return -1; |
| 5329 | } |
Willy Tarreau | 3c39a7d | 2019-06-14 14:42:29 +0200 | [diff] [blame] | 5330 | ctx->wait_event.tasklet->process = ssl_sock_io_cb; |
| 5331 | ctx->wait_event.tasklet->context = ctx; |
Willy Tarreau | 9205ab3 | 2021-02-25 15:31:00 +0100 | [diff] [blame] | 5332 | 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] | 5333 | ctx->wait_event.events = 0; |
Olivier Houchard | 7b5fd1e | 2019-02-28 18:10:45 +0100 | [diff] [blame] | 5334 | ctx->sent_early_data = 0; |
Olivier Houchard | 54907bb | 2019-12-19 15:02:39 +0100 | [diff] [blame] | 5335 | ctx->early_buf = BUF_NULL; |
Olivier Houchard | a8955d5 | 2019-04-07 22:00:38 +0200 | [diff] [blame] | 5336 | ctx->conn = conn; |
Willy Tarreau | 113d52b | 2020-01-10 09:20:26 +0100 | [diff] [blame] | 5337 | ctx->subs = NULL; |
Emeric Brun | 5762a0d | 2019-09-06 15:36:02 +0200 | [diff] [blame] | 5338 | ctx->xprt_st = 0; |
| 5339 | ctx->xprt_ctx = NULL; |
Olivier Houchard | a8955d5 | 2019-04-07 22:00:38 +0200 | [diff] [blame] | 5340 | |
| 5341 | /* Only work with sockets for now, this should be adapted when we'll |
| 5342 | * add QUIC support. |
| 5343 | */ |
| 5344 | ctx->xprt = xprt_get(XPRT_RAW); |
Olivier Houchard | 19afb27 | 2019-05-23 18:24:07 +0200 | [diff] [blame] | 5345 | if (ctx->xprt->init) { |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 5346 | if (ctx->xprt->init(conn, &ctx->xprt_ctx) != 0) |
| 5347 | goto err; |
Olivier Houchard | 19afb27 | 2019-05-23 18:24:07 +0200 | [diff] [blame] | 5348 | } |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 5349 | |
Willy Tarreau | 20879a0 | 2012-12-03 16:32:10 +0100 | [diff] [blame] | 5350 | if (global.maxsslconn && sslconns >= global.maxsslconn) { |
| 5351 | conn->err_code = CO_ER_SSL_TOO_MANY; |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 5352 | goto err; |
Willy Tarreau | 20879a0 | 2012-12-03 16:32:10 +0100 | [diff] [blame] | 5353 | } |
Willy Tarreau | 403edff | 2012-09-06 11:58:37 +0200 | [diff] [blame] | 5354 | |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5355 | /* If it is in client mode initiate SSL session |
| 5356 | in connect state otherwise accept state */ |
Willy Tarreau | 3fdb366 | 2012-11-12 00:42:33 +0100 | [diff] [blame] | 5357 | if (objt_server(conn->target)) { |
Frédéric Lécaille | 5aa9241 | 2020-11-09 15:59:23 +0100 | [diff] [blame] | 5358 | if (ssl_bio_and_sess_init(conn, __objt_server(conn->target)->ssl_ctx.ctx, |
| 5359 | &ctx->ssl, &ctx->bio, ha_meth, ctx) == -1) |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 5360 | goto err; |
Emeric Brun | 5547615 | 2014-11-12 17:35:37 +0100 | [diff] [blame] | 5361 | |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 5362 | SSL_set_connect_state(ctx->ssl); |
William Lallemand | 3ce6eed | 2021-02-08 10:43:44 +0100 | [diff] [blame] | 5363 | 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] | 5364 | if (__objt_server(conn->target)->ssl_ctx.reused_sess[tid].ptr) { |
| 5365 | const unsigned char *ptr = __objt_server(conn->target)->ssl_ctx.reused_sess[tid].ptr; |
| 5366 | 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] | 5367 | if (sess && !SSL_set_session(ctx->ssl, sess)) { |
Olivier Houchard | e6060c5 | 2017-11-16 17:42:52 +0100 | [diff] [blame] | 5368 | SSL_SESSION_free(sess); |
Willy Tarreau | 61cfdf4 | 2021-02-20 10:46:51 +0100 | [diff] [blame] | 5369 | ha_free(&__objt_server(conn->target)->ssl_ctx.reused_sess[tid].ptr); |
Olivier Houchard | e6060c5 | 2017-11-16 17:42:52 +0100 | [diff] [blame] | 5370 | } else if (sess) { |
| 5371 | SSL_SESSION_free(sess); |
Emeric Brun | 5547615 | 2014-11-12 17:35:37 +0100 | [diff] [blame] | 5372 | } |
| 5373 | } |
William Lallemand | 3ce6eed | 2021-02-08 10:43:44 +0100 | [diff] [blame] | 5374 | 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] | 5375 | |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5376 | /* leave init state and start handshake */ |
Willy Tarreau | 0573747 | 2012-09-04 08:03:39 +0200 | [diff] [blame] | 5377 | conn->flags |= CO_FL_SSL_WAIT_HS | CO_FL_WAIT_L6_CONN; |
Willy Tarreau | 403edff | 2012-09-06 11:58:37 +0200 | [diff] [blame] | 5378 | |
Willy Tarreau | 4781b15 | 2021-04-06 13:53:36 +0200 | [diff] [blame] | 5379 | _HA_ATOMIC_INC(&sslconns); |
| 5380 | _HA_ATOMIC_INC(&totalsslconns); |
Olivier Houchard | e179d0e | 2019-03-21 18:27:17 +0100 | [diff] [blame] | 5381 | *xprt_ctx = ctx; |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5382 | return 0; |
| 5383 | } |
Willy Tarreau | 3fdb366 | 2012-11-12 00:42:33 +0100 | [diff] [blame] | 5384 | else if (objt_listener(conn->target)) { |
Frédéric Lécaille | 5aa9241 | 2020-11-09 15:59:23 +0100 | [diff] [blame] | 5385 | struct bind_conf *bc = __objt_listener(conn->target)->bind_conf; |
Willy Tarreau | fba03cd | 2014-11-13 13:48:58 +0100 | [diff] [blame] | 5386 | |
Frédéric Lécaille | 5aa9241 | 2020-11-09 15:59:23 +0100 | [diff] [blame] | 5387 | if (ssl_bio_and_sess_init(conn, bc->initial_ctx, |
| 5388 | &ctx->ssl, &ctx->bio, ha_meth, ctx) == -1) |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 5389 | goto err; |
Emeric Brun | 5547615 | 2014-11-12 17:35:37 +0100 | [diff] [blame] | 5390 | |
Ilya Shipitsin | b9b84a4 | 2020-10-24 23:42:30 +0500 | [diff] [blame] | 5391 | #ifdef SSL_READ_EARLY_DATA_SUCCESS |
Frédéric Lécaille | 5aa9241 | 2020-11-09 15:59:23 +0100 | [diff] [blame] | 5392 | if (bc->ssl_conf.early_data) { |
Frédéric Lécaille | 3139c1b | 2020-01-24 14:56:18 +0100 | [diff] [blame] | 5393 | b_alloc(&ctx->early_buf); |
| 5394 | SSL_set_max_early_data(ctx->ssl, |
| 5395 | /* Only allow early data if we managed to allocate |
| 5396 | * a buffer. |
| 5397 | */ |
| 5398 | (!b_is_null(&ctx->early_buf)) ? |
| 5399 | global.tune.bufsize - global.tune.maxrewrite : 0); |
| 5400 | } |
| 5401 | #endif |
| 5402 | |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 5403 | SSL_set_accept_state(ctx->ssl); |
Emeric Brun | e1f38db | 2012-09-03 20:36:47 +0200 | [diff] [blame] | 5404 | |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5405 | /* leave init state and start handshake */ |
Willy Tarreau | 0573747 | 2012-09-04 08:03:39 +0200 | [diff] [blame] | 5406 | conn->flags |= CO_FL_SSL_WAIT_HS | CO_FL_WAIT_L6_CONN; |
Ilya Shipitsin | b9b84a4 | 2020-10-24 23:42:30 +0500 | [diff] [blame] | 5407 | #ifdef SSL_READ_EARLY_DATA_SUCCESS |
Willy Tarreau | a84986a | 2021-02-03 11:21:38 +0100 | [diff] [blame] | 5408 | if (bc->ssl_conf.early_data) |
| 5409 | conn->flags |= CO_FL_EARLY_SSL_HS; |
Olivier Houchard | c2aae74 | 2017-09-22 18:26:28 +0200 | [diff] [blame] | 5410 | #endif |
Willy Tarreau | 403edff | 2012-09-06 11:58:37 +0200 | [diff] [blame] | 5411 | |
Willy Tarreau | 4781b15 | 2021-04-06 13:53:36 +0200 | [diff] [blame] | 5412 | _HA_ATOMIC_INC(&sslconns); |
| 5413 | _HA_ATOMIC_INC(&totalsslconns); |
Olivier Houchard | e179d0e | 2019-03-21 18:27:17 +0100 | [diff] [blame] | 5414 | *xprt_ctx = ctx; |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5415 | return 0; |
| 5416 | } |
| 5417 | /* don't know how to handle such a target */ |
Willy Tarreau | 20879a0 | 2012-12-03 16:32:10 +0100 | [diff] [blame] | 5418 | conn->err_code = CO_ER_SSL_NO_TARGET; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 5419 | err: |
Willy Tarreau | 3c39a7d | 2019-06-14 14:42:29 +0200 | [diff] [blame] | 5420 | if (ctx && ctx->wait_event.tasklet) |
| 5421 | tasklet_free(ctx->wait_event.tasklet); |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 5422 | pool_free(ssl_sock_ctx_pool, ctx); |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5423 | return -1; |
| 5424 | } |
| 5425 | |
| 5426 | |
| 5427 | /* This is the callback which is used when an SSL handshake is pending. It |
| 5428 | * updates the FD status if it wants some polling before being called again. |
| 5429 | * It returns 0 if it fails in a fatal way or needs to poll to go further, |
| 5430 | * otherwise it returns non-zero and removes itself from the connection's |
| 5431 | * flags (the bit is provided in <flag> by the caller). |
| 5432 | */ |
Olivier Houchard | 000694c | 2019-05-23 14:45:12 +0200 | [diff] [blame] | 5433 | static int ssl_sock_handshake(struct connection *conn, unsigned int flag) |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5434 | { |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 5435 | struct ssl_sock_ctx *ctx = conn->xprt_ctx; |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5436 | int ret; |
Willy Tarreau | 4299528 | 2020-11-06 13:19:18 +0100 | [diff] [blame] | 5437 | struct ssl_counters *counters = NULL; |
| 5438 | struct ssl_counters *counters_px = NULL; |
Amaury Denoyelle | d0447a7 | 2020-11-03 17:10:02 +0100 | [diff] [blame] | 5439 | struct listener *li; |
| 5440 | struct server *srv; |
Willy Tarreau | 0630038 | 2021-02-02 15:42:25 +0100 | [diff] [blame] | 5441 | socklen_t lskerr; |
| 5442 | int skerr; |
| 5443 | |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5444 | |
Willy Tarreau | 3c72872 | 2014-01-23 13:50:42 +0100 | [diff] [blame] | 5445 | if (!conn_ctrl_ready(conn)) |
Willy Tarreau | f79c817 | 2013-10-21 16:30:56 +0200 | [diff] [blame] | 5446 | return 0; |
| 5447 | |
Amaury Denoyelle | 034c162 | 2020-11-13 16:05:00 +0100 | [diff] [blame] | 5448 | /* get counters */ |
| 5449 | switch (obj_type(conn->target)) { |
| 5450 | case OBJ_TYPE_LISTENER: |
| 5451 | li = objt_listener(conn->target); |
| 5452 | counters = EXTRA_COUNTERS_GET(li->extra_counters, &ssl_stats_module); |
| 5453 | counters_px = EXTRA_COUNTERS_GET(li->bind_conf->frontend->extra_counters_fe, |
| 5454 | &ssl_stats_module); |
| 5455 | break; |
| 5456 | |
| 5457 | case OBJ_TYPE_SERVER: |
| 5458 | srv = objt_server(conn->target); |
| 5459 | counters = EXTRA_COUNTERS_GET(srv->extra_counters, &ssl_stats_module); |
| 5460 | counters_px = EXTRA_COUNTERS_GET(srv->proxy->extra_counters_be, |
| 5461 | &ssl_stats_module); |
| 5462 | break; |
| 5463 | |
| 5464 | default: |
| 5465 | break; |
| 5466 | } |
| 5467 | |
Willy Tarreau | f7bc57c | 2012-10-03 00:19:48 +0200 | [diff] [blame] | 5468 | if (!conn->xprt_ctx) |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5469 | goto out_error; |
| 5470 | |
Willy Tarreau | 0630038 | 2021-02-02 15:42:25 +0100 | [diff] [blame] | 5471 | /* don't start calculating a handshake on a dead connection */ |
| 5472 | if (conn->flags & (CO_FL_ERROR | CO_FL_SOCK_RD_SH | CO_FL_SOCK_WR_SH)) |
| 5473 | goto out_error; |
| 5474 | |
| 5475 | /* FIXME/WT: for now we don't have a clear way to inspect the connection |
| 5476 | * status from the lower layers, so let's check the FD directly. Ideally |
| 5477 | * the xprt layers should provide some status indicating their knowledge |
| 5478 | * of shutdowns or error. |
| 5479 | */ |
| 5480 | skerr = 0; |
| 5481 | lskerr = sizeof(skerr); |
| 5482 | if ((getsockopt(conn->handle.fd, SOL_SOCKET, SO_ERROR, &skerr, &lskerr) < 0) || |
| 5483 | skerr != 0) |
| 5484 | goto out_error; |
| 5485 | |
Ilya Shipitsin | b9b84a4 | 2020-10-24 23:42:30 +0500 | [diff] [blame] | 5486 | #ifdef SSL_READ_EARLY_DATA_SUCCESS |
Olivier Houchard | c2aae74 | 2017-09-22 18:26:28 +0200 | [diff] [blame] | 5487 | /* |
| 5488 | * Check if we have early data. If we do, we have to read them |
| 5489 | * before SSL_do_handshake() is called, And there's no way to |
| 5490 | * detect early data, except to try to read them |
| 5491 | */ |
| 5492 | if (conn->flags & CO_FL_EARLY_SSL_HS) { |
Olivier Houchard | 54907bb | 2019-12-19 15:02:39 +0100 | [diff] [blame] | 5493 | size_t read_data = 0; |
Olivier Houchard | c2aae74 | 2017-09-22 18:26:28 +0200 | [diff] [blame] | 5494 | |
Olivier Houchard | 54907bb | 2019-12-19 15:02:39 +0100 | [diff] [blame] | 5495 | while (1) { |
| 5496 | ret = SSL_read_early_data(ctx->ssl, |
| 5497 | b_tail(&ctx->early_buf), b_room(&ctx->early_buf), |
| 5498 | &read_data); |
| 5499 | if (ret == SSL_READ_EARLY_DATA_ERROR) |
| 5500 | goto check_error; |
| 5501 | if (read_data > 0) { |
| 5502 | conn->flags |= CO_FL_EARLY_DATA; |
| 5503 | b_add(&ctx->early_buf, read_data); |
| 5504 | } |
| 5505 | if (ret == SSL_READ_EARLY_DATA_FINISH) { |
| 5506 | conn->flags &= ~CO_FL_EARLY_SSL_HS; |
| 5507 | if (!b_data(&ctx->early_buf)) |
| 5508 | b_free(&ctx->early_buf); |
| 5509 | break; |
| 5510 | } |
| 5511 | } |
Olivier Houchard | c2aae74 | 2017-09-22 18:26:28 +0200 | [diff] [blame] | 5512 | } |
| 5513 | #endif |
Emeric Brun | 674b743 | 2012-11-08 19:21:55 +0100 | [diff] [blame] | 5514 | /* If we use SSL_do_handshake to process a reneg initiated by |
| 5515 | * the remote peer, it sometimes returns SSL_ERROR_SSL. |
| 5516 | * Usually SSL_write and SSL_read are used and process implicitly |
| 5517 | * the reneg handshake. |
| 5518 | * Here we use SSL_peek as a workaround for reneg. |
| 5519 | */ |
Willy Tarreau | c192b0a | 2020-01-23 09:11:58 +0100 | [diff] [blame] | 5520 | 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] | 5521 | char c; |
| 5522 | |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 5523 | ret = SSL_peek(ctx->ssl, &c, 1); |
Emeric Brun | 674b743 | 2012-11-08 19:21:55 +0100 | [diff] [blame] | 5524 | if (ret <= 0) { |
| 5525 | /* handshake may have not been completed, let's find why */ |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 5526 | ret = SSL_get_error(ctx->ssl, ret); |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 5527 | |
Emeric Brun | 674b743 | 2012-11-08 19:21:55 +0100 | [diff] [blame] | 5528 | if (ret == SSL_ERROR_WANT_WRITE) { |
| 5529 | /* SSL handshake needs to write, L4 connection may not be ready */ |
Olivier Houchard | 03abf2d | 2019-05-28 10:12:02 +0200 | [diff] [blame] | 5530 | if (!(ctx->wait_event.events & SUB_RETRY_SEND)) |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 5531 | 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] | 5532 | return 0; |
| 5533 | } |
| 5534 | else if (ret == SSL_ERROR_WANT_READ) { |
| 5535 | /* handshake may have been completed but we have |
| 5536 | * no more data to read. |
| 5537 | */ |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 5538 | if (!SSL_renegotiate_pending(ctx->ssl)) { |
Emeric Brun | 674b743 | 2012-11-08 19:21:55 +0100 | [diff] [blame] | 5539 | ret = 1; |
| 5540 | goto reneg_ok; |
| 5541 | } |
| 5542 | /* SSL handshake needs to read, L4 connection is ready */ |
Olivier Houchard | 03abf2d | 2019-05-28 10:12:02 +0200 | [diff] [blame] | 5543 | if (!(ctx->wait_event.events & SUB_RETRY_RECV)) |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 5544 | 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] | 5545 | return 0; |
| 5546 | } |
Ilya Shipitsin | bdec3ba | 2020-11-14 01:56:34 +0500 | [diff] [blame] | 5547 | #ifdef SSL_MODE_ASYNC |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 5548 | else if (ret == SSL_ERROR_WANT_ASYNC) { |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 5549 | ssl_async_process_fds(ctx); |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 5550 | return 0; |
| 5551 | } |
| 5552 | #endif |
Emeric Brun | 674b743 | 2012-11-08 19:21:55 +0100 | [diff] [blame] | 5553 | else if (ret == SSL_ERROR_SYSCALL) { |
| 5554 | /* if errno is null, then connection was successfully established */ |
| 5555 | if (!errno && conn->flags & CO_FL_WAIT_L4_CONN) |
| 5556 | conn->flags &= ~CO_FL_WAIT_L4_CONN; |
Willy Tarreau | 20879a0 | 2012-12-03 16:32:10 +0100 | [diff] [blame] | 5557 | if (!conn->err_code) { |
Lukas Tribus | 4979916 | 2019-07-08 14:29:15 +0200 | [diff] [blame] | 5558 | #if defined(OPENSSL_IS_BORINGSSL) || defined(LIBRESSL_VERSION_NUMBER) |
| 5559 | /* do not handle empty handshakes in BoringSSL or LibreSSL */ |
Emmanuel Hocdet | fdec789 | 2017-01-13 17:48:18 +0100 | [diff] [blame] | 5560 | conn->err_code = CO_ER_SSL_HANDSHAKE; |
| 5561 | #else |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 5562 | int empty_handshake; |
Willy Tarreau | 5db847a | 2019-05-09 14:13:35 +0200 | [diff] [blame] | 5563 | #if (HA_OPENSSL_VERSION_NUMBER >= 0x1010000fL) |
Lukas Tribus | 4979916 | 2019-07-08 14:29:15 +0200 | [diff] [blame] | 5564 | /* 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] | 5565 | OSSL_HANDSHAKE_STATE state = SSL_get_state((SSL *)ctx->ssl); |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 5566 | empty_handshake = state == TLS_ST_BEFORE; |
| 5567 | #else |
Lukas Tribus | 4979916 | 2019-07-08 14:29:15 +0200 | [diff] [blame] | 5568 | /* access packet_length directly in OpenSSL <= 1.0.2; SSL_state() is broken */ |
| 5569 | empty_handshake = !ctx->ssl->packet_length; |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 5570 | #endif |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 5571 | if (empty_handshake) { |
Emeric Brun | 29f037d | 2014-04-25 19:05:36 +0200 | [diff] [blame] | 5572 | if (!errno) { |
Olivier Houchard | 7b5fd1e | 2019-02-28 18:10:45 +0100 | [diff] [blame] | 5573 | if (ctx->xprt_st & SSL_SOCK_RECV_HEARTBEAT) |
Emeric Brun | 29f037d | 2014-04-25 19:05:36 +0200 | [diff] [blame] | 5574 | conn->err_code = CO_ER_SSL_HANDSHAKE_HB; |
| 5575 | else |
| 5576 | conn->err_code = CO_ER_SSL_EMPTY; |
| 5577 | } |
| 5578 | else { |
Olivier Houchard | 7b5fd1e | 2019-02-28 18:10:45 +0100 | [diff] [blame] | 5579 | if (ctx->xprt_st & SSL_SOCK_RECV_HEARTBEAT) |
Emeric Brun | 29f037d | 2014-04-25 19:05:36 +0200 | [diff] [blame] | 5580 | conn->err_code = CO_ER_SSL_HANDSHAKE_HB; |
| 5581 | else |
| 5582 | conn->err_code = CO_ER_SSL_ABORT; |
| 5583 | } |
| 5584 | } |
| 5585 | else { |
Olivier Houchard | 7b5fd1e | 2019-02-28 18:10:45 +0100 | [diff] [blame] | 5586 | if (ctx->xprt_st & SSL_SOCK_RECV_HEARTBEAT) |
Emeric Brun | 29f037d | 2014-04-25 19:05:36 +0200 | [diff] [blame] | 5587 | conn->err_code = CO_ER_SSL_HANDSHAKE_HB; |
Willy Tarreau | 20879a0 | 2012-12-03 16:32:10 +0100 | [diff] [blame] | 5588 | else |
Emeric Brun | 29f037d | 2014-04-25 19:05:36 +0200 | [diff] [blame] | 5589 | conn->err_code = CO_ER_SSL_HANDSHAKE; |
| 5590 | } |
Lukas Tribus | 4979916 | 2019-07-08 14:29:15 +0200 | [diff] [blame] | 5591 | #endif /* BoringSSL or LibreSSL */ |
Willy Tarreau | 20879a0 | 2012-12-03 16:32:10 +0100 | [diff] [blame] | 5592 | } |
Emeric Brun | 674b743 | 2012-11-08 19:21:55 +0100 | [diff] [blame] | 5593 | goto out_error; |
| 5594 | } |
| 5595 | else { |
| 5596 | /* Fail on all other handshake errors */ |
| 5597 | /* Note: OpenSSL may leave unread bytes in the socket's |
| 5598 | * buffer, causing an RST to be emitted upon close() on |
| 5599 | * TCP sockets. We first try to drain possibly pending |
| 5600 | * data to avoid this as much as possible. |
| 5601 | */ |
Willy Tarreau | 2ded48d | 2020-12-11 16:20:34 +0100 | [diff] [blame] | 5602 | conn_ctrl_drain(conn); |
Willy Tarreau | 20879a0 | 2012-12-03 16:32:10 +0100 | [diff] [blame] | 5603 | if (!conn->err_code) |
Olivier Houchard | 7b5fd1e | 2019-02-28 18:10:45 +0100 | [diff] [blame] | 5604 | conn->err_code = (ctx->xprt_st & SSL_SOCK_RECV_HEARTBEAT) ? |
Willy Tarreau | f51c698 | 2014-04-25 20:02:39 +0200 | [diff] [blame] | 5605 | CO_ER_SSL_KILLED_HB : CO_ER_SSL_HANDSHAKE; |
Emeric Brun | 674b743 | 2012-11-08 19:21:55 +0100 | [diff] [blame] | 5606 | goto out_error; |
| 5607 | } |
| 5608 | } |
| 5609 | /* read some data: consider handshake completed */ |
| 5610 | goto reneg_ok; |
| 5611 | } |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 5612 | ret = SSL_do_handshake(ctx->ssl); |
Olivier Houchard | c2aae74 | 2017-09-22 18:26:28 +0200 | [diff] [blame] | 5613 | check_error: |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5614 | if (ret != 1) { |
| 5615 | /* handshake did not complete, let's find why */ |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 5616 | ret = SSL_get_error(ctx->ssl, ret); |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5617 | |
| 5618 | if (ret == SSL_ERROR_WANT_WRITE) { |
| 5619 | /* SSL handshake needs to write, L4 connection may not be ready */ |
Olivier Houchard | 03abf2d | 2019-05-28 10:12:02 +0200 | [diff] [blame] | 5620 | if (!(ctx->wait_event.events & SUB_RETRY_SEND)) |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 5621 | 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] | 5622 | return 0; |
| 5623 | } |
| 5624 | else if (ret == SSL_ERROR_WANT_READ) { |
| 5625 | /* SSL handshake needs to read, L4 connection is ready */ |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 5626 | if (!(ctx->wait_event.events & SUB_RETRY_RECV)) |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 5627 | ctx->xprt->subscribe(conn, ctx->xprt_ctx, |
| 5628 | SUB_RETRY_RECV, &ctx->wait_event); |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5629 | return 0; |
| 5630 | } |
Ilya Shipitsin | bdec3ba | 2020-11-14 01:56:34 +0500 | [diff] [blame] | 5631 | #ifdef SSL_MODE_ASYNC |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 5632 | else if (ret == SSL_ERROR_WANT_ASYNC) { |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 5633 | ssl_async_process_fds(ctx); |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 5634 | return 0; |
| 5635 | } |
| 5636 | #endif |
Willy Tarreau | 8923019 | 2012-09-28 20:22:13 +0200 | [diff] [blame] | 5637 | else if (ret == SSL_ERROR_SYSCALL) { |
| 5638 | /* if errno is null, then connection was successfully established */ |
| 5639 | if (!errno && conn->flags & CO_FL_WAIT_L4_CONN) |
| 5640 | conn->flags &= ~CO_FL_WAIT_L4_CONN; |
Emmanuel Hocdet | fdec789 | 2017-01-13 17:48:18 +0100 | [diff] [blame] | 5641 | if (!conn->err_code) { |
Lukas Tribus | 4979916 | 2019-07-08 14:29:15 +0200 | [diff] [blame] | 5642 | #if defined(OPENSSL_IS_BORINGSSL) || defined(LIBRESSL_VERSION_NUMBER) |
| 5643 | /* do not handle empty handshakes in BoringSSL or LibreSSL */ |
Emmanuel Hocdet | fdec789 | 2017-01-13 17:48:18 +0100 | [diff] [blame] | 5644 | conn->err_code = CO_ER_SSL_HANDSHAKE; |
| 5645 | #else |
| 5646 | int empty_handshake; |
Willy Tarreau | 5db847a | 2019-05-09 14:13:35 +0200 | [diff] [blame] | 5647 | #if (HA_OPENSSL_VERSION_NUMBER >= 0x1010000fL) |
Lukas Tribus | 4979916 | 2019-07-08 14:29:15 +0200 | [diff] [blame] | 5648 | /* 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] | 5649 | OSSL_HANDSHAKE_STATE state = SSL_get_state(ctx->ssl); |
Emmanuel Hocdet | fdec789 | 2017-01-13 17:48:18 +0100 | [diff] [blame] | 5650 | empty_handshake = state == TLS_ST_BEFORE; |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 5651 | #else |
Lukas Tribus | 4979916 | 2019-07-08 14:29:15 +0200 | [diff] [blame] | 5652 | /* access packet_length directly in OpenSSL <= 1.0.2; SSL_state() is broken */ |
| 5653 | empty_handshake = !ctx->ssl->packet_length; |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 5654 | #endif |
Emmanuel Hocdet | fdec789 | 2017-01-13 17:48:18 +0100 | [diff] [blame] | 5655 | if (empty_handshake) { |
| 5656 | if (!errno) { |
Olivier Houchard | 7b5fd1e | 2019-02-28 18:10:45 +0100 | [diff] [blame] | 5657 | if (ctx->xprt_st & SSL_SOCK_RECV_HEARTBEAT) |
Emmanuel Hocdet | fdec789 | 2017-01-13 17:48:18 +0100 | [diff] [blame] | 5658 | conn->err_code = CO_ER_SSL_HANDSHAKE_HB; |
| 5659 | else |
| 5660 | conn->err_code = CO_ER_SSL_EMPTY; |
| 5661 | } |
| 5662 | else { |
Olivier Houchard | 7b5fd1e | 2019-02-28 18:10:45 +0100 | [diff] [blame] | 5663 | if (ctx->xprt_st & SSL_SOCK_RECV_HEARTBEAT) |
Emmanuel Hocdet | fdec789 | 2017-01-13 17:48:18 +0100 | [diff] [blame] | 5664 | conn->err_code = CO_ER_SSL_HANDSHAKE_HB; |
| 5665 | else |
| 5666 | conn->err_code = CO_ER_SSL_ABORT; |
| 5667 | } |
Emeric Brun | 29f037d | 2014-04-25 19:05:36 +0200 | [diff] [blame] | 5668 | } |
| 5669 | else { |
Olivier Houchard | 7b5fd1e | 2019-02-28 18:10:45 +0100 | [diff] [blame] | 5670 | if (ctx->xprt_st & SSL_SOCK_RECV_HEARTBEAT) |
Emeric Brun | 29f037d | 2014-04-25 19:05:36 +0200 | [diff] [blame] | 5671 | conn->err_code = CO_ER_SSL_HANDSHAKE_HB; |
| 5672 | else |
Emmanuel Hocdet | fdec789 | 2017-01-13 17:48:18 +0100 | [diff] [blame] | 5673 | conn->err_code = CO_ER_SSL_HANDSHAKE; |
Emeric Brun | 29f037d | 2014-04-25 19:05:36 +0200 | [diff] [blame] | 5674 | } |
Lukas Tribus | 4979916 | 2019-07-08 14:29:15 +0200 | [diff] [blame] | 5675 | #endif /* BoringSSL or LibreSSL */ |
Emeric Brun | 29f037d | 2014-04-25 19:05:36 +0200 | [diff] [blame] | 5676 | } |
Willy Tarreau | 8923019 | 2012-09-28 20:22:13 +0200 | [diff] [blame] | 5677 | goto out_error; |
| 5678 | } |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5679 | else { |
| 5680 | /* Fail on all other handshake errors */ |
Willy Tarreau | 566dc55 | 2012-10-19 20:52:18 +0200 | [diff] [blame] | 5681 | /* Note: OpenSSL may leave unread bytes in the socket's |
| 5682 | * buffer, causing an RST to be emitted upon close() on |
| 5683 | * TCP sockets. We first try to drain possibly pending |
| 5684 | * data to avoid this as much as possible. |
| 5685 | */ |
Willy Tarreau | 2ded48d | 2020-12-11 16:20:34 +0100 | [diff] [blame] | 5686 | conn_ctrl_drain(conn); |
Willy Tarreau | 20879a0 | 2012-12-03 16:32:10 +0100 | [diff] [blame] | 5687 | if (!conn->err_code) |
Olivier Houchard | 7b5fd1e | 2019-02-28 18:10:45 +0100 | [diff] [blame] | 5688 | conn->err_code = (ctx->xprt_st & SSL_SOCK_RECV_HEARTBEAT) ? |
Willy Tarreau | f51c698 | 2014-04-25 20:02:39 +0200 | [diff] [blame] | 5689 | CO_ER_SSL_KILLED_HB : CO_ER_SSL_HANDSHAKE; |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5690 | goto out_error; |
| 5691 | } |
| 5692 | } |
Ilya Shipitsin | b9b84a4 | 2020-10-24 23:42:30 +0500 | [diff] [blame] | 5693 | #ifdef SSL_READ_EARLY_DATA_SUCCESS |
Olivier Houchard | 522eea7 | 2017-11-03 16:27:47 +0100 | [diff] [blame] | 5694 | else { |
| 5695 | /* |
| 5696 | * If the server refused the early data, we have to send a |
| 5697 | * 425 to the client, as we no longer have the data to sent |
| 5698 | * them again. |
| 5699 | */ |
| 5700 | if ((conn->flags & CO_FL_EARLY_DATA) && (objt_server(conn->target))) { |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 5701 | if (SSL_get_early_data_status(ctx->ssl) == SSL_EARLY_DATA_REJECTED) { |
Olivier Houchard | 522eea7 | 2017-11-03 16:27:47 +0100 | [diff] [blame] | 5702 | conn->err_code = CO_ER_SSL_EARLY_FAILED; |
| 5703 | goto out_error; |
| 5704 | } |
| 5705 | } |
| 5706 | } |
| 5707 | #endif |
| 5708 | |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5709 | |
Emeric Brun | 674b743 | 2012-11-08 19:21:55 +0100 | [diff] [blame] | 5710 | reneg_ok: |
Emeric Brun | b5e42a8 | 2017-06-06 12:35:14 +0000 | [diff] [blame] | 5711 | |
Ilya Shipitsin | bdec3ba | 2020-11-14 01:56:34 +0500 | [diff] [blame] | 5712 | #ifdef SSL_MODE_ASYNC |
Emeric Brun | b5e42a8 | 2017-06-06 12:35:14 +0000 | [diff] [blame] | 5713 | /* ASYNC engine API doesn't support moving read/write |
| 5714 | * buffers. So we disable ASYNC mode right after |
Ilya Shipitsin | 77e3b4a | 2020-03-10 12:06:11 +0500 | [diff] [blame] | 5715 | * the handshake to avoid buffer overflow. |
Emeric Brun | b5e42a8 | 2017-06-06 12:35:14 +0000 | [diff] [blame] | 5716 | */ |
| 5717 | if (global_ssl.async) |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 5718 | SSL_clear_mode(ctx->ssl, SSL_MODE_ASYNC); |
Emeric Brun | b5e42a8 | 2017-06-06 12:35:14 +0000 | [diff] [blame] | 5719 | #endif |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5720 | /* Handshake succeeded */ |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 5721 | if (!SSL_session_reused(ctx->ssl)) { |
Willy Tarreau | 0c9c272 | 2014-05-28 12:28:58 +0200 | [diff] [blame] | 5722 | if (objt_server(conn->target)) { |
| 5723 | update_freq_ctr(&global.ssl_be_keys_per_sec, 1); |
| 5724 | if (global.ssl_be_keys_per_sec.curr_ctr > global.ssl_be_keys_max) |
| 5725 | 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] | 5726 | } |
Willy Tarreau | 0c9c272 | 2014-05-28 12:28:58 +0200 | [diff] [blame] | 5727 | else { |
| 5728 | update_freq_ctr(&global.ssl_fe_keys_per_sec, 1); |
| 5729 | if (global.ssl_fe_keys_per_sec.curr_ctr > global.ssl_fe_keys_max) |
| 5730 | global.ssl_fe_keys_max = global.ssl_fe_keys_per_sec.curr_ctr; |
| 5731 | } |
Amaury Denoyelle | d0447a7 | 2020-11-03 17:10:02 +0100 | [diff] [blame] | 5732 | |
Willy Tarreau | 4299528 | 2020-11-06 13:19:18 +0100 | [diff] [blame] | 5733 | if (counters) { |
Willy Tarreau | 41736ab | 2021-11-22 17:46:13 +0100 | [diff] [blame] | 5734 | HA_ATOMIC_INC(&counters->sess); |
| 5735 | HA_ATOMIC_INC(&counters_px->sess); |
Willy Tarreau | 4299528 | 2020-11-06 13:19:18 +0100 | [diff] [blame] | 5736 | } |
Amaury Denoyelle | d0447a7 | 2020-11-03 17:10:02 +0100 | [diff] [blame] | 5737 | } |
Willy Tarreau | 4299528 | 2020-11-06 13:19:18 +0100 | [diff] [blame] | 5738 | else if (counters) { |
Willy Tarreau | 41736ab | 2021-11-22 17:46:13 +0100 | [diff] [blame] | 5739 | HA_ATOMIC_INC(&counters->reused_sess); |
| 5740 | HA_ATOMIC_INC(&counters_px->reused_sess); |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5741 | } |
| 5742 | |
| 5743 | /* The connection is now established at both layers, it's time to leave */ |
| 5744 | conn->flags &= ~(flag | CO_FL_WAIT_L4_CONN | CO_FL_WAIT_L6_CONN); |
| 5745 | return 1; |
| 5746 | |
| 5747 | out_error: |
Emeric Brun | 644cde0 | 2012-12-14 11:21:13 +0100 | [diff] [blame] | 5748 | /* Clear openssl global errors stack */ |
Thierry FOURNIER / OZON.IO | 8b068c2 | 2016-10-10 11:59:50 +0200 | [diff] [blame] | 5749 | ssl_sock_dump_errors(conn); |
Emeric Brun | 644cde0 | 2012-12-14 11:21:13 +0100 | [diff] [blame] | 5750 | ERR_clear_error(); |
| 5751 | |
Emeric Brun | 9fa8973 | 2012-10-04 17:09:56 +0200 | [diff] [blame] | 5752 | /* free resumed session if exists */ |
William Lallemand | 3ce6eed | 2021-02-08 10:43:44 +0100 | [diff] [blame] | 5753 | if (objt_server(conn->target)) { |
| 5754 | struct server *s = __objt_server(conn->target); |
| 5755 | /* RWLOCK: only rdlock the SSL cache even when writing in it because there is |
| 5756 | * one cache per thread, it only prevents to flush it from the CLI in |
| 5757 | * another thread */ |
| 5758 | |
| 5759 | HA_RWLOCK_RDLOCK(SSL_SERVER_LOCK, &s->ssl_ctx.lock); |
Willy Tarreau | 61cfdf4 | 2021-02-20 10:46:51 +0100 | [diff] [blame] | 5760 | if (s->ssl_ctx.reused_sess[tid].ptr) |
| 5761 | ha_free(&s->ssl_ctx.reused_sess[tid].ptr); |
William Lallemand | 3ce6eed | 2021-02-08 10:43:44 +0100 | [diff] [blame] | 5762 | HA_RWLOCK_RDUNLOCK(SSL_SERVER_LOCK, &s->ssl_ctx.lock); |
Emeric Brun | 9fa8973 | 2012-10-04 17:09:56 +0200 | [diff] [blame] | 5763 | } |
| 5764 | |
Amaury Denoyelle | 034c162 | 2020-11-13 16:05:00 +0100 | [diff] [blame] | 5765 | if (counters) { |
Willy Tarreau | 41736ab | 2021-11-22 17:46:13 +0100 | [diff] [blame] | 5766 | HA_ATOMIC_INC(&counters->failed_handshake); |
| 5767 | HA_ATOMIC_INC(&counters_px->failed_handshake); |
Amaury Denoyelle | 034c162 | 2020-11-13 16:05:00 +0100 | [diff] [blame] | 5768 | } |
| 5769 | |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5770 | /* Fail on all other handshake errors */ |
| 5771 | conn->flags |= CO_FL_ERROR; |
Willy Tarreau | 20879a0 | 2012-12-03 16:32:10 +0100 | [diff] [blame] | 5772 | if (!conn->err_code) |
| 5773 | conn->err_code = CO_ER_SSL_HANDSHAKE; |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5774 | return 0; |
| 5775 | } |
| 5776 | |
Willy Tarreau | ee1a6fc | 2020-01-17 07:52:13 +0100 | [diff] [blame] | 5777 | /* Called from the upper layer, to subscribe <es> to events <event_type>. The |
| 5778 | * event subscriber <es> is not allowed to change from a previous call as long |
| 5779 | * as at least one event is still subscribed. The <event_type> must only be a |
| 5780 | * combination of SUB_RETRY_RECV and SUB_RETRY_SEND. It always returns 0, |
| 5781 | * unless the transport layer was already released. |
| 5782 | */ |
| 5783 | 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] | 5784 | { |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 5785 | struct ssl_sock_ctx *ctx = xprt_ctx; |
Olivier Houchard | e179d0e | 2019-03-21 18:27:17 +0100 | [diff] [blame] | 5786 | |
Olivier Houchard | 0ff2865 | 2019-06-24 18:57:39 +0200 | [diff] [blame] | 5787 | if (!ctx) |
| 5788 | return -1; |
| 5789 | |
Willy Tarreau | 113d52b | 2020-01-10 09:20:26 +0100 | [diff] [blame] | 5790 | BUG_ON(event_type & ~(SUB_RETRY_SEND|SUB_RETRY_RECV)); |
Willy Tarreau | ee1a6fc | 2020-01-17 07:52:13 +0100 | [diff] [blame] | 5791 | BUG_ON(ctx->subs && ctx->subs != es); |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 5792 | |
Willy Tarreau | ee1a6fc | 2020-01-17 07:52:13 +0100 | [diff] [blame] | 5793 | ctx->subs = es; |
| 5794 | es->events |= event_type; |
Willy Tarreau | 113d52b | 2020-01-10 09:20:26 +0100 | [diff] [blame] | 5795 | |
| 5796 | /* we may have to subscribe to lower layers for new events */ |
| 5797 | event_type &= ~ctx->wait_event.events; |
| 5798 | if (event_type && !(conn->flags & CO_FL_SSL_WAIT_HS)) |
| 5799 | ctx->xprt->subscribe(conn, ctx->xprt_ctx, event_type, &ctx->wait_event); |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 5800 | return 0; |
Olivier Houchard | df35784 | 2019-03-21 16:30:07 +0100 | [diff] [blame] | 5801 | } |
| 5802 | |
Willy Tarreau | ee1a6fc | 2020-01-17 07:52:13 +0100 | [diff] [blame] | 5803 | /* Called from the upper layer, to unsubscribe <es> from events <event_type>. |
| 5804 | * The <es> pointer is not allowed to differ from the one passed to the |
| 5805 | * subscribe() call. It always returns zero. |
| 5806 | */ |
| 5807 | 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] | 5808 | { |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 5809 | struct ssl_sock_ctx *ctx = xprt_ctx; |
Olivier Houchard | e179d0e | 2019-03-21 18:27:17 +0100 | [diff] [blame] | 5810 | |
Willy Tarreau | 113d52b | 2020-01-10 09:20:26 +0100 | [diff] [blame] | 5811 | BUG_ON(event_type & ~(SUB_RETRY_SEND|SUB_RETRY_RECV)); |
Willy Tarreau | ee1a6fc | 2020-01-17 07:52:13 +0100 | [diff] [blame] | 5812 | BUG_ON(ctx->subs && ctx->subs != es); |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 5813 | |
Willy Tarreau | ee1a6fc | 2020-01-17 07:52:13 +0100 | [diff] [blame] | 5814 | es->events &= ~event_type; |
| 5815 | if (!es->events) |
Willy Tarreau | 113d52b | 2020-01-10 09:20:26 +0100 | [diff] [blame] | 5816 | ctx->subs = NULL; |
| 5817 | |
| 5818 | /* If we subscribed, and we're not doing the handshake, |
| 5819 | * then we subscribed because the upper layer asked for it, |
| 5820 | * as the upper layer is no longer interested, we can |
| 5821 | * unsubscribe too. |
| 5822 | */ |
| 5823 | event_type &= ctx->wait_event.events; |
| 5824 | if (event_type && !(ctx->conn->flags & CO_FL_SSL_WAIT_HS)) |
| 5825 | conn_unsubscribe(conn, ctx->xprt_ctx, event_type, &ctx->wait_event); |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 5826 | |
| 5827 | return 0; |
Olivier Houchard | df35784 | 2019-03-21 16:30:07 +0100 | [diff] [blame] | 5828 | } |
| 5829 | |
Olivier Houchard | a74bb7e | 2020-07-03 14:01:21 +0200 | [diff] [blame] | 5830 | /* The connection has been taken over, so destroy the old tasklet and create |
| 5831 | * a new one. The original thread ID must be passed into orig_tid |
| 5832 | * It should be called with the takeover lock for the old thread held. |
| 5833 | * Returns 0 on success, and -1 on failure |
| 5834 | */ |
| 5835 | static int ssl_takeover(struct connection *conn, void *xprt_ctx, int orig_tid) |
| 5836 | { |
| 5837 | struct ssl_sock_ctx *ctx = xprt_ctx; |
| 5838 | struct tasklet *tl = tasklet_new(); |
| 5839 | |
| 5840 | if (!tl) |
| 5841 | return -1; |
| 5842 | |
| 5843 | ctx->wait_event.tasklet->context = NULL; |
| 5844 | tasklet_wakeup_on(ctx->wait_event.tasklet, orig_tid); |
| 5845 | ctx->wait_event.tasklet = tl; |
| 5846 | ctx->wait_event.tasklet->process = ssl_sock_io_cb; |
| 5847 | ctx->wait_event.tasklet->context = ctx; |
| 5848 | return 0; |
| 5849 | } |
| 5850 | |
Willy Tarreau | 4149168 | 2021-03-02 17:29:56 +0100 | [diff] [blame] | 5851 | /* notify the next xprt that the connection is about to become idle and that it |
| 5852 | * may be stolen at any time after the function returns and that any tasklet in |
| 5853 | * the chain must be careful before dereferencing its context. |
| 5854 | */ |
| 5855 | static void ssl_set_idle(struct connection *conn, void *xprt_ctx) |
| 5856 | { |
| 5857 | struct ssl_sock_ctx *ctx = xprt_ctx; |
| 5858 | |
| 5859 | if (!ctx || !ctx->wait_event.tasklet) |
| 5860 | return; |
| 5861 | |
| 5862 | HA_ATOMIC_OR(&ctx->wait_event.tasklet->state, TASK_F_USR1); |
| 5863 | if (ctx->xprt) |
| 5864 | xprt_set_idle(conn, ctx->xprt, ctx->xprt_ctx); |
| 5865 | } |
| 5866 | |
| 5867 | /* notify the next xprt that the connection is not idle anymore and that it may |
| 5868 | * not be stolen before the next xprt_set_idle(). |
| 5869 | */ |
| 5870 | static void ssl_set_used(struct connection *conn, void *xprt_ctx) |
| 5871 | { |
| 5872 | struct ssl_sock_ctx *ctx = xprt_ctx; |
| 5873 | |
| 5874 | if (!ctx || !ctx->wait_event.tasklet) |
| 5875 | return; |
| 5876 | |
| 5877 | HA_ATOMIC_OR(&ctx->wait_event.tasklet->state, TASK_F_USR1); |
| 5878 | if (ctx->xprt) |
| 5879 | xprt_set_used(conn, ctx->xprt, ctx->xprt_ctx); |
| 5880 | } |
| 5881 | |
Olivier Houchard | 2e05548 | 2019-05-27 19:50:12 +0200 | [diff] [blame] | 5882 | /* Use the provided XPRT as an underlying XPRT, and provide the old one. |
| 5883 | * Returns 0 on success, and non-zero on failure. |
| 5884 | */ |
| 5885 | 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) |
| 5886 | { |
| 5887 | struct ssl_sock_ctx *ctx = xprt_ctx; |
| 5888 | |
| 5889 | if (oldxprt_ops != NULL) |
| 5890 | *oldxprt_ops = ctx->xprt; |
| 5891 | if (oldxprt_ctx != NULL) |
| 5892 | *oldxprt_ctx = ctx->xprt_ctx; |
| 5893 | ctx->xprt = toadd_ops; |
| 5894 | ctx->xprt_ctx = toadd_ctx; |
| 5895 | return 0; |
| 5896 | } |
| 5897 | |
Olivier Houchard | 5149b59 | 2019-05-23 17:47:36 +0200 | [diff] [blame] | 5898 | /* Remove the specified xprt. If if it our underlying XPRT, remove it and |
| 5899 | * return 0, otherwise just call the remove_xprt method from the underlying |
| 5900 | * XPRT. |
| 5901 | */ |
| 5902 | static int ssl_remove_xprt(struct connection *conn, void *xprt_ctx, void *toremove_ctx, const struct xprt_ops *newops, void *newctx) |
| 5903 | { |
| 5904 | struct ssl_sock_ctx *ctx = xprt_ctx; |
| 5905 | |
| 5906 | if (ctx->xprt_ctx == toremove_ctx) { |
| 5907 | ctx->xprt_ctx = newctx; |
| 5908 | ctx->xprt = newops; |
| 5909 | return 0; |
| 5910 | } |
| 5911 | return (ctx->xprt->remove_xprt(conn, ctx->xprt_ctx, toremove_ctx, newops, newctx)); |
| 5912 | } |
| 5913 | |
Willy Tarreau | 144f84a | 2021-03-02 16:09:26 +0100 | [diff] [blame] | 5914 | 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] | 5915 | { |
Olivier Houchard | a74bb7e | 2020-07-03 14:01:21 +0200 | [diff] [blame] | 5916 | struct tasklet *tl = (struct tasklet *)t; |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 5917 | struct ssl_sock_ctx *ctx = context; |
Olivier Houchard | a74bb7e | 2020-07-03 14:01:21 +0200 | [diff] [blame] | 5918 | struct connection *conn; |
| 5919 | int conn_in_list; |
| 5920 | int ret = 0; |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 5921 | |
Willy Tarreau | 4149168 | 2021-03-02 17:29:56 +0100 | [diff] [blame] | 5922 | if (state & TASK_F_USR1) { |
| 5923 | /* the tasklet was idling on an idle connection, it might have |
| 5924 | * been stolen, let's be careful! |
| 5925 | */ |
| 5926 | HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock); |
| 5927 | if (tl->context == NULL) { |
| 5928 | HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock); |
| 5929 | tasklet_free(tl); |
| 5930 | return NULL; |
| 5931 | } |
| 5932 | conn = ctx->conn; |
| 5933 | conn_in_list = conn->flags & CO_FL_LIST_MASK; |
| 5934 | if (conn_in_list) |
| 5935 | conn_delete_from_tree(&conn->hash_node->node); |
Amaury Denoyelle | 5c7086f | 2021-01-11 09:21:52 +0100 | [diff] [blame] | 5936 | HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock); |
Willy Tarreau | 4149168 | 2021-03-02 17:29:56 +0100 | [diff] [blame] | 5937 | } else { |
| 5938 | conn = ctx->conn; |
| 5939 | conn_in_list = 0; |
Olivier Houchard | a74bb7e | 2020-07-03 14:01:21 +0200 | [diff] [blame] | 5940 | } |
Willy Tarreau | 4149168 | 2021-03-02 17:29:56 +0100 | [diff] [blame] | 5941 | |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 5942 | /* First if we're doing an handshake, try that */ |
Willy Tarreau | 9205ab3 | 2021-02-25 15:31:00 +0100 | [diff] [blame] | 5943 | if (ctx->conn->flags & CO_FL_SSL_WAIT_HS) { |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 5944 | ssl_sock_handshake(ctx->conn, CO_FL_SSL_WAIT_HS); |
Willy Tarreau | 9205ab3 | 2021-02-25 15:31:00 +0100 | [diff] [blame] | 5945 | if (!(ctx->conn->flags & CO_FL_SSL_WAIT_HS)) { |
| 5946 | /* handshake completed, leave the bulk queue */ |
Willy Tarreau | 4c48edb | 2021-03-09 17:58:02 +0100 | [diff] [blame] | 5947 | _HA_ATOMIC_AND(&tl->state, ~TASK_HEAVY); |
Willy Tarreau | 9205ab3 | 2021-02-25 15:31:00 +0100 | [diff] [blame] | 5948 | } |
| 5949 | } |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 5950 | /* If we had an error, or the handshake is done and I/O is available, |
| 5951 | * let the upper layer know. |
Olivier Houchard | 477902b | 2020-01-22 18:08:48 +0100 | [diff] [blame] | 5952 | * If no mux was set up yet, then call conn_create_mux() |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 5953 | * we can't be sure conn_fd_handler() will be called again. |
| 5954 | */ |
| 5955 | if ((ctx->conn->flags & CO_FL_ERROR) || |
| 5956 | !(ctx->conn->flags & CO_FL_SSL_WAIT_HS)) { |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 5957 | int woke = 0; |
| 5958 | |
| 5959 | /* On error, wake any waiter */ |
Willy Tarreau | 113d52b | 2020-01-10 09:20:26 +0100 | [diff] [blame] | 5960 | if (ctx->subs) { |
| 5961 | tasklet_wakeup(ctx->subs->tasklet); |
| 5962 | ctx->subs->events = 0; |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 5963 | woke = 1; |
Willy Tarreau | 113d52b | 2020-01-10 09:20:26 +0100 | [diff] [blame] | 5964 | ctx->subs = NULL; |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 5965 | } |
Willy Tarreau | 113d52b | 2020-01-10 09:20:26 +0100 | [diff] [blame] | 5966 | |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 5967 | /* If we're the first xprt for the connection, let the |
Olivier Houchard | 477902b | 2020-01-22 18:08:48 +0100 | [diff] [blame] | 5968 | * upper layers know. If we have no mux, create it, |
| 5969 | * and once we have a mux, call its wake method if we didn't |
| 5970 | * woke a tasklet already. |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 5971 | */ |
| 5972 | if (ctx->conn->xprt_ctx == ctx) { |
Olivier Houchard | 477902b | 2020-01-22 18:08:48 +0100 | [diff] [blame] | 5973 | if (!ctx->conn->mux) |
| 5974 | ret = conn_create_mux(ctx->conn); |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 5975 | if (ret >= 0 && !woke && ctx->conn->mux && ctx->conn->mux->wake) |
Olivier Houchard | a74bb7e | 2020-07-03 14:01:21 +0200 | [diff] [blame] | 5976 | ret = ctx->conn->mux->wake(ctx->conn); |
| 5977 | goto leave; |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 5978 | } |
| 5979 | } |
Ilya Shipitsin | 761d64c | 2021-01-07 11:59:58 +0500 | [diff] [blame] | 5980 | #ifdef SSL_READ_EARLY_DATA_SUCCESS |
Olivier Houchard | 54907bb | 2019-12-19 15:02:39 +0100 | [diff] [blame] | 5981 | /* If we have early data and somebody wants to receive, let them */ |
Willy Tarreau | 113d52b | 2020-01-10 09:20:26 +0100 | [diff] [blame] | 5982 | else if (b_data(&ctx->early_buf) && ctx->subs && |
| 5983 | ctx->subs->events & SUB_RETRY_RECV) { |
| 5984 | tasklet_wakeup(ctx->subs->tasklet); |
| 5985 | ctx->subs->events &= ~SUB_RETRY_RECV; |
| 5986 | if (!ctx->subs->events) |
| 5987 | ctx->subs = NULL; |
Olivier Houchard | 54907bb | 2019-12-19 15:02:39 +0100 | [diff] [blame] | 5988 | } |
| 5989 | #endif |
Olivier Houchard | a74bb7e | 2020-07-03 14:01:21 +0200 | [diff] [blame] | 5990 | leave: |
| 5991 | if (!ret && conn_in_list) { |
| 5992 | struct server *srv = objt_server(conn->target); |
| 5993 | |
Amaury Denoyelle | 5c7086f | 2021-01-11 09:21:52 +0100 | [diff] [blame] | 5994 | HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock); |
Olivier Houchard | a74bb7e | 2020-07-03 14:01:21 +0200 | [diff] [blame] | 5995 | if (conn_in_list == CO_FL_SAFE_LIST) |
Willy Tarreau | 430bf4a | 2021-03-04 09:45:32 +0100 | [diff] [blame] | 5996 | 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] | 5997 | else |
Willy Tarreau | 430bf4a | 2021-03-04 09:45:32 +0100 | [diff] [blame] | 5998 | 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] | 5999 | HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock); |
Olivier Houchard | a74bb7e | 2020-07-03 14:01:21 +0200 | [diff] [blame] | 6000 | } |
Willy Tarreau | 7416314 | 2021-03-13 11:30:19 +0100 | [diff] [blame] | 6001 | return t; |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 6002 | } |
| 6003 | |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6004 | /* 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] | 6005 | * into buffer <buf>. Only one call to recv() is performed, unless the |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6006 | * buffer wraps, in which case a second call may be performed. The connection's |
| 6007 | * flags are updated with whatever special event is detected (error, read0, |
| 6008 | * empty). The caller is responsible for taking care of those events and |
| 6009 | * avoiding the call if inappropriate. The function does not call the |
| 6010 | * connection's polling update function, so the caller is responsible for this. |
| 6011 | */ |
Olivier Houchard | e179d0e | 2019-03-21 18:27:17 +0100 | [diff] [blame] | 6012 | 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] | 6013 | { |
Olivier Houchard | e179d0e | 2019-03-21 18:27:17 +0100 | [diff] [blame] | 6014 | struct ssl_sock_ctx *ctx = xprt_ctx; |
Willy Tarreau | bfc4d77 | 2018-07-18 11:22:03 +0200 | [diff] [blame] | 6015 | ssize_t ret; |
| 6016 | size_t try, done = 0; |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6017 | |
Olivier Houchard | e179d0e | 2019-03-21 18:27:17 +0100 | [diff] [blame] | 6018 | if (!ctx) |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6019 | goto out_error; |
| 6020 | |
Ilya Shipitsin | 761d64c | 2021-01-07 11:59:58 +0500 | [diff] [blame] | 6021 | #ifdef SSL_READ_EARLY_DATA_SUCCESS |
Olivier Houchard | 54907bb | 2019-12-19 15:02:39 +0100 | [diff] [blame] | 6022 | if (b_data(&ctx->early_buf)) { |
| 6023 | try = b_contig_space(buf); |
| 6024 | if (try > b_data(&ctx->early_buf)) |
| 6025 | try = b_data(&ctx->early_buf); |
| 6026 | memcpy(b_tail(buf), b_head(&ctx->early_buf), try); |
| 6027 | b_add(buf, try); |
| 6028 | b_del(&ctx->early_buf, try); |
| 6029 | if (b_data(&ctx->early_buf) == 0) |
| 6030 | b_free(&ctx->early_buf); |
| 6031 | return try; |
| 6032 | } |
| 6033 | #endif |
| 6034 | |
Willy Tarreau | 911db9b | 2020-01-23 16:27:54 +0100 | [diff] [blame] | 6035 | if (conn->flags & (CO_FL_WAIT_XPRT | CO_FL_SSL_WAIT_HS)) |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6036 | /* a handshake was requested */ |
| 6037 | return 0; |
| 6038 | |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6039 | /* read the largest possible block. For this, we perform only one call |
| 6040 | * to recv() unless the buffer wraps and we exactly fill the first hunk, |
| 6041 | * in which case we accept to do it once again. A new attempt is made on |
| 6042 | * EINTR too. |
| 6043 | */ |
Willy Tarreau | 00b0fb9 | 2014-01-17 11:09:40 +0100 | [diff] [blame] | 6044 | while (count > 0) { |
Olivier Houchard | c2aae74 | 2017-09-22 18:26:28 +0200 | [diff] [blame] | 6045 | |
Willy Tarreau | 591d445 | 2018-06-15 17:21:00 +0200 | [diff] [blame] | 6046 | try = b_contig_space(buf); |
| 6047 | if (!try) |
| 6048 | break; |
| 6049 | |
Willy Tarreau | abf08d9 | 2014-01-14 11:31:27 +0100 | [diff] [blame] | 6050 | if (try > count) |
| 6051 | try = count; |
Willy Tarreau | 591d445 | 2018-06-15 17:21:00 +0200 | [diff] [blame] | 6052 | |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6053 | ret = SSL_read(ctx->ssl, b_tail(buf), try); |
Emmanuel Hocdet | f967c31 | 2019-08-05 18:04:16 +0200 | [diff] [blame] | 6054 | |
Emeric Brun | e1f38db | 2012-09-03 20:36:47 +0200 | [diff] [blame] | 6055 | if (conn->flags & CO_FL_ERROR) { |
| 6056 | /* CO_FL_ERROR may be set by ssl_sock_infocbk */ |
Emeric Brun | 644cde0 | 2012-12-14 11:21:13 +0100 | [diff] [blame] | 6057 | goto out_error; |
Emeric Brun | e1f38db | 2012-09-03 20:36:47 +0200 | [diff] [blame] | 6058 | } |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6059 | if (ret > 0) { |
Olivier Houchard | acd1403 | 2018-06-28 18:17:23 +0200 | [diff] [blame] | 6060 | b_add(buf, ret); |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6061 | done += ret; |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6062 | count -= ret; |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6063 | } |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6064 | else { |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6065 | ret = SSL_get_error(ctx->ssl, ret); |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6066 | if (ret == SSL_ERROR_WANT_WRITE) { |
Emeric Brun | 8af8dd1 | 2012-11-08 17:56:20 +0100 | [diff] [blame] | 6067 | /* handshake is running, and it needs to enable write */ |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6068 | conn->flags |= CO_FL_SSL_WAIT_HS; |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 6069 | 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] | 6070 | #ifdef SSL_MODE_ASYNC |
Emeric Brun | b5e42a8 | 2017-06-06 12:35:14 +0000 | [diff] [blame] | 6071 | /* Async mode can be re-enabled, because we're leaving data state.*/ |
| 6072 | if (global_ssl.async) |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6073 | SSL_set_mode(ctx->ssl, SSL_MODE_ASYNC); |
Emeric Brun | b5e42a8 | 2017-06-06 12:35:14 +0000 | [diff] [blame] | 6074 | #endif |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6075 | break; |
| 6076 | } |
| 6077 | else if (ret == SSL_ERROR_WANT_READ) { |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6078 | if (SSL_renegotiate_pending(ctx->ssl)) { |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 6079 | ctx->xprt->subscribe(conn, ctx->xprt_ctx, |
| 6080 | SUB_RETRY_RECV, |
| 6081 | &ctx->wait_event); |
Emeric Brun | 282a76a | 2012-11-08 18:02:56 +0100 | [diff] [blame] | 6082 | /* handshake is running, and it may need to re-enable read */ |
| 6083 | conn->flags |= CO_FL_SSL_WAIT_HS; |
Ilya Shipitsin | bdec3ba | 2020-11-14 01:56:34 +0500 | [diff] [blame] | 6084 | #ifdef SSL_MODE_ASYNC |
Emeric Brun | b5e42a8 | 2017-06-06 12:35:14 +0000 | [diff] [blame] | 6085 | /* Async mode can be re-enabled, because we're leaving data state.*/ |
| 6086 | if (global_ssl.async) |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6087 | SSL_set_mode(ctx->ssl, SSL_MODE_ASYNC); |
Emeric Brun | b5e42a8 | 2017-06-06 12:35:14 +0000 | [diff] [blame] | 6088 | #endif |
Emeric Brun | 282a76a | 2012-11-08 18:02:56 +0100 | [diff] [blame] | 6089 | break; |
| 6090 | } |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6091 | break; |
Olivier Houchard | c2aae74 | 2017-09-22 18:26:28 +0200 | [diff] [blame] | 6092 | } else if (ret == SSL_ERROR_ZERO_RETURN) |
| 6093 | goto read0; |
Christopher Faulet | 4ac77a9 | 2018-02-19 14:25:15 +0100 | [diff] [blame] | 6094 | /* For SSL_ERROR_SYSCALL, make sure to clear the error |
| 6095 | * stack before shutting down the connection for |
| 6096 | * reading. */ |
Olivier Houchard | 7e2e505 | 2018-02-13 15:17:23 +0100 | [diff] [blame] | 6097 | if (ret == SSL_ERROR_SYSCALL && (!errno || errno == EAGAIN)) |
| 6098 | goto clear_ssl_error; |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6099 | /* otherwise it's a real error */ |
| 6100 | goto out_error; |
| 6101 | } |
| 6102 | } |
Willy Tarreau | 31d4dbe | 2017-10-25 09:32:15 +0200 | [diff] [blame] | 6103 | leave: |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6104 | return done; |
| 6105 | |
Christopher Faulet | 4ac77a9 | 2018-02-19 14:25:15 +0100 | [diff] [blame] | 6106 | clear_ssl_error: |
| 6107 | /* Clear openssl global errors stack */ |
| 6108 | ssl_sock_dump_errors(conn); |
| 6109 | ERR_clear_error(); |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6110 | read0: |
| 6111 | conn_sock_read0(conn); |
Willy Tarreau | 31d4dbe | 2017-10-25 09:32:15 +0200 | [diff] [blame] | 6112 | goto leave; |
Christopher Faulet | 4ac77a9 | 2018-02-19 14:25:15 +0100 | [diff] [blame] | 6113 | |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6114 | out_error: |
Olivier Houchard | 7e2e505 | 2018-02-13 15:17:23 +0100 | [diff] [blame] | 6115 | conn->flags |= CO_FL_ERROR; |
Emeric Brun | 644cde0 | 2012-12-14 11:21:13 +0100 | [diff] [blame] | 6116 | /* Clear openssl global errors stack */ |
Thierry FOURNIER / OZON.IO | 8b068c2 | 2016-10-10 11:59:50 +0200 | [diff] [blame] | 6117 | ssl_sock_dump_errors(conn); |
Emeric Brun | 644cde0 | 2012-12-14 11:21:13 +0100 | [diff] [blame] | 6118 | ERR_clear_error(); |
Willy Tarreau | 31d4dbe | 2017-10-25 09:32:15 +0200 | [diff] [blame] | 6119 | goto leave; |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6120 | } |
| 6121 | |
| 6122 | |
Willy Tarreau | 787db9a | 2018-06-14 18:31:46 +0200 | [diff] [blame] | 6123 | /* Send up to <count> pending bytes from buffer <buf> to connection <conn>'s |
| 6124 | * socket. <flags> may contain some CO_SFL_* flags to hint the system about |
| 6125 | * 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] | 6126 | * Only one call to send() is performed, unless the buffer wraps, in which case |
| 6127 | * a second call may be performed. The connection's flags are updated with |
| 6128 | * whatever special event is detected (error, empty). The caller is responsible |
| 6129 | * for taking care of those events and avoiding the call if inappropriate. The |
| 6130 | * 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] | 6131 | * is responsible for this. The buffer's output is not adjusted, it's up to the |
| 6132 | * caller to take care of this. It's up to the caller to update the buffer's |
| 6133 | * contents based on the return value. |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6134 | */ |
Olivier Houchard | e179d0e | 2019-03-21 18:27:17 +0100 | [diff] [blame] | 6135 | 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] | 6136 | { |
Olivier Houchard | e179d0e | 2019-03-21 18:27:17 +0100 | [diff] [blame] | 6137 | struct ssl_sock_ctx *ctx = xprt_ctx; |
Willy Tarreau | 787db9a | 2018-06-14 18:31:46 +0200 | [diff] [blame] | 6138 | ssize_t ret; |
| 6139 | size_t try, done; |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6140 | |
| 6141 | done = 0; |
| 6142 | |
Olivier Houchard | e179d0e | 2019-03-21 18:27:17 +0100 | [diff] [blame] | 6143 | if (!ctx) |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6144 | goto out_error; |
| 6145 | |
Willy Tarreau | 911db9b | 2020-01-23 16:27:54 +0100 | [diff] [blame] | 6146 | 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] | 6147 | /* a handshake was requested */ |
| 6148 | return 0; |
| 6149 | |
| 6150 | /* send the largest possible block. For this we perform only one call |
| 6151 | * to send() unless the buffer wraps and we exactly fill the first hunk, |
| 6152 | * in which case we accept to do it once again. |
| 6153 | */ |
Willy Tarreau | 787db9a | 2018-06-14 18:31:46 +0200 | [diff] [blame] | 6154 | while (count) { |
Ilya Shipitsin | b9b84a4 | 2020-10-24 23:42:30 +0500 | [diff] [blame] | 6155 | #ifdef SSL_READ_EARLY_DATA_SUCCESS |
Olivier Houchard | c2aae74 | 2017-09-22 18:26:28 +0200 | [diff] [blame] | 6156 | size_t written_data; |
| 6157 | #endif |
| 6158 | |
Willy Tarreau | 787db9a | 2018-06-14 18:31:46 +0200 | [diff] [blame] | 6159 | try = b_contig_data(buf, done); |
| 6160 | if (try > count) |
| 6161 | try = count; |
Willy Tarreau | bfd5946 | 2013-02-21 07:46:09 +0100 | [diff] [blame] | 6162 | |
Willy Tarreau | 7bed945 | 2014-02-02 02:00:24 +0100 | [diff] [blame] | 6163 | if (!(flags & CO_SFL_STREAMER) && |
Olivier Houchard | 7b5fd1e | 2019-02-28 18:10:45 +0100 | [diff] [blame] | 6164 | !(ctx->xprt_st & SSL_SOCK_SEND_UNLIMITED) && |
Willy Tarreau | ef93460 | 2016-12-22 23:12:01 +0100 | [diff] [blame] | 6165 | global_ssl.max_record && try > global_ssl.max_record) { |
| 6166 | try = global_ssl.max_record; |
Willy Tarreau | 518cedd | 2014-02-17 15:43:01 +0100 | [diff] [blame] | 6167 | } |
| 6168 | else { |
| 6169 | /* we need to keep the information about the fact that |
| 6170 | * we're not limiting the upcoming send(), because if it |
| 6171 | * fails, we'll have to retry with at least as many data. |
| 6172 | */ |
Olivier Houchard | 7b5fd1e | 2019-02-28 18:10:45 +0100 | [diff] [blame] | 6173 | ctx->xprt_st |= SSL_SOCK_SEND_UNLIMITED; |
Willy Tarreau | 518cedd | 2014-02-17 15:43:01 +0100 | [diff] [blame] | 6174 | } |
Willy Tarreau | bfd5946 | 2013-02-21 07:46:09 +0100 | [diff] [blame] | 6175 | |
Ilya Shipitsin | b9b84a4 | 2020-10-24 23:42:30 +0500 | [diff] [blame] | 6176 | #ifdef SSL_READ_EARLY_DATA_SUCCESS |
Olivier Houchard | 010941f | 2019-05-03 20:56:19 +0200 | [diff] [blame] | 6177 | if (!SSL_is_init_finished(ctx->ssl) && conn_is_back(conn)) { |
Olivier Houchard | c2aae74 | 2017-09-22 18:26:28 +0200 | [diff] [blame] | 6178 | unsigned int max_early; |
| 6179 | |
Olivier Houchard | 522eea7 | 2017-11-03 16:27:47 +0100 | [diff] [blame] | 6180 | if (objt_listener(conn->target)) |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6181 | max_early = SSL_get_max_early_data(ctx->ssl); |
Olivier Houchard | 522eea7 | 2017-11-03 16:27:47 +0100 | [diff] [blame] | 6182 | else { |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6183 | if (SSL_get0_session(ctx->ssl)) |
| 6184 | 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] | 6185 | else |
| 6186 | max_early = 0; |
| 6187 | } |
| 6188 | |
Olivier Houchard | 7b5fd1e | 2019-02-28 18:10:45 +0100 | [diff] [blame] | 6189 | if (try + ctx->sent_early_data > max_early) { |
| 6190 | try -= (try + ctx->sent_early_data) - max_early; |
Olivier Houchard | 522eea7 | 2017-11-03 16:27:47 +0100 | [diff] [blame] | 6191 | if (try <= 0) { |
Olivier Houchard | 010941f | 2019-05-03 20:56:19 +0200 | [diff] [blame] | 6192 | conn->flags |= CO_FL_SSL_WAIT_HS | CO_FL_WAIT_L6_CONN; |
Olivier Houchard | 965e84e | 2019-06-15 20:59:30 +0200 | [diff] [blame] | 6193 | tasklet_wakeup(ctx->wait_event.tasklet); |
Olivier Houchard | c2aae74 | 2017-09-22 18:26:28 +0200 | [diff] [blame] | 6194 | break; |
Olivier Houchard | 522eea7 | 2017-11-03 16:27:47 +0100 | [diff] [blame] | 6195 | } |
Olivier Houchard | c2aae74 | 2017-09-22 18:26:28 +0200 | [diff] [blame] | 6196 | } |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6197 | 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] | 6198 | if (ret == 1) { |
| 6199 | ret = written_data; |
Olivier Houchard | 7b5fd1e | 2019-02-28 18:10:45 +0100 | [diff] [blame] | 6200 | ctx->sent_early_data += ret; |
Olivier Houchard | 965e84e | 2019-06-15 20:59:30 +0200 | [diff] [blame] | 6201 | if (objt_server(conn->target)) { |
Olivier Houchard | 522eea7 | 2017-11-03 16:27:47 +0100 | [diff] [blame] | 6202 | 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] | 6203 | /* Initiate the handshake, now */ |
| 6204 | tasklet_wakeup(ctx->wait_event.tasklet); |
| 6205 | } |
Olivier Houchard | 522eea7 | 2017-11-03 16:27:47 +0100 | [diff] [blame] | 6206 | |
Olivier Houchard | c2aae74 | 2017-09-22 18:26:28 +0200 | [diff] [blame] | 6207 | } |
| 6208 | |
| 6209 | } else |
| 6210 | #endif |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6211 | ret = SSL_write(ctx->ssl, b_peek(buf, done), try); |
Willy Tarreau | 518cedd | 2014-02-17 15:43:01 +0100 | [diff] [blame] | 6212 | |
Emeric Brun | e1f38db | 2012-09-03 20:36:47 +0200 | [diff] [blame] | 6213 | if (conn->flags & CO_FL_ERROR) { |
| 6214 | /* CO_FL_ERROR may be set by ssl_sock_infocbk */ |
Emeric Brun | 644cde0 | 2012-12-14 11:21:13 +0100 | [diff] [blame] | 6215 | goto out_error; |
Emeric Brun | e1f38db | 2012-09-03 20:36:47 +0200 | [diff] [blame] | 6216 | } |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6217 | if (ret > 0) { |
Willy Tarreau | c192b0a | 2020-01-23 09:11:58 +0100 | [diff] [blame] | 6218 | /* A send succeeded, so we can consider ourself connected */ |
| 6219 | conn->flags &= ~CO_FL_WAIT_L4L6; |
Olivier Houchard | 7b5fd1e | 2019-02-28 18:10:45 +0100 | [diff] [blame] | 6220 | ctx->xprt_st &= ~SSL_SOCK_SEND_UNLIMITED; |
Willy Tarreau | 787db9a | 2018-06-14 18:31:46 +0200 | [diff] [blame] | 6221 | count -= ret; |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6222 | done += ret; |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6223 | } |
| 6224 | else { |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6225 | ret = SSL_get_error(ctx->ssl, ret); |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 6226 | |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6227 | if (ret == SSL_ERROR_WANT_WRITE) { |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6228 | if (SSL_renegotiate_pending(ctx->ssl)) { |
Emeric Brun | 282a76a | 2012-11-08 18:02:56 +0100 | [diff] [blame] | 6229 | /* handshake is running, and it may need to re-enable write */ |
| 6230 | conn->flags |= CO_FL_SSL_WAIT_HS; |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 6231 | 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] | 6232 | #ifdef SSL_MODE_ASYNC |
Emeric Brun | b5e42a8 | 2017-06-06 12:35:14 +0000 | [diff] [blame] | 6233 | /* Async mode can be re-enabled, because we're leaving data state.*/ |
| 6234 | if (global_ssl.async) |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6235 | SSL_set_mode(ctx->ssl, SSL_MODE_ASYNC); |
Emeric Brun | b5e42a8 | 2017-06-06 12:35:14 +0000 | [diff] [blame] | 6236 | #endif |
Emeric Brun | 282a76a | 2012-11-08 18:02:56 +0100 | [diff] [blame] | 6237 | break; |
| 6238 | } |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 6239 | |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6240 | break; |
| 6241 | } |
| 6242 | else if (ret == SSL_ERROR_WANT_READ) { |
Emeric Brun | 8af8dd1 | 2012-11-08 17:56:20 +0100 | [diff] [blame] | 6243 | /* handshake is running, and it needs to enable read */ |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6244 | conn->flags |= CO_FL_SSL_WAIT_HS; |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 6245 | ctx->xprt->subscribe(conn, ctx->xprt_ctx, |
| 6246 | SUB_RETRY_RECV, |
| 6247 | &ctx->wait_event); |
Ilya Shipitsin | bdec3ba | 2020-11-14 01:56:34 +0500 | [diff] [blame] | 6248 | #ifdef SSL_MODE_ASYNC |
Emeric Brun | b5e42a8 | 2017-06-06 12:35:14 +0000 | [diff] [blame] | 6249 | /* Async mode can be re-enabled, because we're leaving data state.*/ |
| 6250 | if (global_ssl.async) |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6251 | SSL_set_mode(ctx->ssl, SSL_MODE_ASYNC); |
Emeric Brun | b5e42a8 | 2017-06-06 12:35:14 +0000 | [diff] [blame] | 6252 | #endif |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 6253 | break; |
| 6254 | } |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6255 | goto out_error; |
| 6256 | } |
| 6257 | } |
Willy Tarreau | 31d4dbe | 2017-10-25 09:32:15 +0200 | [diff] [blame] | 6258 | leave: |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6259 | return done; |
| 6260 | |
| 6261 | out_error: |
Emeric Brun | 644cde0 | 2012-12-14 11:21:13 +0100 | [diff] [blame] | 6262 | /* Clear openssl global errors stack */ |
Thierry FOURNIER / OZON.IO | 8b068c2 | 2016-10-10 11:59:50 +0200 | [diff] [blame] | 6263 | ssl_sock_dump_errors(conn); |
Emeric Brun | 644cde0 | 2012-12-14 11:21:13 +0100 | [diff] [blame] | 6264 | ERR_clear_error(); |
| 6265 | |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6266 | conn->flags |= CO_FL_ERROR; |
Willy Tarreau | 31d4dbe | 2017-10-25 09:32:15 +0200 | [diff] [blame] | 6267 | goto leave; |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6268 | } |
| 6269 | |
Willy Tarreau | 832e242 | 2021-05-13 10:11:03 +0200 | [diff] [blame] | 6270 | void ssl_sock_close(struct connection *conn, void *xprt_ctx) { |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6271 | |
Olivier Houchard | e179d0e | 2019-03-21 18:27:17 +0100 | [diff] [blame] | 6272 | struct ssl_sock_ctx *ctx = xprt_ctx; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6273 | |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 6274 | |
Olivier Houchard | e179d0e | 2019-03-21 18:27:17 +0100 | [diff] [blame] | 6275 | if (ctx) { |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 6276 | if (ctx->wait_event.events != 0) |
| 6277 | ctx->xprt->unsubscribe(ctx->conn, ctx->xprt_ctx, |
| 6278 | ctx->wait_event.events, |
| 6279 | &ctx->wait_event); |
Willy Tarreau | 113d52b | 2020-01-10 09:20:26 +0100 | [diff] [blame] | 6280 | if (ctx->subs) { |
| 6281 | ctx->subs->events = 0; |
| 6282 | tasklet_wakeup(ctx->subs->tasklet); |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 6283 | } |
Willy Tarreau | 113d52b | 2020-01-10 09:20:26 +0100 | [diff] [blame] | 6284 | |
Olivier Houchard | 692c1d0 | 2019-05-23 18:41:47 +0200 | [diff] [blame] | 6285 | if (ctx->xprt->close) |
| 6286 | ctx->xprt->close(conn, ctx->xprt_ctx); |
Ilya Shipitsin | bdec3ba | 2020-11-14 01:56:34 +0500 | [diff] [blame] | 6287 | #ifdef SSL_MODE_ASYNC |
Emeric Brun | 3854e01 | 2017-05-17 20:42:48 +0200 | [diff] [blame] | 6288 | if (global_ssl.async) { |
| 6289 | OSSL_ASYNC_FD all_fd[32], afd; |
| 6290 | size_t num_all_fds = 0; |
| 6291 | int i; |
| 6292 | |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6293 | SSL_get_all_async_fds(ctx->ssl, NULL, &num_all_fds); |
Emeric Brun | 3854e01 | 2017-05-17 20:42:48 +0200 | [diff] [blame] | 6294 | if (num_all_fds > 32) { |
| 6295 | send_log(NULL, LOG_EMERG, "haproxy: openssl returns too many async fds. It seems a bug. Process may crash\n"); |
| 6296 | return; |
| 6297 | } |
| 6298 | |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6299 | SSL_get_all_async_fds(ctx->ssl, all_fd, &num_all_fds); |
Emeric Brun | 3854e01 | 2017-05-17 20:42:48 +0200 | [diff] [blame] | 6300 | |
| 6301 | /* If an async job is pending, we must try to |
| 6302 | to catch the end using polling before calling |
| 6303 | SSL_free */ |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6304 | if (num_all_fds && SSL_waiting_for_async(ctx->ssl)) { |
Emeric Brun | 3854e01 | 2017-05-17 20:42:48 +0200 | [diff] [blame] | 6305 | for (i=0 ; i < num_all_fds ; i++) { |
| 6306 | /* switch on an handler designed to |
| 6307 | * handle the SSL_free |
| 6308 | */ |
| 6309 | afd = all_fd[i]; |
| 6310 | fdtab[afd].iocb = ssl_async_fd_free; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6311 | fdtab[afd].owner = ctx->ssl; |
Emeric Brun | 3854e01 | 2017-05-17 20:42:48 +0200 | [diff] [blame] | 6312 | fd_want_recv(afd); |
Emeric Brun | ce9e01c | 2017-05-31 10:02:53 +0000 | [diff] [blame] | 6313 | /* To ensure that the fd cache won't be used |
| 6314 | * and we'll catch a real RD event. |
| 6315 | */ |
| 6316 | fd_cant_recv(afd); |
Emeric Brun | 3854e01 | 2017-05-17 20:42:48 +0200 | [diff] [blame] | 6317 | } |
Willy Tarreau | 3c39a7d | 2019-06-14 14:42:29 +0200 | [diff] [blame] | 6318 | tasklet_free(ctx->wait_event.tasklet); |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6319 | pool_free(ssl_sock_ctx_pool, ctx); |
Willy Tarreau | 4781b15 | 2021-04-06 13:53:36 +0200 | [diff] [blame] | 6320 | _HA_ATOMIC_INC(&jobs); |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 6321 | return; |
| 6322 | } |
Emeric Brun | 3854e01 | 2017-05-17 20:42:48 +0200 | [diff] [blame] | 6323 | /* Else we can remove the fds from the fdtab |
| 6324 | * and call SSL_free. |
Willy Tarreau | 6767245 | 2020-08-26 11:44:17 +0200 | [diff] [blame] | 6325 | * note: we do a fd_stop_both and not a delete |
Emeric Brun | 3854e01 | 2017-05-17 20:42:48 +0200 | [diff] [blame] | 6326 | * because the fd is owned by the engine. |
| 6327 | * the engine is responsible to close |
| 6328 | */ |
| 6329 | for (i=0 ; i < num_all_fds ; i++) |
Willy Tarreau | 6767245 | 2020-08-26 11:44:17 +0200 | [diff] [blame] | 6330 | fd_stop_both(all_fd[i]); |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 6331 | } |
| 6332 | #endif |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6333 | SSL_free(ctx->ssl); |
Olivier Houchard | 54907bb | 2019-12-19 15:02:39 +0100 | [diff] [blame] | 6334 | b_free(&ctx->early_buf); |
Willy Tarreau | 3c39a7d | 2019-06-14 14:42:29 +0200 | [diff] [blame] | 6335 | tasklet_free(ctx->wait_event.tasklet); |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6336 | pool_free(ssl_sock_ctx_pool, ctx); |
Willy Tarreau | 4781b15 | 2021-04-06 13:53:36 +0200 | [diff] [blame] | 6337 | _HA_ATOMIC_DEC(&sslconns); |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6338 | } |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6339 | } |
| 6340 | |
| 6341 | /* This function tries to perform a clean shutdown on an SSL connection, and in |
| 6342 | * any case, flags the connection as reusable if no handshake was in progress. |
| 6343 | */ |
Olivier Houchard | e179d0e | 2019-03-21 18:27:17 +0100 | [diff] [blame] | 6344 | 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] | 6345 | { |
Olivier Houchard | e179d0e | 2019-03-21 18:27:17 +0100 | [diff] [blame] | 6346 | struct ssl_sock_ctx *ctx = xprt_ctx; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6347 | |
Willy Tarreau | 911db9b | 2020-01-23 16:27:54 +0100 | [diff] [blame] | 6348 | if (conn->flags & (CO_FL_WAIT_XPRT | CO_FL_SSL_WAIT_HS)) |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6349 | return; |
Emmanuel Hocdet | 405ff31 | 2017-01-08 14:07:39 +0100 | [diff] [blame] | 6350 | if (!clean) |
| 6351 | /* don't sent notify on SSL_shutdown */ |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6352 | SSL_set_quiet_shutdown(ctx->ssl, 1); |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6353 | /* no handshake was in progress, try a clean ssl shutdown */ |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6354 | if (SSL_shutdown(ctx->ssl) <= 0) { |
Emeric Brun | 644cde0 | 2012-12-14 11:21:13 +0100 | [diff] [blame] | 6355 | /* Clear openssl global errors stack */ |
Thierry FOURNIER / OZON.IO | 8b068c2 | 2016-10-10 11:59:50 +0200 | [diff] [blame] | 6356 | ssl_sock_dump_errors(conn); |
Emeric Brun | 644cde0 | 2012-12-14 11:21:13 +0100 | [diff] [blame] | 6357 | ERR_clear_error(); |
| 6358 | } |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6359 | } |
| 6360 | |
Emmanuel Hocdet | 96b7834 | 2017-10-31 15:46:07 +0100 | [diff] [blame] | 6361 | |
Ilya Shipitsin | 77e3b4a | 2020-03-10 12:06:11 +0500 | [diff] [blame] | 6362 | /* used for ppv2 pkey algo (can be used for logging) */ |
William Lallemand | d4f946c | 2019-12-05 10:26:40 +0100 | [diff] [blame] | 6363 | int ssl_sock_get_pkey_algo(struct connection *conn, struct buffer *out) |
| 6364 | { |
| 6365 | struct ssl_sock_ctx *ctx; |
| 6366 | X509 *crt; |
| 6367 | |
| 6368 | if (!ssl_sock_is_ssl(conn)) |
| 6369 | return 0; |
| 6370 | |
| 6371 | ctx = conn->xprt_ctx; |
| 6372 | |
| 6373 | crt = SSL_get_certificate(ctx->ssl); |
| 6374 | if (!crt) |
| 6375 | return 0; |
| 6376 | |
| 6377 | return cert_get_pkey_algo(crt, out); |
| 6378 | } |
| 6379 | |
Emmanuel Hocdet | 283e004 | 2017-11-02 14:05:23 +0100 | [diff] [blame] | 6380 | /* used for ppv2 cert signature (can be used for logging) */ |
| 6381 | const char *ssl_sock_get_cert_sig(struct connection *conn) |
| 6382 | { |
Christopher Faulet | 8200414 | 2019-09-10 10:12:03 +0200 | [diff] [blame] | 6383 | struct ssl_sock_ctx *ctx; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6384 | |
Emmanuel Hocdet | 283e004 | 2017-11-02 14:05:23 +0100 | [diff] [blame] | 6385 | __OPENSSL_110_CONST__ ASN1_OBJECT *algorithm; |
| 6386 | X509 *crt; |
| 6387 | |
| 6388 | if (!ssl_sock_is_ssl(conn)) |
| 6389 | return NULL; |
Christopher Faulet | 8200414 | 2019-09-10 10:12:03 +0200 | [diff] [blame] | 6390 | ctx = conn->xprt_ctx; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6391 | crt = SSL_get_certificate(ctx->ssl); |
Emmanuel Hocdet | 283e004 | 2017-11-02 14:05:23 +0100 | [diff] [blame] | 6392 | if (!crt) |
| 6393 | return NULL; |
| 6394 | X509_ALGOR_get0(&algorithm, NULL, NULL, X509_get0_tbs_sigalg(crt)); |
| 6395 | return OBJ_nid2sn(OBJ_obj2nid(algorithm)); |
| 6396 | } |
| 6397 | |
Emmanuel Hocdet | 253c3b7 | 2018-02-01 18:29:59 +0100 | [diff] [blame] | 6398 | /* used for ppv2 authority */ |
| 6399 | const char *ssl_sock_get_sni(struct connection *conn) |
| 6400 | { |
| 6401 | #ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME |
Christopher Faulet | 8200414 | 2019-09-10 10:12:03 +0200 | [diff] [blame] | 6402 | struct ssl_sock_ctx *ctx; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6403 | |
Emmanuel Hocdet | 253c3b7 | 2018-02-01 18:29:59 +0100 | [diff] [blame] | 6404 | if (!ssl_sock_is_ssl(conn)) |
| 6405 | return NULL; |
Christopher Faulet | 8200414 | 2019-09-10 10:12:03 +0200 | [diff] [blame] | 6406 | ctx = conn->xprt_ctx; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6407 | return SSL_get_servername(ctx->ssl, TLSEXT_NAMETYPE_host_name); |
Emmanuel Hocdet | 253c3b7 | 2018-02-01 18:29:59 +0100 | [diff] [blame] | 6408 | #else |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6409 | return NULL; |
Emmanuel Hocdet | 253c3b7 | 2018-02-01 18:29:59 +0100 | [diff] [blame] | 6410 | #endif |
| 6411 | } |
| 6412 | |
Emmanuel Hocdet | 01da571 | 2017-10-13 16:59:49 +0200 | [diff] [blame] | 6413 | /* used for logging/ppv2, may be changed for a sample fetch later */ |
Willy Tarreau | ffc3fcd | 2012-10-12 20:17:54 +0200 | [diff] [blame] | 6414 | const char *ssl_sock_get_cipher_name(struct connection *conn) |
| 6415 | { |
Christopher Faulet | 8200414 | 2019-09-10 10:12:03 +0200 | [diff] [blame] | 6416 | struct ssl_sock_ctx *ctx; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6417 | |
Emmanuel Hocdet | 01da571 | 2017-10-13 16:59:49 +0200 | [diff] [blame] | 6418 | if (!ssl_sock_is_ssl(conn)) |
Willy Tarreau | ffc3fcd | 2012-10-12 20:17:54 +0200 | [diff] [blame] | 6419 | return NULL; |
Christopher Faulet | 8200414 | 2019-09-10 10:12:03 +0200 | [diff] [blame] | 6420 | ctx = conn->xprt_ctx; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6421 | return SSL_get_cipher_name(ctx->ssl); |
Willy Tarreau | ffc3fcd | 2012-10-12 20:17:54 +0200 | [diff] [blame] | 6422 | } |
| 6423 | |
Emmanuel Hocdet | 01da571 | 2017-10-13 16:59:49 +0200 | [diff] [blame] | 6424 | /* used for logging/ppv2, may be changed for a sample fetch later */ |
Willy Tarreau | ffc3fcd | 2012-10-12 20:17:54 +0200 | [diff] [blame] | 6425 | const char *ssl_sock_get_proto_version(struct connection *conn) |
| 6426 | { |
Christopher Faulet | 8200414 | 2019-09-10 10:12:03 +0200 | [diff] [blame] | 6427 | struct ssl_sock_ctx *ctx; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6428 | |
Emmanuel Hocdet | 01da571 | 2017-10-13 16:59:49 +0200 | [diff] [blame] | 6429 | if (!ssl_sock_is_ssl(conn)) |
Willy Tarreau | ffc3fcd | 2012-10-12 20:17:54 +0200 | [diff] [blame] | 6430 | return NULL; |
Christopher Faulet | 8200414 | 2019-09-10 10:12:03 +0200 | [diff] [blame] | 6431 | ctx = conn->xprt_ctx; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6432 | return SSL_get_version(ctx->ssl); |
Willy Tarreau | ffc3fcd | 2012-10-12 20:17:54 +0200 | [diff] [blame] | 6433 | } |
| 6434 | |
Olivier Houchard | ab28a32 | 2018-12-21 19:45:40 +0100 | [diff] [blame] | 6435 | void ssl_sock_set_alpn(struct connection *conn, const unsigned char *alpn, int len) |
| 6436 | { |
| 6437 | #ifdef TLSEXT_TYPE_application_layer_protocol_negotiation |
Christopher Faulet | 8200414 | 2019-09-10 10:12:03 +0200 | [diff] [blame] | 6438 | struct ssl_sock_ctx *ctx; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6439 | |
Olivier Houchard | e488ea8 | 2019-06-28 14:10:33 +0200 | [diff] [blame] | 6440 | if (!ssl_sock_is_ssl(conn)) |
| 6441 | return; |
Christopher Faulet | 8200414 | 2019-09-10 10:12:03 +0200 | [diff] [blame] | 6442 | ctx = conn->xprt_ctx; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6443 | SSL_set_alpn_protos(ctx->ssl, alpn, len); |
Olivier Houchard | ab28a32 | 2018-12-21 19:45:40 +0100 | [diff] [blame] | 6444 | #endif |
| 6445 | } |
| 6446 | |
Willy Tarreau | 119a408 | 2016-12-22 21:58:38 +0100 | [diff] [blame] | 6447 | /* Sets advertised SNI for outgoing connections. Please set <hostname> to NULL |
| 6448 | * to disable SNI. |
| 6449 | */ |
Willy Tarreau | 6307641 | 2015-07-10 11:33:32 +0200 | [diff] [blame] | 6450 | void ssl_sock_set_servername(struct connection *conn, const char *hostname) |
| 6451 | { |
| 6452 | #ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME |
Christopher Faulet | 8200414 | 2019-09-10 10:12:03 +0200 | [diff] [blame] | 6453 | struct ssl_sock_ctx *ctx; |
William Lallemand | c78ac5a | 2021-11-17 02:59:21 +0100 | [diff] [blame] | 6454 | struct server *s; |
Willy Tarreau | 119a408 | 2016-12-22 21:58:38 +0100 | [diff] [blame] | 6455 | char *prev_name; |
| 6456 | |
Willy Tarreau | 6307641 | 2015-07-10 11:33:32 +0200 | [diff] [blame] | 6457 | if (!ssl_sock_is_ssl(conn)) |
| 6458 | return; |
Christopher Faulet | 8200414 | 2019-09-10 10:12:03 +0200 | [diff] [blame] | 6459 | ctx = conn->xprt_ctx; |
William Lallemand | c78ac5a | 2021-11-17 02:59:21 +0100 | [diff] [blame] | 6460 | s = __objt_server(conn->target); |
Willy Tarreau | 6307641 | 2015-07-10 11:33:32 +0200 | [diff] [blame] | 6461 | |
Willy Tarreau | 119a408 | 2016-12-22 21:58:38 +0100 | [diff] [blame] | 6462 | /* if the SNI changes, we must destroy the reusable context so that a |
William Lallemand | c78ac5a | 2021-11-17 02:59:21 +0100 | [diff] [blame] | 6463 | * new connection will present a new SNI. compare with the SNI |
| 6464 | * previously stored in the reused_sess */ |
| 6465 | /* the RWLOCK is used to ensure that we are not trying to flush the |
| 6466 | * cache from the CLI */ |
| 6467 | |
| 6468 | HA_RWLOCK_RDLOCK(SSL_SERVER_LOCK, &s->ssl_ctx.lock); |
| 6469 | prev_name = s->ssl_ctx.reused_sess[tid].sni; |
Willy Tarreau | 119a408 | 2016-12-22 21:58:38 +0100 | [diff] [blame] | 6470 | if ((!prev_name && hostname) || |
| 6471 | (prev_name && (!hostname || strcmp(hostname, prev_name) != 0))) |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6472 | SSL_set_session(ctx->ssl, NULL); |
William Lallemand | c78ac5a | 2021-11-17 02:59:21 +0100 | [diff] [blame] | 6473 | HA_RWLOCK_RDUNLOCK(SSL_SERVER_LOCK, &s->ssl_ctx.lock); |
Willy Tarreau | 119a408 | 2016-12-22 21:58:38 +0100 | [diff] [blame] | 6474 | |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6475 | SSL_set_tlsext_host_name(ctx->ssl, hostname); |
Willy Tarreau | 6307641 | 2015-07-10 11:33:32 +0200 | [diff] [blame] | 6476 | #endif |
| 6477 | } |
| 6478 | |
Emeric Brun | 0abf836 | 2014-06-24 18:26:41 +0200 | [diff] [blame] | 6479 | /* Extract peer certificate's common name into the chunk dest |
| 6480 | * Returns |
| 6481 | * the len of the extracted common name |
| 6482 | * or 0 if no CN found in DN |
| 6483 | * or -1 on error case (i.e. no peer certificate) |
| 6484 | */ |
Willy Tarreau | 83061a8 | 2018-07-13 11:56:34 +0200 | [diff] [blame] | 6485 | int ssl_sock_get_remote_common_name(struct connection *conn, |
| 6486 | struct buffer *dest) |
David S | afb7683 | 2014-05-08 23:42:08 -0400 | [diff] [blame] | 6487 | { |
Christopher Faulet | 8200414 | 2019-09-10 10:12:03 +0200 | [diff] [blame] | 6488 | struct ssl_sock_ctx *ctx; |
David S | afb7683 | 2014-05-08 23:42:08 -0400 | [diff] [blame] | 6489 | X509 *crt = NULL; |
| 6490 | X509_NAME *name; |
David S | afb7683 | 2014-05-08 23:42:08 -0400 | [diff] [blame] | 6491 | const char find_cn[] = "CN"; |
Willy Tarreau | 83061a8 | 2018-07-13 11:56:34 +0200 | [diff] [blame] | 6492 | const struct buffer find_cn_chunk = { |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 6493 | .area = (char *)&find_cn, |
| 6494 | .data = sizeof(find_cn)-1 |
David S | afb7683 | 2014-05-08 23:42:08 -0400 | [diff] [blame] | 6495 | }; |
Emeric Brun | 0abf836 | 2014-06-24 18:26:41 +0200 | [diff] [blame] | 6496 | int result = -1; |
David S | afb7683 | 2014-05-08 23:42:08 -0400 | [diff] [blame] | 6497 | |
| 6498 | if (!ssl_sock_is_ssl(conn)) |
Emeric Brun | 0abf836 | 2014-06-24 18:26:41 +0200 | [diff] [blame] | 6499 | goto out; |
Christopher Faulet | 8200414 | 2019-09-10 10:12:03 +0200 | [diff] [blame] | 6500 | ctx = conn->xprt_ctx; |
David S | afb7683 | 2014-05-08 23:42:08 -0400 | [diff] [blame] | 6501 | |
| 6502 | /* SSL_get_peer_certificate, it increase X509 * ref count */ |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6503 | crt = SSL_get_peer_certificate(ctx->ssl); |
David S | afb7683 | 2014-05-08 23:42:08 -0400 | [diff] [blame] | 6504 | if (!crt) |
| 6505 | goto out; |
| 6506 | |
| 6507 | name = X509_get_subject_name(crt); |
| 6508 | if (!name) |
| 6509 | goto out; |
David S | afb7683 | 2014-05-08 23:42:08 -0400 | [diff] [blame] | 6510 | |
Emeric Brun | 0abf836 | 2014-06-24 18:26:41 +0200 | [diff] [blame] | 6511 | result = ssl_sock_get_dn_entry(name, &find_cn_chunk, 1, dest); |
| 6512 | out: |
David S | afb7683 | 2014-05-08 23:42:08 -0400 | [diff] [blame] | 6513 | if (crt) |
| 6514 | X509_free(crt); |
| 6515 | |
| 6516 | return result; |
| 6517 | } |
| 6518 | |
Dave McCowan | 328fb58 | 2014-07-30 10:39:13 -0400 | [diff] [blame] | 6519 | /* returns 1 if client passed a certificate for this session, 0 if not */ |
| 6520 | int ssl_sock_get_cert_used_sess(struct connection *conn) |
| 6521 | { |
Christopher Faulet | 8200414 | 2019-09-10 10:12:03 +0200 | [diff] [blame] | 6522 | struct ssl_sock_ctx *ctx; |
Dave McCowan | 328fb58 | 2014-07-30 10:39:13 -0400 | [diff] [blame] | 6523 | X509 *crt = NULL; |
| 6524 | |
| 6525 | if (!ssl_sock_is_ssl(conn)) |
| 6526 | return 0; |
Christopher Faulet | 8200414 | 2019-09-10 10:12:03 +0200 | [diff] [blame] | 6527 | ctx = conn->xprt_ctx; |
Dave McCowan | 328fb58 | 2014-07-30 10:39:13 -0400 | [diff] [blame] | 6528 | |
| 6529 | /* SSL_get_peer_certificate, it increase X509 * ref count */ |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6530 | crt = SSL_get_peer_certificate(ctx->ssl); |
Dave McCowan | 328fb58 | 2014-07-30 10:39:13 -0400 | [diff] [blame] | 6531 | if (!crt) |
| 6532 | return 0; |
| 6533 | |
| 6534 | X509_free(crt); |
| 6535 | return 1; |
| 6536 | } |
| 6537 | |
| 6538 | /* returns 1 if client passed a certificate for this connection, 0 if not */ |
| 6539 | int ssl_sock_get_cert_used_conn(struct connection *conn) |
David S | afb7683 | 2014-05-08 23:42:08 -0400 | [diff] [blame] | 6540 | { |
Christopher Faulet | 8200414 | 2019-09-10 10:12:03 +0200 | [diff] [blame] | 6541 | struct ssl_sock_ctx *ctx; |
Olivier Houchard | 7b5fd1e | 2019-02-28 18:10:45 +0100 | [diff] [blame] | 6542 | |
David S | afb7683 | 2014-05-08 23:42:08 -0400 | [diff] [blame] | 6543 | if (!ssl_sock_is_ssl(conn)) |
| 6544 | return 0; |
Christopher Faulet | 8200414 | 2019-09-10 10:12:03 +0200 | [diff] [blame] | 6545 | ctx = conn->xprt_ctx; |
Olivier Houchard | 7b5fd1e | 2019-02-28 18:10:45 +0100 | [diff] [blame] | 6546 | return SSL_SOCK_ST_FL_VERIFY_DONE & ctx->xprt_st ? 1 : 0; |
David S | afb7683 | 2014-05-08 23:42:08 -0400 | [diff] [blame] | 6547 | } |
| 6548 | |
| 6549 | /* returns result from SSL verify */ |
| 6550 | unsigned int ssl_sock_get_verify_result(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 | |
David S | afb7683 | 2014-05-08 23:42:08 -0400 | [diff] [blame] | 6554 | if (!ssl_sock_is_ssl(conn)) |
| 6555 | return (unsigned int)X509_V_ERR_APPLICATION_VERIFICATION; |
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 (unsigned int)SSL_get_verify_result(ctx->ssl); |
David S | afb7683 | 2014-05-08 23:42:08 -0400 | [diff] [blame] | 6558 | } |
| 6559 | |
Willy Tarreau | 8743f7e | 2016-12-04 18:44:29 +0100 | [diff] [blame] | 6560 | /* Returns the application layer protocol name in <str> and <len> when known. |
| 6561 | * Zero is returned if the protocol name was not found, otherwise non-zero is |
| 6562 | * returned. The string is allocated in the SSL context and doesn't have to be |
| 6563 | * freed by the caller. NPN is also checked if available since older versions |
| 6564 | * of openssl (1.0.1) which are more common in field only support this one. |
| 6565 | */ |
Olivier Houchard | e179d0e | 2019-03-21 18:27:17 +0100 | [diff] [blame] | 6566 | static 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] | 6567 | { |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6568 | #if defined(TLSEXT_TYPE_application_layer_protocol_negotiation) || \ |
| 6569 | defined(OPENSSL_NPN_NEGOTIATED) && !defined(OPENSSL_NO_NEXTPROTONEG) |
Olivier Houchard | e179d0e | 2019-03-21 18:27:17 +0100 | [diff] [blame] | 6570 | struct ssl_sock_ctx *ctx = xprt_ctx; |
| 6571 | if (!ctx) |
Willy Tarreau | 8743f7e | 2016-12-04 18:44:29 +0100 | [diff] [blame] | 6572 | return 0; |
| 6573 | |
| 6574 | *str = NULL; |
| 6575 | |
| 6576 | #ifdef TLSEXT_TYPE_application_layer_protocol_negotiation |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6577 | SSL_get0_alpn_selected(ctx->ssl, (const unsigned char **)str, (unsigned *)len); |
Willy Tarreau | 8743f7e | 2016-12-04 18:44:29 +0100 | [diff] [blame] | 6578 | if (*str) |
| 6579 | return 1; |
| 6580 | #endif |
Bernard Spil | 13c53f8 | 2018-02-15 13:34:58 +0100 | [diff] [blame] | 6581 | #if defined(OPENSSL_NPN_NEGOTIATED) && !defined(OPENSSL_NO_NEXTPROTONEG) |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6582 | 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] | 6583 | if (*str) |
| 6584 | return 1; |
| 6585 | #endif |
Olivier Houchard | e179d0e | 2019-03-21 18:27:17 +0100 | [diff] [blame] | 6586 | #endif |
Willy Tarreau | 8743f7e | 2016-12-04 18:44:29 +0100 | [diff] [blame] | 6587 | return 0; |
| 6588 | } |
| 6589 | |
Emmanuel Hocdet | 70df7bf | 2019-01-04 11:08:20 +0100 | [diff] [blame] | 6590 | /* "issuers-chain-path" load chain certificate in global */ |
William Lallemand | dad3105 | 2020-05-14 17:47:32 +0200 | [diff] [blame] | 6591 | 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] | 6592 | { |
| 6593 | X509 *ca; |
| 6594 | X509_NAME *name = NULL; |
| 6595 | ASN1_OCTET_STRING *skid = NULL; |
| 6596 | STACK_OF(X509) *chain = NULL; |
| 6597 | struct issuer_chain *issuer; |
| 6598 | struct eb64_node *node; |
| 6599 | char *path; |
| 6600 | u64 key; |
| 6601 | int ret = 0; |
| 6602 | |
| 6603 | while ((ca = PEM_read_bio_X509(in, NULL, NULL, NULL))) { |
| 6604 | if (chain == NULL) { |
| 6605 | chain = sk_X509_new_null(); |
| 6606 | skid = X509_get_ext_d2i(ca, NID_subject_key_identifier, NULL, NULL); |
| 6607 | name = X509_get_subject_name(ca); |
| 6608 | } |
| 6609 | if (!sk_X509_push(chain, ca)) { |
| 6610 | X509_free(ca); |
| 6611 | goto end; |
| 6612 | } |
| 6613 | } |
| 6614 | if (!chain) { |
| 6615 | memprintf(err, "unable to load issuers-chain %s : pem certificate not found.\n", fp); |
| 6616 | goto end; |
| 6617 | } |
| 6618 | if (!skid) { |
| 6619 | memprintf(err, "unable to load issuers-chain %s : SubjectKeyIdentifier not found.\n", fp); |
| 6620 | goto end; |
| 6621 | } |
| 6622 | if (!name) { |
| 6623 | memprintf(err, "unable to load issuers-chain %s : SubjectName not found.\n", fp); |
| 6624 | goto end; |
| 6625 | } |
Dragan Dosen | 967e7e7 | 2020-12-22 13:22:34 +0100 | [diff] [blame] | 6626 | key = XXH3(ASN1_STRING_get0_data(skid), ASN1_STRING_length(skid), 0); |
William Lallemand | e0f3fd5 | 2020-02-25 14:53:06 +0100 | [diff] [blame] | 6627 | 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] | 6628 | issuer = container_of(node, typeof(*issuer), node); |
| 6629 | if (!X509_NAME_cmp(name, X509_get_subject_name(sk_X509_value(issuer->chain, 0)))) { |
| 6630 | memprintf(err, "duplicate issuers-chain %s: %s already in store\n", fp, issuer->path); |
| 6631 | goto end; |
| 6632 | } |
| 6633 | } |
| 6634 | issuer = calloc(1, sizeof *issuer); |
| 6635 | path = strdup(fp); |
| 6636 | if (!issuer || !path) { |
| 6637 | free(issuer); |
| 6638 | free(path); |
| 6639 | goto end; |
| 6640 | } |
| 6641 | issuer->node.key = key; |
| 6642 | issuer->path = path; |
| 6643 | issuer->chain = chain; |
| 6644 | chain = NULL; |
William Lallemand | e0f3fd5 | 2020-02-25 14:53:06 +0100 | [diff] [blame] | 6645 | eb64_insert(&cert_issuer_tree, &issuer->node); |
Emmanuel Hocdet | 70df7bf | 2019-01-04 11:08:20 +0100 | [diff] [blame] | 6646 | ret = 1; |
| 6647 | end: |
| 6648 | if (skid) |
| 6649 | ASN1_OCTET_STRING_free(skid); |
| 6650 | if (chain) |
| 6651 | sk_X509_pop_free(chain, X509_free); |
| 6652 | return ret; |
| 6653 | } |
| 6654 | |
William Lallemand | da8584c | 2020-05-14 10:14:37 +0200 | [diff] [blame] | 6655 | struct issuer_chain* ssl_get0_issuer_chain(X509 *cert) |
Emmanuel Hocdet | 75a7aa1 | 2020-02-18 15:19:24 +0100 | [diff] [blame] | 6656 | { |
| 6657 | AUTHORITY_KEYID *akid; |
| 6658 | struct issuer_chain *issuer = NULL; |
| 6659 | |
| 6660 | akid = X509_get_ext_d2i(cert, NID_authority_key_identifier, NULL, NULL); |
William Lallemand | f69cd68 | 2020-11-19 16:24:13 +0100 | [diff] [blame] | 6661 | if (akid && akid->keyid) { |
Emmanuel Hocdet | 75a7aa1 | 2020-02-18 15:19:24 +0100 | [diff] [blame] | 6662 | struct eb64_node *node; |
| 6663 | u64 hk; |
Dragan Dosen | 967e7e7 | 2020-12-22 13:22:34 +0100 | [diff] [blame] | 6664 | 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] | 6665 | for (node = eb64_lookup(&cert_issuer_tree, hk); node; node = eb64_next(node)) { |
| 6666 | struct issuer_chain *ti = container_of(node, typeof(*issuer), node); |
| 6667 | if (X509_check_issued(sk_X509_value(ti->chain, 0), cert) == X509_V_OK) { |
| 6668 | issuer = ti; |
| 6669 | break; |
| 6670 | } |
| 6671 | } |
| 6672 | AUTHORITY_KEYID_free(akid); |
| 6673 | } |
| 6674 | return issuer; |
| 6675 | } |
| 6676 | |
William Lallemand | dad3105 | 2020-05-14 17:47:32 +0200 | [diff] [blame] | 6677 | void ssl_free_global_issuers(void) |
Emmanuel Hocdet | 70df7bf | 2019-01-04 11:08:20 +0100 | [diff] [blame] | 6678 | { |
| 6679 | struct eb64_node *node, *back; |
| 6680 | struct issuer_chain *issuer; |
| 6681 | |
William Lallemand | e0f3fd5 | 2020-02-25 14:53:06 +0100 | [diff] [blame] | 6682 | node = eb64_first(&cert_issuer_tree); |
Emmanuel Hocdet | 70df7bf | 2019-01-04 11:08:20 +0100 | [diff] [blame] | 6683 | while (node) { |
| 6684 | issuer = container_of(node, typeof(*issuer), node); |
| 6685 | back = eb64_next(node); |
| 6686 | eb64_delete(node); |
| 6687 | free(issuer->path); |
| 6688 | sk_X509_pop_free(issuer->chain, X509_free); |
| 6689 | free(issuer); |
| 6690 | node = back; |
| 6691 | } |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 6692 | } |
| 6693 | |
Emmanuel Hocdet | 9ac143b | 2017-05-29 14:36:20 +0200 | [diff] [blame] | 6694 | #ifndef OPENSSL_NO_ENGINE |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 6695 | static int ssl_check_async_engine_count(void) { |
Christopher Faulet | fc633b6 | 2020-11-06 15:24:23 +0100 | [diff] [blame] | 6696 | int err_code = ERR_NONE; |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 6697 | |
Emeric Brun | 3854e01 | 2017-05-17 20:42:48 +0200 | [diff] [blame] | 6698 | if (global_ssl.async && (openssl_engines_initialized > 32)) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 6699 | 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] | 6700 | err_code = ERR_ABORT; |
| 6701 | } |
| 6702 | return err_code; |
Willy Tarreau | 8c3b0fd | 2016-12-21 22:44:46 +0100 | [diff] [blame] | 6703 | } |
Willy Tarreau | 9ceda38 | 2016-12-21 23:13:03 +0100 | [diff] [blame] | 6704 | #endif |
| 6705 | |
Willy Tarreau | de5675a | 2021-01-20 14:41:29 +0100 | [diff] [blame] | 6706 | /* "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] | 6707 | * 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] | 6708 | */ |
Willy Tarreau | 8050efe | 2021-01-21 08:26:06 +0100 | [diff] [blame] | 6709 | 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] | 6710 | { |
| 6711 | const struct ssl_sock_ctx *sctx = ctx; |
Willy Tarreau | 4bd5d63 | 2021-01-21 08:53:50 +0100 | [diff] [blame] | 6712 | int ret = 0; |
Willy Tarreau | de5675a | 2021-01-20 14:41:29 +0100 | [diff] [blame] | 6713 | |
| 6714 | if (!sctx) |
Willy Tarreau | 4bd5d63 | 2021-01-21 08:53:50 +0100 | [diff] [blame] | 6715 | return ret; |
Willy Tarreau | de5675a | 2021-01-20 14:41:29 +0100 | [diff] [blame] | 6716 | |
Willy Tarreau | 4bd5d63 | 2021-01-21 08:53:50 +0100 | [diff] [blame] | 6717 | if (sctx->conn != conn) { |
| 6718 | chunk_appendf(&trash, " xctx.conn=%p(BOGUS)", sctx->conn); |
| 6719 | ret = 1; |
| 6720 | } |
Willy Tarreau | de5675a | 2021-01-20 14:41:29 +0100 | [diff] [blame] | 6721 | chunk_appendf(&trash, " xctx.st=%d", sctx->xprt_st); |
| 6722 | |
| 6723 | if (sctx->xprt) { |
| 6724 | chunk_appendf(&trash, " .xprt=%s", sctx->xprt->name); |
| 6725 | if (sctx->xprt_ctx) |
| 6726 | chunk_appendf(&trash, " .xctx=%p", sctx->xprt_ctx); |
| 6727 | } |
| 6728 | |
| 6729 | chunk_appendf(&trash, " .wait.ev=%d", sctx->wait_event.events); |
Willy Tarreau | 4bd5d63 | 2021-01-21 08:53:50 +0100 | [diff] [blame] | 6730 | |
| 6731 | /* as soon as a shutdown is reported the lower layer unregisters its |
| 6732 | * subscriber, so the situations below are transient and rare enough to |
| 6733 | * be reported as suspicious. In any case they shouldn't last. |
| 6734 | */ |
| 6735 | if ((sctx->wait_event.events & 1) && (conn->flags & (CO_FL_SOCK_RD_SH|CO_FL_ERROR))) |
| 6736 | ret = 1; |
| 6737 | if ((sctx->wait_event.events & 2) && (conn->flags & (CO_FL_SOCK_WR_SH|CO_FL_ERROR))) |
| 6738 | ret = 1; |
| 6739 | |
Willy Tarreau | de5675a | 2021-01-20 14:41:29 +0100 | [diff] [blame] | 6740 | chunk_appendf(&trash, " .subs=%p", sctx->subs); |
| 6741 | if (sctx->subs) { |
| 6742 | 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] | 6743 | if (sctx->subs->tasklet->calls >= 1000000) |
| 6744 | ret = 1; |
Willy Tarreau | de5675a | 2021-01-20 14:41:29 +0100 | [diff] [blame] | 6745 | chunk_appendf(&trash, " tl.calls=%d tl.ctx=%p tl.fct=", |
| 6746 | sctx->subs->tasklet->calls, |
| 6747 | sctx->subs->tasklet->context); |
| 6748 | resolve_sym_name(&trash, NULL, sctx->subs->tasklet->process); |
| 6749 | chunk_appendf(&trash, ")"); |
| 6750 | } |
| 6751 | chunk_appendf(&trash, " .sent_early=%d", sctx->sent_early_data); |
| 6752 | chunk_appendf(&trash, " .early_in=%d", (int)sctx->early_buf.data); |
Willy Tarreau | 4bd5d63 | 2021-01-21 08:53:50 +0100 | [diff] [blame] | 6753 | return ret; |
Willy Tarreau | de5675a | 2021-01-20 14:41:29 +0100 | [diff] [blame] | 6754 | } |
| 6755 | |
Willy Tarreau | b6fc524 | 2021-01-05 10:44:30 +0100 | [diff] [blame] | 6756 | #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] | 6757 | /* 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] | 6758 | * each reference. The variable <ref> must point to the current node's list |
| 6759 | * 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] | 6760 | */ |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 6761 | static inline |
Willy Tarreau | b6fc524 | 2021-01-05 10:44:30 +0100 | [diff] [blame] | 6762 | 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] | 6763 | { |
Tim Duesterhus | 2c7bb33 | 2021-01-03 01:29:55 +0100 | [diff] [blame] | 6764 | /* Get next list entry. */ |
Willy Tarreau | b6fc524 | 2021-01-05 10:44:30 +0100 | [diff] [blame] | 6765 | ref = ref->n; |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 6766 | |
Tim Duesterhus | 2c7bb33 | 2021-01-03 01:29:55 +0100 | [diff] [blame] | 6767 | /* If the entry is the last of the list, return NULL. */ |
Willy Tarreau | b6fc524 | 2021-01-05 10:44:30 +0100 | [diff] [blame] | 6768 | if (ref == end) |
Tim Duesterhus | 2c7bb33 | 2021-01-03 01:29:55 +0100 | [diff] [blame] | 6769 | return NULL; |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 6770 | |
Willy Tarreau | b6fc524 | 2021-01-05 10:44:30 +0100 | [diff] [blame] | 6771 | return LIST_ELEM(ref, struct tls_keys_ref *, list); |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 6772 | } |
| 6773 | |
| 6774 | static inline |
| 6775 | struct tls_keys_ref *tlskeys_ref_lookup_ref(const char *reference) |
| 6776 | { |
| 6777 | int id; |
| 6778 | char *error; |
| 6779 | |
| 6780 | /* If the reference starts by a '#', this is numeric id. */ |
| 6781 | if (reference[0] == '#') { |
| 6782 | /* Try to convert the numeric id. If the conversion fails, the lookup fails. */ |
| 6783 | id = strtol(reference + 1, &error, 10); |
| 6784 | if (*error != '\0') |
| 6785 | return NULL; |
| 6786 | |
| 6787 | /* Perform the unique id lookup. */ |
| 6788 | return tlskeys_ref_lookupid(id); |
| 6789 | } |
| 6790 | |
| 6791 | /* Perform the string lookup. */ |
| 6792 | return tlskeys_ref_lookup(reference); |
| 6793 | } |
| 6794 | #endif |
| 6795 | |
| 6796 | |
| 6797 | #if (defined SSL_CTRL_SET_TLSEXT_TICKET_KEY_CB && TLS_TICKETS_NO > 0) |
| 6798 | |
| 6799 | static int cli_io_handler_tlskeys_files(struct appctx *appctx); |
| 6800 | |
| 6801 | static inline int cli_io_handler_tlskeys_entries(struct appctx *appctx) { |
| 6802 | return cli_io_handler_tlskeys_files(appctx); |
| 6803 | } |
| 6804 | |
Willy Tarreau | f5f26e8 | 2016-12-16 18:47:27 +0100 | [diff] [blame] | 6805 | /* dumps all tls keys. Relies on cli.i0 (non-null = only list file names), cli.i1 |
| 6806 | * (next index to be dumped), and cli.p0 (next key reference). |
| 6807 | */ |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 6808 | static int cli_io_handler_tlskeys_files(struct appctx *appctx) { |
| 6809 | |
| 6810 | struct stream_interface *si = appctx->owner; |
| 6811 | |
| 6812 | switch (appctx->st2) { |
| 6813 | case STAT_ST_INIT: |
| 6814 | /* Display the column headers. If the message cannot be sent, |
Joseph Herlant | 017b3da | 2018-11-15 09:07:59 -0800 | [diff] [blame] | 6815 | * quit the function with returning 0. The function is called |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 6816 | * later and restart at the state "STAT_ST_INIT". |
| 6817 | */ |
| 6818 | chunk_reset(&trash); |
| 6819 | |
| 6820 | if (appctx->io_handler == cli_io_handler_tlskeys_entries) |
| 6821 | chunk_appendf(&trash, "# id secret\n"); |
| 6822 | else |
| 6823 | chunk_appendf(&trash, "# id (file)\n"); |
| 6824 | |
Willy Tarreau | 06d80a9 | 2017-10-19 14:32:15 +0200 | [diff] [blame] | 6825 | if (ci_putchk(si_ic(si), &trash) == -1) { |
Willy Tarreau | db39843 | 2018-11-15 11:08:52 +0100 | [diff] [blame] | 6826 | si_rx_room_blk(si); |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 6827 | return 0; |
| 6828 | } |
| 6829 | |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 6830 | /* Now, we start the browsing of the references lists. |
| 6831 | * Note that the following call to LIST_ELEM return bad pointer. The only |
| 6832 | * available field of this pointer is <list>. It is used with the function |
| 6833 | * tlskeys_list_get_next() for retruning the first available entry |
| 6834 | */ |
Willy Tarreau | b6fc524 | 2021-01-05 10:44:30 +0100 | [diff] [blame] | 6835 | if (appctx->ctx.cli.p0 == NULL) |
| 6836 | appctx->ctx.cli.p0 = tlskeys_list_get_next(&tlskeys_reference, &tlskeys_reference); |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 6837 | |
| 6838 | appctx->st2 = STAT_ST_LIST; |
| 6839 | /* fall through */ |
| 6840 | |
| 6841 | case STAT_ST_LIST: |
Willy Tarreau | f5f26e8 | 2016-12-16 18:47:27 +0100 | [diff] [blame] | 6842 | while (appctx->ctx.cli.p0) { |
| 6843 | struct tls_keys_ref *ref = appctx->ctx.cli.p0; |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 6844 | |
| 6845 | chunk_reset(&trash); |
Willy Tarreau | f5f26e8 | 2016-12-16 18:47:27 +0100 | [diff] [blame] | 6846 | 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] | 6847 | chunk_appendf(&trash, "# "); |
Willy Tarreau | f5f26e8 | 2016-12-16 18:47:27 +0100 | [diff] [blame] | 6848 | |
| 6849 | if (appctx->ctx.cli.i1 == 0) |
| 6850 | chunk_appendf(&trash, "%d (%s)\n", ref->unique_id, ref->filename); |
| 6851 | |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 6852 | if (appctx->io_handler == cli_io_handler_tlskeys_entries) { |
Christopher Faulet | 16f45c8 | 2018-02-16 11:23:49 +0100 | [diff] [blame] | 6853 | int head; |
| 6854 | |
| 6855 | HA_RWLOCK_RDLOCK(TLSKEYS_REF_LOCK, &ref->lock); |
| 6856 | head = ref->tls_ticket_enc_index; |
Willy Tarreau | f5f26e8 | 2016-12-16 18:47:27 +0100 | [diff] [blame] | 6857 | while (appctx->ctx.cli.i1 < TLS_TICKETS_NO) { |
Willy Tarreau | 83061a8 | 2018-07-13 11:56:34 +0200 | [diff] [blame] | 6858 | struct buffer *t2 = get_trash_chunk(); |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 6859 | |
| 6860 | chunk_reset(t2); |
| 6861 | /* 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] | 6862 | if (ref->key_size_bits == 128) { |
| 6863 | t2->data = a2base64((char *)(ref->tlskeys + (head + 2 + appctx->ctx.cli.i1) % TLS_TICKETS_NO), |
| 6864 | sizeof(struct tls_sess_key_128), |
| 6865 | t2->area, t2->size); |
| 6866 | chunk_appendf(&trash, "%d.%d %s\n", ref->unique_id, appctx->ctx.cli.i1, |
| 6867 | t2->area); |
| 6868 | } |
| 6869 | else if (ref->key_size_bits == 256) { |
| 6870 | t2->data = a2base64((char *)(ref->tlskeys + (head + 2 + appctx->ctx.cli.i1) % TLS_TICKETS_NO), |
| 6871 | sizeof(struct tls_sess_key_256), |
| 6872 | t2->area, t2->size); |
| 6873 | chunk_appendf(&trash, "%d.%d %s\n", ref->unique_id, appctx->ctx.cli.i1, |
| 6874 | t2->area); |
| 6875 | } |
| 6876 | else { |
| 6877 | /* This case should never happen */ |
| 6878 | chunk_appendf(&trash, "%d.%d <unknown>\n", ref->unique_id, appctx->ctx.cli.i1); |
| 6879 | } |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 6880 | |
Willy Tarreau | 06d80a9 | 2017-10-19 14:32:15 +0200 | [diff] [blame] | 6881 | if (ci_putchk(si_ic(si), &trash) == -1) { |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 6882 | /* let's try again later from this stream. We add ourselves into |
| 6883 | * this stream's users so that it can remove us upon termination. |
| 6884 | */ |
Christopher Faulet | 16f45c8 | 2018-02-16 11:23:49 +0100 | [diff] [blame] | 6885 | HA_RWLOCK_RDUNLOCK(TLSKEYS_REF_LOCK, &ref->lock); |
Willy Tarreau | db39843 | 2018-11-15 11:08:52 +0100 | [diff] [blame] | 6886 | si_rx_room_blk(si); |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 6887 | return 0; |
| 6888 | } |
Willy Tarreau | f5f26e8 | 2016-12-16 18:47:27 +0100 | [diff] [blame] | 6889 | appctx->ctx.cli.i1++; |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 6890 | } |
Christopher Faulet | 16f45c8 | 2018-02-16 11:23:49 +0100 | [diff] [blame] | 6891 | HA_RWLOCK_RDUNLOCK(TLSKEYS_REF_LOCK, &ref->lock); |
Willy Tarreau | f5f26e8 | 2016-12-16 18:47:27 +0100 | [diff] [blame] | 6892 | appctx->ctx.cli.i1 = 0; |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 6893 | } |
Willy Tarreau | 06d80a9 | 2017-10-19 14:32:15 +0200 | [diff] [blame] | 6894 | if (ci_putchk(si_ic(si), &trash) == -1) { |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 6895 | /* let's try again later from this stream. We add ourselves into |
| 6896 | * this stream's users so that it can remove us upon termination. |
| 6897 | */ |
Willy Tarreau | db39843 | 2018-11-15 11:08:52 +0100 | [diff] [blame] | 6898 | si_rx_room_blk(si); |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 6899 | return 0; |
| 6900 | } |
| 6901 | |
Willy Tarreau | f5f26e8 | 2016-12-16 18:47:27 +0100 | [diff] [blame] | 6902 | 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] | 6903 | break; |
| 6904 | |
| 6905 | /* get next list entry and check the end of the list */ |
Willy Tarreau | b6fc524 | 2021-01-05 10:44:30 +0100 | [diff] [blame] | 6906 | appctx->ctx.cli.p0 = tlskeys_list_get_next(&ref->list, &tlskeys_reference); |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 6907 | } |
| 6908 | |
| 6909 | appctx->st2 = STAT_ST_FIN; |
| 6910 | /* fall through */ |
| 6911 | |
| 6912 | default: |
| 6913 | appctx->st2 = STAT_ST_FIN; |
| 6914 | return 1; |
| 6915 | } |
| 6916 | return 0; |
| 6917 | } |
| 6918 | |
Willy Tarreau | f5f26e8 | 2016-12-16 18:47:27 +0100 | [diff] [blame] | 6919 | /* 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] | 6920 | 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] | 6921 | { |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 6922 | /* no parameter, shows only file list */ |
| 6923 | if (!*args[2]) { |
Willy Tarreau | f5f26e8 | 2016-12-16 18:47:27 +0100 | [diff] [blame] | 6924 | appctx->ctx.cli.i0 = 1; |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 6925 | appctx->io_handler = cli_io_handler_tlskeys_files; |
Willy Tarreau | 3067bfa | 2016-12-05 14:50:15 +0100 | [diff] [blame] | 6926 | return 0; |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 6927 | } |
| 6928 | |
| 6929 | if (args[2][0] == '*') { |
| 6930 | /* list every TLS ticket keys */ |
Willy Tarreau | f5f26e8 | 2016-12-16 18:47:27 +0100 | [diff] [blame] | 6931 | appctx->ctx.cli.i0 = 1; |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 6932 | } else { |
Willy Tarreau | f5f26e8 | 2016-12-16 18:47:27 +0100 | [diff] [blame] | 6933 | appctx->ctx.cli.p0 = tlskeys_ref_lookup_ref(args[2]); |
Willy Tarreau | 9d00869 | 2019-08-09 11:21:01 +0200 | [diff] [blame] | 6934 | if (!appctx->ctx.cli.p0) |
| 6935 | 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] | 6936 | } |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 6937 | appctx->io_handler = cli_io_handler_tlskeys_entries; |
Willy Tarreau | 3067bfa | 2016-12-05 14:50:15 +0100 | [diff] [blame] | 6938 | return 0; |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 6939 | } |
| 6940 | |
Aurélien Nephtali | abbf607 | 2018-04-18 13:26:46 +0200 | [diff] [blame] | 6941 | 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] | 6942 | { |
Willy Tarreau | f5f26e8 | 2016-12-16 18:47:27 +0100 | [diff] [blame] | 6943 | struct tls_keys_ref *ref; |
Willy Tarreau | 1c913e4 | 2018-08-22 05:26:57 +0200 | [diff] [blame] | 6944 | int ret; |
Willy Tarreau | f5f26e8 | 2016-12-16 18:47:27 +0100 | [diff] [blame] | 6945 | |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 6946 | /* 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] | 6947 | if (!*args[3] || !*args[4]) |
| 6948 | 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] | 6949 | |
Willy Tarreau | f5f26e8 | 2016-12-16 18:47:27 +0100 | [diff] [blame] | 6950 | ref = tlskeys_ref_lookup_ref(args[3]); |
Willy Tarreau | 9d00869 | 2019-08-09 11:21:01 +0200 | [diff] [blame] | 6951 | if (!ref) |
| 6952 | 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] | 6953 | |
Willy Tarreau | 1c913e4 | 2018-08-22 05:26:57 +0200 | [diff] [blame] | 6954 | ret = base64dec(args[4], strlen(args[4]), trash.area, trash.size); |
Willy Tarreau | 9d00869 | 2019-08-09 11:21:01 +0200 | [diff] [blame] | 6955 | if (ret < 0) |
| 6956 | 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] | 6957 | |
Willy Tarreau | 1c913e4 | 2018-08-22 05:26:57 +0200 | [diff] [blame] | 6958 | trash.data = ret; |
Willy Tarreau | 9d00869 | 2019-08-09 11:21:01 +0200 | [diff] [blame] | 6959 | if (ssl_sock_update_tlskey_ref(ref, &trash) < 0) |
| 6960 | 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] | 6961 | |
Willy Tarreau | 9d00869 | 2019-08-09 11:21:01 +0200 | [diff] [blame] | 6962 | return cli_msg(appctx, LOG_INFO, "TLS ticket key updated!\n"); |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 6963 | } |
William Lallemand | d4f946c | 2019-12-05 10:26:40 +0100 | [diff] [blame] | 6964 | #endif |
William Lallemand | 419e634 | 2020-04-08 12:05:39 +0200 | [diff] [blame] | 6965 | |
Aurélien Nephtali | abbf607 | 2018-04-18 13:26:46 +0200 | [diff] [blame] | 6966 | 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] | 6967 | { |
| 6968 | #if (defined SSL_CTRL_SET_TLSEXT_STATUS_REQ_CB && !defined OPENSSL_NO_OCSP) |
| 6969 | char *err = NULL; |
Willy Tarreau | 1c913e4 | 2018-08-22 05:26:57 +0200 | [diff] [blame] | 6970 | int i, j, ret; |
Aurélien Nephtali | 1e0867c | 2018-04-18 14:04:58 +0200 | [diff] [blame] | 6971 | |
| 6972 | if (!payload) |
| 6973 | payload = args[3]; |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 6974 | |
| 6975 | /* Expect one parameter: the new response in base64 encoding */ |
Willy Tarreau | 9d00869 | 2019-08-09 11:21:01 +0200 | [diff] [blame] | 6976 | if (!*payload) |
| 6977 | 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] | 6978 | |
| 6979 | /* remove \r and \n from the payload */ |
| 6980 | for (i = 0, j = 0; payload[i]; i++) { |
| 6981 | if (payload[i] == '\r' || payload[i] == '\n') |
| 6982 | continue; |
| 6983 | payload[j++] = payload[i]; |
| 6984 | } |
| 6985 | payload[j] = 0; |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 6986 | |
Willy Tarreau | 1c913e4 | 2018-08-22 05:26:57 +0200 | [diff] [blame] | 6987 | ret = base64dec(payload, j, trash.area, trash.size); |
Willy Tarreau | 9d00869 | 2019-08-09 11:21:01 +0200 | [diff] [blame] | 6988 | if (ret < 0) |
| 6989 | 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] | 6990 | |
Willy Tarreau | 1c913e4 | 2018-08-22 05:26:57 +0200 | [diff] [blame] | 6991 | trash.data = ret; |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 6992 | if (ssl_sock_update_ocsp_response(&trash, &err)) { |
Willy Tarreau | 9d00869 | 2019-08-09 11:21:01 +0200 | [diff] [blame] | 6993 | if (err) |
| 6994 | return cli_dynerr(appctx, memprintf(&err, "%s.\n", err)); |
| 6995 | else |
| 6996 | return cli_err(appctx, "Failed to update OCSP response.\n"); |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 6997 | } |
Willy Tarreau | 9d00869 | 2019-08-09 11:21:01 +0200 | [diff] [blame] | 6998 | |
| 6999 | return cli_msg(appctx, LOG_INFO, "OCSP Response updated!\n"); |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 7000 | #else |
Willy Tarreau | 9d00869 | 2019-08-09 11:21:01 +0200 | [diff] [blame] | 7001 | 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] | 7002 | #endif |
| 7003 | |
Elliot Otchet | 71f8297 | 2020-01-15 08:12:14 -0500 | [diff] [blame] | 7004 | } |
| 7005 | |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 7006 | /* register cli keywords */ |
| 7007 | static struct cli_kw_list cli_kws = {{ },{ |
| 7008 | #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] | 7009 | { { "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 }, |
| 7010 | { { "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] | 7011 | #endif |
Willy Tarreau | b205bfd | 2021-05-07 11:38:37 +0200 | [diff] [blame] | 7012 | { { "set", "ssl", "ocsp-response", NULL }, "set ssl ocsp-response <resp|payload> : update a certificate's OCSP Response from a base64-encode DER", cli_parse_set_ocspresponse, NULL }, |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 7013 | { { NULL }, NULL, NULL, NULL } |
| 7014 | }}; |
| 7015 | |
Willy Tarreau | 0108d90 | 2018-11-25 19:14:37 +0100 | [diff] [blame] | 7016 | INITCALL1(STG_REGISTER, cli_register_kw, &cli_kws); |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 7017 | |
Willy Tarreau | f7bc57c | 2012-10-03 00:19:48 +0200 | [diff] [blame] | 7018 | /* transport-layer operations for SSL sockets */ |
William Lallemand | dad3105 | 2020-05-14 17:47:32 +0200 | [diff] [blame] | 7019 | struct xprt_ops ssl_sock = { |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 7020 | .snd_buf = ssl_sock_from_buf, |
| 7021 | .rcv_buf = ssl_sock_to_buf, |
Olivier Houchard | df35784 | 2019-03-21 16:30:07 +0100 | [diff] [blame] | 7022 | .subscribe = ssl_subscribe, |
| 7023 | .unsubscribe = ssl_unsubscribe, |
Olivier Houchard | 5149b59 | 2019-05-23 17:47:36 +0200 | [diff] [blame] | 7024 | .remove_xprt = ssl_remove_xprt, |
Olivier Houchard | 2e05548 | 2019-05-27 19:50:12 +0200 | [diff] [blame] | 7025 | .add_xprt = ssl_add_xprt, |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 7026 | .rcv_pipe = NULL, |
| 7027 | .snd_pipe = NULL, |
| 7028 | .shutr = NULL, |
| 7029 | .shutw = ssl_sock_shutw, |
| 7030 | .close = ssl_sock_close, |
| 7031 | .init = ssl_sock_init, |
Olivier Houchard | bc5ce92 | 2021-03-05 23:47:00 +0100 | [diff] [blame] | 7032 | .start = ssl_sock_start, |
Willy Tarreau | 55d3791 | 2016-12-21 23:38:39 +0100 | [diff] [blame] | 7033 | .prepare_bind_conf = ssl_sock_prepare_bind_conf, |
Willy Tarreau | 795cdab | 2016-12-22 17:30:54 +0100 | [diff] [blame] | 7034 | .destroy_bind_conf = ssl_sock_destroy_bind_conf, |
Willy Tarreau | 17d4538 | 2016-12-22 21:16:08 +0100 | [diff] [blame] | 7035 | .prepare_srv = ssl_sock_prepare_srv_ctx, |
| 7036 | .destroy_srv = ssl_sock_free_srv_ctx, |
Willy Tarreau | 8743f7e | 2016-12-04 18:44:29 +0100 | [diff] [blame] | 7037 | .get_alpn = ssl_sock_get_alpn, |
Olivier Houchard | a74bb7e | 2020-07-03 14:01:21 +0200 | [diff] [blame] | 7038 | .takeover = ssl_takeover, |
Willy Tarreau | 4149168 | 2021-03-02 17:29:56 +0100 | [diff] [blame] | 7039 | .set_idle = ssl_set_idle, |
| 7040 | .set_used = ssl_set_used, |
Willy Tarreau | 8e0bb0a | 2016-11-24 16:58:12 +0100 | [diff] [blame] | 7041 | .name = "SSL", |
Willy Tarreau | de5675a | 2021-01-20 14:41:29 +0100 | [diff] [blame] | 7042 | .show_fd = ssl_sock_show_fd, |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 7043 | }; |
| 7044 | |
Olivier Houchard | ccaa7de | 2017-10-02 11:51:03 +0200 | [diff] [blame] | 7045 | enum act_return ssl_action_wait_for_hs(struct act_rule *rule, struct proxy *px, |
| 7046 | struct session *sess, struct stream *s, int flags) |
| 7047 | { |
| 7048 | struct connection *conn; |
Olivier Houchard | 6fa63d9 | 2017-11-27 18:41:32 +0100 | [diff] [blame] | 7049 | struct conn_stream *cs; |
Olivier Houchard | ccaa7de | 2017-10-02 11:51:03 +0200 | [diff] [blame] | 7050 | |
| 7051 | conn = objt_conn(sess->origin); |
Olivier Houchard | 6fa63d9 | 2017-11-27 18:41:32 +0100 | [diff] [blame] | 7052 | cs = objt_cs(s->si[0].end); |
Olivier Houchard | ccaa7de | 2017-10-02 11:51:03 +0200 | [diff] [blame] | 7053 | |
Olivier Houchard | 6fa63d9 | 2017-11-27 18:41:32 +0100 | [diff] [blame] | 7054 | if (conn && cs) { |
Olivier Houchard | ccaa7de | 2017-10-02 11:51:03 +0200 | [diff] [blame] | 7055 | 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] | 7056 | cs->flags |= CS_FL_WAIT_FOR_HS; |
Olivier Houchard | ccaa7de | 2017-10-02 11:51:03 +0200 | [diff] [blame] | 7057 | s->req.flags |= CF_READ_NULL; |
| 7058 | return ACT_RET_YIELD; |
| 7059 | } |
| 7060 | } |
| 7061 | return (ACT_RET_CONT); |
| 7062 | } |
| 7063 | |
| 7064 | 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) |
| 7065 | { |
| 7066 | rule->action_ptr = ssl_action_wait_for_hs; |
| 7067 | |
| 7068 | return ACT_RET_PRS_OK; |
| 7069 | } |
| 7070 | |
| 7071 | static struct action_kw_list http_req_actions = {ILH, { |
| 7072 | { "wait-for-handshake", ssl_parse_wait_for_hs }, |
| 7073 | { /* END */ } |
| 7074 | }}; |
| 7075 | |
Willy Tarreau | 0108d90 | 2018-11-25 19:14:37 +0100 | [diff] [blame] | 7076 | INITCALL1(STG_REGISTER, http_req_keywords_register, &http_req_actions); |
| 7077 | |
Ilya Shipitsin | f00cdb1 | 2021-02-06 18:59:22 +0500 | [diff] [blame] | 7078 | #ifdef HAVE_SSL_CTX_ADD_SERVER_CUSTOM_EXT |
Janusz Dziemidowicz | 2c701b5 | 2015-03-07 23:03:59 +0100 | [diff] [blame] | 7079 | |
| 7080 | static void ssl_sock_sctl_free_func(void *parent, void *ptr, CRYPTO_EX_DATA *ad, int idx, long argl, void *argp) |
| 7081 | { |
| 7082 | if (ptr) { |
| 7083 | chunk_destroy(ptr); |
| 7084 | free(ptr); |
| 7085 | } |
| 7086 | } |
| 7087 | |
| 7088 | #endif |
William Lallemand | 76b4a12 | 2020-08-04 17:41:39 +0200 | [diff] [blame] | 7089 | |
| 7090 | #if ((defined SSL_CTRL_SET_TLSEXT_STATUS_REQ_CB && !defined OPENSSL_NO_OCSP) && !defined OPENSSL_IS_BORINGSSL) |
| 7091 | static void ssl_sock_ocsp_free_func(void *parent, void *ptr, CRYPTO_EX_DATA *ad, int idx, long argl, void *argp) |
| 7092 | { |
| 7093 | struct ocsp_cbk_arg *ocsp_arg; |
| 7094 | |
| 7095 | if (ptr) { |
| 7096 | ocsp_arg = ptr; |
| 7097 | |
| 7098 | if (ocsp_arg->is_single) { |
| 7099 | ssl_sock_free_ocsp(ocsp_arg->s_ocsp); |
| 7100 | ocsp_arg->s_ocsp = NULL; |
| 7101 | } else { |
| 7102 | int i; |
| 7103 | |
| 7104 | for (i = 0; i < SSL_SOCK_NUM_KEYTYPES; i++) { |
| 7105 | ssl_sock_free_ocsp(ocsp_arg->m_ocsp[i]); |
| 7106 | ocsp_arg->m_ocsp[i] = NULL; |
| 7107 | } |
| 7108 | } |
| 7109 | free(ocsp_arg); |
| 7110 | } |
| 7111 | } |
| 7112 | #endif |
| 7113 | |
Emmanuel Hocdet | aaee750 | 2017-03-07 18:34:58 +0100 | [diff] [blame] | 7114 | static void ssl_sock_capture_free_func(void *parent, void *ptr, CRYPTO_EX_DATA *ad, int idx, long argl, void *argp) |
| 7115 | { |
Willy Tarreau | bafbe01 | 2017-11-24 17:34:44 +0100 | [diff] [blame] | 7116 | pool_free(pool_head_ssl_capture, ptr); |
Emmanuel Hocdet | aaee750 | 2017-03-07 18:34:58 +0100 | [diff] [blame] | 7117 | } |
William Lallemand | 7d42ef5 | 2020-07-06 11:41:30 +0200 | [diff] [blame] | 7118 | |
William Lallemand | ca5cf0a | 2021-06-09 16:46:12 +0200 | [diff] [blame] | 7119 | #ifdef HAVE_SSL_KEYLOG |
William Lallemand | 7d42ef5 | 2020-07-06 11:41:30 +0200 | [diff] [blame] | 7120 | static void ssl_sock_keylog_free_func(void *parent, void *ptr, CRYPTO_EX_DATA *ad, int idx, long argl, void *argp) |
| 7121 | { |
| 7122 | struct ssl_keylog *keylog; |
| 7123 | |
| 7124 | if (!ptr) |
| 7125 | return; |
| 7126 | |
| 7127 | keylog = ptr; |
| 7128 | |
| 7129 | pool_free(pool_head_ssl_keylog_str, keylog->client_random); |
| 7130 | pool_free(pool_head_ssl_keylog_str, keylog->client_early_traffic_secret); |
| 7131 | pool_free(pool_head_ssl_keylog_str, keylog->client_handshake_traffic_secret); |
| 7132 | pool_free(pool_head_ssl_keylog_str, keylog->server_handshake_traffic_secret); |
| 7133 | pool_free(pool_head_ssl_keylog_str, keylog->client_traffic_secret_0); |
| 7134 | pool_free(pool_head_ssl_keylog_str, keylog->server_traffic_secret_0); |
| 7135 | pool_free(pool_head_ssl_keylog_str, keylog->exporter_secret); |
| 7136 | pool_free(pool_head_ssl_keylog_str, keylog->early_exporter_secret); |
| 7137 | |
| 7138 | pool_free(pool_head_ssl_keylog, ptr); |
| 7139 | } |
| 7140 | #endif |
Janusz Dziemidowicz | 2c701b5 | 2015-03-07 23:03:59 +0100 | [diff] [blame] | 7141 | |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 7142 | __attribute__((constructor)) |
Willy Tarreau | 92faadf | 2012-10-10 23:04:25 +0200 | [diff] [blame] | 7143 | static void __ssl_sock_init(void) |
| 7144 | { |
Ilya Shipitsin | 0590f44 | 2019-05-25 19:30:50 +0500 | [diff] [blame] | 7145 | #if (!defined(OPENSSL_NO_COMP) && !defined(SSL_OP_NO_COMPRESSION)) |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 7146 | STACK_OF(SSL_COMP)* cm; |
Ilya Shipitsin | e242f3d | 2019-05-25 03:38:14 +0500 | [diff] [blame] | 7147 | int n; |
Ilya Shipitsin | 0590f44 | 2019-05-25 19:30:50 +0500 | [diff] [blame] | 7148 | #endif |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 7149 | |
Willy Tarreau | ef93460 | 2016-12-22 23:12:01 +0100 | [diff] [blame] | 7150 | if (global_ssl.listen_default_ciphers) |
| 7151 | global_ssl.listen_default_ciphers = strdup(global_ssl.listen_default_ciphers); |
| 7152 | if (global_ssl.connect_default_ciphers) |
| 7153 | global_ssl.connect_default_ciphers = strdup(global_ssl.connect_default_ciphers); |
Ilya Shipitsin | f34ed0b | 2020-11-21 14:37:34 +0500 | [diff] [blame] | 7154 | #ifdef HAVE_SSL_CTX_SET_CIPHERSUITES |
Dirkjan Bussink | 415150f | 2018-09-14 11:14:21 +0200 | [diff] [blame] | 7155 | if (global_ssl.listen_default_ciphersuites) |
| 7156 | global_ssl.listen_default_ciphersuites = strdup(global_ssl.listen_default_ciphersuites); |
| 7157 | if (global_ssl.connect_default_ciphersuites) |
| 7158 | global_ssl.connect_default_ciphersuites = strdup(global_ssl.connect_default_ciphersuites); |
| 7159 | #endif |
Willy Tarreau | 610f04b | 2014-02-13 11:36:41 +0100 | [diff] [blame] | 7160 | |
Willy Tarreau | 13e1410 | 2016-12-22 20:25:26 +0100 | [diff] [blame] | 7161 | xprt_register(XPRT_SSL, &ssl_sock); |
Willy Tarreau | 9a1ab08 | 2019-05-09 13:26:41 +0200 | [diff] [blame] | 7162 | #if HA_OPENSSL_VERSION_NUMBER < 0x10100000L |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 7163 | SSL_library_init(); |
Rosen Penev | 6818595 | 2018-12-14 08:47:02 -0800 | [diff] [blame] | 7164 | #endif |
Ilya Shipitsin | 0590f44 | 2019-05-25 19:30:50 +0500 | [diff] [blame] | 7165 | #if (!defined(OPENSSL_NO_COMP) && !defined(SSL_OP_NO_COMPRESSION)) |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 7166 | cm = SSL_COMP_get_compression_methods(); |
Ilya Shipitsin | e242f3d | 2019-05-25 03:38:14 +0500 | [diff] [blame] | 7167 | n = sk_SSL_COMP_num(cm); |
| 7168 | while (n--) { |
| 7169 | (void) sk_SSL_COMP_pop(cm); |
| 7170 | } |
Ilya Shipitsin | 0590f44 | 2019-05-25 19:30:50 +0500 | [diff] [blame] | 7171 | #endif |
Ilya Shipitsin | e242f3d | 2019-05-25 03:38:14 +0500 | [diff] [blame] | 7172 | |
Willy Tarreau | 5db847a | 2019-05-09 14:13:35 +0200 | [diff] [blame] | 7173 | #if defined(USE_THREAD) && (HA_OPENSSL_VERSION_NUMBER < 0x10100000L) |
Emeric Brun | 821bb9b | 2017-06-15 16:37:39 +0200 | [diff] [blame] | 7174 | ssl_locking_init(); |
| 7175 | #endif |
Ilya Shipitsin | f00cdb1 | 2021-02-06 18:59:22 +0500 | [diff] [blame] | 7176 | #ifdef HAVE_SSL_CTX_ADD_SERVER_CUSTOM_EXT |
Janusz Dziemidowicz | 2c701b5 | 2015-03-07 23:03:59 +0100 | [diff] [blame] | 7177 | sctl_ex_index = SSL_CTX_get_ex_new_index(0, NULL, NULL, NULL, ssl_sock_sctl_free_func); |
| 7178 | #endif |
William Lallemand | 76b4a12 | 2020-08-04 17:41:39 +0200 | [diff] [blame] | 7179 | |
| 7180 | #if ((defined SSL_CTRL_SET_TLSEXT_STATUS_REQ_CB && !defined OPENSSL_NO_OCSP) && !defined OPENSSL_IS_BORINGSSL) |
| 7181 | ocsp_ex_index = SSL_CTX_get_ex_new_index(0, NULL, NULL, NULL, ssl_sock_ocsp_free_func); |
| 7182 | #endif |
| 7183 | |
Thierry FOURNIER | 28962c9 | 2018-06-17 21:37:05 +0200 | [diff] [blame] | 7184 | 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] | 7185 | ssl_capture_ptr_index = SSL_get_ex_new_index(0, NULL, NULL, NULL, ssl_sock_capture_free_func); |
William Lallemand | ca5cf0a | 2021-06-09 16:46:12 +0200 | [diff] [blame] | 7186 | #ifdef HAVE_SSL_KEYLOG |
William Lallemand | 7d42ef5 | 2020-07-06 11:41:30 +0200 | [diff] [blame] | 7187 | ssl_keylog_index = SSL_get_ex_new_index(0, NULL, NULL, NULL, ssl_sock_keylog_free_func); |
| 7188 | #endif |
Emmanuel Hocdet | 9ac143b | 2017-05-29 14:36:20 +0200 | [diff] [blame] | 7189 | #ifndef OPENSSL_NO_ENGINE |
Grant Zhang | 872f9c2 | 2017-01-21 01:10:18 +0000 | [diff] [blame] | 7190 | ENGINE_load_builtin_engines(); |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 7191 | hap_register_post_check(ssl_check_async_engine_count); |
Emmanuel Hocdet | 9ac143b | 2017-05-29 14:36:20 +0200 | [diff] [blame] | 7192 | #endif |
Willy Tarreau | d1c5750 | 2016-12-22 22:46:15 +0100 | [diff] [blame] | 7193 | #if (defined SSL_CTRL_SET_TLSEXT_TICKET_KEY_CB && TLS_TICKETS_NO > 0) |
| 7194 | hap_register_post_check(tlskeys_finalize_config); |
| 7195 | #endif |
Willy Tarreau | 8071338 | 2018-11-26 10:19:54 +0100 | [diff] [blame] | 7196 | |
| 7197 | global.ssl_session_max_cost = SSL_SESSION_MAX_COST; |
| 7198 | global.ssl_handshake_max_cost = SSL_HANDSHAKE_MAX_COST; |
| 7199 | |
Emmanuel Hocdet | 70df7bf | 2019-01-04 11:08:20 +0100 | [diff] [blame] | 7200 | hap_register_post_deinit(ssl_free_global_issuers); |
| 7201 | |
Willy Tarreau | 8071338 | 2018-11-26 10:19:54 +0100 | [diff] [blame] | 7202 | #ifndef OPENSSL_NO_DH |
| 7203 | ssl_dh_ptr_index = SSL_CTX_get_ex_new_index(0, NULL, NULL, NULL, NULL); |
| 7204 | hap_register_post_deinit(ssl_free_dh); |
| 7205 | #endif |
| 7206 | #ifndef OPENSSL_NO_ENGINE |
| 7207 | hap_register_post_deinit(ssl_free_engines); |
| 7208 | #endif |
| 7209 | /* Load SSL string for the verbose & debug mode. */ |
| 7210 | ERR_load_SSL_strings(); |
Olivier Houchard | a8955d5 | 2019-04-07 22:00:38 +0200 | [diff] [blame] | 7211 | ha_meth = BIO_meth_new(0x666, "ha methods"); |
| 7212 | BIO_meth_set_write(ha_meth, ha_ssl_write); |
| 7213 | BIO_meth_set_read(ha_meth, ha_ssl_read); |
| 7214 | BIO_meth_set_ctrl(ha_meth, ha_ssl_ctrl); |
| 7215 | BIO_meth_set_create(ha_meth, ha_ssl_new); |
| 7216 | BIO_meth_set_destroy(ha_meth, ha_ssl_free); |
| 7217 | BIO_meth_set_puts(ha_meth, ha_ssl_puts); |
| 7218 | BIO_meth_set_gets(ha_meth, ha_ssl_gets); |
William Lallemand | 150bfa8 | 2019-09-19 17:12:49 +0200 | [diff] [blame] | 7219 | |
| 7220 | HA_SPIN_INIT(&ckch_lock); |
Dragan Dosen | 1e7ed04 | 2020-05-08 18:30:00 +0200 | [diff] [blame] | 7221 | |
Dragan Dosen | 9ac9809 | 2020-05-11 15:51:45 +0200 | [diff] [blame] | 7222 | /* Try to register dedicated SSL/TLS protocol message callbacks for |
| 7223 | * heartbleed attack (CVE-2014-0160) and clienthello. |
| 7224 | */ |
| 7225 | hap_register_post_check(ssl_sock_register_msg_callbacks); |
| 7226 | |
Dragan Dosen | 1e7ed04 | 2020-05-08 18:30:00 +0200 | [diff] [blame] | 7227 | /* Try to free all callbacks that were registered by using |
| 7228 | * ssl_sock_register_msg_callback(). |
| 7229 | */ |
| 7230 | hap_register_post_deinit(ssl_sock_unregister_msg_callbacks); |
Willy Tarreau | 8071338 | 2018-11-26 10:19:54 +0100 | [diff] [blame] | 7231 | } |
Willy Tarreau | d92aa5c | 2015-01-15 21:34:39 +0100 | [diff] [blame] | 7232 | |
Willy Tarreau | 8071338 | 2018-11-26 10:19:54 +0100 | [diff] [blame] | 7233 | /* Compute and register the version string */ |
| 7234 | static void ssl_register_build_options() |
| 7235 | { |
| 7236 | char *ptr = NULL; |
| 7237 | int i; |
| 7238 | |
Willy Tarreau | c2c0b61 | 2016-12-21 19:23:20 +0100 | [diff] [blame] | 7239 | memprintf(&ptr, "Built with OpenSSL version : " |
| 7240 | #ifdef OPENSSL_IS_BORINGSSL |
Emmanuel Hocdet | 50e25e1 | 2017-03-24 15:20:03 +0100 | [diff] [blame] | 7241 | "BoringSSL"); |
Willy Tarreau | c2c0b61 | 2016-12-21 19:23:20 +0100 | [diff] [blame] | 7242 | #else /* OPENSSL_IS_BORINGSSL */ |
| 7243 | OPENSSL_VERSION_TEXT |
| 7244 | "\nRunning on OpenSSL version : %s%s", |
Rosen Penev | 6818595 | 2018-12-14 08:47:02 -0800 | [diff] [blame] | 7245 | OpenSSL_version(OPENSSL_VERSION), |
Willy Tarreau | 1d158ab | 2019-05-09 13:41:45 +0200 | [diff] [blame] | 7246 | ((OPENSSL_VERSION_NUMBER ^ OpenSSL_version_num()) >> 8) ? " (VERSIONS DIFFER!)" : ""); |
Willy Tarreau | c2c0b61 | 2016-12-21 19:23:20 +0100 | [diff] [blame] | 7247 | #endif |
| 7248 | memprintf(&ptr, "%s\nOpenSSL library supports TLS extensions : " |
Willy Tarreau | 9a1ab08 | 2019-05-09 13:26:41 +0200 | [diff] [blame] | 7249 | #if HA_OPENSSL_VERSION_NUMBER < 0x00907000L |
Willy Tarreau | c2c0b61 | 2016-12-21 19:23:20 +0100 | [diff] [blame] | 7250 | "no (library version too old)" |
| 7251 | #elif defined(OPENSSL_NO_TLSEXT) |
| 7252 | "no (disabled via OPENSSL_NO_TLSEXT)" |
| 7253 | #else |
| 7254 | "yes" |
| 7255 | #endif |
| 7256 | "", ptr); |
| 7257 | |
| 7258 | memprintf(&ptr, "%s\nOpenSSL library supports SNI : " |
| 7259 | #ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME |
| 7260 | "yes" |
| 7261 | #else |
| 7262 | #ifdef OPENSSL_NO_TLSEXT |
| 7263 | "no (because of OPENSSL_NO_TLSEXT)" |
| 7264 | #else |
| 7265 | "no (version might be too old, 0.9.8f min needed)" |
| 7266 | #endif |
| 7267 | #endif |
| 7268 | "", ptr); |
| 7269 | |
Emmanuel Hocdet | f80bc24 | 2017-07-12 14:25:38 +0200 | [diff] [blame] | 7270 | memprintf(&ptr, "%s\nOpenSSL library supports :", ptr); |
| 7271 | for (i = CONF_TLSV_MIN; i <= CONF_TLSV_MAX; i++) |
| 7272 | if (methodVersions[i].option) |
| 7273 | memprintf(&ptr, "%s %s", ptr, methodVersions[i].name); |
Emmanuel Hocdet | 50e25e1 | 2017-03-24 15:20:03 +0100 | [diff] [blame] | 7274 | |
Willy Tarreau | c2c0b61 | 2016-12-21 19:23:20 +0100 | [diff] [blame] | 7275 | hap_register_build_opts(ptr, 1); |
Willy Tarreau | 8071338 | 2018-11-26 10:19:54 +0100 | [diff] [blame] | 7276 | } |
Willy Tarreau | c2c0b61 | 2016-12-21 19:23:20 +0100 | [diff] [blame] | 7277 | |
Willy Tarreau | 8071338 | 2018-11-26 10:19:54 +0100 | [diff] [blame] | 7278 | INITCALL0(STG_REGISTER, ssl_register_build_options); |
Remi Gacogne | 4f902b8 | 2015-05-28 16:23:00 +0200 | [diff] [blame] | 7279 | |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 7280 | |
Emmanuel Hocdet | 9ac143b | 2017-05-29 14:36:20 +0200 | [diff] [blame] | 7281 | #ifndef OPENSSL_NO_ENGINE |
Grant Zhang | 872f9c2 | 2017-01-21 01:10:18 +0000 | [diff] [blame] | 7282 | void ssl_free_engines(void) { |
| 7283 | struct ssl_engine_list *wl, *wlb; |
| 7284 | /* free up engine list */ |
| 7285 | list_for_each_entry_safe(wl, wlb, &openssl_engines, list) { |
| 7286 | ENGINE_finish(wl->e); |
| 7287 | ENGINE_free(wl->e); |
Willy Tarreau | 2b71810 | 2021-04-21 07:32:39 +0200 | [diff] [blame] | 7288 | LIST_DELETE(&wl->list); |
Grant Zhang | 872f9c2 | 2017-01-21 01:10:18 +0000 | [diff] [blame] | 7289 | free(wl); |
| 7290 | } |
| 7291 | } |
Emmanuel Hocdet | 9ac143b | 2017-05-29 14:36:20 +0200 | [diff] [blame] | 7292 | #endif |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 7293 | |
Remi Gacogne | d3a23c3 | 2015-05-28 16:39:47 +0200 | [diff] [blame] | 7294 | #ifndef OPENSSL_NO_DH |
Grant Zhang | 872f9c2 | 2017-01-21 01:10:18 +0000 | [diff] [blame] | 7295 | void ssl_free_dh(void) { |
| 7296 | if (local_dh_1024) { |
| 7297 | DH_free(local_dh_1024); |
| 7298 | local_dh_1024 = NULL; |
| 7299 | } |
| 7300 | if (local_dh_2048) { |
| 7301 | DH_free(local_dh_2048); |
| 7302 | local_dh_2048 = NULL; |
| 7303 | } |
| 7304 | if (local_dh_4096) { |
| 7305 | DH_free(local_dh_4096); |
| 7306 | local_dh_4096 = NULL; |
| 7307 | } |
Remi Gacogne | 47783ef | 2015-05-29 15:53:22 +0200 | [diff] [blame] | 7308 | if (global_dh) { |
| 7309 | DH_free(global_dh); |
| 7310 | global_dh = NULL; |
| 7311 | } |
Grant Zhang | 872f9c2 | 2017-01-21 01:10:18 +0000 | [diff] [blame] | 7312 | } |
| 7313 | #endif |
| 7314 | |
| 7315 | __attribute__((destructor)) |
| 7316 | static void __ssl_sock_deinit(void) |
| 7317 | { |
| 7318 | #if (defined SSL_CTRL_SET_TLSEXT_HOSTNAME && !defined SSL_NO_GENERATE_CERTIFICATES) |
Emeric Brun | 821bb9b | 2017-06-15 16:37:39 +0200 | [diff] [blame] | 7319 | if (ssl_ctx_lru_tree) { |
| 7320 | lru64_destroy(ssl_ctx_lru_tree); |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 7321 | HA_RWLOCK_DESTROY(&ssl_ctx_lru_rwlock); |
Emeric Brun | 821bb9b | 2017-06-15 16:37:39 +0200 | [diff] [blame] | 7322 | } |
Remi Gacogne | d3a23c3 | 2015-05-28 16:39:47 +0200 | [diff] [blame] | 7323 | #endif |
| 7324 | |
Willy Tarreau | 5db847a | 2019-05-09 14:13:35 +0200 | [diff] [blame] | 7325 | #if (HA_OPENSSL_VERSION_NUMBER < 0x10100000L) |
Remi Gacogne | d3a23c3 | 2015-05-28 16:39:47 +0200 | [diff] [blame] | 7326 | ERR_remove_state(0); |
| 7327 | ERR_free_strings(); |
| 7328 | |
| 7329 | EVP_cleanup(); |
Rosen Penev | 6818595 | 2018-12-14 08:47:02 -0800 | [diff] [blame] | 7330 | #endif |
Remi Gacogne | d3a23c3 | 2015-05-28 16:39:47 +0200 | [diff] [blame] | 7331 | |
Willy Tarreau | 5db847a | 2019-05-09 14:13:35 +0200 | [diff] [blame] | 7332 | #if (HA_OPENSSL_VERSION_NUMBER >= 0x00907000L) && (HA_OPENSSL_VERSION_NUMBER < 0x10100000L) |
Remi Gacogne | d3a23c3 | 2015-05-28 16:39:47 +0200 | [diff] [blame] | 7333 | CRYPTO_cleanup_all_ex_data(); |
| 7334 | #endif |
Olivier Houchard | a8955d5 | 2019-04-07 22:00:38 +0200 | [diff] [blame] | 7335 | BIO_meth_free(ha_meth); |
Remi Gacogne | d3a23c3 | 2015-05-28 16:39:47 +0200 | [diff] [blame] | 7336 | } |
| 7337 | |
William Dauchy | f637044 | 2020-11-14 19:25:33 +0100 | [diff] [blame] | 7338 | /* Activate ssl on server <s>. |
| 7339 | * do nothing if there is no change to apply |
| 7340 | * |
| 7341 | * Must be called with the server lock held. |
| 7342 | */ |
| 7343 | void ssl_sock_set_srv(struct server *s, signed char use_ssl) |
| 7344 | { |
| 7345 | if (s->use_ssl == use_ssl) |
| 7346 | return; |
| 7347 | |
| 7348 | s->use_ssl = use_ssl; |
| 7349 | if (s->use_ssl == 1) |
| 7350 | s->xprt = &ssl_sock; |
| 7351 | else |
William Dauchy | f518644 | 2022-01-06 16:57:15 +0100 | [diff] [blame] | 7352 | s->xprt = xprt_get(XPRT_RAW); |
William Dauchy | f637044 | 2020-11-14 19:25:33 +0100 | [diff] [blame] | 7353 | } |
| 7354 | |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 7355 | /* |
| 7356 | * Local variables: |
| 7357 | * c-indent-level: 8 |
| 7358 | * c-basic-offset: 8 |
| 7359 | * End: |
| 7360 | */ |