tls13: server: write Record Size Limit ext in EncryptedExtensions
- add the support in library - update corresponding test cases. Signed-off-by: Yanray Wang <yanray.wang@arm.com> Signed-off-by: Waleed Elmelegy <waleed.elmelegy@arm.com>
This commit is contained in:
parent
42017cd4c9
commit
47d2946943
2 changed files with 19 additions and 14 deletions
|
@ -2530,6 +2530,15 @@ static int ssl_tls13_write_encrypted_extensions_body(mbedtls_ssl_context *ssl,
|
|||
}
|
||||
#endif /* MBEDTLS_SSL_EARLY_DATA */
|
||||
|
||||
#if defined(MBEDTLS_SSL_RECORD_SIZE_LIMIT)
|
||||
ret = mbedtls_ssl_tls13_write_record_size_limit_ext(
|
||||
ssl, MBEDTLS_SSL_IN_CONTENT_LEN, p, end, &output_len);
|
||||
if (ret != 0) {
|
||||
return ret;
|
||||
}
|
||||
p += output_len;
|
||||
#endif
|
||||
|
||||
extensions_len = (p - p_extensions_len) - 2;
|
||||
MBEDTLS_PUT_UINT16_BE(extensions_len, p_extensions_len, 0);
|
||||
|
||||
|
|
|
@ -4843,7 +4843,6 @@ run_test "Record Size Limit: TLS 1.3: Server-side parsing and debug output" \
|
|||
"$G_NEXT_CLI localhost --priority=NORMAL:-VERS-ALL:+VERS-TLS1.3 -V -d 4" \
|
||||
0 \
|
||||
-s "RecordSizeLimit: 16385 Bytes" \
|
||||
-s "ClientHello: record_size_limit(28) extension exists." \
|
||||
-s "Maximum outgoing record payload length is 16383" \
|
||||
-s "bytes written in 1 fragments"
|
||||
|
||||
|
@ -4857,10 +4856,7 @@ run_test "Record Size Limit: TLS 1.3: Client-side parsing and debug output" \
|
|||
"$P_CLI debug_level=4 force_version=tls13" \
|
||||
0 \
|
||||
-c "Sent RecordSizeLimit: 16384 Bytes" \
|
||||
-c "ClientHello: record_size_limit(28) extension exists." \
|
||||
-c "found record_size_limit extension" \
|
||||
-c "RecordSizeLimit: 16385 Bytes" \
|
||||
-c "EncryptedExtensions: record_size_limit(28) extension received." \
|
||||
-s "Parsing extension 'Record Size Limit/28' (2 bytes)" \
|
||||
-s "record_size_limit 16384 negotiated"
|
||||
|
||||
|
@ -4937,8 +4933,8 @@ run_test "Record Size Limit: TLS 1.3: Server complies with record size limit
|
|||
"$P_SRV debug_level=3 force_version=tls13 response_size=512" \
|
||||
"$G_NEXT_CLI localhost --priority=NORMAL:-VERS-ALL:+VERS-TLS1.3 -V -d 4 --recordsize 1023" \
|
||||
0 \
|
||||
-s "RecordSizeLimit: 1024 Bytes" \
|
||||
-s "ClientHello: record_size_limit(28) extension exists." \
|
||||
-s "Sent RecordSizeLimit: 16384 Bytes" \
|
||||
-s "EncryptedExtensions: record_size_limit(28) extension exists." \
|
||||
-s "Maximum outgoing record payload length is 1023" \
|
||||
-s "512 bytes written in 1 fragments"
|
||||
|
||||
|
@ -4951,8 +4947,8 @@ run_test "Record Size Limit: TLS 1.3: Server complies with record size limit
|
|||
"$P_SRV debug_level=3 force_version=tls13 response_size=1536" \
|
||||
"$G_NEXT_CLI localhost --priority=NORMAL:-VERS-ALL:+VERS-TLS1.3 -V -d 4 --recordsize 1023" \
|
||||
0 \
|
||||
-s "RecordSizeLimit: 1024 Bytes" \
|
||||
-s "ClientHello: record_size_limit(28) extension exists." \
|
||||
-s "Sent RecordSizeLimit: 16384 Bytes" \
|
||||
-s "EncryptedExtensions: record_size_limit(28) extension exists." \
|
||||
-s "Maximum outgoing record payload length is 1023" \
|
||||
-s "1536 bytes written in 2 fragments"
|
||||
|
||||
|
@ -4965,8 +4961,8 @@ run_test "Record Size Limit: TLS 1.3: Server complies with record size limit
|
|||
"$P_SRV debug_level=3 force_version=tls13 response_size=2560" \
|
||||
"$G_NEXT_CLI localhost --priority=NORMAL:-VERS-ALL:+VERS-TLS1.3 -V -d 4 --recordsize 1023" \
|
||||
0 \
|
||||
-s "RecordSizeLimit: 1024 Bytes" \
|
||||
-s "ClientHello: record_size_limit(28) extension exists." \
|
||||
-s "Sent RecordSizeLimit: 16384 Bytes" \
|
||||
-s "EncryptedExtensions: record_size_limit(28) extension exists." \
|
||||
-s "Maximum outgoing record payload length is 1023" \
|
||||
-s "2560 bytes written in 3 fragments"
|
||||
|
||||
|
@ -4979,8 +4975,8 @@ run_test "Record Size Limit: TLS 1.3: Server complies with record size limit
|
|||
"$P_SRV debug_level=3 force_version=tls13 response_size=2048" \
|
||||
"$G_NEXT_CLI localhost --priority=NORMAL:-VERS-ALL:+VERS-TLS1.3 -V -d 4 --recordsize 4095" \
|
||||
0 \
|
||||
-s "RecordSizeLimit: 4096 Bytes" \
|
||||
-s "ClientHello: record_size_limit(28) extension exists." \
|
||||
-s "Sent RecordSizeLimit: 16384 Bytes" \
|
||||
-s "EncryptedExtensions: record_size_limit(28) extension exists." \
|
||||
-s "Maximum outgoing record payload length is 4095" \
|
||||
-s "2048 bytes written in 1 fragments"
|
||||
|
||||
|
@ -4993,8 +4989,8 @@ run_test "Record Size Limit: TLS 1.3: Server complies with record size limit
|
|||
"$P_SRV debug_level=3 force_version=tls13 response_size=6144" \
|
||||
"$G_NEXT_CLI localhost --priority=NORMAL:-VERS-ALL:+VERS-TLS1.3 -V -d 4 --recordsize 4095" \
|
||||
0 \
|
||||
-s "RecordSizeLimit: 4096 Bytes" \
|
||||
-s "ClientHello: record_size_limit(28) extension exists." \
|
||||
-s "Sent RecordSizeLimit: 16384 Bytes" \
|
||||
-s "EncryptedExtensions: record_size_limit(28) extension exists." \
|
||||
-s "Maximum outgoing record payload length is 4095" \
|
||||
-s "6144 bytes written in 2 fragments"
|
||||
|
||||
|
|
Loading…
Reference in a new issue