Merge pull request #3382 from stevew817/feature/volatile-keys-in-SE
Support volatile keys in external SE
This commit is contained in:
Коммит
961914df12
|
@ -0,0 +1,4 @@
|
||||||
|
Default behavior changes
|
||||||
|
* Stop storing persistent information about externally stored keys created
|
||||||
|
through PSA Crypto with a volatile lifetime. Reported in #3288 and
|
||||||
|
contributed by Steven Cooreman in #3382.
|
|
@ -1611,7 +1611,7 @@
|
||||||
*/
|
*/
|
||||||
#define PSA_KEY_LIFETIME_IS_VOLATILE(lifetime) \
|
#define PSA_KEY_LIFETIME_IS_VOLATILE(lifetime) \
|
||||||
(PSA_KEY_LIFETIME_GET_PERSISTENCE(lifetime) == \
|
(PSA_KEY_LIFETIME_GET_PERSISTENCE(lifetime) == \
|
||||||
PSA_KEY_LIFETIME_PERSISTENCE_VOLATILE)
|
PSA_KEY_PERSISTENCE_VOLATILE)
|
||||||
|
|
||||||
/** Construct a lifetime from a persistence level and a location.
|
/** Construct a lifetime from a persistence level and a location.
|
||||||
*
|
*
|
||||||
|
|
|
@ -1499,16 +1499,17 @@ static psa_status_t psa_validate_key_attributes(
|
||||||
const psa_key_attributes_t *attributes,
|
const psa_key_attributes_t *attributes,
|
||||||
psa_se_drv_table_entry_t **p_drv )
|
psa_se_drv_table_entry_t **p_drv )
|
||||||
{
|
{
|
||||||
psa_status_t status;
|
psa_status_t status = PSA_ERROR_INVALID_ARGUMENT;
|
||||||
|
|
||||||
if( attributes->core.lifetime != PSA_KEY_LIFETIME_VOLATILE )
|
status = psa_validate_key_location( psa_get_key_lifetime( attributes ),
|
||||||
{
|
p_drv );
|
||||||
status = psa_validate_persistent_key_parameters(
|
if( status != PSA_SUCCESS )
|
||||||
attributes->core.lifetime, attributes->core.id,
|
return( status );
|
||||||
p_drv, 1 );
|
|
||||||
|
status = psa_validate_key_persistence( psa_get_key_lifetime( attributes ),
|
||||||
|
psa_get_key_id( attributes ) );
|
||||||
if( status != PSA_SUCCESS )
|
if( status != PSA_SUCCESS )
|
||||||
return( status );
|
return( status );
|
||||||
}
|
|
||||||
|
|
||||||
status = psa_validate_key_policy( &attributes->core.policy );
|
status = psa_validate_key_policy( &attributes->core.policy );
|
||||||
if( status != PSA_SUCCESS )
|
if( status != PSA_SUCCESS )
|
||||||
|
@ -1594,11 +1595,14 @@ static psa_status_t psa_start_key_creation(
|
||||||
|
|
||||||
#if defined(MBEDTLS_PSA_CRYPTO_SE_C)
|
#if defined(MBEDTLS_PSA_CRYPTO_SE_C)
|
||||||
/* For a key in a secure element, we need to do three things
|
/* For a key in a secure element, we need to do three things
|
||||||
* when creating or registering a key:
|
* when creating or registering a persistent key:
|
||||||
* create the key file in internal storage, create the
|
* create the key file in internal storage, create the
|
||||||
* key inside the secure element, and update the driver's
|
* key inside the secure element, and update the driver's
|
||||||
* persistent data. Start a transaction that will encompass these
|
* persistent data. This is done by starting a transaction that will
|
||||||
* three actions. */
|
* encompass these three actions.
|
||||||
|
* For registering a volatile key, we just need to find an appropriate
|
||||||
|
* slot number inside the SE. Since the key is designated volatile, creating
|
||||||
|
* a transaction is not required. */
|
||||||
/* The first thing to do is to find a slot number for the new key.
|
/* The first thing to do is to find a slot number for the new key.
|
||||||
* We save the slot number in persistent storage as part of the
|
* We save the slot number in persistent storage as part of the
|
||||||
* transaction data. It will be needed to recover if the power
|
* transaction data. It will be needed to recover if the power
|
||||||
|
@ -1613,6 +1617,9 @@ static psa_status_t psa_start_key_creation(
|
||||||
&slot->data.se.slot_number );
|
&slot->data.se.slot_number );
|
||||||
if( status != PSA_SUCCESS )
|
if( status != PSA_SUCCESS )
|
||||||
return( status );
|
return( status );
|
||||||
|
|
||||||
|
if( ! PSA_KEY_LIFETIME_IS_VOLATILE( attributes->core.lifetime ) )
|
||||||
|
{
|
||||||
psa_crypto_prepare_transaction( PSA_CRYPTO_TRANSACTION_CREATE_KEY );
|
psa_crypto_prepare_transaction( PSA_CRYPTO_TRANSACTION_CREATE_KEY );
|
||||||
psa_crypto_transaction.key.lifetime = slot->attr.lifetime;
|
psa_crypto_transaction.key.lifetime = slot->attr.lifetime;
|
||||||
psa_crypto_transaction.key.slot = slot->data.se.slot_number;
|
psa_crypto_transaction.key.slot = slot->data.se.slot_number;
|
||||||
|
@ -1624,6 +1631,7 @@ static psa_status_t psa_start_key_creation(
|
||||||
return( status );
|
return( status );
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
if( *p_drv == NULL && method == PSA_KEY_CREATION_REGISTER )
|
if( *p_drv == NULL && method == PSA_KEY_CREATION_REGISTER )
|
||||||
{
|
{
|
||||||
|
@ -1661,7 +1669,7 @@ static psa_status_t psa_finish_key_creation(
|
||||||
(void) driver;
|
(void) driver;
|
||||||
|
|
||||||
#if defined(MBEDTLS_PSA_CRYPTO_STORAGE_C)
|
#if defined(MBEDTLS_PSA_CRYPTO_STORAGE_C)
|
||||||
if( slot->attr.lifetime != PSA_KEY_LIFETIME_VOLATILE )
|
if( ! PSA_KEY_LIFETIME_IS_VOLATILE( slot->attr.lifetime ) )
|
||||||
{
|
{
|
||||||
#if defined(MBEDTLS_PSA_CRYPTO_SE_C)
|
#if defined(MBEDTLS_PSA_CRYPTO_SE_C)
|
||||||
if( driver != NULL )
|
if( driver != NULL )
|
||||||
|
@ -1709,8 +1717,8 @@ static psa_status_t psa_finish_key_creation(
|
||||||
/* Finish the transaction for a key creation. This does not
|
/* Finish the transaction for a key creation. This does not
|
||||||
* happen when registering an existing key. Detect this case
|
* happen when registering an existing key. Detect this case
|
||||||
* by checking whether a transaction is in progress (actual
|
* by checking whether a transaction is in progress (actual
|
||||||
* creation of a key in a secure element requires a transaction,
|
* creation of a persistent key in a secure element requires a transaction,
|
||||||
* but registration doesn't use one). */
|
* but registration or volatile key creation doesn't use one). */
|
||||||
if( driver != NULL &&
|
if( driver != NULL &&
|
||||||
psa_crypto_transaction.unknown.type == PSA_CRYPTO_TRANSACTION_CREATE_KEY )
|
psa_crypto_transaction.unknown.type == PSA_CRYPTO_TRANSACTION_CREATE_KEY )
|
||||||
{
|
{
|
||||||
|
|
|
@ -184,36 +184,53 @@ static int psa_is_key_id_valid( psa_key_file_id_t file_id,
|
||||||
}
|
}
|
||||||
#endif /* defined(MBEDTLS_PSA_CRYPTO_STORAGE_C) */
|
#endif /* defined(MBEDTLS_PSA_CRYPTO_STORAGE_C) */
|
||||||
|
|
||||||
psa_status_t psa_validate_persistent_key_parameters(
|
psa_status_t psa_validate_key_location( psa_key_lifetime_t lifetime,
|
||||||
psa_key_lifetime_t lifetime,
|
psa_se_drv_table_entry_t **p_drv )
|
||||||
psa_key_file_id_t id,
|
|
||||||
psa_se_drv_table_entry_t **p_drv,
|
|
||||||
int creating )
|
|
||||||
{
|
{
|
||||||
if( p_drv != NULL )
|
if ( psa_key_lifetime_is_external( lifetime ) )
|
||||||
*p_drv = NULL;
|
|
||||||
#if defined(MBEDTLS_PSA_CRYPTO_SE_C)
|
|
||||||
if( psa_key_lifetime_is_external( lifetime ) )
|
|
||||||
{
|
{
|
||||||
*p_drv = psa_get_se_driver_entry( lifetime );
|
#if defined(MBEDTLS_PSA_CRYPTO_SE_C)
|
||||||
if( *p_drv == NULL )
|
psa_se_drv_table_entry_t *driver = psa_get_se_driver_entry( lifetime );
|
||||||
|
if( driver == NULL )
|
||||||
return( PSA_ERROR_INVALID_ARGUMENT );
|
return( PSA_ERROR_INVALID_ARGUMENT );
|
||||||
|
else
|
||||||
|
{
|
||||||
|
if (p_drv != NULL)
|
||||||
|
*p_drv = driver;
|
||||||
|
return( PSA_SUCCESS );
|
||||||
|
}
|
||||||
|
#else
|
||||||
|
(void) p_drv;
|
||||||
|
return( PSA_ERROR_INVALID_ARGUMENT );
|
||||||
|
#endif /* MBEDTLS_PSA_CRYPTO_SE_C */
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
#endif /* MBEDTLS_PSA_CRYPTO_SE_C */
|
/* Local/internal keys are always valid */
|
||||||
if( lifetime != PSA_KEY_LIFETIME_PERSISTENT )
|
|
||||||
return( PSA_ERROR_INVALID_ARGUMENT );
|
|
||||||
|
|
||||||
#if defined(MBEDTLS_PSA_CRYPTO_STORAGE_C)
|
|
||||||
if( ! psa_is_key_id_valid( id, ! creating ) )
|
|
||||||
return( PSA_ERROR_INVALID_ARGUMENT );
|
|
||||||
return( PSA_SUCCESS );
|
return( PSA_SUCCESS );
|
||||||
|
}
|
||||||
|
|
||||||
|
psa_status_t psa_validate_key_persistence( psa_key_lifetime_t lifetime,
|
||||||
|
psa_key_id_t key_id )
|
||||||
|
{
|
||||||
|
if ( PSA_KEY_LIFETIME_IS_VOLATILE( lifetime ) )
|
||||||
|
{
|
||||||
|
/* Volatile keys are always supported */
|
||||||
|
return( PSA_SUCCESS );
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
/* Persistent keys require storage support */
|
||||||
|
#if defined(MBEDTLS_PSA_CRYPTO_STORAGE_C)
|
||||||
|
if( psa_is_key_id_valid( key_id,
|
||||||
|
psa_key_lifetime_is_external( lifetime ) ) )
|
||||||
|
return( PSA_SUCCESS );
|
||||||
|
else
|
||||||
|
return( PSA_ERROR_INVALID_ARGUMENT );
|
||||||
#else /* MBEDTLS_PSA_CRYPTO_STORAGE_C */
|
#else /* MBEDTLS_PSA_CRYPTO_STORAGE_C */
|
||||||
(void) id;
|
(void) key_id;
|
||||||
(void) creating;
|
|
||||||
return( PSA_ERROR_NOT_SUPPORTED );
|
return( PSA_ERROR_NOT_SUPPORTED );
|
||||||
#endif /* !MBEDTLS_PSA_CRYPTO_STORAGE_C */
|
#endif /* !MBEDTLS_PSA_CRYPTO_STORAGE_C */
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
psa_status_t psa_open_key( psa_key_file_id_t id, psa_key_handle_t *handle )
|
psa_status_t psa_open_key( psa_key_file_id_t id, psa_key_handle_t *handle )
|
||||||
|
@ -224,10 +241,8 @@ psa_status_t psa_open_key( psa_key_file_id_t id, psa_key_handle_t *handle )
|
||||||
|
|
||||||
*handle = 0;
|
*handle = 0;
|
||||||
|
|
||||||
status = psa_validate_persistent_key_parameters(
|
if( ! psa_is_key_id_valid( id, 1 ) )
|
||||||
PSA_KEY_LIFETIME_PERSISTENT, id, NULL, 0 );
|
return( PSA_ERROR_INVALID_ARGUMENT );
|
||||||
if( status != PSA_SUCCESS )
|
|
||||||
return( status );
|
|
||||||
|
|
||||||
status = psa_get_empty_key_slot( handle, &slot );
|
status = psa_get_empty_key_slot( handle, &slot );
|
||||||
if( status != PSA_SUCCESS )
|
if( status != PSA_SUCCESS )
|
||||||
|
|
|
@ -89,42 +89,40 @@ psa_status_t psa_get_empty_key_slot( psa_key_handle_t *handle,
|
||||||
*/
|
*/
|
||||||
static inline int psa_key_lifetime_is_external( psa_key_lifetime_t lifetime )
|
static inline int psa_key_lifetime_is_external( psa_key_lifetime_t lifetime )
|
||||||
{
|
{
|
||||||
return( lifetime != PSA_KEY_LIFETIME_VOLATILE &&
|
return( PSA_KEY_LIFETIME_GET_LOCATION( lifetime )
|
||||||
lifetime != PSA_KEY_LIFETIME_PERSISTENT );
|
!= PSA_KEY_LOCATION_LOCAL_STORAGE );
|
||||||
}
|
}
|
||||||
|
|
||||||
/** Test whether the given parameters are acceptable for a persistent key.
|
/** Validate a key's location.
|
||||||
*
|
*
|
||||||
* This function does not access the storage in any way. It only tests
|
* This function checks whether the key's attributes point to a location that
|
||||||
* whether the parameters are meaningful and permitted by general policy.
|
* is known to the PSA Core, and returns the driver function table if the key
|
||||||
* It does not test whether the a file by the given id exists or could be
|
* is to be found in an external location.
|
||||||
* created.
|
|
||||||
*
|
*
|
||||||
* If the key is in external storage, this function returns the corresponding
|
* \param[in] lifetime The key lifetime attribute.
|
||||||
* driver.
|
* \param[out] p_drv On success, when a key is located in external
|
||||||
|
* storage, returns a pointer to the driver table
|
||||||
|
* associated with the key's storage location.
|
||||||
*
|
*
|
||||||
* \param lifetime The lifetime to test.
|
* \retval #PSA_SUCCESS
|
||||||
* \param id The key id to test.
|
* \retval #PSA_ERROR_INVALID_ARGUMENT
|
||||||
* \param[out] p_drv On output, if \p lifetime designates a key
|
|
||||||
* in an external processor, \c *p_drv is a pointer
|
|
||||||
* to the driver table entry fot this lifetime.
|
|
||||||
* If \p lifetime designates a transparent key,
|
|
||||||
* \c *p_drv is \c NULL.
|
|
||||||
* \param creating 0 if attempting to open an existing key.
|
|
||||||
* Nonzero if attempting to create a key.
|
|
||||||
*
|
|
||||||
* \retval PSA_SUCCESS
|
|
||||||
* The given parameters are valid.
|
|
||||||
* \retval PSA_ERROR_INVALID_ARGUMENT
|
|
||||||
* \p lifetime is volatile or is invalid.
|
|
||||||
* \retval PSA_ERROR_INVALID_ARGUMENT
|
|
||||||
* \p id is invalid.
|
|
||||||
*/
|
*/
|
||||||
psa_status_t psa_validate_persistent_key_parameters(
|
psa_status_t psa_validate_key_location( psa_key_lifetime_t lifetime,
|
||||||
psa_key_lifetime_t lifetime,
|
psa_se_drv_table_entry_t **p_drv );
|
||||||
psa_key_file_id_t id,
|
|
||||||
psa_se_drv_table_entry_t **p_drv,
|
/** Validate that a key's persistence attributes are valid.
|
||||||
int creating );
|
*
|
||||||
|
* This function checks whether a key's declared persistence level and key ID
|
||||||
|
* attributes are valid and known to the PSA Core in its actual configuration.
|
||||||
|
*
|
||||||
|
* \param[in] lifetime The key lifetime attribute.
|
||||||
|
* \param[in] key_id The key ID attribute
|
||||||
|
*
|
||||||
|
* \retval #PSA_SUCCESS
|
||||||
|
* \retval #PSA_ERROR_INVALID_ARGUMENT
|
||||||
|
*/
|
||||||
|
psa_status_t psa_validate_key_persistence( psa_key_lifetime_t lifetime,
|
||||||
|
psa_key_id_t key_id );
|
||||||
|
|
||||||
|
|
||||||
#endif /* PSA_CRYPTO_SLOT_MANAGEMENT_H */
|
#endif /* PSA_CRYPTO_SLOT_MANAGEMENT_H */
|
||||||
|
|
|
@ -60,12 +60,19 @@ else
|
||||||
DOCKER="sudo docker"
|
DOCKER="sudo docker"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
# Figure out the number of processors available
|
||||||
|
if [ "$(uname)" == "Darwin" ]; then
|
||||||
|
NUM_PROC="$(sysctl -n hw.logicalcpu)"
|
||||||
|
else
|
||||||
|
NUM_PROC="$(nproc)"
|
||||||
|
fi
|
||||||
|
|
||||||
# Build the Docker image
|
# Build the Docker image
|
||||||
echo "Getting docker image up to date (this may take a few minutes)..."
|
echo "Getting docker image up to date (this may take a few minutes)..."
|
||||||
${DOCKER} image build \
|
${DOCKER} image build \
|
||||||
-t ${DOCKER_IMAGE_TAG} \
|
-t ${DOCKER_IMAGE_TAG} \
|
||||||
--cache-from=${DOCKER_IMAGE_TAG} \
|
--cache-from=${DOCKER_IMAGE_TAG} \
|
||||||
--build-arg MAKEFLAGS_PARALLEL="-j $(nproc)" \
|
--build-arg MAKEFLAGS_PARALLEL="-j ${NUM_PROC}" \
|
||||||
--network host \
|
--network host \
|
||||||
${http_proxy+--build-arg http_proxy=${http_proxy}} \
|
${http_proxy+--build-arg http_proxy=${http_proxy}} \
|
||||||
${https_proxy+--build-arg https_proxy=${https_proxy}} \
|
${https_proxy+--build-arg https_proxy=${https_proxy}} \
|
||||||
|
|
|
@ -24,17 +24,29 @@ register_twice:3
|
||||||
Register SE driver: maximum number of drivers
|
Register SE driver: maximum number of drivers
|
||||||
register_max:
|
register_max:
|
||||||
|
|
||||||
SE key import-export (p_allocate allows all slots)
|
SE key import-export persistent (p_allocate allows all slots)
|
||||||
key_creation_import_export:0:0
|
key_creation_import_export:TEST_SE_PERSISTENT_LIFETIME:0:0
|
||||||
|
|
||||||
SE key import-export (p_allocate allows 1 slot)
|
SE key import-export persistent (p_allocate allows 1 slot)
|
||||||
key_creation_import_export:ARRAY_LENGTH( ram_slots ) - 1:0
|
key_creation_import_export:TEST_SE_PERSISTENT_LIFETIME:ARRAY_LENGTH( ram_slots ) - 1:0
|
||||||
|
|
||||||
SE key import-export, check after restart (slot 0)
|
SE key import-export persistent, check after restart (slot 0)
|
||||||
key_creation_import_export:0:1
|
key_creation_import_export:TEST_SE_PERSISTENT_LIFETIME:0:1
|
||||||
|
|
||||||
SE key import-export, check after restart (slot 3)
|
SE key import-export persistent, check after restart (slot 3)
|
||||||
key_creation_import_export:3:1
|
key_creation_import_export:TEST_SE_PERSISTENT_LIFETIME:3:1
|
||||||
|
|
||||||
|
SE key import-export volatile (p_allocate allows all slots)
|
||||||
|
key_creation_import_export:TEST_SE_VOLATILE_LIFETIME:0:0
|
||||||
|
|
||||||
|
SE key import-export volatile (p_allocate allows 1 slot)
|
||||||
|
key_creation_import_export:TEST_SE_VOLATILE_LIFETIME:ARRAY_LENGTH( ram_slots ) - 1:0
|
||||||
|
|
||||||
|
SE key import-export volatile, check after restart (slot 0)
|
||||||
|
key_creation_import_export:TEST_SE_VOLATILE_LIFETIME:0:1
|
||||||
|
|
||||||
|
SE key import-export volatile, check after restart (slot 3)
|
||||||
|
key_creation_import_export:TEST_SE_VOLATILE_LIFETIME:3:1
|
||||||
|
|
||||||
Key creation in a specific slot (0)
|
Key creation in a specific slot (0)
|
||||||
key_creation_in_chosen_slot:0:0:PSA_SUCCESS
|
key_creation_in_chosen_slot:0:0:PSA_SUCCESS
|
||||||
|
@ -118,22 +130,28 @@ Key generation smoke test: HMAC-SHA-256
|
||||||
generate_key_smoke:PSA_KEY_TYPE_HMAC:256:PSA_ALG_HMAC( PSA_ALG_SHA_256 )
|
generate_key_smoke:PSA_KEY_TYPE_HMAC:256:PSA_ALG_HMAC( PSA_ALG_SHA_256 )
|
||||||
|
|
||||||
Key registration: smoke test
|
Key registration: smoke test
|
||||||
register_key_smoke_test:TEST_SE_PERSISTENT_LIFETIME:1:PSA_SUCCESS
|
register_key_smoke_test:TEST_SE_PERSISTENT_LIFETIME:1:1:PSA_SUCCESS
|
||||||
|
|
||||||
Key registration: invalid lifetime (volatile)
|
Key registration: invalid lifetime (volatile internal storage)
|
||||||
register_key_smoke_test:PSA_KEY_LIFETIME_VOLATILE:1:PSA_ERROR_INVALID_ARGUMENT
|
register_key_smoke_test:PSA_KEY_LIFETIME_VOLATILE:1:1:PSA_ERROR_INVALID_ARGUMENT
|
||||||
|
|
||||||
Key registration: invalid lifetime (internal storage)
|
Key registration: invalid lifetime (internal storage)
|
||||||
register_key_smoke_test:PSA_KEY_LIFETIME_PERSISTENT:1:PSA_ERROR_INVALID_ARGUMENT
|
register_key_smoke_test:PSA_KEY_LIFETIME_PERSISTENT:1:1:PSA_ERROR_INVALID_ARGUMENT
|
||||||
|
|
||||||
Key registration: invalid lifetime (no registered driver)
|
Key registration: invalid lifetime (no registered driver)
|
||||||
register_key_smoke_test:PSA_KEY_LIFETIME_FROM_PERSISTENCE_AND_LOCATION( PSA_KEY_PERSISTENCE_DEFAULT, TEST_DRIVER_LOCATION + 1 ):1:PSA_ERROR_INVALID_ARGUMENT
|
register_key_smoke_test:PSA_KEY_LIFETIME_FROM_PERSISTENCE_AND_LOCATION( PSA_KEY_PERSISTENCE_DEFAULT, TEST_DRIVER_LOCATION + 1 ):1:1:PSA_ERROR_INVALID_ARGUMENT
|
||||||
|
|
||||||
Key registration: rejected
|
Key registration: rejected
|
||||||
register_key_smoke_test:TEST_SE_PERSISTENT_LIFETIME:0:PSA_ERROR_NOT_PERMITTED
|
register_key_smoke_test:TEST_SE_PERSISTENT_LIFETIME:1:0:PSA_ERROR_NOT_PERMITTED
|
||||||
|
|
||||||
Key registration: not supported
|
Key registration: not supported
|
||||||
register_key_smoke_test:TEST_SE_PERSISTENT_LIFETIME:-1:PSA_ERROR_NOT_SUPPORTED
|
register_key_smoke_test:TEST_SE_PERSISTENT_LIFETIME:1:-1:PSA_ERROR_NOT_SUPPORTED
|
||||||
|
|
||||||
|
Key registration: key id out of range
|
||||||
|
register_key_smoke_test:TEST_SE_PERSISTENT_LIFETIME:PSA_KEY_ID_VENDOR_MAX+1:-1:PSA_ERROR_INVALID_ARGUMENT
|
||||||
|
|
||||||
|
Key registration: key id in vendor range
|
||||||
|
register_key_smoke_test:TEST_SE_PERSISTENT_LIFETIME:PSA_KEY_ID_VENDOR_MAX:1:PSA_SUCCESS
|
||||||
|
|
||||||
Import-sign-verify: sign in driver, ECDSA
|
Import-sign-verify: sign in driver, ECDSA
|
||||||
depends_on:MBEDTLS_ECDSA_C:MBEDTLS_ECP_C:MBEDTLS_ECP_DP_SECP256R1_ENABLED
|
depends_on:MBEDTLS_ECDSA_C:MBEDTLS_ECP_C:MBEDTLS_ECP_DP_SECP256R1_ENABLED
|
||||||
|
|
|
@ -27,6 +27,10 @@
|
||||||
( PSA_KEY_LIFETIME_FROM_PERSISTENCE_AND_LOCATION( \
|
( PSA_KEY_LIFETIME_FROM_PERSISTENCE_AND_LOCATION( \
|
||||||
PSA_KEY_PERSISTENCE_DEFAULT, TEST_DRIVER_LOCATION ) )
|
PSA_KEY_PERSISTENCE_DEFAULT, TEST_DRIVER_LOCATION ) )
|
||||||
|
|
||||||
|
#define TEST_SE_VOLATILE_LIFETIME \
|
||||||
|
( PSA_KEY_LIFETIME_FROM_PERSISTENCE_AND_LOCATION( \
|
||||||
|
PSA_KEY_PERSISTENCE_VOLATILE, TEST_DRIVER_LOCATION ) )
|
||||||
|
|
||||||
/** The driver detected a condition that shouldn't happen.
|
/** The driver detected a condition that shouldn't happen.
|
||||||
* This is probably a bug in the library. */
|
* This is probably a bug in the library. */
|
||||||
#define PSA_ERROR_DETECTED_BY_DRIVER ((psa_status_t)( -500 ))
|
#define PSA_ERROR_DETECTED_BY_DRIVER ((psa_status_t)( -500 ))
|
||||||
|
@ -609,6 +613,20 @@ exit:
|
||||||
return( ok );
|
return( ok );
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* Check that no persistent data exists for the given location. */
|
||||||
|
static int check_no_persistent_data( psa_key_location_t location )
|
||||||
|
{
|
||||||
|
psa_storage_uid_t uid = file_uid_for_location( location );
|
||||||
|
struct psa_storage_info_t info;
|
||||||
|
int ok = 0;
|
||||||
|
|
||||||
|
TEST_EQUAL( psa_its_get_info( uid, &info ), PSA_ERROR_DOES_NOT_EXIST );
|
||||||
|
ok = 1;
|
||||||
|
|
||||||
|
exit:
|
||||||
|
return( ok );
|
||||||
|
}
|
||||||
|
|
||||||
/* Check that a function's return status is "smoke-free", i.e. that
|
/* Check that a function's return status is "smoke-free", i.e. that
|
||||||
* it's an acceptable error code when calling an API function that operates
|
* it's an acceptable error code when calling an API function that operates
|
||||||
* on a key with potentially bogus parameters. */
|
* on a key with potentially bogus parameters. */
|
||||||
|
@ -829,11 +847,11 @@ exit:
|
||||||
/* END_CASE */
|
/* END_CASE */
|
||||||
|
|
||||||
/* BEGIN_CASE */
|
/* BEGIN_CASE */
|
||||||
void key_creation_import_export( int min_slot, int restart )
|
void key_creation_import_export( int lifetime_arg, int min_slot, int restart )
|
||||||
{
|
{
|
||||||
psa_drv_se_t driver;
|
psa_drv_se_t driver;
|
||||||
psa_drv_se_key_management_t key_management;
|
psa_drv_se_key_management_t key_management;
|
||||||
psa_key_lifetime_t lifetime = TEST_SE_PERSISTENT_LIFETIME;
|
psa_key_lifetime_t lifetime = (psa_key_lifetime_t) lifetime_arg;
|
||||||
psa_key_location_t location = PSA_KEY_LIFETIME_GET_LOCATION( lifetime );
|
psa_key_location_t location = PSA_KEY_LIFETIME_GET_LOCATION( lifetime );
|
||||||
psa_key_id_t id = 1;
|
psa_key_id_t id = 1;
|
||||||
psa_key_handle_t handle = 0;
|
psa_key_handle_t handle = 0;
|
||||||
|
@ -864,10 +882,25 @@ void key_creation_import_export( int min_slot, int restart )
|
||||||
PSA_ASSERT( psa_import_key( &attributes,
|
PSA_ASSERT( psa_import_key( &attributes,
|
||||||
key_material, sizeof( key_material ),
|
key_material, sizeof( key_material ),
|
||||||
&handle ) );
|
&handle ) );
|
||||||
|
|
||||||
|
|
||||||
|
if( PSA_KEY_LIFETIME_IS_VOLATILE( lifetime ) )
|
||||||
|
{
|
||||||
|
/* For volatile keys, check no persistent data was created */
|
||||||
|
if( ! check_no_persistent_data( location ) )
|
||||||
|
goto exit;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
/* For persistent keys, check persistent data */
|
||||||
if( ! check_persistent_data( location,
|
if( ! check_persistent_data( location,
|
||||||
&ram_shadow_slot_usage,
|
&ram_shadow_slot_usage,
|
||||||
sizeof( ram_shadow_slot_usage ) ) )
|
sizeof( ram_shadow_slot_usage ) ) )
|
||||||
goto exit;
|
goto exit;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Test that the key was created in the expected slot. */
|
||||||
|
TEST_EQUAL( ram_slots[min_slot].type, PSA_KEY_TYPE_RAW_DATA );
|
||||||
|
|
||||||
/* Maybe restart, to check that the information is saved correctly. */
|
/* Maybe restart, to check that the information is saved correctly. */
|
||||||
if( restart )
|
if( restart )
|
||||||
|
@ -875,15 +908,37 @@ void key_creation_import_export( int min_slot, int restart )
|
||||||
mbedtls_psa_crypto_free( );
|
mbedtls_psa_crypto_free( );
|
||||||
PSA_ASSERT( psa_register_se_driver( location, &driver ) );
|
PSA_ASSERT( psa_register_se_driver( location, &driver ) );
|
||||||
PSA_ASSERT( psa_crypto_init( ) );
|
PSA_ASSERT( psa_crypto_init( ) );
|
||||||
|
|
||||||
|
if( PSA_KEY_LIFETIME_IS_VOLATILE( lifetime ) )
|
||||||
|
{
|
||||||
|
/* Check that the PSA core has no knowledge of the volatile key */
|
||||||
|
TEST_ASSERT( psa_open_key( id, &handle ) == PSA_ERROR_DOES_NOT_EXIST );
|
||||||
|
|
||||||
|
/* Drop data from our mockup driver */
|
||||||
|
ram_slots_reset();
|
||||||
|
ram_min_slot = min_slot;
|
||||||
|
|
||||||
|
/* Re-import key */
|
||||||
|
PSA_ASSERT( psa_import_key( &attributes,
|
||||||
|
key_material, sizeof( key_material ),
|
||||||
|
&handle ) );
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
|
||||||
|
/* Check we can re-open the persistent key */
|
||||||
if( ! check_persistent_data( location,
|
if( ! check_persistent_data( location,
|
||||||
&ram_shadow_slot_usage,
|
&ram_shadow_slot_usage,
|
||||||
sizeof( ram_shadow_slot_usage ) ) )
|
sizeof( ram_shadow_slot_usage ) ) )
|
||||||
goto exit;
|
goto exit;
|
||||||
|
|
||||||
|
/* Check that the PSA core still knows about the key */
|
||||||
PSA_ASSERT( psa_open_key( id, &handle ) );
|
PSA_ASSERT( psa_open_key( id, &handle ) );
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/* Test that the key was created in the expected slot. */
|
/* Test that the key was created in the expected slot. */
|
||||||
TEST_ASSERT( ram_slots[min_slot].type == PSA_KEY_TYPE_RAW_DATA );
|
TEST_EQUAL( ram_slots[min_slot].type, PSA_KEY_TYPE_RAW_DATA );
|
||||||
|
|
||||||
/* Test the key attributes, including the reported slot number. */
|
/* Test the key attributes, including the reported slot number. */
|
||||||
psa_set_key_bits( &attributes,
|
psa_set_key_bits( &attributes,
|
||||||
|
@ -909,7 +964,7 @@ void key_creation_import_export( int min_slot, int restart )
|
||||||
PSA_ERROR_DOES_NOT_EXIST );
|
PSA_ERROR_DOES_NOT_EXIST );
|
||||||
|
|
||||||
/* Test that the key has been erased from the designated slot. */
|
/* Test that the key has been erased from the designated slot. */
|
||||||
TEST_ASSERT( ram_slots[min_slot].type == 0 );
|
TEST_EQUAL( ram_slots[min_slot].type, 0 );
|
||||||
|
|
||||||
exit:
|
exit:
|
||||||
PSA_DONE( );
|
PSA_DONE( );
|
||||||
|
@ -1263,7 +1318,7 @@ void sign_verify( int flow,
|
||||||
* generate material, store the desired result of generation in
|
* generate material, store the desired result of generation in
|
||||||
* the mock secure element storage. */
|
* the mock secure element storage. */
|
||||||
PSA_ASSERT( psa_get_key_attributes( drv_handle, &drv_attributes ) );
|
PSA_ASSERT( psa_get_key_attributes( drv_handle, &drv_attributes ) );
|
||||||
TEST_ASSERT( key_material->len == PSA_BITS_TO_BYTES( bits ) );
|
TEST_EQUAL( key_material->len, PSA_BITS_TO_BYTES( bits ) );
|
||||||
memcpy( ram_slots[ram_min_slot].content, key_material->x,
|
memcpy( ram_slots[ram_min_slot].content, key_material->x,
|
||||||
key_material->len );
|
key_material->len );
|
||||||
}
|
}
|
||||||
|
@ -1355,6 +1410,7 @@ exit:
|
||||||
|
|
||||||
/* BEGIN_CASE */
|
/* BEGIN_CASE */
|
||||||
void register_key_smoke_test( int lifetime_arg,
|
void register_key_smoke_test( int lifetime_arg,
|
||||||
|
int id_arg,
|
||||||
int validate,
|
int validate,
|
||||||
int expected_status_arg )
|
int expected_status_arg )
|
||||||
{
|
{
|
||||||
|
@ -1364,7 +1420,7 @@ void register_key_smoke_test( int lifetime_arg,
|
||||||
psa_drv_se_t driver;
|
psa_drv_se_t driver;
|
||||||
psa_drv_se_key_management_t key_management;
|
psa_drv_se_key_management_t key_management;
|
||||||
psa_key_attributes_t attributes = PSA_KEY_ATTRIBUTES_INIT;
|
psa_key_attributes_t attributes = PSA_KEY_ATTRIBUTES_INIT;
|
||||||
psa_key_id_t id = 1;
|
psa_key_id_t id = id_arg;
|
||||||
size_t bit_size = 48;
|
size_t bit_size = 48;
|
||||||
psa_key_slot_number_t wanted_slot = 0x123456789;
|
psa_key_slot_number_t wanted_slot = 0x123456789;
|
||||||
psa_key_handle_t handle = 0;
|
psa_key_handle_t handle = 0;
|
||||||
|
|
Загрузка…
Ссылка в новой задаче