Merge remote-tracking branch 'public/pr/1955' into development
This commit is contained in:
commit
9598845d11
3 changed files with 22 additions and 1 deletions
|
@ -13,6 +13,11 @@ Bugfix
|
||||||
* Replace printf with mbedtls_printf in aria. Found by TrinityTonic in #1908.
|
* Replace printf with mbedtls_printf in aria. Found by TrinityTonic in #1908.
|
||||||
* Fix potential use-after-free in mbedtls_ssl_get_max_frag_len()
|
* Fix potential use-after-free in mbedtls_ssl_get_max_frag_len()
|
||||||
and mbedtls_ssl_get_record_expansion() after a session reset. Fixes #1941.
|
and mbedtls_ssl_get_record_expansion() after a session reset. Fixes #1941.
|
||||||
|
* Fix a bug that caused SSL/TLS clients to incorrectly abort the handshake
|
||||||
|
with TLS versions 1.1 and earlier when the server requested authentication
|
||||||
|
without providing a list of CAs. This was due to an overly strict bounds
|
||||||
|
check in parsing the CertificateRequest message,
|
||||||
|
introduced in Mbed TLS 2.12.0. Fixes #1954.
|
||||||
|
|
||||||
Changes
|
Changes
|
||||||
* Copy headers preserving timestamps when doing a "make install".
|
* Copy headers preserving timestamps when doing a "make install".
|
||||||
|
|
|
@ -2721,7 +2721,7 @@ static int ssl_parse_certificate_request( mbedtls_ssl_context *ssl )
|
||||||
* therefore the buffer length at this point must be greater than that
|
* therefore the buffer length at this point must be greater than that
|
||||||
* regardless of the actual code path.
|
* regardless of the actual code path.
|
||||||
*/
|
*/
|
||||||
if( ssl->in_hslen <= mbedtls_ssl_hs_hdr_len( ssl ) + 3 + n )
|
if( ssl->in_hslen <= mbedtls_ssl_hs_hdr_len( ssl ) + 2 + n )
|
||||||
{
|
{
|
||||||
MBEDTLS_SSL_DEBUG_MSG( 1, ( "bad certificate request message" ) );
|
MBEDTLS_SSL_DEBUG_MSG( 1, ( "bad certificate request message" ) );
|
||||||
mbedtls_ssl_send_alert_message( ssl, MBEDTLS_SSL_ALERT_LEVEL_FATAL,
|
mbedtls_ssl_send_alert_message( ssl, MBEDTLS_SSL_ALERT_LEVEL_FATAL,
|
||||||
|
|
|
@ -804,6 +804,22 @@ run_test "RC4: both enabled" \
|
||||||
-S "SSL - None of the common ciphersuites is usable" \
|
-S "SSL - None of the common ciphersuites is usable" \
|
||||||
-S "SSL - The server has no ciphersuites in common"
|
-S "SSL - The server has no ciphersuites in common"
|
||||||
|
|
||||||
|
# Test empty CA list in CertificateRequest in TLS 1.1 and earlier
|
||||||
|
|
||||||
|
requires_gnutls
|
||||||
|
requires_config_enabled MBEDTLS_SSL_PROTO_TLS1_1
|
||||||
|
run_test "CertificateRequest with empty CA list, TLS 1.1 (GnuTLS server)" \
|
||||||
|
"$G_SRV"\
|
||||||
|
"$P_CLI force_version=tls1_1" \
|
||||||
|
0
|
||||||
|
|
||||||
|
requires_gnutls
|
||||||
|
requires_config_enabled MBEDTLS_SSL_PROTO_TLS1
|
||||||
|
run_test "CertificateRequest with empty CA list, TLS 1.0 (GnuTLS server)" \
|
||||||
|
"$G_SRV"\
|
||||||
|
"$P_CLI force_version=tls1" \
|
||||||
|
0
|
||||||
|
|
||||||
# Tests for SHA-1 support
|
# Tests for SHA-1 support
|
||||||
|
|
||||||
requires_config_disabled MBEDTLS_TLS_DEFAULT_ALLOW_SHA1_IN_CERTIFICATES
|
requires_config_disabled MBEDTLS_TLS_DEFAULT_ALLOW_SHA1_IN_CERTIFICATES
|
||||||
|
|
Loading…
Reference in a new issue