Skip to content

Commit 3a25855

Browse files
committed
[nrf noup] boot: bootutil: loader: Fix triple erasing s0/s1 update
nrf-squash! [nrf noup] treewide: Add support for sysbuild assigned images Fixes an issue whereby if an invalid s0/s1 slot update was loaded, then the slot would be erased 3 times instead of just once Signed-off-by: Jamie McCrae <jamie.mccrae@nordicsemi.no>
1 parent c09c22a commit 3a25855

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

boot/bootutil/src/loader.c

+17
Original file line numberDiff line numberDiff line change
@@ -1401,6 +1401,18 @@ boot_update_security_counter(uint8_t image_index, int slot,
14011401

14021402
static uint8_t sec_slot_assignment[MCUBOOT_IMAGE_NUMBER] = {0};
14031403

1404+
#if CONFIG_MCUBOOT_MCUBOOT_IMAGE_NUMBER != -1
1405+
static inline void sec_slot_untouch(struct boot_loader_state *state)
1406+
{
1407+
sec_slot_assignment[CONFIG_MCUBOOT_APPLICATION_IMAGE_NUMBER] = SEC_SLOT_VIRGIN;
1408+
sec_slot_assignment[CONFIG_MCUBOOT_MCUBOOT_IMAGE_NUMBER] = SEC_SLOT_VIRGIN;
1409+
}
1410+
#else
1411+
static inline void sec_slot_untouch(struct boot_loader_state *state)
1412+
{
1413+
}
1414+
#endif
1415+
14041416
static inline void sec_slot_touch(struct boot_loader_state *state)
14051417
{
14061418
#if CONFIG_MCUBOOT_MCUBOOT_IMAGE_NUMBER != -1
@@ -1467,6 +1479,9 @@ static void sec_slot_cleanup_if_unusable(void)
14671479
}
14681480
}
14691481
#else
1482+
static inline void sec_slot_untouch(struct boot_loader_state *state)
1483+
{
1484+
}
14701485
static inline void sec_slot_touch(struct boot_loader_state *state)
14711486
{
14721487
}
@@ -1557,6 +1572,8 @@ boot_validated_swap_type(struct boot_loader_state *state,
15571572
/* NSIB upgrade but for the wrong slot, must be erased */
15581573
BOOT_LOG_ERR("Image in slot is for wrong s0/s1 image");
15591574
flash_area_erase(secondary_fa, 0, secondary_fa->fa_size);
1575+
sec_slot_untouch(state);
1576+
BOOT_LOG_ERR("Cleaned-up secondary slot of image %d", BOOT_CURR_IMG(state));
15601577
return BOOT_SWAP_TYPE_FAIL;
15611578
} else if (reset_addr < primary_fa->fa_off || reset_addr > (primary_fa->fa_off + primary_fa->fa_size)) {
15621579
/* The image in the secondary slot is not intended for any */

0 commit comments

Comments
 (0)