mirror of
				https://github.com/cuberite/polarssl.git
				synced 2025-11-04 04:32:24 -05:00 
			
		
		
		
	Improve debugging output of client-side CID extension parsing
This commit is contained in:
		
							parent
							
								
									08556bf8fb
								
							
						
					
					
						commit
						2262648b69
					
				@ -1305,11 +1305,17 @@ static int ssl_parse_cid_ext( mbedtls_ssl_context *ssl,
 | 
			
		||||
    if( /* CID extension only makes sense in DTLS */
 | 
			
		||||
        ssl->conf->transport != MBEDTLS_SSL_TRANSPORT_DATAGRAM ||
 | 
			
		||||
        /* The server must only send the CID extension if we have offered it. */
 | 
			
		||||
        ssl->negotiate_cid == MBEDTLS_SSL_CID_DISABLED ||
 | 
			
		||||
        /* CID extension must at least contain the length byte */
 | 
			
		||||
        len < 1 )
 | 
			
		||||
        ssl->negotiate_cid == MBEDTLS_SSL_CID_DISABLED )
 | 
			
		||||
    {
 | 
			
		||||
        MBEDTLS_SSL_DEBUG_MSG( 1, ( "non-matching CID extension" ) );
 | 
			
		||||
        MBEDTLS_SSL_DEBUG_MSG( 1, ( "CID extension unexpected" ) );
 | 
			
		||||
        mbedtls_ssl_send_alert_message( ssl, MBEDTLS_SSL_ALERT_LEVEL_FATAL,
 | 
			
		||||
                                     MBEDTLS_SSL_ALERT_MSG_HANDSHAKE_FAILURE );
 | 
			
		||||
        return( MBEDTLS_ERR_SSL_BAD_HS_SERVER_HELLO );
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    if( len == 0 )
 | 
			
		||||
    {
 | 
			
		||||
        MBEDTLS_SSL_DEBUG_MSG( 1, ( "CID extension invalid" ) );
 | 
			
		||||
        mbedtls_ssl_send_alert_message( ssl, MBEDTLS_SSL_ALERT_LEVEL_FATAL,
 | 
			
		||||
                                     MBEDTLS_SSL_ALERT_MSG_HANDSHAKE_FAILURE );
 | 
			
		||||
        return( MBEDTLS_ERR_SSL_BAD_HS_SERVER_HELLO );
 | 
			
		||||
@ -1320,7 +1326,7 @@ static int ssl_parse_cid_ext( mbedtls_ssl_context *ssl,
 | 
			
		||||
 | 
			
		||||
    if( peer_cid_len > MBEDTLS_SSL_CID_OUT_LEN_MAX )
 | 
			
		||||
    {
 | 
			
		||||
        MBEDTLS_SSL_DEBUG_MSG( 1, ( "non-matching CID extension" ) );
 | 
			
		||||
        MBEDTLS_SSL_DEBUG_MSG( 1, ( "CID extension invalid" ) );
 | 
			
		||||
        mbedtls_ssl_send_alert_message( ssl, MBEDTLS_SSL_ALERT_LEVEL_FATAL,
 | 
			
		||||
                                     MBEDTLS_SSL_ALERT_MSG_HANDSHAKE_FAILURE );
 | 
			
		||||
        return( MBEDTLS_ERR_SSL_BAD_HS_SERVER_HELLO );
 | 
			
		||||
@ -1328,7 +1334,7 @@ static int ssl_parse_cid_ext( mbedtls_ssl_context *ssl,
 | 
			
		||||
 | 
			
		||||
    if( len != peer_cid_len )
 | 
			
		||||
    {
 | 
			
		||||
        MBEDTLS_SSL_DEBUG_MSG( 1, ( "non-matching CID extension" ) );
 | 
			
		||||
        MBEDTLS_SSL_DEBUG_MSG( 1, ( "CID extension invalid" ) );
 | 
			
		||||
        mbedtls_ssl_send_alert_message( ssl, MBEDTLS_SSL_ALERT_LEVEL_FATAL,
 | 
			
		||||
                                     MBEDTLS_SSL_ALERT_MSG_ILLEGAL_PARAMETER );
 | 
			
		||||
        return( MBEDTLS_ERR_SSL_BAD_HS_SERVER_HELLO );
 | 
			
		||||
 | 
			
		||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user