Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 1 | /* |
| 2 | * include/proto/ssl_sock.h |
| 3 | * This file contains definition for ssl stream socket operations |
| 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 _PROTO_SSL_SOCK_H |
| 23 | #define _PROTO_SSL_SOCK_H |
Willy Tarreau | c125cef | 2019-05-10 09:58:43 +0200 | [diff] [blame] | 24 | #ifdef USE_OPENSSL |
| 25 | |
Willy Tarreau | 8d164dc | 2019-05-10 09:35:00 +0200 | [diff] [blame] | 26 | #include <common/openssl-compat.h> |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 27 | |
Willy Tarreau | d1d5454 | 2012-09-12 22:58:11 +0200 | [diff] [blame] | 28 | #include <types/connection.h> |
| 29 | #include <types/listener.h> |
| 30 | #include <types/proxy.h> |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 31 | #include <types/stream_interface.h> |
| 32 | |
Willy Tarreau | c125cef | 2019-05-10 09:58:43 +0200 | [diff] [blame] | 33 | #include <proto/connection.h> |
| 34 | |
Willy Tarreau | 71b734c | 2014-01-28 15:19:44 +0100 | [diff] [blame] | 35 | extern int sslconns; |
| 36 | extern int totalsslconns; |
| 37 | |
David S | afb7683 | 2014-05-08 23:42:08 -0400 | [diff] [blame] | 38 | /* boolean, returns true if connection is over SSL */ |
| 39 | static inline |
| 40 | int ssl_sock_is_ssl(struct connection *conn) |
| 41 | { |
Willy Tarreau | d9f5cca | 2016-12-22 21:08:52 +0100 | [diff] [blame] | 42 | if (!conn || conn->xprt != xprt_get(XPRT_SSL) || !conn->xprt_ctx) |
David S | afb7683 | 2014-05-08 23:42:08 -0400 | [diff] [blame] | 43 | return 0; |
| 44 | else |
| 45 | return 1; |
| 46 | } |
| 47 | |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 48 | int ssl_sock_prepare_ctx(struct bind_conf *bind_conf, struct ssl_bind_conf *, SSL_CTX *ctx); |
Willy Tarreau | 0320934 | 2016-12-22 17:08:28 +0100 | [diff] [blame] | 49 | int ssl_sock_prepare_all_ctx(struct bind_conf *bind_conf); |
Willy Tarreau | 55d3791 | 2016-12-21 23:38:39 +0100 | [diff] [blame] | 50 | int ssl_sock_prepare_bind_conf(struct bind_conf *bind_conf); |
Willy Tarreau | 0320934 | 2016-12-22 17:08:28 +0100 | [diff] [blame] | 51 | int ssl_sock_prepare_srv_ctx(struct server *srv); |
Christopher Faulet | 77fe80c | 2015-07-29 13:02:40 +0200 | [diff] [blame] | 52 | void ssl_sock_free_srv_ctx(struct server *srv); |
Willy Tarreau | 2a65ff0 | 2012-09-13 17:54:29 +0200 | [diff] [blame] | 53 | void ssl_sock_free_all_ctx(struct bind_conf *bind_conf); |
Willy Tarreau | 0320934 | 2016-12-22 17:08:28 +0100 | [diff] [blame] | 54 | int ssl_sock_load_ca(struct bind_conf *bind_conf); |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 55 | void ssl_sock_free_ca(struct bind_conf *bind_conf); |
Emmanuel Hocdet | 253c3b7 | 2018-02-01 18:29:59 +0100 | [diff] [blame] | 56 | const char *ssl_sock_get_sni(struct connection *conn); |
Emmanuel Hocdet | 283e004 | 2017-11-02 14:05:23 +0100 | [diff] [blame] | 57 | const char *ssl_sock_get_cert_sig(struct connection *conn); |
Willy Tarreau | ffc3fcd | 2012-10-12 20:17:54 +0200 | [diff] [blame] | 58 | const char *ssl_sock_get_cipher_name(struct connection *conn); |
| 59 | const char *ssl_sock_get_proto_version(struct connection *conn); |
Olivier Houchard | ab28a32 | 2018-12-21 19:45:40 +0100 | [diff] [blame] | 60 | void ssl_sock_set_alpn(struct connection *conn, const unsigned char *, int); |
Willy Tarreau | 6307641 | 2015-07-10 11:33:32 +0200 | [diff] [blame] | 61 | void ssl_sock_set_servername(struct connection *conn, const char *hostname); |
Olivier Houchard | ab28a32 | 2018-12-21 19:45:40 +0100 | [diff] [blame] | 62 | |
Dave McCowan | 328fb58 | 2014-07-30 10:39:13 -0400 | [diff] [blame] | 63 | int ssl_sock_get_cert_used_sess(struct connection *conn); |
| 64 | int ssl_sock_get_cert_used_conn(struct connection *conn); |
Willy Tarreau | 83061a8 | 2018-07-13 11:56:34 +0200 | [diff] [blame] | 65 | int ssl_sock_get_remote_common_name(struct connection *conn, |
| 66 | struct buffer *out); |
| 67 | int ssl_sock_get_pkey_algo(struct connection *conn, struct buffer *out); |
David S | afb7683 | 2014-05-08 23:42:08 -0400 | [diff] [blame] | 68 | unsigned int ssl_sock_get_verify_result(struct connection *conn); |
Lukas Tribus | e4e30f7 | 2014-12-09 16:32:51 +0100 | [diff] [blame] | 69 | #if (defined SSL_CTRL_SET_TLSEXT_STATUS_REQ_CB && !defined OPENSSL_NO_OCSP) |
Willy Tarreau | 83061a8 | 2018-07-13 11:56:34 +0200 | [diff] [blame] | 70 | int ssl_sock_update_ocsp_response(struct buffer *ocsp_response, char **err); |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 71 | #endif |
Nenad Merdanovic | 200b0fa | 2015-05-09 08:46:01 +0200 | [diff] [blame] | 72 | #if (defined SSL_CTRL_SET_TLSEXT_TICKET_KEY_CB && TLS_TICKETS_NO > 0) |
Emeric Brun | 9e75477 | 2019-01-10 17:51:55 +0100 | [diff] [blame] | 73 | int ssl_sock_update_tlskey_ref(struct tls_keys_ref *ref, |
Willy Tarreau | 83061a8 | 2018-07-13 11:56:34 +0200 | [diff] [blame] | 74 | struct buffer *tlskey); |
| 75 | int ssl_sock_update_tlskey(char *filename, struct buffer *tlskey, char **err); |
Nenad Merdanovic | 200b0fa | 2015-05-09 08:46:01 +0200 | [diff] [blame] | 76 | struct tls_keys_ref *tlskeys_ref_lookup(const char *filename); |
| 77 | struct tls_keys_ref *tlskeys_ref_lookupid(int unique_id); |
Nenad Merdanovic | 200b0fa | 2015-05-09 08:46:01 +0200 | [diff] [blame] | 78 | #endif |
Remi Gacogne | 47783ef | 2015-05-29 15:53:22 +0200 | [diff] [blame] | 79 | #ifndef OPENSSL_NO_DH |
| 80 | int ssl_sock_load_global_dh_param_from_file(const char *filename); |
Grant Zhang | 872f9c2 | 2017-01-21 01:10:18 +0000 | [diff] [blame] | 81 | void ssl_free_dh(void); |
Remi Gacogne | 47783ef | 2015-05-29 15:53:22 +0200 | [diff] [blame] | 82 | #endif |
Grant Zhang | 872f9c2 | 2017-01-21 01:10:18 +0000 | [diff] [blame] | 83 | void ssl_free_engines(void); |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 84 | |
Christopher Faulet | 635c0ad | 2015-11-12 11:35:51 +0100 | [diff] [blame] | 85 | SSL_CTX *ssl_sock_create_cert(struct connection *conn, const char *servername, unsigned int key); |
Emeric Brun | 821bb9b | 2017-06-15 16:37:39 +0200 | [diff] [blame] | 86 | SSL_CTX *ssl_sock_assign_generated_cert(unsigned int key, struct bind_conf *bind_conf, SSL *ssl); |
Christopher Faulet | 635c0ad | 2015-11-12 11:35:51 +0100 | [diff] [blame] | 87 | SSL_CTX *ssl_sock_get_generated_cert(unsigned int key, struct bind_conf *bind_conf); |
| 88 | int ssl_sock_set_generated_cert(SSL_CTX *ctx, unsigned int key, struct bind_conf *bind_conf); |
| 89 | unsigned int ssl_sock_generated_cert_key(const void *data, size_t len); |
Christopher Faulet | 3054880 | 2015-06-11 13:39:32 +0200 | [diff] [blame] | 90 | |
Willy Tarreau | 9a1ab08 | 2019-05-09 13:26:41 +0200 | [diff] [blame] | 91 | #if (HA_OPENSSL_VERSION_NUMBER >= 0x1010000fL) && !defined(OPENSSL_NO_ASYNC) && !defined(LIBRESSL_VERSION_NUMBER) |
Emeric Brun | d0e095c | 2019-04-19 17:15:28 +0200 | [diff] [blame] | 92 | void ssl_async_fd_handler(int fd); |
| 93 | void ssl_async_fd_free(int fd); |
| 94 | #endif |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 95 | |
| 96 | /* ssl shctx macro */ |
| 97 | |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 98 | #define sh_ssl_sess_tree_delete(s) ebmb_delete(&(s)->key); |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 99 | |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 100 | #define sh_ssl_sess_tree_insert(s) (struct sh_ssl_sess_hdr *)ebmb_insert(sh_ssl_sess_tree, \ |
| 101 | &(s)->key, SSL_MAX_SSL_SESSION_ID_LENGTH); |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 102 | |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 103 | #define sh_ssl_sess_tree_lookup(k) (struct sh_ssl_sess_hdr *)ebmb_lookup(sh_ssl_sess_tree, \ |
| 104 | (k), SSL_MAX_SSL_SESSION_ID_LENGTH); |
Willy Tarreau | c125cef | 2019-05-10 09:58:43 +0200 | [diff] [blame] | 105 | #endif /* USE_OPENSSL */ |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 106 | #endif /* _PROTO_SSL_SOCK_H */ |
| 107 | |
| 108 | /* |
| 109 | * Local variables: |
| 110 | * c-indent-level: 8 |
| 111 | * c-basic-offset: 8 |
| 112 | * End: |
| 113 | */ |