Gilles Peskine | e59236f | 2018-01-27 23:32:46 +0100 | [diff] [blame] | 1 | /** |
| 2 | * \file psa/crypto_platform.h |
| 3 | * |
Jaeden Amero | 95d8438 | 2019-05-30 13:14:00 +0100 | [diff] [blame] | 4 | * \brief PSA cryptography module: Mbed TLS platform definitions |
Gilles Peskine | 07c91f5 | 2018-06-28 18:02:53 +0200 | [diff] [blame] | 5 | * |
| 6 | * \note This file may not be included directly. Applications must |
| 7 | * include psa/crypto.h. |
| 8 | * |
| 9 | * This file contains platform-dependent type definitions. |
| 10 | * |
| 11 | * In implementations with isolation between the application and the |
| 12 | * cryptography module, implementers should take care to ensure that |
| 13 | * the definitions that are exposed to applications match what the |
| 14 | * module implements. |
Gilles Peskine | e59236f | 2018-01-27 23:32:46 +0100 | [diff] [blame] | 15 | */ |
| 16 | /* |
Bence Szépkúti | 1e14827 | 2020-08-07 13:07:28 +0200 | [diff] [blame] | 17 | * Copyright The Mbed TLS Contributors |
Gilles Peskine | e59236f | 2018-01-27 23:32:46 +0100 | [diff] [blame] | 18 | * SPDX-License-Identifier: Apache-2.0 |
| 19 | * |
| 20 | * Licensed under the Apache License, Version 2.0 (the "License"); you may |
| 21 | * not use this file except in compliance with the License. |
| 22 | * You may obtain a copy of the License at |
| 23 | * |
| 24 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 25 | * |
| 26 | * Unless required by applicable law or agreed to in writing, software |
| 27 | * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT |
| 28 | * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 29 | * See the License for the specific language governing permissions and |
| 30 | * limitations under the License. |
Gilles Peskine | e59236f | 2018-01-27 23:32:46 +0100 | [diff] [blame] | 31 | */ |
| 32 | |
| 33 | #ifndef PSA_CRYPTO_PLATFORM_H |
| 34 | #define PSA_CRYPTO_PLATFORM_H |
Mateusz Starzyk | 2abe51c | 2021-06-07 11:08:01 +0200 | [diff] [blame] | 35 | #include "mbedtls/private_access.h" |
Gilles Peskine | e59236f | 2018-01-27 23:32:46 +0100 | [diff] [blame] | 36 | |
Ronald Cron | f6236f0 | 2023-01-26 16:22:25 +0100 | [diff] [blame] | 37 | /* |
| 38 | * Include the build-time configuration information file. Here, we do not |
| 39 | * include `"mbedtls/build_info.h"` directly but `"psa/build_info.h"`, which |
| 40 | * is basically just an alias to it. This is to ease the maintenance of the |
| 41 | * PSA cryptography repository which has a different build system and |
| 42 | * configuration. |
| 43 | */ |
| 44 | #include "psa/build_info.h" |
Gilles Peskine | e59236f | 2018-01-27 23:32:46 +0100 | [diff] [blame] | 45 | |
| 46 | /* PSA requires several types which C99 provides in stdint.h. */ |
| 47 | #include <stdint.h> |
| 48 | |
Ronald Cron | 71016a9 | 2020-08-28 19:01:50 +0200 | [diff] [blame] | 49 | #if defined(MBEDTLS_PSA_CRYPTO_KEY_ID_ENCODES_OWNER) |
Gilles Peskine | 69d7c8b | 2019-02-19 14:00:31 +0100 | [diff] [blame] | 50 | |
Ronald Cron | 9a2511e | 2020-09-14 10:02:56 +0200 | [diff] [blame] | 51 | /* Building for the PSA Crypto service on a PSA platform, a key owner is a PSA |
| 52 | * partition identifier. |
| 53 | * |
| 54 | * The function psa_its_identifier_of_slot() in psa_crypto_storage.c that |
| 55 | * translates a key identifier to a key storage file name assumes that |
Tom Cosgrove | ce7f18c | 2022-07-28 05:50:56 +0100 | [diff] [blame] | 56 | * mbedtls_key_owner_id_t is a 32-bit integer. This function thus needs |
| 57 | * reworking if mbedtls_key_owner_id_t is not defined as a 32-bit integer |
Ronald Cron | 9a2511e | 2020-09-14 10:02:56 +0200 | [diff] [blame] | 58 | * here anymore. |
| 59 | */ |
Ronald Cron | 72f65fc | 2020-09-01 15:50:17 +0200 | [diff] [blame] | 60 | typedef int32_t mbedtls_key_owner_id_t; |
Ronald Cron | ecfb237 | 2020-07-23 17:13:42 +0200 | [diff] [blame] | 61 | |
| 62 | /** Compare two key owner identifiers. |
| 63 | * |
| 64 | * \param id1 First key owner identifier. |
| 65 | * \param id2 Second key owner identifier. |
| 66 | * |
| 67 | * \return Non-zero if the two key owner identifiers are equal, zero otherwise. |
| 68 | */ |
Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 69 | static inline int mbedtls_key_owner_id_equal(mbedtls_key_owner_id_t id1, |
| 70 | mbedtls_key_owner_id_t id2) |
Ronald Cron | ecfb237 | 2020-07-23 17:13:42 +0200 | [diff] [blame] | 71 | { |
Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 72 | return id1 == id2; |
Ronald Cron | ecfb237 | 2020-07-23 17:13:42 +0200 | [diff] [blame] | 73 | } |
Gilles Peskine | 572f067 | 2019-02-19 14:16:17 +0100 | [diff] [blame] | 74 | |
Ronald Cron | 71016a9 | 2020-08-28 19:01:50 +0200 | [diff] [blame] | 75 | #endif /* MBEDTLS_PSA_CRYPTO_KEY_ID_ENCODES_OWNER */ |
Gilles Peskine | 69d7c8b | 2019-02-19 14:00:31 +0100 | [diff] [blame] | 76 | |
Gilles Peskine | e96c585 | 2021-06-15 18:36:05 +0200 | [diff] [blame] | 77 | /* |
| 78 | * When MBEDTLS_PSA_CRYPTO_SPM is defined, the code is being built for SPM |
| 79 | * (Secure Partition Manager) integration which separates the code into two |
| 80 | * parts: NSPE (Non-Secure Processing Environment) and SPE (Secure Processing |
| 81 | * Environment). When building for the SPE, an additional header file should be |
| 82 | * included. |
| 83 | */ |
| 84 | #if defined(MBEDTLS_PSA_CRYPTO_SPM) |
| 85 | #define PSA_CRYPTO_SECURE 1 |
Gilles Peskine | 3529285 | 2023-09-27 15:41:56 +0200 | [diff] [blame] | 86 | #include "crypto_spe.h" |
Gilles Peskine | e96c585 | 2021-06-15 18:36:05 +0200 | [diff] [blame] | 87 | #endif // MBEDTLS_PSA_CRYPTO_SPM |
| 88 | |
Gilles Peskine | b8af228 | 2020-11-13 18:00:34 +0100 | [diff] [blame] | 89 | #if defined(MBEDTLS_PSA_CRYPTO_EXTERNAL_RNG) |
Gilles Peskine | 88fa5c4 | 2021-01-04 21:00:53 +0100 | [diff] [blame] | 90 | /** The type of the context passed to mbedtls_psa_external_get_random(). |
Gilles Peskine | c096301 | 2020-11-18 15:33:33 +0100 | [diff] [blame] | 91 | * |
| 92 | * Mbed TLS initializes the context to all-bits-zero before calling |
| 93 | * mbedtls_psa_external_get_random() for the first time. |
| 94 | * |
| 95 | * The definition of this type in the Mbed TLS source code is for |
| 96 | * demonstration purposes. Implementers of mbedtls_psa_external_get_random() |
| 97 | * are expected to replace it with a custom definition. |
| 98 | */ |
Gilles Peskine | b8af228 | 2020-11-13 18:00:34 +0100 | [diff] [blame] | 99 | typedef struct { |
Mateusz Starzyk | 2abe51c | 2021-06-07 11:08:01 +0200 | [diff] [blame] | 100 | uintptr_t MBEDTLS_PRIVATE(opaque)[2]; |
Gilles Peskine | b8af228 | 2020-11-13 18:00:34 +0100 | [diff] [blame] | 101 | } mbedtls_psa_external_random_context_t; |
| 102 | #endif /* MBEDTLS_PSA_CRYPTO_EXTERNAL_RNG */ |
| 103 | |
Gilles Peskine | e59236f | 2018-01-27 23:32:46 +0100 | [diff] [blame] | 104 | #endif /* PSA_CRYPTO_PLATFORM_H */ |