blob: a32a02798027723133b5bdc5aad02fa438f4aa39 [file] [log] [blame]
Gilles Peskine961849f2018-11-30 18:54:54 +01001/*
2 * PSA crypto layer on top of Mbed TLS crypto
3 */
Bence Szépkúti86974652020-06-15 11:59:37 +02004/*
Bence Szépkúti1e148272020-08-07 13:07:28 +02005 * Copyright The Mbed TLS Contributors
Gilles Peskine961849f2018-11-30 18:54:54 +01006 * 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 Peskine961849f2018-11-30 18:54:54 +010019 */
20
Gilles Peskinedb09ef62020-06-03 01:43:33 +020021#include "common.h"
Gilles Peskine961849f2018-11-30 18:54:54 +010022
23#if defined(MBEDTLS_PSA_CRYPTO_C)
24
itayzafrir7723ab12019-02-14 10:28:02 +020025#include "psa_crypto_service_integration.h"
Gilles Peskine961849f2018-11-30 18:54:54 +010026#include "psa/crypto.h"
27
Gilles Peskine66fb1262018-12-10 16:29:04 +010028#include "psa_crypto_core.h"
Gilles Peskine961849f2018-11-30 18:54:54 +010029#include "psa_crypto_slot_management.h"
30#include "psa_crypto_storage.h"
Gilles Peskineb46bef22019-07-30 21:32:04 +020031#if defined(MBEDTLS_PSA_CRYPTO_SE_C)
32#include "psa_crypto_se.h"
33#endif
Gilles Peskine961849f2018-11-30 18:54:54 +010034
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 Peskine66fb1262018-12-10 16:29:04 +010046typedef 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 Peskine2e14bd32018-12-12 14:05:08 +010052static psa_global_data_t global_data;
Gilles Peskine66fb1262018-12-10 16:29:04 +010053
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. */
57psa_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 Peskine41e50d22019-07-31 15:01:55 +020072 /* If the slot isn't occupied, the handle is invalid. */
73 if( ! psa_is_key_slot_occupied( slot ) )
Gilles Peskine66fb1262018-12-10 16:29:04 +010074 return( PSA_ERROR_INVALID_HANDLE );
75
76 *p_slot = slot;
77 return( PSA_SUCCESS );
78}
79
80psa_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
89void 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 Peskineedbed562019-08-07 18:19:59 +0200100psa_status_t psa_get_empty_key_slot( psa_key_handle_t *handle,
Gilles Peskine267c6562019-05-27 19:01:54 +0200101 psa_key_slot_t **p_slot )
Gilles Peskine66fb1262018-12-10 16:29:04 +0100102{
Gilles Peskine267c6562019-05-27 19:01:54 +0200103 if( ! global_data.key_slots_initialized )
104 return( PSA_ERROR_BAD_STATE );
105
Gilles Peskine66fb1262018-12-10 16:29:04 +0100106 for( *handle = PSA_KEY_SLOT_COUNT; *handle != 0; --( *handle ) )
107 {
Gilles Peskine267c6562019-05-27 19:01:54 +0200108 *p_slot = &global_data.key_slots[*handle - 1];
Gilles Peskine41e50d22019-07-31 15:01:55 +0200109 if( ! psa_is_key_slot_occupied( *p_slot ) )
Gilles Peskine66fb1262018-12-10 16:29:04 +0100110 return( PSA_SUCCESS );
Gilles Peskine66fb1262018-12-10 16:29:04 +0100111 }
Gilles Peskine267c6562019-05-27 19:01:54 +0200112 *p_slot = NULL;
Gilles Peskine66fb1262018-12-10 16:29:04 +0100113 return( PSA_ERROR_INSUFFICIENT_MEMORY );
114}
115
Gilles Peskinefa4135b2018-12-10 16:48:53 +0100116#if defined(MBEDTLS_PSA_CRYPTO_STORAGE_C)
Gilles Peskine24318592019-07-30 20:30:51 +0200117static psa_status_t psa_load_persistent_key_into_slot( psa_key_slot_t *slot )
Gilles Peskinefa4135b2018-12-10 16:48:53 +0100118{
119 psa_status_t status = PSA_SUCCESS;
120 uint8_t *key_data = NULL;
121 size_t key_data_length = 0;
122
Gilles Peskine24318592019-07-30 20:30:51 +0200123 status = psa_load_persistent_key( &slot->attr,
Gilles Peskinebfd322f2019-07-23 11:58:03 +0200124 &key_data, &key_data_length );
Gilles Peskinefa4135b2018-12-10 16:48:53 +0100125 if( status != PSA_SUCCESS )
126 goto exit;
Gilles Peskine1df83d42019-07-23 16:13:14 +0200127
128#if defined(MBEDTLS_PSA_CRYPTO_SE_C)
Gilles Peskine24318592019-07-30 20:30:51 +0200129 if( psa_key_lifetime_is_external( slot->attr.lifetime ) )
Gilles Peskine1df83d42019-07-23 16:13:14 +0200130 {
Gilles Peskineb46bef22019-07-30 21:32:04 +0200131 psa_se_key_data_storage_t *data;
132 if( key_data_length != sizeof( *data ) )
Gilles Peskine1df83d42019-07-23 16:13:14 +0200133 {
134 status = PSA_ERROR_STORAGE_FAILURE;
135 goto exit;
136 }
Gilles Peskineb46bef22019-07-30 21:32:04 +0200137 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 ) );
140 memcpy( &slot->attr.bits, &data->bits,
141 sizeof( slot->attr.bits ) );
Gilles Peskine1df83d42019-07-23 16:13:14 +0200142 }
143 else
144#endif /* MBEDTLS_PSA_CRYPTO_SE_C */
145 {
Gilles Peskine24318592019-07-30 20:30:51 +0200146 status = psa_import_key_into_slot( slot, key_data, key_data_length );
Gilles Peskine1df83d42019-07-23 16:13:14 +0200147 }
148
Gilles Peskinefa4135b2018-12-10 16:48:53 +0100149exit:
150 psa_free_persistent_key_data( key_data, key_data_length );
151 return( status );
152}
Gilles Peskinec8569bc2019-02-19 13:04:02 +0100153
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 *
Gilles Peskine5b229a02019-02-19 13:24:37 +0100160 * \param file_id The key identifier to check.
Gilles Peskinef9666592019-05-06 18:56:30 +0200161 * \param vendor_ok Nonzero to allow key ids in the vendor range.
162 * 0 to allow only key ids in the application range.
Gilles Peskinec8569bc2019-02-19 13:04:02 +0100163 *
Gilles Peskine5b229a02019-02-19 13:24:37 +0100164 * \return 1 if \p file_id is acceptable, otherwise 0.
Gilles Peskinec8569bc2019-02-19 13:04:02 +0100165 */
Gilles Peskinef9666592019-05-06 18:56:30 +0200166static int psa_is_key_id_valid( psa_key_file_id_t file_id,
167 int vendor_ok )
Gilles Peskinec8569bc2019-02-19 13:04:02 +0100168{
Gilles Peskine5b229a02019-02-19 13:24:37 +0100169 psa_app_key_id_t key_id = PSA_KEY_FILE_GET_KEY_ID( file_id );
Gilles Peskinef9fbc382019-05-15 18:42:09 +0200170 if( PSA_KEY_ID_USER_MIN <= key_id && key_id <= PSA_KEY_ID_USER_MAX )
171 return( 1 );
172 else if( vendor_ok &&
173 PSA_KEY_ID_VENDOR_MIN <= key_id &&
174 key_id <= PSA_KEY_ID_VENDOR_MAX )
175 return( 1 );
176 else
Gilles Peskinec8569bc2019-02-19 13:04:02 +0100177 return( 0 );
Gilles Peskinec8569bc2019-02-19 13:04:02 +0100178}
Gilles Peskine30afafd2019-04-25 13:47:40 +0200179#endif /* defined(MBEDTLS_PSA_CRYPTO_STORAGE_C) */
Gilles Peskinefa4135b2018-12-10 16:48:53 +0100180
Steven Cooreman8c1e7592020-06-17 14:52:05 +0200181psa_status_t psa_validate_key_location( psa_key_lifetime_t lifetime,
Steven Cooreman81fe7c32020-06-08 18:37:19 +0200182 psa_se_drv_table_entry_t **p_drv )
Gilles Peskined167b942019-04-19 18:19:40 +0200183{
Steven Cooreman81fe7c32020-06-08 18:37:19 +0200184 if ( psa_key_lifetime_is_external( lifetime ) )
Gilles Peskine011e4282019-06-26 18:34:38 +0200185 {
Steven Cooreman81fe7c32020-06-08 18:37:19 +0200186#if defined(MBEDTLS_PSA_CRYPTO_SE_C)
Steven Cooreman00106a12020-06-08 18:54:23 +0200187 psa_se_drv_table_entry_t *driver = psa_get_se_driver_entry( lifetime );
188 if( driver == NULL )
Gilles Peskine011e4282019-06-26 18:34:38 +0200189 return( PSA_ERROR_INVALID_ARGUMENT );
Steven Cooreman81fe7c32020-06-08 18:37:19 +0200190 else
191 {
192 if (p_drv != NULL)
Steven Cooreman00106a12020-06-08 18:54:23 +0200193 *p_drv = driver;
Steven Cooreman81fe7c32020-06-08 18:37:19 +0200194 return( PSA_SUCCESS );
195 }
196#else
197 (void) p_drv;
198 return( PSA_ERROR_INVALID_ARGUMENT );
199#endif /* MBEDTLS_PSA_CRYPTO_SE_C */
Gilles Peskine011e4282019-06-26 18:34:38 +0200200 }
201 else
Steven Cooreman81fe7c32020-06-08 18:37:19 +0200202 /* Local/internal keys are always valid */
203 return( PSA_SUCCESS );
204}
Gilles Peskine30afafd2019-04-25 13:47:40 +0200205
Steven Cooreman8c1e7592020-06-17 14:52:05 +0200206psa_status_t psa_validate_key_persistence( psa_key_lifetime_t lifetime,
207 psa_key_id_t key_id )
Steven Cooreman81fe7c32020-06-08 18:37:19 +0200208{
Steven Cooreman81fe7c32020-06-08 18:37:19 +0200209 if ( PSA_KEY_LIFETIME_IS_VOLATILE( lifetime ) )
210 {
211 /* Volatile keys are always supported */
212 return( PSA_SUCCESS );
213 }
214 else
215 {
216 /* Persistent keys require storage support */
Gilles Peskine30afafd2019-04-25 13:47:40 +0200217#if defined(MBEDTLS_PSA_CRYPTO_STORAGE_C)
Steven Cooreman8c1e7592020-06-17 14:52:05 +0200218 if( psa_is_key_id_valid( key_id,
Steven Cooreman81fe7c32020-06-08 18:37:19 +0200219 psa_key_lifetime_is_external( lifetime ) ) )
220 return( PSA_SUCCESS );
221 else
222 return( PSA_ERROR_INVALID_ARGUMENT );
Gilles Peskine30afafd2019-04-25 13:47:40 +0200223#else /* MBEDTLS_PSA_CRYPTO_STORAGE_C */
Steven Cooremanfa686092020-06-18 14:37:31 +0200224 (void) key_id;
Steven Cooreman81fe7c32020-06-08 18:37:19 +0200225 return( PSA_ERROR_NOT_SUPPORTED );
Gilles Peskine30afafd2019-04-25 13:47:40 +0200226#endif /* !MBEDTLS_PSA_CRYPTO_STORAGE_C */
Steven Cooreman81fe7c32020-06-08 18:37:19 +0200227 }
Gilles Peskined167b942019-04-19 18:19:40 +0200228}
229
Gilles Peskine70e085a2019-05-27 19:04:07 +0200230psa_status_t psa_open_key( psa_key_file_id_t id, psa_key_handle_t *handle )
Gilles Peskine961849f2018-11-30 18:54:54 +0100231{
Gilles Peskine70e085a2019-05-27 19:04:07 +0200232#if defined(MBEDTLS_PSA_CRYPTO_STORAGE_C)
Gilles Peskine961849f2018-11-30 18:54:54 +0100233 psa_status_t status;
Gilles Peskine267c6562019-05-27 19:01:54 +0200234 psa_key_slot_t *slot;
Gilles Peskine961849f2018-11-30 18:54:54 +0100235
236 *handle = 0;
237
Steven Cooreman81fe7c32020-06-08 18:37:19 +0200238 if( ! psa_is_key_id_valid( id, 1 ) )
239 return( PSA_ERROR_INVALID_ARGUMENT );
Gilles Peskine961849f2018-11-30 18:54:54 +0100240
Gilles Peskineedbed562019-08-07 18:19:59 +0200241 status = psa_get_empty_key_slot( handle, &slot );
Gilles Peskine961849f2018-11-30 18:54:54 +0100242 if( status != PSA_SUCCESS )
243 return( status );
244
Gilles Peskine8e338702019-07-30 20:06:31 +0200245 slot->attr.lifetime = PSA_KEY_LIFETIME_PERSISTENT;
246 slot->attr.id = id;
Gilles Peskine267c6562019-05-27 19:01:54 +0200247
248 status = psa_load_persistent_key_into_slot( slot );
Gilles Peskine70e085a2019-05-27 19:04:07 +0200249 if( status != PSA_SUCCESS )
Gilles Peskine961849f2018-11-30 18:54:54 +0100250 {
Gilles Peskine267c6562019-05-27 19:01:54 +0200251 psa_wipe_key_slot( slot );
Gilles Peskine961849f2018-11-30 18:54:54 +0100252 *handle = 0;
253 }
254 return( status );
Gilles Peskine70e085a2019-05-27 19:04:07 +0200255
Gilles Peskine30afafd2019-04-25 13:47:40 +0200256#else /* defined(MBEDTLS_PSA_CRYPTO_STORAGE_C) */
Gilles Peskine70e085a2019-05-27 19:04:07 +0200257 (void) id;
258 *handle = 0;
Gilles Peskine30afafd2019-04-25 13:47:40 +0200259 return( PSA_ERROR_NOT_SUPPORTED );
260#endif /* !defined(MBEDTLS_PSA_CRYPTO_STORAGE_C) */
Gilles Peskine961849f2018-11-30 18:54:54 +0100261}
262
Gilles Peskine961849f2018-11-30 18:54:54 +0100263psa_status_t psa_close_key( psa_key_handle_t handle )
264{
Gilles Peskine267c6562019-05-27 19:01:54 +0200265 psa_status_t status;
266 psa_key_slot_t *slot;
267
Gilles Peskine1841cf42019-10-08 15:48:25 +0200268 if( handle == 0 )
269 return( PSA_SUCCESS );
270
Gilles Peskine267c6562019-05-27 19:01:54 +0200271 status = psa_get_key_slot( handle, &slot );
272 if( status != PSA_SUCCESS )
273 return( status );
274
275 return( psa_wipe_key_slot( slot ) );
Gilles Peskine961849f2018-11-30 18:54:54 +0100276}
277
Gilles Peskine4bac9a42019-05-23 20:32:30 +0200278void mbedtls_psa_get_stats( mbedtls_psa_stats_t *stats )
279{
280 psa_key_handle_t key;
281 memset( stats, 0, sizeof( *stats ) );
282 for( key = 1; key <= PSA_KEY_SLOT_COUNT; key++ )
283 {
Gilles Peskine41e50d22019-07-31 15:01:55 +0200284 const psa_key_slot_t *slot = &global_data.key_slots[key - 1];
285 if( ! psa_is_key_slot_occupied( slot ) )
Gilles Peskine4bac9a42019-05-23 20:32:30 +0200286 {
Gilles Peskine41e50d22019-07-31 15:01:55 +0200287 ++stats->empty_slots;
Gilles Peskine4bac9a42019-05-23 20:32:30 +0200288 continue;
289 }
Gilles Peskine8e338702019-07-30 20:06:31 +0200290 if( slot->attr.lifetime == PSA_KEY_LIFETIME_VOLATILE )
Gilles Peskine4bac9a42019-05-23 20:32:30 +0200291 ++stats->volatile_slots;
Gilles Peskine8e338702019-07-30 20:06:31 +0200292 else if( slot->attr.lifetime == PSA_KEY_LIFETIME_PERSISTENT )
Gilles Peskine4bac9a42019-05-23 20:32:30 +0200293 {
Jaeden Amero6fa62a52019-08-20 17:43:48 +0100294 psa_app_key_id_t id = PSA_KEY_FILE_GET_KEY_ID(slot->attr.id);
Gilles Peskine4bac9a42019-05-23 20:32:30 +0200295 ++stats->persistent_slots;
Jaeden Amero6fa62a52019-08-20 17:43:48 +0100296 if( id > stats->max_open_internal_key_id )
297 stats->max_open_internal_key_id = id;
Gilles Peskine4bac9a42019-05-23 20:32:30 +0200298 }
299 else
300 {
Jaeden Amero6fa62a52019-08-20 17:43:48 +0100301 psa_app_key_id_t id = PSA_KEY_FILE_GET_KEY_ID(slot->attr.id);
Gilles Peskine4bac9a42019-05-23 20:32:30 +0200302 ++stats->external_slots;
Jaeden Amero6fa62a52019-08-20 17:43:48 +0100303 if( id > stats->max_open_external_key_id )
304 stats->max_open_external_key_id = id;
Gilles Peskine4bac9a42019-05-23 20:32:30 +0200305 }
306 }
307}
308
Gilles Peskine961849f2018-11-30 18:54:54 +0100309#endif /* MBEDTLS_PSA_CRYPTO_C */