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