Gilles Peskine | 601bd53 | 2019-02-24 11:34:28 +0100 | [diff] [blame] | 1 | /** \file psa_crypto_its.h |
| 2 | * \brief Interface of trusted storage that crypto is built on. |
| 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 | 5f54497 | 2019-02-24 11:26:36 +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. |
| 19 | */ |
Gilles Peskine | 5f54497 | 2019-02-24 11:26:36 +0100 | [diff] [blame] | 20 | |
Gilles Peskine | 601bd53 | 2019-02-24 11:34:28 +0100 | [diff] [blame] | 21 | #ifndef PSA_CRYPTO_ITS_H |
| 22 | #define PSA_CRYPTO_ITS_H |
Gilles Peskine | 5f54497 | 2019-02-24 11:26:36 +0100 | [diff] [blame] | 23 | |
| 24 | #include <stddef.h> |
| 25 | #include <stdint.h> |
| 26 | |
Gilles Peskine | 601bd53 | 2019-02-24 11:34:28 +0100 | [diff] [blame] | 27 | #include <psa/crypto_types.h> |
| 28 | #include <psa/crypto_values.h> |
Gilles Peskine | 5f54497 | 2019-02-24 11:26:36 +0100 | [diff] [blame] | 29 | |
| 30 | #ifdef __cplusplus |
| 31 | extern "C" { |
| 32 | #endif |
Gilles Peskine | 601bd53 | 2019-02-24 11:34:28 +0100 | [diff] [blame] | 33 | |
| 34 | /** \brief Flags used when creating a data entry |
| 35 | */ |
| 36 | typedef uint32_t psa_storage_create_flags_t; |
| 37 | |
| 38 | /** \brief A type for UIDs used for identifying data |
| 39 | */ |
| 40 | typedef uint64_t psa_storage_uid_t; |
| 41 | |
| 42 | #define PSA_STORAGE_FLAG_NONE 0 /**< No flags to pass */ |
| 43 | #define PSA_STORAGE_FLAG_WRITE_ONCE (1 << 0) /**< The data associated with the uid will not be able to be modified or deleted. Intended to be used to set bits in `psa_storage_create_flags_t`*/ |
| 44 | |
| 45 | /** |
| 46 | * \brief A container for metadata associated with a specific uid |
| 47 | */ |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 48 | struct psa_storage_info_t { |
Gilles Peskine | 601bd53 | 2019-02-24 11:34:28 +0100 | [diff] [blame] | 49 | uint32_t size; /**< The size of the data associated with a uid **/ |
| 50 | psa_storage_create_flags_t flags; /**< The flags set when the uid was created **/ |
| 51 | }; |
| 52 | |
| 53 | /** Flag indicating that \ref psa_storage_create and \ref psa_storage_set_extended are supported */ |
| 54 | #define PSA_STORAGE_SUPPORT_SET_EXTENDED (1 << 0) |
| 55 | |
Gilles Peskine | 5f54497 | 2019-02-24 11:26:36 +0100 | [diff] [blame] | 56 | #define PSA_ITS_API_VERSION_MAJOR 1 /**< The major version number of the PSA ITS API. It will be incremented on significant updates that may include breaking changes */ |
| 57 | #define PSA_ITS_API_VERSION_MINOR 1 /**< The minor version number of the PSA ITS API. It will be incremented in small updates that are unlikely to include breaking changes */ |
| 58 | |
| 59 | /** |
| 60 | * \brief create a new or modify an existing uid/value pair |
| 61 | * |
| 62 | * \param[in] uid the identifier for the data |
| 63 | * \param[in] data_length The size in bytes of the data in `p_data` |
| 64 | * \param[in] p_data A buffer containing the data |
| 65 | * \param[in] create_flags The flags that the data will be stored with |
Gilles Peskine | 601bd53 | 2019-02-24 11:34:28 +0100 | [diff] [blame] | 66 | * |
Gilles Peskine | 5f54497 | 2019-02-24 11:26:36 +0100 | [diff] [blame] | 67 | * \return A status indicating the success/failure of the operation |
Gilles Peskine | 601bd53 | 2019-02-24 11:34:28 +0100 | [diff] [blame] | 68 | * |
gabor-mezei-arm | fd7d7a7 | 2020-11-09 16:32:33 +0100 | [diff] [blame] | 69 | * \retval #PSA_SUCCESS The operation completed successfully |
Pengyu Lv | f513197 | 2022-11-08 18:17:00 +0800 | [diff] [blame] | 70 | * \retval #PSA_ERROR_NOT_PERMITTED The operation failed because the provided `uid` value was already created with PSA_STORAGE_FLAG_WRITE_ONCE |
gabor-mezei-arm | fd7d7a7 | 2020-11-09 16:32:33 +0100 | [diff] [blame] | 71 | * \retval #PSA_ERROR_NOT_SUPPORTED The operation failed because one or more of the flags provided in `create_flags` is not supported or is not valid |
| 72 | * \retval #PSA_ERROR_INSUFFICIENT_STORAGE The operation failed because there was insufficient space on the storage medium |
| 73 | * \retval #PSA_ERROR_STORAGE_FAILURE The operation failed because the physical storage has failed (Fatal error) |
| 74 | * \retval #PSA_ERROR_INVALID_ARGUMENT The operation failed because one of the provided pointers(`p_data`) |
Gilles Peskine | 5f54497 | 2019-02-24 11:26:36 +0100 | [diff] [blame] | 75 | * is invalid, for example is `NULL` or references memory the caller cannot access |
| 76 | */ |
| 77 | psa_status_t psa_its_set(psa_storage_uid_t uid, |
| 78 | uint32_t data_length, |
| 79 | const void *p_data, |
| 80 | psa_storage_create_flags_t create_flags); |
| 81 | |
| 82 | /** |
| 83 | * \brief Retrieve the value associated with a provided uid |
| 84 | * |
| 85 | * \param[in] uid The uid value |
| 86 | * \param[in] data_offset The starting offset of the data requested |
| 87 | * \param[in] data_length the amount of data requested (and the minimum allocated size of the `p_data` buffer) |
| 88 | * \param[out] p_data The buffer where the data will be placed upon successful completion |
Simon D Hughes | bda5a21 | 2019-07-10 16:34:21 +0100 | [diff] [blame] | 89 | * \param[out] p_data_length The amount of data returned in the p_data buffer |
Gilles Peskine | 601bd53 | 2019-02-24 11:34:28 +0100 | [diff] [blame] | 90 | * |
| 91 | * |
Gilles Peskine | 5f54497 | 2019-02-24 11:26:36 +0100 | [diff] [blame] | 92 | * \return A status indicating the success/failure of the operation |
| 93 | * |
gabor-mezei-arm | fd7d7a7 | 2020-11-09 16:32:33 +0100 | [diff] [blame] | 94 | * \retval #PSA_SUCCESS The operation completed successfully |
| 95 | * \retval #PSA_ERROR_DOES_NOT_EXIST The operation failed because the provided `uid` value was not found in the storage |
gabor-mezei-arm | fd7d7a7 | 2020-11-09 16:32:33 +0100 | [diff] [blame] | 96 | * \retval #PSA_ERROR_STORAGE_FAILURE The operation failed because the physical storage has failed (Fatal error) |
gabor-mezei-arm | 452b0a3 | 2020-11-09 17:42:55 +0100 | [diff] [blame] | 97 | * \retval #PSA_ERROR_DATA_CORRUPT The operation failed because stored data has been corrupted |
gabor-mezei-arm | fd7d7a7 | 2020-11-09 16:32:33 +0100 | [diff] [blame] | 98 | * \retval #PSA_ERROR_INVALID_ARGUMENT The operation failed because one of the provided pointers(`p_data`, `p_data_length`) |
Gilles Peskine | 5f54497 | 2019-02-24 11:26:36 +0100 | [diff] [blame] | 99 | * is invalid. For example is `NULL` or references memory the caller cannot access. |
| 100 | * In addition, this can also happen if an invalid offset was provided. |
| 101 | */ |
| 102 | psa_status_t psa_its_get(psa_storage_uid_t uid, |
| 103 | uint32_t data_offset, |
| 104 | uint32_t data_length, |
Simon D Hughes | bda5a21 | 2019-07-10 16:34:21 +0100 | [diff] [blame] | 105 | void *p_data, |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 106 | size_t *p_data_length); |
Gilles Peskine | 5f54497 | 2019-02-24 11:26:36 +0100 | [diff] [blame] | 107 | |
| 108 | /** |
| 109 | * \brief Retrieve the metadata about the provided uid |
Gilles Peskine | 601bd53 | 2019-02-24 11:34:28 +0100 | [diff] [blame] | 110 | * |
Gilles Peskine | 5f54497 | 2019-02-24 11:26:36 +0100 | [diff] [blame] | 111 | * \param[in] uid The uid value |
| 112 | * \param[out] p_info A pointer to the `psa_storage_info_t` struct that will be populated with the metadata |
Gilles Peskine | 601bd53 | 2019-02-24 11:34:28 +0100 | [diff] [blame] | 113 | * |
Gilles Peskine | 5f54497 | 2019-02-24 11:26:36 +0100 | [diff] [blame] | 114 | * \return A status indicating the success/failure of the operation |
Gilles Peskine | 601bd53 | 2019-02-24 11:34:28 +0100 | [diff] [blame] | 115 | * |
gabor-mezei-arm | fd7d7a7 | 2020-11-09 16:32:33 +0100 | [diff] [blame] | 116 | * \retval #PSA_SUCCESS The operation completed successfully |
| 117 | * \retval #PSA_ERROR_DOES_NOT_EXIST The operation failed because the provided uid value was not found in the storage |
| 118 | * \retval #PSA_ERROR_DATA_CORRUPT The operation failed because stored data has been corrupted |
| 119 | * \retval #PSA_ERROR_INVALID_ARGUMENT The operation failed because one of the provided pointers(`p_info`) |
Gilles Peskine | 5f54497 | 2019-02-24 11:26:36 +0100 | [diff] [blame] | 120 | * is invalid, for example is `NULL` or references memory the caller cannot access |
| 121 | */ |
| 122 | psa_status_t psa_its_get_info(psa_storage_uid_t uid, |
| 123 | struct psa_storage_info_t *p_info); |
| 124 | |
| 125 | /** |
| 126 | * \brief Remove the provided key and its associated data from the storage |
Gilles Peskine | 601bd53 | 2019-02-24 11:34:28 +0100 | [diff] [blame] | 127 | * |
Gilles Peskine | 5f54497 | 2019-02-24 11:26:36 +0100 | [diff] [blame] | 128 | * \param[in] uid The uid value |
Gilles Peskine | 601bd53 | 2019-02-24 11:34:28 +0100 | [diff] [blame] | 129 | * |
Gilles Peskine | 5f54497 | 2019-02-24 11:26:36 +0100 | [diff] [blame] | 130 | * \return A status indicating the success/failure of the operation |
Gilles Peskine | 601bd53 | 2019-02-24 11:34:28 +0100 | [diff] [blame] | 131 | * |
gabor-mezei-arm | fd7d7a7 | 2020-11-09 16:32:33 +0100 | [diff] [blame] | 132 | * \retval #PSA_SUCCESS The operation completed successfully |
| 133 | * \retval #PSA_ERROR_DOES_NOT_EXIST The operation failed because the provided key value was not found in the storage |
Pengyu Lv | f513197 | 2022-11-08 18:17:00 +0800 | [diff] [blame] | 134 | * \retval #PSA_ERROR_NOT_PERMITTED The operation failed because the provided key value was created with PSA_STORAGE_FLAG_WRITE_ONCE |
gabor-mezei-arm | fd7d7a7 | 2020-11-09 16:32:33 +0100 | [diff] [blame] | 135 | * \retval #PSA_ERROR_STORAGE_FAILURE The operation failed because the physical storage has failed (Fatal error) |
Gilles Peskine | 5f54497 | 2019-02-24 11:26:36 +0100 | [diff] [blame] | 136 | */ |
| 137 | psa_status_t psa_its_remove(psa_storage_uid_t uid); |
| 138 | |
Steven Cooreman | 8c31025 | 2020-10-22 10:43:45 +0200 | [diff] [blame] | 139 | #ifdef __cplusplus |
| 140 | } |
| 141 | #endif |
| 142 | |
Gilles Peskine | 601bd53 | 2019-02-24 11:34:28 +0100 | [diff] [blame] | 143 | #endif /* PSA_CRYPTO_ITS_H */ |