2018-11-30 18:54:54 +01:00
|
|
|
/*
|
|
|
|
* PSA crypto layer on top of Mbed TLS crypto
|
|
|
|
*/
|
2020-06-15 11:59:37 +02:00
|
|
|
/*
|
2020-08-07 13:07:28 +02:00
|
|
|
* Copyright The Mbed TLS Contributors
|
2018-11-30 18:54:54 +01:00
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License"); you may
|
|
|
|
* not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
|
|
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef PSA_CRYPTO_SLOT_MANAGEMENT_H
|
|
|
|
#define PSA_CRYPTO_SLOT_MANAGEMENT_H
|
|
|
|
|
2019-06-26 18:34:38 +02:00
|
|
|
#include "psa/crypto.h"
|
2020-07-31 11:26:37 +02:00
|
|
|
#include "psa_crypto_core.h"
|
2019-06-26 18:34:38 +02:00
|
|
|
#include "psa_crypto_se.h"
|
|
|
|
|
2020-07-17 14:13:26 +02:00
|
|
|
/** Range of volatile key identifiers.
|
|
|
|
*
|
2021-02-15 14:03:19 +01:00
|
|
|
* The last #MBEDTLS_PSA_KEY_SLOT_COUNT identifiers of the implementation
|
|
|
|
* range of key identifiers are reserved for volatile key identifiers.
|
2020-10-19 12:06:30 +02:00
|
|
|
* A volatile key identifier is equal to #PSA_KEY_ID_VOLATILE_MIN plus the
|
2020-07-17 14:13:26 +02:00
|
|
|
* index of the key slot containing the volatile key definition.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/** The minimum value for a volatile key identifier.
|
|
|
|
*/
|
2023-01-11 14:50:10 +01:00
|
|
|
#define PSA_KEY_ID_VOLATILE_MIN (PSA_KEY_ID_VENDOR_MAX - \
|
|
|
|
MBEDTLS_PSA_KEY_SLOT_COUNT + 1)
|
2020-07-17 14:13:26 +02:00
|
|
|
|
|
|
|
/** The maximum value for a volatile key identifier.
|
|
|
|
*/
|
|
|
|
#define PSA_KEY_ID_VOLATILE_MAX PSA_KEY_ID_VENDOR_MAX
|
|
|
|
|
2020-10-15 11:17:11 +02:00
|
|
|
/** Test whether a key identifier is a volatile key identifier.
|
|
|
|
*
|
|
|
|
* \param key_id Key identifier to test.
|
|
|
|
*
|
|
|
|
* \retval 1
|
|
|
|
* The key identifier is a volatile key identifier.
|
|
|
|
* \retval 0
|
|
|
|
* The key identifier is not a volatile key identifier.
|
|
|
|
*/
|
2023-01-11 14:50:10 +01:00
|
|
|
static inline int psa_key_id_is_volatile(psa_key_id_t key_id)
|
2020-10-15 11:17:11 +02:00
|
|
|
{
|
2023-01-11 14:50:10 +01:00
|
|
|
return (key_id >= PSA_KEY_ID_VOLATILE_MIN) &&
|
|
|
|
(key_id <= PSA_KEY_ID_VOLATILE_MAX);
|
2020-10-15 11:17:11 +02:00
|
|
|
}
|
|
|
|
|
2020-11-14 16:35:34 +01:00
|
|
|
/** Get the description of a key given its identifier and lock it.
|
2018-12-10 17:00:38 +01:00
|
|
|
*
|
2020-11-14 16:35:34 +01:00
|
|
|
* The descriptions of volatile keys and loaded persistent keys are stored in
|
|
|
|
* key slots. This function returns a pointer to the key slot containing the
|
|
|
|
* description of a key given its identifier.
|
2020-07-31 11:26:37 +02:00
|
|
|
*
|
2020-11-14 16:35:34 +01:00
|
|
|
* In case of a persistent key, the function loads the description of the key
|
|
|
|
* into a key slot if not already done.
|
2020-07-31 11:26:37 +02:00
|
|
|
*
|
2020-11-14 16:35:34 +01:00
|
|
|
* On success, the returned key slot is locked. It is the responsibility of
|
|
|
|
* the caller to unlock the key slot when it does not access it anymore.
|
2020-10-22 15:24:49 +02:00
|
|
|
*
|
2020-07-31 11:26:37 +02:00
|
|
|
* \param key Key identifier to query.
|
2018-12-10 17:00:38 +01:00
|
|
|
* \param[out] p_slot On success, `*p_slot` contains a pointer to the
|
2020-07-31 11:26:37 +02:00
|
|
|
* key slot containing the description of the key
|
|
|
|
* identified by \p key.
|
2018-12-10 17:00:38 +01:00
|
|
|
*
|
2020-07-31 11:26:37 +02:00
|
|
|
* \retval #PSA_SUCCESS
|
2020-11-18 17:21:22 +01:00
|
|
|
* \p *p_slot contains a pointer to the key slot containing the
|
|
|
|
* description of the key identified by \p key.
|
|
|
|
* The key slot counter has been incremented.
|
2020-07-31 11:26:37 +02:00
|
|
|
* \retval #PSA_ERROR_BAD_STATE
|
2018-12-10 17:00:38 +01:00
|
|
|
* The library has not been initialized.
|
2020-07-31 11:26:37 +02:00
|
|
|
* \retval #PSA_ERROR_INVALID_HANDLE
|
|
|
|
* \p key is not a valid key identifier.
|
|
|
|
* \retval #PSA_ERROR_INSUFFICIENT_MEMORY
|
|
|
|
* \p key is a persistent key identifier. The implementation does not
|
|
|
|
* have sufficient resources to load the persistent key. This can be
|
|
|
|
* due to a lack of empty key slot, or available memory.
|
|
|
|
* \retval #PSA_ERROR_DOES_NOT_EXIST
|
|
|
|
* There is no key with key identifier \p key.
|
|
|
|
* \retval #PSA_ERROR_CORRUPTION_DETECTED
|
|
|
|
* \retval #PSA_ERROR_STORAGE_FAILURE
|
|
|
|
* \retval #PSA_ERROR_DATA_CORRUPT
|
2018-12-10 17:00:38 +01:00
|
|
|
*/
|
2023-01-11 14:50:10 +01:00
|
|
|
psa_status_t psa_get_and_lock_key_slot(mbedtls_svc_key_id_t key,
|
|
|
|
psa_key_slot_t **p_slot);
|
2018-12-10 16:29:04 +01:00
|
|
|
|
2018-12-10 17:00:38 +01:00
|
|
|
/** Initialize the key slot structures.
|
|
|
|
*
|
2020-10-19 12:06:30 +02:00
|
|
|
* \retval #PSA_SUCCESS
|
2018-12-10 17:00:38 +01:00
|
|
|
* Currently this function always succeeds.
|
|
|
|
*/
|
2023-01-11 14:50:10 +01:00
|
|
|
psa_status_t psa_initialize_key_slots(void);
|
2018-12-10 16:29:04 +01:00
|
|
|
|
2018-12-10 17:00:38 +01:00
|
|
|
/** Delete all data from key slots in memory.
|
|
|
|
*
|
|
|
|
* This does not affect persistent storage. */
|
2023-01-11 14:50:10 +01:00
|
|
|
void psa_wipe_all_key_slots(void);
|
2018-12-10 16:29:04 +01:00
|
|
|
|
2019-07-31 15:01:55 +02:00
|
|
|
/** Find a free key slot.
|
|
|
|
*
|
|
|
|
* This function returns a key slot that is available for use and is in its
|
2020-11-14 16:35:34 +01:00
|
|
|
* ground state (all-bits-zero). On success, the key slot is locked. It is
|
|
|
|
* the responsibility of the caller to unlock the key slot when it does not
|
|
|
|
* access it anymore.
|
2019-05-27 14:53:10 +02:00
|
|
|
*
|
2020-07-17 14:13:26 +02:00
|
|
|
* \param[out] volatile_key_id On success, volatile key identifier
|
|
|
|
* associated to the returned slot.
|
|
|
|
* \param[out] p_slot On success, a pointer to the slot.
|
2019-05-27 14:53:10 +02:00
|
|
|
*
|
|
|
|
* \retval #PSA_SUCCESS
|
|
|
|
* \retval #PSA_ERROR_INSUFFICIENT_MEMORY
|
2019-05-27 19:01:54 +02:00
|
|
|
* \retval #PSA_ERROR_BAD_STATE
|
2019-05-27 14:53:10 +02:00
|
|
|
*/
|
2023-01-11 14:50:10 +01:00
|
|
|
psa_status_t psa_get_empty_key_slot(psa_key_id_t *volatile_key_id,
|
|
|
|
psa_key_slot_t **p_slot);
|
2019-05-27 14:53:10 +02:00
|
|
|
|
2020-11-14 16:35:34 +01:00
|
|
|
/** Lock a key slot.
|
2020-10-22 15:24:49 +02:00
|
|
|
*
|
2020-11-14 16:35:34 +01:00
|
|
|
* This function increments the key slot lock counter by one.
|
2020-10-22 15:24:49 +02:00
|
|
|
*
|
|
|
|
* \param[in] slot The key slot.
|
2020-11-13 15:59:59 +01:00
|
|
|
*
|
|
|
|
* \retval #PSA_SUCCESS
|
2020-11-14 16:35:34 +01:00
|
|
|
The key slot lock counter was incremented.
|
2020-11-13 15:59:59 +01:00
|
|
|
* \retval #PSA_ERROR_CORRUPTION_DETECTED
|
2020-11-14 16:35:34 +01:00
|
|
|
* The lock counter already reached its maximum value and was not
|
2020-11-13 15:59:59 +01:00
|
|
|
* increased.
|
2020-10-22 15:24:49 +02:00
|
|
|
*/
|
2023-01-11 14:50:10 +01:00
|
|
|
static inline psa_status_t psa_lock_key_slot(psa_key_slot_t *slot)
|
2020-10-22 15:24:49 +02:00
|
|
|
{
|
2023-01-11 14:50:10 +01:00
|
|
|
if (slot->lock_count >= SIZE_MAX) {
|
|
|
|
return PSA_ERROR_CORRUPTION_DETECTED;
|
|
|
|
}
|
2020-11-13 15:59:59 +01:00
|
|
|
|
2020-11-14 16:35:34 +01:00
|
|
|
slot->lock_count++;
|
2020-11-13 15:59:59 +01:00
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
return PSA_SUCCESS;
|
2020-10-22 15:24:49 +02:00
|
|
|
}
|
|
|
|
|
2020-11-14 16:35:34 +01:00
|
|
|
/** Unlock a key slot.
|
2020-10-22 15:24:49 +02:00
|
|
|
*
|
2020-11-14 16:35:34 +01:00
|
|
|
* This function decrements the key slot lock counter by one.
|
2020-10-22 15:24:49 +02:00
|
|
|
*
|
|
|
|
* \note To ease the handling of errors in retrieving a key slot
|
|
|
|
* a NULL input pointer is valid, and the function returns
|
|
|
|
* successfully without doing anything in that case.
|
|
|
|
*
|
|
|
|
* \param[in] slot The key slot.
|
|
|
|
* \retval #PSA_SUCCESS
|
2020-11-14 16:35:34 +01:00
|
|
|
* \p slot is NULL or the key slot lock counter has been
|
2020-10-22 15:24:49 +02:00
|
|
|
* decremented successfully.
|
|
|
|
* \retval #PSA_ERROR_CORRUPTION_DETECTED
|
2020-11-14 16:35:34 +01:00
|
|
|
* The lock counter was equal to 0.
|
2020-10-22 15:24:49 +02:00
|
|
|
*
|
|
|
|
*/
|
2023-01-11 14:50:10 +01:00
|
|
|
psa_status_t psa_unlock_key_slot(psa_key_slot_t *slot);
|
2020-10-22 15:24:49 +02:00
|
|
|
|
2019-06-26 18:34:38 +02:00
|
|
|
/** Test whether a lifetime designates a key in an external cryptoprocessor.
|
|
|
|
*
|
|
|
|
* \param lifetime The lifetime to test.
|
|
|
|
*
|
|
|
|
* \retval 1
|
|
|
|
* The lifetime designates an external key. There should be a
|
|
|
|
* registered driver for this lifetime, otherwise the key cannot
|
|
|
|
* be created or manipulated.
|
|
|
|
* \retval 0
|
|
|
|
* The lifetime designates a key that is volatile or in internal
|
|
|
|
* storage.
|
|
|
|
*/
|
2023-01-11 14:50:10 +01:00
|
|
|
static inline int psa_key_lifetime_is_external(psa_key_lifetime_t lifetime)
|
2019-06-26 18:34:38 +02:00
|
|
|
{
|
2023-01-11 14:50:10 +01:00
|
|
|
return PSA_KEY_LIFETIME_GET_LOCATION(lifetime)
|
|
|
|
!= PSA_KEY_LOCATION_LOCAL_STORAGE;
|
2019-06-26 18:34:38 +02:00
|
|
|
}
|
|
|
|
|
2020-06-17 14:52:05 +02:00
|
|
|
/** Validate a key's location.
|
2019-04-19 18:19:40 +02:00
|
|
|
*
|
2020-06-08 18:37:19 +02:00
|
|
|
* This function checks whether the key's attributes point to a location that
|
|
|
|
* is known to the PSA Core, and returns the driver function table if the key
|
|
|
|
* is to be found in an external location.
|
2019-04-19 18:19:40 +02:00
|
|
|
*
|
2020-06-17 14:52:05 +02:00
|
|
|
* \param[in] lifetime The key lifetime attribute.
|
2020-06-08 18:37:19 +02:00
|
|
|
* \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.
|
2019-06-26 18:34:38 +02:00
|
|
|
*
|
2020-06-08 18:37:19 +02:00
|
|
|
* \retval #PSA_SUCCESS
|
|
|
|
* \retval #PSA_ERROR_INVALID_ARGUMENT
|
|
|
|
*/
|
2023-01-11 14:50:10 +01:00
|
|
|
psa_status_t psa_validate_key_location(psa_key_lifetime_t lifetime,
|
|
|
|
psa_se_drv_table_entry_t **p_drv);
|
2020-06-08 18:37:19 +02:00
|
|
|
|
2020-07-17 16:11:30 +02:00
|
|
|
/** Validate the persistence of a key.
|
2020-06-08 18:37:19 +02:00
|
|
|
*
|
2020-07-23 12:30:41 +02:00
|
|
|
* \param[in] lifetime The key lifetime attribute.
|
2020-06-08 18:37:19 +02:00
|
|
|
*
|
|
|
|
* \retval #PSA_SUCCESS
|
2021-04-01 13:59:10 +02:00
|
|
|
* \retval #PSA_ERROR_NOT_SUPPORTED The key is persistent but persistent keys
|
|
|
|
* are not supported.
|
2020-07-17 16:11:30 +02:00
|
|
|
*/
|
2023-01-11 14:50:10 +01:00
|
|
|
psa_status_t psa_validate_key_persistence(psa_key_lifetime_t lifetime);
|
2020-07-17 16:11:30 +02:00
|
|
|
|
|
|
|
/** Validate a key identifier.
|
|
|
|
*
|
2020-10-15 19:24:49 +02:00
|
|
|
* \param[in] key The key identifier.
|
|
|
|
* \param[in] vendor_ok Non-zero to indicate that key identifiers in the
|
|
|
|
* vendor range are allowed, volatile key identifiers
|
|
|
|
* excepted \c 0 otherwise.
|
2020-07-17 16:11:30 +02:00
|
|
|
*
|
2021-03-31 17:36:31 +02:00
|
|
|
* \retval <> 0 if the key identifier is valid, 0 otherwise.
|
2019-04-19 18:19:40 +02:00
|
|
|
*/
|
2023-01-11 14:50:10 +01:00
|
|
|
int psa_is_valid_key_id(mbedtls_svc_key_id_t key, int vendor_ok);
|
2019-04-19 18:19:40 +02:00
|
|
|
|
2018-11-30 18:54:54 +01:00
|
|
|
#endif /* PSA_CRYPTO_SLOT_MANAGEMENT_H */
|