mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2024-11-22 17:15:38 +01:00
Merge pull request #2975 from mpg/add-zlib-tests-dev
Add zlib tests and fix runtime bug
This commit is contained in:
commit
ead19fecf9
@ -5446,7 +5446,7 @@ static int ssl_check_client_reconnect( mbedtls_ssl_context *ssl )
|
|||||||
#endif /* MBEDTLS_SSL_DTLS_CLIENT_PORT_REUSE && MBEDTLS_SSL_SRV_C */
|
#endif /* MBEDTLS_SSL_DTLS_CLIENT_PORT_REUSE && MBEDTLS_SSL_SRV_C */
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* If applicable, decrypt (and decompress) record content
|
* If applicable, decrypt record content
|
||||||
*/
|
*/
|
||||||
static int ssl_prepare_record_content( mbedtls_ssl_context *ssl,
|
static int ssl_prepare_record_content( mbedtls_ssl_context *ssl,
|
||||||
mbedtls_record *rec )
|
mbedtls_record *rec )
|
||||||
@ -5572,18 +5572,6 @@ static int ssl_prepare_record_content( mbedtls_ssl_context *ssl,
|
|||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#if defined(MBEDTLS_ZLIB_SUPPORT)
|
|
||||||
if( ssl->transform_in != NULL &&
|
|
||||||
ssl->session_in->compression == MBEDTLS_SSL_COMPRESS_DEFLATE )
|
|
||||||
{
|
|
||||||
if( ( ret = ssl_decompress_buf( ssl ) ) != 0 )
|
|
||||||
{
|
|
||||||
MBEDTLS_SSL_DEBUG_RET( 1, "ssl_decompress_buf", ret );
|
|
||||||
return( ret );
|
|
||||||
}
|
|
||||||
}
|
|
||||||
#endif /* MBEDTLS_ZLIB_SUPPORT */
|
|
||||||
|
|
||||||
#if defined(MBEDTLS_SSL_DTLS_ANTI_REPLAY)
|
#if defined(MBEDTLS_SSL_DTLS_ANTI_REPLAY)
|
||||||
if( ssl->conf->transport == MBEDTLS_SSL_TRANSPORT_DATAGRAM )
|
if( ssl->conf->transport == MBEDTLS_SSL_TRANSPORT_DATAGRAM )
|
||||||
{
|
{
|
||||||
@ -6469,6 +6457,26 @@ static int ssl_get_next_record( mbedtls_ssl_context *ssl )
|
|||||||
ssl->in_len[0] = (unsigned char)( rec.data_len >> 8 );
|
ssl->in_len[0] = (unsigned char)( rec.data_len >> 8 );
|
||||||
ssl->in_len[1] = (unsigned char)( rec.data_len );
|
ssl->in_len[1] = (unsigned char)( rec.data_len );
|
||||||
|
|
||||||
|
#if defined(MBEDTLS_ZLIB_SUPPORT)
|
||||||
|
if( ssl->transform_in != NULL &&
|
||||||
|
ssl->session_in->compression == MBEDTLS_SSL_COMPRESS_DEFLATE )
|
||||||
|
{
|
||||||
|
if( ( ret = ssl_decompress_buf( ssl ) ) != 0 )
|
||||||
|
{
|
||||||
|
MBEDTLS_SSL_DEBUG_RET( 1, "ssl_decompress_buf", ret );
|
||||||
|
return( ret );
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Check actual (decompress) record content length against
|
||||||
|
* configured maximum. */
|
||||||
|
if( ssl->in_msglen > MBEDTLS_SSL_IN_CONTENT_LEN )
|
||||||
|
{
|
||||||
|
MBEDTLS_SSL_DEBUG_MSG( 1, ( "bad message length" ) );
|
||||||
|
return( MBEDTLS_ERR_SSL_INVALID_RECORD );
|
||||||
|
}
|
||||||
|
}
|
||||||
|
#endif /* MBEDTLS_ZLIB_SUPPORT */
|
||||||
|
|
||||||
return( 0 );
|
return( 0 );
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -697,6 +697,45 @@ component_test_full_cmake_gcc_asan () {
|
|||||||
if_build_succeeded tests/compat.sh
|
if_build_succeeded tests/compat.sh
|
||||||
}
|
}
|
||||||
|
|
||||||
|
component_test_zlib_make() {
|
||||||
|
msg "build: zlib enabled, make"
|
||||||
|
scripts/config.py set MBEDTLS_ZLIB_SUPPORT
|
||||||
|
make ZLIB=1 CFLAGS='-Werror -O1'
|
||||||
|
|
||||||
|
msg "test: main suites (zlib, make)"
|
||||||
|
make test
|
||||||
|
|
||||||
|
msg "test: ssl-opt.sh (zlib, make)"
|
||||||
|
if_build_succeeded tests/ssl-opt.sh
|
||||||
|
}
|
||||||
|
support_test_zlib_make () {
|
||||||
|
base=support_test_zlib_$$
|
||||||
|
cat <<'EOF' > ${base}.c
|
||||||
|
#include "zlib.h"
|
||||||
|
int main(void) { return 0; }
|
||||||
|
EOF
|
||||||
|
gcc -o ${base}.exe ${base}.c -lz 2>/dev/null
|
||||||
|
ret=$?
|
||||||
|
rm -f ${base}.*
|
||||||
|
return $ret
|
||||||
|
}
|
||||||
|
|
||||||
|
component_test_zlib_cmake() {
|
||||||
|
msg "build: zlib enabled, cmake"
|
||||||
|
scripts/config.py set MBEDTLS_ZLIB_SUPPORT
|
||||||
|
cmake -D ENABLE_ZLIB_SUPPORT=On -D CMAKE_BUILD_TYPE:String=Check .
|
||||||
|
make
|
||||||
|
|
||||||
|
msg "test: main suites (zlib, cmake)"
|
||||||
|
make test
|
||||||
|
|
||||||
|
msg "test: ssl-opt.sh (zlib, cmake)"
|
||||||
|
if_build_succeeded tests/ssl-opt.sh
|
||||||
|
}
|
||||||
|
support_test_zlib_cmake () {
|
||||||
|
support_test_zlib_make "$@"
|
||||||
|
}
|
||||||
|
|
||||||
component_test_ref_configs () {
|
component_test_ref_configs () {
|
||||||
msg "test/build: ref-configs (ASan build)" # ~ 6 min 20s
|
msg "test/build: ref-configs (ASan build)" # ~ 6 min 20s
|
||||||
CC=gcc cmake -D CMAKE_BUILD_TYPE:String=Asan .
|
CC=gcc cmake -D CMAKE_BUILD_TYPE:String=Asan .
|
||||||
|
@ -996,6 +996,18 @@ run_test "Default, DTLS" \
|
|||||||
-s "Protocol is DTLSv1.2" \
|
-s "Protocol is DTLSv1.2" \
|
||||||
-s "Ciphersuite is TLS-ECDHE-RSA-WITH-CHACHA20-POLY1305-SHA256"
|
-s "Ciphersuite is TLS-ECDHE-RSA-WITH-CHACHA20-POLY1305-SHA256"
|
||||||
|
|
||||||
|
requires_config_enabled MBEDTLS_ZLIB_SUPPORT
|
||||||
|
run_test "Default (compression enabled)" \
|
||||||
|
"$P_SRV debug_level=3" \
|
||||||
|
"$P_CLI debug_level=3" \
|
||||||
|
0 \
|
||||||
|
-s "Allocating compression buffer" \
|
||||||
|
-c "Allocating compression buffer" \
|
||||||
|
-s "Record expansion is unknown (compression)" \
|
||||||
|
-c "Record expansion is unknown (compression)" \
|
||||||
|
-S "error" \
|
||||||
|
-C "error"
|
||||||
|
|
||||||
requires_config_enabled MBEDTLS_X509_TRUSTED_CERTIFICATE_CALLBACK
|
requires_config_enabled MBEDTLS_X509_TRUSTED_CERTIFICATE_CALLBACK
|
||||||
run_test "CA callback on client" \
|
run_test "CA callback on client" \
|
||||||
"$P_SRV debug_level=3" \
|
"$P_SRV debug_level=3" \
|
||||||
|
Loading…
Reference in New Issue
Block a user