Check for alerts while waiting for a dry event
authorMatt Caswell <matt@openssl.org>
Tue, 16 Jan 2018 10:48:01 +0000 (10:48 +0000)
committerMatt Caswell <matt@openssl.org>
Wed, 21 Mar 2018 10:27:29 +0000 (10:27 +0000)
commit2e92af5ea5987354fd7fe582a07440ff7aca01f4
treee1092f003f05bf416f17f3c82152eaaab6837048
parent696de86f8edefdf885a665ed9166ee2432f2ee30
Check for alerts while waiting for a dry event

At a couple of points in a DTLS/SCTP handshake we need to wait for a dry
event before continuing. However if an alert has been sent by the peer
then we will never receive that dry event and an infinite loop results.

This commit changes things so that we attempt to read a message if we
are waiting for a dry event but haven't got one yet. This should never
succeed, but any alerts will be processed.

Fixes #4763

Reviewed-by: Rich Salz <rsalz@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/5084)
ssl/statem/statem_dtls.c