blob: 99c964d6edd4105a986097d4d99c8a54cc38a616 [file] [log] [blame]
Emeric Brunfc0421f2012-09-07 17:30:07 +02001/*
2 * include/types/ssl_sock.h
3 * SSL settings for listeners and servers
4 *
5 * Copyright (C) 2012 EXCELIANCE, Emeric Brun <ebrun@exceliance.fr>
6 *
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation, version 2.1
10 * exclusively.
11 *
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
16 *
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with this library; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20 */
21
22#ifndef _TYPES_SSL_SOCK_H
23#define _TYPES_SSL_SOCK_H
Willy Tarreauc125cef2019-05-10 09:58:43 +020024#ifdef USE_OPENSSL
Emeric Brunfc0421f2012-09-07 17:30:07 +020025
William Lallemand2954c472020-03-06 21:54:13 +010026#include <ebpttree.h>
Emeric Brunfc0421f2012-09-07 17:30:07 +020027#include <ebmbtree.h>
William Lallemande0f3fd52020-02-25 14:53:06 +010028#include <eb64tree.h>
Emeric Brunfc0421f2012-09-07 17:30:07 +020029
William Lallemandc0cdaff2020-05-15 00:20:53 +020030#include <types/connection.h> /* struct wait_event */
William Lallemandd4632b22020-05-12 14:46:24 +020031#include <types/ssl_ckch.h>
William Lallemandbe21b662020-05-12 14:17:23 +020032#include <types/ssl_crtlist.h>
33
Christopher Faulet16f45c82018-02-16 11:23:49 +010034#include <common/hathreads.h>
Willy Tarreau8dd0d552020-03-06 18:43:08 +010035#include <common/mini-clist.h>
Willy Tarreau55994562019-05-09 14:52:44 +020036#include <common/openssl-compat.h>
Christopher Faulet16f45c82018-02-16 11:23:49 +010037
William Lallemand7fd8b452020-05-07 15:20:43 +020038/* ***** READ THIS before adding code here! *****
39 *
40 * Due to API incompatibilities between multiple OpenSSL versions and their
41 * derivatives, it's often tempting to add macros to (re-)define certain
42 * symbols. Please do not do this here, and do it in common/openssl-compat.h
43 * exclusively so that the whole code consistently uses the same macros.
44 *
45 * Whenever possible if a macro is missing in certain versions, it's better
46 * to conditionally define it in openssl-compat.h than using lots of ifdefs.
47 */
48
49/* Warning, these are bits, not integers! */
50#define SSL_SOCK_ST_FL_VERIFY_DONE 0x00000001
51#define SSL_SOCK_ST_FL_16K_WBFSIZE 0x00000002
52#define SSL_SOCK_SEND_UNLIMITED 0x00000004
53#define SSL_SOCK_RECV_HEARTBEAT 0x00000008
54
55/* bits 0xFFFF0000 are reserved to store verify errors */
56
57/* Verify errors macros */
58#define SSL_SOCK_CA_ERROR_TO_ST(e) (((e > 63) ? 63 : e) << (16))
59#define SSL_SOCK_CAEDEPTH_TO_ST(d) (((d > 15) ? 15 : d) << (6+16))
60#define SSL_SOCK_CRTERROR_TO_ST(e) (((e > 63) ? 63 : e) << (4+6+16))
61
62#define SSL_SOCK_ST_TO_CA_ERROR(s) ((s >> (16)) & 63)
63#define SSL_SOCK_ST_TO_CAEDEPTH(s) ((s >> (6+16)) & 15)
64#define SSL_SOCK_ST_TO_CRTERROR(s) ((s >> (4+6+16)) & 63)
65
66/* ssl_methods flags for ssl options */
67#define MC_SSL_O_ALL 0x0000
68#define MC_SSL_O_NO_SSLV3 0x0001 /* disable SSLv3 */
69#define MC_SSL_O_NO_TLSV10 0x0002 /* disable TLSv10 */
70#define MC_SSL_O_NO_TLSV11 0x0004 /* disable TLSv11 */
71#define MC_SSL_O_NO_TLSV12 0x0008 /* disable TLSv12 */
72#define MC_SSL_O_NO_TLSV13 0x0010 /* disable TLSv13 */
73
74/* file to guess during file loading */
75#define SSL_GF_NONE 0x00000000 /* Don't guess any file, only open the files specified in the configuration files */
76#define SSL_GF_BUNDLE 0x00000001 /* try to open the bundles */
77#define SSL_GF_SCTL 0x00000002 /* try to open the .sctl file */
78#define SSL_GF_OCSP 0x00000004 /* try to open the .ocsp file */
79#define SSL_GF_OCSP_ISSUER 0x00000008 /* try to open the .issuer file if an OCSP file was loaded */
80#define SSL_GF_KEY 0x00000010 /* try to open the .key file to load a private key */
81
82#define SSL_GF_ALL (SSL_GF_BUNDLE|SSL_GF_SCTL|SSL_GF_OCSP|SSL_GF_OCSP_ISSUER|SSL_GF_KEY)
83
84/* ssl_methods versions */
85enum {
86 CONF_TLSV_NONE = 0,
87 CONF_TLSV_MIN = 1,
88 CONF_SSLV3 = 1,
89 CONF_TLSV10 = 2,
90 CONF_TLSV11 = 3,
91 CONF_TLSV12 = 4,
92 CONF_TLSV13 = 5,
93 CONF_TLSV_MAX = 5,
94};
95
96#if (HA_OPENSSL_VERSION_NUMBER < 0x1010000fL)
97typedef enum { SET_CLIENT, SET_SERVER } set_context_func;
98#else /* openssl >= 1.1.0 */
99typedef enum { SET_MIN, SET_MAX } set_context_func;
100#endif
101
102struct methodVersions {
103 int option;
104 uint16_t flag;
105 void (*ctx_set_version)(SSL_CTX *, set_context_func);
106 void (*ssl_set_version)(SSL *, set_context_func);
107 const char *name;
108};
109
110/* server and bind verify method, it uses a global value as default */
111enum {
112 SSL_SOCK_VERIFY_DEFAULT = 0,
113 SSL_SOCK_VERIFY_REQUIRED = 1,
114 SSL_SOCK_VERIFY_OPTIONAL = 2,
115 SSL_SOCK_VERIFY_NONE = 3,
116};
Dragan Dosen1e7ed042020-05-08 18:30:00 +0200117
Emmanuel Hocdetddc090b2017-10-27 18:43:29 +0200118struct pkey_info {
119 uint8_t sig; /* TLSEXT_signature_[rsa,ecdsa,...] */
120 uint16_t bits; /* key size in bits */
121};
122
Emeric Brunfc0421f2012-09-07 17:30:07 +0200123struct sni_ctx {
124 SSL_CTX *ctx; /* context associated to the certificate */
125 int order; /* load order for the certificate */
Tim Duesterhus6a0dd732020-01-18 01:32:49 +0100126 unsigned int neg:1; /* reject if match */
127 unsigned int wild:1; /* wildcard sni */
Emmanuel Hocdetddc090b2017-10-27 18:43:29 +0200128 struct pkey_info kinfo; /* pkey info */
Emmanuel Hocdet98263292016-12-29 18:26:15 +0100129 struct ssl_bind_conf *conf; /* ssl "bind" conf for the certificate */
William Lallemand9117de92019-10-04 00:29:42 +0200130 struct list by_ckch_inst; /* chained in ckch_inst's list of sni_ctx */
William Lallemandcfca1422020-03-05 10:17:47 +0100131 struct ckch_inst *ckch_inst; /* instance used to create this sni_ctx */
Emeric Brunfc0421f2012-09-07 17:30:07 +0200132 struct ebmb_node name; /* node holding the servername value */
133};
134
Nenad Merdanovic200b0fa2015-05-09 08:46:01 +0200135extern struct list tlskeys_reference;
136
Emeric Brun9e754772019-01-10 17:51:55 +0100137struct tls_sess_key_128 {
Nenad Merdanovic05552d42015-02-27 19:56:49 +0100138 unsigned char name[16];
139 unsigned char aes_key[16];
140 unsigned char hmac_key[16];
141} __attribute__((packed));
142
Emeric Brun9e754772019-01-10 17:51:55 +0100143struct tls_sess_key_256 {
144 unsigned char name[16];
145 unsigned char aes_key[32];
146 unsigned char hmac_key[32];
147} __attribute__((packed));
148
149union tls_sess_key{
150 unsigned char name[16];
Nenad Merdanovic8ef70652019-04-14 16:06:46 +0200151 struct tls_sess_key_128 key_128;
Emeric Brun9e754772019-01-10 17:51:55 +0100152 struct tls_sess_key_256 key_256;
153} __attribute__((packed));
154
Nenad Merdanovic146defa2015-05-09 08:46:00 +0200155struct tls_keys_ref {
156 struct list list; /* Used to chain refs. */
157 char *filename;
158 int unique_id; /* Each pattern reference have unique id. */
Willy Tarreau17b4aa12018-07-17 10:05:32 +0200159 int refcount; /* number of users of this tls_keys_ref. */
Emeric Brun9e754772019-01-10 17:51:55 +0100160 union tls_sess_key *tlskeys;
Nenad Merdanovic146defa2015-05-09 08:46:00 +0200161 int tls_ticket_enc_index;
Emeric Brun9e754772019-01-10 17:51:55 +0100162 int key_size_bits;
Christopher Faulet16f45c82018-02-16 11:23:49 +0100163 __decl_hathreads(HA_RWLOCK_T lock); /* lock used to protect the ref */
Nenad Merdanovic146defa2015-05-09 08:46:00 +0200164};
165
William Lallemand4f45bb92017-10-30 20:08:51 +0100166/* shared ssl session */
167struct sh_ssl_sess_hdr {
168 struct ebmb_node key;
169 unsigned char key_data[SSL_MAX_SSL_SESSION_ID_LENGTH];
170};
171
William Lallemandad3c37b2020-03-25 20:20:26 +0100172/* states of the CLI IO handler for 'set ssl cert' */
173enum {
174 SETCERT_ST_INIT = 0,
175 SETCERT_ST_GEN,
176 SETCERT_ST_INSERT,
177 SETCERT_ST_FIN,
178};
179
William Lallemandf6adbe92019-09-11 16:33:52 +0200180#if HA_OPENSSL_VERSION_NUMBER >= 0x1000200fL
181
182#define SSL_SOCK_POSSIBLE_KT_COMBOS (1<<(SSL_SOCK_NUM_KEYTYPES))
183
184struct key_combo_ctx {
185 SSL_CTX *ctx;
186 int order;
187};
188
189/* Map used for processing multiple keypairs for a single purpose
190 *
191 * This maps CN/SNI name to certificate type
192 */
193struct sni_keytype {
194 int keytypes; /* BITMASK for keytypes */
195 struct ebmb_node name; /* node holding the servername value */
196};
197
198#endif
199
William Lallemande0f3fd52020-02-25 14:53:06 +0100200/* issuer chain store with hash of Subject Key Identifier
201 certificate/issuer matching is verify with X509_check_issued
202*/
203struct issuer_chain {
204 struct eb64_node node;
205 STACK_OF(X509) *chain;
206 char *path;
207};
208
William Lallemand7fd8b452020-05-07 15:20:43 +0200209struct connection;
210
Dragan Dosen1e7ed042020-05-08 18:30:00 +0200211typedef void (*ssl_sock_msg_callback_func)(struct connection *conn,
212 int write_p, int version, int content_type,
213 const void *buf, size_t len, SSL *ssl);
214
215/* This structure contains a function pointer <func> that is called
216 * when observing received or sent SSL/TLS protocol messages, such as
217 * handshake messages or other events that can occur during processing.
218 */
219struct ssl_sock_msg_callback {
220 ssl_sock_msg_callback_func func;
221 struct list list; /* list of registered callbacks */
222};
William Lallemande0f3fd52020-02-25 14:53:06 +0100223
William Lallemand7fd8b452020-05-07 15:20:43 +0200224/* This memory pool is used for capturing clienthello parameters. */
225struct ssl_capture {
226 unsigned long long int xxh64;
227 unsigned char ciphersuite_len;
228 char ciphersuite[0];
229};
230
William Lallemandc0cdaff2020-05-15 00:20:53 +0200231struct ssl_sock_ctx {
232 struct connection *conn;
233 SSL *ssl;
234 BIO *bio;
235 const struct xprt_ops *xprt;
236 void *xprt_ctx;
237 struct wait_event wait_event;
238 struct wait_event *subs;
239 int xprt_st; /* transport layer state, initialized to zero */
240 struct buffer early_buf; /* buffer to store the early data received */
241 int sent_early_data; /* Amount of early data we sent so far */
242
243};
244
William Lallemand7fd8b452020-05-07 15:20:43 +0200245struct global_ssl {
246 char *crt_base; /* base directory path for certificates */
247 char *ca_base; /* base directory path for CAs and CRLs */
248 char *issuers_chain_path; /* from "issuers-chain-path" */
249 int skip_self_issued_ca;
250
251 int async; /* whether we use ssl async mode */
252
253 char *listen_default_ciphers;
254 char *connect_default_ciphers;
255#if (HA_OPENSSL_VERSION_NUMBER >= 0x10101000L)
256 char *listen_default_ciphersuites;
257 char *connect_default_ciphersuites;
258#endif
259#if ((HA_OPENSSL_VERSION_NUMBER >= 0x1000200fL) || defined(LIBRESSL_VERSION_NUMBER))
260 char *listen_default_curves;
261#endif
262 int listen_default_ssloptions;
263 int connect_default_ssloptions;
264 struct tls_version_filter listen_default_sslmethods;
265 struct tls_version_filter connect_default_sslmethods;
266
267 int private_cache; /* Force to use a private session cache even if nbproc > 1 */
268 unsigned int life_time; /* SSL session lifetime in seconds */
269 unsigned int max_record; /* SSL max record size */
270 unsigned int default_dh_param; /* SSL maximum DH parameter size */
271 int ctx_cache; /* max number of entries in the ssl_ctx cache. */
272 int capture_cipherlist; /* Size of the cipherlist buffer. */
273 int extra_files; /* which files not defined in the configuration file are we looking for */
274};
275
William Lallemandd4632b22020-05-12 14:46:24 +0200276#if HA_OPENSSL_VERSION_NUMBER >= 0x1000200fL
277/* The order here matters for picking a default context,
278 * keep the most common keytype at the bottom of the list
279 */
280extern const char *SSL_SOCK_KEYTYPE_NAMES[];
281
282#define SSL_SOCK_NUM_KEYTYPES 3
283#else
284#define SSL_SOCK_NUM_KEYTYPES 1
285#endif
286
Willy Tarreauc125cef2019-05-10 09:58:43 +0200287#endif /* USE_OPENSSL */
Emeric Brunfc0421f2012-09-07 17:30:07 +0200288#endif /* _TYPES_SSL_SOCK_H */