aboutsummaryrefslogtreecommitdiff
path: root/ssl/handshake_server.cc
diff options
context:
space:
mode:
authorDavid Benjamin <davidben@google.com>2021-06-16 11:33:37 -0400
committerBoringssl LUCI CQ <boringssl-scoped@luci-project-accounts.iam.gserviceaccount.com>2021-06-23 20:04:59 +0000
commit10a76acb0f2564a525887f88c4e3aea10f3fc1f2 (patch)
tree8a064e84cf9ed60775157245d8a30907a1211b36 /ssl/handshake_server.cc
parentafa867be8f6dce3e416b8e5f54013cbf970b5609 (diff)
downloadboringssl-10a76acb0f2564a525887f88c4e3aea10f3fc1f2.zip
boringssl-10a76acb0f2564a525887f88c4e3aea10f3fc1f2.tar.gz
boringssl-10a76acb0f2564a525887f88c4e3aea10f3fc1f2.tar.bz2
Only clear not_resumable after the handshake.
In renegotiation handshakes and, later, ECH ClientHelloOuter handshakes, we don't want to add sessions to the session cache. We also don't want to release a session as resumable until the handshake completes. Ideally we'd only construct SSL_SESSION at the end of the handshake, but existing APIs like SSL_get_session must work mid-handshake, so SSL_SESSION is both a handle to immutable resumption state, and a container for in-progress connection properties. We manage this with a not_resumable flag that's only cleared after the handshake is done and the SSL_SESSION finalized. However, TLS 1.2 ticket renewal currently clears the flag too early and breaks the invariant. This won't actually affect renegotiation or ClientHelloOuter because those handshakes never resume. Still, we can maintain the invariant storing the copy in hs->new_session. Note this does sacrifice a different invariant: previously, ssl->session and hs->new_session were never set at the same time. This change also means ssl_update_cache does not need to special-case ticket renewal. Change-Id: I03230cd9c63e5bee6bd60cd05c0439e16533c6d4 Reviewed-on: https://boringssl-review.googlesource.com/c/boringssl/+/48132 Commit-Queue: David Benjamin <davidben@google.com> Reviewed-by: Adam Langley <agl@google.com>
Diffstat (limited to 'ssl/handshake_server.cc')
-rw-r--r--ssl/handshake_server.cc4
1 files changed, 3 insertions, 1 deletions
diff --git a/ssl/handshake_server.cc b/ssl/handshake_server.cc
index f6feb87..ec5c8b9 100644
--- a/ssl/handshake_server.cc
+++ b/ssl/handshake_server.cc
@@ -1791,9 +1791,11 @@ static enum ssl_hs_wait_t do_finish_server_handshake(SSL_HANDSHAKE *hs) {
ssl->ctx->x509_method->session_clear(hs->new_session.get());
}
- if (ssl->session != NULL) {
+ if (hs->new_session == nullptr) {
+ assert(ssl->session != nullptr);
ssl->s3->established_session = UpRef(ssl->session);
} else {
+ assert(ssl->session == nullptr);
ssl->s3->established_session = std::move(hs->new_session);
ssl->s3->established_session->not_resumable = false;
}