Gilles Peskine | 961849f | 2018-11-30 18:54:54 +0100 | [diff] [blame] | 1 | /* |
| 2 | * PSA crypto layer on top of Mbed TLS crypto |
| 3 | */ |
Bence Szépkúti | 8697465 | 2020-06-15 11:59:37 +0200 | [diff] [blame] | 4 | /* |
Bence Szépkúti | 1e14827 | 2020-08-07 13:07:28 +0200 | [diff] [blame] | 5 | * Copyright The Mbed TLS Contributors |
Gilles Peskine | 961849f | 2018-11-30 18:54:54 +0100 | [diff] [blame] | 6 | * SPDX-License-Identifier: Apache-2.0 |
| 7 | * |
| 8 | * Licensed under the Apache License, Version 2.0 (the "License"); you may |
| 9 | * not use this file except in compliance with the License. |
| 10 | * You may obtain a copy of the License at |
| 11 | * |
| 12 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 13 | * |
| 14 | * Unless required by applicable law or agreed to in writing, software |
| 15 | * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT |
| 16 | * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 17 | * See the License for the specific language governing permissions and |
| 18 | * limitations under the License. |
Gilles Peskine | 961849f | 2018-11-30 18:54:54 +0100 | [diff] [blame] | 19 | */ |
| 20 | |
Gilles Peskine | db09ef6 | 2020-06-03 01:43:33 +0200 | [diff] [blame] | 21 | #include "common.h" |
Gilles Peskine | 961849f | 2018-11-30 18:54:54 +0100 | [diff] [blame] | 22 | |
| 23 | #if defined(MBEDTLS_PSA_CRYPTO_C) |
| 24 | |
itayzafrir | 7723ab1 | 2019-02-14 10:28:02 +0200 | [diff] [blame] | 25 | #include "psa_crypto_service_integration.h" |
Gilles Peskine | 961849f | 2018-11-30 18:54:54 +0100 | [diff] [blame] | 26 | #include "psa/crypto.h" |
| 27 | |
Gilles Peskine | 66fb126 | 2018-12-10 16:29:04 +0100 | [diff] [blame] | 28 | #include "psa_crypto_core.h" |
Gilles Peskine | 961849f | 2018-11-30 18:54:54 +0100 | [diff] [blame] | 29 | #include "psa_crypto_slot_management.h" |
| 30 | #include "psa_crypto_storage.h" |
Gilles Peskine | b46bef2 | 2019-07-30 21:32:04 +0200 | [diff] [blame] | 31 | #if defined(MBEDTLS_PSA_CRYPTO_SE_C) |
| 32 | #include "psa_crypto_se.h" |
| 33 | #endif |
Gilles Peskine | 961849f | 2018-11-30 18:54:54 +0100 | [diff] [blame] | 34 | |
| 35 | #include <stdlib.h> |
| 36 | #include <string.h> |
| 37 | #if defined(MBEDTLS_PLATFORM_C) |
| 38 | #include "mbedtls/platform.h" |
| 39 | #else |
| 40 | #define mbedtls_calloc calloc |
| 41 | #define mbedtls_free free |
| 42 | #endif |
| 43 | |
| 44 | #define ARRAY_LENGTH( array ) ( sizeof( array ) / sizeof( *( array ) ) ) |
| 45 | |
Gilles Peskine | 66fb126 | 2018-12-10 16:29:04 +0100 | [diff] [blame] | 46 | typedef struct |
| 47 | { |
| 48 | psa_key_slot_t key_slots[PSA_KEY_SLOT_COUNT]; |
| 49 | unsigned key_slots_initialized : 1; |
| 50 | } psa_global_data_t; |
| 51 | |
Gilles Peskine | 2e14bd3 | 2018-12-12 14:05:08 +0100 | [diff] [blame] | 52 | static psa_global_data_t global_data; |
Gilles Peskine | 66fb126 | 2018-12-10 16:29:04 +0100 | [diff] [blame] | 53 | |
Ronald Cron | fc9c556 | 2020-10-15 19:24:49 +0200 | [diff] [blame] | 54 | psa_status_t psa_validate_key_id( |
Ronald Cron | cbd7bea | 2020-11-11 14:57:44 +0100 | [diff] [blame^] | 55 | mbedtls_svc_key_id_t key, int vendor_ok ) |
Ronald Cron | d2ed481 | 2020-07-17 16:11:30 +0200 | [diff] [blame] | 56 | { |
| 57 | psa_key_id_t key_id = MBEDTLS_SVC_KEY_ID_GET_KEY_ID( key ); |
| 58 | |
| 59 | if( ( PSA_KEY_ID_USER_MIN <= key_id ) && |
| 60 | ( key_id <= PSA_KEY_ID_USER_MAX ) ) |
| 61 | return( PSA_SUCCESS ); |
| 62 | |
| 63 | if( vendor_ok && |
| 64 | ( PSA_KEY_ID_VENDOR_MIN <= key_id ) && |
Ronald Cron | cbd7bea | 2020-11-11 14:57:44 +0100 | [diff] [blame^] | 65 | ( key_id <= PSA_KEY_ID_VENDOR_MAX ) ) |
Ronald Cron | d2ed481 | 2020-07-17 16:11:30 +0200 | [diff] [blame] | 66 | return( PSA_SUCCESS ); |
| 67 | |
Ronald Cron | c4d1b51 | 2020-07-31 11:26:37 +0200 | [diff] [blame] | 68 | return( PSA_ERROR_INVALID_HANDLE ); |
Ronald Cron | d2ed481 | 2020-07-17 16:11:30 +0200 | [diff] [blame] | 69 | } |
| 70 | |
Ronald Cron | 97c8ad5 | 2020-10-15 11:17:11 +0200 | [diff] [blame] | 71 | /** Search for the description of a key given its identifier. |
| 72 | * |
| 73 | * The descriptions of volatile keys and loaded persistent keys are |
| 74 | * stored in key slots. This function returns a pointer to the key slot |
| 75 | * containing the description of a key given its identifier. |
| 76 | * |
| 77 | * The function searches the key slots containing the description of the key |
| 78 | * with \p key identifier. The function does only read accesses to the key |
| 79 | * slots. The function does not load any persistent key thus does not access |
| 80 | * any storage. |
| 81 | * |
| 82 | * For volatile key identifiers, only one key slot is queried as a volatile |
| 83 | * key with identifier key_id can only be stored in slot of index |
Ronald Cron | 9678355 | 2020-10-19 12:06:30 +0200 | [diff] [blame] | 84 | * ( key_id - #PSA_KEY_ID_VOLATILE_MIN ). |
Ronald Cron | 97c8ad5 | 2020-10-15 11:17:11 +0200 | [diff] [blame] | 85 | * |
Ronald Cron | f95a2b1 | 2020-10-22 15:24:49 +0200 | [diff] [blame] | 86 | * On success, the access counter of the returned key slot is incremented by |
| 87 | * one. It is the responsibility of the caller to call |
| 88 | * psa_decrement_key_slot_access_count() when it does not access the key slot |
| 89 | * anymore. |
| 90 | * |
Ronald Cron | 97c8ad5 | 2020-10-15 11:17:11 +0200 | [diff] [blame] | 91 | * \param key Key identifier to query. |
| 92 | * \param[out] p_slot On success, `*p_slot` contains a pointer to the |
| 93 | * key slot containing the description of the key |
| 94 | * identified by \p key. |
| 95 | * |
Ronald Cron | 9678355 | 2020-10-19 12:06:30 +0200 | [diff] [blame] | 96 | * \retval #PSA_SUCCESS |
Ronald Cron | 97c8ad5 | 2020-10-15 11:17:11 +0200 | [diff] [blame] | 97 | * The pointer to the key slot containing the description of the key |
| 98 | * identified by \p key was returned. |
Ronald Cron | 9678355 | 2020-10-19 12:06:30 +0200 | [diff] [blame] | 99 | * \retval #PSA_ERROR_INVALID_HANDLE |
Ronald Cron | 97c8ad5 | 2020-10-15 11:17:11 +0200 | [diff] [blame] | 100 | * \p key is not a valid key identifier. |
| 101 | * \retval #PSA_ERROR_DOES_NOT_EXIST |
| 102 | * There is no key with key identifier \p key in the key slots. |
| 103 | */ |
| 104 | static psa_status_t psa_search_key_in_slots( |
| 105 | mbedtls_svc_key_id_t key, psa_key_slot_t **p_slot ) |
Gilles Peskine | 66fb126 | 2018-12-10 16:29:04 +0100 | [diff] [blame] | 106 | { |
Ronald Cron | f473d8b | 2020-11-12 10:07:21 +0100 | [diff] [blame] | 107 | psa_status_t status = PSA_ERROR_CORRUPTION_DETECTED; |
Ronald Cron | c4d1b51 | 2020-07-31 11:26:37 +0200 | [diff] [blame] | 108 | psa_key_id_t key_id = MBEDTLS_SVC_KEY_ID_GET_KEY_ID( key ); |
Ronald Cron | f473d8b | 2020-11-12 10:07:21 +0100 | [diff] [blame] | 109 | size_t slot_idx; |
Ronald Cron | 97c8ad5 | 2020-10-15 11:17:11 +0200 | [diff] [blame] | 110 | psa_key_slot_t *slot = NULL; |
Gilles Peskine | 66fb126 | 2018-12-10 16:29:04 +0100 | [diff] [blame] | 111 | |
Ronald Cron | 97c8ad5 | 2020-10-15 11:17:11 +0200 | [diff] [blame] | 112 | if( psa_key_id_is_volatile( key_id ) ) |
Ronald Cron | c4d1b51 | 2020-07-31 11:26:37 +0200 | [diff] [blame] | 113 | { |
Ronald Cron | 97c8ad5 | 2020-10-15 11:17:11 +0200 | [diff] [blame] | 114 | slot = &global_data.key_slots[ key_id - PSA_KEY_ID_VOLATILE_MIN ]; |
Ronald Cron | f473d8b | 2020-11-12 10:07:21 +0100 | [diff] [blame] | 115 | status = mbedtls_svc_key_id_equal( key, slot->attr.id ) ? |
| 116 | PSA_SUCCESS : PSA_ERROR_DOES_NOT_EXIST; |
Ronald Cron | 97c8ad5 | 2020-10-15 11:17:11 +0200 | [diff] [blame] | 117 | } |
| 118 | else |
| 119 | { |
Ronald Cron | cbd7bea | 2020-11-11 14:57:44 +0100 | [diff] [blame^] | 120 | status = psa_validate_key_id( key, 1 ); |
Ronald Cron | f473d8b | 2020-11-12 10:07:21 +0100 | [diff] [blame] | 121 | if( status != PSA_SUCCESS ) |
| 122 | return( status ); |
Ronald Cron | 97c8ad5 | 2020-10-15 11:17:11 +0200 | [diff] [blame] | 123 | |
Ronald Cron | f473d8b | 2020-11-12 10:07:21 +0100 | [diff] [blame] | 124 | for( slot_idx = 0; slot_idx < PSA_KEY_SLOT_COUNT; slot_idx++ ) |
Ronald Cron | 97c8ad5 | 2020-10-15 11:17:11 +0200 | [diff] [blame] | 125 | { |
Ronald Cron | f473d8b | 2020-11-12 10:07:21 +0100 | [diff] [blame] | 126 | slot = &global_data.key_slots[ slot_idx ]; |
Ronald Cron | 97c8ad5 | 2020-10-15 11:17:11 +0200 | [diff] [blame] | 127 | if( mbedtls_svc_key_id_equal( key, slot->attr.id ) ) |
Ronald Cron | 97c8ad5 | 2020-10-15 11:17:11 +0200 | [diff] [blame] | 128 | break; |
Ronald Cron | 97c8ad5 | 2020-10-15 11:17:11 +0200 | [diff] [blame] | 129 | } |
Ronald Cron | f473d8b | 2020-11-12 10:07:21 +0100 | [diff] [blame] | 130 | status = ( slot_idx < PSA_KEY_SLOT_COUNT ) ? |
| 131 | PSA_SUCCESS : PSA_ERROR_DOES_NOT_EXIST; |
Ronald Cron | c4d1b51 | 2020-07-31 11:26:37 +0200 | [diff] [blame] | 132 | } |
| 133 | |
Ronald Cron | 97c8ad5 | 2020-10-15 11:17:11 +0200 | [diff] [blame] | 134 | if( status == PSA_SUCCESS ) |
Ronald Cron | f95a2b1 | 2020-10-22 15:24:49 +0200 | [diff] [blame] | 135 | { |
Ronald Cron | 97c8ad5 | 2020-10-15 11:17:11 +0200 | [diff] [blame] | 136 | *p_slot = slot; |
Ronald Cron | f95a2b1 | 2020-10-22 15:24:49 +0200 | [diff] [blame] | 137 | psa_increment_key_slot_access_count( slot ); |
| 138 | } |
Ronald Cron | 97c8ad5 | 2020-10-15 11:17:11 +0200 | [diff] [blame] | 139 | |
| 140 | return( status ); |
Ronald Cron | c4d1b51 | 2020-07-31 11:26:37 +0200 | [diff] [blame] | 141 | } |
Ronald Cron | c4d1b51 | 2020-07-31 11:26:37 +0200 | [diff] [blame] | 142 | |
Gilles Peskine | 66fb126 | 2018-12-10 16:29:04 +0100 | [diff] [blame] | 143 | psa_status_t psa_initialize_key_slots( void ) |
| 144 | { |
| 145 | /* Nothing to do: program startup and psa_wipe_all_key_slots() both |
| 146 | * guarantee that the key slots are initialized to all-zero, which |
| 147 | * means that all the key slots are in a valid, empty state. */ |
| 148 | global_data.key_slots_initialized = 1; |
| 149 | return( PSA_SUCCESS ); |
| 150 | } |
| 151 | |
| 152 | void psa_wipe_all_key_slots( void ) |
| 153 | { |
Ronald Cron | 98a54dd | 2020-07-24 16:33:11 +0200 | [diff] [blame] | 154 | size_t slot_idx; |
| 155 | |
| 156 | for( slot_idx = 0; slot_idx < PSA_KEY_SLOT_COUNT; slot_idx++ ) |
Gilles Peskine | 66fb126 | 2018-12-10 16:29:04 +0100 | [diff] [blame] | 157 | { |
Ronald Cron | 98a54dd | 2020-07-24 16:33:11 +0200 | [diff] [blame] | 158 | psa_key_slot_t *slot = &global_data.key_slots[ slot_idx ]; |
Ronald Cron | ddd3d05 | 2020-10-30 14:07:07 +0100 | [diff] [blame] | 159 | slot->access_count = 1; |
Gilles Peskine | 66fb126 | 2018-12-10 16:29:04 +0100 | [diff] [blame] | 160 | (void) psa_wipe_key_slot( slot ); |
| 161 | } |
| 162 | global_data.key_slots_initialized = 0; |
| 163 | } |
| 164 | |
Ronald Cron | c4d1b51 | 2020-07-31 11:26:37 +0200 | [diff] [blame] | 165 | psa_status_t psa_get_empty_key_slot( psa_key_id_t *volatile_key_id, |
Ronald Cron | 2a99315 | 2020-07-17 14:13:26 +0200 | [diff] [blame] | 166 | psa_key_slot_t **p_slot ) |
Gilles Peskine | 66fb126 | 2018-12-10 16:29:04 +0100 | [diff] [blame] | 167 | { |
Ronald Cron | a5b894f | 2020-10-21 09:04:34 +0200 | [diff] [blame] | 168 | psa_status_t status = PSA_ERROR_CORRUPTION_DETECTED; |
Ronald Cron | 98a54dd | 2020-07-24 16:33:11 +0200 | [diff] [blame] | 169 | size_t slot_idx; |
Ronald Cron | 19daca9 | 2020-11-10 18:08:03 +0100 | [diff] [blame] | 170 | psa_key_slot_t *selected_slot, *unaccessed_persistent_key_slot; |
Ronald Cron | 98a54dd | 2020-07-24 16:33:11 +0200 | [diff] [blame] | 171 | |
Gilles Peskine | 267c656 | 2019-05-27 19:01:54 +0200 | [diff] [blame] | 172 | if( ! global_data.key_slots_initialized ) |
Gilles Peskine | 66fb126 | 2018-12-10 16:29:04 +0100 | [diff] [blame] | 173 | { |
Ronald Cron | a5b894f | 2020-10-21 09:04:34 +0200 | [diff] [blame] | 174 | status = PSA_ERROR_BAD_STATE; |
| 175 | goto error; |
Gilles Peskine | 66fb126 | 2018-12-10 16:29:04 +0100 | [diff] [blame] | 176 | } |
Ronald Cron | f95a2b1 | 2020-10-22 15:24:49 +0200 | [diff] [blame] | 177 | |
Ronald Cron | 19daca9 | 2020-11-10 18:08:03 +0100 | [diff] [blame] | 178 | selected_slot = unaccessed_persistent_key_slot = NULL; |
Ronald Cron | a5b894f | 2020-10-21 09:04:34 +0200 | [diff] [blame] | 179 | for( slot_idx = 0; slot_idx < PSA_KEY_SLOT_COUNT; slot_idx++ ) |
| 180 | { |
| 181 | psa_key_slot_t *slot = &global_data.key_slots[ slot_idx ]; |
| 182 | if( ! psa_is_key_slot_occupied( slot ) ) |
| 183 | { |
| 184 | selected_slot = slot; |
| 185 | break; |
| 186 | } |
| 187 | |
Ronald Cron | 19daca9 | 2020-11-10 18:08:03 +0100 | [diff] [blame] | 188 | if( ( unaccessed_persistent_key_slot == NULL ) && |
Ronald Cron | a5b894f | 2020-10-21 09:04:34 +0200 | [diff] [blame] | 189 | ( ! PSA_KEY_LIFETIME_IS_VOLATILE( slot->attr.lifetime ) ) && |
| 190 | ( ! psa_is_key_slot_accessed( slot ) ) ) |
Ronald Cron | 19daca9 | 2020-11-10 18:08:03 +0100 | [diff] [blame] | 191 | unaccessed_persistent_key_slot = slot; |
Ronald Cron | a5b894f | 2020-10-21 09:04:34 +0200 | [diff] [blame] | 192 | } |
| 193 | |
| 194 | /* |
| 195 | * If there is no unused key slot and there is at least one unaccessed key |
| 196 | * slot containing the description of a permament key, recycle the first |
| 197 | * such key slot we encountered. If we need later on to operate on the |
Ronald Cron | 19daca9 | 2020-11-10 18:08:03 +0100 | [diff] [blame] | 198 | * persistent key we evict now, we will reload its description from |
| 199 | * storage. |
Ronald Cron | a5b894f | 2020-10-21 09:04:34 +0200 | [diff] [blame] | 200 | */ |
| 201 | if( ( selected_slot == NULL ) && |
Ronald Cron | 19daca9 | 2020-11-10 18:08:03 +0100 | [diff] [blame] | 202 | ( unaccessed_persistent_key_slot != NULL ) ) |
Ronald Cron | a5b894f | 2020-10-21 09:04:34 +0200 | [diff] [blame] | 203 | { |
Ronald Cron | 19daca9 | 2020-11-10 18:08:03 +0100 | [diff] [blame] | 204 | selected_slot = unaccessed_persistent_key_slot; |
Ronald Cron | a5b894f | 2020-10-21 09:04:34 +0200 | [diff] [blame] | 205 | selected_slot->access_count = 1; |
| 206 | psa_wipe_key_slot( selected_slot ); |
| 207 | } |
| 208 | |
| 209 | if( selected_slot != NULL ) |
| 210 | { |
| 211 | *volatile_key_id = PSA_KEY_ID_VOLATILE_MIN + |
| 212 | ( (psa_key_id_t)( selected_slot - global_data.key_slots ) ); |
| 213 | *p_slot = selected_slot; |
| 214 | psa_increment_key_slot_access_count( selected_slot ); |
| 215 | |
| 216 | return( PSA_SUCCESS ); |
| 217 | } |
| 218 | status = PSA_ERROR_INSUFFICIENT_MEMORY; |
| 219 | |
| 220 | error: |
Gilles Peskine | 267c656 | 2019-05-27 19:01:54 +0200 | [diff] [blame] | 221 | *p_slot = NULL; |
Ronald Cron | a5b894f | 2020-10-21 09:04:34 +0200 | [diff] [blame] | 222 | *volatile_key_id = 0; |
| 223 | |
| 224 | return( status ); |
Gilles Peskine | 66fb126 | 2018-12-10 16:29:04 +0100 | [diff] [blame] | 225 | } |
| 226 | |
Gilles Peskine | fa4135b | 2018-12-10 16:48:53 +0100 | [diff] [blame] | 227 | #if defined(MBEDTLS_PSA_CRYPTO_STORAGE_C) |
Gilles Peskine | 2431859 | 2019-07-30 20:30:51 +0200 | [diff] [blame] | 228 | static psa_status_t psa_load_persistent_key_into_slot( psa_key_slot_t *slot ) |
Gilles Peskine | fa4135b | 2018-12-10 16:48:53 +0100 | [diff] [blame] | 229 | { |
| 230 | psa_status_t status = PSA_SUCCESS; |
| 231 | uint8_t *key_data = NULL; |
| 232 | size_t key_data_length = 0; |
| 233 | |
Gilles Peskine | 2431859 | 2019-07-30 20:30:51 +0200 | [diff] [blame] | 234 | status = psa_load_persistent_key( &slot->attr, |
Gilles Peskine | bfd322f | 2019-07-23 11:58:03 +0200 | [diff] [blame] | 235 | &key_data, &key_data_length ); |
Gilles Peskine | fa4135b | 2018-12-10 16:48:53 +0100 | [diff] [blame] | 236 | if( status != PSA_SUCCESS ) |
| 237 | goto exit; |
Gilles Peskine | 1df83d4 | 2019-07-23 16:13:14 +0200 | [diff] [blame] | 238 | |
| 239 | #if defined(MBEDTLS_PSA_CRYPTO_SE_C) |
Gilles Peskine | 2431859 | 2019-07-30 20:30:51 +0200 | [diff] [blame] | 240 | if( psa_key_lifetime_is_external( slot->attr.lifetime ) ) |
Gilles Peskine | 1df83d4 | 2019-07-23 16:13:14 +0200 | [diff] [blame] | 241 | { |
Gilles Peskine | b46bef2 | 2019-07-30 21:32:04 +0200 | [diff] [blame] | 242 | psa_se_key_data_storage_t *data; |
| 243 | if( key_data_length != sizeof( *data ) ) |
Gilles Peskine | 1df83d4 | 2019-07-23 16:13:14 +0200 | [diff] [blame] | 244 | { |
| 245 | status = PSA_ERROR_STORAGE_FAILURE; |
| 246 | goto exit; |
| 247 | } |
Gilles Peskine | b46bef2 | 2019-07-30 21:32:04 +0200 | [diff] [blame] | 248 | data = (psa_se_key_data_storage_t *) key_data; |
| 249 | memcpy( &slot->data.se.slot_number, &data->slot_number, |
| 250 | sizeof( slot->data.se.slot_number ) ); |
Gilles Peskine | 1df83d4 | 2019-07-23 16:13:14 +0200 | [diff] [blame] | 251 | } |
| 252 | else |
| 253 | #endif /* MBEDTLS_PSA_CRYPTO_SE_C */ |
| 254 | { |
Steven Cooreman | 3ea0ce4 | 2020-10-23 11:37:05 +0200 | [diff] [blame] | 255 | status = psa_copy_key_material_into_slot( slot, key_data, key_data_length ); |
| 256 | if( status != PSA_SUCCESS ) |
| 257 | goto exit; |
Gilles Peskine | 1df83d4 | 2019-07-23 16:13:14 +0200 | [diff] [blame] | 258 | } |
| 259 | |
Gilles Peskine | fa4135b | 2018-12-10 16:48:53 +0100 | [diff] [blame] | 260 | exit: |
| 261 | psa_free_persistent_key_data( key_data, key_data_length ); |
| 262 | return( status ); |
| 263 | } |
Ronald Cron | c4d1b51 | 2020-07-31 11:26:37 +0200 | [diff] [blame] | 264 | #endif /* MBEDTLS_PSA_CRYPTO_STORAGE_C */ |
| 265 | |
| 266 | psa_status_t psa_get_key_slot( mbedtls_svc_key_id_t key, |
| 267 | psa_key_slot_t **p_slot ) |
| 268 | { |
Ronald Cron | 97c8ad5 | 2020-10-15 11:17:11 +0200 | [diff] [blame] | 269 | psa_status_t status = PSA_ERROR_CORRUPTION_DETECTED; |
Ronald Cron | c4d1b51 | 2020-07-31 11:26:37 +0200 | [diff] [blame] | 270 | |
| 271 | *p_slot = NULL; |
| 272 | if( ! global_data.key_slots_initialized ) |
| 273 | return( PSA_ERROR_BAD_STATE ); |
| 274 | |
Ronald Cron | f95a2b1 | 2020-10-22 15:24:49 +0200 | [diff] [blame] | 275 | /* |
| 276 | * On success, the pointer to the slot is passed directly to the caller |
| 277 | * thus no need to decrement the key slot access counter here. |
| 278 | */ |
Ronald Cron | 97c8ad5 | 2020-10-15 11:17:11 +0200 | [diff] [blame] | 279 | status = psa_search_key_in_slots( key, p_slot ); |
| 280 | if( status != PSA_ERROR_DOES_NOT_EXIST ) |
Ronald Cron | c4d1b51 | 2020-07-31 11:26:37 +0200 | [diff] [blame] | 281 | return( status ); |
| 282 | |
Ronald Cron | c4d1b51 | 2020-07-31 11:26:37 +0200 | [diff] [blame] | 283 | #if defined(MBEDTLS_PSA_CRYPTO_STORAGE_C) |
| 284 | psa_key_id_t volatile_key_id; |
| 285 | |
Ronald Cron | c4d1b51 | 2020-07-31 11:26:37 +0200 | [diff] [blame] | 286 | status = psa_get_empty_key_slot( &volatile_key_id, p_slot ); |
| 287 | if( status != PSA_SUCCESS ) |
| 288 | return( status ); |
| 289 | |
| 290 | (*p_slot)->attr.lifetime = PSA_KEY_LIFETIME_PERSISTENT; |
| 291 | (*p_slot)->attr.id = key; |
| 292 | |
| 293 | status = psa_load_persistent_key_into_slot( *p_slot ); |
| 294 | if( status != PSA_SUCCESS ) |
| 295 | psa_wipe_key_slot( *p_slot ); |
| 296 | |
| 297 | return( status ); |
| 298 | #else |
| 299 | return( PSA_ERROR_DOES_NOT_EXIST ); |
Gilles Peskine | 30afafd | 2019-04-25 13:47:40 +0200 | [diff] [blame] | 300 | #endif /* defined(MBEDTLS_PSA_CRYPTO_STORAGE_C) */ |
Gilles Peskine | fa4135b | 2018-12-10 16:48:53 +0100 | [diff] [blame] | 301 | |
Ronald Cron | c4d1b51 | 2020-07-31 11:26:37 +0200 | [diff] [blame] | 302 | } |
| 303 | |
Ronald Cron | f95a2b1 | 2020-10-22 15:24:49 +0200 | [diff] [blame] | 304 | psa_status_t psa_decrement_key_slot_access_count( psa_key_slot_t *slot ) |
| 305 | { |
| 306 | if( slot == NULL ) |
| 307 | return( PSA_SUCCESS ); |
| 308 | |
| 309 | if( slot->access_count > 0 ) |
| 310 | { |
| 311 | slot->access_count--; |
| 312 | return( PSA_SUCCESS ); |
| 313 | } |
| 314 | |
| 315 | /* |
| 316 | * As the return error code may not be handled in case of multiple errors, |
| 317 | * do our best to report if the access counter is equal to zero: if |
| 318 | * available call MBEDTLS_PARAM_FAILED that may terminate execution (if |
| 319 | * called as part of the execution of a unit test suite this will stop the |
| 320 | * test suite execution) and if MBEDTLS_PARAM_FAILED does not terminate |
| 321 | * execution ouput an error message on standard error output. |
| 322 | */ |
| 323 | #ifdef MBEDTLS_CHECK_PARAMS |
| 324 | MBEDTLS_PARAM_FAILED( slot->access_count > 0 ); |
| 325 | #endif |
| 326 | #ifdef MBEDTLS_PLATFORM_C |
| 327 | mbedtls_fprintf( stderr, |
| 328 | "\nFATAL psa_decrement_key_slot_access_count Decrementing a zero access counter.\n" ); |
| 329 | #endif |
| 330 | |
| 331 | return( PSA_ERROR_CORRUPTION_DETECTED ); |
| 332 | } |
| 333 | |
Steven Cooreman | 8c1e759 | 2020-06-17 14:52:05 +0200 | [diff] [blame] | 334 | psa_status_t psa_validate_key_location( psa_key_lifetime_t lifetime, |
Steven Cooreman | 81fe7c3 | 2020-06-08 18:37:19 +0200 | [diff] [blame] | 335 | psa_se_drv_table_entry_t **p_drv ) |
Gilles Peskine | d167b94 | 2019-04-19 18:19:40 +0200 | [diff] [blame] | 336 | { |
Steven Cooreman | 81fe7c3 | 2020-06-08 18:37:19 +0200 | [diff] [blame] | 337 | if ( psa_key_lifetime_is_external( lifetime ) ) |
Gilles Peskine | 011e428 | 2019-06-26 18:34:38 +0200 | [diff] [blame] | 338 | { |
Steven Cooreman | 81fe7c3 | 2020-06-08 18:37:19 +0200 | [diff] [blame] | 339 | #if defined(MBEDTLS_PSA_CRYPTO_SE_C) |
Steven Cooreman | 00106a1 | 2020-06-08 18:54:23 +0200 | [diff] [blame] | 340 | psa_se_drv_table_entry_t *driver = psa_get_se_driver_entry( lifetime ); |
| 341 | if( driver == NULL ) |
Gilles Peskine | 011e428 | 2019-06-26 18:34:38 +0200 | [diff] [blame] | 342 | return( PSA_ERROR_INVALID_ARGUMENT ); |
Steven Cooreman | 81fe7c3 | 2020-06-08 18:37:19 +0200 | [diff] [blame] | 343 | else |
| 344 | { |
| 345 | if (p_drv != NULL) |
Steven Cooreman | 00106a1 | 2020-06-08 18:54:23 +0200 | [diff] [blame] | 346 | *p_drv = driver; |
Steven Cooreman | 81fe7c3 | 2020-06-08 18:37:19 +0200 | [diff] [blame] | 347 | return( PSA_SUCCESS ); |
| 348 | } |
| 349 | #else |
| 350 | (void) p_drv; |
| 351 | return( PSA_ERROR_INVALID_ARGUMENT ); |
| 352 | #endif /* MBEDTLS_PSA_CRYPTO_SE_C */ |
Gilles Peskine | 011e428 | 2019-06-26 18:34:38 +0200 | [diff] [blame] | 353 | } |
| 354 | else |
Steven Cooreman | 81fe7c3 | 2020-06-08 18:37:19 +0200 | [diff] [blame] | 355 | /* Local/internal keys are always valid */ |
| 356 | return( PSA_SUCCESS ); |
| 357 | } |
Gilles Peskine | 30afafd | 2019-04-25 13:47:40 +0200 | [diff] [blame] | 358 | |
Ronald Cron | d2ed481 | 2020-07-17 16:11:30 +0200 | [diff] [blame] | 359 | psa_status_t psa_validate_key_persistence( psa_key_lifetime_t lifetime ) |
Steven Cooreman | 81fe7c3 | 2020-06-08 18:37:19 +0200 | [diff] [blame] | 360 | { |
Steven Cooreman | 81fe7c3 | 2020-06-08 18:37:19 +0200 | [diff] [blame] | 361 | if ( PSA_KEY_LIFETIME_IS_VOLATILE( lifetime ) ) |
| 362 | { |
| 363 | /* Volatile keys are always supported */ |
| 364 | return( PSA_SUCCESS ); |
| 365 | } |
| 366 | else |
| 367 | { |
| 368 | /* Persistent keys require storage support */ |
Gilles Peskine | 30afafd | 2019-04-25 13:47:40 +0200 | [diff] [blame] | 369 | #if defined(MBEDTLS_PSA_CRYPTO_STORAGE_C) |
Ronald Cron | d2ed481 | 2020-07-17 16:11:30 +0200 | [diff] [blame] | 370 | return( PSA_SUCCESS ); |
Gilles Peskine | 30afafd | 2019-04-25 13:47:40 +0200 | [diff] [blame] | 371 | #else /* MBEDTLS_PSA_CRYPTO_STORAGE_C */ |
Steven Cooreman | 81fe7c3 | 2020-06-08 18:37:19 +0200 | [diff] [blame] | 372 | return( PSA_ERROR_NOT_SUPPORTED ); |
Gilles Peskine | 30afafd | 2019-04-25 13:47:40 +0200 | [diff] [blame] | 373 | #endif /* !MBEDTLS_PSA_CRYPTO_STORAGE_C */ |
Steven Cooreman | 81fe7c3 | 2020-06-08 18:37:19 +0200 | [diff] [blame] | 374 | } |
Gilles Peskine | d167b94 | 2019-04-19 18:19:40 +0200 | [diff] [blame] | 375 | } |
| 376 | |
Ronald Cron | 71016a9 | 2020-08-28 19:01:50 +0200 | [diff] [blame] | 377 | psa_status_t psa_open_key( mbedtls_svc_key_id_t key, psa_key_handle_t *handle ) |
Gilles Peskine | 961849f | 2018-11-30 18:54:54 +0100 | [diff] [blame] | 378 | { |
Gilles Peskine | 70e085a | 2019-05-27 19:04:07 +0200 | [diff] [blame] | 379 | #if defined(MBEDTLS_PSA_CRYPTO_STORAGE_C) |
Gilles Peskine | 961849f | 2018-11-30 18:54:54 +0100 | [diff] [blame] | 380 | psa_status_t status; |
Gilles Peskine | 267c656 | 2019-05-27 19:01:54 +0200 | [diff] [blame] | 381 | psa_key_slot_t *slot; |
Gilles Peskine | 961849f | 2018-11-30 18:54:54 +0100 | [diff] [blame] | 382 | |
Ronald Cron | c4d1b51 | 2020-07-31 11:26:37 +0200 | [diff] [blame] | 383 | status = psa_get_key_slot( key, &slot ); |
Gilles Peskine | 70e085a | 2019-05-27 19:04:07 +0200 | [diff] [blame] | 384 | if( status != PSA_SUCCESS ) |
Gilles Peskine | 961849f | 2018-11-30 18:54:54 +0100 | [diff] [blame] | 385 | { |
Ronald Cron | 91e9515 | 2020-07-30 17:48:03 +0200 | [diff] [blame] | 386 | *handle = PSA_KEY_HANDLE_INIT; |
Ronald Cron | c4d1b51 | 2020-07-31 11:26:37 +0200 | [diff] [blame] | 387 | return( status ); |
Gilles Peskine | 961849f | 2018-11-30 18:54:54 +0100 | [diff] [blame] | 388 | } |
Ronald Cron | c4d1b51 | 2020-07-31 11:26:37 +0200 | [diff] [blame] | 389 | |
| 390 | *handle = key; |
| 391 | |
Ronald Cron | f95a2b1 | 2020-10-22 15:24:49 +0200 | [diff] [blame] | 392 | return( psa_decrement_key_slot_access_count( slot ) ); |
Gilles Peskine | 70e085a | 2019-05-27 19:04:07 +0200 | [diff] [blame] | 393 | |
Gilles Peskine | 30afafd | 2019-04-25 13:47:40 +0200 | [diff] [blame] | 394 | #else /* defined(MBEDTLS_PSA_CRYPTO_STORAGE_C) */ |
Ronald Cron | 27238fc | 2020-07-23 12:30:41 +0200 | [diff] [blame] | 395 | (void) key; |
Ronald Cron | 91e9515 | 2020-07-30 17:48:03 +0200 | [diff] [blame] | 396 | *handle = PSA_KEY_HANDLE_INIT; |
Gilles Peskine | 30afafd | 2019-04-25 13:47:40 +0200 | [diff] [blame] | 397 | return( PSA_ERROR_NOT_SUPPORTED ); |
| 398 | #endif /* !defined(MBEDTLS_PSA_CRYPTO_STORAGE_C) */ |
Gilles Peskine | 961849f | 2018-11-30 18:54:54 +0100 | [diff] [blame] | 399 | } |
| 400 | |
Gilles Peskine | 961849f | 2018-11-30 18:54:54 +0100 | [diff] [blame] | 401 | psa_status_t psa_close_key( psa_key_handle_t handle ) |
| 402 | { |
Gilles Peskine | 267c656 | 2019-05-27 19:01:54 +0200 | [diff] [blame] | 403 | psa_status_t status; |
| 404 | psa_key_slot_t *slot; |
| 405 | |
Ronald Cron | c26f8d4 | 2020-09-01 10:51:51 +0200 | [diff] [blame] | 406 | if( psa_key_handle_is_null( handle ) ) |
Gilles Peskine | 1841cf4 | 2019-10-08 15:48:25 +0200 | [diff] [blame] | 407 | return( PSA_SUCCESS ); |
| 408 | |
Ronald Cron | 5134519 | 2020-10-16 16:07:03 +0200 | [diff] [blame] | 409 | status = psa_search_key_in_slots( handle, &slot ); |
Gilles Peskine | 267c656 | 2019-05-27 19:01:54 +0200 | [diff] [blame] | 410 | if( status != PSA_SUCCESS ) |
| 411 | return( status ); |
| 412 | |
Ronald Cron | f291111 | 2020-10-29 17:51:10 +0100 | [diff] [blame] | 413 | if( slot->access_count <= 1 ) |
| 414 | return( psa_wipe_key_slot( slot ) ); |
| 415 | else |
| 416 | return( psa_decrement_key_slot_access_count( slot ) ); |
Gilles Peskine | 961849f | 2018-11-30 18:54:54 +0100 | [diff] [blame] | 417 | } |
| 418 | |
Ronald Cron | 277a85f | 2020-08-04 15:49:48 +0200 | [diff] [blame] | 419 | psa_status_t psa_purge_key( mbedtls_svc_key_id_t key ) |
| 420 | { |
| 421 | psa_status_t status; |
| 422 | psa_key_slot_t *slot; |
| 423 | |
Ronald Cron | 5134519 | 2020-10-16 16:07:03 +0200 | [diff] [blame] | 424 | status = psa_search_key_in_slots( key, &slot ); |
Ronald Cron | 277a85f | 2020-08-04 15:49:48 +0200 | [diff] [blame] | 425 | if( status != PSA_SUCCESS ) |
| 426 | return( status ); |
| 427 | |
Ronald Cron | f291111 | 2020-10-29 17:51:10 +0100 | [diff] [blame] | 428 | if( ( ! PSA_KEY_LIFETIME_IS_VOLATILE( slot->attr.lifetime ) ) && |
| 429 | ( slot->access_count <= 1 ) ) |
| 430 | return( psa_wipe_key_slot( slot ) ); |
| 431 | else |
Ronald Cron | f95a2b1 | 2020-10-22 15:24:49 +0200 | [diff] [blame] | 432 | return( psa_decrement_key_slot_access_count( slot ) ); |
Ronald Cron | 277a85f | 2020-08-04 15:49:48 +0200 | [diff] [blame] | 433 | } |
| 434 | |
Gilles Peskine | 4bac9a4 | 2019-05-23 20:32:30 +0200 | [diff] [blame] | 435 | void mbedtls_psa_get_stats( mbedtls_psa_stats_t *stats ) |
| 436 | { |
Ronald Cron | 98a54dd | 2020-07-24 16:33:11 +0200 | [diff] [blame] | 437 | size_t slot_idx; |
| 438 | |
Gilles Peskine | 4bac9a4 | 2019-05-23 20:32:30 +0200 | [diff] [blame] | 439 | memset( stats, 0, sizeof( *stats ) ); |
Ronald Cron | 98a54dd | 2020-07-24 16:33:11 +0200 | [diff] [blame] | 440 | |
| 441 | for( slot_idx = 0; slot_idx < PSA_KEY_SLOT_COUNT; slot_idx++ ) |
Gilles Peskine | 4bac9a4 | 2019-05-23 20:32:30 +0200 | [diff] [blame] | 442 | { |
Ronald Cron | 98a54dd | 2020-07-24 16:33:11 +0200 | [diff] [blame] | 443 | const psa_key_slot_t *slot = &global_data.key_slots[ slot_idx ]; |
Ronald Cron | 0c3752a | 2020-10-30 11:54:03 +0100 | [diff] [blame] | 444 | if( ! psa_is_key_slot_accessed( slot ) ) |
| 445 | { |
| 446 | ++stats->unaccessed_slots; |
| 447 | } |
Gilles Peskine | 41e50d2 | 2019-07-31 15:01:55 +0200 | [diff] [blame] | 448 | if( ! psa_is_key_slot_occupied( slot ) ) |
Gilles Peskine | 4bac9a4 | 2019-05-23 20:32:30 +0200 | [diff] [blame] | 449 | { |
Gilles Peskine | 41e50d2 | 2019-07-31 15:01:55 +0200 | [diff] [blame] | 450 | ++stats->empty_slots; |
Gilles Peskine | 4bac9a4 | 2019-05-23 20:32:30 +0200 | [diff] [blame] | 451 | continue; |
| 452 | } |
Gilles Peskine | 8e33870 | 2019-07-30 20:06:31 +0200 | [diff] [blame] | 453 | if( slot->attr.lifetime == PSA_KEY_LIFETIME_VOLATILE ) |
Gilles Peskine | 4bac9a4 | 2019-05-23 20:32:30 +0200 | [diff] [blame] | 454 | ++stats->volatile_slots; |
Gilles Peskine | 8e33870 | 2019-07-30 20:06:31 +0200 | [diff] [blame] | 455 | else if( slot->attr.lifetime == PSA_KEY_LIFETIME_PERSISTENT ) |
Gilles Peskine | 4bac9a4 | 2019-05-23 20:32:30 +0200 | [diff] [blame] | 456 | { |
Ronald Cron | 71016a9 | 2020-08-28 19:01:50 +0200 | [diff] [blame] | 457 | psa_key_id_t id = MBEDTLS_SVC_KEY_ID_GET_KEY_ID( slot->attr.id ); |
Gilles Peskine | 4bac9a4 | 2019-05-23 20:32:30 +0200 | [diff] [blame] | 458 | ++stats->persistent_slots; |
Jaeden Amero | 6fa62a5 | 2019-08-20 17:43:48 +0100 | [diff] [blame] | 459 | if( id > stats->max_open_internal_key_id ) |
| 460 | stats->max_open_internal_key_id = id; |
Gilles Peskine | 4bac9a4 | 2019-05-23 20:32:30 +0200 | [diff] [blame] | 461 | } |
| 462 | else |
| 463 | { |
Ronald Cron | 71016a9 | 2020-08-28 19:01:50 +0200 | [diff] [blame] | 464 | psa_key_id_t id = MBEDTLS_SVC_KEY_ID_GET_KEY_ID( slot->attr.id ); |
Gilles Peskine | 4bac9a4 | 2019-05-23 20:32:30 +0200 | [diff] [blame] | 465 | ++stats->external_slots; |
Jaeden Amero | 6fa62a5 | 2019-08-20 17:43:48 +0100 | [diff] [blame] | 466 | if( id > stats->max_open_external_key_id ) |
| 467 | stats->max_open_external_key_id = id; |
Gilles Peskine | 4bac9a4 | 2019-05-23 20:32:30 +0200 | [diff] [blame] | 468 | } |
| 469 | } |
| 470 | } |
| 471 | |
Gilles Peskine | 961849f | 2018-11-30 18:54:54 +0100 | [diff] [blame] | 472 | #endif /* MBEDTLS_PSA_CRYPTO_C */ |