Skip to content

Commit bd5d27c

Browse files
davidbenRich Salz
authored and
Rich Salz
committed
Don't read uninitialised data for short session IDs.
While it's always safe to read |SSL_MAX_SSL_SESSION_ID_LENGTH| bytes from an |SSL_SESSION|'s |session_id| array, the hash function would do so with without considering if all those bytes had been written to. This change checks |session_id_length| before possibly reading uninitialised memory. Since the result of the hash function was already attacker controlled, and since a lookup of a short session ID will always fail, it doesn't appear that this is anything more than a clean up. In particular, |ssl_get_prev_session| uses a stack-allocated placeholder |SSL_SESSION| as a lookup key, so the |session_id| array may be uninitialised. This was originally found with libFuzzer and MSan in https://boringssl.googlesource.com/boringssl/+/e976e4349d693b4bbb97e1694f45be5a1b22c8c7, then by Robert Swiecki with honggfuzz and MSan here. Thanks to both. Reviewed-by: Geoff Thorpe <[email protected]> Reviewed-by: Rich Salz <[email protected]> (Merged from #2583)
1 parent 76e624a commit bd5d27c

File tree

1 file changed

+12
-4
lines changed

1 file changed

+12
-4
lines changed

ssl/ssl_lib.c

+12-4
Original file line numberDiff line numberDiff line change
@@ -2391,13 +2391,21 @@ int SSL_export_keying_material(SSL *s, unsigned char *out, size_t olen,
23912391

23922392
static unsigned long ssl_session_hash(const SSL_SESSION *a)
23932393
{
2394+
const unsigned char *session_id = a->session_id;
23942395
unsigned long l;
2396+
unsigned char tmp_storage[4];
2397+
2398+
if (a->session_id_length < sizeof(tmp_storage)) {
2399+
memset(tmp_storage, 0, sizeof(tmp_storage));
2400+
memcpy(tmp_storage, a->session_id, a->session_id_length);
2401+
session_id = tmp_storage;
2402+
}
23952403

23962404
l = (unsigned long)
2397-
((unsigned int)a->session_id[0]) |
2398-
((unsigned int)a->session_id[1] << 8L) |
2399-
((unsigned long)a->session_id[2] << 16L) |
2400-
((unsigned long)a->session_id[3] << 24L);
2405+
((unsigned long)session_id[0]) |
2406+
((unsigned long)session_id[1] << 8L) |
2407+
((unsigned long)session_id[2] << 16L) |
2408+
((unsigned long)session_id[3] << 24L);
24012409
return (l);
24022410
}
24032411

0 commit comments

Comments
 (0)