From: Watson Ladd Date: Thu, 27 Apr 2023 17:14:51 +0000 (-0700) Subject: Clear ownership when duplicating sessions X-Git-Tag: openssl-3.2.0-alpha1~889 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9fdf9a44bbe3827fe653165a07281ccae8ab0947;p=thirdparty%2Fopenssl.git Clear ownership when duplicating sessions Reviewed-by: Matt Caswell Reviewed-by: Todd Short Reviewed-by: Tomas Mraz (Merged from https://github.com/openssl/openssl/pull/20848) --- diff --git a/ssl/ssl_sess.c b/ssl/ssl_sess.c index 28d6cc1f154..6d5e87f6877 100644 --- a/ssl/ssl_sess.c +++ b/ssl/ssl_sess.c @@ -169,9 +169,10 @@ SSL_SESSION *ssl_session_dup(const SSL_SESSION *src, int ticket) dest->ticket_appdata = NULL; memset(&dest->ex_data, 0, sizeof(dest->ex_data)); - /* We deliberately don't copy the prev and next pointers */ + /* As the copy is not in the cache, we remove the associated pointers */ dest->prev = NULL; dest->next = NULL; + dest->owner = NULL; dest->references = 1; diff --git a/test/sslapitest.c b/test/sslapitest.c index eb5b5a5476c..be1d742021e 100644 --- a/test/sslapitest.c +++ b/test/sslapitest.c @@ -2285,7 +2285,9 @@ static int execute_test_session(int maxprot, int use_int_cache, */ if (use_int_cache && maxprot != TLS1_3_VERSION) { if (!TEST_ptr(tmp = SSL_SESSION_dup(sess2)) - || !TEST_true(SSL_CTX_remove_session(sctx, sess2))) + || !TEST_true(sess2->owner != NULL) + || !TEST_true(tmp->owner == NULL) + || !TEST_true(SSL_CTX_remove_session(sctx, sess2))) goto end; SSL_SESSION_free(sess2); }