Clean up error codes
diff --git a/include/mbedtls/ssl.h b/include/mbedtls/ssl.h
index bd88918..8ff4539 100644
--- a/include/mbedtls/ssl.h
+++ b/include/mbedtls/ssl.h
@@ -125,6 +125,7 @@
#define MBEDTLS_ERR_SSL_WANT_READ -0x6900 /**< Connection requires a read call. */
#define MBEDTLS_ERR_SSL_WANT_WRITE -0x6880 /**< Connection requires a write call. */
#define MBEDTLS_ERR_SSL_TIMEOUT -0x6800 /**< The operation timed out. */
+#define MBEDTLS_ERR_SSL_CLIENT_RECONNECT -0x6780 /**< The client initiated a reconnect from the same port. */
/*
* Various constants
diff --git a/library/error.c b/library/error.c
index a7de110..a1cf83a 100644
--- a/library/error.c
+++ b/library/error.c
@@ -428,6 +428,8 @@
mbedtls_snprintf( buf, buflen, "SSL - Connection requires a write call" );
if( use_ret == -(MBEDTLS_ERR_SSL_TIMEOUT) )
mbedtls_snprintf( buf, buflen, "SSL - The operation timed out" );
+ if( use_ret == -(MBEDTLS_ERR_SSL_CLIENT_RECONNECT) )
+ mbedtls_snprintf( buf, buflen, "SSL - The client initiated a reconnect from the same port" );
#endif /* MBEDTLS_SSL_TLS_C */
#if defined(MBEDTLS_X509_USE_C) || defined(MBEDTLS_X509_CREATE_C)
diff --git a/library/ssl_tls.c b/library/ssl_tls.c
index 75e14d5..c4dfd61 100644
--- a/library/ssl_tls.c
+++ b/library/ssl_tls.c
@@ -3276,7 +3276,7 @@
* return MBEDTLS_ERR_SSL_INVALID_RECORD (ignore this record)
* - if the input looks like a ClientHello with a valid cookie,
* reset the session of the current context, and
- * return MBEDTLS_ERR_SSL_CLIENT_RECONNECT (WIP: TODO)
+ * return MBEDTLS_ERR_SSL_CLIENT_RECONNECT
*
* Currently adopts a heavyweight strategy by allocating a secondary ssl
* context. Will be refactored into something more acceptable later.
@@ -3293,8 +3293,7 @@
ret = mbedtls_ssl_setup( &tmp_ssl, ssl->conf );
if( ret != 0 )
{
- MBEDTLS_SSL_DEBUG_RET( 0, "nested ssl_setup", ret );
- ret = MBEDTLS_ERR_SSL_INVALID_RECORD;
+ MBEDTLS_SSL_DEBUG_RET( 1, "nested ssl_setup", ret );
goto cleanup;
}
@@ -3305,8 +3304,7 @@
ssl->cli_id, ssl->cli_id_len );
if( ret != 0 )
{
- MBEDTLS_SSL_DEBUG_RET( 0, "nested set_client_id", ret );
- ret = MBEDTLS_ERR_SSL_INVALID_RECORD;
+ MBEDTLS_SSL_DEBUG_RET( 1, "nested set_client_id", ret );
goto cleanup;
}
@@ -3322,22 +3320,20 @@
ret = mbedtls_ssl_handshake_step( &tmp_ssl );
if( ret != 0 )
{
- MBEDTLS_SSL_DEBUG_RET( 0, "nested handshake_step", ret );
- ret = MBEDTLS_ERR_SSL_INVALID_RECORD;
+ MBEDTLS_SSL_DEBUG_RET( 1, "nested handshake_step", ret );
goto cleanup;
}
cookie_is_good = tmp_ssl.handshake->verify_cookie_len == 0;
- MBEDTLS_SSL_DEBUG_MSG( 0, ( "good ClientHello with %s cookie",
+ MBEDTLS_SSL_DEBUG_MSG( 1, ( "good ClientHello with %s cookie",
cookie_is_good ? "good" : "bad" ) );
/* Send HelloVerifyRequest? */
if( !cookie_is_good )
{
ret = mbedtls_ssl_handshake_step( &tmp_ssl );
- MBEDTLS_SSL_DEBUG_RET( 0, "nested handshake_step", ret );
-
- ret = MBEDTLS_ERR_SSL_INVALID_RECORD;
+ if( ret != 0 )
+ MBEDTLS_SSL_DEBUG_RET( 1, "nested handshake_step", ret );
goto cleanup;
}
@@ -3346,11 +3342,14 @@
* that the client will resend */
mbedtls_ssl_session_reset( ssl );
- /* ret = ... */
+ ret = MBEDTLS_ERR_SSL_CLIENT_RECONNECT;
cleanup:
mbedtls_ssl_free( &tmp_ssl );
+ if( ret != MBEDTLS_ERR_SSL_CLIENT_RECONNECT )
+ ret = MBEDTLS_ERR_SSL_INVALID_RECORD;
+
return( ret );
}
#endif /* MBEDTLS_SSL_PROTO_DTLS &&
@@ -3658,7 +3657,8 @@
if( ( ret = ssl_parse_record_header( ssl ) ) != 0 )
{
#if defined(MBEDTLS_SSL_PROTO_DTLS)
- if( ssl->conf->transport == MBEDTLS_SSL_TRANSPORT_DATAGRAM )
+ if( ssl->conf->transport == MBEDTLS_SSL_TRANSPORT_DATAGRAM &&
+ ret != MBEDTLS_ERR_SSL_CLIENT_RECONNECT )
{
/* Ignore bad record and get next one; drop the whole datagram
* since current header cannot be trusted to find the next record