mirror of
http://git.haproxy.org/git/haproxy.git/
synced 2024-12-17 17:04:35 +00:00
BUILD: ssl: use HAVE_OPENSSL_KEYLOG instead of OpenSSL versions
let us use HAVE_OPENSSL_KEYLOG for feature detection instead of versions
This commit is contained in:
parent
5a7ca29061
commit
04a5a440b8
@ -226,7 +226,7 @@ struct ssl_capture {
|
|||||||
char ciphersuite[VAR_ARRAY];
|
char ciphersuite[VAR_ARRAY];
|
||||||
};
|
};
|
||||||
|
|
||||||
#if (HA_OPENSSL_VERSION_NUMBER >= 0x10101000L)
|
#ifdef HAVE_OPENSSL_KEYLOG
|
||||||
#define SSL_KEYLOG_MAX_SECRET_SIZE 129
|
#define SSL_KEYLOG_MAX_SECRET_SIZE 129
|
||||||
|
|
||||||
struct ssl_keylog {
|
struct ssl_keylog {
|
||||||
|
@ -318,7 +318,7 @@ static int ssl_parse_global_capture_cipherlist(char **args, int section_type, st
|
|||||||
}
|
}
|
||||||
|
|
||||||
/* init the SSLKEYLOGFILE pool */
|
/* init the SSLKEYLOGFILE pool */
|
||||||
#if (HA_OPENSSL_VERSION_NUMBER >= 0x10101000L)
|
#ifdef HAVE_OPENSSL_KEYLOG
|
||||||
static int ssl_parse_global_keylog(char **args, int section_type, struct proxy *curpx,
|
static int ssl_parse_global_keylog(char **args, int section_type, struct proxy *curpx,
|
||||||
struct proxy *defpx, const char *file, int line,
|
struct proxy *defpx, const char *file, int line,
|
||||||
char **err)
|
char **err)
|
||||||
@ -1872,7 +1872,7 @@ static struct cfg_kw_list cfg_kws = {ILH, {
|
|||||||
{ CFG_GLOBAL, "tune.ssl.maxrecord", ssl_parse_global_int },
|
{ CFG_GLOBAL, "tune.ssl.maxrecord", ssl_parse_global_int },
|
||||||
{ CFG_GLOBAL, "tune.ssl.ssl-ctx-cache-size", ssl_parse_global_int },
|
{ CFG_GLOBAL, "tune.ssl.ssl-ctx-cache-size", ssl_parse_global_int },
|
||||||
{ CFG_GLOBAL, "tune.ssl.capture-cipherlist-size", ssl_parse_global_capture_cipherlist },
|
{ CFG_GLOBAL, "tune.ssl.capture-cipherlist-size", ssl_parse_global_capture_cipherlist },
|
||||||
#if (HA_OPENSSL_VERSION_NUMBER >= 0x10101000L)
|
#ifdef HAVE_OPENSSL_KEYLOG
|
||||||
{ CFG_GLOBAL, "tune.ssl.keylog", ssl_parse_global_keylog },
|
{ CFG_GLOBAL, "tune.ssl.keylog", ssl_parse_global_keylog },
|
||||||
#endif
|
#endif
|
||||||
{ CFG_GLOBAL, "ssl-default-bind-ciphers", ssl_parse_global_ciphers },
|
{ CFG_GLOBAL, "ssl-default-bind-ciphers", ssl_parse_global_ciphers },
|
||||||
|
@ -1189,7 +1189,7 @@ smp_fetch_ssl_fc_cl_xxh64(const struct arg *args, struct sample *smp, const char
|
|||||||
}
|
}
|
||||||
|
|
||||||
/* Dump the SSL keylog, it only works with "tune.ssl.keylog 1" */
|
/* Dump the SSL keylog, it only works with "tune.ssl.keylog 1" */
|
||||||
#if (HA_OPENSSL_VERSION_NUMBER >= 0x10101000L)
|
#ifdef HAVE_OPENSSL_KEYLOG
|
||||||
static int smp_fetch_ssl_x_keylog(const struct arg *args, struct sample *smp, const char *kw, void *private)
|
static int smp_fetch_ssl_x_keylog(const struct arg *args, struct sample *smp, const char *kw, void *private)
|
||||||
{
|
{
|
||||||
struct connection *conn;
|
struct connection *conn;
|
||||||
@ -1520,7 +1520,7 @@ static struct sample_fetch_kw_list sample_fetch_keywords = {ILH, {
|
|||||||
{ "ssl_fc_session_key", smp_fetch_ssl_fc_session_key, 0, NULL, SMP_T_BIN, SMP_USE_L5CLI },
|
{ "ssl_fc_session_key", smp_fetch_ssl_fc_session_key, 0, NULL, SMP_T_BIN, SMP_USE_L5CLI },
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if (HA_OPENSSL_VERSION_NUMBER >= 0x10101000L)
|
#ifdef HAVE_OPENSSL_KEYLOG
|
||||||
{ "ssl_fc_client_early_traffic_secret", smp_fetch_ssl_x_keylog, 0, NULL, SMP_T_STR, SMP_USE_L5CLI },
|
{ "ssl_fc_client_early_traffic_secret", smp_fetch_ssl_x_keylog, 0, NULL, SMP_T_STR, SMP_USE_L5CLI },
|
||||||
{ "ssl_fc_client_handshake_traffic_secret", smp_fetch_ssl_x_keylog, 0, NULL, SMP_T_STR, SMP_USE_L5CLI },
|
{ "ssl_fc_client_handshake_traffic_secret", smp_fetch_ssl_x_keylog, 0, NULL, SMP_T_STR, SMP_USE_L5CLI },
|
||||||
{ "ssl_fc_server_handshake_traffic_secret", smp_fetch_ssl_x_keylog, 0, NULL, SMP_T_STR, SMP_USE_L5CLI },
|
{ "ssl_fc_server_handshake_traffic_secret", smp_fetch_ssl_x_keylog, 0, NULL, SMP_T_STR, SMP_USE_L5CLI },
|
||||||
|
@ -130,7 +130,7 @@ struct global_ssl global_ssl = {
|
|||||||
.capture_cipherlist = 0,
|
.capture_cipherlist = 0,
|
||||||
.extra_files = SSL_GF_ALL,
|
.extra_files = SSL_GF_ALL,
|
||||||
.extra_files_noext = 0,
|
.extra_files_noext = 0,
|
||||||
#if (HA_OPENSSL_VERSION_NUMBER >= 0x10101000L)
|
#ifdef HAVE_OPENSSL_KEYLOG
|
||||||
.keylog = 0
|
.keylog = 0
|
||||||
#endif
|
#endif
|
||||||
};
|
};
|
||||||
@ -437,7 +437,7 @@ struct pool_head *pool_head_ssl_capture = NULL;
|
|||||||
int ssl_capture_ptr_index = -1;
|
int ssl_capture_ptr_index = -1;
|
||||||
static int ssl_app_data_index = -1;
|
static int ssl_app_data_index = -1;
|
||||||
|
|
||||||
#if (HA_OPENSSL_VERSION_NUMBER >= 0x10101000L)
|
#ifdef HAVE_OPENSSL_KEYLOG
|
||||||
int ssl_keylog_index = -1;
|
int ssl_keylog_index = -1;
|
||||||
struct pool_head *pool_head_ssl_keylog = NULL;
|
struct pool_head *pool_head_ssl_keylog = NULL;
|
||||||
struct pool_head *pool_head_ssl_keylog_str = NULL;
|
struct pool_head *pool_head_ssl_keylog_str = NULL;
|
||||||
@ -513,7 +513,7 @@ static void ssl_sock_parse_clienthello(struct connection *conn, int write_p, int
|
|||||||
int content_type, const void *buf, size_t len,
|
int content_type, const void *buf, size_t len,
|
||||||
SSL *ssl);
|
SSL *ssl);
|
||||||
|
|
||||||
#if (HA_OPENSSL_VERSION_NUMBER >= 0x10101000L)
|
#ifdef HAVE_OPENSSL_KEYLOG
|
||||||
static void ssl_init_keylog(struct connection *conn, int write_p, int version,
|
static void ssl_init_keylog(struct connection *conn, int write_p, int version,
|
||||||
int content_type, const void *buf, size_t len,
|
int content_type, const void *buf, size_t len,
|
||||||
SSL *ssl);
|
SSL *ssl);
|
||||||
@ -558,7 +558,7 @@ static int ssl_sock_register_msg_callbacks(void)
|
|||||||
if (!ssl_sock_register_msg_callback(ssl_sock_parse_clienthello))
|
if (!ssl_sock_register_msg_callback(ssl_sock_parse_clienthello))
|
||||||
return ERR_ABORT;
|
return ERR_ABORT;
|
||||||
}
|
}
|
||||||
#if (HA_OPENSSL_VERSION_NUMBER >= 0x10101000L)
|
#ifdef HAVE_OPENSSL_KEYLOG
|
||||||
if (global_ssl.keylog > 0) {
|
if (global_ssl.keylog > 0) {
|
||||||
if (!ssl_sock_register_msg_callback(ssl_init_keylog))
|
if (!ssl_sock_register_msg_callback(ssl_init_keylog))
|
||||||
return ERR_ABORT;
|
return ERR_ABORT;
|
||||||
@ -1734,7 +1734,7 @@ static void ssl_sock_parse_clienthello(struct connection *conn, int write_p, int
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
#if (HA_OPENSSL_VERSION_NUMBER >= 0x10101000L)
|
#ifdef HAVE_OPENSSL_KEYLOG
|
||||||
static void ssl_init_keylog(struct connection *conn, int write_p, int version,
|
static void ssl_init_keylog(struct connection *conn, int write_p, int version,
|
||||||
int content_type, const void *buf, size_t len,
|
int content_type, const void *buf, size_t len,
|
||||||
SSL *ssl)
|
SSL *ssl)
|
||||||
@ -3919,7 +3919,7 @@ void ssl_set_shctx(SSL_CTX *ctx)
|
|||||||
* We only need to copy the secret as there is a sample fetch for the ClientRandom
|
* We only need to copy the secret as there is a sample fetch for the ClientRandom
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#if (HA_OPENSSL_VERSION_NUMBER >= 0x10101000L)
|
#ifdef HAVE_OPENSSL_KEYLOG
|
||||||
void SSL_CTX_keylog(const SSL *ssl, const char *line)
|
void SSL_CTX_keylog(const SSL *ssl, const char *line)
|
||||||
{
|
{
|
||||||
struct ssl_keylog *keylog;
|
struct ssl_keylog *keylog;
|
||||||
@ -4155,7 +4155,7 @@ int ssl_sock_prepare_ctx(struct bind_conf *bind_conf, struct ssl_bind_conf *ssl_
|
|||||||
#if HA_OPENSSL_VERSION_NUMBER >= 0x00907000L
|
#if HA_OPENSSL_VERSION_NUMBER >= 0x00907000L
|
||||||
SSL_CTX_set_msg_callback(ctx, ssl_sock_msgcbk);
|
SSL_CTX_set_msg_callback(ctx, ssl_sock_msgcbk);
|
||||||
#endif
|
#endif
|
||||||
#if (HA_OPENSSL_VERSION_NUMBER >= 0x10101000L)
|
#ifdef HAVE_OPENSSL_KEYLOG
|
||||||
SSL_CTX_set_keylog_callback(ctx, SSL_CTX_keylog);
|
SSL_CTX_set_keylog_callback(ctx, SSL_CTX_keylog);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
@ -6598,7 +6598,7 @@ static void ssl_sock_capture_free_func(void *parent, void *ptr, CRYPTO_EX_DATA *
|
|||||||
pool_free(pool_head_ssl_capture, ptr);
|
pool_free(pool_head_ssl_capture, ptr);
|
||||||
}
|
}
|
||||||
|
|
||||||
#if (HA_OPENSSL_VERSION_NUMBER >= 0x10101000L)
|
#ifdef HAVE_OPENSSL_KEYLOG
|
||||||
static void ssl_sock_keylog_free_func(void *parent, void *ptr, CRYPTO_EX_DATA *ad, int idx, long argl, void *argp)
|
static void ssl_sock_keylog_free_func(void *parent, void *ptr, CRYPTO_EX_DATA *ad, int idx, long argl, void *argp)
|
||||||
{
|
{
|
||||||
struct ssl_keylog *keylog;
|
struct ssl_keylog *keylog;
|
||||||
@ -6665,7 +6665,7 @@ static void __ssl_sock_init(void)
|
|||||||
|
|
||||||
ssl_app_data_index = SSL_get_ex_new_index(0, NULL, NULL, NULL, NULL);
|
ssl_app_data_index = SSL_get_ex_new_index(0, NULL, NULL, NULL, NULL);
|
||||||
ssl_capture_ptr_index = SSL_get_ex_new_index(0, NULL, NULL, NULL, ssl_sock_capture_free_func);
|
ssl_capture_ptr_index = SSL_get_ex_new_index(0, NULL, NULL, NULL, ssl_sock_capture_free_func);
|
||||||
#if (HA_OPENSSL_VERSION_NUMBER >= 0x10101000L)
|
#ifdef HAVE_OPENSSL_KEYLOG
|
||||||
ssl_keylog_index = SSL_get_ex_new_index(0, NULL, NULL, NULL, ssl_sock_keylog_free_func);
|
ssl_keylog_index = SSL_get_ex_new_index(0, NULL, NULL, NULL, ssl_sock_keylog_free_func);
|
||||||
#endif
|
#endif
|
||||||
#ifndef OPENSSL_NO_ENGINE
|
#ifndef OPENSSL_NO_ENGINE
|
||||||
|
Loading…
Reference in New Issue
Block a user