mirror of
https://github.com/espressif/esp-idf.git
synced 2025-07-30 18:57:19 +02:00
nvs_util: Add support for creation of unique encryption keys
(cherry picked from commit e1f466e708c2c1b825e955ec28b70dc3058f9262)
This commit is contained in:
@ -37,8 +37,10 @@ try:
|
|||||||
from cryptography.hazmat.primitives.ciphers import Cipher, algorithms, modes
|
from cryptography.hazmat.primitives.ciphers import Cipher, algorithms, modes
|
||||||
from cryptography.hazmat.backends import default_backend
|
from cryptography.hazmat.backends import default_backend
|
||||||
except ImportError:
|
except ImportError:
|
||||||
print("cryptography package needs to be installed.\nRun: pip install cryptography>=2.1.4")
|
print('The cryptography package is not installed.'
|
||||||
sys.exit(0)
|
'Please refer to the Get Started section of the ESP-IDF Programming Guide for '
|
||||||
|
'setting up the required packages.')
|
||||||
|
raise
|
||||||
|
|
||||||
VERSION1_PRINT = "v1 - Multipage Blob Support Disabled"
|
VERSION1_PRINT = "v1 - Multipage Blob Support Disabled"
|
||||||
VERSION2_PRINT = "v2 - Multipage Blob Support Enabled"
|
VERSION2_PRINT = "v2 - Multipage Blob Support Enabled"
|
||||||
@ -621,7 +623,7 @@ def write_entry(nvs_instance, key, datatype, encoding, value):
|
|||||||
if datatype == "file":
|
if datatype == "file":
|
||||||
abs_file_path = value
|
abs_file_path = value
|
||||||
if os.path.isabs(value) is False:
|
if os.path.isabs(value) is False:
|
||||||
script_dir = os.path.dirname(__file__)
|
script_dir = os.getcwd()
|
||||||
abs_file_path = os.path.join(script_dir, value)
|
abs_file_path = os.path.join(script_dir, value)
|
||||||
|
|
||||||
with open(abs_file_path, 'rb') as f:
|
with open(abs_file_path, 'rb') as f:
|
||||||
|
@ -827,7 +827,7 @@ TEST_CASE("nvs api tests, starting with random data in flash", "[nvs][long]")
|
|||||||
extern "C" void nvs_dump(const char *partName);
|
extern "C" void nvs_dump(const char *partName);
|
||||||
|
|
||||||
class RandomTest {
|
class RandomTest {
|
||||||
|
|
||||||
static const size_t nKeys = 11;
|
static const size_t nKeys = 11;
|
||||||
int32_t v1 = 0, v2 = 0;
|
int32_t v1 = 0, v2 = 0;
|
||||||
uint64_t v3 = 0, v4 = 0;
|
uint64_t v3 = 0, v4 = 0;
|
||||||
@ -846,12 +846,12 @@ public:
|
|||||||
|
|
||||||
template<typename TGen>
|
template<typename TGen>
|
||||||
esp_err_t doRandomThings(nvs_handle handle, TGen gen, size_t& count) {
|
esp_err_t doRandomThings(nvs_handle handle, TGen gen, size_t& count) {
|
||||||
|
|
||||||
const char* keys[] = {"foo", "bar", "longkey_0123456", "another key", "param1", "param2", "param3", "param4", "param5", "singlepage", "multipage"};
|
const char* keys[] = {"foo", "bar", "longkey_0123456", "another key", "param1", "param2", "param3", "param4", "param5", "singlepage", "multipage"};
|
||||||
const ItemType types[] = {ItemType::I32, ItemType::I32, ItemType::U64, ItemType::U64, ItemType::SZ, ItemType::SZ, ItemType::SZ, ItemType::SZ, ItemType::SZ, ItemType::BLOB, ItemType::BLOB};
|
const ItemType types[] = {ItemType::I32, ItemType::I32, ItemType::U64, ItemType::U64, ItemType::SZ, ItemType::SZ, ItemType::SZ, ItemType::SZ, ItemType::SZ, ItemType::BLOB, ItemType::BLOB};
|
||||||
|
|
||||||
void* values[] = {&v1, &v2, &v3, &v4, &v5, &v6, &v7, &v8, &v9, &v10, &v11};
|
void* values[] = {&v1, &v2, &v3, &v4, &v5, &v6, &v7, &v8, &v9, &v10, &v11};
|
||||||
|
|
||||||
const size_t nKeys = sizeof(keys) / sizeof(keys[0]);
|
const size_t nKeys = sizeof(keys) / sizeof(keys[0]);
|
||||||
static_assert(nKeys == sizeof(types) / sizeof(types[0]), "");
|
static_assert(nKeys == sizeof(types) / sizeof(types[0]), "");
|
||||||
static_assert(nKeys == sizeof(values) / sizeof(values[0]), "");
|
static_assert(nKeys == sizeof(values) / sizeof(values[0]), "");
|
||||||
@ -1067,7 +1067,7 @@ public:
|
|||||||
return ESP_OK;
|
return ESP_OK;
|
||||||
}
|
}
|
||||||
|
|
||||||
esp_err_t handleExternalWriteAtIndex(uint8_t index, const void* value, const size_t len ) {
|
esp_err_t handleExternalWriteAtIndex(uint8_t index, const void* value, const size_t len ) {
|
||||||
if(index == 9) { /* This is only done for small-page blobs for now*/
|
if(index == 9) { /* This is only done for small-page blobs for now*/
|
||||||
if(len > smallBlobLen) {
|
if(len > smallBlobLen) {
|
||||||
return ESP_FAIL;
|
return ESP_FAIL;
|
||||||
@ -1078,7 +1078,7 @@ public:
|
|||||||
} else {
|
} else {
|
||||||
return ESP_FAIL;
|
return ESP_FAIL;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
TEST_CASE("monkey test", "[nvs][monkey]")
|
TEST_CASE("monkey test", "[nvs][monkey]")
|
||||||
@ -1091,7 +1091,7 @@ TEST_CASE("monkey test", "[nvs][monkey]")
|
|||||||
SpiFlashEmulator emu(10);
|
SpiFlashEmulator emu(10);
|
||||||
emu.randomize(seed);
|
emu.randomize(seed);
|
||||||
emu.clearStats();
|
emu.clearStats();
|
||||||
|
|
||||||
const uint32_t NVS_FLASH_SECTOR = 2;
|
const uint32_t NVS_FLASH_SECTOR = 2;
|
||||||
const uint32_t NVS_FLASH_SECTOR_COUNT_MIN = 8;
|
const uint32_t NVS_FLASH_SECTOR_COUNT_MIN = 8;
|
||||||
emu.setBounds(NVS_FLASH_SECTOR, NVS_FLASH_SECTOR + NVS_FLASH_SECTOR_COUNT_MIN);
|
emu.setBounds(NVS_FLASH_SECTOR, NVS_FLASH_SECTOR + NVS_FLASH_SECTOR_COUNT_MIN);
|
||||||
@ -1116,10 +1116,10 @@ TEST_CASE("test recovery from sudden poweroff", "[long][nvs][recovery][monkey]")
|
|||||||
const size_t iter_count = 2000;
|
const size_t iter_count = 2000;
|
||||||
|
|
||||||
SpiFlashEmulator emu(10);
|
SpiFlashEmulator emu(10);
|
||||||
|
|
||||||
const uint32_t NVS_FLASH_SECTOR = 2;
|
const uint32_t NVS_FLASH_SECTOR = 2;
|
||||||
const uint32_t NVS_FLASH_SECTOR_COUNT_MIN = 8;
|
const uint32_t NVS_FLASH_SECTOR_COUNT_MIN = 8;
|
||||||
|
|
||||||
emu.setBounds(NVS_FLASH_SECTOR, NVS_FLASH_SECTOR + NVS_FLASH_SECTOR_COUNT_MIN);
|
emu.setBounds(NVS_FLASH_SECTOR, NVS_FLASH_SECTOR + NVS_FLASH_SECTOR_COUNT_MIN);
|
||||||
|
|
||||||
size_t totalOps = 0;
|
size_t totalOps = 0;
|
||||||
@ -1788,7 +1788,7 @@ TEST_CASE("nvs code handles errors properly when partition is near to full", "[n
|
|||||||
SpiFlashEmulator emu(5);
|
SpiFlashEmulator emu(5);
|
||||||
Storage storage;
|
Storage storage;
|
||||||
char nvs_key[16] = "";
|
char nvs_key[16] = "";
|
||||||
|
|
||||||
TEST_ESP_OK(storage.init(0, 5));
|
TEST_ESP_OK(storage.init(0, 5));
|
||||||
|
|
||||||
/* Four pages should fit roughly 12 blobs*/
|
/* Four pages should fit roughly 12 blobs*/
|
||||||
@ -1796,7 +1796,7 @@ TEST_CASE("nvs code handles errors properly when partition is near to full", "[n
|
|||||||
sprintf(nvs_key, "key:%u", count);
|
sprintf(nvs_key, "key:%u", count);
|
||||||
TEST_ESP_OK(storage.writeItem(1, ItemType::BLOB, nvs_key, blob, sizeof(blob)));
|
TEST_ESP_OK(storage.writeItem(1, ItemType::BLOB, nvs_key, blob, sizeof(blob)));
|
||||||
}
|
}
|
||||||
|
|
||||||
for(uint8_t count = 13; count <= 20; count++) {
|
for(uint8_t count = 13; count <= 20; count++) {
|
||||||
sprintf(nvs_key, "key:%u", count);
|
sprintf(nvs_key, "key:%u", count);
|
||||||
TEST_ESP_ERR(storage.writeItem(1, ItemType::BLOB, nvs_key, blob, sizeof(blob)), ESP_ERR_NVS_NOT_ENOUGH_SPACE);
|
TEST_ESP_ERR(storage.writeItem(1, ItemType::BLOB, nvs_key, blob, sizeof(blob)), ESP_ERR_NVS_NOT_ENOUGH_SPACE);
|
||||||
@ -1823,7 +1823,7 @@ TEST_CASE("Check that NVS supports old blob format without blob index", "[nvs]")
|
|||||||
|
|
||||||
TEST_ESP_OK( nvs_flash_init_custom("test", 0, 2) );
|
TEST_ESP_OK( nvs_flash_init_custom("test", 0, 2) );
|
||||||
TEST_ESP_OK( nvs_open_from_partition("test", "dummyNamespace", NVS_READONLY, &handle));
|
TEST_ESP_OK( nvs_open_from_partition("test", "dummyNamespace", NVS_READONLY, &handle));
|
||||||
|
|
||||||
char buf[64] = {0};
|
char buf[64] = {0};
|
||||||
size_t buflen = 64;
|
size_t buflen = 64;
|
||||||
uint8_t hexdata[] = {0x01, 0x02, 0x03, 0xab, 0xcd, 0xef};
|
uint8_t hexdata[] = {0x01, 0x02, 0x03, 0xab, 0xcd, 0xef};
|
||||||
@ -1855,7 +1855,7 @@ TEST_CASE("Check that NVS supports old blob format without blob index", "[nvs]")
|
|||||||
TEST_ESP_OK(p2.findItem(1, ItemType::BLOB_IDX, "dummyHex2BinKey"));
|
TEST_ESP_OK(p2.findItem(1, ItemType::BLOB_IDX, "dummyHex2BinKey"));
|
||||||
|
|
||||||
/* Read the blob in new format and check the contents*/
|
/* Read the blob in new format and check the contents*/
|
||||||
buflen = 64;
|
buflen = 64;
|
||||||
TEST_ESP_OK( nvs_get_blob(handle, "dummyBase64Key", buf, &buflen));
|
TEST_ESP_OK( nvs_get_blob(handle, "dummyBase64Key", buf, &buflen));
|
||||||
CHECK(memcmp(buf, base64data, buflen) == 0);
|
CHECK(memcmp(buf, base64data, buflen) == 0);
|
||||||
|
|
||||||
@ -1867,29 +1867,29 @@ TEST_CASE("monkey test with old-format blob present", "[nvs][monkey]")
|
|||||||
std::mt19937 gen(rd());
|
std::mt19937 gen(rd());
|
||||||
uint32_t seed = 3;
|
uint32_t seed = 3;
|
||||||
gen.seed(seed);
|
gen.seed(seed);
|
||||||
|
|
||||||
SpiFlashEmulator emu(10);
|
SpiFlashEmulator emu(10);
|
||||||
emu.randomize(seed);
|
emu.randomize(seed);
|
||||||
emu.clearStats();
|
emu.clearStats();
|
||||||
|
|
||||||
const uint32_t NVS_FLASH_SECTOR = 2;
|
const uint32_t NVS_FLASH_SECTOR = 2;
|
||||||
const uint32_t NVS_FLASH_SECTOR_COUNT_MIN = 8;
|
const uint32_t NVS_FLASH_SECTOR_COUNT_MIN = 8;
|
||||||
static const size_t smallBlobLen = Page::CHUNK_MAX_SIZE / 3;
|
static const size_t smallBlobLen = Page::CHUNK_MAX_SIZE / 3;
|
||||||
|
|
||||||
emu.setBounds(NVS_FLASH_SECTOR, NVS_FLASH_SECTOR + NVS_FLASH_SECTOR_COUNT_MIN);
|
emu.setBounds(NVS_FLASH_SECTOR, NVS_FLASH_SECTOR + NVS_FLASH_SECTOR_COUNT_MIN);
|
||||||
|
|
||||||
TEST_ESP_OK(nvs_flash_init_custom(NVS_DEFAULT_PART_NAME, NVS_FLASH_SECTOR, NVS_FLASH_SECTOR_COUNT_MIN));
|
TEST_ESP_OK(nvs_flash_init_custom(NVS_DEFAULT_PART_NAME, NVS_FLASH_SECTOR, NVS_FLASH_SECTOR_COUNT_MIN));
|
||||||
|
|
||||||
nvs_handle handle;
|
nvs_handle handle;
|
||||||
TEST_ESP_OK(nvs_open("namespace1", NVS_READWRITE, &handle));
|
TEST_ESP_OK(nvs_open("namespace1", NVS_READWRITE, &handle));
|
||||||
RandomTest test;
|
RandomTest test;
|
||||||
|
|
||||||
for ( uint8_t it = 0; it < 10; it++) {
|
for ( uint8_t it = 0; it < 10; it++) {
|
||||||
size_t count = 200;
|
size_t count = 200;
|
||||||
|
|
||||||
/* Erase index and chunks for the blob with "singlepage" key */
|
/* Erase index and chunks for the blob with "singlepage" key */
|
||||||
for (uint8_t num = NVS_FLASH_SECTOR; num < NVS_FLASH_SECTOR + NVS_FLASH_SECTOR_COUNT_MIN; num++) {
|
for (uint8_t num = NVS_FLASH_SECTOR; num < NVS_FLASH_SECTOR + NVS_FLASH_SECTOR_COUNT_MIN; num++) {
|
||||||
Page p;
|
Page p;
|
||||||
p.load(num);
|
p.load(num);
|
||||||
p.eraseItem(1, ItemType::BLOB, "singlepage", Item::CHUNK_ANY, VerOffset::VER_ANY);
|
p.eraseItem(1, ItemType::BLOB, "singlepage", Item::CHUNK_ANY, VerOffset::VER_ANY);
|
||||||
p.eraseItem(1, ItemType::BLOB_IDX, "singlepage", Item::CHUNK_ANY, VerOffset::VER_ANY);
|
p.eraseItem(1, ItemType::BLOB_IDX, "singlepage", Item::CHUNK_ANY, VerOffset::VER_ANY);
|
||||||
@ -1898,7 +1898,7 @@ TEST_CASE("monkey test with old-format blob present", "[nvs][monkey]")
|
|||||||
|
|
||||||
/* Now write "singlepage" blob in old format*/
|
/* Now write "singlepage" blob in old format*/
|
||||||
for (uint8_t num = NVS_FLASH_SECTOR; num < NVS_FLASH_SECTOR + NVS_FLASH_SECTOR_COUNT_MIN; num++) {
|
for (uint8_t num = NVS_FLASH_SECTOR; num < NVS_FLASH_SECTOR + NVS_FLASH_SECTOR_COUNT_MIN; num++) {
|
||||||
Page p;
|
Page p;
|
||||||
p.load(num);
|
p.load(num);
|
||||||
if (p.state() == Page::PageState::ACTIVE) {
|
if (p.state() == Page::PageState::ACTIVE) {
|
||||||
uint8_t buf[smallBlobLen];
|
uint8_t buf[smallBlobLen];
|
||||||
@ -1907,7 +1907,7 @@ TEST_CASE("monkey test with old-format blob present", "[nvs][monkey]")
|
|||||||
if(blobLen > p.getVarDataTailroom()) {
|
if(blobLen > p.getVarDataTailroom()) {
|
||||||
blobLen = p.getVarDataTailroom();
|
blobLen = p.getVarDataTailroom();
|
||||||
}
|
}
|
||||||
|
|
||||||
std::generate_n(buf, blobLen, [&]() -> uint8_t {
|
std::generate_n(buf, blobLen, [&]() -> uint8_t {
|
||||||
return static_cast<uint8_t>(gen() % 256);
|
return static_cast<uint8_t>(gen() % 256);
|
||||||
});
|
});
|
||||||
@ -1915,14 +1915,14 @@ TEST_CASE("monkey test with old-format blob present", "[nvs][monkey]")
|
|||||||
TEST_ESP_OK(p.writeItem(1, ItemType::BLOB, "singlepage", buf, blobLen, Item::CHUNK_ANY));
|
TEST_ESP_OK(p.writeItem(1, ItemType::BLOB, "singlepage", buf, blobLen, Item::CHUNK_ANY));
|
||||||
TEST_ESP_OK(p.findItem(1, ItemType::BLOB, "singlepage"));
|
TEST_ESP_OK(p.findItem(1, ItemType::BLOB, "singlepage"));
|
||||||
test.handleExternalWriteAtIndex(9, buf, blobLen); // This assumes "singlepage" is always at index 9
|
test.handleExternalWriteAtIndex(9, buf, blobLen); // This assumes "singlepage" is always at index 9
|
||||||
|
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
/* Initialize again */
|
/* Initialize again */
|
||||||
TEST_ESP_OK(nvs_flash_init_custom(NVS_DEFAULT_PART_NAME, NVS_FLASH_SECTOR, NVS_FLASH_SECTOR_COUNT_MIN));
|
TEST_ESP_OK(nvs_flash_init_custom(NVS_DEFAULT_PART_NAME, NVS_FLASH_SECTOR, NVS_FLASH_SECTOR_COUNT_MIN));
|
||||||
TEST_ESP_OK(nvs_open("namespace1", NVS_READWRITE, &handle));
|
TEST_ESP_OK(nvs_open("namespace1", NVS_READWRITE, &handle));
|
||||||
|
|
||||||
/* Perform random things */
|
/* Perform random things */
|
||||||
auto res = test.doRandomThings(handle, gen, count);
|
auto res = test.doRandomThings(handle, gen, count);
|
||||||
if (res != ESP_OK) {
|
if (res != ESP_OK) {
|
||||||
@ -1935,7 +1935,7 @@ TEST_CASE("monkey test with old-format blob present", "[nvs][monkey]")
|
|||||||
bool oldVerPresent = false, newVerPresent = false;
|
bool oldVerPresent = false, newVerPresent = false;
|
||||||
|
|
||||||
for (uint8_t num = NVS_FLASH_SECTOR; num < NVS_FLASH_SECTOR + NVS_FLASH_SECTOR_COUNT_MIN; num++) {
|
for (uint8_t num = NVS_FLASH_SECTOR; num < NVS_FLASH_SECTOR + NVS_FLASH_SECTOR_COUNT_MIN; num++) {
|
||||||
Page p;
|
Page p;
|
||||||
p.load(num);
|
p.load(num);
|
||||||
if(!oldVerPresent && p.findItem(1, ItemType::BLOB, "singlepage", Item::CHUNK_ANY, VerOffset::VER_ANY) == ESP_OK) {
|
if(!oldVerPresent && p.findItem(1, ItemType::BLOB, "singlepage", Item::CHUNK_ANY, VerOffset::VER_ANY) == ESP_OK) {
|
||||||
oldVerPresent = true;
|
oldVerPresent = true;
|
||||||
@ -1947,7 +1947,7 @@ TEST_CASE("monkey test with old-format blob present", "[nvs][monkey]")
|
|||||||
}
|
}
|
||||||
CHECK(oldVerPresent != newVerPresent);
|
CHECK(oldVerPresent != newVerPresent);
|
||||||
}
|
}
|
||||||
|
|
||||||
s_perf << "Monkey test: nErase=" << emu.getEraseOps() << " nWrite=" << emu.getWriteOps() << std::endl;
|
s_perf << "Monkey test: nErase=" << emu.getEraseOps() << " nWrite=" << emu.getWriteOps() << std::endl;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -1957,23 +1957,23 @@ TEST_CASE("Recovery from power-off during modification of blob present in old-fo
|
|||||||
std::mt19937 gen(rd());
|
std::mt19937 gen(rd());
|
||||||
uint32_t seed = 3;
|
uint32_t seed = 3;
|
||||||
gen.seed(seed);
|
gen.seed(seed);
|
||||||
|
|
||||||
SpiFlashEmulator emu(3);
|
SpiFlashEmulator emu(3);
|
||||||
emu.clearStats();
|
emu.clearStats();
|
||||||
|
|
||||||
TEST_ESP_OK(nvs_flash_init_custom(NVS_DEFAULT_PART_NAME, 0, 3));
|
TEST_ESP_OK(nvs_flash_init_custom(NVS_DEFAULT_PART_NAME, 0, 3));
|
||||||
|
|
||||||
nvs_handle handle;
|
nvs_handle handle;
|
||||||
TEST_ESP_OK(nvs_open("namespace1", NVS_READWRITE, &handle));
|
TEST_ESP_OK(nvs_open("namespace1", NVS_READWRITE, &handle));
|
||||||
|
|
||||||
uint8_t hexdata[] = {0x01, 0x02, 0x03, 0xab, 0xcd, 0xef};
|
uint8_t hexdata[] = {0x01, 0x02, 0x03, 0xab, 0xcd, 0xef};
|
||||||
uint8_t hexdata_old[] = {0x11, 0x12, 0x13, 0xbb, 0xcc, 0xee};
|
uint8_t hexdata_old[] = {0x11, 0x12, 0x13, 0xbb, 0xcc, 0xee};
|
||||||
size_t buflen = sizeof(hexdata);
|
size_t buflen = sizeof(hexdata);
|
||||||
uint8_t buf[Page::CHUNK_MAX_SIZE];
|
uint8_t buf[Page::CHUNK_MAX_SIZE];
|
||||||
|
|
||||||
/* Power-off when blob was being written on the same page where its old version in old format
|
/* Power-off when blob was being written on the same page where its old version in old format
|
||||||
* was present*/
|
* was present*/
|
||||||
Page p;
|
Page p;
|
||||||
p.load(0);
|
p.load(0);
|
||||||
/* Write blob in old-format*/
|
/* Write blob in old-format*/
|
||||||
TEST_ESP_OK(p.writeItem(1, ItemType::BLOB, "singlepage", hexdata_old, sizeof(hexdata_old)));
|
TEST_ESP_OK(p.writeItem(1, ItemType::BLOB, "singlepage", hexdata_old, sizeof(hexdata_old)));
|
||||||
@ -1997,7 +1997,7 @@ TEST_CASE("Recovery from power-off during modification of blob present in old-fo
|
|||||||
TEST_ESP_OK( nvs_get_blob(handle, "singlepage", buf, &buflen));
|
TEST_ESP_OK( nvs_get_blob(handle, "singlepage", buf, &buflen));
|
||||||
CHECK(memcmp(buf, hexdata, buflen) == 0);
|
CHECK(memcmp(buf, hexdata, buflen) == 0);
|
||||||
|
|
||||||
Page p2;
|
Page p2;
|
||||||
p2.load(0);
|
p2.load(0);
|
||||||
TEST_ESP_ERR(p2.findItem(1, ItemType::BLOB, "singlepage"), ESP_ERR_NVS_TYPE_MISMATCH);
|
TEST_ESP_ERR(p2.findItem(1, ItemType::BLOB, "singlepage"), ESP_ERR_NVS_TYPE_MISMATCH);
|
||||||
|
|
||||||
@ -2009,7 +2009,7 @@ TEST_CASE("Recovery from power-off during modification of blob present in old-fo
|
|||||||
std::mt19937 gen(rd());
|
std::mt19937 gen(rd());
|
||||||
uint32_t seed = 3;
|
uint32_t seed = 3;
|
||||||
gen.seed(seed);
|
gen.seed(seed);
|
||||||
|
|
||||||
SpiFlashEmulator emu(3);
|
SpiFlashEmulator emu(3);
|
||||||
emu.clearStats();
|
emu.clearStats();
|
||||||
|
|
||||||
@ -2020,13 +2020,13 @@ TEST_CASE("Recovery from power-off during modification of blob present in old-fo
|
|||||||
|
|
||||||
uint8_t hexdata[] = {0x01, 0x02, 0x03, 0xab, 0xcd, 0xef};
|
uint8_t hexdata[] = {0x01, 0x02, 0x03, 0xab, 0xcd, 0xef};
|
||||||
uint8_t hexdata_old[] = {0x11, 0x12, 0x13, 0xbb, 0xcc, 0xee};
|
uint8_t hexdata_old[] = {0x11, 0x12, 0x13, 0xbb, 0xcc, 0xee};
|
||||||
size_t buflen = sizeof(hexdata);
|
size_t buflen = sizeof(hexdata);
|
||||||
uint8_t buf[Page::CHUNK_MAX_SIZE];
|
uint8_t buf[Page::CHUNK_MAX_SIZE];
|
||||||
|
|
||||||
|
|
||||||
/* Power-off when blob was being written on the different page where its old version in old format
|
/* Power-off when blob was being written on the different page where its old version in old format
|
||||||
* was present*/
|
* was present*/
|
||||||
Page p;
|
Page p;
|
||||||
p.load(0);
|
p.load(0);
|
||||||
/* Write blob in old-format*/
|
/* Write blob in old-format*/
|
||||||
TEST_ESP_OK(p.writeItem(1, ItemType::BLOB, "singlepage", hexdata_old, sizeof(hexdata_old)));
|
TEST_ESP_OK(p.writeItem(1, ItemType::BLOB, "singlepage", hexdata_old, sizeof(hexdata_old)));
|
||||||
@ -2039,7 +2039,7 @@ TEST_CASE("Recovery from power-off during modification of blob present in old-fo
|
|||||||
item.blobIndex.chunkCount = 1;
|
item.blobIndex.chunkCount = 1;
|
||||||
item.blobIndex.chunkStart = VerOffset::VER_0_OFFSET;
|
item.blobIndex.chunkStart = VerOffset::VER_0_OFFSET;
|
||||||
p.markFull();
|
p.markFull();
|
||||||
Page p2;
|
Page p2;
|
||||||
p2.load(1);
|
p2.load(1);
|
||||||
p2.setSeqNumber(1);
|
p2.setSeqNumber(1);
|
||||||
|
|
||||||
@ -2054,7 +2054,7 @@ TEST_CASE("Recovery from power-off during modification of blob present in old-fo
|
|||||||
TEST_ESP_OK( nvs_get_blob(handle, "singlepage", buf, &buflen));
|
TEST_ESP_OK( nvs_get_blob(handle, "singlepage", buf, &buflen));
|
||||||
CHECK(memcmp(buf, hexdata, buflen) == 0);
|
CHECK(memcmp(buf, hexdata, buflen) == 0);
|
||||||
|
|
||||||
Page p3;
|
Page p3;
|
||||||
p3.load(0);
|
p3.load(0);
|
||||||
TEST_ESP_ERR(p3.findItem(1, ItemType::BLOB, "singlepage"), ESP_ERR_NVS_NOT_FOUND);
|
TEST_ESP_ERR(p3.findItem(1, ItemType::BLOB, "singlepage"), ESP_ERR_NVS_NOT_FOUND);
|
||||||
}
|
}
|
||||||
@ -2062,12 +2062,12 @@ TEST_CASE("Recovery from power-off during modification of blob present in old-fo
|
|||||||
static void check_nvs_part_gen_args(char const *part_name, int size, char const *filename, bool is_encr, nvs_sec_cfg_t* xts_cfg)
|
static void check_nvs_part_gen_args(char const *part_name, int size, char const *filename, bool is_encr, nvs_sec_cfg_t* xts_cfg)
|
||||||
{
|
{
|
||||||
nvs_handle handle;
|
nvs_handle handle;
|
||||||
|
|
||||||
if (is_encr)
|
if (is_encr)
|
||||||
TEST_ESP_OK(nvs_flash_secure_init_custom(part_name, 0, size, xts_cfg));
|
TEST_ESP_OK(nvs_flash_secure_init_custom(part_name, 0, size, xts_cfg));
|
||||||
else
|
else
|
||||||
TEST_ESP_OK( nvs_flash_init_custom(part_name, 0, size) );
|
TEST_ESP_OK( nvs_flash_init_custom(part_name, 0, size) );
|
||||||
|
|
||||||
TEST_ESP_OK( nvs_open_from_partition(part_name, "dummyNamespace", NVS_READONLY, &handle));
|
TEST_ESP_OK( nvs_open_from_partition(part_name, "dummyNamespace", NVS_READONLY, &handle));
|
||||||
uint8_t u8v;
|
uint8_t u8v;
|
||||||
TEST_ESP_OK( nvs_get_u8(handle, "dummyU8Key", &u8v));
|
TEST_ESP_OK( nvs_get_u8(handle, "dummyU8Key", &u8v));
|
||||||
@ -2095,7 +2095,7 @@ static void check_nvs_part_gen_args(char const *part_name, int size, char const
|
|||||||
int j;
|
int j;
|
||||||
TEST_ESP_OK( nvs_get_blob(handle, "dummyHex2BinKey", buf, &buflen));
|
TEST_ESP_OK( nvs_get_blob(handle, "dummyHex2BinKey", buf, &buflen));
|
||||||
CHECK(memcmp(buf, hexdata, buflen) == 0);
|
CHECK(memcmp(buf, hexdata, buflen) == 0);
|
||||||
|
|
||||||
uint8_t base64data[] = {'1', '2', '3', 'a', 'b', 'c'};
|
uint8_t base64data[] = {'1', '2', '3', 'a', 'b', 'c'};
|
||||||
TEST_ESP_OK( nvs_get_blob(handle, "dummyBase64Key", buf, &buflen));
|
TEST_ESP_OK( nvs_get_blob(handle, "dummyBase64Key", buf, &buflen));
|
||||||
CHECK(memcmp(buf, base64data, buflen) == 0);
|
CHECK(memcmp(buf, base64data, buflen) == 0);
|
||||||
@ -2120,65 +2120,112 @@ static void check_nvs_part_gen_args(char const *part_name, int size, char const
|
|||||||
CHECK(memcmp(bin_data, binfiledata, bin_len) == 0);
|
CHECK(memcmp(bin_data, binfiledata, bin_len) == 0);
|
||||||
|
|
||||||
file.close();
|
file.close();
|
||||||
|
|
||||||
nvs_close(handle);
|
nvs_close(handle);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
TEST_CASE("check and read data from partition generated via partition generation utility with multipage blob support disabled", "[nvs_part_gen]")
|
TEST_CASE("check and read data from partition generated via partition generation utility with multipage blob support disabled", "[nvs_part_gen]")
|
||||||
{
|
{
|
||||||
|
int status;
|
||||||
int childpid = fork();
|
int childpid = fork();
|
||||||
if (childpid == 0) {
|
if (childpid == 0) {
|
||||||
exit(execlp("python", "python",
|
exit(execlp("cp", " cp",
|
||||||
"../nvs_partition_generator/nvs_partition_gen.py",
|
"-rf",
|
||||||
"--input",
|
"../nvs_partition_generator/testdata",
|
||||||
"../nvs_partition_generator/sample_singlepage_blob.csv",
|
".",NULL));
|
||||||
"--output",
|
|
||||||
"../nvs_partition_generator/partition_single_page.bin",
|
|
||||||
"--size",
|
|
||||||
"0x3000",
|
|
||||||
"--version",
|
|
||||||
"v1",NULL));
|
|
||||||
} else {
|
} else {
|
||||||
CHECK(childpid > 0);
|
CHECK(childpid > 0);
|
||||||
int status;
|
|
||||||
waitpid(childpid, &status, 0);
|
waitpid(childpid, &status, 0);
|
||||||
CHECK(WEXITSTATUS(status) != -1);
|
CHECK(WEXITSTATUS(status) != -1);
|
||||||
|
|
||||||
|
childpid = fork();
|
||||||
|
|
||||||
|
if (childpid == 0) {
|
||||||
|
exit(execlp("python", "python",
|
||||||
|
"../nvs_partition_generator/nvs_partition_gen.py",
|
||||||
|
"--input",
|
||||||
|
"../nvs_partition_generator/sample_singlepage_blob.csv",
|
||||||
|
"--output",
|
||||||
|
"../nvs_partition_generator/partition_single_page.bin",
|
||||||
|
"--size",
|
||||||
|
"0x3000",
|
||||||
|
"--version",
|
||||||
|
"v1",NULL));
|
||||||
|
} else {
|
||||||
|
CHECK(childpid > 0);
|
||||||
|
int status;
|
||||||
|
waitpid(childpid, &status, 0);
|
||||||
|
CHECK(WEXITSTATUS(status) != -1);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
SpiFlashEmulator emu("../nvs_partition_generator/partition_single_page.bin");
|
SpiFlashEmulator emu("../nvs_partition_generator/partition_single_page.bin");
|
||||||
|
|
||||||
TEST_ESP_OK(nvs_flash_deinit());
|
|
||||||
|
|
||||||
check_nvs_part_gen_args("test", 3, "../nvs_partition_generator/testdata/sample_singlepage_blob.bin", false, NULL);
|
|
||||||
}
|
|
||||||
|
|
||||||
|
TEST_ESP_OK(nvs_flash_deinit());
|
||||||
|
|
||||||
|
check_nvs_part_gen_args("test", 3, "../nvs_partition_generator/testdata/sample_singlepage_blob.bin", false, NULL);
|
||||||
|
|
||||||
|
if (childpid == 0) {
|
||||||
|
exit(execlp("rm", " rm",
|
||||||
|
"-rf",
|
||||||
|
"testdata",NULL));
|
||||||
|
} else {
|
||||||
|
CHECK(childpid > 0);
|
||||||
|
waitpid(childpid, &status, 0);
|
||||||
|
CHECK(WEXITSTATUS(status) != -1);
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
TEST_CASE("check and read data from partition generated via partition generation utility with multipage blob support enabled", "[nvs_part_gen]")
|
TEST_CASE("check and read data from partition generated via partition generation utility with multipage blob support enabled", "[nvs_part_gen]")
|
||||||
{
|
{
|
||||||
|
int status;
|
||||||
int childpid = fork();
|
int childpid = fork();
|
||||||
if (childpid == 0) {
|
if (childpid == 0) {
|
||||||
exit(execlp("python", "python",
|
exit(execlp("cp", " cp",
|
||||||
"../nvs_partition_generator/nvs_partition_gen.py",
|
"-rf",
|
||||||
"--input",
|
"../nvs_partition_generator/testdata",
|
||||||
"../nvs_partition_generator/sample_multipage_blob.csv",
|
".",NULL));
|
||||||
"--output",
|
|
||||||
"../nvs_partition_generator/partition_multipage_blob.bin",
|
|
||||||
"--size",
|
|
||||||
"0x4000",
|
|
||||||
"--version",
|
|
||||||
"v2",NULL));
|
|
||||||
} else {
|
} else {
|
||||||
CHECK(childpid > 0);
|
CHECK(childpid > 0);
|
||||||
int status;
|
|
||||||
waitpid(childpid, &status, 0);
|
waitpid(childpid, &status, 0);
|
||||||
CHECK(WEXITSTATUS(status) != -1);
|
CHECK(WEXITSTATUS(status) != -1);
|
||||||
|
|
||||||
|
childpid = fork();
|
||||||
|
|
||||||
|
if (childpid == 0) {
|
||||||
|
exit(execlp("python", "python",
|
||||||
|
"../nvs_partition_generator/nvs_partition_gen.py",
|
||||||
|
"--input",
|
||||||
|
"../nvs_partition_generator/sample_multipage_blob.csv",
|
||||||
|
"--output",
|
||||||
|
"../nvs_partition_generator/partition_multipage_blob.bin",
|
||||||
|
"--size",
|
||||||
|
"0x4000",
|
||||||
|
"--version",
|
||||||
|
"v2",NULL));
|
||||||
|
} else {
|
||||||
|
CHECK(childpid > 0);
|
||||||
|
waitpid(childpid, &status, 0);
|
||||||
|
CHECK(WEXITSTATUS(status) != -1);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
SpiFlashEmulator emu("../nvs_partition_generator/partition_multipage_blob.bin");
|
SpiFlashEmulator emu("../nvs_partition_generator/partition_multipage_blob.bin");
|
||||||
|
|
||||||
check_nvs_part_gen_args("test", 4, "../nvs_partition_generator/testdata/sample_multipage_blob.bin",false,NULL);
|
check_nvs_part_gen_args("test", 4, "../nvs_partition_generator/testdata/sample_multipage_blob.bin",false,NULL);
|
||||||
|
|
||||||
|
if (childpid == 0) {
|
||||||
|
exit(execlp("rm", " rm",
|
||||||
|
"-rf",
|
||||||
|
"testdata",NULL));
|
||||||
|
} else {
|
||||||
|
CHECK(childpid > 0);
|
||||||
|
waitpid(childpid, &status, 0);
|
||||||
|
CHECK(WEXITSTATUS(status) != -1);
|
||||||
|
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
#if CONFIG_NVS_ENCRYPTION
|
#if CONFIG_NVS_ENCRYPTION
|
||||||
@ -2322,29 +2369,42 @@ TEST_CASE("test nvs apis with encryption enabled", "[nvs]")
|
|||||||
|
|
||||||
TEST_CASE("test nvs apis for nvs partition generator utility with encryption enabled", "[nvs_part_gen]")
|
TEST_CASE("test nvs apis for nvs partition generator utility with encryption enabled", "[nvs_part_gen]")
|
||||||
{
|
{
|
||||||
|
int status;
|
||||||
int childpid = fork();
|
int childpid = fork();
|
||||||
if (childpid == 0) {
|
if (childpid == 0) {
|
||||||
exit(execlp("python", "python",
|
exit(execlp("cp", " cp",
|
||||||
"../nvs_partition_generator/nvs_partition_gen.py",
|
"-rf",
|
||||||
"--input",
|
"../nvs_partition_generator/testdata",
|
||||||
"../nvs_partition_generator/sample_multipage_blob.csv",
|
".",NULL));
|
||||||
"--output",
|
|
||||||
"../nvs_partition_generator/partition_encrypted.bin",
|
|
||||||
"--size",
|
|
||||||
"0x4000",
|
|
||||||
"--encrypt",
|
|
||||||
"True",
|
|
||||||
"--keyfile",
|
|
||||||
"../nvs_partition_generator/testdata/sample_encryption_keys.bin",NULL));
|
|
||||||
} else {
|
} else {
|
||||||
CHECK(childpid > 0);
|
CHECK(childpid > 0);
|
||||||
int status;
|
|
||||||
waitpid(childpid, &status, 0);
|
waitpid(childpid, &status, 0);
|
||||||
CHECK(WEXITSTATUS(status) != -1);
|
CHECK(WEXITSTATUS(status) != -1);
|
||||||
|
|
||||||
|
childpid = fork();
|
||||||
|
|
||||||
|
if (childpid == 0) {
|
||||||
|
exit(execlp("python", "python",
|
||||||
|
"../nvs_partition_generator/nvs_partition_gen.py",
|
||||||
|
"--input",
|
||||||
|
"../nvs_partition_generator/sample_multipage_blob.csv",
|
||||||
|
"--output",
|
||||||
|
"../nvs_partition_generator/partition_encrypted.bin",
|
||||||
|
"--size",
|
||||||
|
"0x4000",
|
||||||
|
"--encrypt",
|
||||||
|
"True",
|
||||||
|
"--keyfile",
|
||||||
|
"../nvs_partition_generator/testdata/sample_encryption_keys.bin",NULL));
|
||||||
|
} else {
|
||||||
|
CHECK(childpid > 0);
|
||||||
|
waitpid(childpid, &status, 0);
|
||||||
|
CHECK(WEXITSTATUS(status) != -1);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
SpiFlashEmulator emu("../nvs_partition_generator/partition_encrypted.bin");
|
SpiFlashEmulator emu("../nvs_partition_generator/partition_encrypted.bin");
|
||||||
|
|
||||||
nvs_sec_cfg_t cfg;
|
nvs_sec_cfg_t cfg;
|
||||||
for(int count = 0; count < NVS_KEY_SIZE; count++) {
|
for(int count = 0; count < NVS_KEY_SIZE; count++) {
|
||||||
cfg.eky[count] = 0x11;
|
cfg.eky[count] = 0x11;
|
||||||
@ -2352,7 +2412,19 @@ TEST_CASE("test nvs apis for nvs partition generator utility with encryption ena
|
|||||||
}
|
}
|
||||||
|
|
||||||
check_nvs_part_gen_args(NVS_DEFAULT_PART_NAME, 4, "../nvs_partition_generator/testdata/sample_multipage_blob.bin", true, &cfg);
|
check_nvs_part_gen_args(NVS_DEFAULT_PART_NAME, 4, "../nvs_partition_generator/testdata/sample_multipage_blob.bin", true, &cfg);
|
||||||
|
|
||||||
|
childpid = fork();
|
||||||
|
if (childpid == 0) {
|
||||||
|
exit(execlp("rm", " rm",
|
||||||
|
"-rf",
|
||||||
|
"testdata",NULL));
|
||||||
|
} else {
|
||||||
|
CHECK(childpid > 0);
|
||||||
|
waitpid(childpid, &status, 0);
|
||||||
|
CHECK(WEXITSTATUS(status) != -1);
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@ -2362,9 +2434,10 @@ TEST_CASE("test nvs apis for nvs partition generator utility with encryption ena
|
|||||||
int status;
|
int status;
|
||||||
|
|
||||||
if (childpid == 0) {
|
if (childpid == 0) {
|
||||||
exit(execlp("rm", " rm",
|
exit(execlp("cp", " cp",
|
||||||
"-rf",
|
"-rf",
|
||||||
"keys",NULL));
|
"../nvs_partition_generator/testdata",
|
||||||
|
".",NULL));
|
||||||
} else {
|
} else {
|
||||||
CHECK(childpid > 0);
|
CHECK(childpid > 0);
|
||||||
waitpid(childpid, &status, 0);
|
waitpid(childpid, &status, 0);
|
||||||
@ -2417,7 +2490,7 @@ TEST_CASE("test nvs apis for nvs partition generator utility with encryption ena
|
|||||||
|
|
||||||
std::string encr_file = std::string("keys/") + std::string(filename);
|
std::string encr_file = std::string("keys/") + std::string(filename);
|
||||||
SpiFlashEmulator emu("../nvs_partition_generator/partition_encrypted_using_keygen.bin");
|
SpiFlashEmulator emu("../nvs_partition_generator/partition_encrypted_using_keygen.bin");
|
||||||
|
|
||||||
char buffer[64];
|
char buffer[64];
|
||||||
FILE *fp;
|
FILE *fp;
|
||||||
|
|
||||||
@ -2516,6 +2589,17 @@ TEST_CASE("test nvs apis for nvs partition generator utility with encryption ena
|
|||||||
waitpid(childpid, &status, 0);
|
waitpid(childpid, &status, 0);
|
||||||
CHECK(WEXITSTATUS(status) != -1);
|
CHECK(WEXITSTATUS(status) != -1);
|
||||||
|
|
||||||
|
childpid = fork();
|
||||||
|
|
||||||
|
if (childpid == 0) {
|
||||||
|
exit(execlp("rm", " rm",
|
||||||
|
"-rf",
|
||||||
|
"testdata",NULL));
|
||||||
|
} else {
|
||||||
|
CHECK(childpid > 0);
|
||||||
|
waitpid(childpid, &status, 0);
|
||||||
|
CHECK(WEXITSTATUS(status) != -1);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user