|
| 1 | +/* |
| 2 | + * Copyright (c) 2024 Project CHIP Authors |
| 3 | + * All rights reserved. |
| 4 | + * |
| 5 | + * Licensed under the Apache License, Version 2.0 (the "License"); |
| 6 | + * you may not use this file except in compliance with the License. |
| 7 | + * You may obtain a copy of the License at |
| 8 | + * |
| 9 | + * http://www.apache.org/licenses/LICENSE-2.0 |
| 10 | + * |
| 11 | + * Unless required by applicable law or agreed to in writing, software |
| 12 | + * distributed under the License is distributed on an "AS IS" BASIS, |
| 13 | + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 14 | + * See the License for the specific language governing permissions and |
| 15 | + * limitations under the License. |
| 16 | + */ |
| 17 | +#pragma once |
| 18 | + |
| 19 | +#include "CHIPCryptoPALPSA.h" |
| 20 | + |
| 21 | +#include <cinttypes> |
| 22 | +#include <cracen_psa_kmu.h> |
| 23 | + |
| 24 | +/* KMU Slots for Matter purpose: |
| 25 | + * |
| 26 | + * DAC private key 176-180 (1 key) |
| 27 | + * NOC private keys (Operational) 155-175 (5 fabrics max) |
| 28 | + * ICD keys 113-153 (5 fabrics max) |
| 29 | + * |
| 30 | + * DAC private key needs 4 KMU slots |
| 31 | + * NOC private key needs 4 KMU slots |
| 32 | + * ICD key needs 8 KMU slots |
| 33 | + */ |
| 34 | +#define KMU_ADAPTATION_USE_ENCRYPTION 0 |
| 35 | + |
| 36 | +namespace chip { |
| 37 | +namespace Crypto { |
| 38 | +namespace KMU { |
| 39 | + |
| 40 | +inline constexpr static uint8_t NOC_Offset = 155; |
| 41 | +inline constexpr static uint8_t ICD_Offset = 113; |
| 42 | +inline constexpr static uint8_t NOC_KeyMax = 5; |
| 43 | +inline constexpr static uint8_t ICD_KeyMax = 5; |
| 44 | +inline constexpr static uint8_t NOC_SingleKeySlots = 2; |
| 45 | +inline constexpr static uint8_t ICD_SingleKeySlots = 1; |
| 46 | +#if KMU_ADAPTATION_USE_ENCRYPTION |
| 47 | +inline constexpr static uint8_t EncryptionOverhead = 2; |
| 48 | +#else |
| 49 | +inline constexpr static uint8_t EncryptionOverhead = 0; |
| 50 | +#endif |
| 51 | + |
| 52 | +inline CHIP_ERROR GetSlot(psa_key_id_t * keyID, psa_key_attributes_t * attributes) |
| 53 | +{ |
| 54 | + if (!keyID) |
| 55 | + { |
| 56 | + return CHIP_ERROR_INVALID_ARGUMENT; |
| 57 | + } |
| 58 | + |
| 59 | + if (static_cast<uint8_t>(*keyID) >= static_cast<uint8_t>(KeyIdBase::Operational) && |
| 60 | + static_cast<uint8_t>(*keyID) < static_cast<uint8_t>(KeyIdBase::DACPrivKey)) |
| 61 | + { |
| 62 | + if (static_cast<uint8_t>(*keyID) > static_cast<uint8_t>(NOC_KeyMax)) |
| 63 | + { |
| 64 | + return CHIP_ERROR_PERSISTED_STORAGE_FAILED; |
| 65 | + } |
| 66 | + |
| 67 | + psa_key_id_t newId = NOC_Offset + ((NOC_SingleKeySlots + EncryptionOverhead) * (*keyID - 1)); |
| 68 | + *keyID = static_cast<psa_key_id_t>(PSA_KEY_HANDLE_FROM_CRACEN_KMU_SLOT(CRACEN_KMU_KEY_USAGE_SCHEME_ENCRYPTED, newId)); |
| 69 | + if (attributes) |
| 70 | + { |
| 71 | + psa_set_key_lifetime( |
| 72 | + attributes, |
| 73 | + PSA_KEY_LIFETIME_FROM_PERSISTENCE_AND_LOCATION(PSA_KEY_PERSISTENCE_DEFAULT, PSA_KEY_LOCATION_CRACEN_KMU)); |
| 74 | + } |
| 75 | + |
| 76 | + return CHIP_NO_ERROR; |
| 77 | + } |
| 78 | + else if (static_cast<uint8_t>(*keyID) >= static_cast<uint8_t>(KeyIdBase::ICDKeyRangeStart) && |
| 79 | + static_cast<uint8_t>(*keyID) < static_cast<uint8_t>(KeyIdBase::Maximum)) |
| 80 | + { |
| 81 | + if (static_cast<uint8_t>(*keyID) > static_cast<uint8_t>(NOC_KeyMax)) |
| 82 | + { |
| 83 | + return CHIP_ERROR_PERSISTED_STORAGE_FAILED; |
| 84 | + } |
| 85 | + |
| 86 | + psa_key_id_t newId = ICD_Offset + ((ICD_SingleKeySlots + EncryptionOverhead) * (*keyID - 1)); |
| 87 | + *keyID = static_cast<psa_key_id_t>(PSA_KEY_HANDLE_FROM_CRACEN_KMU_SLOT(CRACEN_KMU_KEY_USAGE_SCHEME_RAW, newId)); |
| 88 | + |
| 89 | + if (attributes) |
| 90 | + { |
| 91 | + // Cracen KMU supports only PSA_ALG_CCM algorithm, so convert it. |
| 92 | + if (psa_get_key_algorithm(attributes) == PSA_ALG_AEAD_WITH_AT_LEAST_THIS_LENGTH_TAG(PSA_ALG_CCM, 8)) |
| 93 | + { |
| 94 | + psa_set_key_algorithm(attributes, PSA_ALG_CCM); |
| 95 | + } |
| 96 | + |
| 97 | + psa_set_key_lifetime( |
| 98 | + attributes, |
| 99 | + PSA_KEY_LIFETIME_FROM_PERSISTENCE_AND_LOCATION(PSA_KEY_PERSISTENCE_DEFAULT, PSA_KEY_LOCATION_CRACEN_KMU)); |
| 100 | + } |
| 101 | + return CHIP_NO_ERROR; |
| 102 | + } |
| 103 | + |
| 104 | + return CHIP_ERROR_INVALID_ARGUMENT; |
| 105 | +} |
| 106 | +} // namespace KMU |
| 107 | +} // namespace Crypto |
| 108 | +} // namespace chip |
0 commit comments