ff.h 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429
  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 "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; /* Volume hosting physical drive */
  108. BYTE ldrv; /* Logical drive number (used only when FF_FS_REENTRANT) */
  109. BYTE n_fats; /* Number of FATs (1 or 2) */
  110. BYTE wflag; /* win[] status (b0:dirty) */
  111. BYTE fsi_flag; /* FSINFO status (b7:disabled, b0:dirty) */
  112. WORD id; /* Volume mount ID */
  113. WORD n_rootdir; /* Number of root directory entries (FAT12/16) */
  114. WORD csize; /* Cluster size [sectors] */
  115. #if FF_MAX_SS != FF_MIN_SS
  116. WORD ssize; /* Sector size (512, 1024, 2048 or 4096) */
  117. #endif
  118. #if FF_USE_LFN
  119. WCHAR* lfnbuf; /* LFN working buffer */
  120. #endif
  121. #if FF_FS_EXFAT
  122. BYTE* dirbuf; /* Directory entry block scratchpad buffer for exFAT */
  123. #endif
  124. #if !FF_FS_READONLY
  125. DWORD last_clst; /* Last allocated cluster */
  126. DWORD free_clst; /* Number of free clusters */
  127. #endif
  128. #if FF_FS_RPATH
  129. DWORD cdir; /* Current directory start cluster (0:root) */
  130. #if FF_FS_EXFAT
  131. DWORD cdc_scl; /* Containing directory start cluster (invalid when cdir is 0) */
  132. DWORD cdc_size; /* b31-b8:Size of containing directory, b7-b0: Chain status */
  133. DWORD cdc_ofs; /* Offset in the containing directory (invalid when cdir is 0) */
  134. #endif
  135. #endif
  136. DWORD n_fatent; /* Number of FAT entries (number of clusters + 2) */
  137. DWORD fsize; /* Number of sectors per FAT */
  138. LBA_t volbase; /* Volume base sector */
  139. LBA_t fatbase; /* FAT base sector */
  140. LBA_t dirbase; /* Root directory base sector (FAT12/16) or cluster (FAT32/exFAT) */
  141. LBA_t database; /* Data base sector */
  142. #if FF_FS_EXFAT
  143. LBA_t bitbase; /* Allocation bitmap base sector */
  144. #endif
  145. LBA_t winsect; /* Current sector appearing in the win[] */
  146. BYTE win[FF_MAX_SS]; /* Disk access window for Directory, FAT (and file data at tiny cfg) */
  147. } FATFS;
  148. /* Object ID and allocation information (FFOBJID) */
  149. typedef struct {
  150. FATFS* fs; /* Pointer to the hosting volume of this object */
  151. WORD id; /* Hosting volume's mount ID */
  152. BYTE attr; /* Object attribute */
  153. BYTE stat; /* Object chain status (b1-0: =0:not contiguous, =2:contiguous, =3:fragmented in this session, b2:sub-directory stretched) */
  154. DWORD sclust; /* Object data start cluster (0:no cluster or root directory) */
  155. FSIZE_t objsize; /* Object size (valid when sclust != 0) */
  156. #if FF_FS_EXFAT
  157. DWORD n_cont; /* Size of first fragment - 1 (valid when stat == 3) */
  158. DWORD n_frag; /* Size of last fragment needs to be written to FAT (valid when not zero) */
  159. DWORD c_scl; /* Containing directory start cluster (valid when sclust != 0) */
  160. DWORD c_size; /* b31-b8:Size of containing directory, b7-b0: Chain status (valid when c_scl != 0) */
  161. DWORD c_ofs; /* Offset in the containing directory (valid when file object and sclust != 0) */
  162. #endif
  163. #if FF_FS_LOCK
  164. UINT lockid; /* File lock ID origin from 1 (index of file semaphore table Files[]) */
  165. #endif
  166. } FFOBJID;
  167. /* File object structure (FIL) */
  168. typedef struct {
  169. FFOBJID obj; /* Object identifier (must be the 1st member to detect invalid object pointer) */
  170. BYTE flag; /* File status flags */
  171. BYTE err; /* Abort flag (error code) */
  172. FSIZE_t fptr; /* File read/write pointer (Zeroed on file open) */
  173. DWORD clust; /* Current cluster of fpter (invalid when fptr is 0) */
  174. LBA_t sect; /* Sector number appearing in buf[] (0:invalid) */
  175. #if !FF_FS_READONLY
  176. LBA_t dir_sect; /* Sector number containing the directory entry (not used at exFAT) */
  177. BYTE* dir_ptr; /* Pointer to the directory entry in the win[] (not used at exFAT) */
  178. #endif
  179. #if FF_USE_FASTSEEK
  180. DWORD* cltbl; /* Pointer to the cluster link map table (nulled on open, set by application) */
  181. #endif
  182. #if !FF_FS_TINY
  183. BYTE buf[FF_MAX_SS]; /* File private data read/write window */
  184. #endif
  185. } FIL;
  186. /* Directory object structure (DIR) */
  187. typedef struct {
  188. FFOBJID obj; /* Object identifier */
  189. DWORD dptr; /* Current read/write offset */
  190. DWORD clust; /* Current cluster */
  191. LBA_t sect; /* Current sector (0:Read operation has terminated) */
  192. BYTE* dir; /* Pointer to the directory item in the win[] */
  193. BYTE fn[12]; /* SFN (in/out) {body[8],ext[3],status[1]} */
  194. #if FF_USE_LFN
  195. DWORD blk_ofs; /* Offset of current entry block being processed (0xFFFFFFFF:Invalid) */
  196. #endif
  197. #if FF_USE_FIND
  198. const TCHAR* pat; /* Pointer to the name matching pattern */
  199. #endif
  200. } DIR;
  201. /* File information structure (FILINFO) */
  202. typedef struct {
  203. FSIZE_t fsize; /* File size */
  204. WORD fdate; /* Modified date */
  205. WORD ftime; /* Modified time */
  206. BYTE fattrib; /* File attribute */
  207. #if FF_USE_LFN
  208. TCHAR altname[FF_SFN_BUF + 1];/* Alternative file name */
  209. TCHAR fname[FF_LFN_BUF + 1]; /* Primary file name */
  210. #else
  211. TCHAR fname[12 + 1]; /* File name */
  212. #endif
  213. } FILINFO;
  214. /* Format parameter structure (MKFS_PARM) */
  215. typedef struct {
  216. BYTE fmt; /* Format option (FM_FAT, FM_FAT32, FM_EXFAT and FM_SFD) */
  217. BYTE n_fat; /* Number of FATs */
  218. UINT align; /* Data area alignment (sector) */
  219. UINT n_root; /* Number of root directory entries */
  220. DWORD au_size; /* Cluster size (byte) */
  221. } MKFS_PARM;
  222. /* File function return code (FRESULT) */
  223. typedef enum {
  224. FR_OK = 0, /* (0) Succeeded */
  225. FR_DISK_ERR, /* (1) A hard error occurred in the low level disk I/O layer */
  226. FR_INT_ERR, /* (2) Assertion failed */
  227. FR_NOT_READY, /* (3) The physical drive cannot work */
  228. FR_NO_FILE, /* (4) Could not find the file */
  229. FR_NO_PATH, /* (5) Could not find the path */
  230. FR_INVALID_NAME, /* (6) The path name format is invalid */
  231. FR_DENIED, /* (7) Access denied due to prohibited access or directory full */
  232. FR_EXIST, /* (8) Access denied due to prohibited access */
  233. FR_INVALID_OBJECT, /* (9) The file/directory object is invalid */
  234. FR_WRITE_PROTECTED, /* (10) The physical drive is write protected */
  235. FR_INVALID_DRIVE, /* (11) The logical drive number is invalid */
  236. FR_NOT_ENABLED, /* (12) The volume has no work area */
  237. FR_NO_FILESYSTEM, /* (13) There is no valid FAT volume */
  238. FR_MKFS_ABORTED, /* (14) The f_mkfs() aborted due to any problem */
  239. FR_TIMEOUT, /* (15) Could not get a grant to access the volume within defined period */
  240. FR_LOCKED, /* (16) The operation is rejected according to the file sharing policy */
  241. FR_NOT_ENOUGH_CORE, /* (17) LFN working buffer could not be allocated */
  242. FR_TOO_MANY_OPEN_FILES, /* (18) Number of open files > FF_FS_LOCK */
  243. FR_INVALID_PARAMETER /* (19) Given parameter is invalid */
  244. } FRESULT;
  245. /*--------------------------------------------------------------*/
  246. /* FatFs Module Application Interface */
  247. /*--------------------------------------------------------------*/
  248. FRESULT f_open (FIL* fp, const TCHAR* path, BYTE mode); /* Open or create a file */
  249. FRESULT f_close (FIL* fp); /* Close an open file object */
  250. FRESULT f_read (FIL* fp, void* buff, UINT btr, UINT* br); /* Read data from the file */
  251. FRESULT f_write (FIL* fp, const void* buff, UINT btw, UINT* bw); /* Write data to the file */
  252. FRESULT f_lseek (FIL* fp, FSIZE_t ofs); /* Move file pointer of the file object */
  253. FRESULT f_truncate (FIL* fp); /* Truncate the file */
  254. FRESULT f_sync (FIL* fp); /* Flush cached data of the writing file */
  255. FRESULT f_opendir (DIR* dp, const TCHAR* path); /* Open a directory */
  256. FRESULT f_closedir (DIR* dp); /* Close an open directory */
  257. FRESULT f_readdir (DIR* dp, FILINFO* fno); /* Read a directory item */
  258. FRESULT f_findfirst (DIR* dp, FILINFO* fno, const TCHAR* path, const TCHAR* pattern); /* Find first file */
  259. FRESULT f_findnext (DIR* dp, FILINFO* fno); /* Find next file */
  260. FRESULT f_mkdir (const TCHAR* path); /* Create a sub directory */
  261. FRESULT f_unlink (const TCHAR* path); /* Delete an existing file or directory */
  262. FRESULT f_rename (const TCHAR* path_old, const TCHAR* path_new); /* Rename/Move a file or directory */
  263. FRESULT f_stat (const TCHAR* path, FILINFO* fno); /* Get file status */
  264. FRESULT f_chmod (const TCHAR* path, BYTE attr, BYTE mask); /* Change attribute of a file/dir */
  265. FRESULT f_utime (const TCHAR* path, const FILINFO* fno); /* Change timestamp of a file/dir */
  266. FRESULT f_chdir (const TCHAR* path); /* Change current directory */
  267. FRESULT f_chdrive (const TCHAR* path); /* Change current drive */
  268. FRESULT f_getcwd (TCHAR* buff, UINT len); /* Get current directory */
  269. FRESULT f_getfree (const TCHAR* path, DWORD* nclst, FATFS** fatfs); /* Get number of free clusters on the drive */
  270. FRESULT f_getlabel (const TCHAR* path, TCHAR* label, DWORD* vsn); /* Get volume label */
  271. FRESULT f_setlabel (const TCHAR* label); /* Set volume label */
  272. FRESULT f_forward (FIL* fp, UINT(*func)(const BYTE*,UINT), UINT btf, UINT* bf); /* Forward data to the stream */
  273. FRESULT f_expand (FIL* fp, FSIZE_t fsz, BYTE opt); /* Allocate a contiguous block to the file */
  274. FRESULT f_mount (FATFS* fs, const TCHAR* path, BYTE opt); /* Mount/Unmount a logical drive */
  275. FRESULT f_mkfs (const TCHAR* path, const MKFS_PARM* opt, void* work, UINT len); /* Create a FAT volume */
  276. FRESULT f_fdisk (BYTE pdrv, const LBA_t ptbl[], void* work); /* Divide a physical drive into some partitions */
  277. FRESULT f_setcp (WORD cp); /* Set current code page */
  278. int f_putc (TCHAR c, FIL* fp); /* Put a character to the file */
  279. int f_puts (const TCHAR* str, FIL* cp); /* Put a string to the file */
  280. int f_printf (FIL* fp, const TCHAR* str, ...); /* Put a formatted string to the file */
  281. TCHAR* f_gets (TCHAR* buff, int len, FIL* fp); /* Get a string from the file */
  282. /* Some API fucntions are implemented as macro */
  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 Functions */
  293. /*--------------------------------------------------------------*/
  294. /* RTC function (provided by user) */
  295. #if !FF_FS_READONLY && !FF_FS_NORTC
  296. DWORD get_fattime (void); /* Get current time */
  297. #endif
  298. /* LFN support functions (defined in ffunicode.c) */
  299. #if FF_USE_LFN >= 1
  300. WCHAR ff_oem2uni (WCHAR oem, WORD cp); /* OEM code to Unicode conversion */
  301. WCHAR ff_uni2oem (DWORD uni, WORD cp); /* Unicode to OEM code conversion */
  302. DWORD ff_wtoupper (DWORD uni); /* Unicode upper-case conversion */
  303. #endif
  304. /* O/S dependent functions (samples available in ffsystem.c) */
  305. #if FF_USE_LFN == 3 /* Dynamic memory allocation */
  306. void* ff_memalloc (UINT msize); /* Allocate memory block */
  307. void ff_memfree (void* mblock); /* Free memory block */
  308. #endif
  309. #if FF_FS_REENTRANT /* Sync functions */
  310. int ff_mutex_create (int vol); /* Create a sync object */
  311. void ff_mutex_delete (int vol); /* Delete a sync object */
  312. int ff_mutex_take (int vol); /* Lock sync object */
  313. void ff_mutex_give (int vol); /* Unlock sync object */
  314. #endif
  315. /*--------------------------------------------------------------*/
  316. /* Flags and Offset Address */
  317. /*--------------------------------------------------------------*/
  318. /* File access mode and open method flags (3rd argument of f_open) */
  319. #define FA_READ 0x01
  320. #define FA_WRITE 0x02
  321. #define FA_OPEN_EXISTING 0x00
  322. #define FA_CREATE_NEW 0x04
  323. #define FA_CREATE_ALWAYS 0x08
  324. #define FA_OPEN_ALWAYS 0x10
  325. #define FA_OPEN_APPEND 0x30
  326. /* Fast seek controls (2nd argument of f_lseek) */
  327. #define CREATE_LINKMAP ((FSIZE_t)0 - 1)
  328. /* Format options (2nd argument of f_mkfs) */
  329. #define FM_FAT 0x01
  330. #define FM_FAT32 0x02
  331. #define FM_EXFAT 0x04
  332. #define FM_ANY 0x07
  333. #define FM_SFD 0x08
  334. /* Filesystem type (FATFS.fs_type) */
  335. #define FS_FAT12 1
  336. #define FS_FAT16 2
  337. #define FS_FAT32 3
  338. #define FS_EXFAT 4
  339. /* File attribute bits for directory entry (FILINFO.fattrib) */
  340. #define AM_RDO 0x01 /* Read only */
  341. #define AM_HID 0x02 /* Hidden */
  342. #define AM_SYS 0x04 /* System */
  343. #define AM_DIR 0x10 /* Directory */
  344. #define AM_ARC 0x20 /* Archive */
  345. #ifdef __cplusplus
  346. }
  347. #endif
  348. #endif /* FF_DEFINED */