Do not cache sessions with zero sid_ctx_length when SSL_VERIFY_PEER
authorBenjamin Kaduk <bkaduk@akamai.com>
Fri, 26 Jan 2018 17:16:21 +0000 (11:16 -0600)
committerBen Kaduk <kaduk@mit.edu>
Wed, 21 Mar 2018 00:30:48 +0000 (19:30 -0500)
commitd316cdcf6d8d6934663278145fe0a8191e14a8c5
treef88d8023bfd2f7669aeb5d587f64ff60cbc2618c
parent79b49fb00d61f8bc41fe20694da26a18ddfd3b02
Do not cache sessions with zero sid_ctx_length when SSL_VERIFY_PEER

The sid_ctx is something of a "certificate request context" or a
"session ID context" -- something from the application that gives
extra indication of what sort of thing this session is/was for/from.
Without a sid_ctx, we only know that there is a session that we
issued, but it could have come from a number of things, especially
with an external (shared) session cache.  Accordingly, when resuming,
we will hard-error the handshake when presented with a session with
zero-length sid_ctx and SSL_VERIFY_PEER is set -- we simply have no
information about the peer to verify, so the verification must fail.

In order to prevent these future handshake failures, proactively
decline to add the problematic sessions to the session cache.

Reviewed-by: Matt Caswell <matt@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/5175)
ssl/ssl_lib.c