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); |
Willy Tarreau | ffc3fcd | 2012-10-12 20:17:54 +0200 | [diff] [blame] | 53 | const char *ssl_sock_get_cipher_name(struct connection *conn); |
| 54 | const char *ssl_sock_get_proto_version(struct connection *conn); |
Willy Tarreau | 6307641 | 2015-07-10 11:33:32 +0200 | [diff] [blame] | 55 | void ssl_sock_set_servername(struct connection *conn, const char *hostname); |
Dave McCowan | 328fb58 | 2014-07-30 10:39:13 -0400 | [diff] [blame] | 56 | int ssl_sock_get_cert_used_sess(struct connection *conn); |
| 57 | int ssl_sock_get_cert_used_conn(struct connection *conn); |
Emeric Brun | 0abf836 | 2014-06-24 18:26:41 +0200 | [diff] [blame] | 58 | int ssl_sock_get_remote_common_name(struct connection *conn, struct chunk *out); |
David S | afb7683 | 2014-05-08 23:42:08 -0400 | [diff] [blame] | 59 | unsigned int ssl_sock_get_verify_result(struct connection *conn); |
Lukas Tribus | e4e30f7 | 2014-12-09 16:32:51 +0100 | [diff] [blame] | 60 | #if (defined SSL_CTRL_SET_TLSEXT_STATUS_REQ_CB && !defined OPENSSL_NO_OCSP) |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 61 | int ssl_sock_update_ocsp_response(struct chunk *ocsp_response, char **err); |
| 62 | #endif |
Nenad Merdanovic | 200b0fa | 2015-05-09 08:46:01 +0200 | [diff] [blame] | 63 | #if (defined SSL_CTRL_SET_TLSEXT_TICKET_KEY_CB && TLS_TICKETS_NO > 0) |
| 64 | int ssl_sock_update_tlskey(char *filename, struct chunk *tlskey, char **err); |
| 65 | struct tls_keys_ref *tlskeys_ref_lookup(const char *filename); |
| 66 | struct tls_keys_ref *tlskeys_ref_lookupid(int unique_id); |
Nenad Merdanovic | 200b0fa | 2015-05-09 08:46:01 +0200 | [diff] [blame] | 67 | #endif |
Remi Gacogne | 47783ef | 2015-05-29 15:53:22 +0200 | [diff] [blame] | 68 | #ifndef OPENSSL_NO_DH |
| 69 | int ssl_sock_load_global_dh_param_from_file(const char *filename); |
Grant Zhang | 872f9c2 | 2017-01-21 01:10:18 +0000 | [diff] [blame] | 70 | void ssl_free_dh(void); |
Remi Gacogne | 47783ef | 2015-05-29 15:53:22 +0200 | [diff] [blame] | 71 | #endif |
Grant Zhang | 872f9c2 | 2017-01-21 01:10:18 +0000 | [diff] [blame] | 72 | void ssl_free_engines(void); |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 73 | |
Christopher Faulet | 635c0ad | 2015-11-12 11:35:51 +0100 | [diff] [blame] | 74 | 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] | 75 | 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] | 76 | SSL_CTX *ssl_sock_get_generated_cert(unsigned int key, struct bind_conf *bind_conf); |
| 77 | int ssl_sock_set_generated_cert(SSL_CTX *ctx, unsigned int key, struct bind_conf *bind_conf); |
| 78 | 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] | 79 | |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 80 | |
| 81 | /* ssl shctx macro */ |
| 82 | |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 83 | #define sh_ssl_sess_tree_delete(s) ebmb_delete(&(s)->key); |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 84 | |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 85 | #define sh_ssl_sess_tree_insert(s) (struct sh_ssl_sess_hdr *)ebmb_insert(sh_ssl_sess_tree, \ |
| 86 | &(s)->key, SSL_MAX_SSL_SESSION_ID_LENGTH); |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 87 | |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 88 | #define sh_ssl_sess_tree_lookup(k) (struct sh_ssl_sess_hdr *)ebmb_lookup(sh_ssl_sess_tree, \ |
| 89 | (k), SSL_MAX_SSL_SESSION_ID_LENGTH); |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 90 | #endif /* _PROTO_SSL_SOCK_H */ |
| 91 | |
| 92 | /* |
| 93 | * Local variables: |
| 94 | * c-indent-level: 8 |
| 95 | * c-basic-offset: 8 |
| 96 | * End: |
| 97 | */ |