blob: 36b518350cc7ccab69f2e01ec61e0abd4ed372af [file] [log] [blame]
Darryl Greendb2b8db2018-06-15 13:06:04 +01001/*
2 * PSA persistent key storage
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
Darryl Greendb2b8db2018-06-15 13:06:04 +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.
Darryl Greendb2b8db2018-06-15 13:06:04 +010019 */
20
Mateusz Starzyk88fa17d2021-05-19 17:32:14 +020021#include "common.h"
22
Darryl Greendb2b8db2018-06-15 13:06:04 +010023#if defined(MBEDTLS_PSA_CRYPTO_STORAGE_C)
24
25#include <stdlib.h>
26#include <string.h>
27
28#include "psa/crypto.h"
29#include "psa_crypto_storage.h"
Darryl Greendb2b8db2018-06-15 13:06:04 +010030#include "mbedtls/platform_util.h"
31
Gilles Peskine5e80d912019-02-24 17:10:18 +010032#if defined(MBEDTLS_PSA_ITS_FILE_C)
33#include "psa_crypto_its.h"
34#else /* Native ITS implementation */
35#include "psa/error.h"
36#include "psa/internal_trusted_storage.h"
37#endif
38
Darryl Greendb2b8db2018-06-15 13:06:04 +010039#if defined(MBEDTLS_PLATFORM_C)
40#include "mbedtls/platform.h"
41#else
Jaeden Amerodb29ab52019-02-12 16:40:27 +000042#include <stdlib.h>
Darryl Greendb2b8db2018-06-15 13:06:04 +010043#define mbedtls_calloc calloc
44#define mbedtls_free free
45#endif
46
Gilles Peskinec8336cb2019-07-22 19:26:12 +020047
48
49/****************************************************************/
50/* Key storage */
51/****************************************************************/
52
Ronald Cron71016a92020-08-28 19:01:50 +020053/* Determine a file name (ITS file identifier) for the given key identifier.
54 * The file name must be distinct from any file that is used for a purpose
55 * other than storing a key. Currently, the only such file is the random seed
56 * file whose name is PSA_CRYPTO_ITS_RANDOM_SEED_UID and whose value is
57 * 0xFFFFFF52. */
58static psa_storage_uid_t psa_its_identifier_of_slot( mbedtls_svc_key_id_t key )
Gilles Peskine088b77f2019-02-24 17:00:27 +010059{
Ronald Cronecfb2372020-07-23 17:13:42 +020060#if defined(MBEDTLS_PSA_CRYPTO_KEY_ID_ENCODES_OWNER)
Gilles Peskine088b77f2019-02-24 17:00:27 +010061 /* Encode the owner in the upper 32 bits. This means that if
62 * owner values are nonzero (as they are on a PSA platform),
63 * no key file will ever have a value less than 0x100000000, so
64 * the whole range 0..0xffffffff is available for non-key files. */
Ronald Cron79ca4272020-08-25 09:53:53 +020065 uint32_t unsigned_owner_id = MBEDTLS_SVC_KEY_ID_GET_OWNER_ID( key );
66 return( ( (uint64_t) unsigned_owner_id << 32 ) |
67 MBEDTLS_SVC_KEY_ID_GET_KEY_ID( key ) );
Gilles Peskine088b77f2019-02-24 17:00:27 +010068#else
69 /* Use the key id directly as a file name.
Ronald Cron71016a92020-08-28 19:01:50 +020070 * psa_is_key_id_valid() in psa_crypto_slot_management.c
Gilles Peskine088b77f2019-02-24 17:00:27 +010071 * is responsible for ensuring that key identifiers do not have a
72 * value that is reserved for non-key files. */
Ronald Cron71016a92020-08-28 19:01:50 +020073 return( key );
Gilles Peskine088b77f2019-02-24 17:00:27 +010074#endif
75}
76
Gilles Peskine5e80d912019-02-24 17:10:18 +010077/**
78 * \brief Load persistent data for the given key slot number.
79 *
80 * This function reads data from a storage backend and returns the data in a
81 * buffer.
82 *
83 * \param key Persistent identifier of the key to be loaded. This
84 * should be an occupied storage location.
85 * \param[out] data Buffer where the data is to be written.
86 * \param data_size Size of the \c data buffer in bytes.
87 *
Ronald Cron96783552020-10-19 12:06:30 +020088 * \retval #PSA_SUCCESS
gabor-mezei-arm452b0a32020-11-09 17:42:55 +010089 * \retval #PSA_ERROR_DATA_INVALID
90 * \retval #PSA_ERROR_DATA_CORRUPT
Ronald Cron96783552020-10-19 12:06:30 +020091 * \retval #PSA_ERROR_STORAGE_FAILURE
92 * \retval #PSA_ERROR_DOES_NOT_EXIST
Gilles Peskine5e80d912019-02-24 17:10:18 +010093 */
Ronald Cron71016a92020-08-28 19:01:50 +020094static psa_status_t psa_crypto_storage_load(
95 const mbedtls_svc_key_id_t key, uint8_t *data, size_t data_size )
Gilles Peskine088b77f2019-02-24 17:00:27 +010096{
97 psa_status_t status;
98 psa_storage_uid_t data_identifier = psa_its_identifier_of_slot( key );
99 struct psa_storage_info_t data_identifier_info;
Simon D Hughesbda5a212019-07-10 16:34:21 +0100100 size_t data_length = 0;
Gilles Peskine088b77f2019-02-24 17:00:27 +0100101
102 status = psa_its_get_info( data_identifier, &data_identifier_info );
103 if( status != PSA_SUCCESS )
104 return( status );
105
Simon D Hughesbda5a212019-07-10 16:34:21 +0100106 status = psa_its_get( data_identifier, 0, (uint32_t) data_size, data, &data_length );
107 if( data_size != data_length )
gabor-mezei-armfe309242020-11-09 17:39:56 +0100108 return( PSA_ERROR_DATA_INVALID );
Gilles Peskine088b77f2019-02-24 17:00:27 +0100109
110 return( status );
111}
112
Ronald Cron71016a92020-08-28 19:01:50 +0200113int psa_is_key_present_in_storage( const mbedtls_svc_key_id_t key )
Gilles Peskine088b77f2019-02-24 17:00:27 +0100114{
115 psa_status_t ret;
116 psa_storage_uid_t data_identifier = psa_its_identifier_of_slot( key );
117 struct psa_storage_info_t data_identifier_info;
118
119 ret = psa_its_get_info( data_identifier, &data_identifier_info );
120
121 if( ret == PSA_ERROR_DOES_NOT_EXIST )
122 return( 0 );
123 return( 1 );
124}
125
Gilles Peskine5e80d912019-02-24 17:10:18 +0100126/**
127 * \brief Store persistent data for the given key slot number.
128 *
129 * This function stores the given data buffer to a persistent storage.
130 *
131 * \param key Persistent identifier of the key to be stored. This
132 * should be an unoccupied storage location.
133 * \param[in] data Buffer containing the data to be stored.
134 * \param data_length The number of bytes
135 * that make up the data.
136 *
Ronald Cron96783552020-10-19 12:06:30 +0200137 * \retval #PSA_SUCCESS
138 * \retval #PSA_ERROR_INSUFFICIENT_STORAGE
Ronald Cron96783552020-10-19 12:06:30 +0200139 * \retval #PSA_ERROR_ALREADY_EXISTS
gabor-mezei-arm86326a92020-11-30 16:50:34 +0100140 * \retval #PSA_ERROR_STORAGE_FAILURE
gabor-mezei-arm452b0a32020-11-09 17:42:55 +0100141 * \retval #PSA_ERROR_DATA_INVALID
Gilles Peskine5e80d912019-02-24 17:10:18 +0100142 */
Ronald Cron71016a92020-08-28 19:01:50 +0200143static psa_status_t psa_crypto_storage_store( const mbedtls_svc_key_id_t key,
Gilles Peskine5e80d912019-02-24 17:10:18 +0100144 const uint8_t *data,
145 size_t data_length )
Gilles Peskine088b77f2019-02-24 17:00:27 +0100146{
147 psa_status_t status;
148 psa_storage_uid_t data_identifier = psa_its_identifier_of_slot( key );
149 struct psa_storage_info_t data_identifier_info;
150
151 if( psa_is_key_present_in_storage( key ) == 1 )
152 return( PSA_ERROR_ALREADY_EXISTS );
153
Gilles Peskinefad3a3e2019-02-25 13:36:21 +0100154 status = psa_its_set( data_identifier, (uint32_t) data_length, data, 0 );
Gilles Peskine088b77f2019-02-24 17:00:27 +0100155 if( status != PSA_SUCCESS )
156 {
gabor-mezei-armfe309242020-11-09 17:39:56 +0100157 return( PSA_ERROR_DATA_INVALID );
Gilles Peskine088b77f2019-02-24 17:00:27 +0100158 }
159
160 status = psa_its_get_info( data_identifier, &data_identifier_info );
161 if( status != PSA_SUCCESS )
162 {
163 goto exit;
164 }
165
166 if( data_identifier_info.size != data_length )
167 {
gabor-mezei-armfe309242020-11-09 17:39:56 +0100168 status = PSA_ERROR_DATA_INVALID;
Gilles Peskine088b77f2019-02-24 17:00:27 +0100169 goto exit;
170 }
171
172exit:
173 if( status != PSA_SUCCESS )
Gilles Peskine169ca7f2020-08-25 22:50:06 +0200174 {
175 /* Remove the file in case we managed to create it but something
176 * went wrong. It's ok if the file doesn't exist. If the file exists
177 * but the removal fails, we're already reporting an error so there's
178 * nothing else we can do. */
179 (void) psa_its_remove( data_identifier );
180 }
Gilles Peskine088b77f2019-02-24 17:00:27 +0100181 return( status );
182}
183
Ronald Cron71016a92020-08-28 19:01:50 +0200184psa_status_t psa_destroy_persistent_key( const mbedtls_svc_key_id_t key )
Gilles Peskine088b77f2019-02-24 17:00:27 +0100185{
186 psa_status_t ret;
187 psa_storage_uid_t data_identifier = psa_its_identifier_of_slot( key );
188 struct psa_storage_info_t data_identifier_info;
189
190 ret = psa_its_get_info( data_identifier, &data_identifier_info );
191 if( ret == PSA_ERROR_DOES_NOT_EXIST )
192 return( PSA_SUCCESS );
193
194 if( psa_its_remove( data_identifier ) != PSA_SUCCESS )
gabor-mezei-armfe309242020-11-09 17:39:56 +0100195 return( PSA_ERROR_DATA_INVALID );
Gilles Peskine088b77f2019-02-24 17:00:27 +0100196
197 ret = psa_its_get_info( data_identifier, &data_identifier_info );
198 if( ret != PSA_ERROR_DOES_NOT_EXIST )
gabor-mezei-armfe309242020-11-09 17:39:56 +0100199 return( PSA_ERROR_DATA_INVALID );
Gilles Peskine088b77f2019-02-24 17:00:27 +0100200
201 return( PSA_SUCCESS );
202}
203
Gilles Peskine5e80d912019-02-24 17:10:18 +0100204/**
205 * \brief Get data length for given key slot number.
206 *
207 * \param key Persistent identifier whose stored data length
208 * is to be obtained.
209 * \param[out] data_length The number of bytes that make up the data.
210 *
Ronald Cron96783552020-10-19 12:06:30 +0200211 * \retval #PSA_SUCCESS
212 * \retval #PSA_ERROR_STORAGE_FAILURE
gabor-mezei-arm452b0a32020-11-09 17:42:55 +0100213 * \retval #PSA_ERROR_DOES_NOT_EXIST
214 * \retval #PSA_ERROR_DATA_CORRUPT
Gilles Peskine5e80d912019-02-24 17:10:18 +0100215 */
216static psa_status_t psa_crypto_storage_get_data_length(
Ronald Cron71016a92020-08-28 19:01:50 +0200217 const mbedtls_svc_key_id_t key,
Gilles Peskine5e80d912019-02-24 17:10:18 +0100218 size_t *data_length )
Gilles Peskine088b77f2019-02-24 17:00:27 +0100219{
220 psa_status_t status;
221 psa_storage_uid_t data_identifier = psa_its_identifier_of_slot( key );
222 struct psa_storage_info_t data_identifier_info;
223
224 status = psa_its_get_info( data_identifier, &data_identifier_info );
225 if( status != PSA_SUCCESS )
226 return( status );
227
228 *data_length = (size_t) data_identifier_info.size;
229
230 return( PSA_SUCCESS );
231}
232
Darryl Greendb2b8db2018-06-15 13:06:04 +0100233/*
Torstein Nesse162a1102020-10-07 10:50:15 +0200234 * 16-bit integer manipulation macros (little endian)
235 */
236#ifndef GET_UINT16_LE
237#define GET_UINT16_LE( n, b, i ) \
238{ \
239 (n) = ( (uint16_t) (b)[(i) ] ) \
240 | ( (uint16_t) (b)[(i) + 1] << 8 ); \
241}
242#endif
243
244#ifndef PUT_UINT16_LE
245#define PUT_UINT16_LE( n, b, i ) \
246{ \
247 (b)[(i) ] = (unsigned char) ( ( (n) ) & 0xFF ); \
248 (b)[(i) + 1] = (unsigned char) ( ( (n) >> 8 ) & 0xFF ); \
249}
250#endif
251
Moran Peker96ebf9e2018-06-28 18:02:17 +0300252/**
253 * Persistent key storage magic header.
254 */
255#define PSA_KEY_STORAGE_MAGIC_HEADER "PSA\0KEY"
256#define PSA_KEY_STORAGE_MAGIC_HEADER_LENGTH ( sizeof( PSA_KEY_STORAGE_MAGIC_HEADER ) )
257
Darryl Greendb2b8db2018-06-15 13:06:04 +0100258typedef struct {
Moran Peker96ebf9e2018-06-28 18:02:17 +0300259 uint8_t magic[PSA_KEY_STORAGE_MAGIC_HEADER_LENGTH];
Darryl Greendb2b8db2018-06-15 13:06:04 +0100260 uint8_t version[4];
Gilles Peskine0e8d4952019-07-23 14:46:52 +0200261 uint8_t lifetime[sizeof( psa_key_lifetime_t )];
Torstein Nesse162a1102020-10-07 10:50:15 +0200262 uint8_t type[2];
263 uint8_t bits[2];
Darryl Greendb2b8db2018-06-15 13:06:04 +0100264 uint8_t policy[sizeof( psa_key_policy_t )];
265 uint8_t data_len[4];
266 uint8_t key_data[];
267} psa_persistent_key_storage_format;
268
269void psa_format_key_data_for_storage( const uint8_t *data,
270 const size_t data_length,
Gilles Peskine4ed0e6f2019-07-30 20:22:33 +0200271 const psa_core_key_attributes_t *attr,
Darryl Greendb2b8db2018-06-15 13:06:04 +0100272 uint8_t *storage_data )
273{
274 psa_persistent_key_storage_format *storage_format =
275 (psa_persistent_key_storage_format *) storage_data;
276
Moran Peker96ebf9e2018-06-28 18:02:17 +0300277 memcpy( storage_format->magic, PSA_KEY_STORAGE_MAGIC_HEADER, PSA_KEY_STORAGE_MAGIC_HEADER_LENGTH );
Gilles Peskine274a2632019-07-23 11:27:38 +0200278 PUT_UINT32_LE( 0, storage_format->version, 0 );
Gilles Peskine4ed0e6f2019-07-30 20:22:33 +0200279 PUT_UINT32_LE( attr->lifetime, storage_format->lifetime, 0 );
Torstein Nesse162a1102020-10-07 10:50:15 +0200280 PUT_UINT16_LE( (uint16_t) attr->type, storage_format->type, 0 );
281 PUT_UINT16_LE( (uint16_t) attr->bits, storage_format->bits, 0 );
Gilles Peskine4ed0e6f2019-07-30 20:22:33 +0200282 PUT_UINT32_LE( attr->policy.usage, storage_format->policy, 0 );
283 PUT_UINT32_LE( attr->policy.alg, storage_format->policy, sizeof( uint32_t ) );
284 PUT_UINT32_LE( attr->policy.alg2, storage_format->policy, 2 * sizeof( uint32_t ) );
Gilles Peskine274a2632019-07-23 11:27:38 +0200285 PUT_UINT32_LE( data_length, storage_format->data_len, 0 );
Darryl Greendb2b8db2018-06-15 13:06:04 +0100286 memcpy( storage_format->key_data, data, data_length );
287}
288
Moran Peker96ebf9e2018-06-28 18:02:17 +0300289static psa_status_t check_magic_header( const uint8_t *data )
290{
291 if( memcmp( data, PSA_KEY_STORAGE_MAGIC_HEADER,
292 PSA_KEY_STORAGE_MAGIC_HEADER_LENGTH ) != 0 )
gabor-mezei-armfe309242020-11-09 17:39:56 +0100293 return( PSA_ERROR_DATA_INVALID );
Moran Peker96ebf9e2018-06-28 18:02:17 +0300294 return( PSA_SUCCESS );
295}
296
Darryl Greendb2b8db2018-06-15 13:06:04 +0100297psa_status_t psa_parse_key_data_from_storage( const uint8_t *storage_data,
298 size_t storage_data_length,
299 uint8_t **key_data,
300 size_t *key_data_length,
Gilles Peskine4ed0e6f2019-07-30 20:22:33 +0200301 psa_core_key_attributes_t *attr )
Darryl Greendb2b8db2018-06-15 13:06:04 +0100302{
Moran Peker96ebf9e2018-06-28 18:02:17 +0300303 psa_status_t status;
Darryl Greendb2b8db2018-06-15 13:06:04 +0100304 const psa_persistent_key_storage_format *storage_format =
305 (const psa_persistent_key_storage_format *)storage_data;
306 uint32_t version;
307
Moran Peker96ebf9e2018-06-28 18:02:17 +0300308 if( storage_data_length < sizeof(*storage_format) )
gabor-mezei-armfe309242020-11-09 17:39:56 +0100309 return( PSA_ERROR_DATA_INVALID );
Moran Peker96ebf9e2018-06-28 18:02:17 +0300310
311 status = check_magic_header( storage_data );
312 if( status != PSA_SUCCESS )
313 return( status );
314
Gilles Peskine274a2632019-07-23 11:27:38 +0200315 GET_UINT32_LE( version, storage_format->version, 0 );
Darryl Greendb2b8db2018-06-15 13:06:04 +0100316 if( version != 0 )
gabor-mezei-armfe309242020-11-09 17:39:56 +0100317 return( PSA_ERROR_DATA_INVALID );
Darryl Greendb2b8db2018-06-15 13:06:04 +0100318
Gilles Peskine274a2632019-07-23 11:27:38 +0200319 GET_UINT32_LE( *key_data_length, storage_format->data_len, 0 );
Darryl Greendb2b8db2018-06-15 13:06:04 +0100320 if( *key_data_length > ( storage_data_length - sizeof(*storage_format) ) ||
321 *key_data_length > PSA_CRYPTO_MAX_STORAGE_SIZE )
gabor-mezei-armfe309242020-11-09 17:39:56 +0100322 return( PSA_ERROR_DATA_INVALID );
Darryl Greendb2b8db2018-06-15 13:06:04 +0100323
Gilles Peskine3495b582019-04-25 13:47:06 +0200324 if( *key_data_length == 0 )
325 {
326 *key_data = NULL;
327 }
328 else
329 {
330 *key_data = mbedtls_calloc( 1, *key_data_length );
331 if( *key_data == NULL )
332 return( PSA_ERROR_INSUFFICIENT_MEMORY );
333 memcpy( *key_data, storage_format->key_data, *key_data_length );
334 }
Darryl Greendb2b8db2018-06-15 13:06:04 +0100335
Gilles Peskine4ed0e6f2019-07-30 20:22:33 +0200336 GET_UINT32_LE( attr->lifetime, storage_format->lifetime, 0 );
Torstein Nesse162a1102020-10-07 10:50:15 +0200337 GET_UINT16_LE( attr->type, storage_format->type, 0 );
338 GET_UINT16_LE( attr->bits, storage_format->bits, 0 );
Gilles Peskine4ed0e6f2019-07-30 20:22:33 +0200339 GET_UINT32_LE( attr->policy.usage, storage_format->policy, 0 );
340 GET_UINT32_LE( attr->policy.alg, storage_format->policy, sizeof( uint32_t ) );
341 GET_UINT32_LE( attr->policy.alg2, storage_format->policy, 2 * sizeof( uint32_t ) );
Darryl Greendb2b8db2018-06-15 13:06:04 +0100342
Darryl Greendb2b8db2018-06-15 13:06:04 +0100343 return( PSA_SUCCESS );
344}
345
Gilles Peskine4ed0e6f2019-07-30 20:22:33 +0200346psa_status_t psa_save_persistent_key( const psa_core_key_attributes_t *attr,
Darryl Greendb2b8db2018-06-15 13:06:04 +0100347 const uint8_t *data,
348 const size_t data_length )
349{
350 size_t storage_data_length;
351 uint8_t *storage_data;
352 psa_status_t status;
353
Steven Cooremand80e8a42021-01-26 12:45:39 +0100354 /* All keys saved to persistent storage always have a key context */
355 if( data == NULL || data_length == 0 )
356 return( PSA_ERROR_INVALID_ARGUMENT );
357
Darryl Greendb2b8db2018-06-15 13:06:04 +0100358 if( data_length > PSA_CRYPTO_MAX_STORAGE_SIZE )
Steven Cooremand80e8a42021-01-26 12:45:39 +0100359 return( PSA_ERROR_INSUFFICIENT_STORAGE );
Darryl Greendb2b8db2018-06-15 13:06:04 +0100360 storage_data_length = data_length + sizeof( psa_persistent_key_storage_format );
361
362 storage_data = mbedtls_calloc( 1, storage_data_length );
363 if( storage_data == NULL )
364 return( PSA_ERROR_INSUFFICIENT_MEMORY );
365
Gilles Peskine4ed0e6f2019-07-30 20:22:33 +0200366 psa_format_key_data_for_storage( data, data_length, attr, storage_data );
Darryl Greendb2b8db2018-06-15 13:06:04 +0100367
Gilles Peskine4ed0e6f2019-07-30 20:22:33 +0200368 status = psa_crypto_storage_store( attr->id,
Darryl Greendb2b8db2018-06-15 13:06:04 +0100369 storage_data, storage_data_length );
370
371 mbedtls_free( storage_data );
372
373 return( status );
374}
375
376void psa_free_persistent_key_data( uint8_t *key_data, size_t key_data_length )
377{
378 if( key_data != NULL )
379 {
380 mbedtls_platform_zeroize( key_data, key_data_length );
381 }
382 mbedtls_free( key_data );
383}
384
Gilles Peskine4ed0e6f2019-07-30 20:22:33 +0200385psa_status_t psa_load_persistent_key( psa_core_key_attributes_t *attr,
Darryl Greendb2b8db2018-06-15 13:06:04 +0100386 uint8_t **data,
387 size_t *data_length )
388{
389 psa_status_t status = PSA_SUCCESS;
390 uint8_t *loaded_data;
391 size_t storage_data_length = 0;
Ronald Cron71016a92020-08-28 19:01:50 +0200392 mbedtls_svc_key_id_t key = attr->id;
Darryl Greendb2b8db2018-06-15 13:06:04 +0100393
394 status = psa_crypto_storage_get_data_length( key, &storage_data_length );
395 if( status != PSA_SUCCESS )
396 return( status );
397
398 loaded_data = mbedtls_calloc( 1, storage_data_length );
399
400 if( loaded_data == NULL )
401 return( PSA_ERROR_INSUFFICIENT_MEMORY );
402
403 status = psa_crypto_storage_load( key, loaded_data, storage_data_length );
404 if( status != PSA_SUCCESS )
405 goto exit;
406
407 status = psa_parse_key_data_from_storage( loaded_data, storage_data_length,
Gilles Peskine4ed0e6f2019-07-30 20:22:33 +0200408 data, data_length, attr );
Darryl Greendb2b8db2018-06-15 13:06:04 +0100409
Steven Cooremand80e8a42021-01-26 12:45:39 +0100410 /* All keys saved to persistent storage always have a key context */
411 if( status == PSA_SUCCESS &&
412 ( *data == NULL || *data_length == 0 ) )
413 status = PSA_ERROR_STORAGE_FAILURE;
414
Darryl Greendb2b8db2018-06-15 13:06:04 +0100415exit:
416 mbedtls_free( loaded_data );
417 return( status );
418}
419
Gilles Peskinec8336cb2019-07-22 19:26:12 +0200420
421
422/****************************************************************/
423/* Transactions */
424/****************************************************************/
425
426#if defined(PSA_CRYPTO_STORAGE_HAS_TRANSACTIONS)
427
428psa_crypto_transaction_t psa_crypto_transaction;
429
430psa_status_t psa_crypto_save_transaction( void )
431{
432 struct psa_storage_info_t p_info;
433 psa_status_t status;
Jaeden Amero2ce22a52019-10-28 15:25:10 +0000434 status = psa_its_get_info( PSA_CRYPTO_ITS_TRANSACTION_UID, &p_info );
Gilles Peskinec8336cb2019-07-22 19:26:12 +0200435 if( status == PSA_SUCCESS )
436 {
437 /* This shouldn't happen: we're trying to start a transaction while
438 * there is still a transaction that hasn't been replayed. */
439 return( PSA_ERROR_CORRUPTION_DETECTED );
440 }
441 else if( status != PSA_ERROR_DOES_NOT_EXIST )
442 return( status );
443 return( psa_its_set( PSA_CRYPTO_ITS_TRANSACTION_UID,
444 sizeof( psa_crypto_transaction ),
445 &psa_crypto_transaction,
446 0 ) );
447}
448
449psa_status_t psa_crypto_load_transaction( void )
450{
Gilles Peskine8b663892019-07-31 17:57:57 +0200451 psa_status_t status;
452 size_t length;
453 status = psa_its_get( PSA_CRYPTO_ITS_TRANSACTION_UID, 0,
454 sizeof( psa_crypto_transaction ),
455 &psa_crypto_transaction, &length );
456 if( status != PSA_SUCCESS )
457 return( status );
458 if( length != sizeof( psa_crypto_transaction ) )
gabor-mezei-armfe309242020-11-09 17:39:56 +0100459 return( PSA_ERROR_DATA_INVALID );
Gilles Peskine8b663892019-07-31 17:57:57 +0200460 return( PSA_SUCCESS );
Gilles Peskinec8336cb2019-07-22 19:26:12 +0200461}
462
463psa_status_t psa_crypto_stop_transaction( void )
464{
465 psa_status_t status = psa_its_remove( PSA_CRYPTO_ITS_TRANSACTION_UID );
466 /* Whether or not updating the storage succeeded, the transaction is
467 * finished now. It's too late to go back, so zero out the in-memory
468 * data. */
469 memset( &psa_crypto_transaction, 0, sizeof( psa_crypto_transaction ) );
470 return( status );
471}
472
473#endif /* PSA_CRYPTO_STORAGE_HAS_TRANSACTIONS */
474
475
476
477/****************************************************************/
478/* Random generator state */
479/****************************************************************/
480
Gilles Peskinee3dbdd82019-02-25 11:04:06 +0100481#if defined(MBEDTLS_PSA_INJECT_ENTROPY)
482psa_status_t mbedtls_psa_storage_inject_entropy( const unsigned char *seed,
483 size_t seed_size )
484{
485 psa_status_t status;
486 struct psa_storage_info_t p_info;
487
488 status = psa_its_get_info( PSA_CRYPTO_ITS_RANDOM_SEED_UID, &p_info );
489
490 if( PSA_ERROR_DOES_NOT_EXIST == status ) /* No seed exists */
491 {
492 status = psa_its_set( PSA_CRYPTO_ITS_RANDOM_SEED_UID, seed_size, seed, 0 );
493 }
494 else if( PSA_SUCCESS == status )
495 {
496 /* You should not be here. Seed needs to be injected only once */
497 status = PSA_ERROR_NOT_PERMITTED;
498 }
499 return( status );
500}
501#endif /* MBEDTLS_PSA_INJECT_ENTROPY */
502
Gilles Peskinec8336cb2019-07-22 19:26:12 +0200503
504
505/****************************************************************/
506/* The end */
507/****************************************************************/
508
Darryl Greendb2b8db2018-06-15 13:06:04 +0100509#endif /* MBEDTLS_PSA_CRYPTO_STORAGE_C */