ff.h 15 KB

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