blob: 5bd76ba9c54dea8b1f21ac45964cf0253a14ef6b [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
28struct sni_ctx {
29 SSL_CTX *ctx; /* context associated to the certificate */
30 int order; /* load order for the certificate */
Emmanuel Hocdet05942112017-02-20 16:11:50 +010031 uint8_t neg; /* reject if match */
32 uint8_t key_sig; /* TLSEXT_signature_[rsa,ecdsa,...] */
Emmanuel Hocdet98263292016-12-29 18:26:15 +010033 struct ssl_bind_conf *conf; /* ssl "bind" conf for the certificate */
Emeric Brunfc0421f2012-09-07 17:30:07 +020034 struct ebmb_node name; /* node holding the servername value */
35};
36
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +020037struct tls_version_filter {
38 uint16_t flags; /* ssl options */
39 uint8_t min; /* min TLS version */
40 uint8_t max; /* max TLS version */
41};
42
Nenad Merdanovic200b0fa2015-05-09 08:46:01 +020043extern struct list tlskeys_reference;
44
Nenad Merdanovic05552d42015-02-27 19:56:49 +010045struct tls_sess_key {
46 unsigned char name[16];
47 unsigned char aes_key[16];
48 unsigned char hmac_key[16];
49} __attribute__((packed));
50
Nenad Merdanovic146defa2015-05-09 08:46:00 +020051struct tls_keys_ref {
52 struct list list; /* Used to chain refs. */
53 char *filename;
54 int unique_id; /* Each pattern reference have unique id. */
55 struct tls_sess_key *tlskeys;
56 int tls_ticket_enc_index;
57};
58
William Lallemand4f45bb92017-10-30 20:08:51 +010059/* shared ssl session */
60struct sh_ssl_sess_hdr {
61 struct ebmb_node key;
62 unsigned char key_data[SSL_MAX_SSL_SESSION_ID_LENGTH];
63};
64
Emeric Brunfc0421f2012-09-07 17:30:07 +020065#endif /* _TYPES_SSL_SOCK_H */