nginx/src
Sergey Kandaurov 5155845ce4 SSL: use of the SSL_OP_IGNORE_UNEXPECTED_EOF option.
A new behaviour was introduced in OpenSSL 1.1.1e, when a peer does not send
close_notify before closing the connection.  Previously, it was to return
SSL_ERROR_SYSCALL with errno 0, known since at least OpenSSL 0.9.7, and is
handled gracefully in nginx.  Now it returns SSL_ERROR_SSL with a distinct
reason SSL_R_UNEXPECTED_EOF_WHILE_READING ("unexpected eof while reading").
This leads to critical errors seen in nginx within various routines such as
SSL_do_handshake(), SSL_read(), SSL_shutdown().  The behaviour was restored
in OpenSSL 1.1.1f, but presents in OpenSSL 3.0 by default.

Use of the SSL_OP_IGNORE_UNEXPECTED_EOF option added in OpenSSL 3.0 allows
to set a compatible behaviour to return SSL_ERROR_ZERO_RETURN:
https://git.openssl.org/?p=openssl.git;a=commitdiff;h=09b90e0

See for additional details: https://github.com/openssl/openssl/issues/11381
2021-08-10 23:43:17 +03:00
..
core Version bump. 2021-08-03 20:50:08 +03:00
event SSL: use of the SSL_OP_IGNORE_UNEXPECTED_EOF option. 2021-08-10 23:43:17 +03:00
http Disabled HTTP/1.0 requests with Transfer-Encoding. 2021-08-09 18:12:12 +03:00
mail Mail: max_errors directive. 2021-05-19 03:13:31 +03:00
misc Cpp test: added stream. 2020-10-13 07:44:09 +03:00
os Win32: use only preallocated memory in send/recv chain functions. 2021-07-05 13:26:49 +03:00
stream Stream: the "fastopen" parameter of the "listen" directive. 2021-05-20 19:59:16 +03:00