Detect EOF while reading in libssl
authorMatt Caswell <matt@openssl.org>
Fri, 17 Jan 2020 17:39:19 +0000 (17:39 +0000)
committerMatt Caswell <matt@openssl.org>
Thu, 20 Feb 2020 17:02:30 +0000 (17:02 +0000)
commitdb943f43a60d1b5b1277e4b5317e8f288e7a0a3a
tree3c1d49da92ec78d523eb16b39ec1f51cd79e4905
parentb22a4996f38883e8376470597fef15a24cd8f535
Detect EOF while reading in libssl

If we hit an EOF while reading in libssl then we will report an error
back to the application (SSL_ERROR_SYSCALL) but errno will be 0. We add
an error to the stack (which means we instead return SSL_ERROR_SSL) and
therefore give a hint as to what went wrong.

Contains a partial fix for #10880

Reviewed-by: Tomas Mraz <tmraz@fedoraproject.org>
Reviewed-by: Dmitry Belyavskiy <beldmit@gmail.com>
(Merged from https://github.com/openssl/openssl/pull/10882)
crypto/bio/bss_sock.c
crypto/err/openssl.txt
include/openssl/bio.h
include/openssl/sslerr.h
ssl/record/rec_layer_s3.c
ssl/ssl_err.c