fat_fs.c 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517
  1. /*
  2. * Copyright (c) 2016 Intel Corporation.
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #include <stdio.h>
  7. #include <string.h>
  8. #include <kernel.h>
  9. #include <zephyr/types.h>
  10. #include <errno.h>
  11. #include <init.h>
  12. #include <fs/fs.h>
  13. #include <fs/fs_sys.h>
  14. #include <sys/__assert.h>
  15. #include <ff.h>
  16. #define FATFS_MAX_FILE_NAME 12 /* Uses 8.3 SFN */
  17. /* Memory pool for FatFs directory objects */
  18. K_MEM_SLAB_DEFINE(fatfs_dirp_pool, sizeof(DIR),
  19. CONFIG_FS_FATFS_NUM_DIRS, 4);
  20. /* Memory pool for FatFs file objects */
  21. K_MEM_SLAB_DEFINE(fatfs_filep_pool, sizeof(FIL),
  22. CONFIG_FS_FATFS_NUM_FILES, 4);
  23. static int translate_error(int error)
  24. {
  25. switch (error) {
  26. case FR_OK:
  27. return 0;
  28. case FR_NO_FILE:
  29. case FR_NO_PATH:
  30. case FR_INVALID_NAME:
  31. return -ENOENT;
  32. case FR_DENIED:
  33. return -EACCES;
  34. case FR_EXIST:
  35. return -EEXIST;
  36. case FR_INVALID_OBJECT:
  37. return -EBADF;
  38. case FR_WRITE_PROTECTED:
  39. return -EROFS;
  40. case FR_INVALID_DRIVE:
  41. case FR_NOT_ENABLED:
  42. case FR_NO_FILESYSTEM:
  43. return -ENODEV;
  44. case FR_NOT_ENOUGH_CORE:
  45. return -ENOMEM;
  46. case FR_TOO_MANY_OPEN_FILES:
  47. return -EMFILE;
  48. case FR_INVALID_PARAMETER:
  49. return -EINVAL;
  50. case FR_LOCKED:
  51. case FR_TIMEOUT:
  52. case FR_MKFS_ABORTED:
  53. case FR_DISK_ERR:
  54. case FR_INT_ERR:
  55. case FR_NOT_READY:
  56. return -EIO;
  57. }
  58. return -EIO;
  59. }
  60. static uint8_t translate_flags(fs_mode_t flags)
  61. {
  62. uint8_t fat_mode = 0;
  63. fat_mode |= (flags & FS_O_READ) ? FA_READ : 0;
  64. fat_mode |= (flags & FS_O_WRITE) ? FA_WRITE : 0;
  65. fat_mode |= (flags & FS_O_CREATE) ? FA_OPEN_ALWAYS : 0;
  66. /* NOTE: FA_APPEND is not translated because FAT FS does not
  67. * support append semantics of the Zephyr, where file position
  68. * is forwarded to the end before each write, the fatfs_write
  69. * will be tasked with setting a file position to the end,
  70. * if FA_APPEND flag is present.
  71. */
  72. return fat_mode;
  73. }
  74. static int fatfs_open(struct fs_file_t *zfp, const char *file_name,
  75. fs_mode_t mode)
  76. {
  77. FRESULT res;
  78. uint8_t fs_mode;
  79. void *ptr;
  80. if (k_mem_slab_alloc(&fatfs_filep_pool, &ptr, K_NO_WAIT) == 0) {
  81. (void)memset(ptr, 0, sizeof(FIL));
  82. zfp->filep = ptr;
  83. } else {
  84. return -ENOMEM;
  85. }
  86. fs_mode = translate_flags(mode);
  87. res = f_open(zfp->filep, &file_name[1], fs_mode);
  88. if (res != FR_OK) {
  89. k_mem_slab_free(&fatfs_filep_pool, &ptr);
  90. zfp->filep = NULL;
  91. }
  92. return translate_error(res);
  93. }
  94. static int fatfs_close(struct fs_file_t *zfp)
  95. {
  96. FRESULT res;
  97. res = f_close(zfp->filep);
  98. /* Free file ptr memory */
  99. k_mem_slab_free(&fatfs_filep_pool, &zfp->filep);
  100. zfp->filep = NULL;
  101. return translate_error(res);
  102. }
  103. static int fatfs_unlink(struct fs_mount_t *mountp, const char *path)
  104. {
  105. int res = -ENOTSUP;
  106. #if !defined(CONFIG_FS_FATFS_READ_ONLY)
  107. res = f_unlink(&path[1]);
  108. res = translate_error(res);
  109. #endif
  110. return res;
  111. }
  112. static int fatfs_rename(struct fs_mount_t *mountp, const char *from,
  113. const char *to)
  114. {
  115. int res = -ENOTSUP;
  116. #if !defined(CONFIG_FS_FATFS_READ_ONLY)
  117. FILINFO fno;
  118. /* Check if 'to' path exists; remove it if it does */
  119. res = f_stat(&to[1], &fno);
  120. if (FR_OK == res) {
  121. res = f_unlink(&to[1]);
  122. if (FR_OK != res)
  123. return translate_error(res);
  124. }
  125. res = f_rename(&from[1], &to[1]);
  126. res = translate_error(res);
  127. #endif
  128. return res;
  129. }
  130. static ssize_t fatfs_read(struct fs_file_t *zfp, void *ptr, size_t size)
  131. {
  132. FRESULT res;
  133. unsigned int br;
  134. res = f_read(zfp->filep, ptr, size, &br);
  135. if (res != FR_OK) {
  136. return translate_error(res);
  137. }
  138. return br;
  139. }
  140. static ssize_t fatfs_write(struct fs_file_t *zfp, const void *ptr, size_t size)
  141. {
  142. int res = -ENOTSUP;
  143. #if !defined(CONFIG_FS_FATFS_READ_ONLY)
  144. unsigned int bw;
  145. off_t pos = f_size((FIL *)zfp->filep);
  146. res = FR_OK;
  147. /* FA_APPEND flag means that file has been opened for append.
  148. * The FAT FS write does not support the POSIX append semantics,
  149. * to always write at the end of file, so set file position
  150. * at the end before each write if FA_APPEND is set.
  151. */
  152. if (zfp->flags & FS_O_APPEND) {
  153. res = f_lseek(zfp->filep, pos);
  154. }
  155. if (res == FR_OK) {
  156. res = f_write(zfp->filep, ptr, size, &bw);
  157. }
  158. if (res != FR_OK) {
  159. res = translate_error(res);
  160. } else {
  161. res = bw;
  162. }
  163. #endif
  164. return res;
  165. }
  166. static int fatfs_seek(struct fs_file_t *zfp, off_t offset, int whence)
  167. {
  168. FRESULT res = FR_OK;
  169. off_t pos;
  170. switch (whence) {
  171. case FS_SEEK_SET:
  172. pos = offset;
  173. break;
  174. case FS_SEEK_CUR:
  175. pos = f_tell((FIL *)zfp->filep) + offset;
  176. break;
  177. case FS_SEEK_END:
  178. pos = f_size((FIL *)zfp->filep) + offset;
  179. break;
  180. default:
  181. return -EINVAL;
  182. }
  183. if ((pos < 0) || (pos > f_size((FIL *)zfp->filep))) {
  184. return -EINVAL;
  185. }
  186. res = f_lseek(zfp->filep, pos);
  187. return translate_error(res);
  188. }
  189. static off_t fatfs_tell(struct fs_file_t *zfp)
  190. {
  191. return f_tell((FIL *)zfp->filep);
  192. }
  193. static int fatfs_truncate(struct fs_file_t *zfp, off_t length)
  194. {
  195. int res = -ENOTSUP;
  196. #if !defined(CONFIG_FS_FATFS_READ_ONLY)
  197. off_t cur_length = f_size((FIL *)zfp->filep);
  198. /* f_lseek expands file if new position is larger than file size */
  199. res = f_lseek(zfp->filep, length);
  200. if (res != FR_OK) {
  201. return translate_error(res);
  202. }
  203. if (length < cur_length) {
  204. res = f_truncate(zfp->filep);
  205. } else {
  206. /*
  207. * Get actual length after expansion. This could be
  208. * less if there was not enough space in the volume
  209. * to expand to the requested length
  210. */
  211. length = f_tell((FIL *)zfp->filep);
  212. res = f_lseek(zfp->filep, cur_length);
  213. if (res != FR_OK) {
  214. return translate_error(res);
  215. }
  216. /*
  217. * The FS module does caching and optimization of
  218. * writes. Here we write 1 byte at a time to avoid
  219. * using additional code and memory for doing any
  220. * optimization.
  221. */
  222. unsigned int bw;
  223. uint8_t c = 0U;
  224. for (int i = cur_length; i < length; i++) {
  225. res = f_write(zfp->filep, &c, 1, &bw);
  226. if (res != FR_OK) {
  227. break;
  228. }
  229. }
  230. }
  231. res = translate_error(res);
  232. #endif
  233. return res;
  234. }
  235. static int fatfs_sync(struct fs_file_t *zfp)
  236. {
  237. int res = -ENOTSUP;
  238. #if !defined(CONFIG_FS_FATFS_READ_ONLY)
  239. res = f_sync(zfp->filep);
  240. res = translate_error(res);
  241. #endif
  242. return res;
  243. }
  244. static int fatfs_mkdir(struct fs_mount_t *mountp, const char *path)
  245. {
  246. int res = -ENOTSUP;
  247. #if !defined(CONFIG_FS_FATFS_READ_ONLY)
  248. res = f_mkdir(&path[1]);
  249. res = translate_error(res);
  250. #endif
  251. return res;
  252. }
  253. static int fatfs_opendir(struct fs_dir_t *zdp, const char *path)
  254. {
  255. FRESULT res;
  256. void *ptr;
  257. if (k_mem_slab_alloc(&fatfs_dirp_pool, &ptr, K_NO_WAIT) == 0) {
  258. (void)memset(ptr, 0, sizeof(DIR));
  259. zdp->dirp = ptr;
  260. } else {
  261. return -ENOMEM;
  262. }
  263. res = f_opendir(zdp->dirp, &path[1]);
  264. if (res != FR_OK) {
  265. k_mem_slab_free(&fatfs_dirp_pool, &ptr);
  266. zdp->dirp = NULL;
  267. }
  268. return translate_error(res);
  269. }
  270. static int fatfs_readdir(struct fs_dir_t *zdp, struct fs_dirent *entry)
  271. {
  272. FRESULT res;
  273. FILINFO fno;
  274. res = f_readdir(zdp->dirp, &fno);
  275. if (res == FR_OK) {
  276. strcpy(entry->name, fno.fname);
  277. if (entry->name[0] != 0) {
  278. entry->type = ((fno.fattrib & AM_DIR) ?
  279. FS_DIR_ENTRY_DIR : FS_DIR_ENTRY_FILE);
  280. entry->size = fno.fsize;
  281. }
  282. }
  283. return translate_error(res);
  284. }
  285. static int fatfs_closedir(struct fs_dir_t *zdp)
  286. {
  287. FRESULT res;
  288. res = f_closedir(zdp->dirp);
  289. /* Free file ptr memory */
  290. k_mem_slab_free(&fatfs_dirp_pool, &zdp->dirp);
  291. return translate_error(res);
  292. }
  293. static int fatfs_stat(struct fs_mount_t *mountp,
  294. const char *path, struct fs_dirent *entry)
  295. {
  296. FRESULT res;
  297. FILINFO fno;
  298. res = f_stat(&path[1], &fno);
  299. if (res == FR_OK) {
  300. entry->type = ((fno.fattrib & AM_DIR) ?
  301. FS_DIR_ENTRY_DIR : FS_DIR_ENTRY_FILE);
  302. strcpy(entry->name, fno.fname);
  303. entry->size = fno.fsize;
  304. }
  305. return translate_error(res);
  306. }
  307. static int fatfs_statvfs(struct fs_mount_t *mountp,
  308. const char *path, struct fs_statvfs *stat)
  309. {
  310. int res = -ENOTSUP;
  311. #if !defined(CONFIG_FS_FATFS_READ_ONLY)
  312. FATFS *fs;
  313. res = f_getfree(&mountp->mnt_point[1], &stat->f_bfree, &fs);
  314. if (res != FR_OK) {
  315. return -EIO;
  316. }
  317. /*
  318. * _MIN_SS holds the sector size. It is one of the configuration
  319. * constants used by the FS module
  320. */
  321. stat->f_bsize = _MIN_SS;
  322. stat->f_frsize = fs->csize * stat->f_bsize;
  323. stat->f_blocks = (fs->n_fatent - 2);
  324. res = translate_error(res);
  325. #endif
  326. return res;
  327. }
  328. static int fatfs_mount(struct fs_mount_t *mountp)
  329. {
  330. FRESULT res;
  331. res = f_mount((FATFS *)mountp->fs_data, &mountp->mnt_point[1], 1);
  332. #if defined(CONFIG_FS_FATFS_MOUNT_MKFS)
  333. if (res == FR_NO_FILESYSTEM &&
  334. (mountp->flags & FS_MOUNT_FLAG_READ_ONLY) != 0) {
  335. return -EROFS;
  336. }
  337. /* If no file system found then create one */
  338. if (res == FR_NO_FILESYSTEM &&
  339. (mountp->flags & FS_MOUNT_FLAG_NO_FORMAT) == 0) {
  340. uint8_t work[_MAX_SS];
  341. res = f_mkfs(&mountp->mnt_point[1],
  342. (FM_FAT | FM_SFD), 0, work, sizeof(work));
  343. if (res == FR_OK) {
  344. res = f_mount((FATFS *)mountp->fs_data,
  345. &mountp->mnt_point[1], 1);
  346. }
  347. }
  348. #endif /* CONFIG_FS_FATFS_MOUNT_MKFS */
  349. return translate_error(res);
  350. }
  351. static int fatfs_unmount(struct fs_mount_t *mountp)
  352. {
  353. FRESULT res;
  354. res = f_mount(NULL, &mountp->mnt_point[1], 0);
  355. return translate_error(res);
  356. }
  357. /* detect disk add or remove */
  358. static int fatfs_disk_detect(struct fs_mount_t *mountp, const char *path, uint8_t *state)
  359. {
  360. return f_disk_detect(path + 1, state);/*filter'/'*/
  361. }
  362. static int fatfs_open_cluster(struct fs_file_t *zfp, char *dir, uint32_t cluster, uint32_t blk_ofs)
  363. {
  364. FRESULT res;
  365. uint8_t fs_mode;
  366. void *ptr;
  367. if (k_mem_slab_alloc(&fatfs_filep_pool, &ptr, K_NO_WAIT) == 0) {
  368. (void)memset(ptr, 0, sizeof(FIL));
  369. zfp->filep = ptr;
  370. } else {
  371. return -ENOMEM;
  372. }
  373. fs_mode = FA_READ | FA_WRITE | FA_OPEN_ALWAYS;
  374. res = f_open_cluster(zfp->filep, dir + 1, cluster, blk_ofs, fs_mode);/*filter'/'*/
  375. return translate_error(res);
  376. }
  377. static int fatfs_opendir_cluster(struct fs_dir_t *zdp, const char *path, unsigned int cluster, unsigned int blk_ofs)
  378. {
  379. FRESULT res;
  380. void *ptr;
  381. if (k_mem_slab_alloc(&fatfs_dirp_pool, &ptr, K_NO_WAIT) == 0) {
  382. (void)memset(ptr, 0, sizeof(DIR));
  383. zdp->dirp = ptr;
  384. } else {
  385. return -ENOMEM;
  386. }
  387. res = f_opendir_cluster(zdp->dirp, path + 1, cluster, blk_ofs);/*filter'/'*/
  388. return translate_error(res);
  389. }
  390. /* File system interface */
  391. static const struct fs_file_system_t fatfs_fs = {
  392. .open = fatfs_open,
  393. .close = fatfs_close,
  394. .read = fatfs_read,
  395. .write = fatfs_write,
  396. .lseek = fatfs_seek,
  397. .tell = fatfs_tell,
  398. .truncate = fatfs_truncate,
  399. .sync = fatfs_sync,
  400. .opendir = fatfs_opendir,
  401. .readdir = fatfs_readdir,
  402. .closedir = fatfs_closedir,
  403. .mount = fatfs_mount,
  404. .unmount = fatfs_unmount,
  405. .unlink = fatfs_unlink,
  406. .rename = fatfs_rename,
  407. .mkdir = fatfs_mkdir,
  408. .stat = fatfs_stat,
  409. .statvfs = fatfs_statvfs,
  410. .disk_detect = fatfs_disk_detect,
  411. .open_cluster = fatfs_open_cluster,
  412. .opendir_cluster = fatfs_opendir_cluster,
  413. };
  414. static int fatfs_init(const struct device *dev)
  415. {
  416. ARG_UNUSED(dev);
  417. return fs_register(FS_FATFS, &fatfs_fs);
  418. }
  419. SYS_INIT(fatfs_init, APPLICATION, CONFIG_KERNEL_INIT_PRIORITY_DEFAULT);