Gilles Peskine | 7597689 | 2018-12-12 15:55:09 +0100 | [diff] [blame] | 1 | /** |
| 2 | * \file psa/crypto_se_driver.h |
| 3 | * \brief PSA external cryptoprocessor driver module |
| 4 | * |
| 5 | * This header declares types and function signatures for cryptography |
Derek Miller | f0c1d0d | 2019-02-15 17:23:42 -0600 | [diff] [blame] | 6 | * drivers that access key material via opaque references. |
| 7 | * This is meant for cryptoprocessors that have a separate key storage from the |
Gilles Peskine | 7597689 | 2018-12-12 15:55:09 +0100 | [diff] [blame] | 8 | * space in which the PSA Crypto implementation runs, typically secure |
Derek Miller | f0c1d0d | 2019-02-15 17:23:42 -0600 | [diff] [blame] | 9 | * elements (SEs). |
Gilles Peskine | 7597689 | 2018-12-12 15:55:09 +0100 | [diff] [blame] | 10 | * |
Gilles Peskine | b6cadea | 2019-06-24 13:46:37 +0200 | [diff] [blame] | 11 | * This file is part of the PSA Crypto Driver HAL (hardware abstraction layer), |
| 12 | * containing functions for driver developers to implement to enable hardware |
| 13 | * to be called in a standardized way by a PSA Cryptography API |
| 14 | * implementation. The functions comprising the driver HAL, which driver |
| 15 | * authors implement, are not intended to be called by application developers. |
Gilles Peskine | 7597689 | 2018-12-12 15:55:09 +0100 | [diff] [blame] | 16 | */ |
| 17 | |
| 18 | /* |
| 19 | * Copyright (C) 2018, ARM Limited, All Rights Reserved |
| 20 | * SPDX-License-Identifier: Apache-2.0 |
| 21 | * |
| 22 | * Licensed under the Apache License, Version 2.0 (the "License"); you may |
| 23 | * not use this file except in compliance with the License. |
| 24 | * You may obtain a copy of the License at |
| 25 | * |
| 26 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 27 | * |
| 28 | * Unless required by applicable law or agreed to in writing, software |
| 29 | * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT |
| 30 | * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 31 | * See the License for the specific language governing permissions and |
| 32 | * limitations under the License. |
| 33 | */ |
| 34 | #ifndef PSA_CRYPTO_SE_DRIVER_H |
| 35 | #define PSA_CRYPTO_SE_DRIVER_H |
| 36 | |
| 37 | #include "crypto_driver_common.h" |
| 38 | |
| 39 | #ifdef __cplusplus |
| 40 | extern "C" { |
| 41 | #endif |
| 42 | |
Gilles Peskine | 7a86da1 | 2019-07-12 23:25:38 +0200 | [diff] [blame] | 43 | /** \defgroup se_init Secure element driver initialization |
| 44 | */ |
| 45 | /**@{*/ |
| 46 | |
| 47 | /** \brief Driver context structure |
| 48 | * |
| 49 | * Driver functions receive a pointer to this structure. |
| 50 | * Each registered driver has one instance of this structure. |
| 51 | * |
| 52 | * Implementations must include the fields specified here and |
| 53 | * may include other fields. |
| 54 | */ |
| 55 | typedef struct { |
| 56 | /** A read-only pointer to the driver's persistent data. |
| 57 | * |
Gilles Peskine | 0c3ae1f | 2019-07-25 14:04:38 +0200 | [diff] [blame] | 58 | * Drivers typically use this persistent data to keep track of |
| 59 | * which slot numbers are available. This is only a guideline: |
| 60 | * drivers may use the persistent data for any purpose, keeping |
| 61 | * in mind the restrictions on when the persistent data is saved |
| 62 | * to storage: the persistent data is only saved after calling |
| 63 | * certain functions that receive a writable pointer to the |
| 64 | * persistent data. |
Gilles Peskine | 7a86da1 | 2019-07-12 23:25:38 +0200 | [diff] [blame] | 65 | * |
| 66 | * The core allocates a memory buffer for the persistent data. |
Gilles Peskine | 6a3dd89 | 2019-07-25 10:56:39 +0200 | [diff] [blame] | 67 | * The pointer is guaranteed to be suitably aligned for any data type, |
Gilles Peskine | 7a86da1 | 2019-07-12 23:25:38 +0200 | [diff] [blame] | 68 | * like a pointer returned by `malloc` (but the core can use any |
| 69 | * method to allocate the buffer, not necessarily `malloc`). |
| 70 | * |
Gilles Peskine | 9dd125d | 2019-07-23 18:26:43 +0200 | [diff] [blame] | 71 | * The size of this buffer is in the \c persistent_data_size field of |
| 72 | * this structure. |
Gilles Peskine | 7a86da1 | 2019-07-12 23:25:38 +0200 | [diff] [blame] | 73 | * |
| 74 | * Before the driver is initialized for the first time, the content of |
| 75 | * the persistent data is all-bits-zero. After a driver upgrade, if the |
| 76 | * size of the persistent data has increased, the original data is padded |
| 77 | * on the right with zeros; if the size has decreased, the original data |
| 78 | * is truncated to the new size. |
| 79 | * |
| 80 | * This pointer is to read-only data. Only a few driver functions are |
| 81 | * allowed to modify the persistent data. These functions receive a |
Gilles Peskine | 0c3ae1f | 2019-07-25 14:04:38 +0200 | [diff] [blame] | 82 | * writable pointer. These functions are: |
| 83 | * - psa_drv_se_t::p_init |
| 84 | * - psa_drv_se_key_management_t::p_allocate |
| 85 | * - psa_drv_se_key_management_t::p_destroy |
| 86 | * |
| 87 | * The PSA Cryptography core saves the persistent data from one |
| 88 | * session to the next. It does this before returning from API functions |
| 89 | * that call a driver method that is allowed to modify the persistent |
| 90 | * data, specifically: |
| 91 | * - psa_crypto_init() causes a call to psa_drv_se_t::p_init, and may call |
| 92 | * psa_drv_se_key_management_t::p_destroy to complete an action |
| 93 | * that was interrupted by a power failure. |
| 94 | * - Key creation functions cause a call to |
| 95 | * psa_drv_se_key_management_t::p_allocate, and may cause a call to |
| 96 | * psa_drv_se_key_management_t::p_destroy in case an error occurs. |
| 97 | * - psa_destroy_key() causes a call to |
| 98 | * psa_drv_se_key_management_t::p_destroy. |
Gilles Peskine | 7a86da1 | 2019-07-12 23:25:38 +0200 | [diff] [blame] | 99 | */ |
| 100 | const void *const persistent_data; |
| 101 | |
| 102 | /** The size of \c persistent_data in bytes. |
| 103 | * |
Gilles Peskine | 9dd125d | 2019-07-23 18:26:43 +0200 | [diff] [blame] | 104 | * This is always equal to the value of the `persistent_data_size` field |
| 105 | * of the ::psa_drv_se_t structure when the driver is registered. |
Gilles Peskine | 7a86da1 | 2019-07-12 23:25:38 +0200 | [diff] [blame] | 106 | */ |
| 107 | const size_t persistent_data_size; |
| 108 | |
| 109 | /** Driver transient data. |
| 110 | * |
| 111 | * The core initializes this value to 0 and does not read or modify it |
| 112 | * afterwards. The driver may store whatever it wants in this field. |
| 113 | */ |
| 114 | uintptr_t transient_data; |
| 115 | } psa_drv_se_context_t; |
| 116 | |
| 117 | /** \brief A driver initialization function. |
| 118 | * |
| 119 | * \param[in,out] drv_context The driver context structure. |
Gilles Peskine | 94cc42c | 2019-07-12 23:34:20 +0200 | [diff] [blame] | 120 | * \param[in,out] persistent_data A pointer to the persistent data |
| 121 | * that allows writing. |
Gilles Peskine | 7a86da1 | 2019-07-12 23:25:38 +0200 | [diff] [blame] | 122 | * \param lifetime The lifetime value for which this driver |
| 123 | * is registered. |
| 124 | * |
| 125 | * \retval #PSA_SUCCESS |
| 126 | * The driver is operational. |
| 127 | * The core will update the persistent data in storage. |
| 128 | * \return |
| 129 | * Any other return value prevents the driver from being used in |
| 130 | * this session. |
| 131 | * The core will NOT update the persistent data in storage. |
| 132 | */ |
| 133 | typedef psa_status_t (*psa_drv_se_init_t)(psa_drv_se_context_t *drv_context, |
Gilles Peskine | 94cc42c | 2019-07-12 23:34:20 +0200 | [diff] [blame] | 134 | void *persistent_data, |
Gilles Peskine | 7a86da1 | 2019-07-12 23:25:38 +0200 | [diff] [blame] | 135 | psa_key_lifetime_t lifetime); |
| 136 | |
Gilles Peskine | c8000c0 | 2019-08-02 20:15:51 +0200 | [diff] [blame] | 137 | #if defined(__DOXYGEN_ONLY__) || !defined(MBEDTLS_PSA_CRYPTO_SE_C) |
| 138 | /* Mbed Crypto with secure element support enabled defines this type in |
| 139 | * crypto_types.h because it is also visible to applications through an |
| 140 | * implementation-specific extension. |
| 141 | * For the PSA Cryptography specification, this type is only visible |
| 142 | * via crypto_se_driver.h. */ |
Gilles Peskine | 7597689 | 2018-12-12 15:55:09 +0100 | [diff] [blame] | 143 | /** An internal designation of a key slot between the core part of the |
| 144 | * PSA Crypto implementation and the driver. The meaning of this value |
| 145 | * is driver-dependent. */ |
Gilles Peskine | f03143a | 2019-07-12 23:18:29 +0200 | [diff] [blame] | 146 | typedef uint64_t psa_key_slot_number_t; |
Gilles Peskine | c8000c0 | 2019-08-02 20:15:51 +0200 | [diff] [blame] | 147 | #endif /* __DOXYGEN_ONLY__ || !MBEDTLS_PSA_CRYPTO_SE_C */ |
Gilles Peskine | 7597689 | 2018-12-12 15:55:09 +0100 | [diff] [blame] | 148 | |
Gilles Peskine | 7a86da1 | 2019-07-12 23:25:38 +0200 | [diff] [blame] | 149 | /**@}*/ |
| 150 | |
Derek Miller | f0c1d0d | 2019-02-15 17:23:42 -0600 | [diff] [blame] | 151 | /** \defgroup se_mac Secure Element Message Authentication Codes |
Gilles Peskine | 7597689 | 2018-12-12 15:55:09 +0100 | [diff] [blame] | 152 | * Generation and authentication of Message Authentication Codes (MACs) using |
Derek Miller | f0c1d0d | 2019-02-15 17:23:42 -0600 | [diff] [blame] | 153 | * a secure element can be done either as a single function call (via the |
| 154 | * `psa_drv_se_mac_generate_t` or `psa_drv_se_mac_verify_t` functions), or in |
Gilles Peskine | 7597689 | 2018-12-12 15:55:09 +0100 | [diff] [blame] | 155 | * parts using the following sequence: |
Derek Miller | f0c1d0d | 2019-02-15 17:23:42 -0600 | [diff] [blame] | 156 | * - `psa_drv_se_mac_setup_t` |
| 157 | * - `psa_drv_se_mac_update_t` |
| 158 | * - `psa_drv_se_mac_update_t` |
Gilles Peskine | 7597689 | 2018-12-12 15:55:09 +0100 | [diff] [blame] | 159 | * - ... |
Derek Miller | f0c1d0d | 2019-02-15 17:23:42 -0600 | [diff] [blame] | 160 | * - `psa_drv_se_mac_finish_t` or `psa_drv_se_mac_finish_verify_t` |
Gilles Peskine | 7597689 | 2018-12-12 15:55:09 +0100 | [diff] [blame] | 161 | * |
Derek Miller | f0c1d0d | 2019-02-15 17:23:42 -0600 | [diff] [blame] | 162 | * If a previously started secure element MAC operation needs to be terminated, |
| 163 | * it should be done so by the `psa_drv_se_mac_abort_t`. Failure to do so may |
Gilles Peskine | 7597689 | 2018-12-12 15:55:09 +0100 | [diff] [blame] | 164 | * result in allocated resources not being freed or in other undefined |
| 165 | * behavior. |
| 166 | */ |
| 167 | /**@{*/ |
Derek Miller | f0c1d0d | 2019-02-15 17:23:42 -0600 | [diff] [blame] | 168 | /** \brief A function that starts a secure element MAC operation for a PSA |
| 169 | * Crypto Driver implementation |
Gilles Peskine | 7597689 | 2018-12-12 15:55:09 +0100 | [diff] [blame] | 170 | * |
Gilles Peskine | 8597bc1 | 2019-07-12 23:28:46 +0200 | [diff] [blame] | 171 | * \param[in,out] drv_context The driver context structure. |
| 172 | * \param[in,out] op_context A structure that will contain the |
Gilles Peskine | 7597689 | 2018-12-12 15:55:09 +0100 | [diff] [blame] | 173 | * hardware-specific MAC context |
| 174 | * \param[in] key_slot The slot of the key to be used for the |
| 175 | * operation |
| 176 | * \param[in] algorithm The algorithm to be used to underly the MAC |
| 177 | * operation |
| 178 | * |
| 179 | * \retval PSA_SUCCESS |
| 180 | * Success. |
| 181 | */ |
Gilles Peskine | 8597bc1 | 2019-07-12 23:28:46 +0200 | [diff] [blame] | 182 | typedef psa_status_t (*psa_drv_se_mac_setup_t)(psa_drv_se_context_t *drv_context, |
| 183 | void *op_context, |
Derek Miller | b2a1cce | 2019-02-15 17:03:42 -0600 | [diff] [blame] | 184 | psa_key_slot_number_t key_slot, |
Derek Miller | 83d2662 | 2019-02-15 16:41:22 -0600 | [diff] [blame] | 185 | psa_algorithm_t algorithm); |
Gilles Peskine | 7597689 | 2018-12-12 15:55:09 +0100 | [diff] [blame] | 186 | |
Derek Miller | f0c1d0d | 2019-02-15 17:23:42 -0600 | [diff] [blame] | 187 | /** \brief A function that continues a previously started secure element MAC |
| 188 | * operation |
Gilles Peskine | 7597689 | 2018-12-12 15:55:09 +0100 | [diff] [blame] | 189 | * |
Gilles Peskine | 8597bc1 | 2019-07-12 23:28:46 +0200 | [diff] [blame] | 190 | * \param[in,out] op_context A hardware-specific structure for the |
Gilles Peskine | 7597689 | 2018-12-12 15:55:09 +0100 | [diff] [blame] | 191 | * previously-established MAC operation to be |
Derek Miller | f0c1d0d | 2019-02-15 17:23:42 -0600 | [diff] [blame] | 192 | * updated |
Gilles Peskine | 7597689 | 2018-12-12 15:55:09 +0100 | [diff] [blame] | 193 | * \param[in] p_input A buffer containing the message to be appended |
| 194 | * to the MAC operation |
Gilles Peskine | 6a3dd89 | 2019-07-25 10:56:39 +0200 | [diff] [blame] | 195 | * \param[in] input_length The size in bytes of the input message buffer |
Gilles Peskine | 7597689 | 2018-12-12 15:55:09 +0100 | [diff] [blame] | 196 | */ |
Gilles Peskine | 8597bc1 | 2019-07-12 23:28:46 +0200 | [diff] [blame] | 197 | typedef psa_status_t (*psa_drv_se_mac_update_t)(void *op_context, |
Derek Miller | 83d2662 | 2019-02-15 16:41:22 -0600 | [diff] [blame] | 198 | const uint8_t *p_input, |
| 199 | size_t input_length); |
Gilles Peskine | 7597689 | 2018-12-12 15:55:09 +0100 | [diff] [blame] | 200 | |
Derek Miller | f0c1d0d | 2019-02-15 17:23:42 -0600 | [diff] [blame] | 201 | /** \brief a function that completes a previously started secure element MAC |
| 202 | * operation by returning the resulting MAC. |
Gilles Peskine | 7597689 | 2018-12-12 15:55:09 +0100 | [diff] [blame] | 203 | * |
Gilles Peskine | 8597bc1 | 2019-07-12 23:28:46 +0200 | [diff] [blame] | 204 | * \param[in,out] op_context A hardware-specific structure for the |
Gilles Peskine | 7597689 | 2018-12-12 15:55:09 +0100 | [diff] [blame] | 205 | * previously started MAC operation to be |
| 206 | * finished |
| 207 | * \param[out] p_mac A buffer where the generated MAC will be |
| 208 | * placed |
| 209 | * \param[in] mac_size The size in bytes of the buffer that has been |
| 210 | * allocated for the `output` buffer |
| 211 | * \param[out] p_mac_length After completion, will contain the number of |
| 212 | * bytes placed in the `p_mac` buffer |
| 213 | * |
| 214 | * \retval PSA_SUCCESS |
| 215 | * Success. |
| 216 | */ |
Gilles Peskine | 8597bc1 | 2019-07-12 23:28:46 +0200 | [diff] [blame] | 217 | typedef psa_status_t (*psa_drv_se_mac_finish_t)(void *op_context, |
Derek Miller | 83d2662 | 2019-02-15 16:41:22 -0600 | [diff] [blame] | 218 | uint8_t *p_mac, |
| 219 | size_t mac_size, |
| 220 | size_t *p_mac_length); |
Gilles Peskine | 7597689 | 2018-12-12 15:55:09 +0100 | [diff] [blame] | 221 | |
Derek Miller | f0c1d0d | 2019-02-15 17:23:42 -0600 | [diff] [blame] | 222 | /** \brief A function that completes a previously started secure element MAC |
| 223 | * operation by comparing the resulting MAC against a provided value |
Gilles Peskine | 7597689 | 2018-12-12 15:55:09 +0100 | [diff] [blame] | 224 | * |
Gilles Peskine | 8597bc1 | 2019-07-12 23:28:46 +0200 | [diff] [blame] | 225 | * \param[in,out] op_context A hardware-specific structure for the previously |
Gilles Peskine | 6a3dd89 | 2019-07-25 10:56:39 +0200 | [diff] [blame] | 226 | * started MAC operation to be fiinished |
| 227 | * \param[in] p_mac The MAC value against which the resulting MAC |
| 228 | * will be compared against |
| 229 | * \param[in] mac_length The size in bytes of the value stored in `p_mac` |
Gilles Peskine | 7597689 | 2018-12-12 15:55:09 +0100 | [diff] [blame] | 230 | * |
| 231 | * \retval PSA_SUCCESS |
| 232 | * The operation completed successfully and the MACs matched each |
| 233 | * other |
| 234 | * \retval PSA_ERROR_INVALID_SIGNATURE |
| 235 | * The operation completed successfully, but the calculated MAC did |
| 236 | * not match the provided MAC |
| 237 | */ |
Gilles Peskine | 8597bc1 | 2019-07-12 23:28:46 +0200 | [diff] [blame] | 238 | typedef psa_status_t (*psa_drv_se_mac_finish_verify_t)(void *op_context, |
Derek Miller | 83d2662 | 2019-02-15 16:41:22 -0600 | [diff] [blame] | 239 | const uint8_t *p_mac, |
| 240 | size_t mac_length); |
Gilles Peskine | 7597689 | 2018-12-12 15:55:09 +0100 | [diff] [blame] | 241 | |
Derek Miller | f0c1d0d | 2019-02-15 17:23:42 -0600 | [diff] [blame] | 242 | /** \brief A function that aborts a previous started secure element MAC |
| 243 | * operation |
Gilles Peskine | 32668ce | 2019-03-06 18:29:57 +0100 | [diff] [blame] | 244 | * |
Gilles Peskine | 8597bc1 | 2019-07-12 23:28:46 +0200 | [diff] [blame] | 245 | * \param[in,out] op_context A hardware-specific structure for the previously |
Gilles Peskine | 6a3dd89 | 2019-07-25 10:56:39 +0200 | [diff] [blame] | 246 | * started MAC operation to be aborted |
Gilles Peskine | 7597689 | 2018-12-12 15:55:09 +0100 | [diff] [blame] | 247 | */ |
Gilles Peskine | 8597bc1 | 2019-07-12 23:28:46 +0200 | [diff] [blame] | 248 | typedef psa_status_t (*psa_drv_se_mac_abort_t)(void *op_context); |
Gilles Peskine | 7597689 | 2018-12-12 15:55:09 +0100 | [diff] [blame] | 249 | |
Derek Miller | f0c1d0d | 2019-02-15 17:23:42 -0600 | [diff] [blame] | 250 | /** \brief A function that performs a secure element MAC operation in one |
| 251 | * command and returns the calculated MAC |
Gilles Peskine | 7597689 | 2018-12-12 15:55:09 +0100 | [diff] [blame] | 252 | * |
Gilles Peskine | 6a3dd89 | 2019-07-25 10:56:39 +0200 | [diff] [blame] | 253 | * \param[in,out] drv_context The driver context structure. |
Gilles Peskine | 7597689 | 2018-12-12 15:55:09 +0100 | [diff] [blame] | 254 | * \param[in] p_input A buffer containing the message to be MACed |
| 255 | * \param[in] input_length The size in bytes of `p_input` |
| 256 | * \param[in] key_slot The slot of the key to be used |
| 257 | * \param[in] alg The algorithm to be used to underlie the MAC |
| 258 | * operation |
| 259 | * \param[out] p_mac A buffer where the generated MAC will be |
| 260 | * placed |
| 261 | * \param[in] mac_size The size in bytes of the `p_mac` buffer |
| 262 | * \param[out] p_mac_length After completion, will contain the number of |
| 263 | * bytes placed in the `output` buffer |
| 264 | * |
| 265 | * \retval PSA_SUCCESS |
| 266 | * Success. |
| 267 | */ |
Gilles Peskine | 8597bc1 | 2019-07-12 23:28:46 +0200 | [diff] [blame] | 268 | typedef psa_status_t (*psa_drv_se_mac_generate_t)(psa_drv_se_context_t *drv_context, |
| 269 | const uint8_t *p_input, |
Derek Miller | 83d2662 | 2019-02-15 16:41:22 -0600 | [diff] [blame] | 270 | size_t input_length, |
Derek Miller | b2a1cce | 2019-02-15 17:03:42 -0600 | [diff] [blame] | 271 | psa_key_slot_number_t key_slot, |
Derek Miller | 83d2662 | 2019-02-15 16:41:22 -0600 | [diff] [blame] | 272 | psa_algorithm_t alg, |
| 273 | uint8_t *p_mac, |
| 274 | size_t mac_size, |
| 275 | size_t *p_mac_length); |
Gilles Peskine | 7597689 | 2018-12-12 15:55:09 +0100 | [diff] [blame] | 276 | |
Derek Miller | f0c1d0d | 2019-02-15 17:23:42 -0600 | [diff] [blame] | 277 | /** \brief A function that performs a secure element MAC operation in one |
| 278 | * command and compares the resulting MAC against a provided value |
Gilles Peskine | 7597689 | 2018-12-12 15:55:09 +0100 | [diff] [blame] | 279 | * |
Gilles Peskine | 8597bc1 | 2019-07-12 23:28:46 +0200 | [diff] [blame] | 280 | * \param[in,out] drv_context The driver context structure. |
Gilles Peskine | 7597689 | 2018-12-12 15:55:09 +0100 | [diff] [blame] | 281 | * \param[in] p_input A buffer containing the message to be MACed |
| 282 | * \param[in] input_length The size in bytes of `input` |
| 283 | * \param[in] key_slot The slot of the key to be used |
| 284 | * \param[in] alg The algorithm to be used to underlie the MAC |
| 285 | * operation |
| 286 | * \param[in] p_mac The MAC value against which the resulting MAC will |
| 287 | * be compared against |
| 288 | * \param[in] mac_length The size in bytes of `mac` |
| 289 | * |
| 290 | * \retval PSA_SUCCESS |
| 291 | * The operation completed successfully and the MACs matched each |
| 292 | * other |
| 293 | * \retval PSA_ERROR_INVALID_SIGNATURE |
| 294 | * The operation completed successfully, but the calculated MAC did |
| 295 | * not match the provided MAC |
| 296 | */ |
Gilles Peskine | 8597bc1 | 2019-07-12 23:28:46 +0200 | [diff] [blame] | 297 | typedef psa_status_t (*psa_drv_se_mac_verify_t)(psa_drv_se_context_t *drv_context, |
| 298 | const uint8_t *p_input, |
Derek Miller | 83d2662 | 2019-02-15 16:41:22 -0600 | [diff] [blame] | 299 | size_t input_length, |
Derek Miller | b2a1cce | 2019-02-15 17:03:42 -0600 | [diff] [blame] | 300 | psa_key_slot_number_t key_slot, |
Derek Miller | 83d2662 | 2019-02-15 16:41:22 -0600 | [diff] [blame] | 301 | psa_algorithm_t alg, |
| 302 | const uint8_t *p_mac, |
| 303 | size_t mac_length); |
Gilles Peskine | 7597689 | 2018-12-12 15:55:09 +0100 | [diff] [blame] | 304 | |
| 305 | /** \brief A struct containing all of the function pointers needed to |
Derek Miller | f0c1d0d | 2019-02-15 17:23:42 -0600 | [diff] [blame] | 306 | * perform secure element MAC operations |
Gilles Peskine | 7597689 | 2018-12-12 15:55:09 +0100 | [diff] [blame] | 307 | * |
| 308 | * PSA Crypto API implementations should populate the table as appropriate |
| 309 | * upon startup. |
| 310 | * |
| 311 | * If one of the functions is not implemented (such as |
Derek Miller | f0c1d0d | 2019-02-15 17:23:42 -0600 | [diff] [blame] | 312 | * `psa_drv_se_mac_generate_t`), it should be set to NULL. |
Gilles Peskine | 7597689 | 2018-12-12 15:55:09 +0100 | [diff] [blame] | 313 | * |
| 314 | * Driver implementers should ensure that they implement all of the functions |
| 315 | * that make sense for their hardware, and that they provide a full solution |
| 316 | * (for example, if they support `p_setup`, they should also support |
| 317 | * `p_update` and at least one of `p_finish` or `p_finish_verify`). |
| 318 | * |
| 319 | */ |
| 320 | typedef struct { |
Derek Miller | f0c1d0d | 2019-02-15 17:23:42 -0600 | [diff] [blame] | 321 | /**The size in bytes of the hardware-specific secure element MAC context |
| 322 | * structure |
Gilles Peskine | 7597689 | 2018-12-12 15:55:09 +0100 | [diff] [blame] | 323 | */ |
Derek Miller | f0c1d0d | 2019-02-15 17:23:42 -0600 | [diff] [blame] | 324 | size_t context_size; |
| 325 | /** Function that performs a MAC setup operation |
Gilles Peskine | 7597689 | 2018-12-12 15:55:09 +0100 | [diff] [blame] | 326 | */ |
Derek Miller | ea743cf | 2019-02-15 17:06:29 -0600 | [diff] [blame] | 327 | psa_drv_se_mac_setup_t p_setup; |
Derek Miller | f0c1d0d | 2019-02-15 17:23:42 -0600 | [diff] [blame] | 328 | /** Function that performs a MAC update operation |
Gilles Peskine | 7597689 | 2018-12-12 15:55:09 +0100 | [diff] [blame] | 329 | */ |
Derek Miller | ea743cf | 2019-02-15 17:06:29 -0600 | [diff] [blame] | 330 | psa_drv_se_mac_update_t p_update; |
Derek Miller | f0c1d0d | 2019-02-15 17:23:42 -0600 | [diff] [blame] | 331 | /** Function that completes a MAC operation |
Gilles Peskine | 7597689 | 2018-12-12 15:55:09 +0100 | [diff] [blame] | 332 | */ |
Derek Miller | ea743cf | 2019-02-15 17:06:29 -0600 | [diff] [blame] | 333 | psa_drv_se_mac_finish_t p_finish; |
Derek Miller | f0c1d0d | 2019-02-15 17:23:42 -0600 | [diff] [blame] | 334 | /** Function that completes a MAC operation with a verify check |
Gilles Peskine | 7597689 | 2018-12-12 15:55:09 +0100 | [diff] [blame] | 335 | */ |
Derek Miller | ea743cf | 2019-02-15 17:06:29 -0600 | [diff] [blame] | 336 | psa_drv_se_mac_finish_verify_t p_finish_verify; |
Derek Miller | f0c1d0d | 2019-02-15 17:23:42 -0600 | [diff] [blame] | 337 | /** Function that aborts a previoustly started MAC operation |
Gilles Peskine | 7597689 | 2018-12-12 15:55:09 +0100 | [diff] [blame] | 338 | */ |
Derek Miller | ea743cf | 2019-02-15 17:06:29 -0600 | [diff] [blame] | 339 | psa_drv_se_mac_abort_t p_abort; |
Derek Miller | f0c1d0d | 2019-02-15 17:23:42 -0600 | [diff] [blame] | 340 | /** Function that performs a MAC operation in one call |
Gilles Peskine | 7597689 | 2018-12-12 15:55:09 +0100 | [diff] [blame] | 341 | */ |
Derek Miller | ea743cf | 2019-02-15 17:06:29 -0600 | [diff] [blame] | 342 | psa_drv_se_mac_generate_t p_mac; |
Derek Miller | f0c1d0d | 2019-02-15 17:23:42 -0600 | [diff] [blame] | 343 | /** Function that performs a MAC and verify operation in one call |
Gilles Peskine | 7597689 | 2018-12-12 15:55:09 +0100 | [diff] [blame] | 344 | */ |
Derek Miller | ea743cf | 2019-02-15 17:06:29 -0600 | [diff] [blame] | 345 | psa_drv_se_mac_verify_t p_mac_verify; |
Derek Miller | 83d2662 | 2019-02-15 16:41:22 -0600 | [diff] [blame] | 346 | } psa_drv_se_mac_t; |
Gilles Peskine | 7597689 | 2018-12-12 15:55:09 +0100 | [diff] [blame] | 347 | /**@}*/ |
| 348 | |
Derek Miller | f0c1d0d | 2019-02-15 17:23:42 -0600 | [diff] [blame] | 349 | /** \defgroup se_cipher Secure Element Symmetric Ciphers |
Gilles Peskine | 7597689 | 2018-12-12 15:55:09 +0100 | [diff] [blame] | 350 | * |
Derek Miller | f0c1d0d | 2019-02-15 17:23:42 -0600 | [diff] [blame] | 351 | * Encryption and Decryption using secure element keys in block modes other |
| 352 | * than ECB must be done in multiple parts, using the following flow: |
| 353 | * - `psa_drv_se_cipher_setup_t` |
| 354 | * - `psa_drv_se_cipher_set_iv_t` (optional depending upon block mode) |
| 355 | * - `psa_drv_se_cipher_update_t` |
| 356 | * - `psa_drv_se_cipher_update_t` |
Gilles Peskine | 7597689 | 2018-12-12 15:55:09 +0100 | [diff] [blame] | 357 | * - ... |
Derek Miller | f0c1d0d | 2019-02-15 17:23:42 -0600 | [diff] [blame] | 358 | * - `psa_drv_se_cipher_finish_t` |
Gilles Peskine | 32668ce | 2019-03-06 18:29:57 +0100 | [diff] [blame] | 359 | * |
Derek Miller | f0c1d0d | 2019-02-15 17:23:42 -0600 | [diff] [blame] | 360 | * If a previously started secure element Cipher operation needs to be |
| 361 | * terminated, it should be done so by the `psa_drv_se_cipher_abort_t`. Failure |
| 362 | * to do so may result in allocated resources not being freed or in other |
| 363 | * undefined behavior. |
Gilles Peskine | 7597689 | 2018-12-12 15:55:09 +0100 | [diff] [blame] | 364 | * |
| 365 | * In situations where a PSA Cryptographic API implementation is using a block |
| 366 | * mode not-supported by the underlying hardware or driver, it can construct |
Derek Miller | f0c1d0d | 2019-02-15 17:23:42 -0600 | [diff] [blame] | 367 | * the block mode itself, while calling the `psa_drv_se_cipher_ecb_t` function |
| 368 | * for the cipher operations. |
Gilles Peskine | 7597689 | 2018-12-12 15:55:09 +0100 | [diff] [blame] | 369 | */ |
| 370 | /**@{*/ |
| 371 | |
Derek Miller | f0c1d0d | 2019-02-15 17:23:42 -0600 | [diff] [blame] | 372 | /** \brief A function that provides the cipher setup function for a |
| 373 | * secure element driver |
Gilles Peskine | 7597689 | 2018-12-12 15:55:09 +0100 | [diff] [blame] | 374 | * |
Gilles Peskine | 6a3dd89 | 2019-07-25 10:56:39 +0200 | [diff] [blame] | 375 | * \param[in,out] drv_context The driver context structure. |
Gilles Peskine | 8597bc1 | 2019-07-12 23:28:46 +0200 | [diff] [blame] | 376 | * \param[in,out] op_context A structure that will contain the |
Gilles Peskine | 7597689 | 2018-12-12 15:55:09 +0100 | [diff] [blame] | 377 | * hardware-specific cipher context. |
| 378 | * \param[in] key_slot The slot of the key to be used for the |
| 379 | * operation |
| 380 | * \param[in] algorithm The algorithm to be used in the cipher |
| 381 | * operation |
| 382 | * \param[in] direction Indicates whether the operation is an encrypt |
| 383 | * or decrypt |
| 384 | * |
| 385 | * \retval PSA_SUCCESS |
| 386 | * \retval PSA_ERROR_NOT_SUPPORTED |
| 387 | */ |
Gilles Peskine | 8597bc1 | 2019-07-12 23:28:46 +0200 | [diff] [blame] | 388 | typedef psa_status_t (*psa_drv_se_cipher_setup_t)(psa_drv_se_context_t *drv_context, |
| 389 | void *op_context, |
Derek Miller | b2a1cce | 2019-02-15 17:03:42 -0600 | [diff] [blame] | 390 | psa_key_slot_number_t key_slot, |
Derek Miller | 83d2662 | 2019-02-15 16:41:22 -0600 | [diff] [blame] | 391 | psa_algorithm_t algorithm, |
| 392 | psa_encrypt_or_decrypt_t direction); |
Gilles Peskine | 7597689 | 2018-12-12 15:55:09 +0100 | [diff] [blame] | 393 | |
Derek Miller | f0c1d0d | 2019-02-15 17:23:42 -0600 | [diff] [blame] | 394 | /** \brief A function that sets the initialization vector (if |
| 395 | * necessary) for an secure element cipher operation |
Gilles Peskine | 7597689 | 2018-12-12 15:55:09 +0100 | [diff] [blame] | 396 | * |
Derek Miller | f0c1d0d | 2019-02-15 17:23:42 -0600 | [diff] [blame] | 397 | * Rationale: The `psa_se_cipher_*` operation in the PSA Cryptographic API has |
| 398 | * two IV functions: one to set the IV, and one to generate it internally. The |
Gilles Peskine | 7597689 | 2018-12-12 15:55:09 +0100 | [diff] [blame] | 399 | * generate function is not necessary for the drivers to implement as the PSA |
| 400 | * Crypto implementation can do the generation using its RNG features. |
| 401 | * |
Gilles Peskine | 8597bc1 | 2019-07-12 23:28:46 +0200 | [diff] [blame] | 402 | * \param[in,out] op_context A structure that contains the previously set up |
Gilles Peskine | 7597689 | 2018-12-12 15:55:09 +0100 | [diff] [blame] | 403 | * hardware-specific cipher context |
| 404 | * \param[in] p_iv A buffer containing the initialization vector |
| 405 | * \param[in] iv_length The size (in bytes) of the `p_iv` buffer |
| 406 | * |
| 407 | * \retval PSA_SUCCESS |
| 408 | */ |
Gilles Peskine | 8597bc1 | 2019-07-12 23:28:46 +0200 | [diff] [blame] | 409 | typedef psa_status_t (*psa_drv_se_cipher_set_iv_t)(void *op_context, |
Derek Miller | 83d2662 | 2019-02-15 16:41:22 -0600 | [diff] [blame] | 410 | const uint8_t *p_iv, |
| 411 | size_t iv_length); |
Gilles Peskine | 7597689 | 2018-12-12 15:55:09 +0100 | [diff] [blame] | 412 | |
Derek Miller | f0c1d0d | 2019-02-15 17:23:42 -0600 | [diff] [blame] | 413 | /** \brief A function that continues a previously started secure element cipher |
Gilles Peskine | 7597689 | 2018-12-12 15:55:09 +0100 | [diff] [blame] | 414 | * operation |
| 415 | * |
Gilles Peskine | 8597bc1 | 2019-07-12 23:28:46 +0200 | [diff] [blame] | 416 | * \param[in,out] op_context A hardware-specific structure for the |
Gilles Peskine | 7597689 | 2018-12-12 15:55:09 +0100 | [diff] [blame] | 417 | * previously started cipher operation |
| 418 | * \param[in] p_input A buffer containing the data to be |
| 419 | * encrypted/decrypted |
| 420 | * \param[in] input_size The size in bytes of the buffer pointed to |
| 421 | * by `p_input` |
| 422 | * \param[out] p_output The caller-allocated buffer where the |
| 423 | * output will be placed |
| 424 | * \param[in] output_size The allocated size in bytes of the |
| 425 | * `p_output` buffer |
| 426 | * \param[out] p_output_length After completion, will contain the number |
| 427 | * of bytes placed in the `p_output` buffer |
| 428 | * |
| 429 | * \retval PSA_SUCCESS |
| 430 | */ |
Gilles Peskine | 8597bc1 | 2019-07-12 23:28:46 +0200 | [diff] [blame] | 431 | typedef psa_status_t (*psa_drv_se_cipher_update_t)(void *op_context, |
Derek Miller | 83d2662 | 2019-02-15 16:41:22 -0600 | [diff] [blame] | 432 | const uint8_t *p_input, |
| 433 | size_t input_size, |
| 434 | uint8_t *p_output, |
| 435 | size_t output_size, |
| 436 | size_t *p_output_length); |
Gilles Peskine | 7597689 | 2018-12-12 15:55:09 +0100 | [diff] [blame] | 437 | |
Derek Miller | f0c1d0d | 2019-02-15 17:23:42 -0600 | [diff] [blame] | 438 | /** \brief A function that completes a previously started secure element cipher |
Gilles Peskine | 7597689 | 2018-12-12 15:55:09 +0100 | [diff] [blame] | 439 | * operation |
| 440 | * |
Gilles Peskine | 8597bc1 | 2019-07-12 23:28:46 +0200 | [diff] [blame] | 441 | * \param[in,out] op_context A hardware-specific structure for the |
Gilles Peskine | 7597689 | 2018-12-12 15:55:09 +0100 | [diff] [blame] | 442 | * previously started cipher operation |
| 443 | * \param[out] p_output The caller-allocated buffer where the output |
| 444 | * will be placed |
| 445 | * \param[in] output_size The allocated size in bytes of the `p_output` |
| 446 | * buffer |
| 447 | * \param[out] p_output_length After completion, will contain the number of |
| 448 | * bytes placed in the `p_output` buffer |
| 449 | * |
| 450 | * \retval PSA_SUCCESS |
| 451 | */ |
Gilles Peskine | 8597bc1 | 2019-07-12 23:28:46 +0200 | [diff] [blame] | 452 | typedef psa_status_t (*psa_drv_se_cipher_finish_t)(void *op_context, |
Derek Miller | 83d2662 | 2019-02-15 16:41:22 -0600 | [diff] [blame] | 453 | uint8_t *p_output, |
| 454 | size_t output_size, |
| 455 | size_t *p_output_length); |
Gilles Peskine | 7597689 | 2018-12-12 15:55:09 +0100 | [diff] [blame] | 456 | |
Derek Miller | f0c1d0d | 2019-02-15 17:23:42 -0600 | [diff] [blame] | 457 | /** \brief A function that aborts a previously started secure element cipher |
Gilles Peskine | 7597689 | 2018-12-12 15:55:09 +0100 | [diff] [blame] | 458 | * operation |
| 459 | * |
Gilles Peskine | 8597bc1 | 2019-07-12 23:28:46 +0200 | [diff] [blame] | 460 | * \param[in,out] op_context A hardware-specific structure for the |
Gilles Peskine | 7597689 | 2018-12-12 15:55:09 +0100 | [diff] [blame] | 461 | * previously started cipher operation |
| 462 | */ |
Gilles Peskine | 8597bc1 | 2019-07-12 23:28:46 +0200 | [diff] [blame] | 463 | typedef psa_status_t (*psa_drv_se_cipher_abort_t)(void *op_context); |
Gilles Peskine | 7597689 | 2018-12-12 15:55:09 +0100 | [diff] [blame] | 464 | |
Derek Miller | f0c1d0d | 2019-02-15 17:23:42 -0600 | [diff] [blame] | 465 | /** \brief A function that performs the ECB block mode for secure element |
| 466 | * cipher operations |
Gilles Peskine | 7597689 | 2018-12-12 15:55:09 +0100 | [diff] [blame] | 467 | * |
| 468 | * Note: this function should only be used with implementations that do not |
| 469 | * provide a needed higher-level operation. |
| 470 | * |
Gilles Peskine | 6a3dd89 | 2019-07-25 10:56:39 +0200 | [diff] [blame] | 471 | * \param[in,out] drv_context The driver context structure. |
| 472 | * \param[in] key_slot The slot of the key to be used for the operation |
| 473 | * \param[in] algorithm The algorithm to be used in the cipher operation |
| 474 | * \param[in] direction Indicates whether the operation is an encrypt or |
| 475 | * decrypt |
| 476 | * \param[in] p_input A buffer containing the data to be |
| 477 | * encrypted/decrypted |
| 478 | * \param[in] input_size The size in bytes of the buffer pointed to by |
| 479 | * `p_input` |
| 480 | * \param[out] p_output The caller-allocated buffer where the output |
| 481 | * will be placed |
| 482 | * \param[in] output_size The allocated size in bytes of the `p_output` |
| 483 | * buffer |
Gilles Peskine | 7597689 | 2018-12-12 15:55:09 +0100 | [diff] [blame] | 484 | * |
| 485 | * \retval PSA_SUCCESS |
| 486 | * \retval PSA_ERROR_NOT_SUPPORTED |
| 487 | */ |
Gilles Peskine | 8597bc1 | 2019-07-12 23:28:46 +0200 | [diff] [blame] | 488 | typedef psa_status_t (*psa_drv_se_cipher_ecb_t)(psa_drv_se_context_t *drv_context, |
| 489 | psa_key_slot_number_t key_slot, |
Derek Miller | 83d2662 | 2019-02-15 16:41:22 -0600 | [diff] [blame] | 490 | psa_algorithm_t algorithm, |
| 491 | psa_encrypt_or_decrypt_t direction, |
| 492 | const uint8_t *p_input, |
| 493 | size_t input_size, |
| 494 | uint8_t *p_output, |
| 495 | size_t output_size); |
Gilles Peskine | 7597689 | 2018-12-12 15:55:09 +0100 | [diff] [blame] | 496 | |
| 497 | /** |
| 498 | * \brief A struct containing all of the function pointers needed to implement |
Derek Miller | f0c1d0d | 2019-02-15 17:23:42 -0600 | [diff] [blame] | 499 | * cipher operations using secure elements. |
Gilles Peskine | 7597689 | 2018-12-12 15:55:09 +0100 | [diff] [blame] | 500 | * |
| 501 | * PSA Crypto API implementations should populate instances of the table as |
Derek Miller | f0c1d0d | 2019-02-15 17:23:42 -0600 | [diff] [blame] | 502 | * appropriate upon startup or at build time. |
Gilles Peskine | 7597689 | 2018-12-12 15:55:09 +0100 | [diff] [blame] | 503 | * |
| 504 | * If one of the functions is not implemented (such as |
Derek Miller | f0c1d0d | 2019-02-15 17:23:42 -0600 | [diff] [blame] | 505 | * `psa_drv_se_cipher_ecb_t`), it should be set to NULL. |
Gilles Peskine | 7597689 | 2018-12-12 15:55:09 +0100 | [diff] [blame] | 506 | */ |
| 507 | typedef struct { |
Derek Miller | f0c1d0d | 2019-02-15 17:23:42 -0600 | [diff] [blame] | 508 | /** The size in bytes of the hardware-specific secure element cipher |
| 509 | * context structure |
Gilles Peskine | 7597689 | 2018-12-12 15:55:09 +0100 | [diff] [blame] | 510 | */ |
Derek Miller | 34b33f1 | 2019-02-15 17:13:54 -0600 | [diff] [blame] | 511 | size_t context_size; |
| 512 | /** Function that performs a cipher setup operation */ |
Derek Miller | ea743cf | 2019-02-15 17:06:29 -0600 | [diff] [blame] | 513 | psa_drv_se_cipher_setup_t p_setup; |
Derek Miller | f0c1d0d | 2019-02-15 17:23:42 -0600 | [diff] [blame] | 514 | /** Function that sets a cipher IV (if necessary) */ |
Derek Miller | ea743cf | 2019-02-15 17:06:29 -0600 | [diff] [blame] | 515 | psa_drv_se_cipher_set_iv_t p_set_iv; |
Derek Miller | f0c1d0d | 2019-02-15 17:23:42 -0600 | [diff] [blame] | 516 | /** Function that performs a cipher update operation */ |
Derek Miller | ea743cf | 2019-02-15 17:06:29 -0600 | [diff] [blame] | 517 | psa_drv_se_cipher_update_t p_update; |
Derek Miller | f0c1d0d | 2019-02-15 17:23:42 -0600 | [diff] [blame] | 518 | /** Function that completes a cipher operation */ |
Derek Miller | ea743cf | 2019-02-15 17:06:29 -0600 | [diff] [blame] | 519 | psa_drv_se_cipher_finish_t p_finish; |
Derek Miller | f0c1d0d | 2019-02-15 17:23:42 -0600 | [diff] [blame] | 520 | /** Function that aborts a cipher operation */ |
Derek Miller | ea743cf | 2019-02-15 17:06:29 -0600 | [diff] [blame] | 521 | psa_drv_se_cipher_abort_t p_abort; |
Derek Miller | f0c1d0d | 2019-02-15 17:23:42 -0600 | [diff] [blame] | 522 | /** Function that performs ECB mode for a cipher operation |
Gilles Peskine | 7597689 | 2018-12-12 15:55:09 +0100 | [diff] [blame] | 523 | * (Danger: ECB mode should not be used directly by clients of the PSA |
| 524 | * Crypto Client API) |
| 525 | */ |
Derek Miller | ea743cf | 2019-02-15 17:06:29 -0600 | [diff] [blame] | 526 | psa_drv_se_cipher_ecb_t p_ecb; |
Derek Miller | 83d2662 | 2019-02-15 16:41:22 -0600 | [diff] [blame] | 527 | } psa_drv_se_cipher_t; |
Gilles Peskine | 7597689 | 2018-12-12 15:55:09 +0100 | [diff] [blame] | 528 | |
| 529 | /**@}*/ |
| 530 | |
Derek Miller | f0c1d0d | 2019-02-15 17:23:42 -0600 | [diff] [blame] | 531 | /** \defgroup se_asymmetric Secure Element Asymmetric Cryptography |
Gilles Peskine | 7597689 | 2018-12-12 15:55:09 +0100 | [diff] [blame] | 532 | * |
| 533 | * Since the amount of data that can (or should) be encrypted or signed using |
| 534 | * asymmetric keys is limited by the key size, asymmetric key operations using |
Derek Miller | f0c1d0d | 2019-02-15 17:23:42 -0600 | [diff] [blame] | 535 | * keys in a secure element must be done in single function calls. |
Gilles Peskine | 7597689 | 2018-12-12 15:55:09 +0100 | [diff] [blame] | 536 | */ |
| 537 | /**@{*/ |
| 538 | |
| 539 | /** |
Derek Miller | f0c1d0d | 2019-02-15 17:23:42 -0600 | [diff] [blame] | 540 | * \brief A function that signs a hash or short message with a private key in |
| 541 | * a secure element |
Gilles Peskine | 7597689 | 2018-12-12 15:55:09 +0100 | [diff] [blame] | 542 | * |
Gilles Peskine | 8597bc1 | 2019-07-12 23:28:46 +0200 | [diff] [blame] | 543 | * \param[in,out] drv_context The driver context structure. |
Gilles Peskine | 7597689 | 2018-12-12 15:55:09 +0100 | [diff] [blame] | 544 | * \param[in] key_slot Key slot of an asymmetric key pair |
| 545 | * \param[in] alg A signature algorithm that is compatible |
| 546 | * with the type of `key` |
| 547 | * \param[in] p_hash The hash to sign |
| 548 | * \param[in] hash_length Size of the `p_hash` buffer in bytes |
| 549 | * \param[out] p_signature Buffer where the signature is to be written |
| 550 | * \param[in] signature_size Size of the `p_signature` buffer in bytes |
| 551 | * \param[out] p_signature_length On success, the number of bytes |
| 552 | * that make up the returned signature value |
| 553 | * |
| 554 | * \retval PSA_SUCCESS |
| 555 | */ |
Gilles Peskine | 8597bc1 | 2019-07-12 23:28:46 +0200 | [diff] [blame] | 556 | typedef psa_status_t (*psa_drv_se_asymmetric_sign_t)(psa_drv_se_context_t *drv_context, |
| 557 | psa_key_slot_number_t key_slot, |
Derek Miller | 83d2662 | 2019-02-15 16:41:22 -0600 | [diff] [blame] | 558 | psa_algorithm_t alg, |
| 559 | const uint8_t *p_hash, |
| 560 | size_t hash_length, |
| 561 | uint8_t *p_signature, |
| 562 | size_t signature_size, |
| 563 | size_t *p_signature_length); |
Gilles Peskine | 7597689 | 2018-12-12 15:55:09 +0100 | [diff] [blame] | 564 | |
| 565 | /** |
| 566 | * \brief A function that verifies the signature a hash or short message using |
Derek Miller | f0c1d0d | 2019-02-15 17:23:42 -0600 | [diff] [blame] | 567 | * an asymmetric public key in a secure element |
Gilles Peskine | 7597689 | 2018-12-12 15:55:09 +0100 | [diff] [blame] | 568 | * |
Gilles Peskine | 6a3dd89 | 2019-07-25 10:56:39 +0200 | [diff] [blame] | 569 | * \param[in,out] drv_context The driver context structure. |
Gilles Peskine | 7597689 | 2018-12-12 15:55:09 +0100 | [diff] [blame] | 570 | * \param[in] key_slot Key slot of a public key or an asymmetric key |
| 571 | * pair |
| 572 | * \param[in] alg A signature algorithm that is compatible with |
| 573 | * the type of `key` |
| 574 | * \param[in] p_hash The hash whose signature is to be verified |
| 575 | * \param[in] hash_length Size of the `p_hash` buffer in bytes |
| 576 | * \param[in] p_signature Buffer containing the signature to verify |
| 577 | * \param[in] signature_length Size of the `p_signature` buffer in bytes |
| 578 | * |
| 579 | * \retval PSA_SUCCESS |
| 580 | * The signature is valid. |
| 581 | */ |
Gilles Peskine | 8597bc1 | 2019-07-12 23:28:46 +0200 | [diff] [blame] | 582 | typedef psa_status_t (*psa_drv_se_asymmetric_verify_t)(psa_drv_se_context_t *drv_context, |
| 583 | psa_key_slot_number_t key_slot, |
Derek Miller | 83d2662 | 2019-02-15 16:41:22 -0600 | [diff] [blame] | 584 | psa_algorithm_t alg, |
| 585 | const uint8_t *p_hash, |
| 586 | size_t hash_length, |
| 587 | const uint8_t *p_signature, |
| 588 | size_t signature_length); |
Gilles Peskine | 7597689 | 2018-12-12 15:55:09 +0100 | [diff] [blame] | 589 | |
| 590 | /** |
| 591 | * \brief A function that encrypts a short message with an asymmetric public |
Derek Miller | f0c1d0d | 2019-02-15 17:23:42 -0600 | [diff] [blame] | 592 | * key in a secure element |
Gilles Peskine | 7597689 | 2018-12-12 15:55:09 +0100 | [diff] [blame] | 593 | * |
Gilles Peskine | 6a3dd89 | 2019-07-25 10:56:39 +0200 | [diff] [blame] | 594 | * \param[in,out] drv_context The driver context structure. |
Gilles Peskine | 7597689 | 2018-12-12 15:55:09 +0100 | [diff] [blame] | 595 | * \param[in] key_slot Key slot of a public key or an asymmetric key |
| 596 | * pair |
| 597 | * \param[in] alg An asymmetric encryption algorithm that is |
| 598 | * compatible with the type of `key` |
| 599 | * \param[in] p_input The message to encrypt |
| 600 | * \param[in] input_length Size of the `p_input` buffer in bytes |
| 601 | * \param[in] p_salt A salt or label, if supported by the |
| 602 | * encryption algorithm |
| 603 | * If the algorithm does not support a |
| 604 | * salt, pass `NULL`. |
| 605 | * If the algorithm supports an optional |
| 606 | * salt and you do not want to pass a salt, |
| 607 | * pass `NULL`. |
| 608 | * For #PSA_ALG_RSA_PKCS1V15_CRYPT, no salt is |
| 609 | * supported. |
| 610 | * \param[in] salt_length Size of the `p_salt` buffer in bytes |
| 611 | * If `p_salt` is `NULL`, pass 0. |
| 612 | * \param[out] p_output Buffer where the encrypted message is to |
| 613 | * be written |
| 614 | * \param[in] output_size Size of the `p_output` buffer in bytes |
| 615 | * \param[out] p_output_length On success, the number of bytes that make up |
| 616 | * the returned output |
| 617 | * |
| 618 | * \retval PSA_SUCCESS |
| 619 | */ |
Gilles Peskine | 8597bc1 | 2019-07-12 23:28:46 +0200 | [diff] [blame] | 620 | typedef psa_status_t (*psa_drv_se_asymmetric_encrypt_t)(psa_drv_se_context_t *drv_context, |
| 621 | psa_key_slot_number_t key_slot, |
Derek Miller | 83d2662 | 2019-02-15 16:41:22 -0600 | [diff] [blame] | 622 | psa_algorithm_t alg, |
| 623 | const uint8_t *p_input, |
| 624 | size_t input_length, |
| 625 | const uint8_t *p_salt, |
| 626 | size_t salt_length, |
| 627 | uint8_t *p_output, |
| 628 | size_t output_size, |
| 629 | size_t *p_output_length); |
Gilles Peskine | 7597689 | 2018-12-12 15:55:09 +0100 | [diff] [blame] | 630 | |
| 631 | /** |
Derek Miller | f0c1d0d | 2019-02-15 17:23:42 -0600 | [diff] [blame] | 632 | * \brief A function that decrypts a short message with an asymmetric private |
| 633 | * key in a secure element. |
Gilles Peskine | 7597689 | 2018-12-12 15:55:09 +0100 | [diff] [blame] | 634 | * |
Gilles Peskine | 6a3dd89 | 2019-07-25 10:56:39 +0200 | [diff] [blame] | 635 | * \param[in,out] drv_context The driver context structure. |
Gilles Peskine | 7597689 | 2018-12-12 15:55:09 +0100 | [diff] [blame] | 636 | * \param[in] key_slot Key slot of an asymmetric key pair |
| 637 | * \param[in] alg An asymmetric encryption algorithm that is |
| 638 | * compatible with the type of `key` |
| 639 | * \param[in] p_input The message to decrypt |
| 640 | * \param[in] input_length Size of the `p_input` buffer in bytes |
| 641 | * \param[in] p_salt A salt or label, if supported by the |
| 642 | * encryption algorithm |
| 643 | * If the algorithm does not support a |
| 644 | * salt, pass `NULL`. |
| 645 | * If the algorithm supports an optional |
| 646 | * salt and you do not want to pass a salt, |
| 647 | * pass `NULL`. |
| 648 | * For #PSA_ALG_RSA_PKCS1V15_CRYPT, no salt is |
| 649 | * supported. |
| 650 | * \param[in] salt_length Size of the `p_salt` buffer in bytes |
| 651 | * If `p_salt` is `NULL`, pass 0. |
| 652 | * \param[out] p_output Buffer where the decrypted message is to |
| 653 | * be written |
| 654 | * \param[in] output_size Size of the `p_output` buffer in bytes |
| 655 | * \param[out] p_output_length On success, the number of bytes |
| 656 | * that make up the returned output |
| 657 | * |
| 658 | * \retval PSA_SUCCESS |
| 659 | */ |
Gilles Peskine | 8597bc1 | 2019-07-12 23:28:46 +0200 | [diff] [blame] | 660 | typedef psa_status_t (*psa_drv_se_asymmetric_decrypt_t)(psa_drv_se_context_t *drv_context, |
| 661 | psa_key_slot_number_t key_slot, |
Derek Miller | 83d2662 | 2019-02-15 16:41:22 -0600 | [diff] [blame] | 662 | psa_algorithm_t alg, |
| 663 | const uint8_t *p_input, |
| 664 | size_t input_length, |
| 665 | const uint8_t *p_salt, |
| 666 | size_t salt_length, |
| 667 | uint8_t *p_output, |
| 668 | size_t output_size, |
| 669 | size_t *p_output_length); |
Gilles Peskine | 7597689 | 2018-12-12 15:55:09 +0100 | [diff] [blame] | 670 | |
| 671 | /** |
| 672 | * \brief A struct containing all of the function pointers needed to implement |
Derek Miller | f0c1d0d | 2019-02-15 17:23:42 -0600 | [diff] [blame] | 673 | * asymmetric cryptographic operations using secure elements. |
Gilles Peskine | 7597689 | 2018-12-12 15:55:09 +0100 | [diff] [blame] | 674 | * |
| 675 | * PSA Crypto API implementations should populate instances of the table as |
Derek Miller | f0c1d0d | 2019-02-15 17:23:42 -0600 | [diff] [blame] | 676 | * appropriate upon startup or at build time. |
Gilles Peskine | 7597689 | 2018-12-12 15:55:09 +0100 | [diff] [blame] | 677 | * |
| 678 | * If one of the functions is not implemented, it should be set to NULL. |
| 679 | */ |
| 680 | typedef struct { |
Derek Miller | f0c1d0d | 2019-02-15 17:23:42 -0600 | [diff] [blame] | 681 | /** Function that performs an asymmetric sign operation */ |
Derek Miller | ea743cf | 2019-02-15 17:06:29 -0600 | [diff] [blame] | 682 | psa_drv_se_asymmetric_sign_t p_sign; |
Derek Miller | f0c1d0d | 2019-02-15 17:23:42 -0600 | [diff] [blame] | 683 | /** Function that performs an asymmetric verify operation */ |
Derek Miller | ea743cf | 2019-02-15 17:06:29 -0600 | [diff] [blame] | 684 | psa_drv_se_asymmetric_verify_t p_verify; |
Derek Miller | f0c1d0d | 2019-02-15 17:23:42 -0600 | [diff] [blame] | 685 | /** Function that performs an asymmetric encrypt operation */ |
Derek Miller | ea743cf | 2019-02-15 17:06:29 -0600 | [diff] [blame] | 686 | psa_drv_se_asymmetric_encrypt_t p_encrypt; |
Derek Miller | f0c1d0d | 2019-02-15 17:23:42 -0600 | [diff] [blame] | 687 | /** Function that performs an asymmetric decrypt operation */ |
Derek Miller | ea743cf | 2019-02-15 17:06:29 -0600 | [diff] [blame] | 688 | psa_drv_se_asymmetric_decrypt_t p_decrypt; |
Derek Miller | 83d2662 | 2019-02-15 16:41:22 -0600 | [diff] [blame] | 689 | } psa_drv_se_asymmetric_t; |
Gilles Peskine | 7597689 | 2018-12-12 15:55:09 +0100 | [diff] [blame] | 690 | |
| 691 | /**@}*/ |
| 692 | |
Derek Miller | f0c1d0d | 2019-02-15 17:23:42 -0600 | [diff] [blame] | 693 | /** \defgroup se_aead Secure Element Authenticated Encryption with Additional Data |
| 694 | * Authenticated Encryption with Additional Data (AEAD) operations with secure |
| 695 | * elements must be done in one function call. While this creates a burden for |
Gilles Peskine | 7597689 | 2018-12-12 15:55:09 +0100 | [diff] [blame] | 696 | * implementers as there must be sufficient space in memory for the entire |
| 697 | * message, it prevents decrypted data from being made available before the |
| 698 | * authentication operation is complete and the data is known to be authentic. |
| 699 | */ |
| 700 | /**@{*/ |
| 701 | |
Derek Miller | f0c1d0d | 2019-02-15 17:23:42 -0600 | [diff] [blame] | 702 | /** \brief A function that performs a secure element authenticated encryption |
| 703 | * operation |
Gilles Peskine | 7597689 | 2018-12-12 15:55:09 +0100 | [diff] [blame] | 704 | * |
Gilles Peskine | 6a3dd89 | 2019-07-25 10:56:39 +0200 | [diff] [blame] | 705 | * \param[in,out] drv_context The driver context structure. |
Gilles Peskine | 7597689 | 2018-12-12 15:55:09 +0100 | [diff] [blame] | 706 | * \param[in] key_slot Slot containing the key to use. |
| 707 | * \param[in] algorithm The AEAD algorithm to compute |
| 708 | * (\c PSA_ALG_XXX value such that |
| 709 | * #PSA_ALG_IS_AEAD(`alg`) is true) |
| 710 | * \param[in] p_nonce Nonce or IV to use |
| 711 | * \param[in] nonce_length Size of the `p_nonce` buffer in bytes |
| 712 | * \param[in] p_additional_data Additional data that will be |
| 713 | * authenticated but not encrypted |
| 714 | * \param[in] additional_data_length Size of `p_additional_data` in bytes |
| 715 | * \param[in] p_plaintext Data that will be authenticated and |
| 716 | * encrypted |
| 717 | * \param[in] plaintext_length Size of `p_plaintext` in bytes |
| 718 | * \param[out] p_ciphertext Output buffer for the authenticated and |
| 719 | * encrypted data. The additional data is |
| 720 | * not part of this output. For algorithms |
| 721 | * where the encrypted data and the |
| 722 | * authentication tag are defined as |
| 723 | * separate outputs, the authentication |
| 724 | * tag is appended to the encrypted data. |
| 725 | * \param[in] ciphertext_size Size of the `p_ciphertext` buffer in |
| 726 | * bytes |
| 727 | * \param[out] p_ciphertext_length On success, the size of the output in |
| 728 | * the `p_ciphertext` buffer |
| 729 | * |
| 730 | * \retval #PSA_SUCCESS |
| 731 | * Success. |
| 732 | */ |
Gilles Peskine | 8597bc1 | 2019-07-12 23:28:46 +0200 | [diff] [blame] | 733 | typedef psa_status_t (*psa_drv_se_aead_encrypt_t)(psa_drv_se_context_t *drv_context, |
| 734 | psa_key_slot_number_t key_slot, |
Derek Miller | 83d2662 | 2019-02-15 16:41:22 -0600 | [diff] [blame] | 735 | psa_algorithm_t algorithm, |
| 736 | const uint8_t *p_nonce, |
| 737 | size_t nonce_length, |
| 738 | const uint8_t *p_additional_data, |
| 739 | size_t additional_data_length, |
| 740 | const uint8_t *p_plaintext, |
| 741 | size_t plaintext_length, |
| 742 | uint8_t *p_ciphertext, |
| 743 | size_t ciphertext_size, |
| 744 | size_t *p_ciphertext_length); |
Gilles Peskine | 7597689 | 2018-12-12 15:55:09 +0100 | [diff] [blame] | 745 | |
Derek Miller | f0c1d0d | 2019-02-15 17:23:42 -0600 | [diff] [blame] | 746 | /** A function that peforms a secure element authenticated decryption operation |
Gilles Peskine | 7597689 | 2018-12-12 15:55:09 +0100 | [diff] [blame] | 747 | * |
Gilles Peskine | 6a3dd89 | 2019-07-25 10:56:39 +0200 | [diff] [blame] | 748 | * \param[in,out] drv_context The driver context structure. |
Gilles Peskine | 7597689 | 2018-12-12 15:55:09 +0100 | [diff] [blame] | 749 | * \param[in] key_slot Slot containing the key to use |
| 750 | * \param[in] algorithm The AEAD algorithm to compute |
| 751 | * (\c PSA_ALG_XXX value such that |
| 752 | * #PSA_ALG_IS_AEAD(`alg`) is true) |
| 753 | * \param[in] p_nonce Nonce or IV to use |
| 754 | * \param[in] nonce_length Size of the `p_nonce` buffer in bytes |
| 755 | * \param[in] p_additional_data Additional data that has been |
| 756 | * authenticated but not encrypted |
| 757 | * \param[in] additional_data_length Size of `p_additional_data` in bytes |
| 758 | * \param[in] p_ciphertext Data that has been authenticated and |
| 759 | * encrypted. |
| 760 | * For algorithms where the encrypted data |
| 761 | * and the authentication tag are defined |
| 762 | * as separate inputs, the buffer must |
| 763 | * contain the encrypted data followed by |
| 764 | * the authentication tag. |
| 765 | * \param[in] ciphertext_length Size of `p_ciphertext` in bytes |
| 766 | * \param[out] p_plaintext Output buffer for the decrypted data |
| 767 | * \param[in] plaintext_size Size of the `p_plaintext` buffer in |
| 768 | * bytes |
| 769 | * \param[out] p_plaintext_length On success, the size of the output in |
| 770 | * the `p_plaintext` buffer |
| 771 | * |
| 772 | * \retval #PSA_SUCCESS |
| 773 | * Success. |
| 774 | */ |
Gilles Peskine | 8597bc1 | 2019-07-12 23:28:46 +0200 | [diff] [blame] | 775 | typedef psa_status_t (*psa_drv_se_aead_decrypt_t)(psa_drv_se_context_t *drv_context, |
| 776 | psa_key_slot_number_t key_slot, |
Derek Miller | 83d2662 | 2019-02-15 16:41:22 -0600 | [diff] [blame] | 777 | psa_algorithm_t algorithm, |
| 778 | const uint8_t *p_nonce, |
| 779 | size_t nonce_length, |
| 780 | const uint8_t *p_additional_data, |
| 781 | size_t additional_data_length, |
| 782 | const uint8_t *p_ciphertext, |
| 783 | size_t ciphertext_length, |
| 784 | uint8_t *p_plaintext, |
| 785 | size_t plaintext_size, |
| 786 | size_t *p_plaintext_length); |
Gilles Peskine | 7597689 | 2018-12-12 15:55:09 +0100 | [diff] [blame] | 787 | |
| 788 | /** |
| 789 | * \brief A struct containing all of the function pointers needed to implement |
Derek Miller | f0c1d0d | 2019-02-15 17:23:42 -0600 | [diff] [blame] | 790 | * secure element Authenticated Encryption with Additional Data operations |
Gilles Peskine | 7597689 | 2018-12-12 15:55:09 +0100 | [diff] [blame] | 791 | * |
| 792 | * PSA Crypto API implementations should populate instances of the table as |
| 793 | * appropriate upon startup. |
| 794 | * |
| 795 | * If one of the functions is not implemented, it should be set to NULL. |
| 796 | */ |
| 797 | typedef struct { |
| 798 | /** Function that performs the AEAD encrypt operation */ |
Derek Miller | ea743cf | 2019-02-15 17:06:29 -0600 | [diff] [blame] | 799 | psa_drv_se_aead_encrypt_t p_encrypt; |
Gilles Peskine | 7597689 | 2018-12-12 15:55:09 +0100 | [diff] [blame] | 800 | /** Function that performs the AEAD decrypt operation */ |
Derek Miller | ea743cf | 2019-02-15 17:06:29 -0600 | [diff] [blame] | 801 | psa_drv_se_aead_decrypt_t p_decrypt; |
Derek Miller | 83d2662 | 2019-02-15 16:41:22 -0600 | [diff] [blame] | 802 | } psa_drv_se_aead_t; |
Gilles Peskine | 7597689 | 2018-12-12 15:55:09 +0100 | [diff] [blame] | 803 | /**@}*/ |
| 804 | |
Derek Miller | f0c1d0d | 2019-02-15 17:23:42 -0600 | [diff] [blame] | 805 | /** \defgroup se_key_management Secure Element Key Management |
Gilles Peskine | 7597689 | 2018-12-12 15:55:09 +0100 | [diff] [blame] | 806 | * Currently, key management is limited to importing keys in the clear, |
| 807 | * destroying keys, and exporting keys in the clear. |
| 808 | * Whether a key may be exported is determined by the key policies in place |
| 809 | * on the key slot. |
| 810 | */ |
| 811 | /**@{*/ |
| 812 | |
Gilles Peskine | f2223c8 | 2019-07-12 23:33:02 +0200 | [diff] [blame] | 813 | /** \brief A function that allocates a slot for a key. |
| 814 | * |
| 815 | * \param[in,out] drv_context The driver context structure. |
Gilles Peskine | 94cc42c | 2019-07-12 23:34:20 +0200 | [diff] [blame] | 816 | * \param[in,out] persistent_data A pointer to the persistent data |
| 817 | * that allows writing. |
Gilles Peskine | 6a3dd89 | 2019-07-25 10:56:39 +0200 | [diff] [blame] | 818 | * \param[in] attributes Attributes of the key. |
| 819 | * \param[out] key_slot Slot where the key will be stored. |
| 820 | * This must be a valid slot for a key of the |
| 821 | * chosen type. It must be unoccupied. |
Gilles Peskine | f2223c8 | 2019-07-12 23:33:02 +0200 | [diff] [blame] | 822 | * |
| 823 | * \retval #PSA_SUCCESS |
| 824 | * Success. |
| 825 | * The core will record \c *key_slot as the key slot where the key |
| 826 | * is stored and will update the persistent data in storage. |
| 827 | * \retval #PSA_ERROR_NOT_SUPPORTED |
| 828 | * \retval #PSA_ERROR_INSUFFICIENT_STORAGE |
| 829 | */ |
| 830 | typedef psa_status_t (*psa_drv_se_allocate_key_t)( |
| 831 | psa_drv_se_context_t *drv_context, |
Gilles Peskine | 94cc42c | 2019-07-12 23:34:20 +0200 | [diff] [blame] | 832 | void *persistent_data, |
Gilles Peskine | f2223c8 | 2019-07-12 23:33:02 +0200 | [diff] [blame] | 833 | const psa_key_attributes_t *attributes, |
| 834 | psa_key_slot_number_t *key_slot); |
| 835 | |
Gilles Peskine | ae9964d | 2019-08-05 14:55:14 +0200 | [diff] [blame^] | 836 | /** \brief A function that determines whether a slot number is valid |
| 837 | * for a key. |
| 838 | * |
| 839 | * \param[in,out] drv_context The driver context structure. |
| 840 | * \param[in] attributes Attributes of the key. |
| 841 | * \param[in] key_slot Slot where the key is to be stored. |
| 842 | * |
| 843 | * \retval #PSA_SUCCESS |
| 844 | * The given slot number is valid for a key with the given |
| 845 | * attributes. |
| 846 | * \retval #PSA_ERROR_INVALID_ARGUMENT |
| 847 | * The given slot number is not valid for a key with the |
| 848 | * given attributes. This includes the case where the slot |
| 849 | * number is not valid at all. |
| 850 | * \retval #PSA_ERROR_ALREADY_EXISTS |
| 851 | * There is already a key with the specified slot number. |
| 852 | * Drivers may choose to return this error from the key |
| 853 | * creation function instead. |
| 854 | */ |
| 855 | typedef psa_status_t (*psa_drv_se_validate_slot_number_t)( |
| 856 | psa_drv_se_context_t *drv_context, |
| 857 | const psa_key_attributes_t *attributes, |
| 858 | psa_key_slot_number_t key_slot); |
| 859 | |
Derek Miller | f0c1d0d | 2019-02-15 17:23:42 -0600 | [diff] [blame] | 860 | /** \brief A function that imports a key into a secure element in binary format |
Gilles Peskine | 7597689 | 2018-12-12 15:55:09 +0100 | [diff] [blame] | 861 | * |
| 862 | * This function can support any output from psa_export_key(). Refer to the |
| 863 | * documentation of psa_export_key() for the format for each key type. |
| 864 | * |
Gilles Peskine | 6a3dd89 | 2019-07-25 10:56:39 +0200 | [diff] [blame] | 865 | * \param[in,out] drv_context The driver context structure. |
| 866 | * \param[in] key_slot Slot where the key will be stored |
Gilles Peskine | 1801740 | 2019-07-24 20:25:59 +0200 | [diff] [blame] | 867 | * This must be a valid slot for a key of the |
| 868 | * chosen type. It must be unoccupied. |
Gilles Peskine | 6a3dd89 | 2019-07-25 10:56:39 +0200 | [diff] [blame] | 869 | * \param[in] lifetime The required lifetime of the key storage |
| 870 | * \param[in] type Key type (a \c PSA_KEY_TYPE_XXX value) |
| 871 | * \param[in] algorithm Key algorithm (a \c PSA_ALG_XXX value) |
| 872 | * \param[in] usage The allowed uses of the key |
| 873 | * \param[in] p_data Buffer containing the key data |
| 874 | * \param[in] data_length Size of the `data` buffer in bytes |
Gilles Peskine | 1801740 | 2019-07-24 20:25:59 +0200 | [diff] [blame] | 875 | * \param[out] bits On success, the key size in bits. The driver |
| 876 | * must determine this value after parsing the |
| 877 | * key according to the key type. |
| 878 | * This value is not used if the function fails. |
Gilles Peskine | 7597689 | 2018-12-12 15:55:09 +0100 | [diff] [blame] | 879 | * |
| 880 | * \retval #PSA_SUCCESS |
| 881 | * Success. |
| 882 | */ |
Gilles Peskine | 8597bc1 | 2019-07-12 23:28:46 +0200 | [diff] [blame] | 883 | typedef psa_status_t (*psa_drv_se_import_key_t)(psa_drv_se_context_t *drv_context, |
| 884 | psa_key_slot_number_t key_slot, |
Derek Miller | 0972fe5 | 2019-02-15 17:08:27 -0600 | [diff] [blame] | 885 | psa_key_lifetime_t lifetime, |
Derek Miller | 83d2662 | 2019-02-15 16:41:22 -0600 | [diff] [blame] | 886 | psa_key_type_t type, |
| 887 | psa_algorithm_t algorithm, |
| 888 | psa_key_usage_t usage, |
| 889 | const uint8_t *p_data, |
Gilles Peskine | 1801740 | 2019-07-24 20:25:59 +0200 | [diff] [blame] | 890 | size_t data_length, |
| 891 | size_t *bits); |
Gilles Peskine | 7597689 | 2018-12-12 15:55:09 +0100 | [diff] [blame] | 892 | |
| 893 | /** |
Derek Miller | f0c1d0d | 2019-02-15 17:23:42 -0600 | [diff] [blame] | 894 | * \brief A function that destroys a secure element key and restore the slot to |
| 895 | * its default state |
Gilles Peskine | 7597689 | 2018-12-12 15:55:09 +0100 | [diff] [blame] | 896 | * |
Derek Miller | f0c1d0d | 2019-02-15 17:23:42 -0600 | [diff] [blame] | 897 | * This function destroys the content of the key from a secure element. |
| 898 | * Implementations shall make a best effort to ensure that any previous content |
| 899 | * of the slot is unrecoverable. |
Gilles Peskine | 7597689 | 2018-12-12 15:55:09 +0100 | [diff] [blame] | 900 | * |
Derek Miller | f0c1d0d | 2019-02-15 17:23:42 -0600 | [diff] [blame] | 901 | * This function returns the specified slot to its default state. |
Gilles Peskine | 7597689 | 2018-12-12 15:55:09 +0100 | [diff] [blame] | 902 | * |
Gilles Peskine | 8597bc1 | 2019-07-12 23:28:46 +0200 | [diff] [blame] | 903 | * \param[in,out] drv_context The driver context structure. |
Gilles Peskine | 94cc42c | 2019-07-12 23:34:20 +0200 | [diff] [blame] | 904 | * \param[in,out] persistent_data A pointer to the persistent data |
| 905 | * that allows writing. |
Gilles Peskine | 6a3dd89 | 2019-07-25 10:56:39 +0200 | [diff] [blame] | 906 | * \param key_slot The key slot to erase. |
Gilles Peskine | 7597689 | 2018-12-12 15:55:09 +0100 | [diff] [blame] | 907 | * |
| 908 | * \retval #PSA_SUCCESS |
| 909 | * The slot's content, if any, has been erased. |
| 910 | */ |
Gilles Peskine | 8597bc1 | 2019-07-12 23:28:46 +0200 | [diff] [blame] | 911 | typedef psa_status_t (*psa_drv_se_destroy_key_t)( |
| 912 | psa_drv_se_context_t *drv_context, |
Gilles Peskine | 94cc42c | 2019-07-12 23:34:20 +0200 | [diff] [blame] | 913 | void *persistent_data, |
Gilles Peskine | 8597bc1 | 2019-07-12 23:28:46 +0200 | [diff] [blame] | 914 | psa_key_slot_number_t key_slot); |
Gilles Peskine | 7597689 | 2018-12-12 15:55:09 +0100 | [diff] [blame] | 915 | |
| 916 | /** |
Derek Miller | f0c1d0d | 2019-02-15 17:23:42 -0600 | [diff] [blame] | 917 | * \brief A function that exports a secure element key in binary format |
Gilles Peskine | 7597689 | 2018-12-12 15:55:09 +0100 | [diff] [blame] | 918 | * |
| 919 | * The output of this function can be passed to psa_import_key() to |
| 920 | * create an equivalent object. |
| 921 | * |
| 922 | * If a key is created with `psa_import_key()` and then exported with |
| 923 | * this function, it is not guaranteed that the resulting data is |
| 924 | * identical: the implementation may choose a different representation |
| 925 | * of the same key if the format permits it. |
| 926 | * |
Derek Miller | f0c1d0d | 2019-02-15 17:23:42 -0600 | [diff] [blame] | 927 | * This function should generate output in the same format that |
| 928 | * `psa_export_key()` does. Refer to the |
| 929 | * documentation of `psa_export_key()` for the format for each key type. |
Gilles Peskine | 7597689 | 2018-12-12 15:55:09 +0100 | [diff] [blame] | 930 | * |
Gilles Peskine | 6a3dd89 | 2019-07-25 10:56:39 +0200 | [diff] [blame] | 931 | * \param[in,out] drv_context The driver context structure. |
Gilles Peskine | 7597689 | 2018-12-12 15:55:09 +0100 | [diff] [blame] | 932 | * \param[in] key Slot whose content is to be exported. This must |
| 933 | * be an occupied key slot. |
| 934 | * \param[out] p_data Buffer where the key data is to be written. |
| 935 | * \param[in] data_size Size of the `p_data` buffer in bytes. |
| 936 | * \param[out] p_data_length On success, the number of bytes |
| 937 | * that make up the key data. |
| 938 | * |
| 939 | * \retval #PSA_SUCCESS |
David Saada | b4ecc27 | 2019-02-14 13:48:10 +0200 | [diff] [blame] | 940 | * \retval #PSA_ERROR_DOES_NOT_EXIST |
Gilles Peskine | 7597689 | 2018-12-12 15:55:09 +0100 | [diff] [blame] | 941 | * \retval #PSA_ERROR_NOT_PERMITTED |
| 942 | * \retval #PSA_ERROR_NOT_SUPPORTED |
| 943 | * \retval #PSA_ERROR_COMMUNICATION_FAILURE |
| 944 | * \retval #PSA_ERROR_HARDWARE_FAILURE |
Gilles Peskine | 4b3eb69 | 2019-05-16 21:35:18 +0200 | [diff] [blame] | 945 | * \retval #PSA_ERROR_CORRUPTION_DETECTED |
Gilles Peskine | 7597689 | 2018-12-12 15:55:09 +0100 | [diff] [blame] | 946 | */ |
Gilles Peskine | 8597bc1 | 2019-07-12 23:28:46 +0200 | [diff] [blame] | 947 | typedef psa_status_t (*psa_drv_se_export_key_t)(psa_drv_se_context_t *drv_context, |
| 948 | psa_key_slot_number_t key, |
Derek Miller | 83d2662 | 2019-02-15 16:41:22 -0600 | [diff] [blame] | 949 | uint8_t *p_data, |
| 950 | size_t data_size, |
| 951 | size_t *p_data_length); |
Gilles Peskine | 7597689 | 2018-12-12 15:55:09 +0100 | [diff] [blame] | 952 | |
| 953 | /** |
Derek Miller | f0c1d0d | 2019-02-15 17:23:42 -0600 | [diff] [blame] | 954 | * \brief A function that generates a symmetric or asymmetric key on a secure |
| 955 | * element |
Gilles Peskine | 7597689 | 2018-12-12 15:55:09 +0100 | [diff] [blame] | 956 | * |
Gilles Peskine | 9dd125d | 2019-07-23 18:26:43 +0200 | [diff] [blame] | 957 | * If \p type is asymmetric (#PSA_KEY_TYPE_IS_ASYMMETRIC(\p type) = 1), |
Derek Miller | f0c1d0d | 2019-02-15 17:23:42 -0600 | [diff] [blame] | 958 | * the public component of the generated key will be placed in `p_pubkey_out`. |
| 959 | * The format of the public key information will match the format specified for |
Gilles Peskine | e5c025c | 2019-03-06 18:01:43 +0100 | [diff] [blame] | 960 | * the psa_export_key() function for the key type. |
Gilles Peskine | 7597689 | 2018-12-12 15:55:09 +0100 | [diff] [blame] | 961 | * |
Gilles Peskine | 6a3dd89 | 2019-07-25 10:56:39 +0200 | [diff] [blame] | 962 | * \param[in,out] drv_context The driver context structure. |
| 963 | * \param[in] key_slot Slot where the generated key will be placed |
| 964 | * \param[in] type The type of the key to be generated |
| 965 | * \param[in] usage The prescribed usage of the generated key |
| 966 | * Note: Not all Secure Elements support the same |
| 967 | * restrictions that PSA Crypto does (and vice |
| 968 | * versa). |
| 969 | * Driver developers should endeavor to match the |
| 970 | * usages as close as possible. |
| 971 | * \param[in] bits The size in bits of the key to be generated. |
| 972 | * \param[in] extra Extra parameters for key generation. The |
| 973 | * interpretation of this parameter should match |
| 974 | * the interpretation in the `extra` parameter is |
| 975 | * the `psa_generate_key` function |
| 976 | * \param[in] extra_size The size in bytes of the \p extra buffer |
| 977 | * \param[out] p_pubkey_out The buffer where the public key information will |
| 978 | * be placed |
Derek Miller | f0c1d0d | 2019-02-15 17:23:42 -0600 | [diff] [blame] | 979 | * \param[in] pubkey_out_size The size in bytes of the `p_pubkey_out` buffer |
| 980 | * \param[out] p_pubkey_length Upon successful completion, will contain the |
| 981 | * size of the data placed in `p_pubkey_out`. |
Gilles Peskine | 7597689 | 2018-12-12 15:55:09 +0100 | [diff] [blame] | 982 | */ |
Gilles Peskine | 8597bc1 | 2019-07-12 23:28:46 +0200 | [diff] [blame] | 983 | typedef psa_status_t (*psa_drv_se_generate_key_t)(psa_drv_se_context_t *drv_context, |
| 984 | psa_key_slot_number_t key_slot, |
Gilles Peskine | 32668ce | 2019-03-06 18:29:57 +0100 | [diff] [blame] | 985 | psa_key_type_t type, |
| 986 | psa_key_usage_t usage, |
| 987 | size_t bits, |
| 988 | const void *extra, |
| 989 | size_t extra_size, |
| 990 | uint8_t *p_pubkey_out, |
| 991 | size_t pubkey_out_size, |
| 992 | size_t *p_pubkey_length); |
Gilles Peskine | 7597689 | 2018-12-12 15:55:09 +0100 | [diff] [blame] | 993 | |
| 994 | /** |
Derek Miller | f0c1d0d | 2019-02-15 17:23:42 -0600 | [diff] [blame] | 995 | * \brief A struct containing all of the function pointers needed to for secure |
| 996 | * element key management |
Gilles Peskine | 7597689 | 2018-12-12 15:55:09 +0100 | [diff] [blame] | 997 | * |
| 998 | * PSA Crypto API implementations should populate instances of the table as |
Derek Miller | f0c1d0d | 2019-02-15 17:23:42 -0600 | [diff] [blame] | 999 | * appropriate upon startup or at build time. |
Gilles Peskine | 7597689 | 2018-12-12 15:55:09 +0100 | [diff] [blame] | 1000 | * |
| 1001 | * If one of the functions is not implemented, it should be set to NULL. |
| 1002 | */ |
| 1003 | typedef struct { |
Gilles Peskine | 0a23322 | 2019-08-05 14:50:28 +0200 | [diff] [blame] | 1004 | /** Function that allocates a slot for a key. |
| 1005 | * |
| 1006 | * The core calls this function to determine a slot number, then |
| 1007 | * calls the actual creation function (such as |
| 1008 | * psa_drv_se_key_management_t::p_import or |
| 1009 | * psa_drv_se_key_management_t::p_generate). |
| 1010 | * |
| 1011 | * If this function succeeds, the next call that the core makes to the |
| 1012 | * driver is either the creation function or |
| 1013 | * psa_drv_se_key_management_t::p_destroy. Note that |
| 1014 | * if the platform is reset after this function returns, the core |
| 1015 | * may either subsequently call |
| 1016 | * psa_drv_se_key_management_t::p_destroy or may behave as if the |
| 1017 | * last call to this function had not taken place. |
| 1018 | */ |
Gilles Peskine | f2223c8 | 2019-07-12 23:33:02 +0200 | [diff] [blame] | 1019 | psa_drv_se_allocate_key_t p_allocate; |
Gilles Peskine | ae9964d | 2019-08-05 14:55:14 +0200 | [diff] [blame^] | 1020 | /** Function that checks the validity of a slot for a key. |
| 1021 | * |
| 1022 | * The core calls this function instead of |
| 1023 | * psa_drv_se_key_management_t::p_allocate to create |
| 1024 | * a key in a specific slot. It then calls the actual creation function |
| 1025 | * (such as psa_drv_se_key_management_t::p_import or |
| 1026 | * psa_drv_se_key_management_t::p_generate) or |
| 1027 | * psa_drv_se_key_management_t::p_destroy. |
| 1028 | */ |
| 1029 | psa_drv_se_validate_slot_number_t p_validate_slot_number; |
Derek Miller | f0c1d0d | 2019-02-15 17:23:42 -0600 | [diff] [blame] | 1030 | /** Function that performs a key import operation */ |
| 1031 | psa_drv_se_import_key_t p_import; |
| 1032 | /** Function that performs a generation */ |
Derek Miller | 0b3098a | 2019-02-15 17:10:49 -0600 | [diff] [blame] | 1033 | psa_drv_se_generate_key_t p_generate; |
Derek Miller | f0c1d0d | 2019-02-15 17:23:42 -0600 | [diff] [blame] | 1034 | /** Function that performs a key destroy operation */ |
Derek Miller | 0b3098a | 2019-02-15 17:10:49 -0600 | [diff] [blame] | 1035 | psa_drv_se_destroy_key_t p_destroy; |
Derek Miller | f0c1d0d | 2019-02-15 17:23:42 -0600 | [diff] [blame] | 1036 | /** Function that performs a key export operation */ |
Derek Miller | 0b3098a | 2019-02-15 17:10:49 -0600 | [diff] [blame] | 1037 | psa_drv_se_export_key_t p_export; |
Gilles Peskine | e62b74e | 2019-06-25 15:25:09 +0200 | [diff] [blame] | 1038 | /** Function that performs a public key export operation */ |
| 1039 | psa_drv_se_export_key_t p_export_public; |
Derek Miller | 83d2662 | 2019-02-15 16:41:22 -0600 | [diff] [blame] | 1040 | } psa_drv_se_key_management_t; |
Gilles Peskine | 7597689 | 2018-12-12 15:55:09 +0100 | [diff] [blame] | 1041 | |
| 1042 | /**@}*/ |
| 1043 | |
Derek Miller | f0c1d0d | 2019-02-15 17:23:42 -0600 | [diff] [blame] | 1044 | /** \defgroup driver_derivation Secure Element Key Derivation and Agreement |
Gilles Peskine | 7597689 | 2018-12-12 15:55:09 +0100 | [diff] [blame] | 1045 | * Key derivation is the process of generating new key material using an |
| 1046 | * existing key and additional parameters, iterating through a basic |
| 1047 | * cryptographic function, such as a hash. |
| 1048 | * Key agreement is a part of cryptographic protocols that allows two parties |
| 1049 | * to agree on the same key value, but starting from different original key |
| 1050 | * material. |
| 1051 | * The flows are similar, and the PSA Crypto Driver Model uses the same functions |
| 1052 | * for both of the flows. |
| 1053 | * |
| 1054 | * There are two different final functions for the flows, |
Derek Miller | f0c1d0d | 2019-02-15 17:23:42 -0600 | [diff] [blame] | 1055 | * `psa_drv_se_key_derivation_derive` and `psa_drv_se_key_derivation_export`. |
| 1056 | * `psa_drv_se_key_derivation_derive` is used when the key material should be |
| 1057 | * placed in a slot on the hardware and not exposed to the caller. |
| 1058 | * `psa_drv_se_key_derivation_export` is used when the key material should be |
| 1059 | * returned to the PSA Cryptographic API implementation. |
Gilles Peskine | 7597689 | 2018-12-12 15:55:09 +0100 | [diff] [blame] | 1060 | * |
| 1061 | * Different key derivation algorithms require a different number of inputs. |
| 1062 | * Instead of having an API that takes as input variable length arrays, which |
| 1063 | * can be problemmatic to manage on embedded platforms, the inputs are passed |
Derek Miller | f0c1d0d | 2019-02-15 17:23:42 -0600 | [diff] [blame] | 1064 | * to the driver via a function, `psa_drv_se_key_derivation_collateral`, that |
| 1065 | * is called multiple times with different `collateral_id`s. Thus, for a key |
Gilles Peskine | 7597689 | 2018-12-12 15:55:09 +0100 | [diff] [blame] | 1066 | * derivation algorithm that required 3 paramter inputs, the flow would look |
| 1067 | * something like: |
| 1068 | * ~~~~~~~~~~~~~{.c} |
Derek Miller | f0c1d0d | 2019-02-15 17:23:42 -0600 | [diff] [blame] | 1069 | * psa_drv_se_key_derivation_setup(kdf_algorithm, source_key, dest_key_size_bytes); |
| 1070 | * psa_drv_se_key_derivation_collateral(kdf_algorithm_collateral_id_0, |
| 1071 | * p_collateral_0, |
| 1072 | * collateral_0_size); |
| 1073 | * psa_drv_se_key_derivation_collateral(kdf_algorithm_collateral_id_1, |
| 1074 | * p_collateral_1, |
| 1075 | * collateral_1_size); |
| 1076 | * psa_drv_se_key_derivation_collateral(kdf_algorithm_collateral_id_2, |
| 1077 | * p_collateral_2, |
| 1078 | * collateral_2_size); |
| 1079 | * psa_drv_se_key_derivation_derive(); |
Gilles Peskine | 7597689 | 2018-12-12 15:55:09 +0100 | [diff] [blame] | 1080 | * ~~~~~~~~~~~~~ |
| 1081 | * |
| 1082 | * key agreement example: |
| 1083 | * ~~~~~~~~~~~~~{.c} |
Derek Miller | f0c1d0d | 2019-02-15 17:23:42 -0600 | [diff] [blame] | 1084 | * psa_drv_se_key_derivation_setup(alg, source_key. dest_key_size_bytes); |
| 1085 | * psa_drv_se_key_derivation_collateral(DHE_PUBKEY, p_pubkey, pubkey_size); |
| 1086 | * psa_drv_se_key_derivation_export(p_session_key, |
| 1087 | * session_key_size, |
| 1088 | * &session_key_length); |
Gilles Peskine | 7597689 | 2018-12-12 15:55:09 +0100 | [diff] [blame] | 1089 | * ~~~~~~~~~~~~~ |
| 1090 | */ |
| 1091 | /**@{*/ |
| 1092 | |
Derek Miller | f0c1d0d | 2019-02-15 17:23:42 -0600 | [diff] [blame] | 1093 | /** \brief A function that Sets up a secure element key derivation operation by |
| 1094 | * specifying the algorithm and the source key sot |
Gilles Peskine | 7597689 | 2018-12-12 15:55:09 +0100 | [diff] [blame] | 1095 | * |
Gilles Peskine | 6a3dd89 | 2019-07-25 10:56:39 +0200 | [diff] [blame] | 1096 | * \param[in,out] drv_context The driver context structure. |
Gilles Peskine | 8597bc1 | 2019-07-12 23:28:46 +0200 | [diff] [blame] | 1097 | * \param[in,out] op_context A hardware-specific structure containing any |
Gilles Peskine | 6a3dd89 | 2019-07-25 10:56:39 +0200 | [diff] [blame] | 1098 | * context information for the implementation |
| 1099 | * \param[in] kdf_alg The algorithm to be used for the key derivation |
| 1100 | * \param[in] source_key The key to be used as the source material for |
| 1101 | * the key derivation |
Gilles Peskine | 7597689 | 2018-12-12 15:55:09 +0100 | [diff] [blame] | 1102 | * |
| 1103 | * \retval PSA_SUCCESS |
| 1104 | */ |
Gilles Peskine | 8597bc1 | 2019-07-12 23:28:46 +0200 | [diff] [blame] | 1105 | typedef psa_status_t (*psa_drv_se_key_derivation_setup_t)(psa_drv_se_context_t *drv_context, |
| 1106 | void *op_context, |
Derek Miller | 83d2662 | 2019-02-15 16:41:22 -0600 | [diff] [blame] | 1107 | psa_algorithm_t kdf_alg, |
Derek Miller | b2a1cce | 2019-02-15 17:03:42 -0600 | [diff] [blame] | 1108 | psa_key_slot_number_t source_key); |
Gilles Peskine | 7597689 | 2018-12-12 15:55:09 +0100 | [diff] [blame] | 1109 | |
Derek Miller | f0c1d0d | 2019-02-15 17:23:42 -0600 | [diff] [blame] | 1110 | /** \brief A function that provides collateral (parameters) needed for a secure |
| 1111 | * element key derivation or key agreement operation |
Gilles Peskine | 7597689 | 2018-12-12 15:55:09 +0100 | [diff] [blame] | 1112 | * |
| 1113 | * Since many key derivation algorithms require multiple parameters, it is |
| 1114 | * expeced that this function may be called multiple times for the same |
| 1115 | * operation, each with a different algorithm-specific `collateral_id` |
| 1116 | * |
Gilles Peskine | 8597bc1 | 2019-07-12 23:28:46 +0200 | [diff] [blame] | 1117 | * \param[in,out] op_context A hardware-specific structure containing any |
Gilles Peskine | 7597689 | 2018-12-12 15:55:09 +0100 | [diff] [blame] | 1118 | * context information for the implementation |
| 1119 | * \param[in] collateral_id An ID for the collateral being provided |
| 1120 | * \param[in] p_collateral A buffer containing the collateral data |
| 1121 | * \param[in] collateral_size The size in bytes of the collateral |
| 1122 | * |
| 1123 | * \retval PSA_SUCCESS |
| 1124 | */ |
Gilles Peskine | 8597bc1 | 2019-07-12 23:28:46 +0200 | [diff] [blame] | 1125 | typedef psa_status_t (*psa_drv_se_key_derivation_collateral_t)(void *op_context, |
Derek Miller | 83d2662 | 2019-02-15 16:41:22 -0600 | [diff] [blame] | 1126 | uint32_t collateral_id, |
| 1127 | const uint8_t *p_collateral, |
| 1128 | size_t collateral_size); |
Gilles Peskine | 7597689 | 2018-12-12 15:55:09 +0100 | [diff] [blame] | 1129 | |
Derek Miller | f0c1d0d | 2019-02-15 17:23:42 -0600 | [diff] [blame] | 1130 | /** \brief A function that performs the final secure element key derivation |
| 1131 | * step and place the generated key material in a slot |
Gilles Peskine | c3044a6 | 2019-03-06 17:56:28 +0100 | [diff] [blame] | 1132 | * |
Gilles Peskine | 8597bc1 | 2019-07-12 23:28:46 +0200 | [diff] [blame] | 1133 | * \param[in,out] op_context A hardware-specific structure containing any |
Gilles Peskine | 7597689 | 2018-12-12 15:55:09 +0100 | [diff] [blame] | 1134 | * context information for the implementation |
| 1135 | * \param[in] dest_key The slot where the generated key material |
| 1136 | * should be placed |
| 1137 | * |
| 1138 | * \retval PSA_SUCCESS |
| 1139 | */ |
Gilles Peskine | 8597bc1 | 2019-07-12 23:28:46 +0200 | [diff] [blame] | 1140 | typedef psa_status_t (*psa_drv_se_key_derivation_derive_t)(void *op_context, |
Derek Miller | 6211726 | 2019-02-15 17:12:26 -0600 | [diff] [blame] | 1141 | psa_key_slot_number_t dest_key); |
Gilles Peskine | 7597689 | 2018-12-12 15:55:09 +0100 | [diff] [blame] | 1142 | |
Derek Miller | f0c1d0d | 2019-02-15 17:23:42 -0600 | [diff] [blame] | 1143 | /** \brief A function that performs the final step of a secure element key |
| 1144 | * agreement and place the generated key material in a buffer |
Gilles Peskine | 7597689 | 2018-12-12 15:55:09 +0100 | [diff] [blame] | 1145 | * |
| 1146 | * \param[out] p_output Buffer in which to place the generated key |
| 1147 | * material |
| 1148 | * \param[in] output_size The size in bytes of `p_output` |
| 1149 | * \param[out] p_output_length Upon success, contains the number of bytes of |
| 1150 | * key material placed in `p_output` |
| 1151 | * |
| 1152 | * \retval PSA_SUCCESS |
| 1153 | */ |
Gilles Peskine | 8597bc1 | 2019-07-12 23:28:46 +0200 | [diff] [blame] | 1154 | typedef psa_status_t (*psa_drv_se_key_derivation_export_t)(void *op_context, |
Derek Miller | 6211726 | 2019-02-15 17:12:26 -0600 | [diff] [blame] | 1155 | uint8_t *p_output, |
| 1156 | size_t output_size, |
| 1157 | size_t *p_output_length); |
Gilles Peskine | 7597689 | 2018-12-12 15:55:09 +0100 | [diff] [blame] | 1158 | |
| 1159 | /** |
Derek Miller | f0c1d0d | 2019-02-15 17:23:42 -0600 | [diff] [blame] | 1160 | * \brief A struct containing all of the function pointers needed to for secure |
| 1161 | * element key derivation and agreement |
Gilles Peskine | 7597689 | 2018-12-12 15:55:09 +0100 | [diff] [blame] | 1162 | * |
| 1163 | * PSA Crypto API implementations should populate instances of the table as |
| 1164 | * appropriate upon startup. |
| 1165 | * |
| 1166 | * If one of the functions is not implemented, it should be set to NULL. |
| 1167 | */ |
| 1168 | typedef struct { |
Derek Miller | 6211726 | 2019-02-15 17:12:26 -0600 | [diff] [blame] | 1169 | /** The driver-specific size of the key derivation context */ |
| 1170 | size_t context_size; |
Derek Miller | f0c1d0d | 2019-02-15 17:23:42 -0600 | [diff] [blame] | 1171 | /** Function that performs a key derivation setup */ |
Derek Miller | ea743cf | 2019-02-15 17:06:29 -0600 | [diff] [blame] | 1172 | psa_drv_se_key_derivation_setup_t p_setup; |
Derek Miller | f0c1d0d | 2019-02-15 17:23:42 -0600 | [diff] [blame] | 1173 | /** Function that sets key derivation collateral */ |
Derek Miller | ea743cf | 2019-02-15 17:06:29 -0600 | [diff] [blame] | 1174 | psa_drv_se_key_derivation_collateral_t p_collateral; |
Derek Miller | f0c1d0d | 2019-02-15 17:23:42 -0600 | [diff] [blame] | 1175 | /** Function that performs a final key derivation step */ |
Derek Miller | ea743cf | 2019-02-15 17:06:29 -0600 | [diff] [blame] | 1176 | psa_drv_se_key_derivation_derive_t p_derive; |
Derek Miller | f0c1d0d | 2019-02-15 17:23:42 -0600 | [diff] [blame] | 1177 | /** Function that perforsm a final key derivation or agreement and |
Gilles Peskine | 7597689 | 2018-12-12 15:55:09 +0100 | [diff] [blame] | 1178 | * exports the key */ |
Derek Miller | ea743cf | 2019-02-15 17:06:29 -0600 | [diff] [blame] | 1179 | psa_drv_se_key_derivation_export_t p_export; |
Derek Miller | 83d2662 | 2019-02-15 16:41:22 -0600 | [diff] [blame] | 1180 | } psa_drv_se_key_derivation_t; |
Gilles Peskine | 7597689 | 2018-12-12 15:55:09 +0100 | [diff] [blame] | 1181 | |
| 1182 | /**@}*/ |
| 1183 | |
Gilles Peskine | b6cadea | 2019-06-24 13:46:37 +0200 | [diff] [blame] | 1184 | /** \defgroup se_registration Secure element driver registration |
| 1185 | */ |
| 1186 | /**@{*/ |
| 1187 | |
| 1188 | /** A structure containing pointers to all the entry points of a |
| 1189 | * secure element driver. |
| 1190 | * |
| 1191 | * Future versions of this specification may add extra substructures at |
| 1192 | * the end of this structure. |
| 1193 | */ |
| 1194 | typedef struct { |
Gilles Peskine | c93a43b | 2019-06-26 11:21:41 +0200 | [diff] [blame] | 1195 | /** The version of the driver HAL that this driver implements. |
| 1196 | * This is a protection against loading driver binaries built against |
Gilles Peskine | b6cadea | 2019-06-24 13:46:37 +0200 | [diff] [blame] | 1197 | * a different version of this specification. |
| 1198 | * Use #PSA_DRV_SE_HAL_VERSION. |
| 1199 | */ |
| 1200 | uint32_t hal_version; |
Gilles Peskine | 7a86da1 | 2019-07-12 23:25:38 +0200 | [diff] [blame] | 1201 | |
Gilles Peskine | 0c3ae1f | 2019-07-25 14:04:38 +0200 | [diff] [blame] | 1202 | /** The size of the driver's persistent data in bytes. |
| 1203 | * |
| 1204 | * This can be 0 if the driver does not need persistent data. |
| 1205 | * |
| 1206 | * See the documentation of psa_drv_se_context_t::persistent_data |
| 1207 | * for more information about why and how a driver can use |
| 1208 | * persistent data. |
| 1209 | */ |
Gilles Peskine | 7a86da1 | 2019-07-12 23:25:38 +0200 | [diff] [blame] | 1210 | size_t persistent_data_size; |
| 1211 | |
| 1212 | /** The driver initialization function. |
| 1213 | * |
| 1214 | * This function is called once during the initialization of the |
| 1215 | * PSA Cryptography subsystem, before any other function of the |
| 1216 | * driver is called. If this function returns a failure status, |
| 1217 | * the driver will be unusable, at least until the next system reset. |
| 1218 | * |
| 1219 | * If this field is \c NULL, it is equivalent to a function that does |
| 1220 | * nothing and returns #PSA_SUCCESS. |
| 1221 | */ |
| 1222 | psa_drv_se_init_t p_init; |
| 1223 | |
Gilles Peskine | 6e59c42 | 2019-06-26 19:06:52 +0200 | [diff] [blame] | 1224 | const psa_drv_se_key_management_t *key_management; |
| 1225 | const psa_drv_se_mac_t *mac; |
| 1226 | const psa_drv_se_cipher_t *cipher; |
| 1227 | const psa_drv_se_aead_t *aead; |
| 1228 | const psa_drv_se_asymmetric_t *asymmetric; |
| 1229 | const psa_drv_se_key_derivation_t *derivation; |
Gilles Peskine | b6cadea | 2019-06-24 13:46:37 +0200 | [diff] [blame] | 1230 | } psa_drv_se_t; |
| 1231 | |
Gilles Peskine | c93a43b | 2019-06-26 11:21:41 +0200 | [diff] [blame] | 1232 | /** The current version of the secure element driver HAL. |
Gilles Peskine | b6cadea | 2019-06-24 13:46:37 +0200 | [diff] [blame] | 1233 | */ |
| 1234 | /* 0.0.0 patchlevel 5 */ |
| 1235 | #define PSA_DRV_SE_HAL_VERSION 0x00000005 |
| 1236 | |
Gilles Peskine | c93a43b | 2019-06-26 11:21:41 +0200 | [diff] [blame] | 1237 | /** Register an external cryptoprocessor (secure element) driver. |
Gilles Peskine | d910e92 | 2019-06-24 13:47:07 +0200 | [diff] [blame] | 1238 | * |
| 1239 | * This function is only intended to be used by driver code, not by |
| 1240 | * application code. In implementations with separation between the |
| 1241 | * PSA cryptography module and applications, this function should |
| 1242 | * only be available to callers that run in the same memory space as |
| 1243 | * the cryptography module, and should not be exposed to applications |
| 1244 | * running in a different memory space. |
| 1245 | * |
| 1246 | * This function may be called before psa_crypto_init(). It is |
| 1247 | * implementation-defined whether this function may be called |
| 1248 | * after psa_crypto_init(). |
| 1249 | * |
Gilles Peskine | c93a43b | 2019-06-26 11:21:41 +0200 | [diff] [blame] | 1250 | * \note Implementations store metadata about keys including the lifetime |
| 1251 | * value. Therefore, from one instantiation of the PSA Cryptography |
| 1252 | * library to the next one, if there is a key in storage with a certain |
| 1253 | * lifetime value, you must always register the same driver (or an |
| 1254 | * updated version that communicates with the same secure element) |
| 1255 | * with the same lifetime value. |
| 1256 | * |
Gilles Peskine | d910e92 | 2019-06-24 13:47:07 +0200 | [diff] [blame] | 1257 | * \param lifetime The lifetime value through which this driver will |
| 1258 | * be exposed to applications. |
| 1259 | * The values #PSA_KEY_LIFETIME_VOLATILE and |
| 1260 | * #PSA_KEY_LIFETIME_PERSISTENT are reserved and |
Gilles Peskine | c93a43b | 2019-06-26 11:21:41 +0200 | [diff] [blame] | 1261 | * may not be used for drivers. Implementations |
Gilles Peskine | d910e92 | 2019-06-24 13:47:07 +0200 | [diff] [blame] | 1262 | * may reserve other values. |
| 1263 | * \param[in] methods The method table of the driver. This structure must |
| 1264 | * remain valid for as long as the cryptography |
| 1265 | * module keeps running. It is typically a global |
| 1266 | * constant. |
| 1267 | * |
| 1268 | * \return PSA_SUCCESS |
| 1269 | * The driver was successfully registered. Applications can now |
| 1270 | * use \p lifetime to access keys through the methods passed to |
| 1271 | * this function. |
| 1272 | * \return PSA_ERROR_BAD_STATE |
| 1273 | * This function was called after the initialization of the |
| 1274 | * cryptography module, and this implementation does not support |
| 1275 | * driver registration at this stage. |
| 1276 | * \return PSA_ERROR_ALREADY_EXISTS |
| 1277 | * There is already a registered driver for this value of \p lifetime. |
| 1278 | * \return PSA_ERROR_INVALID_ARGUMENT |
Gilles Peskine | c93a43b | 2019-06-26 11:21:41 +0200 | [diff] [blame] | 1279 | * \p lifetime is a reserved value. |
Gilles Peskine | d910e92 | 2019-06-24 13:47:07 +0200 | [diff] [blame] | 1280 | * \return PSA_ERROR_NOT_SUPPORTED |
Gilles Peskine | c93a43b | 2019-06-26 11:21:41 +0200 | [diff] [blame] | 1281 | * `methods->hal_version` is not supported by this implementation. |
Gilles Peskine | d910e92 | 2019-06-24 13:47:07 +0200 | [diff] [blame] | 1282 | * \return PSA_ERROR_INSUFFICIENT_MEMORY |
| 1283 | * \return PSA_ERROR_NOT_PERMITTED |
| 1284 | */ |
| 1285 | psa_status_t psa_register_se_driver( |
| 1286 | psa_key_lifetime_t lifetime, |
| 1287 | const psa_drv_se_t *methods); |
| 1288 | |
Gilles Peskine | b6cadea | 2019-06-24 13:46:37 +0200 | [diff] [blame] | 1289 | /**@}*/ |
| 1290 | |
Gilles Peskine | 7597689 | 2018-12-12 15:55:09 +0100 | [diff] [blame] | 1291 | #ifdef __cplusplus |
| 1292 | } |
| 1293 | #endif |
| 1294 | |
| 1295 | #endif /* PSA_CRYPTO_SE_DRIVER_H */ |