mirror of
https://github.com/Mbed-TLS/mbedtls.git
synced 2025-07-29 11:41:15 +03:00
modify proc_chk macros
- change the parameter - remove debug output - remove return value modify Signed-off-by: Jerry Yu <jerry.h.yu@arm.com>
This commit is contained in:
@ -26,7 +26,6 @@
|
|||||||
|
|
||||||
#include "mbedtls/ssl.h"
|
#include "mbedtls/ssl.h"
|
||||||
#include "mbedtls/cipher.h"
|
#include "mbedtls/cipher.h"
|
||||||
#include "mbedtls/debug.h"
|
|
||||||
|
|
||||||
#if defined(MBEDTLS_USE_PSA_CRYPTO)
|
#if defined(MBEDTLS_USE_PSA_CRYPTO)
|
||||||
#include "psa/crypto.h"
|
#include "psa/crypto.h"
|
||||||
@ -135,33 +134,25 @@
|
|||||||
/*
|
/*
|
||||||
* Helper macros for function call with returen check.
|
* Helper macros for function call with returen check.
|
||||||
*/
|
*/
|
||||||
/* utils for strip parens in marcro */
|
|
||||||
#define MBEDTLS_SSL_PROC_STRIP_PARENS( ... ) __VA_ARGS__
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Exit and print debug message when return none zero value
|
* Exit and print debug message when return none zero value
|
||||||
*/
|
*/
|
||||||
#define MBEDTLS_SSL_PROC_CHK( fn, args ) \
|
#define MBEDTLS_SSL_PROC_CHK( f ) \
|
||||||
do { \
|
do { \
|
||||||
ret = fn(MBEDTLS_SSL_PROC_STRIP_PARENS args); \
|
ret = ( f ); \
|
||||||
if( ret != 0 ) \
|
if( ret != 0 ) \
|
||||||
{ \
|
{ \
|
||||||
if( ret > 0 ) \
|
|
||||||
ret = MBEDTLS_ERR_SSL_INTERNAL_ERROR; \
|
|
||||||
MBEDTLS_SSL_DEBUG_RET( 1, #fn, ret ); \
|
|
||||||
goto cleanup; \
|
goto cleanup; \
|
||||||
} \
|
} \
|
||||||
} while( 0 )
|
} while( 0 )
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Exit and print debug message when return negative value
|
* Exit and print debug message when return negative value
|
||||||
*/
|
*/
|
||||||
#define MBEDTLS_SSL_PROC_CHK_NEG( fn, args ) \
|
#define MBEDTLS_SSL_PROC_CHK_NEG( f ) \
|
||||||
do { \
|
do { \
|
||||||
ret = fn(MBEDTLS_SSL_PROC_STRIP_PARENS args); \
|
ret = ( f ); \
|
||||||
if( ret < 0 ) \
|
if( ret < 0 ) \
|
||||||
{ \
|
{ \
|
||||||
MBEDTLS_SSL_DEBUG_RET( 1, #fn, ret ); \
|
|
||||||
goto cleanup; \
|
goto cleanup; \
|
||||||
} \
|
} \
|
||||||
} while( 0 )
|
} while( 0 )
|
||||||
|
@ -381,22 +381,25 @@ static int ssl_tls13_write_client_hello( mbedtls_ssl_context *ssl )
|
|||||||
|
|
||||||
MBEDTLS_SSL_DEBUG_MSG( 2, ( "=> write client hello" ) );
|
MBEDTLS_SSL_DEBUG_MSG( 2, ( "=> write client hello" ) );
|
||||||
|
|
||||||
MBEDTLS_SSL_PROC_CHK( ssl_tls13_prepare_client_hello, ( ssl ) );
|
MBEDTLS_SSL_PROC_CHK( ssl_tls13_prepare_client_hello( ssl ) );
|
||||||
|
|
||||||
MBEDTLS_SSL_PROC_CHK( mbedtls_ssl_tls13_start_handshake_msg,
|
MBEDTLS_SSL_PROC_CHK( mbedtls_ssl_tls13_start_handshake_msg(
|
||||||
( ssl, MBEDTLS_SSL_HS_CLIENT_HELLO,
|
ssl, MBEDTLS_SSL_HS_CLIENT_HELLO,
|
||||||
&buf, &buf_len ) );
|
&buf, &buf_len ) );
|
||||||
|
|
||||||
MBEDTLS_SSL_PROC_CHK( ssl_tls13_write_client_hello_body,
|
MBEDTLS_SSL_PROC_CHK( ssl_tls13_write_client_hello_body( ssl, buf,
|
||||||
( ssl, buf, buf_len, &msg_len ) );
|
buf_len,
|
||||||
|
&msg_len ) );
|
||||||
|
|
||||||
mbedtls_ssl_tls13_add_hs_hdr_to_checksum( ssl, MBEDTLS_SSL_HS_CLIENT_HELLO,
|
mbedtls_ssl_tls13_add_hs_hdr_to_checksum( ssl,
|
||||||
|
MBEDTLS_SSL_HS_CLIENT_HELLO,
|
||||||
msg_len );
|
msg_len );
|
||||||
ssl->handshake->update_checksum( ssl, buf, msg_len );
|
ssl->handshake->update_checksum( ssl, buf, msg_len );
|
||||||
|
|
||||||
MBEDTLS_SSL_PROC_CHK( ssl_tls13_finalize_client_hello, ( ssl ) );
|
MBEDTLS_SSL_PROC_CHK( ssl_tls13_finalize_client_hello( ssl ) );
|
||||||
MBEDTLS_SSL_PROC_CHK( mbedtls_ssl_tls13_finish_handshake_msg,
|
MBEDTLS_SSL_PROC_CHK( mbedtls_ssl_tls13_finish_handshake_msg( ssl,
|
||||||
( ssl, buf_len, msg_len ) );
|
buf_len,
|
||||||
|
msg_len ) );
|
||||||
|
|
||||||
cleanup:
|
cleanup:
|
||||||
|
|
||||||
|
@ -57,7 +57,7 @@ int mbedtls_ssl_tls13_finish_handshake_msg( mbedtls_ssl_context *ssl,
|
|||||||
|
|
||||||
/* Add reserved 4 bytes for handshake header */
|
/* Add reserved 4 bytes for handshake header */
|
||||||
ssl->out_msglen = msg_len + 4;
|
ssl->out_msglen = msg_len + 4;
|
||||||
MBEDTLS_SSL_PROC_CHK( mbedtls_ssl_write_handshake_msg_ext, ( ssl, 0 ) );
|
MBEDTLS_SSL_PROC_CHK( mbedtls_ssl_write_handshake_msg_ext( ssl, 0 ) );
|
||||||
|
|
||||||
cleanup:
|
cleanup:
|
||||||
return( ret );
|
return( ret );
|
||||||
|
Reference in New Issue
Block a user