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 | |
| 54 | /* Access a key slot at the given handle. The handle of a key slot is |
| 55 | * the index of the slot in the global slot array, plus one so that handles |
| 56 | * start at 1 and not 0. */ |
| 57 | psa_status_t psa_get_key_slot( psa_key_handle_t handle, |
| 58 | psa_key_slot_t **p_slot ) |
| 59 | { |
| 60 | psa_key_slot_t *slot = NULL; |
| 61 | |
| 62 | if( ! global_data.key_slots_initialized ) |
| 63 | return( PSA_ERROR_BAD_STATE ); |
| 64 | |
| 65 | /* 0 is not a valid handle under any circumstance. This |
| 66 | * implementation provides slots number 1 to N where N is the |
| 67 | * number of available slots. */ |
| 68 | if( handle == 0 || handle > ARRAY_LENGTH( global_data.key_slots ) ) |
| 69 | return( PSA_ERROR_INVALID_HANDLE ); |
| 70 | slot = &global_data.key_slots[handle - 1]; |
| 71 | |
Gilles Peskine | 41e50d2 | 2019-07-31 15:01:55 +0200 | [diff] [blame] | 72 | /* If the slot isn't occupied, the handle is invalid. */ |
| 73 | if( ! psa_is_key_slot_occupied( slot ) ) |
Gilles Peskine | 66fb126 | 2018-12-10 16:29:04 +0100 | [diff] [blame] | 74 | return( PSA_ERROR_INVALID_HANDLE ); |
| 75 | |
| 76 | *p_slot = slot; |
| 77 | return( PSA_SUCCESS ); |
| 78 | } |
| 79 | |
| 80 | psa_status_t psa_initialize_key_slots( void ) |
| 81 | { |
| 82 | /* Nothing to do: program startup and psa_wipe_all_key_slots() both |
| 83 | * guarantee that the key slots are initialized to all-zero, which |
| 84 | * means that all the key slots are in a valid, empty state. */ |
| 85 | global_data.key_slots_initialized = 1; |
| 86 | return( PSA_SUCCESS ); |
| 87 | } |
| 88 | |
| 89 | void psa_wipe_all_key_slots( void ) |
| 90 | { |
| 91 | psa_key_handle_t key; |
| 92 | for( key = 1; key <= PSA_KEY_SLOT_COUNT; key++ ) |
| 93 | { |
| 94 | psa_key_slot_t *slot = &global_data.key_slots[key - 1]; |
| 95 | (void) psa_wipe_key_slot( slot ); |
| 96 | } |
| 97 | global_data.key_slots_initialized = 0; |
| 98 | } |
| 99 | |
Gilles Peskine | edbed56 | 2019-08-07 18:19:59 +0200 | [diff] [blame] | 100 | psa_status_t psa_get_empty_key_slot( psa_key_handle_t *handle, |
Gilles Peskine | 267c656 | 2019-05-27 19:01:54 +0200 | [diff] [blame] | 101 | psa_key_slot_t **p_slot ) |
Gilles Peskine | 66fb126 | 2018-12-10 16:29:04 +0100 | [diff] [blame] | 102 | { |
Gilles Peskine | 267c656 | 2019-05-27 19:01:54 +0200 | [diff] [blame] | 103 | if( ! global_data.key_slots_initialized ) |
| 104 | return( PSA_ERROR_BAD_STATE ); |
| 105 | |
Gilles Peskine | 66fb126 | 2018-12-10 16:29:04 +0100 | [diff] [blame] | 106 | for( *handle = PSA_KEY_SLOT_COUNT; *handle != 0; --( *handle ) ) |
| 107 | { |
Gilles Peskine | 267c656 | 2019-05-27 19:01:54 +0200 | [diff] [blame] | 108 | *p_slot = &global_data.key_slots[*handle - 1]; |
Gilles Peskine | 41e50d2 | 2019-07-31 15:01:55 +0200 | [diff] [blame] | 109 | if( ! psa_is_key_slot_occupied( *p_slot ) ) |
Gilles Peskine | 66fb126 | 2018-12-10 16:29:04 +0100 | [diff] [blame] | 110 | return( PSA_SUCCESS ); |
Gilles Peskine | 66fb126 | 2018-12-10 16:29:04 +0100 | [diff] [blame] | 111 | } |
Gilles Peskine | 267c656 | 2019-05-27 19:01:54 +0200 | [diff] [blame] | 112 | *p_slot = NULL; |
Gilles Peskine | 66fb126 | 2018-12-10 16:29:04 +0100 | [diff] [blame] | 113 | return( PSA_ERROR_INSUFFICIENT_MEMORY ); |
| 114 | } |
| 115 | |
Gilles Peskine | fa4135b | 2018-12-10 16:48:53 +0100 | [diff] [blame] | 116 | #if defined(MBEDTLS_PSA_CRYPTO_STORAGE_C) |
Gilles Peskine | 2431859 | 2019-07-30 20:30:51 +0200 | [diff] [blame] | 117 | 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] | 118 | { |
| 119 | psa_status_t status = PSA_SUCCESS; |
| 120 | uint8_t *key_data = NULL; |
| 121 | size_t key_data_length = 0; |
| 122 | |
Gilles Peskine | 2431859 | 2019-07-30 20:30:51 +0200 | [diff] [blame] | 123 | status = psa_load_persistent_key( &slot->attr, |
Gilles Peskine | bfd322f | 2019-07-23 11:58:03 +0200 | [diff] [blame] | 124 | &key_data, &key_data_length ); |
Gilles Peskine | fa4135b | 2018-12-10 16:48:53 +0100 | [diff] [blame] | 125 | if( status != PSA_SUCCESS ) |
| 126 | goto exit; |
Gilles Peskine | 1df83d4 | 2019-07-23 16:13:14 +0200 | [diff] [blame] | 127 | |
| 128 | #if defined(MBEDTLS_PSA_CRYPTO_SE_C) |
Gilles Peskine | 2431859 | 2019-07-30 20:30:51 +0200 | [diff] [blame] | 129 | if( psa_key_lifetime_is_external( slot->attr.lifetime ) ) |
Gilles Peskine | 1df83d4 | 2019-07-23 16:13:14 +0200 | [diff] [blame] | 130 | { |
Gilles Peskine | b46bef2 | 2019-07-30 21:32:04 +0200 | [diff] [blame] | 131 | psa_se_key_data_storage_t *data; |
| 132 | if( key_data_length != sizeof( *data ) ) |
Gilles Peskine | 1df83d4 | 2019-07-23 16:13:14 +0200 | [diff] [blame] | 133 | { |
| 134 | status = PSA_ERROR_STORAGE_FAILURE; |
| 135 | goto exit; |
| 136 | } |
Gilles Peskine | b46bef2 | 2019-07-30 21:32:04 +0200 | [diff] [blame] | 137 | data = (psa_se_key_data_storage_t *) key_data; |
| 138 | memcpy( &slot->data.se.slot_number, &data->slot_number, |
| 139 | sizeof( slot->data.se.slot_number ) ); |
Gilles Peskine | 1df83d4 | 2019-07-23 16:13:14 +0200 | [diff] [blame] | 140 | } |
| 141 | else |
| 142 | #endif /* MBEDTLS_PSA_CRYPTO_SE_C */ |
| 143 | { |
Steven Cooreman | 3ea0ce4 | 2020-10-23 11:37:05 +0200 | [diff] [blame] | 144 | status = psa_copy_key_material_into_slot( slot, key_data, key_data_length ); |
| 145 | if( status != PSA_SUCCESS ) |
| 146 | goto exit; |
Gilles Peskine | 1df83d4 | 2019-07-23 16:13:14 +0200 | [diff] [blame] | 147 | } |
| 148 | |
Gilles Peskine | fa4135b | 2018-12-10 16:48:53 +0100 | [diff] [blame] | 149 | exit: |
| 150 | psa_free_persistent_key_data( key_data, key_data_length ); |
| 151 | return( status ); |
| 152 | } |
Gilles Peskine | c8569bc | 2019-02-19 13:04:02 +0100 | [diff] [blame] | 153 | |
| 154 | /** Check whether a key identifier is acceptable. |
| 155 | * |
| 156 | * For backward compatibility, key identifiers that were valid in a |
| 157 | * past released version must remain valid, unless a migration path |
| 158 | * is provided. |
| 159 | * |
Ronald Cron | 71016a9 | 2020-08-28 19:01:50 +0200 | [diff] [blame] | 160 | * \param key The key identifier to check. |
| 161 | * \param vendor_ok Nonzero to allow key ids in the vendor range. |
| 162 | * 0 to allow only key ids in the application range. |
Gilles Peskine | c8569bc | 2019-02-19 13:04:02 +0100 | [diff] [blame] | 163 | * |
Ronald Cron | 71016a9 | 2020-08-28 19:01:50 +0200 | [diff] [blame] | 164 | * \return 1 if \p key is acceptable, otherwise 0. |
Gilles Peskine | c8569bc | 2019-02-19 13:04:02 +0100 | [diff] [blame] | 165 | */ |
Ronald Cron | 71016a9 | 2020-08-28 19:01:50 +0200 | [diff] [blame] | 166 | static int psa_is_key_id_valid( mbedtls_svc_key_id_t key, int vendor_ok ) |
Gilles Peskine | c8569bc | 2019-02-19 13:04:02 +0100 | [diff] [blame] | 167 | { |
Ronald Cron | 71016a9 | 2020-08-28 19:01:50 +0200 | [diff] [blame] | 168 | psa_key_id_t key_id = MBEDTLS_SVC_KEY_ID_GET_KEY_ID( key ); |
Gilles Peskine | f9fbc38 | 2019-05-15 18:42:09 +0200 | [diff] [blame] | 169 | if( PSA_KEY_ID_USER_MIN <= key_id && key_id <= PSA_KEY_ID_USER_MAX ) |
| 170 | return( 1 ); |
| 171 | else if( vendor_ok && |
| 172 | PSA_KEY_ID_VENDOR_MIN <= key_id && |
| 173 | key_id <= PSA_KEY_ID_VENDOR_MAX ) |
| 174 | return( 1 ); |
| 175 | else |
Gilles Peskine | c8569bc | 2019-02-19 13:04:02 +0100 | [diff] [blame] | 176 | return( 0 ); |
Gilles Peskine | c8569bc | 2019-02-19 13:04:02 +0100 | [diff] [blame] | 177 | } |
Gilles Peskine | 30afafd | 2019-04-25 13:47:40 +0200 | [diff] [blame] | 178 | #endif /* defined(MBEDTLS_PSA_CRYPTO_STORAGE_C) */ |
Gilles Peskine | fa4135b | 2018-12-10 16:48:53 +0100 | [diff] [blame] | 179 | |
Steven Cooreman | 8c1e759 | 2020-06-17 14:52:05 +0200 | [diff] [blame] | 180 | psa_status_t psa_validate_key_location( psa_key_lifetime_t lifetime, |
Steven Cooreman | 81fe7c3 | 2020-06-08 18:37:19 +0200 | [diff] [blame] | 181 | psa_se_drv_table_entry_t **p_drv ) |
Gilles Peskine | d167b94 | 2019-04-19 18:19:40 +0200 | [diff] [blame] | 182 | { |
Steven Cooreman | 81fe7c3 | 2020-06-08 18:37:19 +0200 | [diff] [blame] | 183 | if ( psa_key_lifetime_is_external( lifetime ) ) |
Gilles Peskine | 011e428 | 2019-06-26 18:34:38 +0200 | [diff] [blame] | 184 | { |
Steven Cooreman | 81fe7c3 | 2020-06-08 18:37:19 +0200 | [diff] [blame] | 185 | #if defined(MBEDTLS_PSA_CRYPTO_SE_C) |
Steven Cooreman | 00106a1 | 2020-06-08 18:54:23 +0200 | [diff] [blame] | 186 | psa_se_drv_table_entry_t *driver = psa_get_se_driver_entry( lifetime ); |
| 187 | if( driver == NULL ) |
Gilles Peskine | 011e428 | 2019-06-26 18:34:38 +0200 | [diff] [blame] | 188 | return( PSA_ERROR_INVALID_ARGUMENT ); |
Steven Cooreman | 81fe7c3 | 2020-06-08 18:37:19 +0200 | [diff] [blame] | 189 | else |
| 190 | { |
| 191 | if (p_drv != NULL) |
Steven Cooreman | 00106a1 | 2020-06-08 18:54:23 +0200 | [diff] [blame] | 192 | *p_drv = driver; |
Steven Cooreman | 81fe7c3 | 2020-06-08 18:37:19 +0200 | [diff] [blame] | 193 | return( PSA_SUCCESS ); |
| 194 | } |
| 195 | #else |
| 196 | (void) p_drv; |
| 197 | return( PSA_ERROR_INVALID_ARGUMENT ); |
| 198 | #endif /* MBEDTLS_PSA_CRYPTO_SE_C */ |
Gilles Peskine | 011e428 | 2019-06-26 18:34:38 +0200 | [diff] [blame] | 199 | } |
| 200 | else |
Steven Cooreman | 81fe7c3 | 2020-06-08 18:37:19 +0200 | [diff] [blame] | 201 | /* Local/internal keys are always valid */ |
| 202 | return( PSA_SUCCESS ); |
| 203 | } |
Gilles Peskine | 30afafd | 2019-04-25 13:47:40 +0200 | [diff] [blame] | 204 | |
Steven Cooreman | 8c1e759 | 2020-06-17 14:52:05 +0200 | [diff] [blame] | 205 | psa_status_t psa_validate_key_persistence( psa_key_lifetime_t lifetime, |
Ronald Cron | 71016a9 | 2020-08-28 19:01:50 +0200 | [diff] [blame] | 206 | mbedtls_svc_key_id_t key ) |
Steven Cooreman | 81fe7c3 | 2020-06-08 18:37:19 +0200 | [diff] [blame] | 207 | { |
Steven Cooreman | 81fe7c3 | 2020-06-08 18:37:19 +0200 | [diff] [blame] | 208 | if ( PSA_KEY_LIFETIME_IS_VOLATILE( lifetime ) ) |
| 209 | { |
| 210 | /* Volatile keys are always supported */ |
| 211 | return( PSA_SUCCESS ); |
| 212 | } |
| 213 | else |
| 214 | { |
| 215 | /* Persistent keys require storage support */ |
Gilles Peskine | 30afafd | 2019-04-25 13:47:40 +0200 | [diff] [blame] | 216 | #if defined(MBEDTLS_PSA_CRYPTO_STORAGE_C) |
Ronald Cron | 27238fc | 2020-07-23 12:30:41 +0200 | [diff] [blame] | 217 | if( psa_is_key_id_valid( key, |
Steven Cooreman | 81fe7c3 | 2020-06-08 18:37:19 +0200 | [diff] [blame] | 218 | psa_key_lifetime_is_external( lifetime ) ) ) |
| 219 | return( PSA_SUCCESS ); |
| 220 | else |
| 221 | return( PSA_ERROR_INVALID_ARGUMENT ); |
Gilles Peskine | 30afafd | 2019-04-25 13:47:40 +0200 | [diff] [blame] | 222 | #else /* MBEDTLS_PSA_CRYPTO_STORAGE_C */ |
Ronald Cron | 27238fc | 2020-07-23 12:30:41 +0200 | [diff] [blame] | 223 | (void) key; |
Steven Cooreman | 81fe7c3 | 2020-06-08 18:37:19 +0200 | [diff] [blame] | 224 | return( PSA_ERROR_NOT_SUPPORTED ); |
Gilles Peskine | 30afafd | 2019-04-25 13:47:40 +0200 | [diff] [blame] | 225 | #endif /* !MBEDTLS_PSA_CRYPTO_STORAGE_C */ |
Steven Cooreman | 81fe7c3 | 2020-06-08 18:37:19 +0200 | [diff] [blame] | 226 | } |
Gilles Peskine | d167b94 | 2019-04-19 18:19:40 +0200 | [diff] [blame] | 227 | } |
| 228 | |
Ronald Cron | 71016a9 | 2020-08-28 19:01:50 +0200 | [diff] [blame] | 229 | 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] | 230 | { |
Gilles Peskine | 70e085a | 2019-05-27 19:04:07 +0200 | [diff] [blame] | 231 | #if defined(MBEDTLS_PSA_CRYPTO_STORAGE_C) |
Gilles Peskine | 961849f | 2018-11-30 18:54:54 +0100 | [diff] [blame] | 232 | psa_status_t status; |
Gilles Peskine | 267c656 | 2019-05-27 19:01:54 +0200 | [diff] [blame] | 233 | psa_key_slot_t *slot; |
Gilles Peskine | 961849f | 2018-11-30 18:54:54 +0100 | [diff] [blame] | 234 | |
| 235 | *handle = 0; |
| 236 | |
Ronald Cron | 27238fc | 2020-07-23 12:30:41 +0200 | [diff] [blame] | 237 | if( ! psa_is_key_id_valid( key, 1 ) ) |
Steven Cooreman | 81fe7c3 | 2020-06-08 18:37:19 +0200 | [diff] [blame] | 238 | return( PSA_ERROR_INVALID_ARGUMENT ); |
Gilles Peskine | 961849f | 2018-11-30 18:54:54 +0100 | [diff] [blame] | 239 | |
Gilles Peskine | edbed56 | 2019-08-07 18:19:59 +0200 | [diff] [blame] | 240 | status = psa_get_empty_key_slot( handle, &slot ); |
Gilles Peskine | 961849f | 2018-11-30 18:54:54 +0100 | [diff] [blame] | 241 | if( status != PSA_SUCCESS ) |
| 242 | return( status ); |
| 243 | |
Gilles Peskine | 8e33870 | 2019-07-30 20:06:31 +0200 | [diff] [blame] | 244 | slot->attr.lifetime = PSA_KEY_LIFETIME_PERSISTENT; |
Ronald Cron | 27238fc | 2020-07-23 12:30:41 +0200 | [diff] [blame] | 245 | slot->attr.id = key; |
Gilles Peskine | 267c656 | 2019-05-27 19:01:54 +0200 | [diff] [blame] | 246 | |
| 247 | status = psa_load_persistent_key_into_slot( slot ); |
Gilles Peskine | 70e085a | 2019-05-27 19:04:07 +0200 | [diff] [blame] | 248 | if( status != PSA_SUCCESS ) |
Gilles Peskine | 961849f | 2018-11-30 18:54:54 +0100 | [diff] [blame] | 249 | { |
Gilles Peskine | 267c656 | 2019-05-27 19:01:54 +0200 | [diff] [blame] | 250 | psa_wipe_key_slot( slot ); |
Gilles Peskine | 961849f | 2018-11-30 18:54:54 +0100 | [diff] [blame] | 251 | *handle = 0; |
| 252 | } |
| 253 | return( status ); |
Gilles Peskine | 70e085a | 2019-05-27 19:04:07 +0200 | [diff] [blame] | 254 | |
Gilles Peskine | 30afafd | 2019-04-25 13:47:40 +0200 | [diff] [blame] | 255 | #else /* defined(MBEDTLS_PSA_CRYPTO_STORAGE_C) */ |
Ronald Cron | 27238fc | 2020-07-23 12:30:41 +0200 | [diff] [blame] | 256 | (void) key; |
Gilles Peskine | 70e085a | 2019-05-27 19:04:07 +0200 | [diff] [blame] | 257 | *handle = 0; |
Gilles Peskine | 30afafd | 2019-04-25 13:47:40 +0200 | [diff] [blame] | 258 | return( PSA_ERROR_NOT_SUPPORTED ); |
| 259 | #endif /* !defined(MBEDTLS_PSA_CRYPTO_STORAGE_C) */ |
Gilles Peskine | 961849f | 2018-11-30 18:54:54 +0100 | [diff] [blame] | 260 | } |
| 261 | |
Gilles Peskine | 961849f | 2018-11-30 18:54:54 +0100 | [diff] [blame] | 262 | psa_status_t psa_close_key( psa_key_handle_t handle ) |
| 263 | { |
Gilles Peskine | 267c656 | 2019-05-27 19:01:54 +0200 | [diff] [blame] | 264 | psa_status_t status; |
| 265 | psa_key_slot_t *slot; |
| 266 | |
Gilles Peskine | 1841cf4 | 2019-10-08 15:48:25 +0200 | [diff] [blame] | 267 | if( handle == 0 ) |
| 268 | return( PSA_SUCCESS ); |
| 269 | |
Gilles Peskine | 267c656 | 2019-05-27 19:01:54 +0200 | [diff] [blame] | 270 | status = psa_get_key_slot( handle, &slot ); |
| 271 | if( status != PSA_SUCCESS ) |
| 272 | return( status ); |
| 273 | |
| 274 | return( psa_wipe_key_slot( slot ) ); |
Gilles Peskine | 961849f | 2018-11-30 18:54:54 +0100 | [diff] [blame] | 275 | } |
| 276 | |
Gilles Peskine | 4bac9a4 | 2019-05-23 20:32:30 +0200 | [diff] [blame] | 277 | void mbedtls_psa_get_stats( mbedtls_psa_stats_t *stats ) |
| 278 | { |
| 279 | psa_key_handle_t key; |
| 280 | memset( stats, 0, sizeof( *stats ) ); |
| 281 | for( key = 1; key <= PSA_KEY_SLOT_COUNT; key++ ) |
| 282 | { |
Gilles Peskine | 41e50d2 | 2019-07-31 15:01:55 +0200 | [diff] [blame] | 283 | const psa_key_slot_t *slot = &global_data.key_slots[key - 1]; |
| 284 | if( ! psa_is_key_slot_occupied( slot ) ) |
Gilles Peskine | 4bac9a4 | 2019-05-23 20:32:30 +0200 | [diff] [blame] | 285 | { |
Gilles Peskine | 41e50d2 | 2019-07-31 15:01:55 +0200 | [diff] [blame] | 286 | ++stats->empty_slots; |
Gilles Peskine | 4bac9a4 | 2019-05-23 20:32:30 +0200 | [diff] [blame] | 287 | continue; |
| 288 | } |
Gilles Peskine | 8e33870 | 2019-07-30 20:06:31 +0200 | [diff] [blame] | 289 | if( slot->attr.lifetime == PSA_KEY_LIFETIME_VOLATILE ) |
Gilles Peskine | 4bac9a4 | 2019-05-23 20:32:30 +0200 | [diff] [blame] | 290 | ++stats->volatile_slots; |
Gilles Peskine | 8e33870 | 2019-07-30 20:06:31 +0200 | [diff] [blame] | 291 | else if( slot->attr.lifetime == PSA_KEY_LIFETIME_PERSISTENT ) |
Gilles Peskine | 4bac9a4 | 2019-05-23 20:32:30 +0200 | [diff] [blame] | 292 | { |
Ronald Cron | 71016a9 | 2020-08-28 19:01:50 +0200 | [diff] [blame] | 293 | 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] | 294 | ++stats->persistent_slots; |
Jaeden Amero | 6fa62a5 | 2019-08-20 17:43:48 +0100 | [diff] [blame] | 295 | if( id > stats->max_open_internal_key_id ) |
| 296 | stats->max_open_internal_key_id = id; |
Gilles Peskine | 4bac9a4 | 2019-05-23 20:32:30 +0200 | [diff] [blame] | 297 | } |
| 298 | else |
| 299 | { |
Ronald Cron | 71016a9 | 2020-08-28 19:01:50 +0200 | [diff] [blame] | 300 | 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] | 301 | ++stats->external_slots; |
Jaeden Amero | 6fa62a5 | 2019-08-20 17:43:48 +0100 | [diff] [blame] | 302 | if( id > stats->max_open_external_key_id ) |
| 303 | stats->max_open_external_key_id = id; |
Gilles Peskine | 4bac9a4 | 2019-05-23 20:32:30 +0200 | [diff] [blame] | 304 | } |
| 305 | } |
| 306 | } |
| 307 | |
Gilles Peskine | 961849f | 2018-11-30 18:54:54 +0100 | [diff] [blame] | 308 | #endif /* MBEDTLS_PSA_CRYPTO_C */ |