fs.c 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938
  1. /*
  2. * Copyright (c) 2018 Intel Corporation.
  3. * Copyright (c) 2020 Peter Bigot Consulting, LLC
  4. * Copyright (c) 2020 Nordic Semiconductor ASA
  5. *
  6. * SPDX-License-Identifier: Apache-2.0
  7. */
  8. #include <stdio.h>
  9. #include <string.h>
  10. #include <zephyr/types.h>
  11. #include <errno.h>
  12. #include <init.h>
  13. #include <fs/fs.h>
  14. #include <fs/fs_sys.h>
  15. #include <sys/check.h>
  16. #include <sys/stat.h>
  17. #define LOG_LEVEL CONFIG_FS_LOG_LEVEL
  18. #include <logging/log.h>
  19. LOG_MODULE_REGISTER(fs);
  20. /* list of mounted file systems */
  21. static sys_dlist_t fs_mnt_list;
  22. /* lock to protect mount list operations */
  23. static struct k_mutex mutex;
  24. /* Maps an identifier used in mount points to the file system
  25. * implementation.
  26. */
  27. struct registry_entry {
  28. int type;
  29. const struct fs_file_system_t *fstp;
  30. };
  31. static struct registry_entry registry[CONFIG_FILE_SYSTEM_MAX_TYPES];
  32. static inline void registry_clear_entry(struct registry_entry *ep)
  33. {
  34. ep->fstp = NULL;
  35. }
  36. static int registry_add(int type,
  37. const struct fs_file_system_t *fstp)
  38. {
  39. int rv = -ENOSPC;
  40. for (size_t i = 0; i < ARRAY_SIZE(registry); ++i) {
  41. struct registry_entry *ep = &registry[i];
  42. if (ep->fstp == NULL) {
  43. ep->type = type;
  44. ep->fstp = fstp;
  45. rv = 0;
  46. break;
  47. }
  48. }
  49. return rv;
  50. }
  51. static struct registry_entry *registry_find(int type)
  52. {
  53. for (size_t i = 0; i < ARRAY_SIZE(registry); ++i) {
  54. struct registry_entry *ep = &registry[i];
  55. if ((ep->fstp != NULL) && (ep->type == type)) {
  56. return ep;
  57. }
  58. }
  59. return NULL;
  60. }
  61. static const struct fs_file_system_t *fs_type_get(int type)
  62. {
  63. struct registry_entry *ep = registry_find(type);
  64. return (ep != NULL) ? ep->fstp : NULL;
  65. }
  66. static int fs_get_mnt_point(struct fs_mount_t **mnt_pntp,
  67. const char *name, size_t *match_len)
  68. {
  69. struct fs_mount_t *mnt_p = NULL, *itr;
  70. size_t longest_match = 0;
  71. size_t len, name_len = strlen(name);
  72. sys_dnode_t *node;
  73. k_mutex_lock(&mutex, K_FOREVER);
  74. SYS_DLIST_FOR_EACH_NODE(&fs_mnt_list, node) {
  75. itr = CONTAINER_OF(node, struct fs_mount_t, node);
  76. len = itr->mountp_len;
  77. /*
  78. * Move to next node if mount point length is
  79. * shorter than longest_match match or if path
  80. * name is shorter than the mount point name.
  81. */
  82. if ((len < longest_match) || (len > name_len)) {
  83. continue;
  84. }
  85. /*
  86. * Move to next node if name does not have a directory
  87. * separator where mount point name ends.
  88. */
  89. if ((len > 1) && (name[len] != '/') && (name[len] != '\0')) {
  90. continue;
  91. }
  92. /* Check for mount point match */
  93. if (strncmp(name, itr->mnt_point, len) == 0) {
  94. mnt_p = itr;
  95. longest_match = len;
  96. }
  97. }
  98. k_mutex_unlock(&mutex);
  99. if (mnt_p == NULL) {
  100. return -ENOENT;
  101. }
  102. *mnt_pntp = mnt_p;
  103. if (match_len)
  104. *match_len = mnt_p->mountp_len;
  105. return 0;
  106. }
  107. /* File operations */
  108. int fs_open(struct fs_file_t *zfp, const char *file_name, fs_mode_t flags)
  109. {
  110. struct fs_mount_t *mp;
  111. int rc = -EINVAL;
  112. /* COpy flags to zfp for use with other fs_ API calls */
  113. zfp->flags = flags;
  114. if ((file_name == NULL) ||
  115. (strlen(file_name) <= 1) || (file_name[0] != '/')) {
  116. LOG_ERR("invalid file name!!");
  117. return -EINVAL;
  118. }
  119. if (zfp->mp != NULL) {
  120. return -EBUSY;
  121. }
  122. rc = fs_get_mnt_point(&mp, file_name, NULL);
  123. if (rc < 0) {
  124. LOG_ERR("mount point not found!!");
  125. return rc;
  126. }
  127. if (((mp->flags & FS_MOUNT_FLAG_READ_ONLY) != 0) &&
  128. (flags & FS_O_CREATE || flags & FS_O_WRITE)) {
  129. return -EROFS;
  130. }
  131. CHECKIF(mp->fs->open == NULL) {
  132. return -ENOTSUP;
  133. }
  134. zfp->mp = mp;
  135. rc = mp->fs->open(zfp, file_name, flags);
  136. if (rc < 0) {
  137. LOG_ERR("file open error (%d)", rc);
  138. zfp->mp = NULL;
  139. return rc;
  140. }
  141. return rc;
  142. }
  143. int fs_open_cluster(struct fs_file_t *zfp, char *dir, uint32_t cluster, uint32_t blk_ofs)
  144. {
  145. struct fs_mount_t *mp;
  146. int rc = -EINVAL;
  147. if ((dir == NULL) ||
  148. (strlen(dir) <= 1) || (dir[0] != '/')) {
  149. LOG_ERR("invalid file name!!");
  150. return -EINVAL;
  151. }
  152. rc = fs_get_mnt_point(&mp, dir, NULL);
  153. if (rc < 0) {
  154. LOG_ERR("%s:mount point not found!!", __func__);
  155. return rc;
  156. }
  157. zfp->mp = mp;
  158. if (zfp->mp->fs->open_cluster != NULL) {
  159. rc = zfp->mp->fs->open_cluster(zfp, dir, cluster, blk_ofs);
  160. if (rc < 0) {
  161. LOG_ERR("file open error (%d)", rc);
  162. return rc;
  163. }
  164. }
  165. return rc;
  166. }
  167. int fs_close(struct fs_file_t *zfp)
  168. {
  169. int rc = -EINVAL;
  170. if (zfp->mp == NULL) {
  171. return 0;
  172. }
  173. CHECKIF(zfp->mp->fs->close == NULL) {
  174. return -ENOTSUP;
  175. }
  176. rc = zfp->mp->fs->close(zfp);
  177. if (rc < 0) {
  178. LOG_ERR("file close error (%d)", rc);
  179. return rc;
  180. }
  181. zfp->mp = NULL;
  182. return rc;
  183. }
  184. ssize_t fs_read(struct fs_file_t *zfp, void *ptr, size_t size)
  185. {
  186. int rc = -EINVAL;
  187. if (zfp->mp == NULL) {
  188. return -EBADF;
  189. }
  190. CHECKIF(zfp->mp->fs->read == NULL) {
  191. return -ENOTSUP;
  192. }
  193. rc = zfp->mp->fs->read(zfp, ptr, size);
  194. if (rc < 0) {
  195. LOG_ERR("file read error (%d)", rc);
  196. }
  197. return rc;
  198. }
  199. ssize_t fs_write(struct fs_file_t *zfp, const void *ptr, size_t size)
  200. {
  201. int rc = -EINVAL;
  202. if (zfp->mp == NULL) {
  203. return -EBADF;
  204. }
  205. CHECKIF(zfp->mp->fs->write == NULL) {
  206. return -ENOTSUP;
  207. }
  208. rc = zfp->mp->fs->write(zfp, ptr, size);
  209. if (rc < 0) {
  210. LOG_ERR("file write error (%d)", rc);
  211. }
  212. return rc;
  213. }
  214. int fs_seek(struct fs_file_t *zfp, off_t offset, int whence)
  215. {
  216. int rc = -ENOTSUP;
  217. if (zfp->mp == NULL) {
  218. return -EBADF;
  219. }
  220. CHECKIF(zfp->mp->fs->lseek == NULL) {
  221. return -ENOTSUP;
  222. }
  223. rc = zfp->mp->fs->lseek(zfp, offset, whence);
  224. if (rc < 0) {
  225. LOG_ERR("file seek error (%d)", rc);
  226. }
  227. return rc;
  228. }
  229. off_t fs_tell(struct fs_file_t *zfp)
  230. {
  231. int rc = -ENOTSUP;
  232. if (zfp->mp == NULL) {
  233. return -EBADF;
  234. }
  235. CHECKIF(zfp->mp->fs->tell == NULL) {
  236. return -ENOTSUP;
  237. }
  238. rc = zfp->mp->fs->tell(zfp);
  239. if (rc < 0) {
  240. LOG_ERR("file tell error (%d)", rc);
  241. }
  242. return rc;
  243. }
  244. int fs_truncate(struct fs_file_t *zfp, off_t length)
  245. {
  246. int rc = -EINVAL;
  247. if (zfp->mp == NULL) {
  248. return -EBADF;
  249. }
  250. CHECKIF(zfp->mp->fs->truncate == NULL) {
  251. return -ENOTSUP;
  252. }
  253. rc = zfp->mp->fs->truncate(zfp, length);
  254. if (rc < 0) {
  255. LOG_ERR("file truncate error (%d)", rc);
  256. }
  257. return rc;
  258. }
  259. int fs_sync(struct fs_file_t *zfp)
  260. {
  261. int rc = -EINVAL;
  262. if (zfp->mp == NULL) {
  263. return -EBADF;
  264. }
  265. CHECKIF(zfp->mp->fs->sync == NULL) {
  266. return -ENOTSUP;
  267. }
  268. rc = zfp->mp->fs->sync(zfp);
  269. if (rc < 0) {
  270. LOG_ERR("file sync error (%d)", rc);
  271. }
  272. return rc;
  273. }
  274. /* Directory operations */
  275. int fs_opendir(struct fs_dir_t *zdp, const char *abs_path)
  276. {
  277. struct fs_mount_t *mp;
  278. int rc = -EINVAL;
  279. if ((abs_path == NULL) ||
  280. (strlen(abs_path) < 1) || (abs_path[0] != '/')) {
  281. LOG_ERR("invalid file name!!");
  282. return -EINVAL;
  283. }
  284. if (zdp->mp != NULL || zdp->dirp != NULL) {
  285. return -EBUSY;
  286. }
  287. if (strcmp(abs_path, "/") == 0) {
  288. /* Open VFS root dir, marked by zdp->mp == NULL */
  289. k_mutex_lock(&mutex, K_FOREVER);
  290. zdp->mp = NULL;
  291. zdp->dirp = sys_dlist_peek_head(&fs_mnt_list);
  292. k_mutex_unlock(&mutex);
  293. return 0;
  294. }
  295. rc = fs_get_mnt_point(&mp, abs_path, NULL);
  296. if (rc < 0) {
  297. LOG_ERR("mount point not found!!");
  298. return rc;
  299. }
  300. CHECKIF(mp->fs->opendir == NULL) {
  301. return -ENOTSUP;
  302. }
  303. zdp->mp = mp;
  304. rc = zdp->mp->fs->opendir(zdp, abs_path);
  305. if (rc < 0) {
  306. zdp->mp = NULL;
  307. zdp->dirp = NULL;
  308. LOG_ERR("directory open error (%d)", rc);
  309. }
  310. return rc;
  311. }
  312. int fs_opendir_cluster(struct fs_dir_t *zdp, const char *path, unsigned int cluster, unsigned int blk_ofs)
  313. {
  314. struct fs_mount_t *mp;
  315. int rc = -EINVAL;
  316. if ((path == NULL) ||
  317. (strlen(path) < 1) || (path[0] != '/')) {
  318. LOG_ERR("invalid path!!");
  319. return -EINVAL;
  320. }
  321. if (strcmp(path, "/") == 0) {
  322. /* Open VFS root dir, marked by zdp->mp == NULL */
  323. k_mutex_lock(&mutex, K_FOREVER);
  324. zdp->mp = NULL;
  325. zdp->dirp = sys_dlist_peek_head(&fs_mnt_list);
  326. k_mutex_unlock(&mutex);
  327. return 0;
  328. }
  329. rc = fs_get_mnt_point(&mp, path, NULL);
  330. if (rc < 0) {
  331. LOG_ERR("%s:mount point not found!!", __func__);
  332. return rc;
  333. }
  334. zdp->mp = mp;
  335. if (zdp->mp->fs->opendir_cluster != NULL) {
  336. rc = zdp->mp->fs->opendir_cluster(zdp, path, cluster, blk_ofs);
  337. if (rc < 0) {
  338. LOG_ERR("opendir error (%d)", rc);
  339. }
  340. }
  341. return rc;
  342. }
  343. int fs_readdir(struct fs_dir_t *zdp, struct fs_dirent *entry)
  344. {
  345. if (zdp->mp) {
  346. /* Delegate to mounted filesystem */
  347. int rc = -EINVAL;
  348. CHECKIF(zdp->mp->fs->readdir == NULL) {
  349. return -ENOTSUP;
  350. }
  351. /* Loop until error or not special directory */
  352. while (true) {
  353. rc = zdp->mp->fs->readdir(zdp, entry);
  354. if (rc < 0) {
  355. break;
  356. }
  357. if (entry->name[0] == 0) {
  358. break;
  359. }
  360. if (entry->type != FS_DIR_ENTRY_DIR) {
  361. break;
  362. }
  363. if ((strcmp(entry->name, ".") != 0)
  364. && (strcmp(entry->name, "..") != 0)) {
  365. break;
  366. }
  367. }
  368. if (rc < 0) {
  369. LOG_ERR("directory read error (%d)", rc);
  370. }
  371. return rc;
  372. }
  373. /* VFS root dir */
  374. if (zdp->dirp == NULL) {
  375. /* No more entries */
  376. entry->name[0] = 0;
  377. return 0;
  378. }
  379. /* Find the current and next entries in the mount point dlist */
  380. sys_dnode_t *node, *next = NULL;
  381. bool found = false;
  382. k_mutex_lock(&mutex, K_FOREVER);
  383. SYS_DLIST_FOR_EACH_NODE(&fs_mnt_list, node) {
  384. if (node == zdp->dirp) {
  385. found = true;
  386. /* Pull info from current entry */
  387. struct fs_mount_t *mnt;
  388. mnt = CONTAINER_OF(node, struct fs_mount_t, node);
  389. entry->type = FS_DIR_ENTRY_DIR;
  390. strncpy(entry->name, mnt->mnt_point + 1,
  391. sizeof(entry->name) - 1);
  392. entry->name[sizeof(entry->name) - 1] = 0;
  393. entry->size = 0;
  394. /* Save pointer to the next one, for later */
  395. next = sys_dlist_peek_next(&fs_mnt_list, node);
  396. break;
  397. }
  398. }
  399. k_mutex_unlock(&mutex);
  400. if (!found) {
  401. /* Current entry must have been removed before this
  402. * call to readdir -- return an error
  403. */
  404. return -ENOENT;
  405. }
  406. zdp->dirp = next;
  407. return 0;
  408. }
  409. int fs_closedir(struct fs_dir_t *zdp)
  410. {
  411. int rc = -EINVAL;
  412. if (zdp->mp == NULL) {
  413. /* VFS root dir */
  414. zdp->dirp = NULL;
  415. return 0;
  416. }
  417. CHECKIF(zdp->mp->fs->closedir == NULL) {
  418. return -ENOTSUP;
  419. }
  420. rc = zdp->mp->fs->closedir(zdp);
  421. if (rc < 0) {
  422. LOG_ERR("directory close error (%d)", rc);
  423. return rc;
  424. }
  425. zdp->mp = NULL;
  426. zdp->dirp = NULL;
  427. return rc;
  428. }
  429. /* Filesystem operations */
  430. int fs_mkdir(const char *abs_path)
  431. {
  432. struct fs_mount_t *mp;
  433. int rc = -EINVAL;
  434. if ((abs_path == NULL) ||
  435. (strlen(abs_path) <= 1) || (abs_path[0] != '/')) {
  436. LOG_ERR("invalid file name!!");
  437. return -EINVAL;
  438. }
  439. rc = fs_get_mnt_point(&mp, abs_path, NULL);
  440. if (rc < 0) {
  441. LOG_ERR("mount point not found!!");
  442. return rc;
  443. }
  444. if (mp->flags & FS_MOUNT_FLAG_READ_ONLY) {
  445. return -EROFS;
  446. }
  447. CHECKIF(mp->fs->mkdir == NULL) {
  448. return -ENOTSUP;
  449. }
  450. rc = mp->fs->mkdir(mp, abs_path);
  451. if (rc < 0) {
  452. LOG_ERR("failed to create directory (%d)", rc);
  453. }
  454. return rc;
  455. }
  456. int fs_unlink(const char *abs_path)
  457. {
  458. struct fs_mount_t *mp;
  459. int rc = -EINVAL;
  460. if ((abs_path == NULL) ||
  461. (strlen(abs_path) <= 1) || (abs_path[0] != '/')) {
  462. LOG_ERR("invalid file name!!");
  463. return -EINVAL;
  464. }
  465. rc = fs_get_mnt_point(&mp, abs_path, NULL);
  466. if (rc < 0) {
  467. LOG_ERR("mount point not found!!");
  468. return rc;
  469. }
  470. if (mp->flags & FS_MOUNT_FLAG_READ_ONLY) {
  471. return -EROFS;
  472. }
  473. CHECKIF(mp->fs->unlink == NULL) {
  474. return -ENOTSUP;
  475. }
  476. rc = mp->fs->unlink(mp, abs_path);
  477. if (rc < 0) {
  478. LOG_ERR("failed to unlink path (%d)", rc);
  479. }
  480. return rc;
  481. }
  482. int fs_rename(const char *from, const char *to)
  483. {
  484. struct fs_mount_t *mp;
  485. size_t match_len;
  486. int rc = -EINVAL;
  487. if ((from == NULL) || (strlen(from) <= 1) || (from[0] != '/') ||
  488. (to == NULL) || (strlen(to) <= 1) || (to[0] != '/')) {
  489. LOG_ERR("invalid file name!!");
  490. return -EINVAL;
  491. }
  492. rc = fs_get_mnt_point(&mp, from, &match_len);
  493. if (rc < 0) {
  494. LOG_ERR("mount point not found!!");
  495. return rc;
  496. }
  497. if (mp->flags & FS_MOUNT_FLAG_READ_ONLY) {
  498. return -EROFS;
  499. }
  500. /* Make sure both files are mounted on the same path */
  501. if (strncmp(from, to, match_len) != 0) {
  502. LOG_ERR("mount point not same!!");
  503. return -EINVAL;
  504. }
  505. CHECKIF(mp->fs->rename == NULL) {
  506. return -ENOTSUP;
  507. }
  508. rc = mp->fs->rename(mp, from, to);
  509. if (rc < 0) {
  510. LOG_ERR("failed to rename file or dir (%d)", rc);
  511. }
  512. return rc;
  513. }
  514. int fs_stat(const char *abs_path, struct fs_dirent *entry)
  515. {
  516. struct fs_mount_t *mp;
  517. int rc = -EINVAL;
  518. if ((abs_path == NULL) ||
  519. (strlen(abs_path) <= 1) || (abs_path[0] != '/')) {
  520. LOG_ERR("invalid file name!!");
  521. return -EINVAL;
  522. }
  523. rc = fs_get_mnt_point(&mp, abs_path, NULL);
  524. if (rc < 0) {
  525. LOG_ERR("mount point not found!!");
  526. return rc;
  527. }
  528. CHECKIF(mp->fs->stat == NULL) {
  529. return -ENOTSUP;
  530. }
  531. rc = mp->fs->stat(mp, abs_path, entry);
  532. if (rc == -ENOENT) {
  533. /* File doesn't exist, which is a valid stat response */
  534. } else if (rc < 0) {
  535. LOG_ERR("failed get file or dir stat (%d)", rc);
  536. }
  537. return rc;
  538. }
  539. int fs_statvfs(const char *abs_path, struct fs_statvfs *stat)
  540. {
  541. struct fs_mount_t *mp;
  542. int rc;
  543. if ((abs_path == NULL) ||
  544. (strlen(abs_path) <= 1) || (abs_path[0] != '/')) {
  545. LOG_ERR("invalid file name!!");
  546. return -EINVAL;
  547. }
  548. rc = fs_get_mnt_point(&mp, abs_path, NULL);
  549. if (rc < 0) {
  550. LOG_ERR("mount point not found!!");
  551. return rc;
  552. }
  553. if (mp->fs->statvfs != NULL) {
  554. rc = mp->fs->statvfs(mp, abs_path, stat);
  555. if (rc < 0) {
  556. LOG_ERR("failed get file or dir stat (%d)", rc);
  557. }
  558. }
  559. return rc;
  560. }
  561. int fs_mount(struct fs_mount_t *mp)
  562. {
  563. struct fs_mount_t *itr;
  564. const struct fs_file_system_t *fs;
  565. sys_dnode_t *node;
  566. int rc = -EINVAL;
  567. size_t len = 0;
  568. /* Do all the mp checks prior to locking the mutex on the file
  569. * subsystem.
  570. */
  571. if ((mp == NULL) || (mp->mnt_point == NULL)) {
  572. LOG_ERR("mount point not initialized!!");
  573. return -EINVAL;
  574. }
  575. len = strlen(mp->mnt_point);
  576. if ((len <= 1) || (mp->mnt_point[0] != '/')) {
  577. LOG_ERR("invalid mount point!!");
  578. return -EINVAL;
  579. }
  580. k_mutex_lock(&mutex, K_FOREVER);
  581. /* Check if mount point already exists */
  582. SYS_DLIST_FOR_EACH_NODE(&fs_mnt_list, node) {
  583. itr = CONTAINER_OF(node, struct fs_mount_t, node);
  584. /* continue if length does not match */
  585. if (len != itr->mountp_len) {
  586. continue;
  587. }
  588. if (strncmp(mp->mnt_point, itr->mnt_point, len) == 0) {
  589. LOG_ERR("mount point already exists!!");
  590. rc = -EBUSY;
  591. goto mount_err;
  592. }
  593. }
  594. /* Get file system information */
  595. fs = fs_type_get(mp->type);
  596. if (fs == NULL) {
  597. LOG_ERR("requested file system type not registered!!");
  598. rc = -ENOENT;
  599. goto mount_err;
  600. }
  601. CHECKIF(fs->mount == NULL) {
  602. LOG_ERR("fs type %d does not support mounting", mp->type);
  603. rc = -ENOTSUP;
  604. goto mount_err;
  605. }
  606. if (fs->unmount == NULL) {
  607. LOG_WRN("mount path %s is not unmountable",
  608. log_strdup(mp->mnt_point));
  609. }
  610. rc = fs->mount(mp);
  611. if (rc < 0) {
  612. LOG_ERR("fs mount error (%d)", rc);
  613. goto mount_err;
  614. }
  615. /* Update mount point data and append it to the list */
  616. mp->mountp_len = len;
  617. mp->fs = fs;
  618. sys_dlist_append(&fs_mnt_list, &mp->node);
  619. LOG_DBG("fs mounted at %s", log_strdup(mp->mnt_point));
  620. mount_err:
  621. k_mutex_unlock(&mutex);
  622. return rc;
  623. }
  624. int fs_unmount(struct fs_mount_t *mp)
  625. {
  626. int rc = -EINVAL;
  627. if (mp == NULL) {
  628. return rc;
  629. }
  630. k_mutex_lock(&mutex, K_FOREVER);
  631. if (mp->fs == NULL) {
  632. LOG_ERR("fs not mounted (mp == %p)", mp);
  633. goto unmount_err;
  634. }
  635. CHECKIF(mp->fs->unmount == NULL) {
  636. LOG_ERR("fs unmount not supported!!");
  637. rc = -ENOTSUP;
  638. goto unmount_err;
  639. }
  640. rc = mp->fs->unmount(mp);
  641. if (rc < 0) {
  642. LOG_ERR("fs unmount error (%d)", rc);
  643. goto unmount_err;
  644. }
  645. /* clear file system interface */
  646. mp->fs = NULL;
  647. /* remove mount node from the list */
  648. sys_dlist_remove(&mp->node);
  649. LOG_DBG("fs unmounted from %s", log_strdup(mp->mnt_point));
  650. unmount_err:
  651. k_mutex_unlock(&mutex);
  652. return rc;
  653. }
  654. int fs_readmount(int *index, const char **name)
  655. {
  656. sys_dnode_t *node;
  657. int rc = -ENOENT;
  658. int cnt = 0;
  659. struct fs_mount_t *itr = NULL;
  660. *name = NULL;
  661. k_mutex_lock(&mutex, K_FOREVER);
  662. SYS_DLIST_FOR_EACH_NODE(&fs_mnt_list, node) {
  663. if (*index == cnt) {
  664. itr = CONTAINER_OF(node, struct fs_mount_t, node);
  665. break;
  666. }
  667. ++cnt;
  668. }
  669. k_mutex_unlock(&mutex);
  670. if (itr != NULL) {
  671. rc = 0;
  672. *name = itr->mnt_point;
  673. ++(*index);
  674. }
  675. return rc;
  676. }
  677. /* detect disk add or remove */
  678. int fs_disk_detect(const char *path, uint8_t *state)
  679. {
  680. struct fs_mount_t *mp;
  681. int rc;
  682. if ((path == NULL) ||
  683. (strlen(path) <= 1) || (path[0] != '/')) {
  684. LOG_ERR("invalid file name!!");
  685. return -EINVAL;
  686. }
  687. rc = fs_get_mnt_point(&mp, path, NULL);
  688. if (rc < 0) {
  689. LOG_ERR("%s:mount point not found!!", __func__);
  690. return rc;
  691. }
  692. if (mp->fs->disk_detect != NULL) {
  693. rc = mp->fs->disk_detect(mp, path, state);
  694. if (rc < 0) {
  695. LOG_ERR("failed get disk state (%d)", rc);
  696. }
  697. }
  698. return rc;
  699. }
  700. /* Register File system */
  701. int fs_register(int type, const struct fs_file_system_t *fs)
  702. {
  703. int rc = 0;
  704. k_mutex_lock(&mutex, K_FOREVER);
  705. if (fs_type_get(type) != NULL) {
  706. rc = -EALREADY;
  707. } else {
  708. rc = registry_add(type, fs);
  709. }
  710. k_mutex_unlock(&mutex);
  711. LOG_DBG("fs register %d: %d", type, rc);
  712. return rc;
  713. }
  714. /* Unregister File system */
  715. int fs_unregister(int type, const struct fs_file_system_t *fs)
  716. {
  717. int rc = 0;
  718. struct registry_entry *ep;
  719. k_mutex_lock(&mutex, K_FOREVER);
  720. ep = registry_find(type);
  721. if ((ep == NULL) || (ep->fstp != fs)) {
  722. rc = -EINVAL;
  723. } else {
  724. registry_clear_entry(ep);
  725. }
  726. k_mutex_unlock(&mutex);
  727. LOG_DBG("fs unregister %d: %d", type, rc);
  728. return rc;
  729. }
  730. static int fs_init(const struct device *dev)
  731. {
  732. k_mutex_init(&mutex);
  733. sys_dlist_init(&fs_mnt_list);
  734. return 0;
  735. }
  736. SYS_INIT(fs_init, POST_KERNEL, CONFIG_KERNEL_INIT_PRIORITY_DEFAULT);