mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2024-11-22 22:45:48 +01:00
Add check for changing arguments
In case of argument change, freeing everything is not the most efficient (wastes one free()+calloc()) but makes the code simpler, which is probably more important here
This commit is contained in:
parent
77af79a324
commit
78d564a841
@ -105,6 +105,8 @@ void mbedtls_ecp_set_max_ops( unsigned max_ops )
|
|||||||
*/
|
*/
|
||||||
struct mbedtls_ecp_restart {
|
struct mbedtls_ecp_restart {
|
||||||
unsigned char fake_it; /* for tests: should we fake early return? */
|
unsigned char fake_it; /* for tests: should we fake early return? */
|
||||||
|
mbedtls_mpi m; /* saved argument: scalar */
|
||||||
|
mbedtls_ecp_point P; /* saved argument: point */
|
||||||
};
|
};
|
||||||
|
|
||||||
/*
|
/*
|
||||||
@ -122,6 +124,9 @@ static void ecp_restart_free( mbedtls_ecp_restart_ctx *ctx )
|
|||||||
{
|
{
|
||||||
if( ctx == NULL )
|
if( ctx == NULL )
|
||||||
return;
|
return;
|
||||||
|
|
||||||
|
mbedtls_mpi_free( &ctx->m );
|
||||||
|
mbedtls_ecp_point_free( &ctx->P );
|
||||||
}
|
}
|
||||||
#endif /* MBEDTLS_ECP_EARLY_RETURN */
|
#endif /* MBEDTLS_ECP_EARLY_RETURN */
|
||||||
|
|
||||||
@ -1514,22 +1519,35 @@ static int ecp_mul_comb( mbedtls_ecp_group *grp, mbedtls_ecp_point *R,
|
|||||||
size_t d;
|
size_t d;
|
||||||
mbedtls_ecp_point *T = NULL;
|
mbedtls_ecp_point *T = NULL;
|
||||||
|
|
||||||
/* set up restart context if needed */
|
|
||||||
#if defined(MBEDTLS_ECP_EARLY_RETURN)
|
#if defined(MBEDTLS_ECP_EARLY_RETURN)
|
||||||
|
/* check for restart with new arguments */
|
||||||
|
if( grp->rs != NULL &&
|
||||||
|
( mbedtls_mpi_cmp_mpi( m, &grp->rs->m ) != 0 ||
|
||||||
|
mbedtls_mpi_cmp_mpi( &P->X, &grp->rs->P.X ) != 0 ||
|
||||||
|
mbedtls_mpi_cmp_mpi( &P->Y, &grp->rs->P.Y ) != 0 ) )
|
||||||
|
{
|
||||||
|
ecp_restart_free( grp->rs );
|
||||||
|
mbedtls_free( grp->rs );
|
||||||
|
grp->rs = NULL;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* set up restart context if needed */
|
||||||
if( ecp_max_ops != 0 && grp->rs == NULL )
|
if( ecp_max_ops != 0 && grp->rs == NULL )
|
||||||
{
|
{
|
||||||
grp->rs = mbedtls_calloc( 1, sizeof( mbedtls_ecp_restart_ctx ) );
|
grp->rs = mbedtls_calloc( 1, sizeof( mbedtls_ecp_restart_ctx ) );
|
||||||
if( grp->rs == NULL )
|
if( grp->rs == NULL )
|
||||||
return( MBEDTLS_ERR_ECP_ALLOC_FAILED );
|
return( MBEDTLS_ERR_ECP_ALLOC_FAILED );
|
||||||
|
|
||||||
ecp_restart_init( grp->rs );
|
ecp_restart_init( grp->rs );
|
||||||
|
|
||||||
grp->rs->fake_it = 1;
|
MBEDTLS_MPI_CHK( mbedtls_mpi_copy( &grp->rs->m, m ) );
|
||||||
|
MBEDTLS_MPI_CHK( mbedtls_ecp_copy( &grp->rs->P, P ) );
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/* XXX: temporary */
|
/* XXX: temporary */
|
||||||
#if defined(MBEDTLS_ECP_EARLY_RETURN)
|
#if defined(MBEDTLS_ECP_EARLY_RETURN)
|
||||||
if( grp->rs && grp->rs->fake_it++ != 0 )
|
if( grp->rs && ++grp->rs->fake_it != 0 )
|
||||||
return( MBEDTLS_ERR_ECP_IN_PROGRESS );
|
return( MBEDTLS_ERR_ECP_IN_PROGRESS );
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
@ -121,6 +121,13 @@ void ecp_test_vect_restart( int id,
|
|||||||
}
|
}
|
||||||
while( ret != 0 );
|
while( ret != 0 );
|
||||||
|
|
||||||
|
/* Ok, now start an operation with some arguments, and drop it.
|
||||||
|
* We'll see if the result of the next operation, with different args,
|
||||||
|
* are correct regardless (do we discard old context on new args?).
|
||||||
|
* This also tests that we don't write to R prematurely */
|
||||||
|
ret = mbedtls_ecp_mul( &grp, &R, &dA, &grp.G, NULL, NULL );
|
||||||
|
TEST_ASSERT( ret == 0 || ret == MBEDTLS_ERR_ECP_IN_PROGRESS );
|
||||||
|
|
||||||
/* Non-base point case */
|
/* Non-base point case */
|
||||||
cnt_restarts = 0;
|
cnt_restarts = 0;
|
||||||
do {
|
do {
|
||||||
|
Loading…
Reference in New Issue
Block a user