Skip to content

Commit 12e5ee1

Browse files
nordicjmjukkar
authored andcommitted
[nrf noup] boot: bootutil: Allow configuring number of KMU keys
Adds a new Kconfig CONFIG_BOOT_SIGNATURE_KMU_SLOTS which allows specifying how many KMU key IDs are supported, the default is set to 1 instead of 3 which was set before NCSDK-30743 Signed-off-by: Jamie McCrae <[email protected]> (cherry picked from commit ed0fc24)
1 parent eebb8ab commit 12e5ee1

File tree

2 files changed

+18
-3
lines changed

2 files changed

+18
-3
lines changed

boot/bootutil/src/ed25519_psa.c

+6-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2020 Nordic Semiconductor ASA
2+
* Copyright (c) 2020-2024 Nordic Semiconductor ASA
33
*
44
* SPDX-License-Identifier: LicenseRef-Nordic-5-Clause
55
*/
@@ -12,6 +12,7 @@
1212

1313
#include <psa/crypto.h>
1414
#include <psa/crypto_types.h>
15+
#include <zephyr/sys/util.h>
1516
#if defined(CONFIG_BOOT_SIGNATURE_USING_KMU)
1617
#include <cracen_psa_kmu.h>
1718
#endif
@@ -30,7 +31,9 @@ static psa_key_id_t kmu_key_ids[3] = {
3031
MAKE_PSA_KMU_KEY_ID(228),
3132
MAKE_PSA_KMU_KEY_ID(230)
3233
};
33-
#define KMU_KEY_COUNT (sizeof(kmu_key_ids)/sizeof(kmu_key_ids[0]))
34+
35+
BUILD_ASSERT(CONFIG_BOOT_SIGNATURE_KMU_SLOTS <= ARRAY_SIZE(kmu_key_ids),
36+
"Invalid number of KMU slots, up to 3 are supported on nRF54L15");
3437
#endif
3538

3639
#if !defined(CONFIG_BOOT_SIGNATURE_USING_KMU)
@@ -103,7 +106,7 @@ int ED25519_verify(const uint8_t *message, size_t message_len,
103106

104107
status = PSA_ERROR_BAD_STATE;
105108

106-
for (int i = 0; i < KMU_KEY_COUNT; ++i) {
109+
for (int i = 0; i < CONFIG_BOOT_SIGNATURE_KMU_SLOTS; ++i) {
107110
psa_key_id_t kid = kmu_key_ids[i];
108111

109112
status = psa_verify_message(kid, PSA_ALG_PURE_EDDSA, message,

boot/zephyr/Kconfig

+12
Original file line numberDiff line numberDiff line change
@@ -317,6 +317,18 @@ config BOOT_SIGNATURE_USING_KMU
317317
MCUboot will use keys provisioned to the device key management unit for signature
318318
verification instead of compiling in key data from a file.
319319

320+
if BOOT_SIGNATURE_USING_KMU
321+
322+
config BOOT_SIGNATURE_KMU_SLOTS
323+
int "KMU key slots"
324+
range 1 3
325+
default 1
326+
help
327+
Selects the number of KMU key slots (also known as generations) to use when verifying
328+
an image.
329+
330+
endif
331+
320332
if !BOOT_SIGNATURE_USING_KMU
321333

322334
config BOOT_SIGNATURE_KEY_FILE

0 commit comments

Comments
 (0)