comparison src/event/ngx_event_openssl.c @ 7418:ce5e87e98772 stable-1.14

SSL: logging level of "no suitable key share". The "no suitable key share" errors are reported by OpenSSL 1.1.1 when using TLSv1.3 if there are no shared groups (that is, elliptic curves). In particular, it is easy enough to trigger by using only a single curve in ssl_ecdh_curve: ssl_ecdh_curve secp384r1; and using a different curve in the client: openssl s_client -connect 127.0.0.1:443 -curves prime256v1 On the client side it is seen as "sslv3 alert handshake failure", "SSL alert number 40": 0:error:14094410:SSL routines:ssl3_read_bytes:sslv3 alert handshake failure:ssl/record/rec_layer_s3.c:1528:SSL alert number 40 It can be also triggered with default ssl_ecdh_curve by using a curve which is not in the default list (X25519, prime256v1, X448, secp521r1, secp384r1): openssl s_client -connect 127.0.0.1:8443 -curves brainpoolP512r1 Given that many clients hardcode prime256v1, these errors might become a common problem with TLSv1.3 if ssl_ecdh_curve is redefined. Previously this resulted in not using ECDH with such clients, but with TLSv1.3 it is no longer possible and will result in a handshake failure. The SSL_R_NO_SHARED_GROUP error is what BoringSSL returns in the same situation. Seen at: https://serverfault.com/questions/932102/nginx-ssl-handshake-error-no-suitable-key-share
author Maxim Dounin <mdounin@mdounin.ru>
date Tue, 25 Sep 2018 13:59:53 +0300
parents ea3f1f9af72c
children c5d7a72abadc
comparison
equal deleted inserted replaced
7417:dc69f7aa6ca6 7418:ce5e87e98772
2057 2057
2058 n = ERR_GET_REASON(ERR_peek_error()); 2058 n = ERR_GET_REASON(ERR_peek_error());
2059 2059
2060 /* handshake failures */ 2060 /* handshake failures */
2061 if (n == SSL_R_BAD_CHANGE_CIPHER_SPEC /* 103 */ 2061 if (n == SSL_R_BAD_CHANGE_CIPHER_SPEC /* 103 */
2062 #ifdef SSL_R_NO_SUITABLE_KEY_SHARE
2063 || n == SSL_R_NO_SUITABLE_KEY_SHARE /* 101 */
2064 #endif
2062 || n == SSL_R_BLOCK_CIPHER_PAD_IS_WRONG /* 129 */ 2065 || n == SSL_R_BLOCK_CIPHER_PAD_IS_WRONG /* 129 */
2063 || n == SSL_R_DIGEST_CHECK_FAILED /* 149 */ 2066 || n == SSL_R_DIGEST_CHECK_FAILED /* 149 */
2064 || n == SSL_R_ERROR_IN_RECEIVED_CIPHER_LIST /* 151 */ 2067 || n == SSL_R_ERROR_IN_RECEIVED_CIPHER_LIST /* 151 */
2065 || n == SSL_R_EXCESSIVE_MESSAGE_SIZE /* 152 */ 2068 || n == SSL_R_EXCESSIVE_MESSAGE_SIZE /* 152 */
2066 || n == SSL_R_HTTPS_PROXY_REQUEST /* 155 */ 2069 || n == SSL_R_HTTPS_PROXY_REQUEST /* 155 */
2079 || n == SSL_R_UNEXPECTED_MESSAGE /* 244 */ 2082 || n == SSL_R_UNEXPECTED_MESSAGE /* 244 */
2080 || n == SSL_R_UNEXPECTED_RECORD /* 245 */ 2083 || n == SSL_R_UNEXPECTED_RECORD /* 245 */
2081 || n == SSL_R_UNKNOWN_ALERT_TYPE /* 246 */ 2084 || n == SSL_R_UNKNOWN_ALERT_TYPE /* 246 */
2082 || n == SSL_R_UNKNOWN_PROTOCOL /* 252 */ 2085 || n == SSL_R_UNKNOWN_PROTOCOL /* 252 */
2083 || n == SSL_R_UNSUPPORTED_PROTOCOL /* 258 */ 2086 || n == SSL_R_UNSUPPORTED_PROTOCOL /* 258 */
2087 #ifdef SSL_R_NO_SHARED_GROUP
2088 || n == SSL_R_NO_SHARED_GROUP /* 266 */
2089 #endif
2084 || n == SSL_R_WRONG_VERSION_NUMBER /* 267 */ 2090 || n == SSL_R_WRONG_VERSION_NUMBER /* 267 */
2085 || n == SSL_R_DECRYPTION_FAILED_OR_BAD_RECORD_MAC /* 281 */ 2091 || n == SSL_R_DECRYPTION_FAILED_OR_BAD_RECORD_MAC /* 281 */
2086 #ifdef SSL_R_RENEGOTIATE_EXT_TOO_LONG 2092 #ifdef SSL_R_RENEGOTIATE_EXT_TOO_LONG
2087 || n == SSL_R_RENEGOTIATE_EXT_TOO_LONG /* 335 */ 2093 || n == SSL_R_RENEGOTIATE_EXT_TOO_LONG /* 335 */
2088 || n == SSL_R_RENEGOTIATION_ENCODING_ERR /* 336 */ 2094 || n == SSL_R_RENEGOTIATION_ENCODING_ERR /* 336 */