Loading...
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 | /* * Copyright (c) 2019 Nordic Semiconductor ASA * * SPDX-License-Identifier: Apache-2.0 */ /* * This test is designed to be run using flash-simulator which provide * functionality for flash property customization and emulating errors in * flash opperation in parallel to regular flash API. * Test should be run on qemu_x86 target. */ #ifndef CONFIG_BOARD_QEMU_X86 #error "Run on qemu_x86 only" #endif #include <stdio.h> #include <string.h> #include <ztest.h> #include <drivers/flash.h> #include <storage/flash_map.h> #include <stats/stats.h> #include <fs/nvs.h> #include "nvs_priv.h" #define TEST_FLASH_AREA_STORAGE_OFFSET DT_FLASH_AREA_STORAGE_OFFSET #define TEST_DATA_ID 1 #define TEST_SECTOR_COUNT 5U static struct nvs_fs fs; struct stats_hdr *sim_stats; struct stats_hdr *sim_thresholds; void setup(void) { sim_stats = stats_group_find("flash_sim_stats"); sim_thresholds = stats_group_find("flash_sim_thresholds"); /* Verify if NVS is initialized. */ if (fs.sector_count != 0) { int err; err = nvs_clear(&fs); zassert_true(err == 0, "nvs_clear call failure: %d", err); } } void teardown(void) { if (sim_stats) { stats_reset(sim_stats); } if (sim_thresholds) { stats_reset(sim_thresholds); } } void test_nvs_init(void) { int err; const struct flash_area *fa; struct flash_pages_info info; err = flash_area_open(DT_FLASH_AREA_STORAGE_ID, &fa); zassert_true(err == 0, "flash_area_open() fail: %d", err); fs.offset = TEST_FLASH_AREA_STORAGE_OFFSET; err = flash_get_page_info_by_offs(flash_area_get_device(fa), fs.offset, &info); zassert_true(err == 0, "Unable to get page info: %d", err); fs.sector_size = info.size; fs.sector_count = TEST_SECTOR_COUNT; err = nvs_init(&fs, DT_FLASH_DEV_NAME); zassert_true(err == 0, "nvs_init call failure: %d", err); } static void execute_long_pattern_write(u16_t id) { char rd_buf[512]; char wr_buf[512]; char pattern[] = {0xDE, 0xAD, 0xBE, 0xEF}; size_t len; len = nvs_read(&fs, id, rd_buf, sizeof(rd_buf)); zassert_true(len == -ENOENT, "nvs_read unexpected failure: %d", len); BUILD_ASSERT((sizeof(wr_buf) % sizeof(pattern)) == 0); for (int i = 0; i < sizeof(wr_buf); i += sizeof(pattern)) { memcpy(wr_buf + i, pattern, sizeof(pattern)); } len = nvs_write(&fs, id, wr_buf, sizeof(wr_buf)); zassert_true(len == sizeof(wr_buf), "nvs_write failed: %d", len); len = nvs_read(&fs, id, rd_buf, sizeof(rd_buf)); zassert_true(len == sizeof(rd_buf), "nvs_read unexpected failure: %d", len); zassert_mem_equal(wr_buf, rd_buf, sizeof(rd_buf), "RD buff should be equal to the WR buff"); } void test_nvs_write(void) { int err; err = nvs_init(&fs, DT_FLASH_DEV_NAME); zassert_true(err == 0, "nvs_init call failure: %d", err); execute_long_pattern_write(TEST_DATA_ID); } static int flash_sim_write_calls_find(struct stats_hdr *hdr, void *arg, const char *name, uint16_t off) { if (!strcmp(name, "flash_write_calls")) { u32_t **flash_write_stat = (u32_t **) arg; *flash_write_stat = (u32_t *)((u8_t *)hdr + off); } return 0; } static int flash_sim_max_write_calls_find(struct stats_hdr *hdr, void *arg, const char *name, uint16_t off) { if (!strcmp(name, "max_write_calls")) { u32_t **max_write_calls = (u32_t **) arg; *max_write_calls = (u32_t *)((u8_t *)hdr + off); } return 0; } void test_nvs_corrupted_write(void) { int err; size_t len; char rd_buf[512]; char wr_buf_1[512]; char wr_buf_2[512]; char pattern_1[] = {0xDE, 0xAD, 0xBE, 0xEF}; char pattern_2[] = {0x03, 0xAA, 0x85, 0x6F}; u32_t *flash_write_stat; u32_t *flash_max_write_calls; err = nvs_init(&fs, DT_FLASH_DEV_NAME); zassert_true(err == 0, "nvs_init call failure: %d", err); err = nvs_read(&fs, TEST_DATA_ID, rd_buf, sizeof(rd_buf)); zassert_true(err == -ENOENT, "nvs_read unexpected failure: %d", err); BUILD_ASSERT((sizeof(wr_buf_1) % sizeof(pattern_1)) == 0); for (int i = 0; i < sizeof(wr_buf_1); i += sizeof(pattern_1)) { memcpy(wr_buf_1 + i, pattern_1, sizeof(pattern_1)); } len = nvs_write(&fs, TEST_DATA_ID, wr_buf_1, sizeof(wr_buf_1)); zassert_true(len == sizeof(wr_buf_1), "nvs_write failed: %d", len); len = nvs_read(&fs, TEST_DATA_ID, rd_buf, sizeof(rd_buf)); zassert_true(len == sizeof(rd_buf), "nvs_read unexpected failure: %d", len); zassert_mem_equal(wr_buf_1, rd_buf, sizeof(rd_buf), "RD buff should be equal to the first WR buff"); BUILD_ASSERT((sizeof(wr_buf_2) % sizeof(pattern_2)) == 0); for (int i = 0; i < sizeof(wr_buf_2); i += sizeof(pattern_2)) { memcpy(wr_buf_2 + i, pattern_2, sizeof(pattern_2)); } /* Set the maximum number of writes that the flash simulator can * execute. */ stats_walk(sim_thresholds, flash_sim_max_write_calls_find, &flash_max_write_calls); stats_walk(sim_stats, flash_sim_write_calls_find, &flash_write_stat); *flash_max_write_calls = *flash_write_stat - 1; *flash_write_stat = 0; /* Flash simulator will lose part of the data at the end of this write. * This should simulate power down during flash write. The written data * are corrupted at this point and should be discarded by the NVS. */ len = nvs_write(&fs, TEST_DATA_ID, wr_buf_2, sizeof(wr_buf_2)); zassert_true(len == sizeof(wr_buf_2), "nvs_write failed: %d", len); /* Reinitialize the NVS. */ memset(&fs, 0, sizeof(fs)); test_nvs_init(); len = nvs_read(&fs, TEST_DATA_ID, rd_buf, sizeof(rd_buf)); zassert_true(len == sizeof(rd_buf), "nvs_read unexpected failure: %d", len); zassert_true(memcmp(wr_buf_2, rd_buf, sizeof(rd_buf)) != 0, "RD buff should not be equal to the second WR buff because of " "corrupted write operation"); zassert_mem_equal(wr_buf_1, rd_buf, sizeof(rd_buf), "RD buff should be equal to the first WR buff because subsequent " "write operation has failed"); } void test_nvs_gc(void) { int err; int len; u8_t buf[32]; u8_t rd_buf[32]; const u16_t max_id = 10; /* 25th write will trigger GC. */ const u16_t max_writes = 26; fs.sector_count = 2; err = nvs_init(&fs, DT_FLASH_DEV_NAME); zassert_true(err == 0, "nvs_init call failure: %d", err); for (u16_t i = 0; i < max_writes; i++) { u8_t id = (i % max_id); u8_t id_data = id + max_id * (i / max_id); memset(buf, id_data, sizeof(buf)); len = nvs_write(&fs, id, buf, sizeof(buf)); zassert_true(len == sizeof(buf), "nvs_write failed: %d", len); } for (u16_t id = 0; id < max_id; id++) { len = nvs_read(&fs, id, rd_buf, sizeof(buf)); zassert_true(len == sizeof(rd_buf), "nvs_read unexpected failure: %d", len); for (u16_t i = 0; i < sizeof(rd_buf); i++) { rd_buf[i] = rd_buf[i] % max_id; buf[i] = id; } zassert_mem_equal(buf, rd_buf, sizeof(rd_buf), "RD buff should be equal to the WR buff"); } err = nvs_init(&fs, DT_FLASH_DEV_NAME); zassert_true(err == 0, "nvs_init call failure: %d", err); for (u16_t id = 0; id < max_id; id++) { len = nvs_read(&fs, id, rd_buf, sizeof(buf)); zassert_true(len == sizeof(rd_buf), "nvs_read unexpected failure: %d", len); for (u16_t i = 0; i < sizeof(rd_buf); i++) { rd_buf[i] = rd_buf[i] % max_id; buf[i] = id; } zassert_mem_equal(buf, rd_buf, sizeof(rd_buf), "RD buff should be equal to the WR buff"); } } static void write_content(u16_t max_id, u16_t begin, u16_t end, struct nvs_fs *fs) { u8_t buf[32]; ssize_t len; for (u16_t i = begin; i < end; i++) { u8_t id = (i % max_id); u8_t id_data = id + max_id * (i / max_id); memset(buf, id_data, sizeof(buf)); len = nvs_write(fs, id, buf, sizeof(buf)); zassert_true(len == sizeof(buf), "nvs_write failed: %d", len); } } static void check_content(u16_t max_id, struct nvs_fs *fs) { u8_t rd_buf[32]; u8_t buf[32]; ssize_t len; for (u16_t id = 0; id < max_id; id++) { len = nvs_read(fs, id, rd_buf, sizeof(buf)); zassert_true(len == sizeof(rd_buf), "nvs_read unexpected failure: %d", len); for (u16_t i = 0; i < ARRAY_SIZE(rd_buf); i++) { rd_buf[i] = rd_buf[i] % max_id; buf[i] = id; } zassert_mem_equal(buf, rd_buf, sizeof(rd_buf), "RD buff should be equal to the WR buff"); } } /** * Full round of GC over 3 sectors */ void test_nvs_gc_3sectors(void) { int err; const u16_t max_id = 10; /* 50th write will trigger 1st GC. */ const u16_t max_writes = 51; /* 75th write will trigger 2st GC. */ const u16_t max_writes_2 = 51 + 25; /* 100th write will trigger 3st GC. */ const u16_t max_writes_3 = 51 + 25 + 25; /* 125th write will trigger 4st GC. */ const u16_t max_writes_4 = 51 + 25 + 25 + 25; fs.sector_count = 3; err = nvs_init(&fs, DT_FLASH_DEV_NAME); zassert_true(err == 0, "nvs_init call failure: %d", err); zassert_equal(fs.ate_wra >> ADDR_SECT_SHIFT, 0, "unexpected write sector"); /* Trigger 1st GC */ write_content(max_id, 0, max_writes, &fs); /* sector sequence: empty,closed, write */ zassert_equal(fs.ate_wra >> ADDR_SECT_SHIFT, 2, "unexpected write sector"); check_content(max_id, &fs); err = nvs_init(&fs, DT_FLASH_DEV_NAME); zassert_true(err == 0, "nvs_init call failure: %d", err); zassert_equal(fs.ate_wra >> ADDR_SECT_SHIFT, 2, "unexpected write sector"); check_content(max_id, &fs); /* Trigger 2nd GC */ write_content(max_id, max_writes, max_writes_2, &fs); /* sector sequence: write, empty, closed */ zassert_equal(fs.ate_wra >> ADDR_SECT_SHIFT, 0, "unexpected write sector"); check_content(max_id, &fs); err = nvs_init(&fs, DT_FLASH_DEV_NAME); zassert_true(err == 0, "nvs_init call failure: %d", err); zassert_equal(fs.ate_wra >> ADDR_SECT_SHIFT, 0, "unexpected write sector"); check_content(max_id, &fs); /* Trigger 3rd GC */ write_content(max_id, max_writes_2, max_writes_3, &fs); /* sector sequence: closed, write, empty */ zassert_equal(fs.ate_wra >> ADDR_SECT_SHIFT, 1, "unexpected write sector"); check_content(max_id, &fs); err = nvs_init(&fs, DT_FLASH_DEV_NAME); zassert_true(err == 0, "nvs_init call failure: %d", err); zassert_equal(fs.ate_wra >> ADDR_SECT_SHIFT, 1, "unexpected write sector"); check_content(max_id, &fs); /* Trigger 4th GC */ write_content(max_id, max_writes_3, max_writes_4, &fs); /* sector sequence: empty,closed, write */ zassert_equal(fs.ate_wra >> ADDR_SECT_SHIFT, 2, "unexpected write sector"); check_content(max_id, &fs); err = nvs_init(&fs, DT_FLASH_DEV_NAME); zassert_true(err == 0, "nvs_init call failure: %d", err); zassert_equal(fs.ate_wra >> ADDR_SECT_SHIFT, 2, "unexpected write sector"); check_content(max_id, &fs); } static int flash_sim_erase_calls_find(struct stats_hdr *hdr, void *arg, const char *name, uint16_t off) { if (!strcmp(name, "flash_erase_calls")) { u32_t **flash_erase_stat = (u32_t **) arg; *flash_erase_stat = (u32_t *)((u8_t *)hdr + off); } return 0; } static int flash_sim_max_erase_calls_find(struct stats_hdr *hdr, void *arg, const char *name, uint16_t off) { if (!strcmp(name, "max_erase_calls")) { u32_t **max_erase_calls = (u32_t **) arg; *max_erase_calls = (u32_t *)((u8_t *)hdr + off); } return 0; } static int flash_sim_max_len_find(struct stats_hdr *hdr, void *arg, const char *name, uint16_t off) { if (!strcmp(name, "max_len")) { u32_t **max_len = (u32_t **) arg; *max_len = (u32_t *)((u8_t *)hdr + off); } return 0; } void test_nvs_corrupted_sector_close_operation(void) { int err; int len; u8_t buf[32]; u32_t *flash_write_stat; u32_t *flash_erase_stat; u32_t *flash_max_write_calls; u32_t *flash_max_erase_calls; u32_t *flash_max_len; const u16_t max_id = 10; /* 25th write will trigger GC. */ const u16_t max_writes = 26; /* Get the address of simulator parameters. */ stats_walk(sim_thresholds, flash_sim_max_write_calls_find, &flash_max_write_calls); stats_walk(sim_thresholds, flash_sim_max_erase_calls_find, &flash_max_erase_calls); stats_walk(sim_thresholds, flash_sim_max_len_find, &flash_max_len); stats_walk(sim_stats, flash_sim_write_calls_find, &flash_write_stat); stats_walk(sim_stats, flash_sim_erase_calls_find, &flash_erase_stat); err = nvs_init(&fs, DT_FLASH_DEV_NAME); zassert_true(err == 0, "nvs_init call failure: %d", err); for (u16_t i = 0; i < max_writes; i++) { u8_t id = (i % max_id); u8_t id_data = id + max_id * (i / max_id); memset(buf, id_data, sizeof(buf)); if (i == max_writes - 1) { /* Reset stats. */ *flash_write_stat = 0; *flash_erase_stat = 0; /* Block write calls and simulate power down during * sector closing operation, so only a part of a NVS * closing ate will be written. */ *flash_max_write_calls = 1; *flash_max_erase_calls = 1; *flash_max_len = 4; } len = nvs_write(&fs, id, buf, sizeof(buf)); zassert_true(len == sizeof(buf), "nvs_write failed: %d", len); } /* Make the flash simulator functional again. */ *flash_max_write_calls = 0; *flash_max_erase_calls = 0; *flash_max_len = 0; err = nvs_init(&fs, DT_FLASH_DEV_NAME); zassert_true(err == 0, "nvs_init call failure: %d", err); check_content(max_id, &fs); /* Ensure that the NVS is able to store new content. */ execute_long_pattern_write(max_id); } /** * @brief Test case when storage become full, so only deletion is possible. */ void test_nvs_full_sector(void) { int err; ssize_t len; u16_t filling_id = 0; u16_t i, data_read; fs.sector_count = 3; err = nvs_init(&fs, DT_FLASH_DEV_NAME); zassert_true(err == 0, "nvs_init call failure: %d", err); while (1) { len = nvs_write(&fs, filling_id, &filling_id, sizeof(filling_id)); if (len == -ENOSPC) { break; } zassert_true(len == sizeof(filling_id), "nvs_write failed: %d", len); filling_id++; } /* check whether can delete whatever from full storage */ err = nvs_delete(&fs, 1); zassert_true(err == 0, "nvs_delete call failure: %d", err); /* the last sector is full now, test re-initialization */ err = nvs_init(&fs, DT_FLASH_DEV_NAME); zassert_true(err == 0, "nvs_init call failure: %d", err); len = nvs_write(&fs, filling_id, &filling_id, sizeof(filling_id)); zassert_true(len == sizeof(filling_id), "nvs_write failed: %d", len); /* sanitycheck on NVS content */ for (i = 0; i <= filling_id; i++) { len = nvs_read(&fs, i, &data_read, sizeof(data_read)); if (i == 1) { zassert_true(len == -ENOENT, "nvs_read shouldn't found the entry: %d", len); } else { zassert_true(len == sizeof(data_read), "nvs_read failed: %d", i, len); zassert_equal(data_read, i, "read unexpected data: %d instead of %d", data_read, i); } } } void test_delete(void) { int err; ssize_t len; u16_t filling_id, data_read; u32_t ate_wra, data_wra; fs.sector_count = 3; err = nvs_init(&fs, DT_FLASH_DEV_NAME); zassert_true(err == 0, "nvs_init call failure: %d", err); for (filling_id = 0; filling_id < 10; filling_id++) { len = nvs_write(&fs, filling_id, &filling_id, sizeof(filling_id)); zassert_true(len == sizeof(filling_id), "nvs_write failed: %d", len); if (filling_id != 0) { continue; } /* delete the first entry while it is the most recent one */ err = nvs_delete(&fs, filling_id); zassert_true(err == 0, "nvs_delete call failure: %d", err); len = nvs_read(&fs, filling_id, &data_read, sizeof(data_read)); zassert_true(len == -ENOENT, "nvs_read shouldn't found the entry: %d", len); } /* delete existing entry */ err = nvs_delete(&fs, 1); zassert_true(err == 0, "nvs_delete call failure: %d", err); len = nvs_read(&fs, 1, &data_read, sizeof(data_read)); zassert_true(len == -ENOENT, "nvs_read shouldn't found the entry: %d", len); ate_wra = fs.ate_wra; data_wra = fs.data_wra; /* delete already deleted entry */ err = nvs_delete(&fs, 1); zassert_true(err == 0, "nvs_delete call failure: %d", err); zassert_true(ate_wra == fs.ate_wra && data_wra == fs.data_wra, "delete already deleted entry should not make" " any footprint in the storage"); /* delete nonexisting entry */ err = nvs_delete(&fs, filling_id); zassert_true(err == 0, "nvs_delete call failure: %d", err); zassert_true(ate_wra == fs.ate_wra && data_wra == fs.data_wra, "delete nonexistent entry should not make" " any footprint in the storage"); } void test_main(void) { ztest_test_suite(test_nvs, ztest_unit_test_setup_teardown(test_nvs_init, setup, teardown), ztest_unit_test_setup_teardown(test_nvs_write, setup, teardown), ztest_unit_test_setup_teardown( test_nvs_corrupted_write, setup, teardown), ztest_unit_test_setup_teardown( test_nvs_gc, setup, teardown), ztest_unit_test_setup_teardown( test_nvs_gc_3sectors, setup, teardown), ztest_unit_test_setup_teardown( test_nvs_corrupted_sector_close_operation, setup, teardown), ztest_unit_test_setup_teardown(test_nvs_full_sector, setup, teardown), ztest_unit_test_setup_teardown(test_delete, setup, teardown) ); ztest_run_test_suite(test_nvs); } |