Enable NVS and flash encryption at rest (fw 0.8.3).

Add initEncryptedStorage, development-mode Kconfig defaults, production overlay, and security HIL docs; wire NetBootstrap through encrypted NVS bring-up.

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
2026-07-07 07:46:59 +02:00
co-authored by Cursor
parent 9b46fe9465
commit a8f2fd1c6c
17 changed files with 259 additions and 48 deletions
@@ -0,0 +1,75 @@
/**
* @file NvsPlatformInit.cpp
* @brief Encrypted NVS partition bring-up implementation.
*
* DigiRadio firmware — https://github.com/manvalan/DigiRadio
*
* Copyright 2026 Michele Bigi
* SPDX-License-Identifier: Apache-2.0
*
* @author Michele Bigi
* @date 2026-07-07
*/
#include "secure_store/NvsPlatformInit.hpp"
#include "esp_log.h"
#include "nvs_flash.h"
#include "sdkconfig.h"
namespace secure_store {
namespace {
constexpr char kTag[] = "NvsPlatformInit";
/**
* @brief logEncryptionMode — log active NVS security Kconfig (no secrets).
*
* @dname logEncryptionMode
* @pubstate none; INFO log only.
*
* @author Michele Bigi
* @date 2026-07-07
*/
void logEncryptionMode() noexcept
{
#if CONFIG_NVS_ENCRYPTION
ESP_LOGI(kTag, "NVS encryption enabled");
#if CONFIG_SECURE_FLASH_ENC_ENABLED
ESP_LOGI(kTag, "Flash encryption enabled (development=%d)",
static_cast<int>(CONFIG_SECURE_FLASH_ENCRYPTION_MODE_DEVELOPMENT));
#else
ESP_LOGW(kTag, "NVS encryption without flash encryption — check Kconfig");
#endif
#else
ESP_LOGW(kTag, "NVS encryption disabled — not for production");
#endif
}
} // namespace
std::expected<void, NvsInitError> initEncryptedStorage() noexcept
{
logEncryptionMode();
esp_err_t err = nvs_flash_init();
if (err == ESP_ERR_NVS_NO_FREE_PAGES
|| err == ESP_ERR_NVS_NEW_VERSION_FOUND) {
ESP_LOGW(kTag, "NVS partition needs erase (err=0x%x)", static_cast<unsigned>(err));
err = nvs_flash_erase();
if (err != ESP_OK) {
ESP_LOGE(kTag, "nvs_flash_erase failed (0x%x)", static_cast<unsigned>(err));
return std::unexpected(NvsInitError::EraseFailed);
}
err = nvs_flash_init();
}
if (err != ESP_OK) {
ESP_LOGE(kTag, "nvs_flash_init failed (0x%x)", static_cast<unsigned>(err));
return std::unexpected(NvsInitError::InitFailed);
}
return {};
}
} // namespace secure_store