2018-11-19 10:53:55 +01:00
|
|
|
/* BEGIN_HEADER */
|
|
|
|
#include <stdint.h>
|
|
|
|
|
|
|
|
#include "psa/crypto.h"
|
|
|
|
#include "psa_prot_internal_storage.h"
|
|
|
|
#include "mbedtls/entropy.h"
|
|
|
|
#include "mbedtls/entropy_poll.h"
|
|
|
|
|
2018-11-20 15:51:49 +01:00
|
|
|
/* Calculating the minimum allowed entropy size in bytes */
|
|
|
|
#define MBEDTLS_PSA_INJECT_ENTROPY_MIN_SIZE MAX(MBEDTLS_ENTROPY_MIN_PLATFORM, MBEDTLS_ENTROPY_BLOCK_SIZE)
|
|
|
|
|
2018-11-19 10:53:55 +01:00
|
|
|
/* END_HEADER */
|
|
|
|
|
|
|
|
/* BEGIN_DEPENDENCIES
|
|
|
|
* depends_on:MBEDTLS_ENTROPY_NV_SEED:MBEDTLS_PSA_HAS_ITS_IO:MBEDTLS_PSA_CRYPTO_C
|
|
|
|
* END_DEPENDENCIES
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* BEGIN_CASE */
|
|
|
|
void validate_entropy_seed_injection( int seed_length_a,
|
|
|
|
int expected_status_a,
|
|
|
|
int seed_length_b,
|
|
|
|
int expected_status_b )
|
|
|
|
{
|
|
|
|
psa_its_status_t its_status;
|
|
|
|
psa_status_t status;
|
|
|
|
uint8_t output[32] = { 0 };
|
|
|
|
uint8_t zeros[32] = { 0 };
|
|
|
|
uint8_t *seed = NULL;
|
|
|
|
int i;
|
|
|
|
int seed_size;
|
2018-11-20 15:51:49 +01:00
|
|
|
if( seed_length_a > seed_length_b )
|
2018-11-19 10:53:55 +01:00
|
|
|
{
|
|
|
|
seed_size = seed_length_a;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
seed_size = seed_length_b;
|
|
|
|
}
|
|
|
|
ASSERT_ALLOC( seed, seed_size );
|
2018-11-20 15:51:49 +01:00
|
|
|
/* fill seed with some data */
|
|
|
|
for( i = 0; i < seed_size; ++i )
|
2018-11-19 10:53:55 +01:00
|
|
|
{
|
|
|
|
seed[i] = i;
|
|
|
|
}
|
2018-11-21 16:31:07 +01:00
|
|
|
its_status = psa_its_remove( PSA_CRYPTO_ITS_RANDOM_SEED_UID );
|
2018-11-20 15:51:49 +01:00
|
|
|
TEST_ASSERT( ( its_status == PSA_ITS_SUCCESS ) ||
|
|
|
|
( its_status == PSA_ITS_ERROR_KEY_NOT_FOUND ) );
|
2018-11-19 10:53:55 +01:00
|
|
|
status = mbedtls_psa_inject_entropy( seed, seed_length_a );
|
2018-12-18 00:24:04 +01:00
|
|
|
TEST_EQUAL( status, expected_status_a );
|
2018-11-19 10:53:55 +01:00
|
|
|
status = mbedtls_psa_inject_entropy( seed, seed_length_b );
|
2018-12-18 00:24:04 +01:00
|
|
|
TEST_EQUAL( status, expected_status_b );
|
2018-12-18 00:18:46 +01:00
|
|
|
PSA_ASSERT( psa_crypto_init( ) );
|
|
|
|
PSA_ASSERT( psa_generate_random( output,
|
|
|
|
sizeof( output ) ) );
|
2018-11-20 15:51:49 +01:00
|
|
|
TEST_ASSERT( memcmp( output, zeros, sizeof( output ) ) != 0 );
|
2018-11-19 10:53:55 +01:00
|
|
|
exit:
|
|
|
|
mbedtls_free( seed );
|
2018-11-21 16:31:07 +01:00
|
|
|
psa_its_remove( PSA_CRYPTO_ITS_RANDOM_SEED_UID );
|
2018-11-19 10:53:55 +01:00
|
|
|
mbedtls_psa_crypto_free( );
|
|
|
|
}
|
|
|
|
/* END_CASE */
|
|
|
|
|
|
|
|
/* BEGIN_CASE */
|
|
|
|
void run_entropy_inject_with_crypto_init( )
|
|
|
|
{
|
|
|
|
psa_its_status_t its_status;
|
|
|
|
psa_status_t status;
|
|
|
|
int i;
|
2018-11-20 15:51:49 +01:00
|
|
|
uint8_t seed[MBEDTLS_PSA_INJECT_ENTROPY_MIN_SIZE] = { 0 };
|
|
|
|
/* fill seed with some data */
|
|
|
|
for( i = 0; i < sizeof( seed ); ++i )
|
2018-11-19 10:53:55 +01:00
|
|
|
{
|
|
|
|
seed[i] = i;
|
|
|
|
}
|
2018-11-21 16:31:07 +01:00
|
|
|
its_status = psa_its_remove( PSA_CRYPTO_ITS_RANDOM_SEED_UID );
|
2018-11-20 15:51:49 +01:00
|
|
|
TEST_ASSERT( ( its_status == PSA_ITS_SUCCESS ) ||
|
|
|
|
( its_status == PSA_ITS_ERROR_KEY_NOT_FOUND ) );
|
|
|
|
status = mbedtls_psa_inject_entropy( seed, sizeof( seed ) );
|
2018-12-18 00:18:46 +01:00
|
|
|
PSA_ASSERT( status );
|
2018-11-21 16:31:07 +01:00
|
|
|
its_status = psa_its_remove( PSA_CRYPTO_ITS_RANDOM_SEED_UID );
|
2018-12-18 00:24:04 +01:00
|
|
|
TEST_EQUAL( its_status, PSA_ITS_SUCCESS );
|
2018-11-20 15:51:49 +01:00
|
|
|
status = psa_crypto_init( );
|
2018-12-18 00:24:04 +01:00
|
|
|
TEST_EQUAL( status, PSA_ERROR_INSUFFICIENT_ENTROPY );
|
2018-11-20 15:51:49 +01:00
|
|
|
status = mbedtls_psa_inject_entropy( seed, sizeof( seed ) );
|
2018-12-18 00:18:46 +01:00
|
|
|
PSA_ASSERT( status );
|
2018-11-20 15:51:49 +01:00
|
|
|
status = psa_crypto_init( );
|
2018-12-18 00:18:46 +01:00
|
|
|
PSA_ASSERT( status );
|
2018-11-19 10:53:55 +01:00
|
|
|
mbedtls_psa_crypto_free( );
|
|
|
|
/* The seed is written by nv_seed callback functions therefore the injection will fail */
|
2018-11-20 15:51:49 +01:00
|
|
|
status = mbedtls_psa_inject_entropy( seed, sizeof( seed ) );
|
2018-12-18 00:24:04 +01:00
|
|
|
TEST_EQUAL( status, PSA_ERROR_NOT_PERMITTED );
|
2018-11-19 10:53:55 +01:00
|
|
|
exit:
|
2018-11-21 16:31:07 +01:00
|
|
|
psa_its_remove( PSA_CRYPTO_ITS_RANDOM_SEED_UID );
|
2018-11-19 10:53:55 +01:00
|
|
|
mbedtls_psa_crypto_free( );
|
|
|
|
}
|
|
|
|
/* END_CASE */
|