fcb_getnext.c 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121
  1. /*
  2. * Copyright (c) 2017 Nordic Semiconductor ASA
  3. * Copyright (c) 2015 Runtime Inc
  4. *
  5. * SPDX-License-Identifier: Apache-2.0
  6. */
  7. #include <stddef.h>
  8. #include <fs/fcb.h>
  9. #include "fcb_priv.h"
  10. int
  11. fcb_getnext_in_sector(struct fcb *fcb, struct fcb_entry *loc)
  12. {
  13. int rc;
  14. rc = fcb_elem_info(fcb, loc);
  15. if (rc == 0 || rc == -EBADMSG) {
  16. do {
  17. loc->fe_elem_off = loc->fe_data_off +
  18. fcb_len_in_flash(fcb, loc->fe_data_len) +
  19. fcb_len_in_flash(fcb, FCB_CRC_SZ);
  20. rc = fcb_elem_info(fcb, loc);
  21. if (rc != -EBADMSG) {
  22. break;
  23. }
  24. } while (rc == -EBADMSG);
  25. }
  26. return rc;
  27. }
  28. struct flash_sector *
  29. fcb_getnext_sector(struct fcb *fcb, struct flash_sector *sector)
  30. {
  31. sector++;
  32. if (sector >= &fcb->f_sectors[fcb->f_sector_cnt]) {
  33. sector = &fcb->f_sectors[0];
  34. }
  35. return sector;
  36. }
  37. int
  38. fcb_getnext_nolock(struct fcb *fcb, struct fcb_entry *loc)
  39. {
  40. int rc;
  41. if (loc->fe_sector == NULL) {
  42. /*
  43. * Find the first one we have in flash.
  44. */
  45. loc->fe_sector = fcb->f_oldest;
  46. }
  47. if (loc->fe_elem_off == 0U) {
  48. /*
  49. * If offset is zero, we serve the first entry from the sector.
  50. */
  51. loc->fe_elem_off = sizeof(struct fcb_disk_area);
  52. rc = fcb_elem_info(fcb, loc);
  53. switch (rc) {
  54. case 0:
  55. return 0;
  56. case -EBADMSG:
  57. break;
  58. default:
  59. goto next_sector;
  60. }
  61. } else {
  62. rc = fcb_getnext_in_sector(fcb, loc);
  63. if (rc == 0) {
  64. return 0;
  65. }
  66. if (rc == -ENOTSUP) {
  67. goto next_sector;
  68. }
  69. }
  70. while (rc == -EBADMSG) {
  71. rc = fcb_getnext_in_sector(fcb, loc);
  72. if (rc == 0) {
  73. return 0;
  74. }
  75. if (rc != -EBADMSG) {
  76. /*
  77. * Moving to next sector.
  78. */
  79. next_sector:
  80. if (loc->fe_sector == fcb->f_active.fe_sector) {
  81. return -ENOTSUP;
  82. }
  83. loc->fe_sector = fcb_getnext_sector(fcb, loc->fe_sector);
  84. loc->fe_elem_off = sizeof(struct fcb_disk_area);
  85. rc = fcb_elem_info(fcb, loc);
  86. switch (rc) {
  87. case 0:
  88. return 0;
  89. case -EBADMSG:
  90. break;
  91. default:
  92. goto next_sector;
  93. }
  94. }
  95. }
  96. return 0;
  97. }
  98. int
  99. fcb_getnext(struct fcb *fcb, struct fcb_entry *loc)
  100. {
  101. int rc;
  102. rc = k_mutex_lock(&fcb->f_mtx, K_FOREVER);
  103. if (rc) {
  104. return -EINVAL;
  105. }
  106. rc = fcb_getnext_nolock(fcb, loc);
  107. k_mutex_unlock(&fcb->f_mtx);
  108. return rc;
  109. }