ff.h 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431
  1. /*----------------------------------------------------------------------------/
  2. / FatFs - Generic FAT Filesystem module R0.15 /
  3. /-----------------------------------------------------------------------------/
  4. /
  5. / Copyright (C) 2022, ChaN, all right reserved.
  6. /
  7. / FatFs module is an open source software. Redistribution and use of FatFs in
  8. / source and binary forms, with or without modification, are permitted provided
  9. / that the following condition is met:
  10. / 1. Redistributions of source code must retain the above copyright notice,
  11. / this condition and the following disclaimer.
  12. /
  13. / This software is provided by the copyright holder and contributors "AS IS"
  14. / and any warranties related to this software are DISCLAIMED.
  15. / The copyright owner or contributors be NOT LIABLE for any damages caused
  16. / by use of this software.
  17. /
  18. /----------------------------------------------------------------------------*/
  19. #ifndef FF_DEFINED
  20. #define FF_DEFINED 80286 /* Revision ID */
  21. #ifdef __cplusplus
  22. extern "C" {
  23. #endif
  24. #include <rtthread.h>
  25. #include "ffconf.h" /* FatFs configuration options */
  26. #if FF_DEFINED != FFCONF_DEF
  27. #error Wrong configuration file (ffconf.h).
  28. #endif
  29. /* Integer types used for FatFs API */
  30. #if defined(_WIN32) /* Windows VC++ (for development only) */
  31. #define FF_INTDEF 2
  32. #include <windows.h>
  33. typedef unsigned __int64 QWORD;
  34. #include <float.h>
  35. #define isnan(v) _isnan(v)
  36. #define isinf(v) (!_finite(v))
  37. #elif (defined(__STDC_VERSION__) && __STDC_VERSION__ >= 199901L) || defined(__cplusplus) /* C99 or later */
  38. #define FF_INTDEF 2
  39. #include <stdint.h>
  40. typedef unsigned int UINT; /* int must be 16-bit or 32-bit */
  41. typedef unsigned char BYTE; /* char must be 8-bit */
  42. typedef uint16_t WORD; /* 16-bit unsigned integer */
  43. typedef uint32_t DWORD; /* 32-bit unsigned integer */
  44. typedef uint64_t QWORD; /* 64-bit unsigned integer */
  45. typedef WORD WCHAR; /* UTF-16 character type */
  46. #else /* Earlier than C99 */
  47. #define FF_INTDEF 1
  48. typedef unsigned int UINT; /* int must be 16-bit or 32-bit */
  49. typedef unsigned char BYTE; /* char must be 8-bit */
  50. typedef unsigned short WORD; /* 16-bit unsigned integer */
  51. typedef unsigned long DWORD; /* 32-bit unsigned integer */
  52. typedef WORD WCHAR; /* UTF-16 character type */
  53. #endif
  54. /* Type of file size and LBA variables */
  55. #if FF_FS_EXFAT
  56. #if FF_INTDEF != 2
  57. #error exFAT feature wants C99 or later
  58. #endif
  59. typedef QWORD FSIZE_t;
  60. #if FF_LBA64
  61. typedef QWORD LBA_t;
  62. #else
  63. typedef DWORD LBA_t;
  64. #endif
  65. #else
  66. #if FF_LBA64
  67. #error exFAT needs to be enabled when enable 64-bit LBA
  68. #endif
  69. typedef DWORD FSIZE_t;
  70. typedef DWORD LBA_t;
  71. #endif
  72. /* Type of path name strings on FatFs API (TCHAR) */
  73. #if FF_USE_LFN && FF_LFN_UNICODE == 1 /* Unicode in UTF-16 encoding */
  74. typedef WCHAR TCHAR;
  75. #define _T(x) L ## x
  76. #define _TEXT(x) L ## x
  77. #elif FF_USE_LFN && FF_LFN_UNICODE == 2 /* Unicode in UTF-8 encoding */
  78. typedef char TCHAR;
  79. #define _T(x) u8 ## x
  80. #define _TEXT(x) u8 ## x
  81. #elif FF_USE_LFN && FF_LFN_UNICODE == 3 /* Unicode in UTF-32 encoding */
  82. typedef DWORD TCHAR;
  83. #define _T(x) U ## x
  84. #define _TEXT(x) U ## x
  85. #elif FF_USE_LFN && (FF_LFN_UNICODE < 0 || FF_LFN_UNICODE > 3)
  86. #error Wrong FF_LFN_UNICODE setting
  87. #else /* ANSI/OEM code in SBCS/DBCS */
  88. typedef char TCHAR;
  89. #define _T(x) x
  90. #define _TEXT(x) x
  91. #endif
  92. /* Definitions of volume management */
  93. #if FF_MULTI_PARTITION /* Multiple partition configuration */
  94. typedef struct {
  95. BYTE pd; /* Physical drive number */
  96. BYTE pt; /* Partition: 0:Auto detect, 1-4:Forced partition) */
  97. } PARTITION;
  98. extern PARTITION VolToPart[]; /* Volume - Partition mapping table */
  99. #endif
  100. #if FF_STR_VOLUME_ID
  101. #ifndef FF_VOLUME_STRS
  102. extern const char* VolumeStr[FF_VOLUMES]; /* User defied volume ID */
  103. #endif
  104. #endif
  105. /* Filesystem object structure (FATFS) */
  106. typedef struct {
  107. BYTE fs_type; /* Filesystem type (0:not mounted) */
  108. BYTE pdrv; /* Volume hosting physical drive */
  109. BYTE ldrv; /* Logical drive number (used only when FF_FS_REENTRANT) */
  110. BYTE n_fats; /* Number of FATs (1 or 2) */
  111. BYTE wflag; /* win[] status (b0:dirty) */
  112. BYTE fsi_flag; /* FSINFO status (b7:disabled, b0:dirty) */
  113. WORD id; /* Volume mount ID */
  114. WORD n_rootdir; /* Number of root directory entries (FAT12/16) */
  115. WORD csize; /* Cluster size [sectors] */
  116. #if FF_MAX_SS != FF_MIN_SS
  117. WORD ssize; /* Sector size (512, 1024, 2048 or 4096) */
  118. #endif
  119. #if FF_USE_LFN
  120. WCHAR* lfnbuf; /* LFN working buffer */
  121. #endif
  122. #if FF_FS_EXFAT
  123. BYTE* dirbuf; /* Directory entry block scratchpad buffer for exFAT */
  124. #endif
  125. #if !FF_FS_READONLY
  126. DWORD last_clst; /* Last allocated cluster */
  127. DWORD free_clst; /* Number of free clusters */
  128. #endif
  129. #if FF_FS_RPATH
  130. DWORD cdir; /* Current directory start cluster (0:root) */
  131. #if FF_FS_EXFAT
  132. DWORD cdc_scl; /* Containing directory start cluster (invalid when cdir is 0) */
  133. DWORD cdc_size; /* b31-b8:Size of containing directory, b7-b0: Chain status */
  134. DWORD cdc_ofs; /* Offset in the containing directory (invalid when cdir is 0) */
  135. #endif
  136. #endif
  137. DWORD n_fatent; /* Number of FAT entries (number of clusters + 2) */
  138. DWORD fsize; /* Number of sectors per FAT */
  139. LBA_t volbase; /* Volume base sector */
  140. LBA_t fatbase; /* FAT base sector */
  141. LBA_t dirbase; /* Root directory base sector (FAT12/16) or cluster (FAT32/exFAT) */
  142. LBA_t database; /* Data base sector */
  143. #if FF_FS_EXFAT
  144. LBA_t bitbase; /* Allocation bitmap base sector */
  145. #endif
  146. LBA_t winsect; /* Current sector appearing in the win[] */
  147. BYTE win[FF_MAX_SS]; /* Disk access window for Directory, FAT (and file data at tiny cfg) */
  148. } FATFS;
  149. /* Object ID and allocation information (FFOBJID) */
  150. typedef struct {
  151. FATFS* fs; /* Pointer to the hosting volume of this object */
  152. WORD id; /* Hosting volume's mount ID */
  153. BYTE attr; /* Object attribute */
  154. BYTE stat; /* Object chain status (b1-0: =0:not contiguous, =2:contiguous, =3:fragmented in this session, b2:sub-directory stretched) */
  155. DWORD sclust; /* Object data start cluster (0:no cluster or root directory) */
  156. FSIZE_t objsize; /* Object size (valid when sclust != 0) */
  157. #if FF_FS_EXFAT
  158. DWORD n_cont; /* Size of first fragment - 1 (valid when stat == 3) */
  159. DWORD n_frag; /* Size of last fragment needs to be written to FAT (valid when not zero) */
  160. DWORD c_scl; /* Containing directory start cluster (valid when sclust != 0) */
  161. DWORD c_size; /* b31-b8:Size of containing directory, b7-b0: Chain status (valid when c_scl != 0) */
  162. DWORD c_ofs; /* Offset in the containing directory (valid when file object and sclust != 0) */
  163. #endif
  164. #if FF_FS_LOCK
  165. UINT lockid; /* File lock ID origin from 1 (index of file semaphore table Files[]) */
  166. #endif
  167. } FFOBJID;
  168. /* File object structure (FIL) */
  169. typedef struct {
  170. FFOBJID obj; /* Object identifier (must be the 1st member to detect invalid object pointer) */
  171. BYTE flag; /* File status flags */
  172. BYTE err; /* Abort flag (error code) */
  173. FSIZE_t fptr; /* File read/write pointer (Zeroed on file open) */
  174. DWORD clust; /* Current cluster of fpter (invalid when fptr is 0) */
  175. LBA_t sect; /* Sector number appearing in buf[] (0:invalid) */
  176. #if !FF_FS_READONLY
  177. LBA_t dir_sect; /* Sector number containing the directory entry (not used at exFAT) */
  178. BYTE* dir_ptr; /* Pointer to the directory entry in the win[] (not used at exFAT) */
  179. #endif
  180. #if FF_USE_FASTSEEK
  181. DWORD* cltbl; /* Pointer to the cluster link map table (nulled on open, set by application) */
  182. #endif
  183. #if !FF_FS_TINY
  184. BYTE buf[FF_MAX_SS]; /* File private data read/write window */
  185. #endif
  186. } FIL;
  187. /* Directory object structure (DIR) */
  188. typedef struct {
  189. FFOBJID obj; /* Object identifier */
  190. DWORD dptr; /* Current read/write offset */
  191. DWORD clust; /* Current cluster */
  192. LBA_t sect; /* Current sector (0:Read operation has terminated) */
  193. BYTE* dir; /* Pointer to the directory item in the win[] */
  194. BYTE fn[12]; /* SFN (in/out) {body[8],ext[3],status[1]} */
  195. #if FF_USE_LFN
  196. DWORD blk_ofs; /* Offset of current entry block being processed (0xFFFFFFFF:Invalid) */
  197. #endif
  198. #if FF_USE_FIND
  199. const TCHAR* pat; /* Pointer to the name matching pattern */
  200. #endif
  201. } DIR;
  202. /* File information structure (FILINFO) */
  203. typedef struct {
  204. FSIZE_t fsize; /* File size */
  205. WORD fdate; /* Modified date */
  206. WORD ftime; /* Modified time */
  207. BYTE fattrib; /* File attribute */
  208. #if FF_USE_LFN
  209. TCHAR altname[FF_SFN_BUF + 1];/* Alternative file name */
  210. TCHAR fname[FF_LFN_BUF + 1]; /* Primary file name */
  211. #else
  212. TCHAR fname[12 + 1]; /* File name */
  213. #endif
  214. } FILINFO;
  215. /* Format parameter structure (MKFS_PARM) */
  216. typedef struct {
  217. BYTE fmt; /* Format option (FM_FAT, FM_FAT32, FM_EXFAT and FM_SFD) */
  218. BYTE n_fat; /* Number of FATs */
  219. UINT align; /* Data area alignment (sector) */
  220. UINT n_root; /* Number of root directory entries */
  221. DWORD au_size; /* Cluster size (byte) */
  222. } MKFS_PARM;
  223. /* File function return code (FRESULT) */
  224. typedef enum {
  225. FR_OK = 0, /* (0) Succeeded */
  226. FR_DISK_ERR, /* (1) A hard error occurred in the low level disk I/O layer */
  227. FR_INT_ERR, /* (2) Assertion failed */
  228. FR_NOT_READY, /* (3) The physical drive cannot work */
  229. FR_NO_FILE, /* (4) Could not find the file */
  230. FR_NO_PATH, /* (5) Could not find the path */
  231. FR_INVALID_NAME, /* (6) The path name format is invalid */
  232. FR_DENIED, /* (7) Access denied due to prohibited access or directory full */
  233. FR_EXIST, /* (8) Access denied due to prohibited access */
  234. FR_INVALID_OBJECT, /* (9) The file/directory object is invalid */
  235. FR_WRITE_PROTECTED, /* (10) The physical drive is write protected */
  236. FR_INVALID_DRIVE, /* (11) The logical drive number is invalid */
  237. FR_NOT_ENABLED, /* (12) The volume has no work area */
  238. FR_NO_FILESYSTEM, /* (13) There is no valid FAT volume */
  239. FR_MKFS_ABORTED, /* (14) The f_mkfs() aborted due to any problem */
  240. FR_TIMEOUT, /* (15) Could not get a grant to access the volume within defined period */
  241. FR_LOCKED, /* (16) The operation is rejected according to the file sharing policy */
  242. FR_NOT_ENOUGH_CORE, /* (17) LFN working buffer could not be allocated */
  243. FR_TOO_MANY_OPEN_FILES, /* (18) Number of open files > FF_FS_LOCK */
  244. FR_INVALID_PARAMETER /* (19) Given parameter is invalid */
  245. } FRESULT;
  246. /*--------------------------------------------------------------*/
  247. /* FatFs Module Application Interface */
  248. /*--------------------------------------------------------------*/
  249. FRESULT f_open (FIL* fp, const TCHAR* path, BYTE mode); /* Open or create a file */
  250. FRESULT f_close (FIL* fp); /* Close an open file object */
  251. FRESULT f_read (FIL* fp, void* buff, UINT btr, UINT* br); /* Read data from the file */
  252. FRESULT f_write (FIL* fp, const void* buff, UINT btw, UINT* bw); /* Write data to the file */
  253. FRESULT f_lseek (FIL* fp, FSIZE_t ofs); /* Move file pointer of the file object */
  254. FRESULT f_truncate (FIL* fp); /* Truncate the file */
  255. FRESULT f_sync (FIL* fp); /* Flush cached data of the writing file */
  256. FRESULT f_opendir (DIR* dp, const TCHAR* path); /* Open a directory */
  257. FRESULT f_closedir (DIR* dp); /* Close an open directory */
  258. FRESULT f_readdir (DIR* dp, FILINFO* fno); /* Read a directory item */
  259. FRESULT f_seekdir(DIR *dj, int offset); /* Seek in directory */
  260. FRESULT f_findfirst (DIR* dp, FILINFO* fno, const TCHAR* path, const TCHAR* pattern); /* Find first file */
  261. FRESULT f_findnext (DIR* dp, FILINFO* fno); /* Find next file */
  262. FRESULT f_mkdir (const TCHAR* path); /* Create a sub directory */
  263. FRESULT f_unlink (const TCHAR* path); /* Delete an existing file or directory */
  264. FRESULT f_rename (const TCHAR* path_old, const TCHAR* path_new); /* Rename/Move a file or directory */
  265. FRESULT f_stat (const TCHAR* path, FILINFO* fno); /* Get file status */
  266. FRESULT f_chmod (const TCHAR* path, BYTE attr, BYTE mask); /* Change attribute of a file/dir */
  267. FRESULT f_utime (const TCHAR* path, const FILINFO* fno); /* Change timestamp of a file/dir */
  268. FRESULT f_chdir (const TCHAR* path); /* Change current directory */
  269. FRESULT f_chdrive (const TCHAR* path); /* Change current drive */
  270. FRESULT f_getcwd (TCHAR* buff, UINT len); /* Get current directory */
  271. FRESULT f_getfree (const TCHAR* path, DWORD* nclst, FATFS** fatfs); /* Get number of free clusters on the drive */
  272. FRESULT f_getlabel (const TCHAR* path, TCHAR* label, DWORD* vsn); /* Get volume label */
  273. FRESULT f_setlabel (const TCHAR* label); /* Set volume label */
  274. FRESULT f_forward (FIL* fp, UINT(*func)(const BYTE*,UINT), UINT btf, UINT* bf); /* Forward data to the stream */
  275. FRESULT f_expand (FIL* fp, FSIZE_t fsz, BYTE opt); /* Allocate a contiguous block to the file */
  276. FRESULT f_mount (FATFS* fs, const TCHAR* path, BYTE opt); /* Mount/Unmount a logical drive */
  277. FRESULT f_mkfs (const TCHAR* path, const MKFS_PARM* opt, void* work, UINT len); /* Create a FAT volume */
  278. FRESULT f_fdisk (BYTE pdrv, const LBA_t ptbl[], void* work); /* Divide a physical drive into some partitions */
  279. FRESULT f_setcp (WORD cp); /* Set current code page */
  280. int f_putc (TCHAR c, FIL* fp); /* Put a character to the file */
  281. int f_puts (const TCHAR* str, FIL* cp); /* Put a string to the file */
  282. int f_printf (FIL* fp, const TCHAR* str, ...); /* Put a formatted string to the file */
  283. TCHAR* f_gets (TCHAR* buff, int len, FIL* fp); /* Get a string from the file */
  284. /* Some API fucntions are implemented as macro */
  285. #define f_eof(fp) ((int)((fp)->fptr == (fp)->obj.objsize))
  286. #define f_error(fp) ((fp)->err)
  287. #define f_tell(fp) ((fp)->fptr)
  288. #define f_size(fp) ((fp)->obj.objsize)
  289. #define f_rewind(fp) f_lseek((fp), 0)
  290. #define f_rewinddir(dp) f_readdir((dp), 0)
  291. #define f_rmdir(path) f_unlink(path)
  292. #define f_unmount(path) f_mount(0, path, 0)
  293. /*--------------------------------------------------------------*/
  294. /* Additional Functions */
  295. /*--------------------------------------------------------------*/
  296. /* RTC function (provided by user) */
  297. #if !FF_FS_READONLY && !FF_FS_NORTC
  298. DWORD get_fattime (void); /* Get current time */
  299. #endif
  300. /* LFN support functions (defined in ffunicode.c) */
  301. #if FF_USE_LFN >= 1
  302. WCHAR ff_oem2uni (WCHAR oem, WORD cp); /* OEM code to Unicode conversion */
  303. WCHAR ff_uni2oem (DWORD uni, WORD cp); /* Unicode to OEM code conversion */
  304. DWORD ff_wtoupper (DWORD uni); /* Unicode upper-case conversion */
  305. #endif
  306. /* O/S dependent functions (samples available in ffsystem.c) */
  307. #if FF_USE_LFN == 3 /* Dynamic memory allocation */
  308. void* ff_memalloc (UINT msize); /* Allocate memory block */
  309. void ff_memfree (void* mblock); /* Free memory block */
  310. #endif
  311. #if FF_FS_REENTRANT /* Sync functions */
  312. int ff_mutex_create (int vol); /* Create a sync object */
  313. void ff_mutex_delete (int vol); /* Delete a sync object */
  314. int ff_mutex_take (int vol); /* Lock sync object */
  315. void ff_mutex_give (int vol); /* Unlock sync object */
  316. #endif
  317. /*--------------------------------------------------------------*/
  318. /* Flags and Offset Address */
  319. /*--------------------------------------------------------------*/
  320. /* File access mode and open method flags (3rd argument of f_open) */
  321. #define FA_READ 0x01
  322. #define FA_WRITE 0x02
  323. #define FA_OPEN_EXISTING 0x00
  324. #define FA_CREATE_NEW 0x04
  325. #define FA_CREATE_ALWAYS 0x08
  326. #define FA_OPEN_ALWAYS 0x10
  327. #define FA_OPEN_APPEND 0x30
  328. /* Fast seek controls (2nd argument of f_lseek) */
  329. #define CREATE_LINKMAP ((FSIZE_t)0 - 1)
  330. /* Format options (2nd argument of f_mkfs) */
  331. #define FM_FAT 0x01
  332. #define FM_FAT32 0x02
  333. #define FM_EXFAT 0x04
  334. #define FM_ANY 0x07
  335. #define FM_SFD 0x08
  336. /* Filesystem type (FATFS.fs_type) */
  337. #define FS_FAT12 1
  338. #define FS_FAT16 2
  339. #define FS_FAT32 3
  340. #define FS_EXFAT 4
  341. /* File attribute bits for directory entry (FILINFO.fattrib) */
  342. #define AM_RDO 0x01 /* Read only */
  343. #define AM_HID 0x02 /* Hidden */
  344. #define AM_SYS 0x04 /* System */
  345. #define AM_DIR 0x10 /* Directory */
  346. #define AM_ARC 0x20 /* Archive */
  347. #ifdef __cplusplus
  348. }
  349. #endif
  350. #endif /* FF_DEFINED */