blob: c31a4969882794b92c0f6c1062fcad9ff5cc70cd [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
24
25#include <openssl/ssl.h>
26#include <ebmbtree.h>
27
Christopher Faulet16f45c82018-02-16 11:23:49 +010028#include <common/hathreads.h>
29
Emeric Brunfc0421f2012-09-07 17:30:07 +020030struct sni_ctx {
31 SSL_CTX *ctx; /* context associated to the certificate */
32 int order; /* load order for the certificate */
Emmanuel Hocdet05942112017-02-20 16:11:50 +010033 uint8_t neg; /* reject if match */
34 uint8_t key_sig; /* TLSEXT_signature_[rsa,ecdsa,...] */
Emmanuel Hocdet98263292016-12-29 18:26:15 +010035 struct ssl_bind_conf *conf; /* ssl "bind" conf for the certificate */
Emeric Brunfc0421f2012-09-07 17:30:07 +020036 struct ebmb_node name; /* node holding the servername value */
37};
38
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +020039struct tls_version_filter {
40 uint16_t flags; /* ssl options */
41 uint8_t min; /* min TLS version */
42 uint8_t max; /* max TLS version */
43};
44
Nenad Merdanovic200b0fa2015-05-09 08:46:01 +020045extern struct list tlskeys_reference;
46
Nenad Merdanovic05552d42015-02-27 19:56:49 +010047struct tls_sess_key {
48 unsigned char name[16];
49 unsigned char aes_key[16];
50 unsigned char hmac_key[16];
51} __attribute__((packed));
52
Nenad Merdanovic146defa2015-05-09 08:46:00 +020053struct tls_keys_ref {
54 struct list list; /* Used to chain refs. */
55 char *filename;
56 int unique_id; /* Each pattern reference have unique id. */
57 struct tls_sess_key *tlskeys;
58 int tls_ticket_enc_index;
Christopher Faulet16f45c82018-02-16 11:23:49 +010059 __decl_hathreads(HA_RWLOCK_T lock); /* lock used to protect the ref */
Nenad Merdanovic146defa2015-05-09 08:46:00 +020060};
61
William Lallemand4f45bb92017-10-30 20:08:51 +010062/* shared ssl session */
63struct sh_ssl_sess_hdr {
64 struct ebmb_node key;
65 unsigned char key_data[SSL_MAX_SSL_SESSION_ID_LENGTH];
66};
67
Emeric Brunfc0421f2012-09-07 17:30:07 +020068#endif /* _TYPES_SSL_SOCK_H */