Reset the rwstate before calling ASYNC_start_job()
authorMatt Caswell <matt@openssl.org>
Thu, 11 Nov 2021 16:59:43 +0000 (16:59 +0000)
committerMatt Caswell <matt@openssl.org>
Mon, 15 Nov 2021 14:37:08 +0000 (14:37 +0000)
commit07f620e3acf0dd76a3a03ada9911c544aa483aa7
tree9ea25375deb6efd5a9a37ff5b50fb022fefec993
parent7a9b09feaa07f79522f7affccbca4236da2443e5
Reset the rwstate before calling ASYNC_start_job()

If an async job pauses while processing a TLS connection then the
rwstate gets set to SSL_ASYNC_PAUSED. When resuming the job we should
reset the rwstate back to SSL_NOTHING. In fact we can do this
unconditionally since if we're about to call ASYNC_start_job() then either
we are about to start the async job for the first time (in which case the
rwstate should already by SSL_NOTHING), or we are restarting it after a
pause (in which case reseting it to SSL_NOTHING is the correct action).

Fixes #16809

Reviewed-by: Paul Dale <pauli@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/17013)
ssl/ssl_lib.c