diff options
Diffstat (limited to 'ssl/ssl_sess.c')
-rw-r--r-- | ssl/ssl_sess.c | 347 |
1 files changed, 190 insertions, 157 deletions
diff --git a/ssl/ssl_sess.c b/ssl/ssl_sess.c index ec937a321c30..8e9aa64de5a7 100644 --- a/ssl/ssl_sess.c +++ b/ssl/ssl_sess.c @@ -1,5 +1,5 @@ /* - * Copyright 1995-2024 The OpenSSL Project Authors. All Rights Reserved. + * Copyright 1995-2025 The OpenSSL Project Authors. All Rights Reserved. * Copyright 2005 Nokia. All rights reserved. * * Licensed under the Apache License 2.0 (the "License"). You may not use @@ -17,6 +17,7 @@ #include <openssl/engine.h> #include "internal/refcount.h" #include "internal/cryptlib.h" +#include "internal/ssl_unwrap.h" #include "ssl_local.h" #include "statem/statem_local.h" @@ -26,69 +27,27 @@ static int remove_session_lock(SSL_CTX *ctx, SSL_SESSION *c, int lck); DEFINE_STACK_OF(SSL_SESSION) -__owur static int sess_timedout(time_t t, SSL_SESSION *ss) +__owur static ossl_inline int sess_timedout(OSSL_TIME t, SSL_SESSION *ss) { - /* if timeout overflowed, it can never timeout! */ - if (ss->timeout_ovf) - return 0; - return t > ss->calc_timeout; + return ossl_time_compare(t, ss->calc_timeout) > 0; } /* * Returns -1/0/+1 as other XXXcmp-type functions - * Takes overflow of calculated timeout into consideration + * Takes calculated timeout into consideration */ -__owur static int timeoutcmp(SSL_SESSION *a, SSL_SESSION *b) +__owur static ossl_inline int timeoutcmp(SSL_SESSION *a, SSL_SESSION *b) { - /* if only one overflowed, then it is greater */ - if (a->timeout_ovf && !b->timeout_ovf) - return 1; - if (!a->timeout_ovf && b->timeout_ovf) - return -1; - /* No overflow, or both overflowed, so straight compare is safe */ - if (a->calc_timeout < b->calc_timeout) - return -1; - if (a->calc_timeout > b->calc_timeout) - return 1; - return 0; + return ossl_time_compare(a->calc_timeout, b->calc_timeout); } -#ifdef __DJGPP__ /* time_t is unsigned on djgpp, it's signed anywhere else */ -# define TMAX(_type_) ((time_t)-1) -#else -# define TMAX(_type_) ((time_t)(((_type_)-1) >> 1)) -#endif - -#define CALCULATE_TIMEOUT(_ss_, _type_) do { \ - _type_ overflow; \ - time_t tmax = TMAX(_type_); \ - overflow = (_type_)tmax - (_type_)(_ss_)->time; \ - if ((_ss_)->timeout > (time_t)overflow) { \ - (_ss_)->timeout_ovf = 1; \ - (_ss_)->calc_timeout = (_ss_)->timeout - (time_t)overflow; \ - } else { \ - (_ss_)->timeout_ovf = 0; \ - (_ss_)->calc_timeout = (_ss_)->time + (_ss_)->timeout; \ - } \ - } while (0) /* - * Calculates effective timeout, saving overflow state + * Calculates effective timeout * Locking must be done by the caller of this function */ void ssl_session_calculate_timeout(SSL_SESSION *ss) { - - if (sizeof(time_t) == 8) - CALCULATE_TIMEOUT(ss, uint64_t); - else - CALCULATE_TIMEOUT(ss, uint32_t); - - /* - * N.B. Realistic overflow can only occur in our lifetimes on a - * 32-bit machine in January 2038. - * However, There are no controls to limit the |timeout| - * value, except to keep it positive. - */ + ss->calc_timeout = ossl_time_add(ss->time, ss->timeout); } /* @@ -103,13 +62,19 @@ void ssl_session_calculate_timeout(SSL_SESSION *ss) SSL_SESSION *SSL_get_session(const SSL *ssl) /* aka SSL_get0_session; gets 0 objects, just returns a copy of the pointer */ { - return ssl->session; + const SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(ssl); + + if (sc == NULL) + return NULL; + + return sc->session; } SSL_SESSION *SSL_get1_session(SSL *ssl) /* variant of SSL_get_session: caller really gets something */ { SSL_SESSION *sess; + /* * Need to lock this all up rather than just use CRYPTO_add so that * somebody doesn't free ssl->session between when we check it's non-null @@ -117,9 +82,9 @@ SSL_SESSION *SSL_get1_session(SSL *ssl) */ if (!CRYPTO_THREAD_read_lock(ssl->lock)) return NULL; - sess = ssl->session; - if (sess) - SSL_SESSION_up_ref(sess); + sess = SSL_get_session(ssl); + if (sess != NULL && !SSL_SESSION_up_ref(sess)) + sess = NULL; CRYPTO_THREAD_unlock(ssl->lock); return sess; } @@ -142,26 +107,22 @@ SSL_SESSION *SSL_SESSION_new(void) return NULL; ss = OPENSSL_zalloc(sizeof(*ss)); - if (ss == NULL) { - ERR_raise(ERR_LIB_SSL, ERR_R_MALLOC_FAILURE); + if (ss == NULL) return NULL; - } ss->ext.max_fragment_len_mode = TLSEXT_max_fragment_length_UNSPECIFIED; ss->verify_result = 1; /* avoid 0 (= X509_V_OK) just in case */ - ss->references = 1; - ss->timeout = 60 * 5 + 4; /* 5 minute timeout by default */ - ss->time = time(NULL); + /* 5 minute timeout by default */ + ss->timeout = ossl_seconds2time(60 * 5 + 4); + ss->time = ossl_time_now(); ssl_session_calculate_timeout(ss); - ss->lock = CRYPTO_THREAD_lock_new(); - if (ss->lock == NULL) { - ERR_raise(ERR_LIB_SSL, ERR_R_MALLOC_FAILURE); + if (!CRYPTO_NEW_REF(&ss->references, 1)) { OPENSSL_free(ss); return NULL; } if (!CRYPTO_new_ex_data(CRYPTO_EX_INDEX_SSL_SESSION, ss, &ss->ex_data)) { - CRYPTO_THREAD_lock_free(ss->lock); + CRYPTO_FREE_REF(&ss->references); OPENSSL_free(ss); return NULL; } @@ -177,10 +138,14 @@ static SSL_SESSION *ssl_session_dup_intern(const SSL_SESSION *src, int ticket) SSL_SESSION *dest; dest = OPENSSL_malloc(sizeof(*dest)); - if (dest == NULL) { - goto err; - } - memcpy(dest, src, sizeof(*dest)); + if (dest == NULL) + return NULL; + + /* + * src is logically read-only but the prev/next pointers are not, they are + * part of the session cache and can be modified concurrently. + */ + memcpy(dest, src, offsetof(SSL_SESSION, prev)); /* * Set the various pointers to NULL so that we can call SSL_SESSION_free in @@ -198,6 +163,7 @@ static SSL_SESSION *ssl_session_dup_intern(const SSL_SESSION *src, int ticket) #endif dest->peer_chain = NULL; dest->peer = NULL; + dest->peer_rpk = NULL; dest->ticket_appdata = NULL; memset(&dest->ex_data, 0, sizeof(dest->ex_data)); @@ -206,54 +172,61 @@ static SSL_SESSION *ssl_session_dup_intern(const SSL_SESSION *src, int ticket) dest->next = NULL; dest->owner = NULL; - dest->references = 1; - - dest->lock = CRYPTO_THREAD_lock_new(); - if (dest->lock == NULL) { + if (!CRYPTO_NEW_REF(&dest->references, 1)) { OPENSSL_free(dest); - dest = NULL; - goto err; + return NULL; } - if (!CRYPTO_new_ex_data(CRYPTO_EX_INDEX_SSL_SESSION, dest, &dest->ex_data)) + if (!CRYPTO_new_ex_data(CRYPTO_EX_INDEX_SSL_SESSION, dest, &dest->ex_data)) { + ERR_raise(ERR_LIB_SSL, ERR_R_CRYPTO_LIB); goto err; + } if (src->peer != NULL) { - if (!X509_up_ref(src->peer)) + if (!X509_up_ref(src->peer)) { + ERR_raise(ERR_LIB_SSL, ERR_R_X509_LIB); goto err; + } dest->peer = src->peer; } if (src->peer_chain != NULL) { dest->peer_chain = X509_chain_up_ref(src->peer_chain); - if (dest->peer_chain == NULL) + if (dest->peer_chain == NULL) { + ERR_raise(ERR_LIB_SSL, ERR_R_X509_LIB); goto err; + } } + + if (src->peer_rpk != NULL) { + if (!EVP_PKEY_up_ref(src->peer_rpk)) + goto err; + dest->peer_rpk = src->peer_rpk; + } + #ifndef OPENSSL_NO_PSK if (src->psk_identity_hint) { dest->psk_identity_hint = OPENSSL_strdup(src->psk_identity_hint); - if (dest->psk_identity_hint == NULL) { + if (dest->psk_identity_hint == NULL) goto err; - } } if (src->psk_identity) { dest->psk_identity = OPENSSL_strdup(src->psk_identity); - if (dest->psk_identity == NULL) { + if (dest->psk_identity == NULL) goto err; - } } #endif if (!CRYPTO_dup_ex_data(CRYPTO_EX_INDEX_SSL_SESSION, &dest->ex_data, &src->ex_data)) { + ERR_raise(ERR_LIB_SSL, ERR_R_CRYPTO_LIB); goto err; } if (src->ext.hostname) { dest->ext.hostname = OPENSSL_strdup(src->ext.hostname); - if (dest->ext.hostname == NULL) { + if (dest->ext.hostname == NULL) goto err; - } } if (ticket != 0 && src->ext.tick != NULL) { @@ -276,9 +249,8 @@ static SSL_SESSION *ssl_session_dup_intern(const SSL_SESSION *src, int ticket) #ifndef OPENSSL_NO_SRP if (src->srp_username) { dest->srp_username = OPENSSL_strdup(src->srp_username); - if (dest->srp_username == NULL) { + if (dest->srp_username == NULL) goto err; - } } #endif @@ -291,7 +263,6 @@ static SSL_SESSION *ssl_session_dup_intern(const SSL_SESSION *src, int ticket) return dest; err: - ERR_raise(ERR_LIB_SSL, ERR_R_MALLOC_FAILURE); SSL_SESSION_free(dest); return NULL; } @@ -323,6 +294,7 @@ const unsigned char *SSL_SESSION_get_id(const SSL_SESSION *s, unsigned int *len) *len = (unsigned int)s->session_id_length; return s->session_id; } + const unsigned char *SSL_SESSION_get0_id_context(const SSL_SESSION *s, unsigned int *len) { @@ -352,10 +324,15 @@ static int def_generate_session_id(SSL *ssl, unsigned char *id, unsigned int *id_len) { unsigned int retry = 0; - do + do { if (RAND_bytes_ex(ssl->ctx->libctx, id, *id_len, 0) <= 0) return 0; - while (SSL_has_matching_session_id(ssl, id, *id_len) && +#ifdef FUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION + if (retry > 0) { + id[0]++; + } +#endif + } while (SSL_has_matching_session_id(ssl, id, *id_len) && (++retry < MAX_SESS_ID_ATTEMPTS)) ; if (retry < MAX_SESS_ID_ATTEMPTS) return 1; @@ -371,10 +348,11 @@ static int def_generate_session_id(SSL *ssl, unsigned char *id, return 0; } -int ssl_generate_session_id(SSL *s, SSL_SESSION *ss) +int ssl_generate_session_id(SSL_CONNECTION *s, SSL_SESSION *ss) { unsigned int tmp; GEN_SESSION_CB cb = def_generate_session_id; + SSL *ssl = SSL_CONNECTION_GET_SSL(s); switch (s->version) { case SSL3_VERSION: @@ -413,10 +391,10 @@ int ssl_generate_session_id(SSL *s, SSL_SESSION *ss) } /* Choose which callback will set the session ID */ - if (!CRYPTO_THREAD_read_lock(s->lock)) + if (!CRYPTO_THREAD_read_lock(SSL_CONNECTION_GET_SSL(s)->lock)) return 0; if (!CRYPTO_THREAD_read_lock(s->session_ctx->lock)) { - CRYPTO_THREAD_unlock(s->lock); + CRYPTO_THREAD_unlock(ssl->lock); SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_R_SESSION_ID_CONTEXT_UNINITIALIZED); return 0; @@ -426,11 +404,11 @@ int ssl_generate_session_id(SSL *s, SSL_SESSION *ss) else if (s->session_ctx->generate_session_id) cb = s->session_ctx->generate_session_id; CRYPTO_THREAD_unlock(s->session_ctx->lock); - CRYPTO_THREAD_unlock(s->lock); + CRYPTO_THREAD_unlock(ssl->lock); /* Choose a session ID */ memset(ss->session_id, 0, ss->session_id_length); tmp = (int)ss->session_id_length; - if (!cb(s, ss->session_id, &tmp)) { + if (!cb(ssl, ss->session_id, &tmp)) { /* The callback failed */ SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_R_SSL_SESSION_ID_CALLBACK_FAILED); @@ -448,7 +426,7 @@ int ssl_generate_session_id(SSL *s, SSL_SESSION *ss) } ss->session_id_length = tmp; /* Finally, check for a conflict */ - if (SSL_has_matching_session_id(s, ss->session_id, + if (SSL_has_matching_session_id(ssl, ss->session_id, (unsigned int)ss->session_id_length)) { SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_R_SSL_SESSION_ID_CONFLICT); return 0; @@ -457,20 +435,20 @@ int ssl_generate_session_id(SSL *s, SSL_SESSION *ss) return 1; } -int ssl_get_new_session(SSL *s, int session) +int ssl_get_new_session(SSL_CONNECTION *s, int session) { /* This gets used by clients and servers. */ SSL_SESSION *ss = NULL; if ((ss = SSL_SESSION_new()) == NULL) { - SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_MALLOC_FAILURE); + SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_SSL_LIB); return 0; } /* If the context has a default timeout, use it */ - if (s->session_ctx->session_timeout == 0) - ss->timeout = SSL_get_default_timeout(s); + if (ossl_time_is_zero(s->session_ctx->session_timeout)) + ss->timeout = SSL_CONNECTION_GET_SSL(s)->method->get_timeout(); else ss->timeout = s->session_ctx->session_timeout; ssl_session_calculate_timeout(ss); @@ -479,7 +457,7 @@ int ssl_get_new_session(SSL *s, int session) s->session = NULL; if (session) { - if (SSL_IS_TLS13(s)) { + if (SSL_CONNECTION_IS_TLS13(s)) { /* * We generate the session id while constructing the * NewSessionTicket in TLSv1.3. @@ -513,7 +491,8 @@ int ssl_get_new_session(SSL *s, int session) return 1; } -SSL_SESSION *lookup_sess_in_cache(SSL *s, const unsigned char *sess_id, +SSL_SESSION *lookup_sess_in_cache(SSL_CONNECTION *s, + const unsigned char *sess_id, size_t sess_id_len) { SSL_SESSION *ret = NULL; @@ -534,7 +513,10 @@ SSL_SESSION *lookup_sess_in_cache(SSL *s, const unsigned char *sess_id, ret = lh_SSL_SESSION_retrieve(s->session_ctx->sessions, &data); if (ret != NULL) { /* don't allow other threads to steal it: */ - SSL_SESSION_up_ref(ret); + if (!SSL_SESSION_up_ref(ret)) { + CRYPTO_THREAD_unlock(s->session_ctx->lock); + return NULL; + } } CRYPTO_THREAD_unlock(s->session_ctx->lock); if (ret == NULL) @@ -544,7 +526,8 @@ SSL_SESSION *lookup_sess_in_cache(SSL *s, const unsigned char *sess_id, if (ret == NULL && s->session_ctx->get_session_cb != NULL) { int copy = 1; - ret = s->session_ctx->get_session_cb(s, sess_id, sess_id_len, ©); + ret = s->session_ctx->get_session_cb(SSL_CONNECTION_GET_USER_SSL(s), + sess_id, sess_id_len, ©); if (ret != NULL) { if (ret->not_resumable) { @@ -563,8 +546,8 @@ SSL_SESSION *lookup_sess_in_cache(SSL *s, const unsigned char *sess_id, * reference count itself [i.e. copy == 0], or things won't be * thread-safe). */ - if (copy) - SSL_SESSION_up_ref(ret); + if (copy && !SSL_SESSION_up_ref(ret)) + return NULL; /* * Add the externally cached session to the internal cache as @@ -602,7 +585,7 @@ SSL_SESSION *lookup_sess_in_cache(SSL *s, const unsigned char *sess_id, * - Both for new and resumed sessions, s->ext.ticket_expected is set to 1 * if the server should issue a new session ticket (to 0 otherwise). */ -int ssl_get_prev_session(SSL *s, CLIENTHELLO_MSG *hello) +int ssl_get_prev_session(SSL_CONNECTION *s, CLIENTHELLO_MSG *hello) { /* This is used only by servers. */ @@ -611,7 +594,7 @@ int ssl_get_prev_session(SSL *s, CLIENTHELLO_MSG *hello) int try_session_cache = 0; SSL_TICKET_STATUS r; - if (SSL_IS_TLS13(s)) { + if (SSL_CONNECTION_IS_TLS13(s)) { /* * By default we will send a new ticket. This can be overridden in the * ticket processing. @@ -684,7 +667,7 @@ int ssl_get_prev_session(SSL *s, CLIENTHELLO_MSG *hello) goto err; } - if (sess_timedout(time(NULL), ret)) { + if (sess_timedout(ossl_time_now(), ret)) { ssl_tsan_counter(s->session_ctx, &s->session_ctx->stats.sess_timeout); if (try_session_cache) { /* session was from the cache, so remove it */ @@ -706,7 +689,7 @@ int ssl_get_prev_session(SSL *s, CLIENTHELLO_MSG *hello) goto err; } - if (!SSL_IS_TLS13(s)) { + if (!SSL_CONNECTION_IS_TLS13(s)) { /* We already did this for TLS1.3 */ SSL_SESSION_free(s->session); s->session = ret; @@ -720,7 +703,7 @@ int ssl_get_prev_session(SSL *s, CLIENTHELLO_MSG *hello) if (ret != NULL) { SSL_SESSION_free(ret); /* In TLSv1.3 s->session was already set to ret, so we NULL it out */ - if (SSL_IS_TLS13(s)) + if (SSL_CONNECTION_IS_TLS13(s)) s->session = NULL; if (!try_session_cache) { @@ -747,7 +730,8 @@ int SSL_CTX_add_session(SSL_CTX *ctx, SSL_SESSION *c) * it has two ways of access: each session is in a doubly linked list and * an lhash */ - SSL_SESSION_up_ref(c); + if (!SSL_SESSION_up_ref(c)) + return 0; /* * if session c is in already in cache, we take back the increment later */ @@ -787,7 +771,7 @@ int SSL_CTX_add_session(SSL_CTX *ctx, SSL_SESSION *c) /* Adjust last used time, and add back into the cache at the appropriate spot */ if (ctx->session_cache_mode & SSL_SESS_CACHE_UPDATE_TIME) { - c->time = time(NULL); + c->time = ossl_time_now(); ssl_session_calculate_timeout(c); } @@ -864,8 +848,8 @@ void SSL_SESSION_free(SSL_SESSION *ss) if (ss == NULL) return; - CRYPTO_DOWN_REF(&ss->references, &i, ss->lock); - REF_PRINT_COUNT("SSL_SESSION", ss); + CRYPTO_DOWN_REF(&ss->references, &i); + REF_PRINT_COUNT("SSL_SESSION", i, ss); if (i > 0) return; REF_ASSERT_ISNT(i < 0); @@ -875,7 +859,8 @@ void SSL_SESSION_free(SSL_SESSION *ss) OPENSSL_cleanse(ss->master_key, sizeof(ss->master_key)); OPENSSL_cleanse(ss->session_id, sizeof(ss->session_id)); X509_free(ss->peer); - sk_X509_pop_free(ss->peer_chain, X509_free); + EVP_PKEY_free(ss->peer_rpk); + OSSL_STACK_OF_X509_free(ss->peer_chain); OPENSSL_free(ss->ext.hostname); OPENSSL_free(ss->ext.tick); #ifndef OPENSSL_NO_PSK @@ -887,7 +872,7 @@ void SSL_SESSION_free(SSL_SESSION *ss) #endif OPENSSL_free(ss->ext.alpn_selected); OPENSSL_free(ss->ticket_appdata); - CRYPTO_THREAD_lock_free(ss->lock); + CRYPTO_FREE_REF(&ss->references); OPENSSL_clear_free(ss, sizeof(*ss)); } @@ -895,28 +880,37 @@ int SSL_SESSION_up_ref(SSL_SESSION *ss) { int i; - if (CRYPTO_UP_REF(&ss->references, &i, ss->lock) <= 0) + if (CRYPTO_UP_REF(&ss->references, &i) <= 0) return 0; - REF_PRINT_COUNT("SSL_SESSION", ss); + REF_PRINT_COUNT("SSL_SESSION", i, ss); REF_ASSERT_ISNT(i < 2); return ((i > 1) ? 1 : 0); } int SSL_set_session(SSL *s, SSL_SESSION *session) { - ssl_clear_bad_session(s); - if (s->ctx->method != s->method) { - if (!SSL_set_ssl_method(s, s->ctx->method)) + SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(s); + + if (sc == NULL) + return 0; + + if (session != NULL && !SSL_SESSION_up_ref(session)) + return 0; + + ssl_clear_bad_session(sc); + if (s->defltmeth != s->method) { + if (!SSL_set_ssl_method(s, s->defltmeth)) { + SSL_SESSION_free(session); return 0; + } } - if (session != NULL) { - SSL_SESSION_up_ref(session); - s->verify_result = session->verify_result; - } - SSL_SESSION_free(s->session); - s->session = session; + if (session != NULL) + sc->verify_result = session->verify_result; + + SSL_SESSION_free(sc->session); + sc->session = session; return 1; } @@ -929,14 +923,15 @@ int SSL_SESSION_set1_id(SSL_SESSION *s, const unsigned char *sid, return 0; } s->session_id_length = sid_len; - if (sid != s->session_id) + if (sid != s->session_id && sid_len > 0) memcpy(s->session_id, sid, sid_len); + return 1; } long SSL_SESSION_set_timeout(SSL_SESSION *s, long t) { - time_t new_timeout = (time_t)t; + OSSL_TIME new_timeout = ossl_seconds2time(t); if (s == NULL || t < 0) return 0; @@ -958,19 +953,26 @@ long SSL_SESSION_get_timeout(const SSL_SESSION *s) { if (s == NULL) return 0; - return (long)s->timeout; + return (long)ossl_time_to_time_t(s->timeout); } +#ifndef OPENSSL_NO_DEPRECATED_3_4 long SSL_SESSION_get_time(const SSL_SESSION *s) { + return (long) SSL_SESSION_get_time_ex(s); +} +#endif + +time_t SSL_SESSION_get_time_ex(const SSL_SESSION *s) +{ if (s == NULL) return 0; - return (long)s->time; + return ossl_time_to_time_t(s->time); } -long SSL_SESSION_set_time(SSL_SESSION *s, long t) +time_t SSL_SESSION_set_time_ex(SSL_SESSION *s, time_t t) { - time_t new_time = (time_t)t; + OSSL_TIME new_time = ossl_time_from_time_t(t); if (s == NULL) return 0; @@ -988,6 +990,13 @@ long SSL_SESSION_set_time(SSL_SESSION *s, long t) return t; } +#ifndef OPENSSL_NO_DEPRECATED_3_4 +long SSL_SESSION_set_time(SSL_SESSION *s, long t) +{ + return (long) SSL_SESSION_set_time_ex(s, (time_t) t); +} +#endif + int SSL_SESSION_get_protocol_version(const SSL_SESSION *s) { return s->ssl_version; @@ -1089,6 +1098,11 @@ X509 *SSL_SESSION_get0_peer(SSL_SESSION *s) return s->peer; } +EVP_PKEY *SSL_SESSION_get0_peer_rpk(SSL_SESSION *s) +{ + return s->peer_rpk; +} + int SSL_SESSION_set1_id_context(SSL_SESSION *s, const unsigned char *sid_ctx, unsigned int sid_ctx_len) { @@ -1116,10 +1130,11 @@ int SSL_SESSION_is_resumable(const SSL_SESSION *s) long SSL_CTX_set_timeout(SSL_CTX *s, long t) { long l; + if (s == NULL) return 0; - l = s->session_timeout; - s->session_timeout = t; + l = (long)ossl_time2seconds(s->session_timeout); + s->session_timeout = ossl_seconds2time(t); return l; } @@ -1127,49 +1142,58 @@ long SSL_CTX_get_timeout(const SSL_CTX *s) { if (s == NULL) return 0; - return s->session_timeout; + return (long)ossl_time2seconds(s->session_timeout); } int SSL_set_session_secret_cb(SSL *s, tls_session_secret_cb_fn tls_session_secret_cb, void *arg) { - if (s == NULL) + SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(s); + + if (sc == NULL) return 0; - s->ext.session_secret_cb = tls_session_secret_cb; - s->ext.session_secret_cb_arg = arg; + + sc->ext.session_secret_cb = tls_session_secret_cb; + sc->ext.session_secret_cb_arg = arg; return 1; } int SSL_set_session_ticket_ext_cb(SSL *s, tls_session_ticket_ext_cb_fn cb, void *arg) { - if (s == NULL) + SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(s); + + if (sc == NULL) return 0; - s->ext.session_ticket_cb = cb; - s->ext.session_ticket_cb_arg = arg; + + sc->ext.session_ticket_cb = cb; + sc->ext.session_ticket_cb_arg = arg; return 1; } int SSL_set_session_ticket_ext(SSL *s, void *ext_data, int ext_len) { - if (s->version >= TLS1_VERSION) { - OPENSSL_free(s->ext.session_ticket); - s->ext.session_ticket = NULL; - s->ext.session_ticket = + SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(s); + + if (sc == NULL) + return 0; + + if (sc->version >= TLS1_VERSION) { + OPENSSL_free(sc->ext.session_ticket); + sc->ext.session_ticket = NULL; + sc->ext.session_ticket = OPENSSL_malloc(sizeof(TLS_SESSION_TICKET_EXT) + ext_len); - if (s->ext.session_ticket == NULL) { - ERR_raise(ERR_LIB_SSL, ERR_R_MALLOC_FAILURE); + if (sc->ext.session_ticket == NULL) return 0; - } if (ext_data != NULL) { - s->ext.session_ticket->length = ext_len; - s->ext.session_ticket->data = s->ext.session_ticket + 1; - memcpy(s->ext.session_ticket->data, ext_data, ext_len); + sc->ext.session_ticket->length = ext_len; + sc->ext.session_ticket->data = sc->ext.session_ticket + 1; + memcpy(sc->ext.session_ticket->data, ext_data, ext_len); } else { - s->ext.session_ticket->length = 0; - s->ext.session_ticket->data = NULL; + sc->ext.session_ticket->length = 0; + sc->ext.session_ticket->data = NULL; } return 1; @@ -1178,11 +1202,19 @@ int SSL_set_session_ticket_ext(SSL *s, void *ext_data, int ext_len) return 0; } +#ifndef OPENSSL_NO_DEPRECATED_3_4 void SSL_CTX_flush_sessions(SSL_CTX *s, long t) { + SSL_CTX_flush_sessions_ex(s, (time_t) t); +} +#endif + +void SSL_CTX_flush_sessions_ex(SSL_CTX *s, time_t t) +{ STACK_OF(SSL_SESSION) *sk; SSL_SESSION *current; unsigned long i; + const OSSL_TIME timeout = ossl_time_from_time_t(t); if (!CRYPTO_THREAD_write_lock(s->lock)) return; @@ -1200,7 +1232,7 @@ void SSL_CTX_flush_sessions(SSL_CTX *s, long t) */ while (s->session_cache_tail != NULL) { current = s->session_cache_tail; - if (t == 0 || sess_timedout((time_t)t, current)) { + if (t == 0 || sess_timedout(timeout, current)) { lh_SSL_SESSION_delete(s->sessions, current); SSL_SESSION_list_remove(s, current); current->not_resumable = 1; @@ -1226,11 +1258,12 @@ void SSL_CTX_flush_sessions(SSL_CTX *s, long t) sk_SSL_SESSION_pop_free(sk, SSL_SESSION_free); } -int ssl_clear_bad_session(SSL *s) +int ssl_clear_bad_session(SSL_CONNECTION *s) { if ((s->session != NULL) && !(s->shutdown & SSL_SENT_SHUTDOWN) && - !(SSL_in_init(s) || SSL_in_before(s))) { + !(SSL_in_init(SSL_CONNECTION_GET_SSL(s)) + || SSL_in_before(SSL_CONNECTION_GET_SSL(s)))) { SSL_CTX_remove_session(s->session_ctx, s->session); return 1; } else @@ -1339,7 +1372,7 @@ void (*SSL_CTX_sess_get_remove_cb(SSL_CTX *ctx)) (SSL_CTX *ctx, } void SSL_CTX_sess_set_get_cb(SSL_CTX *ctx, - SSL_SESSION *(*cb) (struct ssl_st *ssl, + SSL_SESSION *(*cb) (SSL *ssl, const unsigned char *data, int len, int *copy)) { |