Austin Schuh | 41baf20 | 2022-01-01 14:33:40 -0800 | [diff] [blame^] | 1 | /*----------------------------------------------------------------------------/ |
| 2 | / FatFs - FAT file system module R0.09b (C)ChaN, 2013 |
| 3 | /-----------------------------------------------------------------------------/ |
| 4 | / FatFs module is a generic FAT file system module for small embedded systems. |
| 5 | / This is a free software that opened for education, research and commercial |
| 6 | / developments under license policy of following terms. |
| 7 | / |
| 8 | / Copyright (C) 2013, ChaN, all right reserved. |
| 9 | / |
| 10 | / * The FatFs module is a free software and there is NO WARRANTY. |
| 11 | / * No restriction on use. You can use, modify and redistribute it for |
| 12 | / personal, non-profit or commercial products UNDER YOUR RESPONSIBILITY. |
| 13 | / * Redistributions of source code must retain the above copyright notice. |
| 14 | / |
| 15 | /-----------------------------------------------------------------------------/ |
| 16 | / Feb 26,'06 R0.00 Prototype. |
| 17 | / |
| 18 | / Apr 29,'06 R0.01 First stable version. |
| 19 | / |
| 20 | / Jun 01,'06 R0.02 Added FAT12 support. |
| 21 | / Removed unbuffered mode. |
| 22 | / Fixed a problem on small (<32M) partition. |
| 23 | / Jun 10,'06 R0.02a Added a configuration option (_FS_MINIMUM). |
| 24 | / |
| 25 | / Sep 22,'06 R0.03 Added f_rename(). |
| 26 | / Changed option _FS_MINIMUM to _FS_MINIMIZE. |
| 27 | / Dec 11,'06 R0.03a Improved cluster scan algorithm to write files fast. |
| 28 | / Fixed f_mkdir() creates incorrect directory on FAT32. |
| 29 | / |
| 30 | / Feb 04,'07 R0.04 Supported multiple drive system. |
| 31 | / Changed some interfaces for multiple drive system. |
| 32 | / Changed f_mountdrv() to f_mount(). |
| 33 | / Added f_mkfs(). |
| 34 | / Apr 01,'07 R0.04a Supported multiple partitions on a physical drive. |
| 35 | / Added a capability of extending file size to f_lseek(). |
| 36 | / Added minimization level 3. |
| 37 | / Fixed an endian sensitive code in f_mkfs(). |
| 38 | / May 05,'07 R0.04b Added a configuration option _USE_NTFLAG. |
| 39 | / Added FSInfo support. |
| 40 | / Fixed DBCS name can result FR_INVALID_NAME. |
| 41 | / Fixed short seek (<= csize) collapses the file object. |
| 42 | / |
| 43 | / Aug 25,'07 R0.05 Changed arguments of f_read(), f_write() and f_mkfs(). |
| 44 | / Fixed f_mkfs() on FAT32 creates incorrect FSInfo. |
| 45 | / Fixed f_mkdir() on FAT32 creates incorrect directory. |
| 46 | / Feb 03,'08 R0.05a Added f_truncate() and f_utime(). |
| 47 | / Fixed off by one error at FAT sub-type determination. |
| 48 | / Fixed btr in f_read() can be mistruncated. |
| 49 | / Fixed cached sector is not flushed when create and close without write. |
| 50 | / |
| 51 | / Apr 01,'08 R0.06 Added fputc(), fputs(), fprintf() and fgets(). |
| 52 | / Improved performance of f_lseek() on moving to the same or following cluster. |
| 53 | / |
| 54 | / Apr 01,'09 R0.07 Merged Tiny-FatFs as a configuration option. (_FS_TINY) |
| 55 | / Added long file name feature. |
| 56 | / Added multiple code page feature. |
| 57 | / Added re-entrancy for multitask operation. |
| 58 | / Added auto cluster size selection to f_mkfs(). |
| 59 | / Added rewind option to f_readdir(). |
| 60 | / Changed result code of critical errors. |
| 61 | / Renamed string functions to avoid name collision. |
| 62 | / Apr 14,'09 R0.07a Separated out OS dependent code on reentrant cfg. |
| 63 | / Added multiple sector size feature. |
| 64 | / Jun 21,'09 R0.07c Fixed f_unlink() can return FR_OK on error. |
| 65 | / Fixed wrong cache control in f_lseek(). |
| 66 | / Added relative path feature. |
| 67 | / Added f_chdir() and f_chdrive(). |
| 68 | / Added proper case conversion to extended char. |
| 69 | / Nov 03,'09 R0.07e Separated out configuration options from ff.h to ffconf.h. |
| 70 | / Fixed f_unlink() fails to remove a sub-dir on _FS_RPATH. |
| 71 | / Fixed name matching error on the 13 char boundary. |
| 72 | / Added a configuration option, _LFN_UNICODE. |
| 73 | / Changed f_readdir() to return the SFN with always upper case on non-LFN cfg. |
| 74 | / |
| 75 | / May 15,'10 R0.08 Added a memory configuration option. (_USE_LFN = 3) |
| 76 | / Added file lock feature. (_FS_SHARE) |
| 77 | / Added fast seek feature. (_USE_FASTSEEK) |
| 78 | / Changed some types on the API, XCHAR->TCHAR. |
| 79 | / Changed fname member in the FILINFO structure on Unicode cfg. |
| 80 | / String functions support UTF-8 encoding files on Unicode cfg. |
| 81 | / Aug 16,'10 R0.08a Added f_getcwd(). (_FS_RPATH = 2) |
| 82 | / Added sector erase feature. (_USE_ERASE) |
| 83 | / Moved file lock semaphore table from fs object to the bss. |
| 84 | / Fixed a wrong directory entry is created on non-LFN cfg when the given name contains ';'. |
| 85 | / Fixed f_mkfs() creates wrong FAT32 volume. |
| 86 | / Jan 15,'11 R0.08b Fast seek feature is also applied to f_read() and f_write(). |
| 87 | / f_lseek() reports required table size on creating CLMP. |
| 88 | / Extended format syntax of f_printf function. |
| 89 | / Ignores duplicated directory separators in given path name. |
| 90 | / |
| 91 | / Sep 06,'11 R0.09 f_mkfs() supports multiple partition to finish the multiple partition feature. |
| 92 | / Added f_fdisk(). (_MULTI_PARTITION = 2) |
| 93 | / Aug 27,'12 R0.09a Fixed assertion failure due to OS/2 EA on FAT12/16 volume. |
| 94 | / Changed f_open() and f_opendir reject null object pointer to avoid crash. |
| 95 | / Changed option name _FS_SHARE to _FS_LOCK. |
| 96 | / Jan 24,'13 R0.09b Added f_setlabel() and f_getlabel(). (_USE_LABEL = 1) |
| 97 | /---------------------------------------------------------------------------*/ |
| 98 | |
| 99 | #include "ff.h" /* FatFs configurations and declarations */ |
| 100 | #include "diskio.h" /* Declarations of low level disk I/O functions */ |
| 101 | |
| 102 | #if CFG_TUH_MSC |
| 103 | /*-------------------------------------------------------------------------- |
| 104 | |
| 105 | Module Private Definitions |
| 106 | |
| 107 | ---------------------------------------------------------------------------*/ |
| 108 | |
| 109 | #if _FATFS != 82786 /* Revision ID */ |
| 110 | #error Wrong include file (ff.h). |
| 111 | #endif |
| 112 | |
| 113 | |
| 114 | /* Definitions on sector size */ |
| 115 | #if _MAX_SS != 512 && _MAX_SS != 1024 && _MAX_SS != 2048 && _MAX_SS != 4096 |
| 116 | #error Wrong sector size. |
| 117 | #endif |
| 118 | #if _MAX_SS != 512 |
| 119 | #define SS(fs) ((fs)->ssize) /* Variable sector size */ |
| 120 | #else |
| 121 | #define SS(fs) 512U /* Fixed sector size */ |
| 122 | #endif |
| 123 | |
| 124 | |
| 125 | /* Reentrancy related */ |
| 126 | #if _FS_REENTRANT |
| 127 | #if _USE_LFN == 1 |
| 128 | #error Static LFN work area must not be used in re-entrant configuration. |
| 129 | #endif |
| 130 | #define ENTER_FF(fs) { if (!lock_fs(fs)) return FR_TIMEOUT; } |
| 131 | #define LEAVE_FF(fs, res) { unlock_fs(fs, res); return res; } |
| 132 | #else |
| 133 | #define ENTER_FF(fs) |
| 134 | #define LEAVE_FF(fs, res) return res |
| 135 | #endif |
| 136 | |
| 137 | #define ABORT(fs, res) { fp->flag |= FA__ERROR; LEAVE_FF(fs, res); } |
| 138 | |
| 139 | |
| 140 | /* File access control feature */ |
| 141 | #if _FS_LOCK |
| 142 | #if _FS_READONLY |
| 143 | #error _FS_LOCK must be 0 on read-only cfg. |
| 144 | #endif |
| 145 | typedef struct { |
| 146 | FATFS *fs; /* File ID 1, volume (NULL:blank entry) */ |
| 147 | DWORD clu; /* File ID 2, directory */ |
| 148 | WORD idx; /* File ID 3, directory index */ |
| 149 | WORD ctr; /* File open counter, 0:none, 0x01..0xFF:read open count, 0x100:write mode */ |
| 150 | } FILESEM; |
| 151 | #endif |
| 152 | |
| 153 | |
| 154 | |
| 155 | /* DBCS code ranges and SBCS extend char conversion table */ |
| 156 | |
| 157 | #if _CODE_PAGE == 932 /* Japanese Shift-JIS */ |
| 158 | #define _DF1S 0x81 /* DBC 1st byte range 1 start */ |
| 159 | #define _DF1E 0x9F /* DBC 1st byte range 1 end */ |
| 160 | #define _DF2S 0xE0 /* DBC 1st byte range 2 start */ |
| 161 | #define _DF2E 0xFC /* DBC 1st byte range 2 end */ |
| 162 | #define _DS1S 0x40 /* DBC 2nd byte range 1 start */ |
| 163 | #define _DS1E 0x7E /* DBC 2nd byte range 1 end */ |
| 164 | #define _DS2S 0x80 /* DBC 2nd byte range 2 start */ |
| 165 | #define _DS2E 0xFC /* DBC 2nd byte range 2 end */ |
| 166 | |
| 167 | #elif _CODE_PAGE == 936 /* Simplified Chinese GBK */ |
| 168 | #define _DF1S 0x81 |
| 169 | #define _DF1E 0xFE |
| 170 | #define _DS1S 0x40 |
| 171 | #define _DS1E 0x7E |
| 172 | #define _DS2S 0x80 |
| 173 | #define _DS2E 0xFE |
| 174 | |
| 175 | #elif _CODE_PAGE == 949 /* Korean */ |
| 176 | #define _DF1S 0x81 |
| 177 | #define _DF1E 0xFE |
| 178 | #define _DS1S 0x41 |
| 179 | #define _DS1E 0x5A |
| 180 | #define _DS2S 0x61 |
| 181 | #define _DS2E 0x7A |
| 182 | #define _DS3S 0x81 |
| 183 | #define _DS3E 0xFE |
| 184 | |
| 185 | #elif _CODE_PAGE == 950 /* Traditional Chinese Big5 */ |
| 186 | #define _DF1S 0x81 |
| 187 | #define _DF1E 0xFE |
| 188 | #define _DS1S 0x40 |
| 189 | #define _DS1E 0x7E |
| 190 | #define _DS2S 0xA1 |
| 191 | #define _DS2E 0xFE |
| 192 | |
| 193 | #elif _CODE_PAGE == 437 /* U.S. (OEM) */ |
| 194 | #define _DF1S 0 |
| 195 | #define _EXCVT {0x80,0x9A,0x90,0x41,0x8E,0x41,0x8F,0x80,0x45,0x45,0x45,0x49,0x49,0x49,0x8E,0x8F,0x90,0x92,0x92,0x4F,0x99,0x4F,0x55,0x55,0x59,0x99,0x9A,0x9B,0x9C,0x9D,0x9E,0x9F, \ |
| 196 | 0x41,0x49,0x4F,0x55,0xA5,0xA5,0xA6,0xA7,0xA8,0xA9,0xAA,0xAB,0xAC,0x21,0xAE,0xAF,0xB0,0xB1,0xB2,0xB3,0xB4,0xB5,0xB6,0xB7,0xB8,0xB9,0xBA,0xBB,0xBC,0xBD,0xBE,0xBF, \ |
| 197 | 0xC0,0xC1,0xC2,0xC3,0xC4,0xC5,0xC6,0xC7,0xC8,0xC9,0xCA,0xCB,0xCC,0xCD,0xCE,0xCF,0xD0,0xD1,0xD2,0xD3,0xD4,0xD5,0xD6,0xD7,0xD8,0xD9,0xDA,0xDB,0xDC,0xDD,0xDE,0xDF, \ |
| 198 | 0xE0,0xE1,0xE2,0xE3,0xE4,0xE5,0xE6,0xE7,0xE8,0xE9,0xEA,0xEB,0xEC,0xED,0xEE,0xEF,0xF0,0xF1,0xF2,0xF3,0xF4,0xF5,0xF6,0xF7,0xF8,0xF9,0xFA,0xFB,0xFC,0xFD,0xFE,0xFF} |
| 199 | |
| 200 | #elif _CODE_PAGE == 720 /* Arabic (OEM) */ |
| 201 | #define _DF1S 0 |
| 202 | #define _EXCVT {0x80,0x81,0x45,0x41,0x84,0x41,0x86,0x43,0x45,0x45,0x45,0x49,0x49,0x8D,0x8E,0x8F,0x90,0x92,0x92,0x93,0x94,0x95,0x49,0x49,0x98,0x99,0x9A,0x9B,0x9C,0x9D,0x9E,0x9F, \ |
| 203 | 0xA0,0xA1,0xA2,0xA3,0xA4,0xA5,0xA6,0xA7,0xA8,0xA9,0xAA,0xAB,0xAC,0xAD,0xAE,0xAF,0xB0,0xB1,0xB2,0xB3,0xB4,0xB5,0xB6,0xB7,0xB8,0xB9,0xBA,0xBB,0xBC,0xBD,0xBE,0xBF, \ |
| 204 | 0xC0,0xC1,0xC2,0xC3,0xC4,0xC5,0xC6,0xC7,0xC8,0xC9,0xCA,0xCB,0xCC,0xCD,0xCE,0xCF,0xD0,0xD1,0xD2,0xD3,0xD4,0xD5,0xD6,0xD7,0xD8,0xD9,0xDA,0xDB,0xDC,0xDD,0xDE,0xDF, \ |
| 205 | 0xE0,0xE1,0xE2,0xE3,0xE4,0xE5,0xE6,0xE7,0xE8,0xE9,0xEA,0xEB,0xEC,0xED,0xEE,0xEF,0xF0,0xF1,0xF2,0xF3,0xF4,0xF5,0xF6,0xF7,0xF8,0xF9,0xFA,0xFB,0xFC,0xFD,0xFE,0xFF} |
| 206 | |
| 207 | #elif _CODE_PAGE == 737 /* Greek (OEM) */ |
| 208 | #define _DF1S 0 |
| 209 | #define _EXCVT {0x80,0x81,0x82,0x83,0x84,0x85,0x86,0x87,0x88,0x89,0x8A,0x8B,0x8C,0x8D,0x8E,0x8F,0x90,0x92,0x92,0x93,0x94,0x95,0x96,0x97,0x80,0x81,0x82,0x83,0x84,0x85,0x86,0x87, \ |
| 210 | 0x88,0x89,0x8A,0x8B,0x8C,0x8D,0x8E,0x8F,0x90,0x91,0xAA,0x92,0x93,0x94,0x95,0x96,0xB0,0xB1,0xB2,0xB3,0xB4,0xB5,0xB6,0xB7,0xB8,0xB9,0xBA,0xBB,0xBC,0xBD,0xBE,0xBF, \ |
| 211 | 0xC0,0xC1,0xC2,0xC3,0xC4,0xC5,0xC6,0xC7,0xC8,0xC9,0xCA,0xCB,0xCC,0xCD,0xCE,0xCF,0xD0,0xD1,0xD2,0xD3,0xD4,0xD5,0xD6,0xD7,0xD8,0xD9,0xDA,0xDB,0xDC,0xDD,0xDE,0xDF, \ |
| 212 | 0x97,0xEA,0xEB,0xEC,0xE4,0xED,0xEE,0xE7,0xE8,0xF1,0xEA,0xEB,0xEC,0xED,0xEE,0xEF,0xF0,0xF1,0xF2,0xF3,0xF4,0xF5,0xF6,0xF7,0xF8,0xF9,0xFA,0xFB,0xFC,0xFD,0xFE,0xFF} |
| 213 | |
| 214 | #elif _CODE_PAGE == 775 /* Baltic (OEM) */ |
| 215 | #define _DF1S 0 |
| 216 | #define _EXCVT {0x80,0x9A,0x91,0xA0,0x8E,0x95,0x8F,0x80,0xAD,0xED,0x8A,0x8A,0xA1,0x8D,0x8E,0x8F,0x90,0x92,0x92,0xE2,0x99,0x95,0x96,0x97,0x97,0x99,0x9A,0x9D,0x9C,0x9D,0x9E,0x9F, \ |
| 217 | 0xA0,0xA1,0xE0,0xA3,0xA3,0xA5,0xA6,0xA7,0xA8,0xA9,0xAA,0xAB,0xAC,0xAD,0xAE,0xAF,0xB0,0xB1,0xB2,0xB3,0xB4,0xB5,0xB6,0xB7,0xB8,0xB9,0xBA,0xBB,0xBC,0xBD,0xBE,0xBF, \ |
| 218 | 0xC0,0xC1,0xC2,0xC3,0xC4,0xC5,0xC6,0xC7,0xC8,0xC9,0xCA,0xCB,0xCC,0xCD,0xCE,0xCF,0xB5,0xB6,0xB7,0xB8,0xBD,0xBE,0xC6,0xC7,0xA5,0xD9,0xDA,0xDB,0xDC,0xDD,0xDE,0xDF, \ |
| 219 | 0xE0,0xE1,0xE2,0xE3,0xE5,0xE5,0xE6,0xE3,0xE8,0xE8,0xEA,0xEA,0xEE,0xED,0xEE,0xEF,0xF0,0xF1,0xF2,0xF3,0xF4,0xF5,0xF6,0xF7,0xF8,0xF9,0xFA,0xFB,0xFC,0xFD,0xFE,0xFF} |
| 220 | |
| 221 | #elif _CODE_PAGE == 850 /* Multilingual Latin 1 (OEM) */ |
| 222 | #define _DF1S 0 |
| 223 | #define _EXCVT {0x80,0x9A,0x90,0xB6,0x8E,0xB7,0x8F,0x80,0xD2,0xD3,0xD4,0xD8,0xD7,0xDE,0x8E,0x8F,0x90,0x92,0x92,0xE2,0x99,0xE3,0xEA,0xEB,0x59,0x99,0x9A,0x9D,0x9C,0x9D,0x9E,0x9F, \ |
| 224 | 0xB5,0xD6,0xE0,0xE9,0xA5,0xA5,0xA6,0xA7,0xA8,0xA9,0xAA,0xAB,0xAC,0x21,0xAE,0xAF,0xB0,0xB1,0xB2,0xB3,0xB4,0xB5,0xB6,0xB7,0xB8,0xB9,0xBA,0xBB,0xBC,0xBD,0xBE,0xBF, \ |
| 225 | 0xC0,0xC1,0xC2,0xC3,0xC4,0xC5,0xC7,0xC7,0xC8,0xC9,0xCA,0xCB,0xCC,0xCD,0xCE,0xCF,0xD0,0xD1,0xD2,0xD3,0xD4,0xD5,0xD6,0xD7,0xD8,0xD9,0xDA,0xDB,0xDC,0xDD,0xDE,0xDF, \ |
| 226 | 0xE0,0xE1,0xE2,0xE3,0xE5,0xE5,0xE6,0xE7,0xE7,0xE9,0xEA,0xEB,0xED,0xED,0xEE,0xEF,0xF0,0xF1,0xF2,0xF3,0xF4,0xF5,0xF6,0xF7,0xF8,0xF9,0xFA,0xFB,0xFC,0xFD,0xFE,0xFF} |
| 227 | |
| 228 | #elif _CODE_PAGE == 852 /* Latin 2 (OEM) */ |
| 229 | #define _DF1S 0 |
| 230 | #define _EXCVT {0x80,0x9A,0x90,0xB6,0x8E,0xDE,0x8F,0x80,0x9D,0xD3,0x8A,0x8A,0xD7,0x8D,0x8E,0x8F,0x90,0x91,0x91,0xE2,0x99,0x95,0x95,0x97,0x97,0x99,0x9A,0x9B,0x9B,0x9D,0x9E,0x9F, \ |
| 231 | 0xB5,0xD6,0xE0,0xE9,0xA4,0xA4,0xA6,0xA6,0xA8,0xA8,0xAA,0x8D,0xAC,0xB8,0xAE,0xAF,0xB0,0xB1,0xB2,0xB3,0xB4,0xB5,0xB6,0xB7,0xB8,0xB9,0xBA,0xBB,0xBC,0xBD,0xBD,0xBF, \ |
| 232 | 0xC0,0xC1,0xC2,0xC3,0xC4,0xC5,0xC6,0xC6,0xC8,0xC9,0xCA,0xCB,0xCC,0xCD,0xCE,0xCF,0xD1,0xD1,0xD2,0xD3,0xD2,0xD5,0xD6,0xD7,0xB7,0xD9,0xDA,0xDB,0xDC,0xDD,0xDE,0xDF, \ |
| 233 | 0xE0,0xE1,0xE2,0xE3,0xE3,0xD5,0xE6,0xE6,0xE8,0xE9,0xE8,0xEB,0xED,0xED,0xDD,0xEF,0xF0,0xF1,0xF2,0xF3,0xF4,0xF5,0xF6,0xF7,0xF8,0xF9,0xFA,0xEB,0xFC,0xFC,0xFE,0xFF} |
| 234 | |
| 235 | #elif _CODE_PAGE == 855 /* Cyrillic (OEM) */ |
| 236 | #define _DF1S 0 |
| 237 | #define _EXCVT {0x81,0x81,0x83,0x83,0x85,0x85,0x87,0x87,0x89,0x89,0x8B,0x8B,0x8D,0x8D,0x8F,0x8F,0x91,0x91,0x93,0x93,0x95,0x95,0x97,0x97,0x99,0x99,0x9B,0x9B,0x9D,0x9D,0x9F,0x9F, \ |
| 238 | 0xA1,0xA1,0xA3,0xA3,0xA5,0xA5,0xA7,0xA7,0xA9,0xA9,0xAB,0xAB,0xAD,0xAD,0xAE,0xAF,0xB0,0xB1,0xB2,0xB3,0xB4,0xB6,0xB6,0xB8,0xB8,0xB9,0xBA,0xBB,0xBC,0xBE,0xBE,0xBF, \ |
| 239 | 0xC0,0xC1,0xC2,0xC3,0xC4,0xC5,0xC7,0xC7,0xC8,0xC9,0xCA,0xCB,0xCC,0xCD,0xCE,0xCF,0xD1,0xD1,0xD3,0xD3,0xD5,0xD5,0xD7,0xD7,0xDD,0xD9,0xDA,0xDB,0xDC,0xDD,0xE0,0xDF, \ |
| 240 | 0xE0,0xE2,0xE2,0xE4,0xE4,0xE6,0xE6,0xE8,0xE8,0xEA,0xEA,0xEC,0xEC,0xEE,0xEE,0xEF,0xF0,0xF2,0xF2,0xF4,0xF4,0xF6,0xF6,0xF8,0xF8,0xFA,0xFA,0xFC,0xFC,0xFD,0xFE,0xFF} |
| 241 | |
| 242 | #elif _CODE_PAGE == 857 /* Turkish (OEM) */ |
| 243 | #define _DF1S 0 |
| 244 | #define _EXCVT {0x80,0x9A,0x90,0xB6,0x8E,0xB7,0x8F,0x80,0xD2,0xD3,0xD4,0xD8,0xD7,0x98,0x8E,0x8F,0x90,0x92,0x92,0xE2,0x99,0xE3,0xEA,0xEB,0x98,0x99,0x9A,0x9D,0x9C,0x9D,0x9E,0x9E, \ |
| 245 | 0xB5,0xD6,0xE0,0xE9,0xA5,0xA5,0xA6,0xA6,0xA8,0xA9,0xAA,0xAB,0xAC,0x21,0xAE,0xAF,0xB0,0xB1,0xB2,0xB3,0xB4,0xB5,0xB6,0xB7,0xB8,0xB9,0xBA,0xBB,0xBC,0xBD,0xBE,0xBF, \ |
| 246 | 0xC0,0xC1,0xC2,0xC3,0xC4,0xC5,0xC7,0xC7,0xC8,0xC9,0xCA,0xCB,0xCC,0xCD,0xCE,0xCF,0xD0,0xD1,0xD2,0xD3,0xD4,0xD5,0xD6,0xD7,0xD8,0xD9,0xDA,0xDB,0xDC,0xDD,0xDE,0xDF, \ |
| 247 | 0xE0,0xE1,0xE2,0xE3,0xE5,0xE5,0xE6,0xE7,0xE8,0xE9,0xEA,0xEB,0xDE,0x59,0xEE,0xEF,0xF0,0xF1,0xF2,0xF3,0xF4,0xF5,0xF6,0xF7,0xF8,0xF9,0xFA,0xFB,0xFC,0xFD,0xFE,0xFF} |
| 248 | |
| 249 | #elif _CODE_PAGE == 858 /* Multilingual Latin 1 + Euro (OEM) */ |
| 250 | #define _DF1S 0 |
| 251 | #define _EXCVT {0x80,0x9A,0x90,0xB6,0x8E,0xB7,0x8F,0x80,0xD2,0xD3,0xD4,0xD8,0xD7,0xDE,0x8E,0x8F,0x90,0x92,0x92,0xE2,0x99,0xE3,0xEA,0xEB,0x59,0x99,0x9A,0x9D,0x9C,0x9D,0x9E,0x9F, \ |
| 252 | 0xB5,0xD6,0xE0,0xE9,0xA5,0xA5,0xA6,0xA7,0xA8,0xA9,0xAA,0xAB,0xAC,0x21,0xAE,0xAF,0xB0,0xB1,0xB2,0xB3,0xB4,0xB5,0xB6,0xB7,0xB8,0xB9,0xBA,0xBB,0xBC,0xBD,0xBE,0xBF, \ |
| 253 | 0xC0,0xC1,0xC2,0xC3,0xC4,0xC5,0xC7,0xC7,0xC8,0xC9,0xCA,0xCB,0xCC,0xCD,0xCE,0xCF,0xD1,0xD1,0xD2,0xD3,0xD4,0xD5,0xD6,0xD7,0xD8,0xD9,0xDA,0xDB,0xDC,0xDD,0xDE,0xDF, \ |
| 254 | 0xE0,0xE1,0xE2,0xE3,0xE5,0xE5,0xE6,0xE7,0xE7,0xE9,0xEA,0xEB,0xED,0xED,0xEE,0xEF,0xF0,0xF1,0xF2,0xF3,0xF4,0xF5,0xF6,0xF7,0xF8,0xF9,0xFA,0xFB,0xFC,0xFD,0xFE,0xFF} |
| 255 | |
| 256 | #elif _CODE_PAGE == 862 /* Hebrew (OEM) */ |
| 257 | #define _DF1S 0 |
| 258 | #define _EXCVT {0x80,0x81,0x82,0x83,0x84,0x85,0x86,0x87,0x88,0x89,0x8A,0x8B,0x8C,0x8D,0x8E,0x8F,0x90,0x91,0x92,0x93,0x94,0x95,0x96,0x97,0x98,0x99,0x9A,0x9B,0x9C,0x9D,0x9E,0x9F, \ |
| 259 | 0x41,0x49,0x4F,0x55,0xA5,0xA5,0xA6,0xA7,0xA8,0xA9,0xAA,0xAB,0xAC,0x21,0xAE,0xAF,0xB0,0xB1,0xB2,0xB3,0xB4,0xB5,0xB6,0xB7,0xB8,0xB9,0xBA,0xBB,0xBC,0xBD,0xBE,0xBF, \ |
| 260 | 0xC0,0xC1,0xC2,0xC3,0xC4,0xC5,0xC6,0xC7,0xC8,0xC9,0xCA,0xCB,0xCC,0xCD,0xCE,0xCF,0xD0,0xD1,0xD2,0xD3,0xD4,0xD5,0xD6,0xD7,0xD8,0xD9,0xDA,0xDB,0xDC,0xDD,0xDE,0xDF, \ |
| 261 | 0xE0,0xE1,0xE2,0xE3,0xE4,0xE5,0xE6,0xE7,0xE8,0xE9,0xEA,0xEB,0xEC,0xED,0xEE,0xEF,0xF0,0xF1,0xF2,0xF3,0xF4,0xF5,0xF6,0xF7,0xF8,0xF9,0xFA,0xFB,0xFC,0xFD,0xFE,0xFF} |
| 262 | |
| 263 | #elif _CODE_PAGE == 866 /* Russian (OEM) */ |
| 264 | #define _DF1S 0 |
| 265 | #define _EXCVT {0x80,0x81,0x82,0x83,0x84,0x85,0x86,0x87,0x88,0x89,0x8A,0x8B,0x8C,0x8D,0x8E,0x8F,0x90,0x91,0x92,0x93,0x94,0x95,0x96,0x97,0x98,0x99,0x9A,0x9B,0x9C,0x9D,0x9E,0x9F, \ |
| 266 | 0x80,0x81,0x82,0x83,0x84,0x85,0x86,0x87,0x88,0x89,0x8A,0x8B,0x8C,0x8D,0x8E,0x8F,0xB0,0xB1,0xB2,0xB3,0xB4,0xB5,0xB6,0xB7,0xB8,0xB9,0xBA,0xBB,0xBC,0xBD,0xBE,0xBF, \ |
| 267 | 0xC0,0xC1,0xC2,0xC3,0xC4,0xC5,0xC6,0xC7,0xC8,0xC9,0xCA,0xCB,0xCC,0xCD,0xCE,0xCF,0xD0,0xD1,0xD2,0xD3,0xD4,0xD5,0xD6,0xD7,0xD8,0xD9,0xDA,0xDB,0xDC,0xDD,0xDE,0xDF, \ |
| 268 | 0x90,0x91,0x92,0x93,0x9d,0x95,0x96,0x97,0x98,0x99,0x9A,0x9B,0x9C,0x9D,0x9E,0x9F,0xF0,0xF0,0xF2,0xF2,0xF4,0xF4,0xF6,0xF6,0xF8,0xF9,0xFA,0xFB,0xFC,0xFD,0xFE,0xFF} |
| 269 | |
| 270 | #elif _CODE_PAGE == 874 /* Thai (OEM, Windows) */ |
| 271 | #define _DF1S 0 |
| 272 | #define _EXCVT {0x80,0x81,0x82,0x83,0x84,0x85,0x86,0x87,0x88,0x89,0x8A,0x8B,0x8C,0x8D,0x8E,0x8F,0x90,0x91,0x92,0x93,0x94,0x95,0x96,0x97,0x98,0x99,0x9A,0x9B,0x9C,0x9D,0x9E,0x9F, \ |
| 273 | 0xA0,0xA1,0xA2,0xA3,0xA4,0xA5,0xA6,0xA7,0xA8,0xA9,0xAA,0xAB,0xAC,0xAD,0xAE,0xAF,0xB0,0xB1,0xB2,0xB3,0xB4,0xB5,0xB6,0xB7,0xB8,0xB9,0xBA,0xBB,0xBC,0xBD,0xBE,0xBF, \ |
| 274 | 0xC0,0xC1,0xC2,0xC3,0xC4,0xC5,0xC6,0xC7,0xC8,0xC9,0xCA,0xCB,0xCC,0xCD,0xCE,0xCF,0xD0,0xD1,0xD2,0xD3,0xD4,0xD5,0xD6,0xD7,0xD8,0xD9,0xDA,0xDB,0xDC,0xDD,0xDE,0xDF, \ |
| 275 | 0xE0,0xE1,0xE2,0xE3,0xE4,0xE5,0xE6,0xE7,0xE8,0xE9,0xEA,0xEB,0xEC,0xED,0xEE,0xEF,0xF0,0xF1,0xF2,0xF3,0xF4,0xF5,0xF6,0xF7,0xF8,0xF9,0xFA,0xFB,0xFC,0xFD,0xFE,0xFF} |
| 276 | |
| 277 | #elif _CODE_PAGE == 1250 /* Central Europe (Windows) */ |
| 278 | #define _DF1S 0 |
| 279 | #define _EXCVT {0x80,0x81,0x82,0x83,0x84,0x85,0x86,0x87,0x88,0x89,0x8A,0x8B,0x8C,0x8D,0x8E,0x8F,0x90,0x91,0x92,0x93,0x94,0x95,0x96,0x97,0x98,0x99,0x8A,0x9B,0x8C,0x8D,0x8E,0x8F, \ |
| 280 | 0xA0,0xA1,0xA2,0xA3,0xA4,0xA5,0xA6,0xA7,0xA8,0xA9,0xAA,0xAB,0xAC,0xAD,0xAE,0xAF,0xB0,0xB1,0xB2,0xA3,0xB4,0xB5,0xB6,0xB7,0xB8,0xA5,0xAA,0xBB,0xBC,0xBD,0xBC,0xAF, \ |
| 281 | 0xC0,0xC1,0xC2,0xC3,0xC4,0xC5,0xC6,0xC7,0xC8,0xC9,0xCA,0xCB,0xCC,0xCD,0xCE,0xCF,0xD0,0xD1,0xD2,0xD3,0xD4,0xD5,0xD6,0xD7,0xD8,0xD9,0xDA,0xDB,0xDC,0xDD,0xDE,0xDF, \ |
| 282 | 0xC0,0xC1,0xC2,0xC3,0xC4,0xC5,0xC6,0xC7,0xC8,0xC9,0xCA,0xCB,0xCC,0xCD,0xCE,0xCF,0xD0,0xD1,0xD2,0xD3,0xD4,0xD5,0xD6,0xF7,0xD8,0xD9,0xDA,0xDB,0xDC,0xDD,0xDE,0xFF} |
| 283 | |
| 284 | #elif _CODE_PAGE == 1251 /* Cyrillic (Windows) */ |
| 285 | #define _DF1S 0 |
| 286 | #define _EXCVT {0x80,0x81,0x82,0x82,0x84,0x85,0x86,0x87,0x88,0x89,0x8A,0x8B,0x8C,0x8D,0x8E,0x8F,0x80,0x91,0x92,0x93,0x94,0x95,0x96,0x97,0x98,0x99,0x8A,0x9B,0x8C,0x8D,0x8E,0x8F, \ |
| 287 | 0xA0,0xA2,0xA2,0xA3,0xA4,0xA5,0xA6,0xA7,0xA8,0xA9,0xAA,0xAB,0xAC,0xAD,0xAE,0xAF,0xB0,0xB1,0xB2,0xB2,0xA5,0xB5,0xB6,0xB7,0xA8,0xB9,0xAA,0xBB,0xA3,0xBD,0xBD,0xAF, \ |
| 288 | 0xC0,0xC1,0xC2,0xC3,0xC4,0xC5,0xC6,0xC7,0xC8,0xC9,0xCA,0xCB,0xCC,0xCD,0xCE,0xCF,0xD0,0xD1,0xD2,0xD3,0xD4,0xD5,0xD6,0xD7,0xD8,0xD9,0xDA,0xDB,0xDC,0xDD,0xDE,0xDF, \ |
| 289 | 0xC0,0xC1,0xC2,0xC3,0xC4,0xC5,0xC6,0xC7,0xC8,0xC9,0xCA,0xCB,0xCC,0xCD,0xCE,0xCF,0xD0,0xD1,0xD2,0xD3,0xD4,0xD5,0xD6,0xD7,0xD8,0xD9,0xDA,0xDB,0xDC,0xDD,0xDE,0xDF} |
| 290 | |
| 291 | #elif _CODE_PAGE == 1252 /* Latin 1 (Windows) */ |
| 292 | #define _DF1S 0 |
| 293 | #define _EXCVT {0x80,0x81,0x82,0x83,0x84,0x85,0x86,0x87,0x88,0x89,0x8A,0x8B,0x8C,0x8D,0x8E,0x8F,0x90,0x91,0x92,0x93,0x94,0x95,0x96,0x97,0x98,0x99,0xAd,0x9B,0x8C,0x9D,0xAE,0x9F, \ |
| 294 | 0xA0,0x21,0xA2,0xA3,0xA4,0xA5,0xA6,0xA7,0xA8,0xA9,0xAA,0xAB,0xAC,0xAD,0xAE,0xAF,0xB0,0xB1,0xB2,0xB3,0xB4,0xB5,0xB6,0xB7,0xB8,0xB9,0xBA,0xBB,0xBC,0xBD,0xBE,0xBF, \ |
| 295 | 0xC0,0xC1,0xC2,0xC3,0xC4,0xC5,0xC6,0xC7,0xC8,0xC9,0xCA,0xCB,0xCC,0xCD,0xCE,0xCF,0xD0,0xD1,0xD2,0xD3,0xD4,0xD5,0xD6,0xD7,0xD8,0xD9,0xDA,0xDB,0xDC,0xDD,0xDE,0xDF, \ |
| 296 | 0xC0,0xC1,0xC2,0xC3,0xC4,0xC5,0xC6,0xC7,0xC8,0xC9,0xCA,0xCB,0xCC,0xCD,0xCE,0xCF,0xD0,0xD1,0xD2,0xD3,0xD4,0xD5,0xD6,0xF7,0xD8,0xD9,0xDA,0xDB,0xDC,0xDD,0xDE,0x9F} |
| 297 | |
| 298 | #elif _CODE_PAGE == 1253 /* Greek (Windows) */ |
| 299 | #define _DF1S 0 |
| 300 | #define _EXCVT {0x80,0x81,0x82,0x83,0x84,0x85,0x86,0x87,0x88,0x89,0x8A,0x8B,0x8C,0x8D,0x8E,0x8F,0x90,0x91,0x92,0x93,0x94,0x95,0x96,0x97,0x98,0x99,0x9A,0x9B,0x9C,0x9D,0x9E,0x9F, \ |
| 301 | 0xA0,0xA1,0xA2,0xA3,0xA4,0xA5,0xA6,0xA7,0xA8,0xA9,0xAA,0xAB,0xAC,0xAD,0xAE,0xAF,0xB0,0xB1,0xB2,0xB3,0xB4,0xB5,0xB6,0xB7,0xB8,0xB9,0xBA,0xBB,0xBC,0xBD,0xBE,0xBF, \ |
| 302 | 0xC0,0xC1,0xC2,0xC3,0xC4,0xC5,0xC6,0xC7,0xC8,0xC9,0xCA,0xCB,0xCC,0xCD,0xCE,0xCF,0xD0,0xD1,0xD2,0xD3,0xD4,0xD5,0xD6,0xD7,0xD8,0xD9,0xDA,0xDB,0xA2,0xB8,0xB9,0xBA, \ |
| 303 | 0xE0,0xC1,0xC2,0xC3,0xC4,0xC5,0xC6,0xC7,0xC8,0xC9,0xCA,0xCB,0xCC,0xCD,0xCE,0xCF,0xD0,0xD1,0xF2,0xD3,0xD4,0xD5,0xD6,0xD7,0xD8,0xD9,0xDA,0xFB,0xBC,0xFD,0xBF,0xFF} |
| 304 | |
| 305 | #elif _CODE_PAGE == 1254 /* Turkish (Windows) */ |
| 306 | #define _DF1S 0 |
| 307 | #define _EXCVT {0x80,0x81,0x82,0x83,0x84,0x85,0x86,0x87,0x88,0x89,0x8A,0x8B,0x8C,0x8D,0x8E,0x8F,0x90,0x91,0x92,0x93,0x94,0x95,0x96,0x97,0x98,0x99,0x8A,0x9B,0x8C,0x9D,0x9E,0x9F, \ |
| 308 | 0xA0,0x21,0xA2,0xA3,0xA4,0xA5,0xA6,0xA7,0xA8,0xA9,0xAA,0xAB,0xAC,0xAD,0xAE,0xAF,0xB0,0xB1,0xB2,0xB3,0xB4,0xB5,0xB6,0xB7,0xB8,0xB9,0xBA,0xBB,0xBC,0xBD,0xBE,0xBF, \ |
| 309 | 0xC0,0xC1,0xC2,0xC3,0xC4,0xC5,0xC6,0xC7,0xC8,0xC9,0xCA,0xCB,0xCC,0xCD,0xCE,0xCF,0xD0,0xD1,0xD2,0xD3,0xD4,0xD5,0xD6,0xD7,0xD8,0xD9,0xDA,0xDB,0xDC,0xDD,0xDE,0xDF, \ |
| 310 | 0xC0,0xC1,0xC2,0xC3,0xC4,0xC5,0xC6,0xC7,0xC8,0xC9,0xCA,0xCB,0xCC,0xCD,0xCE,0xCF,0xD0,0xD1,0xD2,0xD3,0xD4,0xD5,0xD6,0xF7,0xD8,0xD9,0xDA,0xDB,0xDC,0xDD,0xDE,0x9F} |
| 311 | |
| 312 | #elif _CODE_PAGE == 1255 /* Hebrew (Windows) */ |
| 313 | #define _DF1S 0 |
| 314 | #define _EXCVT {0x80,0x81,0x82,0x83,0x84,0x85,0x86,0x87,0x88,0x89,0x8A,0x8B,0x8C,0x8D,0x8E,0x8F,0x90,0x91,0x92,0x93,0x94,0x95,0x96,0x97,0x98,0x99,0x9A,0x9B,0x9C,0x9D,0x9E,0x9F, \ |
| 315 | 0xA0,0x21,0xA2,0xA3,0xA4,0xA5,0xA6,0xA7,0xA8,0xA9,0xAA,0xAB,0xAC,0xAD,0xAE,0xAF,0xB0,0xB1,0xB2,0xB3,0xB4,0xB5,0xB6,0xB7,0xB8,0xB9,0xBA,0xBB,0xBC,0xBD,0xBE,0xBF, \ |
| 316 | 0xC0,0xC1,0xC2,0xC3,0xC4,0xC5,0xC6,0xC7,0xC8,0xC9,0xCA,0xCB,0xCC,0xCD,0xCE,0xCF,0xD0,0xD1,0xD2,0xD3,0xD4,0xD5,0xD6,0xD7,0xD8,0xD9,0xDA,0xDB,0xDC,0xDD,0xDE,0xDF, \ |
| 317 | 0xE0,0xE1,0xE2,0xE3,0xE4,0xE5,0xE6,0xE7,0xE8,0xE9,0xEA,0xEB,0xEC,0xED,0xEE,0xEF,0xF0,0xF1,0xF2,0xF3,0xF4,0xF5,0xF6,0xF7,0xF8,0xF9,0xFA,0xFB,0xFC,0xFD,0xFE,0xFF} |
| 318 | |
| 319 | #elif _CODE_PAGE == 1256 /* Arabic (Windows) */ |
| 320 | #define _DF1S 0 |
| 321 | #define _EXCVT {0x80,0x81,0x82,0x83,0x84,0x85,0x86,0x87,0x88,0x89,0x8A,0x8B,0x8C,0x8D,0x8E,0x8F,0x90,0x91,0x92,0x93,0x94,0x95,0x96,0x97,0x98,0x99,0x9A,0x9B,0x8C,0x9D,0x9E,0x9F, \ |
| 322 | 0xA0,0xA1,0xA2,0xA3,0xA4,0xA5,0xA6,0xA7,0xA8,0xA9,0xAA,0xAB,0xAC,0xAD,0xAE,0xAF,0xB0,0xB1,0xB2,0xB3,0xB4,0xB5,0xB6,0xB7,0xB8,0xB9,0xBA,0xBB,0xBC,0xBD,0xBE,0xBF, \ |
| 323 | 0xC0,0xC1,0xC2,0xC3,0xC4,0xC5,0xC6,0xC7,0xC8,0xC9,0xCA,0xCB,0xCC,0xCD,0xCE,0xCF,0xD0,0xD1,0xD2,0xD3,0xD4,0xD5,0xD6,0xD7,0xD8,0xD9,0xDA,0xDB,0xDC,0xDD,0xDE,0xDF, \ |
| 324 | 0x41,0xE1,0x41,0xE3,0xE4,0xE5,0xE6,0x43,0x45,0x45,0x45,0x45,0xEC,0xED,0x49,0x49,0xF0,0xF1,0xF2,0xF3,0x4F,0xF5,0xF6,0xF7,0xF8,0x55,0xFA,0x55,0x55,0xFD,0xFE,0xFF} |
| 325 | |
| 326 | #elif _CODE_PAGE == 1257 /* Baltic (Windows) */ |
| 327 | #define _DF1S 0 |
| 328 | #define _EXCVT {0x80,0x81,0x82,0x83,0x84,0x85,0x86,0x87,0x88,0x89,0x8A,0x8B,0x8C,0x8D,0x8E,0x8F,0x90,0x91,0x92,0x93,0x94,0x95,0x96,0x97,0x98,0x99,0x9A,0x9B,0x9C,0x9D,0x9E,0x9F, \ |
| 329 | 0xA0,0xA1,0xA2,0xA3,0xA4,0xA5,0xA6,0xA7,0xA8,0xA9,0xAA,0xAB,0xAC,0xAD,0xAE,0xAF,0xB0,0xB1,0xB2,0xB3,0xB4,0xB5,0xB6,0xB7,0xA8,0xB9,0xAA,0xBB,0xBC,0xBD,0xBE,0xAF, \ |
| 330 | 0xC0,0xC1,0xC2,0xC3,0xC4,0xC5,0xC6,0xC7,0xC8,0xC9,0xCA,0xCB,0xCC,0xCD,0xCE,0xCF,0xD0,0xD1,0xD2,0xD3,0xD4,0xD5,0xD6,0xD7,0xD8,0xD9,0xDA,0xDB,0xDC,0xDD,0xDE,0xDF, \ |
| 331 | 0xC0,0xC1,0xC2,0xC3,0xC4,0xC5,0xC6,0xC7,0xC8,0xC9,0xCA,0xCB,0xCC,0xCD,0xCE,0xCF,0xD0,0xD1,0xD2,0xD3,0xD4,0xD5,0xD6,0xF7,0xD8,0xD9,0xDA,0xDB,0xDC,0xDD,0xDE,0xFF} |
| 332 | |
| 333 | #elif _CODE_PAGE == 1258 /* Vietnam (OEM, Windows) */ |
| 334 | #define _DF1S 0 |
| 335 | #define _EXCVT {0x80,0x81,0x82,0x83,0x84,0x85,0x86,0x87,0x88,0x89,0x8A,0x8B,0x8C,0x8D,0x8E,0x8F,0x90,0x91,0x92,0x93,0x94,0x95,0x96,0x97,0x98,0x99,0x9A,0x9B,0xAC,0x9D,0x9E,0x9F, \ |
| 336 | 0xA0,0x21,0xA2,0xA3,0xA4,0xA5,0xA6,0xA7,0xA8,0xA9,0xAA,0xAB,0xAC,0xAD,0xAE,0xAF,0xB0,0xB1,0xB2,0xB3,0xB4,0xB5,0xB6,0xB7,0xB8,0xB9,0xBA,0xBB,0xBC,0xBD,0xBE,0xBF, \ |
| 337 | 0xC0,0xC1,0xC2,0xC3,0xC4,0xC5,0xC6,0xC7,0xC8,0xC9,0xCA,0xCB,0xCC,0xCD,0xCE,0xCF,0xD0,0xD1,0xD2,0xD3,0xD4,0xD5,0xD6,0xD7,0xD8,0xD9,0xDA,0xDB,0xDC,0xDD,0xDE,0xDF, \ |
| 338 | 0xC0,0xC1,0xC2,0xC3,0xC4,0xC5,0xC6,0xC7,0xC8,0xC9,0xCA,0xCB,0xEC,0xCD,0xCE,0xCF,0xD0,0xD1,0xF2,0xD3,0xD4,0xD5,0xD6,0xF7,0xD8,0xD9,0xDA,0xDB,0xDC,0xDD,0xFE,0x9F} |
| 339 | |
| 340 | #elif _CODE_PAGE == 1 /* ASCII (for only non-LFN cfg) */ |
| 341 | #if _USE_LFN |
| 342 | #error Cannot use LFN feature without valid code page. |
| 343 | #endif |
| 344 | #define _DF1S 0 |
| 345 | |
| 346 | #else |
| 347 | #error Unknown code page |
| 348 | |
| 349 | #endif |
| 350 | |
| 351 | |
| 352 | /* Character code support macros */ |
| 353 | #define IsUpper(c) (((c)>='A')&&((c)<='Z')) |
| 354 | #define IsLower(c) (((c)>='a')&&((c)<='z')) |
| 355 | #define IsDigit(c) (((c)>='0')&&((c)<='9')) |
| 356 | |
| 357 | #if _DF1S /* Code page is DBCS */ |
| 358 | |
| 359 | #ifdef _DF2S /* Two 1st byte areas */ |
| 360 | #define IsDBCS1(c) (((BYTE)(c) >= _DF1S && (BYTE)(c) <= _DF1E) || ((BYTE)(c) >= _DF2S && (BYTE)(c) <= _DF2E)) |
| 361 | #else /* One 1st byte area */ |
| 362 | #define IsDBCS1(c) ((BYTE)(c) >= _DF1S && (BYTE)(c) <= _DF1E) |
| 363 | #endif |
| 364 | |
| 365 | #ifdef _DS3S /* Three 2nd byte areas */ |
| 366 | #define IsDBCS2(c) (((BYTE)(c) >= _DS1S && (BYTE)(c) <= _DS1E) || ((BYTE)(c) >= _DS2S && (BYTE)(c) <= _DS2E) || ((BYTE)(c) >= _DS3S && (BYTE)(c) <= _DS3E)) |
| 367 | #else /* Two 2nd byte areas */ |
| 368 | #define IsDBCS2(c) (((BYTE)(c) >= _DS1S && (BYTE)(c) <= _DS1E) || ((BYTE)(c) >= _DS2S && (BYTE)(c) <= _DS2E)) |
| 369 | #endif |
| 370 | |
| 371 | #else /* Code page is SBCS */ |
| 372 | |
| 373 | #define IsDBCS1(c) 0 |
| 374 | #define IsDBCS2(c) 0 |
| 375 | |
| 376 | #endif /* _DF1S */ |
| 377 | |
| 378 | |
| 379 | /* Name status flags */ |
| 380 | #define NS 11 /* Index of name status byte in fn[] */ |
| 381 | #define NS_LOSS 0x01 /* Out of 8.3 format */ |
| 382 | #define NS_LFN 0x02 /* Force to create LFN entry */ |
| 383 | #define NS_LAST 0x04 /* Last segment */ |
| 384 | #define NS_BODY 0x08 /* Lower case flag (body) */ |
| 385 | #define NS_EXT 0x10 /* Lower case flag (ext) */ |
| 386 | #define NS_DOT 0x20 /* Dot entry */ |
| 387 | |
| 388 | |
| 389 | /* FAT sub-type boundaries */ |
| 390 | /* Note that the FAT spec by Microsoft says 4085 but Windows works with 4087! */ |
| 391 | #define MIN_FAT16 4086 /* Minimum number of clusters for FAT16 */ |
| 392 | #define MIN_FAT32 65526 /* Minimum number of clusters for FAT32 */ |
| 393 | |
| 394 | |
| 395 | /* FatFs refers the members in the FAT structures as byte array instead of |
| 396 | / structure member because the structure is not binary compatible between |
| 397 | / different platforms */ |
| 398 | |
| 399 | #define BS_jmpBoot 0 /* Jump instruction (3) */ |
| 400 | #define BS_OEMName 3 /* OEM name (8) */ |
| 401 | #define BPB_BytsPerSec 11 /* Sector size [byte] (2) */ |
| 402 | #define BPB_SecPerClus 13 /* Cluster size [sector] (1) */ |
| 403 | #define BPB_RsvdSecCnt 14 /* Size of reserved area [sector] (2) */ |
| 404 | #define BPB_NumFATs 16 /* Number of FAT copies (1) */ |
| 405 | #define BPB_RootEntCnt 17 /* Number of root dir entries for FAT12/16 (2) */ |
| 406 | #define BPB_TotSec16 19 /* Volume size [sector] (2) */ |
| 407 | #define BPB_Media 21 /* Media descriptor (1) */ |
| 408 | #define BPB_FATSz16 22 /* FAT size [sector] (2) */ |
| 409 | #define BPB_SecPerTrk 24 /* Track size [sector] (2) */ |
| 410 | #define BPB_NumHeads 26 /* Number of heads (2) */ |
| 411 | #define BPB_HiddSec 28 /* Number of special hidden sectors (4) */ |
| 412 | #define BPB_TotSec32 32 /* Volume size [sector] (4) */ |
| 413 | #define BS_DrvNum 36 /* Physical drive number (2) */ |
| 414 | #define BS_BootSig 38 /* Extended boot signature (1) */ |
| 415 | #define BS_VolID 39 /* Volume serial number (4) */ |
| 416 | #define BS_VolLab 43 /* Volume label (8) */ |
| 417 | #define BS_FilSysType 54 /* File system type (1) */ |
| 418 | #define BPB_FATSz32 36 /* FAT size [sector] (4) */ |
| 419 | #define BPB_ExtFlags 40 /* Extended flags (2) */ |
| 420 | #define BPB_FSVer 42 /* File system version (2) */ |
| 421 | #define BPB_RootClus 44 /* Root dir first cluster (4) */ |
| 422 | #define BPB_FSInfo 48 /* Offset of FSInfo sector (2) */ |
| 423 | #define BPB_BkBootSec 50 /* Offset of backup boot sector (2) */ |
| 424 | #define BS_DrvNum32 64 /* Physical drive number (2) */ |
| 425 | #define BS_BootSig32 66 /* Extended boot signature (1) */ |
| 426 | #define BS_VolID32 67 /* Volume serial number (4) */ |
| 427 | #define BS_VolLab32 71 /* Volume label (8) */ |
| 428 | #define BS_FilSysType32 82 /* File system type (1) */ |
| 429 | #define FSI_LeadSig 0 /* FSI: Leading signature (4) */ |
| 430 | #define FSI_StrucSig 484 /* FSI: Structure signature (4) */ |
| 431 | #define FSI_Free_Count 488 /* FSI: Number of free clusters (4) */ |
| 432 | #define FSI_Nxt_Free 492 /* FSI: Last allocated cluster (4) */ |
| 433 | #define MBR_Table 446 /* MBR: Partition table offset (2) */ |
| 434 | #define SZ_PTE 16 /* MBR: Size of a partition table entry */ |
| 435 | #define BS_55AA 510 /* Boot sector signature (2) */ |
| 436 | |
| 437 | #define DIR_Name 0 /* Short file name (11) */ |
| 438 | #define DIR_Attr 11 /* Attribute (1) */ |
| 439 | #define DIR_NTres 12 /* NT flag (1) */ |
| 440 | #define DIR_CrtTimeTenth 13 /* Created time sub-second (1) */ |
| 441 | #define DIR_CrtTime 14 /* Created time (2) */ |
| 442 | #define DIR_CrtDate 16 /* Created date (2) */ |
| 443 | #define DIR_LstAccDate 18 /* Last accessed date (2) */ |
| 444 | #define DIR_FstClusHI 20 /* Higher 16-bit of first cluster (2) */ |
| 445 | #define DIR_WrtTime 22 /* Modified time (2) */ |
| 446 | #define DIR_WrtDate 24 /* Modified date (2) */ |
| 447 | #define DIR_FstClusLO 26 /* Lower 16-bit of first cluster (2) */ |
| 448 | #define DIR_FileSize 28 /* File size (4) */ |
| 449 | #define LDIR_Ord 0 /* LFN entry order and LLE flag (1) */ |
| 450 | #define LDIR_Attr 11 /* LFN attribute (1) */ |
| 451 | #define LDIR_Type 12 /* LFN type (1) */ |
| 452 | #define LDIR_Chksum 13 /* Sum of corresponding SFN entry */ |
| 453 | #define LDIR_FstClusLO 26 /* Filled by zero (0) */ |
| 454 | #define SZ_DIR 32 /* Size of a directory entry */ |
| 455 | #define LLE 0x40 /* Last long entry flag in LDIR_Ord */ |
| 456 | #define DDE 0xE5 /* Deleted directory entry mark in DIR_Name[0] */ |
| 457 | #define NDDE 0x05 /* Replacement of the character collides with DDE */ |
| 458 | |
| 459 | |
| 460 | /*------------------------------------------------------------*/ |
| 461 | /* Module private work area */ |
| 462 | /*------------------------------------------------------------*/ |
| 463 | /* Note that uninitialized variables with static duration are |
| 464 | / zeroed/nulled at start-up. If not, the compiler or start-up |
| 465 | / routine is out of ANSI-C standard. |
| 466 | */ |
| 467 | |
| 468 | #if _VOLUMES |
| 469 | static |
| 470 | FATFS *FatFs[_VOLUMES]; /* Pointer to the file system objects (logical drives) */ |
| 471 | #else |
| 472 | #error Number of volumes must not be 0. |
| 473 | #endif |
| 474 | |
| 475 | static |
| 476 | WORD Fsid; /* File system mount ID */ |
| 477 | |
| 478 | #if _FS_RPATH |
| 479 | static |
| 480 | BYTE CurrVol; /* Current drive */ |
| 481 | #endif |
| 482 | |
| 483 | #if _FS_LOCK |
| 484 | static |
| 485 | FILESEM Files[_FS_LOCK]; /* File lock semaphores */ |
| 486 | #endif |
| 487 | |
| 488 | #if _USE_LFN == 0 /* No LFN feature */ |
| 489 | #define DEF_NAMEBUF BYTE sfn[12] |
| 490 | #define INIT_BUF(dobj) (dobj).fn = sfn |
| 491 | #define FREE_BUF() |
| 492 | |
| 493 | #elif _USE_LFN == 1 /* LFN feature with static working buffer */ |
| 494 | static WCHAR LfnBuf[_MAX_LFN+1]; |
| 495 | #define DEF_NAMEBUF BYTE sfn[12] |
| 496 | #define INIT_BUF(dobj) { (dobj).fn = sfn; (dobj).lfn = LfnBuf; } |
| 497 | #define FREE_BUF() |
| 498 | |
| 499 | #elif _USE_LFN == 2 /* LFN feature with dynamic working buffer on the stack */ |
| 500 | #define DEF_NAMEBUF BYTE sfn[12]; WCHAR lbuf[_MAX_LFN+1] |
| 501 | #define INIT_BUF(dobj) { (dobj).fn = sfn; (dobj).lfn = lbuf; } |
| 502 | #define FREE_BUF() |
| 503 | |
| 504 | #elif _USE_LFN == 3 /* LFN feature with dynamic working buffer on the heap */ |
| 505 | #define DEF_NAMEBUF BYTE sfn[12]; WCHAR *lfn |
| 506 | #define INIT_BUF(dobj) { lfn = ff_memalloc((_MAX_LFN + 1) * 2); \ |
| 507 | if (!lfn) LEAVE_FF((dobj).fs, FR_NOT_ENOUGH_CORE); \ |
| 508 | (dobj).lfn = lfn; (dobj).fn = sfn; } |
| 509 | #define FREE_BUF() ff_memfree(lfn) |
| 510 | |
| 511 | #else |
| 512 | #error Wrong LFN configuration. |
| 513 | #endif |
| 514 | |
| 515 | |
| 516 | #ifdef _EXCVT |
| 517 | static |
| 518 | const BYTE ExCvt[] = _EXCVT; /* Upper conversion table for extended chars */ |
| 519 | #endif |
| 520 | |
| 521 | |
| 522 | |
| 523 | |
| 524 | |
| 525 | |
| 526 | /*-------------------------------------------------------------------------- |
| 527 | |
| 528 | Module Private Functions |
| 529 | |
| 530 | ---------------------------------------------------------------------------*/ |
| 531 | |
| 532 | |
| 533 | /*-----------------------------------------------------------------------*/ |
| 534 | /* String functions */ |
| 535 | /*-----------------------------------------------------------------------*/ |
| 536 | |
| 537 | /* Copy memory to memory */ |
| 538 | static |
| 539 | void mem_cpy (void* dst, const void* src, UINT cnt) { |
| 540 | BYTE *d = (BYTE*)dst; |
| 541 | const BYTE *s = (const BYTE*)src; |
| 542 | |
| 543 | #if _WORD_ACCESS == 1 |
| 544 | while (cnt >= sizeof (int)) { |
| 545 | *(int*)d = *(int*)s; |
| 546 | d += sizeof (int); s += sizeof (int); |
| 547 | cnt -= sizeof (int); |
| 548 | } |
| 549 | #endif |
| 550 | while (cnt--) |
| 551 | *d++ = *s++; |
| 552 | } |
| 553 | |
| 554 | /* Fill memory */ |
| 555 | static |
| 556 | void mem_set (void* dst, int val, UINT cnt) { |
| 557 | BYTE *d = (BYTE*)dst; |
| 558 | |
| 559 | while (cnt--) |
| 560 | *d++ = (BYTE)val; |
| 561 | } |
| 562 | |
| 563 | /* Compare memory to memory */ |
| 564 | static |
| 565 | int mem_cmp (const void* dst, const void* src, UINT cnt) { |
| 566 | const BYTE *d = (const BYTE *)dst, *s = (const BYTE *)src; |
| 567 | int r = 0; |
| 568 | |
| 569 | while (cnt-- && (r = *d++ - *s++) == 0) ; |
| 570 | return r; |
| 571 | } |
| 572 | |
| 573 | /* Check if chr is contained in the string */ |
| 574 | static |
| 575 | int chk_chr (const char* str, int chr) { |
| 576 | while (*str && *str != chr) str++; |
| 577 | return *str; |
| 578 | } |
| 579 | |
| 580 | |
| 581 | |
| 582 | /*-----------------------------------------------------------------------*/ |
| 583 | /* Request/Release grant to access the volume */ |
| 584 | /*-----------------------------------------------------------------------*/ |
| 585 | #if _FS_REENTRANT |
| 586 | |
| 587 | static |
| 588 | int lock_fs ( |
| 589 | FATFS *fs /* File system object */ |
| 590 | ) |
| 591 | { |
| 592 | return ff_req_grant(fs->sobj); |
| 593 | } |
| 594 | |
| 595 | |
| 596 | static |
| 597 | void unlock_fs ( |
| 598 | FATFS *fs, /* File system object */ |
| 599 | FRESULT res /* Result code to be returned */ |
| 600 | ) |
| 601 | { |
| 602 | if (fs && |
| 603 | res != FR_NOT_ENABLED && |
| 604 | res != FR_INVALID_DRIVE && |
| 605 | res != FR_INVALID_OBJECT && |
| 606 | res != FR_TIMEOUT) { |
| 607 | ff_rel_grant(fs->sobj); |
| 608 | } |
| 609 | } |
| 610 | #endif |
| 611 | |
| 612 | |
| 613 | |
| 614 | /*-----------------------------------------------------------------------*/ |
| 615 | /* File lock control functions */ |
| 616 | /*-----------------------------------------------------------------------*/ |
| 617 | #if _FS_LOCK |
| 618 | |
| 619 | static |
| 620 | FRESULT chk_lock ( /* Check if the file can be accessed */ |
| 621 | DIR* dj, /* Directory object pointing the file to be checked */ |
| 622 | int acc /* Desired access (0:Read, 1:Write, 2:Delete/Rename) */ |
| 623 | ) |
| 624 | { |
| 625 | UINT i, be; |
| 626 | |
| 627 | /* Search file semaphore table */ |
| 628 | for (i = be = 0; i < _FS_LOCK; i++) { |
| 629 | if (Files[i].fs) { /* Existing entry */ |
| 630 | if (Files[i].fs == dj->fs && /* Check if the file matched with an open file */ |
| 631 | Files[i].clu == dj->sclust && |
| 632 | Files[i].idx == dj->index) break; |
| 633 | } else { /* Blank entry */ |
| 634 | be++; |
| 635 | } |
| 636 | } |
| 637 | if (i == _FS_LOCK) /* The file is not opened */ |
| 638 | return (be || acc == 2) ? FR_OK : FR_TOO_MANY_OPEN_FILES; /* Is there a blank entry for new file? */ |
| 639 | |
| 640 | /* The file has been opened. Reject any open against writing file and all write mode open */ |
| 641 | return (acc || Files[i].ctr == 0x100) ? FR_LOCKED : FR_OK; |
| 642 | } |
| 643 | |
| 644 | |
| 645 | static |
| 646 | int enq_lock (void) /* Check if an entry is available for a new file */ |
| 647 | { |
| 648 | UINT i; |
| 649 | |
| 650 | for (i = 0; i < _FS_LOCK && Files[i].fs; i++) ; |
| 651 | return (i == _FS_LOCK) ? 0 : 1; |
| 652 | } |
| 653 | |
| 654 | |
| 655 | static |
| 656 | UINT inc_lock ( /* Increment file open counter and returns its index (0:int error) */ |
| 657 | DIR* dj, /* Directory object pointing the file to register or increment */ |
| 658 | int acc /* Desired access mode (0:Read, !0:Write) */ |
| 659 | ) |
| 660 | { |
| 661 | UINT i; |
| 662 | |
| 663 | |
| 664 | for (i = 0; i < _FS_LOCK; i++) { /* Find the file */ |
| 665 | if (Files[i].fs == dj->fs && |
| 666 | Files[i].clu == dj->sclust && |
| 667 | Files[i].idx == dj->index) break; |
| 668 | } |
| 669 | |
| 670 | if (i == _FS_LOCK) { /* Not opened. Register it as new. */ |
| 671 | for (i = 0; i < _FS_LOCK && Files[i].fs; i++) ; |
| 672 | if (i == _FS_LOCK) return 0; /* No space to register (int err) */ |
| 673 | Files[i].fs = dj->fs; |
| 674 | Files[i].clu = dj->sclust; |
| 675 | Files[i].idx = dj->index; |
| 676 | Files[i].ctr = 0; |
| 677 | } |
| 678 | |
| 679 | if (acc && Files[i].ctr) return 0; /* Access violation (int err) */ |
| 680 | |
| 681 | Files[i].ctr = acc ? 0x100 : Files[i].ctr + 1; /* Set semaphore value */ |
| 682 | |
| 683 | return i + 1; |
| 684 | } |
| 685 | |
| 686 | |
| 687 | static |
| 688 | FRESULT dec_lock ( /* Decrement file open counter */ |
| 689 | UINT i /* Semaphore index */ |
| 690 | ) |
| 691 | { |
| 692 | WORD n; |
| 693 | FRESULT res; |
| 694 | |
| 695 | |
| 696 | if (--i < _FS_LOCK) { |
| 697 | n = Files[i].ctr; |
| 698 | if (n == 0x100) n = 0; |
| 699 | if (n) n--; |
| 700 | Files[i].ctr = n; |
| 701 | if (!n) Files[i].fs = 0; |
| 702 | res = FR_OK; |
| 703 | } else { |
| 704 | res = FR_INT_ERR; |
| 705 | } |
| 706 | return res; |
| 707 | } |
| 708 | |
| 709 | |
| 710 | static |
| 711 | void clear_lock ( /* Clear lock entries of the volume */ |
| 712 | FATFS *fs |
| 713 | ) |
| 714 | { |
| 715 | UINT i; |
| 716 | |
| 717 | for (i = 0; i < _FS_LOCK; i++) { |
| 718 | if (Files[i].fs == fs) Files[i].fs = 0; |
| 719 | } |
| 720 | } |
| 721 | #endif |
| 722 | |
| 723 | |
| 724 | |
| 725 | /*-----------------------------------------------------------------------*/ |
| 726 | /* Move/Flush disk access window */ |
| 727 | /*-----------------------------------------------------------------------*/ |
| 728 | |
| 729 | |
| 730 | #if !_FS_READONLY |
| 731 | static |
| 732 | FRESULT sync_window ( |
| 733 | FATFS *fs /* File system object */ |
| 734 | ) |
| 735 | { |
| 736 | DWORD wsect; |
| 737 | UINT nf; |
| 738 | |
| 739 | |
| 740 | if (fs->wflag) { /* Write back the sector if it is dirty */ |
| 741 | wsect = fs->winsect; /* Current sector number */ |
| 742 | if (disk_write(fs->drv, fs->win, wsect, 1) != RES_OK) |
| 743 | return FR_DISK_ERR; |
| 744 | fs->wflag = 0; |
| 745 | if (wsect >= fs->fatbase && wsect < (fs->fatbase + fs->fsize)) { /* In FAT area? */ |
| 746 | for (nf = fs->n_fats; nf >= 2; nf--) { /* Reflect the change to all FAT copies */ |
| 747 | wsect += fs->fsize; |
| 748 | disk_write(fs->drv, fs->win, wsect, 1); |
| 749 | } |
| 750 | } |
| 751 | } |
| 752 | return FR_OK; |
| 753 | } |
| 754 | #endif |
| 755 | |
| 756 | |
| 757 | static |
| 758 | FRESULT move_window ( |
| 759 | FATFS *fs, /* File system object */ |
| 760 | DWORD sector /* Sector number to make appearance in the fs->win[] */ |
| 761 | ) |
| 762 | { |
| 763 | if (sector != fs->winsect) { /* Changed current window */ |
| 764 | #if !_FS_READONLY |
| 765 | if (sync_window(fs) != FR_OK) |
| 766 | return FR_DISK_ERR; |
| 767 | #endif |
| 768 | if (disk_read(fs->drv, fs->win, sector, 1) != RES_OK) |
| 769 | return FR_DISK_ERR; |
| 770 | fs->winsect = sector; |
| 771 | } |
| 772 | |
| 773 | return FR_OK; |
| 774 | } |
| 775 | |
| 776 | |
| 777 | |
| 778 | |
| 779 | /*-----------------------------------------------------------------------*/ |
| 780 | /* Synchronize file system and strage device */ |
| 781 | /*-----------------------------------------------------------------------*/ |
| 782 | #if !_FS_READONLY |
| 783 | static |
| 784 | FRESULT sync_fs ( /* FR_OK: successful, FR_DISK_ERR: failed */ |
| 785 | FATFS *fs /* File system object */ |
| 786 | ) |
| 787 | { |
| 788 | FRESULT res; |
| 789 | |
| 790 | |
| 791 | res = sync_window(fs); |
| 792 | if (res == FR_OK) { |
| 793 | /* Update FSInfo sector if needed */ |
| 794 | if (fs->fs_type == FS_FAT32 && fs->fsi_flag) { |
| 795 | fs->winsect = 0; |
| 796 | /* Create FSInfo structure */ |
| 797 | mem_set(fs->win, 0, 512); |
| 798 | ST_WORD(fs->win+BS_55AA, 0xAA55); |
| 799 | ST_DWORD(fs->win+FSI_LeadSig, 0x41615252); |
| 800 | ST_DWORD(fs->win+FSI_StrucSig, 0x61417272); |
| 801 | ST_DWORD(fs->win+FSI_Free_Count, fs->free_clust); |
| 802 | ST_DWORD(fs->win+FSI_Nxt_Free, fs->last_clust); |
| 803 | /* Write it into the FSInfo sector */ |
| 804 | disk_write(fs->drv, fs->win, fs->fsi_sector, 1); |
| 805 | fs->fsi_flag = 0; |
| 806 | } |
| 807 | /* Make sure that no pending write process in the physical drive */ |
| 808 | if (disk_ioctl(fs->drv, CTRL_SYNC, 0) != RES_OK) |
| 809 | res = FR_DISK_ERR; |
| 810 | } |
| 811 | |
| 812 | return res; |
| 813 | } |
| 814 | #endif |
| 815 | |
| 816 | |
| 817 | |
| 818 | |
| 819 | /*-----------------------------------------------------------------------*/ |
| 820 | /* Get sector# from cluster# */ |
| 821 | /*-----------------------------------------------------------------------*/ |
| 822 | |
| 823 | |
| 824 | DWORD clust2sect ( /* !=0: Sector number, 0: Failed - invalid cluster# */ |
| 825 | FATFS *fs, /* File system object */ |
| 826 | DWORD clst /* Cluster# to be converted */ |
| 827 | ) |
| 828 | { |
| 829 | clst -= 2; |
| 830 | if (clst >= (fs->n_fatent - 2)) return 0; /* Invalid cluster# */ |
| 831 | return clst * fs->csize + fs->database; |
| 832 | } |
| 833 | |
| 834 | |
| 835 | |
| 836 | |
| 837 | /*-----------------------------------------------------------------------*/ |
| 838 | /* FAT access - Read value of a FAT entry */ |
| 839 | /*-----------------------------------------------------------------------*/ |
| 840 | |
| 841 | |
| 842 | DWORD get_fat ( /* 0xFFFFFFFF:Disk error, 1:Internal error, Else:Cluster status */ |
| 843 | FATFS *fs, /* File system object */ |
| 844 | DWORD clst /* Cluster# to get the link information */ |
| 845 | ) |
| 846 | { |
| 847 | UINT wc, bc; |
| 848 | BYTE *p; |
| 849 | |
| 850 | |
| 851 | if (clst < 2 || clst >= fs->n_fatent) /* Check range */ |
| 852 | return 1; |
| 853 | |
| 854 | switch (fs->fs_type) { |
| 855 | case FS_FAT12 : |
| 856 | bc = (UINT)clst; bc += bc / 2; |
| 857 | if (move_window(fs, fs->fatbase + (bc / SS(fs)))) break; |
| 858 | wc = fs->win[bc % SS(fs)]; bc++; |
| 859 | if (move_window(fs, fs->fatbase + (bc / SS(fs)))) break; |
| 860 | wc |= fs->win[bc % SS(fs)] << 8; |
| 861 | return (clst & 1) ? (wc >> 4) : (wc & 0xFFF); |
| 862 | |
| 863 | case FS_FAT16 : |
| 864 | if (move_window(fs, fs->fatbase + (clst / (SS(fs) / 2)))) break; |
| 865 | p = &fs->win[clst * 2 % SS(fs)]; |
| 866 | return LD_WORD(p); |
| 867 | |
| 868 | case FS_FAT32 : |
| 869 | if (move_window(fs, fs->fatbase + (clst / (SS(fs) / 4)))) break; |
| 870 | p = &fs->win[clst * 4 % SS(fs)]; |
| 871 | return LD_DWORD(p) & 0x0FFFFFFF; |
| 872 | } |
| 873 | |
| 874 | return 0xFFFFFFFF; /* An error occurred at the disk I/O layer */ |
| 875 | } |
| 876 | |
| 877 | |
| 878 | |
| 879 | |
| 880 | /*-----------------------------------------------------------------------*/ |
| 881 | /* FAT access - Change value of a FAT entry */ |
| 882 | /*-----------------------------------------------------------------------*/ |
| 883 | #if !_FS_READONLY |
| 884 | |
| 885 | FRESULT put_fat ( |
| 886 | FATFS *fs, /* File system object */ |
| 887 | DWORD clst, /* Cluster# to be changed in range of 2 to fs->n_fatent - 1 */ |
| 888 | DWORD val /* New value to mark the cluster */ |
| 889 | ) |
| 890 | { |
| 891 | UINT bc; |
| 892 | BYTE *p; |
| 893 | FRESULT res; |
| 894 | |
| 895 | |
| 896 | if (clst < 2 || clst >= fs->n_fatent) { /* Check range */ |
| 897 | res = FR_INT_ERR; |
| 898 | |
| 899 | } else { |
| 900 | switch (fs->fs_type) { |
| 901 | case FS_FAT12 : |
| 902 | bc = (UINT)clst; bc += bc / 2; |
| 903 | res = move_window(fs, fs->fatbase + (bc / SS(fs))); |
| 904 | if (res != FR_OK) break; |
| 905 | p = &fs->win[bc % SS(fs)]; |
| 906 | *p = (clst & 1) ? ((*p & 0x0F) | ((BYTE)val << 4)) : (BYTE)val; |
| 907 | bc++; |
| 908 | fs->wflag = 1; |
| 909 | res = move_window(fs, fs->fatbase + (bc / SS(fs))); |
| 910 | if (res != FR_OK) break; |
| 911 | p = &fs->win[bc % SS(fs)]; |
| 912 | *p = (clst & 1) ? (BYTE)(val >> 4) : ((*p & 0xF0) | ((BYTE)(val >> 8) & 0x0F)); |
| 913 | break; |
| 914 | |
| 915 | case FS_FAT16 : |
| 916 | res = move_window(fs, fs->fatbase + (clst / (SS(fs) / 2))); |
| 917 | if (res != FR_OK) break; |
| 918 | p = &fs->win[clst * 2 % SS(fs)]; |
| 919 | ST_WORD(p, (WORD)val); |
| 920 | break; |
| 921 | |
| 922 | case FS_FAT32 : |
| 923 | res = move_window(fs, fs->fatbase + (clst / (SS(fs) / 4))); |
| 924 | if (res != FR_OK) break; |
| 925 | p = &fs->win[clst * 4 % SS(fs)]; |
| 926 | val |= LD_DWORD(p) & 0xF0000000; |
| 927 | ST_DWORD(p, val); |
| 928 | break; |
| 929 | |
| 930 | default : |
| 931 | res = FR_INT_ERR; |
| 932 | } |
| 933 | fs->wflag = 1; |
| 934 | } |
| 935 | |
| 936 | return res; |
| 937 | } |
| 938 | #endif /* !_FS_READONLY */ |
| 939 | |
| 940 | |
| 941 | |
| 942 | |
| 943 | /*-----------------------------------------------------------------------*/ |
| 944 | /* FAT handling - Remove a cluster chain */ |
| 945 | /*-----------------------------------------------------------------------*/ |
| 946 | #if !_FS_READONLY |
| 947 | static |
| 948 | FRESULT remove_chain ( |
| 949 | FATFS *fs, /* File system object */ |
| 950 | DWORD clst /* Cluster# to remove a chain from */ |
| 951 | ) |
| 952 | { |
| 953 | FRESULT res; |
| 954 | DWORD nxt; |
| 955 | #if _USE_ERASE |
| 956 | DWORD scl = clst, ecl = clst, rt[2]; |
| 957 | #endif |
| 958 | |
| 959 | if (clst < 2 || clst >= fs->n_fatent) { /* Check range */ |
| 960 | res = FR_INT_ERR; |
| 961 | |
| 962 | } else { |
| 963 | res = FR_OK; |
| 964 | while (clst < fs->n_fatent) { /* Not a last link? */ |
| 965 | nxt = get_fat(fs, clst); /* Get cluster status */ |
| 966 | if (nxt == 0) break; /* Empty cluster? */ |
| 967 | if (nxt == 1) { res = FR_INT_ERR; break; } /* Internal error? */ |
| 968 | if (nxt == 0xFFFFFFFF) { res = FR_DISK_ERR; break; } /* Disk error? */ |
| 969 | res = put_fat(fs, clst, 0); /* Mark the cluster "empty" */ |
| 970 | if (res != FR_OK) break; |
| 971 | if (fs->free_clust != 0xFFFFFFFF) { /* Update FSInfo */ |
| 972 | fs->free_clust++; |
| 973 | fs->fsi_flag = 1; |
| 974 | } |
| 975 | #if _USE_ERASE |
| 976 | if (ecl + 1 == nxt) { /* Is next cluster contiguous? */ |
| 977 | ecl = nxt; |
| 978 | } else { /* End of contiguous clusters */ |
| 979 | rt[0] = clust2sect(fs, scl); /* Start sector */ |
| 980 | rt[1] = clust2sect(fs, ecl) + fs->csize - 1; /* End sector */ |
| 981 | disk_ioctl(fs->drv, CTRL_ERASE_SECTOR, rt); /* Erase the block */ |
| 982 | scl = ecl = nxt; |
| 983 | } |
| 984 | #endif |
| 985 | clst = nxt; /* Next cluster */ |
| 986 | } |
| 987 | } |
| 988 | |
| 989 | return res; |
| 990 | } |
| 991 | #endif |
| 992 | |
| 993 | |
| 994 | |
| 995 | |
| 996 | /*-----------------------------------------------------------------------*/ |
| 997 | /* FAT handling - Stretch or Create a cluster chain */ |
| 998 | /*-----------------------------------------------------------------------*/ |
| 999 | #if !_FS_READONLY |
| 1000 | static |
| 1001 | DWORD create_chain ( /* 0:No free cluster, 1:Internal error, 0xFFFFFFFF:Disk error, >=2:New cluster# */ |
| 1002 | FATFS *fs, /* File system object */ |
| 1003 | DWORD clst /* Cluster# to stretch. 0 means create a new chain. */ |
| 1004 | ) |
| 1005 | { |
| 1006 | DWORD cs, ncl, scl; |
| 1007 | FRESULT res; |
| 1008 | |
| 1009 | |
| 1010 | if (clst == 0) { /* Create a new chain */ |
| 1011 | scl = fs->last_clust; /* Get suggested start point */ |
| 1012 | if (!scl || scl >= fs->n_fatent) scl = 1; |
| 1013 | } |
| 1014 | else { /* Stretch the current chain */ |
| 1015 | cs = get_fat(fs, clst); /* Check the cluster status */ |
| 1016 | if (cs < 2) return 1; /* It is an invalid cluster */ |
| 1017 | if (cs < fs->n_fatent) return cs; /* It is already followed by next cluster */ |
| 1018 | scl = clst; |
| 1019 | } |
| 1020 | |
| 1021 | ncl = scl; /* Start cluster */ |
| 1022 | for (;;) { |
| 1023 | ncl++; /* Next cluster */ |
| 1024 | if (ncl >= fs->n_fatent) { /* Wrap around */ |
| 1025 | ncl = 2; |
| 1026 | if (ncl > scl) return 0; /* No free cluster */ |
| 1027 | } |
| 1028 | cs = get_fat(fs, ncl); /* Get the cluster status */ |
| 1029 | if (cs == 0) break; /* Found a free cluster */ |
| 1030 | if (cs == 0xFFFFFFFF || cs == 1)/* An error occurred */ |
| 1031 | return cs; |
| 1032 | if (ncl == scl) return 0; /* No free cluster */ |
| 1033 | } |
| 1034 | |
| 1035 | res = put_fat(fs, ncl, 0x0FFFFFFF); /* Mark the new cluster "last link" */ |
| 1036 | if (res == FR_OK && clst != 0) { |
| 1037 | res = put_fat(fs, clst, ncl); /* Link it to the previous one if needed */ |
| 1038 | } |
| 1039 | if (res == FR_OK) { |
| 1040 | fs->last_clust = ncl; /* Update FSINFO */ |
| 1041 | if (fs->free_clust != 0xFFFFFFFF) { |
| 1042 | fs->free_clust--; |
| 1043 | fs->fsi_flag = 1; |
| 1044 | } |
| 1045 | } else { |
| 1046 | ncl = (res == FR_DISK_ERR) ? 0xFFFFFFFF : 1; |
| 1047 | } |
| 1048 | |
| 1049 | return ncl; /* Return new cluster number or error code */ |
| 1050 | } |
| 1051 | #endif /* !_FS_READONLY */ |
| 1052 | |
| 1053 | |
| 1054 | |
| 1055 | /*-----------------------------------------------------------------------*/ |
| 1056 | /* FAT handling - Convert offset into cluster with link map table */ |
| 1057 | /*-----------------------------------------------------------------------*/ |
| 1058 | |
| 1059 | #if _USE_FASTSEEK |
| 1060 | static |
| 1061 | DWORD clmt_clust ( /* <2:Error, >=2:Cluster number */ |
| 1062 | FIL* fp, /* Pointer to the file object */ |
| 1063 | DWORD ofs /* File offset to be converted to cluster# */ |
| 1064 | ) |
| 1065 | { |
| 1066 | DWORD cl, ncl, *tbl; |
| 1067 | |
| 1068 | |
| 1069 | tbl = fp->cltbl + 1; /* Top of CLMT */ |
| 1070 | cl = ofs / SS(fp->fs) / fp->fs->csize; /* Cluster order from top of the file */ |
| 1071 | for (;;) { |
| 1072 | ncl = *tbl++; /* Number of cluters in the fragment */ |
| 1073 | if (!ncl) return 0; /* End of table? (error) */ |
| 1074 | if (cl < ncl) break; /* In this fragment? */ |
| 1075 | cl -= ncl; tbl++; /* Next fragment */ |
| 1076 | } |
| 1077 | return cl + *tbl; /* Return the cluster number */ |
| 1078 | } |
| 1079 | #endif /* _USE_FASTSEEK */ |
| 1080 | |
| 1081 | |
| 1082 | |
| 1083 | /*-----------------------------------------------------------------------*/ |
| 1084 | /* Directory handling - Set directory index */ |
| 1085 | /*-----------------------------------------------------------------------*/ |
| 1086 | |
| 1087 | static |
| 1088 | FRESULT dir_sdi ( |
| 1089 | DIR *dj, /* Pointer to directory object */ |
| 1090 | WORD idx /* Index of directory table */ |
| 1091 | ) |
| 1092 | { |
| 1093 | DWORD clst; |
| 1094 | WORD ic; |
| 1095 | |
| 1096 | |
| 1097 | dj->index = idx; |
| 1098 | clst = dj->sclust; |
| 1099 | if (clst == 1 || clst >= dj->fs->n_fatent) /* Check start cluster range */ |
| 1100 | return FR_INT_ERR; |
| 1101 | if (!clst && dj->fs->fs_type == FS_FAT32) /* Replace cluster# 0 with root cluster# if in FAT32 */ |
| 1102 | clst = dj->fs->dirbase; |
| 1103 | |
| 1104 | if (clst == 0) { /* Static table (root-dir in FAT12/16) */ |
| 1105 | dj->clust = clst; |
| 1106 | if (idx >= dj->fs->n_rootdir) /* Index is out of range */ |
| 1107 | return FR_INT_ERR; |
| 1108 | dj->sect = dj->fs->dirbase + idx / (SS(dj->fs) / SZ_DIR); /* Sector# */ |
| 1109 | } |
| 1110 | else { /* Dynamic table (sub-dirs or root-dir in FAT32) */ |
| 1111 | ic = SS(dj->fs) / SZ_DIR * dj->fs->csize; /* Entries per cluster */ |
| 1112 | while (idx >= ic) { /* Follow cluster chain */ |
| 1113 | clst = get_fat(dj->fs, clst); /* Get next cluster */ |
| 1114 | if (clst == 0xFFFFFFFF) return FR_DISK_ERR; /* Disk error */ |
| 1115 | if (clst < 2 || clst >= dj->fs->n_fatent) /* Reached to end of table or int error */ |
| 1116 | return FR_INT_ERR; |
| 1117 | idx -= ic; |
| 1118 | } |
| 1119 | dj->clust = clst; |
| 1120 | dj->sect = clust2sect(dj->fs, clst) + idx / (SS(dj->fs) / SZ_DIR); /* Sector# */ |
| 1121 | } |
| 1122 | |
| 1123 | dj->dir = dj->fs->win + (idx % (SS(dj->fs) / SZ_DIR)) * SZ_DIR; /* Ptr to the entry in the sector */ |
| 1124 | |
| 1125 | return FR_OK; /* Seek succeeded */ |
| 1126 | } |
| 1127 | |
| 1128 | |
| 1129 | |
| 1130 | |
| 1131 | /*-----------------------------------------------------------------------*/ |
| 1132 | /* Directory handling - Move directory table index next */ |
| 1133 | /*-----------------------------------------------------------------------*/ |
| 1134 | |
| 1135 | static |
| 1136 | FRESULT dir_next ( /* FR_OK:Succeeded, FR_NO_FILE:End of table, FR_DENIED:Could not stretch */ |
| 1137 | DIR *dj, /* Pointer to the directory object */ |
| 1138 | int stretch /* 0: Do not stretch table, 1: Stretch table if needed */ |
| 1139 | ) |
| 1140 | { |
| 1141 | DWORD clst; |
| 1142 | WORD i; |
| 1143 | |
| 1144 | |
| 1145 | stretch = stretch; /* To suppress warning on read-only cfg. */ |
| 1146 | i = dj->index + 1; |
| 1147 | if (!i || !dj->sect) /* Report EOT when index has reached 65535 */ |
| 1148 | return FR_NO_FILE; |
| 1149 | |
| 1150 | if (!(i % (SS(dj->fs) / SZ_DIR))) { /* Sector changed? */ |
| 1151 | dj->sect++; /* Next sector */ |
| 1152 | |
| 1153 | if (dj->clust == 0) { /* Static table */ |
| 1154 | if (i >= dj->fs->n_rootdir) /* Report EOT when end of table */ |
| 1155 | return FR_NO_FILE; |
| 1156 | } |
| 1157 | else { /* Dynamic table */ |
| 1158 | if (((i / (SS(dj->fs) / SZ_DIR)) & (dj->fs->csize - 1)) == 0) { /* Cluster changed? */ |
| 1159 | clst = get_fat(dj->fs, dj->clust); /* Get next cluster */ |
| 1160 | if (clst <= 1) return FR_INT_ERR; |
| 1161 | if (clst == 0xFFFFFFFF) return FR_DISK_ERR; |
| 1162 | if (clst >= dj->fs->n_fatent) { /* When it reached end of dynamic table */ |
| 1163 | #if !_FS_READONLY |
| 1164 | BYTE c; |
| 1165 | if (!stretch) return FR_NO_FILE; /* When do not stretch, report EOT */ |
| 1166 | clst = create_chain(dj->fs, dj->clust); /* Stretch cluster chain */ |
| 1167 | if (clst == 0) return FR_DENIED; /* No free cluster */ |
| 1168 | if (clst == 1) return FR_INT_ERR; |
| 1169 | if (clst == 0xFFFFFFFF) return FR_DISK_ERR; |
| 1170 | /* Clean-up stretched table */ |
| 1171 | if (sync_window(dj->fs)) return FR_DISK_ERR; /* Flush active window */ |
| 1172 | mem_set(dj->fs->win, 0, SS(dj->fs)); /* Clear window buffer */ |
| 1173 | dj->fs->winsect = clust2sect(dj->fs, clst); /* Cluster start sector */ |
| 1174 | for (c = 0; c < dj->fs->csize; c++) { /* Fill the new cluster with 0 */ |
| 1175 | dj->fs->wflag = 1; |
| 1176 | if (sync_window(dj->fs)) return FR_DISK_ERR; |
| 1177 | dj->fs->winsect++; |
| 1178 | } |
| 1179 | dj->fs->winsect -= c; /* Rewind window address */ |
| 1180 | #else |
| 1181 | return FR_NO_FILE; /* Report EOT */ |
| 1182 | #endif |
| 1183 | } |
| 1184 | dj->clust = clst; /* Initialize data for new cluster */ |
| 1185 | dj->sect = clust2sect(dj->fs, clst); |
| 1186 | } |
| 1187 | } |
| 1188 | } |
| 1189 | |
| 1190 | dj->index = i; |
| 1191 | dj->dir = dj->fs->win + (i % (SS(dj->fs) / SZ_DIR)) * SZ_DIR; |
| 1192 | |
| 1193 | return FR_OK; |
| 1194 | } |
| 1195 | |
| 1196 | |
| 1197 | |
| 1198 | |
| 1199 | /*-----------------------------------------------------------------------*/ |
| 1200 | /* Directory handling - Reserve directory entry */ |
| 1201 | /*-----------------------------------------------------------------------*/ |
| 1202 | |
| 1203 | #if !_FS_READONLY |
| 1204 | static |
| 1205 | FRESULT dir_alloc ( |
| 1206 | DIR* dj, /* Pointer to the directory object */ |
| 1207 | UINT nent /* Number of contiguous entries to allocate (1-21) */ |
| 1208 | ) |
| 1209 | { |
| 1210 | FRESULT res; |
| 1211 | UINT n; |
| 1212 | |
| 1213 | |
| 1214 | res = dir_sdi(dj, 0); |
| 1215 | if (res == FR_OK) { |
| 1216 | n = 0; |
| 1217 | do { |
| 1218 | res = move_window(dj->fs, dj->sect); |
| 1219 | if (res != FR_OK) break; |
| 1220 | if (dj->dir[0] == DDE || dj->dir[0] == 0) { /* Is it a blank entry? */ |
| 1221 | if (++n == nent) break; /* A block of contiguous entry is found */ |
| 1222 | } else { |
| 1223 | n = 0; /* Not a blank entry. Restart to search */ |
| 1224 | } |
| 1225 | res = dir_next(dj, 1); /* Next entry with table stretch enabled */ |
| 1226 | } while (res == FR_OK); |
| 1227 | } |
| 1228 | return res; |
| 1229 | } |
| 1230 | #endif |
| 1231 | |
| 1232 | |
| 1233 | |
| 1234 | /*-----------------------------------------------------------------------*/ |
| 1235 | /* Directory handling - Load/Store start cluster number */ |
| 1236 | /*-----------------------------------------------------------------------*/ |
| 1237 | |
| 1238 | static |
| 1239 | DWORD ld_clust ( |
| 1240 | FATFS *fs, /* Pointer to the fs object */ |
| 1241 | BYTE *dir /* Pointer to the directory entry */ |
| 1242 | ) |
| 1243 | { |
| 1244 | DWORD cl; |
| 1245 | |
| 1246 | cl = LD_WORD(dir+DIR_FstClusLO); |
| 1247 | if (fs->fs_type == FS_FAT32) |
| 1248 | cl |= (DWORD)LD_WORD(dir+DIR_FstClusHI) << 16; |
| 1249 | |
| 1250 | return cl; |
| 1251 | } |
| 1252 | |
| 1253 | |
| 1254 | #if !_FS_READONLY |
| 1255 | static |
| 1256 | void st_clust ( |
| 1257 | BYTE *dir, /* Pointer to the directory entry */ |
| 1258 | DWORD cl /* Value to be set */ |
| 1259 | ) |
| 1260 | { |
| 1261 | ST_WORD(dir+DIR_FstClusLO, cl); |
| 1262 | ST_WORD(dir+DIR_FstClusHI, cl >> 16); |
| 1263 | } |
| 1264 | #endif |
| 1265 | |
| 1266 | |
| 1267 | |
| 1268 | /*-----------------------------------------------------------------------*/ |
| 1269 | /* LFN handling - Test/Pick/Fit an LFN segment from/to directory entry */ |
| 1270 | /*-----------------------------------------------------------------------*/ |
| 1271 | #if _USE_LFN |
| 1272 | static |
| 1273 | const BYTE LfnOfs[] = {1,3,5,7,9,14,16,18,20,22,24,28,30}; /* Offset of LFN chars in the directory entry */ |
| 1274 | |
| 1275 | |
| 1276 | static |
| 1277 | int cmp_lfn ( /* 1:Matched, 0:Not matched */ |
| 1278 | WCHAR *lfnbuf, /* Pointer to the LFN to be compared */ |
| 1279 | BYTE *dir /* Pointer to the directory entry containing a part of LFN */ |
| 1280 | ) |
| 1281 | { |
| 1282 | UINT i, s; |
| 1283 | WCHAR wc, uc; |
| 1284 | |
| 1285 | |
| 1286 | i = ((dir[LDIR_Ord] & ~LLE) - 1) * 13; /* Get offset in the LFN buffer */ |
| 1287 | s = 0; wc = 1; |
| 1288 | do { |
| 1289 | uc = LD_WORD(dir+LfnOfs[s]); /* Pick an LFN character from the entry */ |
| 1290 | if (wc) { /* Last char has not been processed */ |
| 1291 | wc = ff_wtoupper(uc); /* Convert it to upper case */ |
| 1292 | if (i >= _MAX_LFN || wc != ff_wtoupper(lfnbuf[i++])) /* Compare it */ |
| 1293 | return 0; /* Not matched */ |
| 1294 | } else { |
| 1295 | if (uc != 0xFFFF) return 0; /* Check filler */ |
| 1296 | } |
| 1297 | } while (++s < 13); /* Repeat until all chars in the entry are checked */ |
| 1298 | |
| 1299 | if ((dir[LDIR_Ord] & LLE) && wc && lfnbuf[i]) /* Last segment matched but different length */ |
| 1300 | return 0; |
| 1301 | |
| 1302 | return 1; /* The part of LFN matched */ |
| 1303 | } |
| 1304 | |
| 1305 | |
| 1306 | |
| 1307 | static |
| 1308 | int pick_lfn ( /* 1:Succeeded, 0:Buffer overflow */ |
| 1309 | WCHAR *lfnbuf, /* Pointer to the Unicode-LFN buffer */ |
| 1310 | BYTE *dir /* Pointer to the directory entry */ |
| 1311 | ) |
| 1312 | { |
| 1313 | UINT i, s; |
| 1314 | WCHAR wc, uc; |
| 1315 | |
| 1316 | |
| 1317 | i = ((dir[LDIR_Ord] & 0x3F) - 1) * 13; /* Offset in the LFN buffer */ |
| 1318 | |
| 1319 | s = 0; wc = 1; |
| 1320 | do { |
| 1321 | uc = LD_WORD(dir+LfnOfs[s]); /* Pick an LFN character from the entry */ |
| 1322 | if (wc) { /* Last char has not been processed */ |
| 1323 | if (i >= _MAX_LFN) return 0; /* Buffer overflow? */ |
| 1324 | lfnbuf[i++] = wc = uc; /* Store it */ |
| 1325 | } else { |
| 1326 | if (uc != 0xFFFF) return 0; /* Check filler */ |
| 1327 | } |
| 1328 | } while (++s < 13); /* Read all character in the entry */ |
| 1329 | |
| 1330 | if (dir[LDIR_Ord] & LLE) { /* Put terminator if it is the last LFN part */ |
| 1331 | if (i >= _MAX_LFN) return 0; /* Buffer overflow? */ |
| 1332 | lfnbuf[i] = 0; |
| 1333 | } |
| 1334 | |
| 1335 | return 1; |
| 1336 | } |
| 1337 | |
| 1338 | |
| 1339 | #if !_FS_READONLY |
| 1340 | static |
| 1341 | void fit_lfn ( |
| 1342 | const WCHAR *lfnbuf, /* Pointer to the LFN buffer */ |
| 1343 | BYTE *dir, /* Pointer to the directory entry */ |
| 1344 | BYTE ord, /* LFN order (1-20) */ |
| 1345 | BYTE sum /* SFN sum */ |
| 1346 | ) |
| 1347 | { |
| 1348 | UINT i, s; |
| 1349 | WCHAR wc; |
| 1350 | |
| 1351 | |
| 1352 | dir[LDIR_Chksum] = sum; /* Set check sum */ |
| 1353 | dir[LDIR_Attr] = AM_LFN; /* Set attribute. LFN entry */ |
| 1354 | dir[LDIR_Type] = 0; |
| 1355 | ST_WORD(dir+LDIR_FstClusLO, 0); |
| 1356 | |
| 1357 | i = (ord - 1) * 13; /* Get offset in the LFN buffer */ |
| 1358 | s = wc = 0; |
| 1359 | do { |
| 1360 | if (wc != 0xFFFF) wc = lfnbuf[i++]; /* Get an effective char */ |
| 1361 | ST_WORD(dir+LfnOfs[s], wc); /* Put it */ |
| 1362 | if (!wc) wc = 0xFFFF; /* Padding chars following last char */ |
| 1363 | } while (++s < 13); |
| 1364 | if (wc == 0xFFFF || !lfnbuf[i]) ord |= LLE; /* Bottom LFN part is the start of LFN sequence */ |
| 1365 | dir[LDIR_Ord] = ord; /* Set the LFN order */ |
| 1366 | } |
| 1367 | |
| 1368 | #endif |
| 1369 | #endif |
| 1370 | |
| 1371 | |
| 1372 | |
| 1373 | /*-----------------------------------------------------------------------*/ |
| 1374 | /* Create numbered name */ |
| 1375 | /*-----------------------------------------------------------------------*/ |
| 1376 | #if _USE_LFN |
| 1377 | void gen_numname ( |
| 1378 | BYTE *dst, /* Pointer to generated SFN */ |
| 1379 | const BYTE *src, /* Pointer to source SFN to be modified */ |
| 1380 | const WCHAR *lfn, /* Pointer to LFN */ |
| 1381 | WORD seq /* Sequence number */ |
| 1382 | ) |
| 1383 | { |
| 1384 | BYTE ns[8], c; |
| 1385 | UINT i, j; |
| 1386 | |
| 1387 | |
| 1388 | mem_cpy(dst, src, 11); |
| 1389 | |
| 1390 | if (seq > 5) { /* On many collisions, generate a hash number instead of sequential number */ |
| 1391 | do seq = (seq >> 1) + (seq << 15) + (WORD)*lfn++; while (*lfn); |
| 1392 | } |
| 1393 | |
| 1394 | /* itoa (hexdecimal) */ |
| 1395 | i = 7; |
| 1396 | do { |
| 1397 | c = (seq % 16) + '0'; |
| 1398 | if (c > '9') c += 7; |
| 1399 | ns[i--] = c; |
| 1400 | seq /= 16; |
| 1401 | } while (seq); |
| 1402 | ns[i] = '~'; |
| 1403 | |
| 1404 | /* Append the number */ |
| 1405 | for (j = 0; j < i && dst[j] != ' '; j++) { |
| 1406 | if (IsDBCS1(dst[j])) { |
| 1407 | if (j == i - 1) break; |
| 1408 | j++; |
| 1409 | } |
| 1410 | } |
| 1411 | do { |
| 1412 | dst[j++] = (i < 8) ? ns[i++] : ' '; |
| 1413 | } while (j < 8); |
| 1414 | } |
| 1415 | #endif |
| 1416 | |
| 1417 | |
| 1418 | |
| 1419 | |
| 1420 | /*-----------------------------------------------------------------------*/ |
| 1421 | /* Calculate sum of an SFN */ |
| 1422 | /*-----------------------------------------------------------------------*/ |
| 1423 | #if _USE_LFN |
| 1424 | static |
| 1425 | BYTE sum_sfn ( |
| 1426 | const BYTE *dir /* Ptr to directory entry */ |
| 1427 | ) |
| 1428 | { |
| 1429 | BYTE sum = 0; |
| 1430 | UINT n = 11; |
| 1431 | |
| 1432 | do sum = (sum >> 1) + (sum << 7) + *dir++; while (--n); |
| 1433 | return sum; |
| 1434 | } |
| 1435 | #endif |
| 1436 | |
| 1437 | |
| 1438 | |
| 1439 | |
| 1440 | /*-----------------------------------------------------------------------*/ |
| 1441 | /* Directory handling - Find an object in the directory */ |
| 1442 | /*-----------------------------------------------------------------------*/ |
| 1443 | |
| 1444 | static |
| 1445 | FRESULT dir_find ( |
| 1446 | DIR *dj /* Pointer to the directory object linked to the file name */ |
| 1447 | ) |
| 1448 | { |
| 1449 | FRESULT res; |
| 1450 | BYTE c, *dir; |
| 1451 | #if _USE_LFN |
| 1452 | BYTE a, ord, sum; |
| 1453 | #endif |
| 1454 | |
| 1455 | res = dir_sdi(dj, 0); /* Rewind directory object */ |
| 1456 | if (res != FR_OK) return res; |
| 1457 | |
| 1458 | #if _USE_LFN |
| 1459 | ord = sum = 0xFF; |
| 1460 | #endif |
| 1461 | do { |
| 1462 | res = move_window(dj->fs, dj->sect); |
| 1463 | if (res != FR_OK) break; |
| 1464 | dir = dj->dir; /* Ptr to the directory entry of current index */ |
| 1465 | c = dir[DIR_Name]; |
| 1466 | if (c == 0) { res = FR_NO_FILE; break; } /* Reached to end of table */ |
| 1467 | #if _USE_LFN /* LFN configuration */ |
| 1468 | a = dir[DIR_Attr] & AM_MASK; |
| 1469 | if (c == DDE || ((a & AM_VOL) && a != AM_LFN)) { /* An entry without valid data */ |
| 1470 | ord = 0xFF; |
| 1471 | } else { |
| 1472 | if (a == AM_LFN) { /* An LFN entry is found */ |
| 1473 | if (dj->lfn) { |
| 1474 | if (c & LLE) { /* Is it start of LFN sequence? */ |
| 1475 | sum = dir[LDIR_Chksum]; |
| 1476 | c &= ~LLE; ord = c; /* LFN start order */ |
| 1477 | dj->lfn_idx = dj->index; |
| 1478 | } |
| 1479 | /* Check validity of the LFN entry and compare it with given name */ |
| 1480 | ord = (c == ord && sum == dir[LDIR_Chksum] && cmp_lfn(dj->lfn, dir)) ? ord - 1 : 0xFF; |
| 1481 | } |
| 1482 | } else { /* An SFN entry is found */ |
| 1483 | if (!ord && sum == sum_sfn(dir)) break; /* LFN matched? */ |
| 1484 | ord = 0xFF; dj->lfn_idx = 0xFFFF; /* Reset LFN sequence */ |
| 1485 | if (!(dj->fn[NS] & NS_LOSS) && !mem_cmp(dir, dj->fn, 11)) break; /* SFN matched? */ |
| 1486 | } |
| 1487 | } |
| 1488 | #else /* Non LFN configuration */ |
| 1489 | if (!(dir[DIR_Attr] & AM_VOL) && !mem_cmp(dir, dj->fn, 11)) /* Is it a valid entry? */ |
| 1490 | break; |
| 1491 | #endif |
| 1492 | res = dir_next(dj, 0); /* Next entry */ |
| 1493 | } while (res == FR_OK); |
| 1494 | |
| 1495 | return res; |
| 1496 | } |
| 1497 | |
| 1498 | |
| 1499 | |
| 1500 | |
| 1501 | /*-----------------------------------------------------------------------*/ |
| 1502 | /* Read an object from the directory */ |
| 1503 | /*-----------------------------------------------------------------------*/ |
| 1504 | #if _FS_MINIMIZE <= 1 || _USE_LABEL || _FS_RPATH >= 2 |
| 1505 | static |
| 1506 | FRESULT dir_read ( |
| 1507 | DIR *dj, /* Pointer to the directory object */ |
| 1508 | int vol /* Filtered by 0:file/dir or 1:volume label */ |
| 1509 | ) |
| 1510 | { |
| 1511 | FRESULT res; |
| 1512 | BYTE a, c, *dir; |
| 1513 | #if _USE_LFN |
| 1514 | BYTE ord = 0xFF, sum = 0xFF; |
| 1515 | #endif |
| 1516 | |
| 1517 | res = FR_NO_FILE; |
| 1518 | while (dj->sect) { |
| 1519 | res = move_window(dj->fs, dj->sect); |
| 1520 | if (res != FR_OK) break; |
| 1521 | dir = dj->dir; /* Ptr to the directory entry of current index */ |
| 1522 | c = dir[DIR_Name]; |
| 1523 | if (c == 0) { res = FR_NO_FILE; break; } /* Reached to end of table */ |
| 1524 | a = dir[DIR_Attr] & AM_MASK; |
| 1525 | #if _USE_LFN /* LFN configuration */ |
| 1526 | if (c == DDE || (!_FS_RPATH && c == '.') || (a == AM_VOL) != vol) { /* An entry without valid data */ |
| 1527 | ord = 0xFF; |
| 1528 | } else { |
| 1529 | if (a == AM_LFN) { /* An LFN entry is found */ |
| 1530 | if (c & LLE) { /* Is it start of LFN sequence? */ |
| 1531 | sum = dir[LDIR_Chksum]; |
| 1532 | c &= ~LLE; ord = c; |
| 1533 | dj->lfn_idx = dj->index; |
| 1534 | } |
| 1535 | /* Check LFN validity and capture it */ |
| 1536 | ord = (c == ord && sum == dir[LDIR_Chksum] && pick_lfn(dj->lfn, dir)) ? ord - 1 : 0xFF; |
| 1537 | } else { /* An SFN entry is found */ |
| 1538 | if (ord || sum != sum_sfn(dir)) /* Is there a valid LFN? */ |
| 1539 | dj->lfn_idx = 0xFFFF; /* It has no LFN. */ |
| 1540 | break; |
| 1541 | } |
| 1542 | } |
| 1543 | #else /* Non LFN configuration */ |
| 1544 | if (c != DDE && (_FS_RPATH || c != '.') && a != AM_LFN && (a == AM_VOL) == vol) /* Is it a valid entry? */ |
| 1545 | break; |
| 1546 | #endif |
| 1547 | res = dir_next(dj, 0); /* Next entry */ |
| 1548 | if (res != FR_OK) break; |
| 1549 | } |
| 1550 | |
| 1551 | if (res != FR_OK) dj->sect = 0; |
| 1552 | |
| 1553 | return res; |
| 1554 | } |
| 1555 | #endif /* _FS_MINIMIZE <= 1 || _USE_LABEL || _FS_RPATH >= 2 */ |
| 1556 | |
| 1557 | |
| 1558 | |
| 1559 | /*-----------------------------------------------------------------------*/ |
| 1560 | /* Register an object to the directory */ |
| 1561 | /*-----------------------------------------------------------------------*/ |
| 1562 | #if !_FS_READONLY |
| 1563 | static |
| 1564 | FRESULT dir_register ( /* FR_OK:Successful, FR_DENIED:No free entry or too many SFN collision, FR_DISK_ERR:Disk error */ |
| 1565 | DIR *dj /* Target directory with object name to be created */ |
| 1566 | ) |
| 1567 | { |
| 1568 | FRESULT res; |
| 1569 | #if _USE_LFN /* LFN configuration */ |
| 1570 | WORD n, ne; |
| 1571 | BYTE sn[12], *fn, sum; |
| 1572 | WCHAR *lfn; |
| 1573 | |
| 1574 | |
| 1575 | fn = dj->fn; lfn = dj->lfn; |
| 1576 | mem_cpy(sn, fn, 12); |
| 1577 | |
| 1578 | if (_FS_RPATH && (sn[NS] & NS_DOT)) /* Cannot create dot entry */ |
| 1579 | return FR_INVALID_NAME; |
| 1580 | |
| 1581 | if (sn[NS] & NS_LOSS) { /* When LFN is out of 8.3 format, generate a numbered name */ |
| 1582 | fn[NS] = 0; dj->lfn = 0; /* Find only SFN */ |
| 1583 | for (n = 1; n < 100; n++) { |
| 1584 | gen_numname(fn, sn, lfn, n); /* Generate a numbered name */ |
| 1585 | res = dir_find(dj); /* Check if the name collides with existing SFN */ |
| 1586 | if (res != FR_OK) break; |
| 1587 | } |
| 1588 | if (n == 100) return FR_DENIED; /* Abort if too many collisions */ |
| 1589 | if (res != FR_NO_FILE) return res; /* Abort if the result is other than 'not collided' */ |
| 1590 | fn[NS] = sn[NS]; dj->lfn = lfn; |
| 1591 | } |
| 1592 | |
| 1593 | if (sn[NS] & NS_LFN) { /* When LFN is to be created, allocate entries for an SFN + LFNs. */ |
| 1594 | for (n = 0; lfn[n]; n++) ; |
| 1595 | ne = (n + 25) / 13; |
| 1596 | } else { /* Otherwise allocate an entry for an SFN */ |
| 1597 | ne = 1; |
| 1598 | } |
| 1599 | res = dir_alloc(dj, ne); /* Allocate entries */ |
| 1600 | |
| 1601 | if (res == FR_OK && --ne) { /* Set LFN entry if needed */ |
| 1602 | res = dir_sdi(dj, (WORD)(dj->index - ne)); |
| 1603 | if (res == FR_OK) { |
| 1604 | sum = sum_sfn(dj->fn); /* Sum value of the SFN tied to the LFN */ |
| 1605 | do { /* Store LFN entries in bottom first */ |
| 1606 | res = move_window(dj->fs, dj->sect); |
| 1607 | if (res != FR_OK) break; |
| 1608 | fit_lfn(dj->lfn, dj->dir, (BYTE)ne, sum); |
| 1609 | dj->fs->wflag = 1; |
| 1610 | res = dir_next(dj, 0); /* Next entry */ |
| 1611 | } while (res == FR_OK && --ne); |
| 1612 | } |
| 1613 | } |
| 1614 | #else /* Non LFN configuration */ |
| 1615 | res = dir_alloc(dj, 1); /* Allocate an entry for SFN */ |
| 1616 | #endif |
| 1617 | |
| 1618 | if (res == FR_OK) { /* Set SFN entry */ |
| 1619 | res = move_window(dj->fs, dj->sect); |
| 1620 | if (res == FR_OK) { |
| 1621 | mem_set(dj->dir, 0, SZ_DIR); /* Clean the entry */ |
| 1622 | mem_cpy(dj->dir, dj->fn, 11); /* Put SFN */ |
| 1623 | #if _USE_LFN |
| 1624 | dj->dir[DIR_NTres] = *(dj->fn+NS) & (NS_BODY | NS_EXT); /* Put NT flag */ |
| 1625 | #endif |
| 1626 | dj->fs->wflag = 1; |
| 1627 | } |
| 1628 | } |
| 1629 | |
| 1630 | return res; |
| 1631 | } |
| 1632 | #endif /* !_FS_READONLY */ |
| 1633 | |
| 1634 | |
| 1635 | |
| 1636 | |
| 1637 | /*-----------------------------------------------------------------------*/ |
| 1638 | /* Remove an object from the directory */ |
| 1639 | /*-----------------------------------------------------------------------*/ |
| 1640 | #if !_FS_READONLY && !_FS_MINIMIZE |
| 1641 | static |
| 1642 | FRESULT dir_remove ( /* FR_OK: Successful, FR_DISK_ERR: A disk error */ |
| 1643 | DIR *dj /* Directory object pointing the entry to be removed */ |
| 1644 | ) |
| 1645 | { |
| 1646 | FRESULT res; |
| 1647 | #if _USE_LFN /* LFN configuration */ |
| 1648 | WORD i; |
| 1649 | |
| 1650 | i = dj->index; /* SFN index */ |
| 1651 | res = dir_sdi(dj, (WORD)((dj->lfn_idx == 0xFFFF) ? i : dj->lfn_idx)); /* Goto the SFN or top of the LFN entries */ |
| 1652 | if (res == FR_OK) { |
| 1653 | do { |
| 1654 | res = move_window(dj->fs, dj->sect); |
| 1655 | if (res != FR_OK) break; |
| 1656 | *dj->dir = DDE; /* Mark the entry "deleted" */ |
| 1657 | dj->fs->wflag = 1; |
| 1658 | if (dj->index >= i) break; /* When reached SFN, all entries of the object has been deleted. */ |
| 1659 | res = dir_next(dj, 0); /* Next entry */ |
| 1660 | } while (res == FR_OK); |
| 1661 | if (res == FR_NO_FILE) res = FR_INT_ERR; |
| 1662 | } |
| 1663 | |
| 1664 | #else /* Non LFN configuration */ |
| 1665 | res = dir_sdi(dj, dj->index); |
| 1666 | if (res == FR_OK) { |
| 1667 | res = move_window(dj->fs, dj->sect); |
| 1668 | if (res == FR_OK) { |
| 1669 | *dj->dir = DDE; /* Mark the entry "deleted" */ |
| 1670 | dj->fs->wflag = 1; |
| 1671 | } |
| 1672 | } |
| 1673 | #endif |
| 1674 | |
| 1675 | return res; |
| 1676 | } |
| 1677 | #endif /* !_FS_READONLY */ |
| 1678 | |
| 1679 | |
| 1680 | |
| 1681 | |
| 1682 | /*-----------------------------------------------------------------------*/ |
| 1683 | /* Pick a segment and create the object name in directory form */ |
| 1684 | /*-----------------------------------------------------------------------*/ |
| 1685 | |
| 1686 | static |
| 1687 | FRESULT create_name ( |
| 1688 | DIR *dj, /* Pointer to the directory object */ |
| 1689 | const TCHAR **path /* Pointer to pointer to the segment in the path string */ |
| 1690 | ) |
| 1691 | { |
| 1692 | #if _USE_LFN /* LFN configuration */ |
| 1693 | BYTE b, cf; |
| 1694 | WCHAR w, *lfn; |
| 1695 | UINT i, ni, si, di; |
| 1696 | const TCHAR *p; |
| 1697 | |
| 1698 | /* Create LFN in Unicode */ |
| 1699 | for (p = *path; *p == '/' || *p == '\\'; p++) ; /* Strip duplicated separator */ |
| 1700 | lfn = dj->lfn; |
| 1701 | si = di = 0; |
| 1702 | for (;;) { |
| 1703 | w = p[si++]; /* Get a character */ |
| 1704 | if (w < ' ' || w == '/' || w == '\\') break; /* Break on end of segment */ |
| 1705 | if (di >= _MAX_LFN) /* Reject too long name */ |
| 1706 | return FR_INVALID_NAME; |
| 1707 | #if !_LFN_UNICODE |
| 1708 | w &= 0xFF; |
| 1709 | if (IsDBCS1(w)) { /* Check if it is a DBC 1st byte (always false on SBCS cfg) */ |
| 1710 | b = (BYTE)p[si++]; /* Get 2nd byte */ |
| 1711 | if (!IsDBCS2(b)) |
| 1712 | return FR_INVALID_NAME; /* Reject invalid sequence */ |
| 1713 | w = (w << 8) + b; /* Create a DBC */ |
| 1714 | } |
| 1715 | w = ff_convert(w, 1); /* Convert ANSI/OEM to Unicode */ |
| 1716 | if (!w) return FR_INVALID_NAME; /* Reject invalid code */ |
| 1717 | #endif |
| 1718 | if (w < 0x80 && chk_chr("\"*:<>\?|\x7F", w)) /* Reject illegal chars for LFN */ |
| 1719 | return FR_INVALID_NAME; |
| 1720 | lfn[di++] = w; /* Store the Unicode char */ |
| 1721 | } |
| 1722 | *path = &p[si]; /* Return pointer to the next segment */ |
| 1723 | cf = (w < ' ') ? NS_LAST : 0; /* Set last segment flag if end of path */ |
| 1724 | #if _FS_RPATH |
| 1725 | if ((di == 1 && lfn[di-1] == '.') || /* Is this a dot entry? */ |
| 1726 | (di == 2 && lfn[di-1] == '.' && lfn[di-2] == '.')) { |
| 1727 | lfn[di] = 0; |
| 1728 | for (i = 0; i < 11; i++) |
| 1729 | dj->fn[i] = (i < di) ? '.' : ' '; |
| 1730 | dj->fn[i] = cf | NS_DOT; /* This is a dot entry */ |
| 1731 | return FR_OK; |
| 1732 | } |
| 1733 | #endif |
| 1734 | while (di) { /* Strip trailing spaces and dots */ |
| 1735 | w = lfn[di-1]; |
| 1736 | if (w != ' ' && w != '.') break; |
| 1737 | di--; |
| 1738 | } |
| 1739 | if (!di) return FR_INVALID_NAME; /* Reject nul string */ |
| 1740 | |
| 1741 | lfn[di] = 0; /* LFN is created */ |
| 1742 | |
| 1743 | /* Create SFN in directory form */ |
| 1744 | mem_set(dj->fn, ' ', 11); |
| 1745 | for (si = 0; lfn[si] == ' ' || lfn[si] == '.'; si++) ; /* Strip leading spaces and dots */ |
| 1746 | if (si) cf |= NS_LOSS | NS_LFN; |
| 1747 | while (di && lfn[di - 1] != '.') di--; /* Find extension (di<=si: no extension) */ |
| 1748 | |
| 1749 | b = i = 0; ni = 8; |
| 1750 | for (;;) { |
| 1751 | w = lfn[si++]; /* Get an LFN char */ |
| 1752 | if (!w) break; /* Break on end of the LFN */ |
| 1753 | if (w == ' ' || (w == '.' && si != di)) { /* Remove spaces and dots */ |
| 1754 | cf |= NS_LOSS | NS_LFN; continue; |
| 1755 | } |
| 1756 | |
| 1757 | if (i >= ni || si == di) { /* Extension or end of SFN */ |
| 1758 | if (ni == 11) { /* Long extension */ |
| 1759 | cf |= NS_LOSS | NS_LFN; break; |
| 1760 | } |
| 1761 | if (si != di) cf |= NS_LOSS | NS_LFN; /* Out of 8.3 format */ |
| 1762 | if (si > di) break; /* No extension */ |
| 1763 | si = di; i = 8; ni = 11; /* Enter extension section */ |
| 1764 | b <<= 2; continue; |
| 1765 | } |
| 1766 | |
| 1767 | if (w >= 0x80) { /* Non ASCII char */ |
| 1768 | #ifdef _EXCVT |
| 1769 | w = ff_convert(w, 0); /* Unicode -> OEM code */ |
| 1770 | if (w) w = ExCvt[w - 0x80]; /* Convert extended char to upper (SBCS) */ |
| 1771 | #else |
| 1772 | w = ff_convert(ff_wtoupper(w), 0); /* Upper converted Unicode -> OEM code */ |
| 1773 | #endif |
| 1774 | cf |= NS_LFN; /* Force create LFN entry */ |
| 1775 | } |
| 1776 | |
| 1777 | if (_DF1S && w >= 0x100) { /* Double byte char (always false on SBCS cfg) */ |
| 1778 | if (i >= ni - 1) { |
| 1779 | cf |= NS_LOSS | NS_LFN; i = ni; continue; |
| 1780 | } |
| 1781 | dj->fn[i++] = (BYTE)(w >> 8); |
| 1782 | } else { /* Single byte char */ |
| 1783 | if (!w || chk_chr("+,;=[]", w)) { /* Replace illegal chars for SFN */ |
| 1784 | w = '_'; cf |= NS_LOSS | NS_LFN;/* Lossy conversion */ |
| 1785 | } else { |
| 1786 | if (IsUpper(w)) { /* ASCII large capital */ |
| 1787 | b |= 2; |
| 1788 | } else { |
| 1789 | if (IsLower(w)) { /* ASCII small capital */ |
| 1790 | b |= 1; w -= 0x20; |
| 1791 | } |
| 1792 | } |
| 1793 | } |
| 1794 | } |
| 1795 | dj->fn[i++] = (BYTE)w; |
| 1796 | } |
| 1797 | |
| 1798 | if (dj->fn[0] == DDE) dj->fn[0] = NDDE; /* If the first char collides with deleted mark, replace it with 0x05 */ |
| 1799 | |
| 1800 | if (ni == 8) b <<= 2; |
| 1801 | if ((b & 0x0C) == 0x0C || (b & 0x03) == 0x03) /* Create LFN entry when there are composite capitals */ |
| 1802 | cf |= NS_LFN; |
| 1803 | if (!(cf & NS_LFN)) { /* When LFN is in 8.3 format without extended char, NT flags are created */ |
| 1804 | if ((b & 0x03) == 0x01) cf |= NS_EXT; /* NT flag (Extension has only small capital) */ |
| 1805 | if ((b & 0x0C) == 0x04) cf |= NS_BODY; /* NT flag (Filename has only small capital) */ |
| 1806 | } |
| 1807 | |
| 1808 | dj->fn[NS] = cf; /* SFN is created */ |
| 1809 | |
| 1810 | return FR_OK; |
| 1811 | |
| 1812 | |
| 1813 | #else /* Non-LFN configuration */ |
| 1814 | BYTE b, c, d, *sfn; |
| 1815 | UINT ni, si, i; |
| 1816 | const char *p; |
| 1817 | |
| 1818 | /* Create file name in directory form */ |
| 1819 | for (p = *path; *p == '/' || *p == '\\'; p++) ; /* Strip duplicated separator */ |
| 1820 | sfn = dj->fn; |
| 1821 | mem_set(sfn, ' ', 11); |
| 1822 | si = i = b = 0; ni = 8; |
| 1823 | #if _FS_RPATH |
| 1824 | if (p[si] == '.') { /* Is this a dot entry? */ |
| 1825 | for (;;) { |
| 1826 | c = (BYTE)p[si++]; |
| 1827 | if (c != '.' || si >= 3) break; |
| 1828 | sfn[i++] = c; |
| 1829 | } |
| 1830 | if (c != '/' && c != '\\' && c > ' ') return FR_INVALID_NAME; |
| 1831 | *path = &p[si]; /* Return pointer to the next segment */ |
| 1832 | sfn[NS] = (c <= ' ') ? NS_LAST | NS_DOT : NS_DOT; /* Set last segment flag if end of path */ |
| 1833 | return FR_OK; |
| 1834 | } |
| 1835 | #endif |
| 1836 | for (;;) { |
| 1837 | c = (BYTE)p[si++]; |
| 1838 | if (c <= ' ' || c == '/' || c == '\\') break; /* Break on end of segment */ |
| 1839 | if (c == '.' || i >= ni) { |
| 1840 | if (ni != 8 || c != '.') return FR_INVALID_NAME; |
| 1841 | i = 8; ni = 11; |
| 1842 | b <<= 2; continue; |
| 1843 | } |
| 1844 | if (c >= 0x80) { /* Extended char? */ |
| 1845 | b |= 3; /* Eliminate NT flag */ |
| 1846 | #ifdef _EXCVT |
| 1847 | c = ExCvt[c - 0x80]; /* To upper extended chars (SBCS cfg) */ |
| 1848 | #else |
| 1849 | #if !_DF1S |
| 1850 | return FR_INVALID_NAME; /* Reject extended chars (ASCII cfg) */ |
| 1851 | #endif |
| 1852 | #endif |
| 1853 | } |
| 1854 | if (IsDBCS1(c)) { /* Check if it is a DBC 1st byte (always false on SBCS cfg) */ |
| 1855 | d = (BYTE)p[si++]; /* Get 2nd byte */ |
| 1856 | if (!IsDBCS2(d) || i >= ni - 1) /* Reject invalid DBC */ |
| 1857 | return FR_INVALID_NAME; |
| 1858 | sfn[i++] = c; |
| 1859 | sfn[i++] = d; |
| 1860 | } else { /* Single byte code */ |
| 1861 | if (chk_chr("\"*+,:;<=>\?[]|\x7F", c)) /* Reject illegal chrs for SFN */ |
| 1862 | return FR_INVALID_NAME; |
| 1863 | if (IsUpper(c)) { /* ASCII large capital? */ |
| 1864 | b |= 2; |
| 1865 | } else { |
| 1866 | if (IsLower(c)) { /* ASCII small capital? */ |
| 1867 | b |= 1; c -= 0x20; |
| 1868 | } |
| 1869 | } |
| 1870 | sfn[i++] = c; |
| 1871 | } |
| 1872 | } |
| 1873 | *path = &p[si]; /* Return pointer to the next segment */ |
| 1874 | c = (c <= ' ') ? NS_LAST : 0; /* Set last segment flag if end of path */ |
| 1875 | |
| 1876 | if (!i) return FR_INVALID_NAME; /* Reject nul string */ |
| 1877 | if (sfn[0] == DDE) sfn[0] = NDDE; /* When first char collides with DDE, replace it with 0x05 */ |
| 1878 | |
| 1879 | if (ni == 8) b <<= 2; |
| 1880 | if ((b & 0x03) == 0x01) c |= NS_EXT; /* NT flag (Name extension has only small capital) */ |
| 1881 | if ((b & 0x0C) == 0x04) c |= NS_BODY; /* NT flag (Name body has only small capital) */ |
| 1882 | |
| 1883 | sfn[NS] = c; /* Store NT flag, File name is created */ |
| 1884 | |
| 1885 | return FR_OK; |
| 1886 | #endif |
| 1887 | } |
| 1888 | |
| 1889 | |
| 1890 | |
| 1891 | |
| 1892 | /*-----------------------------------------------------------------------*/ |
| 1893 | /* Get file information from directory entry */ |
| 1894 | /*-----------------------------------------------------------------------*/ |
| 1895 | #if _FS_MINIMIZE <= 1 || _FS_RPATH >= 2 |
| 1896 | static |
| 1897 | void get_fileinfo ( /* No return code */ |
| 1898 | DIR *dj, /* Pointer to the directory object */ |
| 1899 | FILINFO *fno /* Pointer to the file information to be filled */ |
| 1900 | ) |
| 1901 | { |
| 1902 | UINT i; |
| 1903 | BYTE nt, *dir; |
| 1904 | TCHAR *p, c; |
| 1905 | |
| 1906 | |
| 1907 | p = fno->fname; |
| 1908 | if (dj->sect) { |
| 1909 | dir = dj->dir; |
| 1910 | nt = dir[DIR_NTres]; /* NT flag */ |
| 1911 | for (i = 0; i < 8; i++) { /* Copy name body */ |
| 1912 | c = dir[i]; |
| 1913 | if (c == ' ') break; |
| 1914 | if (c == NDDE) c = (TCHAR)DDE; |
| 1915 | if (_USE_LFN && (nt & NS_BODY) && IsUpper(c)) c += 0x20; |
| 1916 | #if _LFN_UNICODE |
| 1917 | if (IsDBCS1(c) && i < 7 && IsDBCS2(dir[i+1])) |
| 1918 | c = (c << 8) | dir[++i]; |
| 1919 | c = ff_convert(c, 1); |
| 1920 | if (!c) c = '?'; |
| 1921 | #endif |
| 1922 | *p++ = c; |
| 1923 | } |
| 1924 | if (dir[8] != ' ') { /* Copy name extension */ |
| 1925 | *p++ = '.'; |
| 1926 | for (i = 8; i < 11; i++) { |
| 1927 | c = dir[i]; |
| 1928 | if (c == ' ') break; |
| 1929 | if (_USE_LFN && (nt & NS_EXT) && IsUpper(c)) c += 0x20; |
| 1930 | #if _LFN_UNICODE |
| 1931 | if (IsDBCS1(c) && i < 10 && IsDBCS2(dir[i+1])) |
| 1932 | c = (c << 8) | dir[++i]; |
| 1933 | c = ff_convert(c, 1); |
| 1934 | if (!c) c = '?'; |
| 1935 | #endif |
| 1936 | *p++ = c; |
| 1937 | } |
| 1938 | } |
| 1939 | fno->fattrib = dir[DIR_Attr]; /* Attribute */ |
| 1940 | fno->fsize = LD_DWORD(dir+DIR_FileSize); /* Size */ |
| 1941 | fno->fdate = LD_WORD(dir+DIR_WrtDate); /* Date */ |
| 1942 | fno->ftime = LD_WORD(dir+DIR_WrtTime); /* Time */ |
| 1943 | } |
| 1944 | *p = 0; /* Terminate SFN str by a \0 */ |
| 1945 | |
| 1946 | #if _USE_LFN |
| 1947 | if (fno->lfname && fno->lfsize) { |
| 1948 | TCHAR *tp = fno->lfname; |
| 1949 | WCHAR w, *lfn; |
| 1950 | |
| 1951 | i = 0; |
| 1952 | if (dj->sect && dj->lfn_idx != 0xFFFF) {/* Get LFN if available */ |
| 1953 | lfn = dj->lfn; |
| 1954 | while ((w = *lfn++) != 0) { /* Get an LFN char */ |
| 1955 | #if !_LFN_UNICODE |
| 1956 | w = ff_convert(w, 0); /* Unicode -> OEM conversion */ |
| 1957 | if (!w) { i = 0; break; } /* Could not convert, no LFN */ |
| 1958 | if (_DF1S && w >= 0x100) /* Put 1st byte if it is a DBC (always false on SBCS cfg) */ |
| 1959 | tp[i++] = (TCHAR)(w >> 8); |
| 1960 | #endif |
| 1961 | if (i >= fno->lfsize - 1) { i = 0; break; } /* Buffer overflow, no LFN */ |
| 1962 | tp[i++] = (TCHAR)w; |
| 1963 | } |
| 1964 | } |
| 1965 | tp[i] = 0; /* Terminate the LFN str by a \0 */ |
| 1966 | } |
| 1967 | #endif |
| 1968 | } |
| 1969 | #endif /* _FS_MINIMIZE <= 1 || _FS_RPATH >= 2*/ |
| 1970 | |
| 1971 | |
| 1972 | |
| 1973 | |
| 1974 | /*-----------------------------------------------------------------------*/ |
| 1975 | /* Follow a file path */ |
| 1976 | /*-----------------------------------------------------------------------*/ |
| 1977 | |
| 1978 | static |
| 1979 | FRESULT follow_path ( /* FR_OK(0): successful, !=0: error code */ |
| 1980 | DIR *dj, /* Directory object to return last directory and found object */ |
| 1981 | const TCHAR *path /* Full-path string to find a file or directory */ |
| 1982 | ) |
| 1983 | { |
| 1984 | FRESULT res; |
| 1985 | BYTE *dir, ns; |
| 1986 | |
| 1987 | |
| 1988 | #if _FS_RPATH |
| 1989 | if (*path == '/' || *path == '\\') { /* There is a heading separator */ |
| 1990 | path++; dj->sclust = 0; /* Strip it and start from the root dir */ |
| 1991 | } else { /* No heading separator */ |
| 1992 | dj->sclust = dj->fs->cdir; /* Start from the current dir */ |
| 1993 | } |
| 1994 | #else |
| 1995 | if (*path == '/' || *path == '\\') /* Strip heading separator if exist */ |
| 1996 | path++; |
| 1997 | dj->sclust = 0; /* Start from the root dir */ |
| 1998 | #endif |
| 1999 | |
| 2000 | if ((UINT)*path < ' ') { /* Nul path means the start directory itself */ |
| 2001 | res = dir_sdi(dj, 0); |
| 2002 | dj->dir = 0; |
| 2003 | } else { /* Follow path */ |
| 2004 | for (;;) { |
| 2005 | res = create_name(dj, &path); /* Get a segment */ |
| 2006 | if (res != FR_OK) break; |
| 2007 | res = dir_find(dj); /* Find it */ |
| 2008 | ns = *(dj->fn+NS); |
| 2009 | if (res != FR_OK) { /* Failed to find the object */ |
| 2010 | if (res != FR_NO_FILE) break; /* Abort if any hard error occurred */ |
| 2011 | /* Object not found */ |
| 2012 | if (_FS_RPATH && (ns & NS_DOT)) { /* If dot entry is not exit */ |
| 2013 | dj->sclust = 0; dj->dir = 0; /* It is the root dir */ |
| 2014 | res = FR_OK; |
| 2015 | if (!(ns & NS_LAST)) continue; |
| 2016 | } else { /* Could not find the object */ |
| 2017 | if (!(ns & NS_LAST)) res = FR_NO_PATH; |
| 2018 | } |
| 2019 | break; |
| 2020 | } |
| 2021 | if (ns & NS_LAST) break; /* Last segment match. Function completed. */ |
| 2022 | dir = dj->dir; /* There is next segment. Follow the sub directory */ |
| 2023 | if (!(dir[DIR_Attr] & AM_DIR)) { /* Cannot follow because it is a file */ |
| 2024 | res = FR_NO_PATH; break; |
| 2025 | } |
| 2026 | dj->sclust = ld_clust(dj->fs, dir); |
| 2027 | } |
| 2028 | } |
| 2029 | |
| 2030 | return res; |
| 2031 | } |
| 2032 | |
| 2033 | |
| 2034 | |
| 2035 | |
| 2036 | /*-----------------------------------------------------------------------*/ |
| 2037 | /* Load a sector and check if it is an FAT Volume Boot Record */ |
| 2038 | /*-----------------------------------------------------------------------*/ |
| 2039 | |
| 2040 | static |
| 2041 | BYTE check_fs ( /* 0:FAT-VBR, 1:Any BR but not FAT, 2:Not a BR, 3:Disk error */ |
| 2042 | FATFS *fs, /* File system object */ |
| 2043 | DWORD sect /* Sector# (lba) to check if it is an FAT boot record or not */ |
| 2044 | ) |
| 2045 | { |
| 2046 | if (disk_read(fs->drv, fs->win, sect, 1) != RES_OK) /* Load boot record */ |
| 2047 | return 3; |
| 2048 | if (LD_WORD(&fs->win[BS_55AA]) != 0xAA55) /* Check record signature (always placed at offset 510 even if the sector size is >512) */ |
| 2049 | return 2; |
| 2050 | |
| 2051 | if ((LD_DWORD(&fs->win[BS_FilSysType]) & 0xFFFFFF) == 0x544146) /* Check "FAT" string */ |
| 2052 | return 0; |
| 2053 | if ((LD_DWORD(&fs->win[BS_FilSysType32]) & 0xFFFFFF) == 0x544146) |
| 2054 | return 0; |
| 2055 | |
| 2056 | return 1; |
| 2057 | } |
| 2058 | |
| 2059 | |
| 2060 | |
| 2061 | |
| 2062 | /*-----------------------------------------------------------------------*/ |
| 2063 | /* Check if the file system object is valid or not */ |
| 2064 | /*-----------------------------------------------------------------------*/ |
| 2065 | |
| 2066 | static |
| 2067 | FRESULT chk_mounted ( /* FR_OK(0): successful, !=0: any error occurred */ |
| 2068 | const TCHAR **path, /* Pointer to pointer to the path name (drive number) */ |
| 2069 | FATFS **rfs, /* Pointer to pointer to the found file system object */ |
| 2070 | BYTE wmode /* !=0: Check write protection for write access */ |
| 2071 | ) |
| 2072 | { |
| 2073 | BYTE fmt, b, pi, *tbl; |
| 2074 | UINT vol; |
| 2075 | DSTATUS stat; |
| 2076 | DWORD bsect, fasize, tsect, sysect, nclst, szbfat; |
| 2077 | WORD nrsv; |
| 2078 | const TCHAR *p = *path; |
| 2079 | FATFS *fs; |
| 2080 | |
| 2081 | |
| 2082 | /* Get logical drive number from the path name */ |
| 2083 | vol = p[0] - '0'; /* Is there a drive number? */ |
| 2084 | if (vol <= 9 && p[1] == ':') { /* Found a drive number, get and strip it */ |
| 2085 | p += 2; *path = p; /* Return pointer to the path name */ |
| 2086 | } else { /* No drive number, use default drive */ |
| 2087 | #if _FS_RPATH |
| 2088 | vol = CurrVol; /* Use current drive */ |
| 2089 | #else |
| 2090 | vol = 0; /* Use drive 0 */ |
| 2091 | #endif |
| 2092 | } |
| 2093 | |
| 2094 | /* Check if the file system object is valid or not */ |
| 2095 | *rfs = 0; |
| 2096 | if (vol >= _VOLUMES) /* Is the drive number valid? */ |
| 2097 | return FR_INVALID_DRIVE; |
| 2098 | fs = FatFs[vol]; /* Get corresponding file system object */ |
| 2099 | if (!fs) return FR_NOT_ENABLED; /* Is the file system object available? */ |
| 2100 | |
| 2101 | ENTER_FF(fs); /* Lock volume */ |
| 2102 | |
| 2103 | *rfs = fs; /* Return pointer to the corresponding file system object */ |
| 2104 | if (fs->fs_type) { /* If the volume has been mounted */ |
| 2105 | stat = disk_status(fs->drv); |
| 2106 | if (!(stat & STA_NOINIT)) { /* and the physical drive is kept initialized (has not been changed), */ |
| 2107 | if (!_FS_READONLY && wmode && (stat & STA_PROTECT)) /* Check write protection if needed */ |
| 2108 | return FR_WRITE_PROTECTED; |
| 2109 | return FR_OK; /* The file system object is valid */ |
| 2110 | } |
| 2111 | } |
| 2112 | |
| 2113 | /* The file system object is not valid. */ |
| 2114 | /* Following code attempts to mount the volume. (analyze BPB and initialize the fs object) */ |
| 2115 | |
| 2116 | fs->fs_type = 0; /* Clear the file system object */ |
| 2117 | fs->drv = LD2PD(vol); /* Bind the logical drive and a physical drive */ |
| 2118 | stat = disk_initialize(fs->drv); /* Initialize the physical drive */ |
| 2119 | if (stat & STA_NOINIT) /* Check if the initialization succeeded */ |
| 2120 | return FR_NOT_READY; /* Failed to initialize due to no medium or hard error */ |
| 2121 | if (!_FS_READONLY && wmode && (stat & STA_PROTECT)) /* Check disk write protection if needed */ |
| 2122 | return FR_WRITE_PROTECTED; |
| 2123 | #if _MAX_SS != 512 /* Get disk sector size (variable sector size cfg only) */ |
| 2124 | if (disk_ioctl(fs->drv, GET_SECTOR_SIZE, &fs->ssize) != RES_OK) |
| 2125 | return FR_DISK_ERR; |
| 2126 | #endif |
| 2127 | /* Search FAT partition on the drive. Supports only generic partitions, FDISK and SFD. */ |
| 2128 | fmt = check_fs(fs, bsect = 0); /* Load sector 0 and check if it is an FAT-VBR (in SFD) */ |
| 2129 | if (LD2PT(vol) && !fmt) fmt = 1; /* Force non-SFD if the volume is forced partition */ |
| 2130 | if (fmt == 1) { /* Not an FAT-VBR, the physical drive can be partitioned */ |
| 2131 | /* Check the partition listed in the partition table */ |
| 2132 | pi = LD2PT(vol); |
| 2133 | if (pi) pi--; |
| 2134 | tbl = &fs->win[MBR_Table + pi * SZ_PTE];/* Partition table */ |
| 2135 | if (tbl[4]) { /* Is the partition existing? */ |
| 2136 | bsect = LD_DWORD(&tbl[8]); /* Partition offset in LBA */ |
| 2137 | fmt = check_fs(fs, bsect); /* Check the partition */ |
| 2138 | } |
| 2139 | } |
| 2140 | if (fmt == 3) return FR_DISK_ERR; |
| 2141 | if (fmt) return FR_NO_FILESYSTEM; /* No FAT volume is found */ |
| 2142 | |
| 2143 | /* An FAT volume is found. Following code initializes the file system object */ |
| 2144 | |
| 2145 | if (LD_WORD(fs->win+BPB_BytsPerSec) != SS(fs)) /* (BPB_BytsPerSec must be equal to the physical sector size) */ |
| 2146 | return FR_NO_FILESYSTEM; |
| 2147 | |
| 2148 | fasize = LD_WORD(fs->win+BPB_FATSz16); /* Number of sectors per FAT */ |
| 2149 | if (!fasize) fasize = LD_DWORD(fs->win+BPB_FATSz32); |
| 2150 | fs->fsize = fasize; |
| 2151 | |
| 2152 | fs->n_fats = b = fs->win[BPB_NumFATs]; /* Number of FAT copies */ |
| 2153 | if (b != 1 && b != 2) return FR_NO_FILESYSTEM; /* (Must be 1 or 2) */ |
| 2154 | fasize *= b; /* Number of sectors for FAT area */ |
| 2155 | |
| 2156 | fs->csize = b = fs->win[BPB_SecPerClus]; /* Number of sectors per cluster */ |
| 2157 | if (!b || (b & (b - 1))) return FR_NO_FILESYSTEM; /* (Must be power of 2) */ |
| 2158 | |
| 2159 | fs->n_rootdir = LD_WORD(fs->win+BPB_RootEntCnt); /* Number of root directory entries */ |
| 2160 | if (fs->n_rootdir % (SS(fs) / SZ_DIR)) return FR_NO_FILESYSTEM; /* (BPB_RootEntCnt must be sector aligned) */ |
| 2161 | |
| 2162 | tsect = LD_WORD(fs->win+BPB_TotSec16); /* Number of sectors on the volume */ |
| 2163 | if (!tsect) tsect = LD_DWORD(fs->win+BPB_TotSec32); |
| 2164 | |
| 2165 | nrsv = LD_WORD(fs->win+BPB_RsvdSecCnt); /* Number of reserved sectors */ |
| 2166 | if (!nrsv) return FR_NO_FILESYSTEM; /* (BPB_RsvdSecCnt must not be 0) */ |
| 2167 | |
| 2168 | /* Determine the FAT sub type */ |
| 2169 | sysect = nrsv + fasize + fs->n_rootdir / (SS(fs) / SZ_DIR); /* RSV+FAT+DIR */ |
| 2170 | if (tsect < sysect) return FR_NO_FILESYSTEM; /* (Invalid volume size) */ |
| 2171 | nclst = (tsect - sysect) / fs->csize; /* Number of clusters */ |
| 2172 | if (!nclst) return FR_NO_FILESYSTEM; /* (Invalid volume size) */ |
| 2173 | fmt = FS_FAT12; |
| 2174 | if (nclst >= MIN_FAT16) fmt = FS_FAT16; |
| 2175 | if (nclst >= MIN_FAT32) fmt = FS_FAT32; |
| 2176 | |
| 2177 | /* Boundaries and Limits */ |
| 2178 | fs->n_fatent = nclst + 2; /* Number of FAT entries */ |
| 2179 | fs->volbase = bsect; /* Volume start sector */ |
| 2180 | fs->fatbase = bsect + nrsv; /* FAT start sector */ |
| 2181 | fs->database = bsect + sysect; /* Data start sector */ |
| 2182 | if (fmt == FS_FAT32) { |
| 2183 | if (fs->n_rootdir) return FR_NO_FILESYSTEM; /* (BPB_RootEntCnt must be 0) */ |
| 2184 | fs->dirbase = LD_DWORD(fs->win+BPB_RootClus); /* Root directory start cluster */ |
| 2185 | szbfat = fs->n_fatent * 4; /* (Required FAT size) */ |
| 2186 | } else { |
| 2187 | if (!fs->n_rootdir) return FR_NO_FILESYSTEM; /* (BPB_RootEntCnt must not be 0) */ |
| 2188 | fs->dirbase = fs->fatbase + fasize; /* Root directory start sector */ |
| 2189 | szbfat = (fmt == FS_FAT16) ? /* (Required FAT size) */ |
| 2190 | fs->n_fatent * 2 : fs->n_fatent * 3 / 2 + (fs->n_fatent & 1); |
| 2191 | } |
| 2192 | if (fs->fsize < (szbfat + (SS(fs) - 1)) / SS(fs)) /* (BPB_FATSz must not be less than required) */ |
| 2193 | return FR_NO_FILESYSTEM; |
| 2194 | |
| 2195 | #if !_FS_READONLY |
| 2196 | /* Initialize cluster allocation information */ |
| 2197 | fs->free_clust = 0xFFFFFFFF; |
| 2198 | fs->last_clust = 0; |
| 2199 | |
| 2200 | /* Get fsinfo if available */ |
| 2201 | if (fmt == FS_FAT32) { |
| 2202 | fs->fsi_flag = 0; |
| 2203 | fs->fsi_sector = bsect + LD_WORD(fs->win+BPB_FSInfo); |
| 2204 | if (disk_read(fs->drv, fs->win, fs->fsi_sector, 1) == RES_OK && |
| 2205 | LD_WORD(fs->win+BS_55AA) == 0xAA55 && |
| 2206 | LD_DWORD(fs->win+FSI_LeadSig) == 0x41615252 && |
| 2207 | LD_DWORD(fs->win+FSI_StrucSig) == 0x61417272) { |
| 2208 | fs->last_clust = LD_DWORD(fs->win+FSI_Nxt_Free); |
| 2209 | fs->free_clust = LD_DWORD(fs->win+FSI_Free_Count); |
| 2210 | } |
| 2211 | } |
| 2212 | #endif |
| 2213 | fs->fs_type = fmt; /* FAT sub-type */ |
| 2214 | fs->id = ++Fsid; /* File system mount ID */ |
| 2215 | fs->winsect = 0; /* Invalidate sector cache */ |
| 2216 | fs->wflag = 0; |
| 2217 | #if _FS_RPATH |
| 2218 | fs->cdir = 0; /* Current directory (root dir) */ |
| 2219 | #endif |
| 2220 | #if _FS_LOCK /* Clear file lock semaphores */ |
| 2221 | clear_lock(fs); |
| 2222 | #endif |
| 2223 | |
| 2224 | return FR_OK; |
| 2225 | } |
| 2226 | |
| 2227 | |
| 2228 | |
| 2229 | |
| 2230 | /*-----------------------------------------------------------------------*/ |
| 2231 | /* Check if the file/dir object is valid or not */ |
| 2232 | /*-----------------------------------------------------------------------*/ |
| 2233 | |
| 2234 | static |
| 2235 | FRESULT validate ( /* FR_OK(0): The object is valid, !=0: Invalid */ |
| 2236 | void* obj /* Pointer to the object FIL/DIR to check validity */ |
| 2237 | ) |
| 2238 | { |
| 2239 | FIL *fil = (FIL*)obj; /* Assuming offset of fs and id in the FIL/DIR is identical */ |
| 2240 | |
| 2241 | |
| 2242 | if (!fil || !fil->fs || !fil->fs->fs_type || fil->fs->id != fil->id) |
| 2243 | return FR_INVALID_OBJECT; |
| 2244 | |
| 2245 | ENTER_FF(fil->fs); /* Lock file system */ |
| 2246 | |
| 2247 | if (disk_status(fil->fs->drv) & STA_NOINIT) |
| 2248 | return FR_NOT_READY; |
| 2249 | |
| 2250 | return FR_OK; |
| 2251 | } |
| 2252 | |
| 2253 | |
| 2254 | |
| 2255 | |
| 2256 | /*-------------------------------------------------------------------------- |
| 2257 | |
| 2258 | Public Functions |
| 2259 | |
| 2260 | --------------------------------------------------------------------------*/ |
| 2261 | |
| 2262 | |
| 2263 | |
| 2264 | /*-----------------------------------------------------------------------*/ |
| 2265 | /* Mount/Unmount a Logical Drive */ |
| 2266 | /*-----------------------------------------------------------------------*/ |
| 2267 | |
| 2268 | FRESULT f_mount ( |
| 2269 | BYTE vol, /* Logical drive number to be mounted/unmounted */ |
| 2270 | FATFS *fs /* Pointer to new file system object (NULL for unmount)*/ |
| 2271 | ) |
| 2272 | { |
| 2273 | FATFS *rfs; |
| 2274 | |
| 2275 | |
| 2276 | if (vol >= _VOLUMES) /* Check if the drive number is valid */ |
| 2277 | return FR_INVALID_DRIVE; |
| 2278 | rfs = FatFs[vol]; /* Get current fs object */ |
| 2279 | |
| 2280 | if (rfs) { |
| 2281 | #if _FS_LOCK |
| 2282 | clear_lock(rfs); |
| 2283 | #endif |
| 2284 | #if _FS_REENTRANT /* Discard sync object of the current volume */ |
| 2285 | if (!ff_del_syncobj(rfs->sobj)) return FR_INT_ERR; |
| 2286 | #endif |
| 2287 | rfs->fs_type = 0; /* Clear old fs object */ |
| 2288 | } |
| 2289 | |
| 2290 | if (fs) { |
| 2291 | fs->fs_type = 0; /* Clear new fs object */ |
| 2292 | #if _FS_REENTRANT /* Create sync object for the new volume */ |
| 2293 | if (!ff_cre_syncobj(vol, &fs->sobj)) return FR_INT_ERR; |
| 2294 | #endif |
| 2295 | } |
| 2296 | FatFs[vol] = fs; /* Register new fs object */ |
| 2297 | |
| 2298 | return FR_OK; |
| 2299 | } |
| 2300 | |
| 2301 | |
| 2302 | |
| 2303 | |
| 2304 | /*-----------------------------------------------------------------------*/ |
| 2305 | /* Open or Create a File */ |
| 2306 | /*-----------------------------------------------------------------------*/ |
| 2307 | |
| 2308 | FRESULT f_open ( |
| 2309 | FIL *fp, /* Pointer to the blank file object */ |
| 2310 | const TCHAR *path, /* Pointer to the file name */ |
| 2311 | BYTE mode /* Access mode and file open mode flags */ |
| 2312 | ) |
| 2313 | { |
| 2314 | FRESULT res; |
| 2315 | DIR dj; |
| 2316 | BYTE *dir; |
| 2317 | DEF_NAMEBUF; |
| 2318 | |
| 2319 | |
| 2320 | if (!fp) return FR_INVALID_OBJECT; |
| 2321 | fp->fs = 0; /* Clear file object */ |
| 2322 | |
| 2323 | #if !_FS_READONLY |
| 2324 | mode &= FA_READ | FA_WRITE | FA_CREATE_ALWAYS | FA_OPEN_ALWAYS | FA_CREATE_NEW; |
| 2325 | res = chk_mounted(&path, &dj.fs, (BYTE)(mode & ~FA_READ)); |
| 2326 | #else |
| 2327 | mode &= FA_READ; |
| 2328 | res = chk_mounted(&path, &dj.fs, 0); |
| 2329 | #endif |
| 2330 | if (res == FR_OK) { |
| 2331 | INIT_BUF(dj); |
| 2332 | res = follow_path(&dj, path); /* Follow the file path */ |
| 2333 | dir = dj.dir; |
| 2334 | #if !_FS_READONLY /* R/W configuration */ |
| 2335 | if (res == FR_OK) { |
| 2336 | if (!dir) /* Current dir itself */ |
| 2337 | res = FR_INVALID_NAME; |
| 2338 | #if _FS_LOCK |
| 2339 | else |
| 2340 | res = chk_lock(&dj, (mode & ~FA_READ) ? 1 : 0); |
| 2341 | #endif |
| 2342 | } |
| 2343 | /* Create or Open a file */ |
| 2344 | if (mode & (FA_CREATE_ALWAYS | FA_OPEN_ALWAYS | FA_CREATE_NEW)) { |
| 2345 | DWORD dw, cl; |
| 2346 | |
| 2347 | if (res != FR_OK) { /* No file, create new */ |
| 2348 | if (res == FR_NO_FILE) /* There is no file to open, create a new entry */ |
| 2349 | #if _FS_LOCK |
| 2350 | res = enq_lock() ? dir_register(&dj) : FR_TOO_MANY_OPEN_FILES; |
| 2351 | #else |
| 2352 | res = dir_register(&dj); |
| 2353 | #endif |
| 2354 | mode |= FA_CREATE_ALWAYS; /* File is created */ |
| 2355 | dir = dj.dir; /* New entry */ |
| 2356 | } |
| 2357 | else { /* Any object is already existing */ |
| 2358 | if (dir[DIR_Attr] & (AM_RDO | AM_DIR)) { /* Cannot overwrite it (R/O or DIR) */ |
| 2359 | res = FR_DENIED; |
| 2360 | } else { |
| 2361 | if (mode & FA_CREATE_NEW) /* Cannot create as new file */ |
| 2362 | res = FR_EXIST; |
| 2363 | } |
| 2364 | } |
| 2365 | if (res == FR_OK && (mode & FA_CREATE_ALWAYS)) { /* Truncate it if overwrite mode */ |
| 2366 | dw = get_fattime(); /* Created time */ |
| 2367 | ST_DWORD(dir+DIR_CrtTime, dw); |
| 2368 | dir[DIR_Attr] = 0; /* Reset attribute */ |
| 2369 | ST_DWORD(dir+DIR_FileSize, 0); /* size = 0 */ |
| 2370 | cl = ld_clust(dj.fs, dir); /* Get start cluster */ |
| 2371 | st_clust(dir, 0); /* cluster = 0 */ |
| 2372 | dj.fs->wflag = 1; |
| 2373 | if (cl) { /* Remove the cluster chain if exist */ |
| 2374 | dw = dj.fs->winsect; |
| 2375 | res = remove_chain(dj.fs, cl); |
| 2376 | if (res == FR_OK) { |
| 2377 | dj.fs->last_clust = cl - 1; /* Reuse the cluster hole */ |
| 2378 | res = move_window(dj.fs, dw); |
| 2379 | } |
| 2380 | } |
| 2381 | } |
| 2382 | } |
| 2383 | else { /* Open an existing file */ |
| 2384 | if (res == FR_OK) { /* Follow succeeded */ |
| 2385 | if (dir[DIR_Attr] & AM_DIR) { /* It is a directory */ |
| 2386 | res = FR_NO_FILE; |
| 2387 | } else { |
| 2388 | if ((mode & FA_WRITE) && (dir[DIR_Attr] & AM_RDO)) /* R/O violation */ |
| 2389 | res = FR_DENIED; |
| 2390 | } |
| 2391 | } |
| 2392 | } |
| 2393 | if (res == FR_OK) { |
| 2394 | if (mode & FA_CREATE_ALWAYS) /* Set file change flag if created or overwritten */ |
| 2395 | mode |= FA__WRITTEN; |
| 2396 | fp->dir_sect = dj.fs->winsect; /* Pointer to the directory entry */ |
| 2397 | fp->dir_ptr = dir; |
| 2398 | #if _FS_LOCK |
| 2399 | fp->lockid = inc_lock(&dj, (mode & ~FA_READ) ? 1 : 0); |
| 2400 | if (!fp->lockid) res = FR_INT_ERR; |
| 2401 | #endif |
| 2402 | } |
| 2403 | |
| 2404 | #else /* R/O configuration */ |
| 2405 | if (res == FR_OK) { /* Follow succeeded */ |
| 2406 | dir = dj.dir; |
| 2407 | if (!dir) { /* Current dir itself */ |
| 2408 | res = FR_INVALID_NAME; |
| 2409 | } else { |
| 2410 | if (dir[DIR_Attr] & AM_DIR) /* It is a directory */ |
| 2411 | res = FR_NO_FILE; |
| 2412 | } |
| 2413 | } |
| 2414 | #endif |
| 2415 | FREE_BUF(); |
| 2416 | |
| 2417 | if (res == FR_OK) { |
| 2418 | fp->flag = mode; /* File access mode */ |
| 2419 | fp->sclust = ld_clust(dj.fs, dir); /* File start cluster */ |
| 2420 | fp->fsize = LD_DWORD(dir+DIR_FileSize); /* File size */ |
| 2421 | fp->fptr = 0; /* File pointer */ |
| 2422 | fp->dsect = 0; |
| 2423 | #if _USE_FASTSEEK |
| 2424 | fp->cltbl = 0; /* Normal seek mode */ |
| 2425 | #endif |
| 2426 | fp->fs = dj.fs; fp->id = dj.fs->id; /* Validate file object */ |
| 2427 | } |
| 2428 | } |
| 2429 | |
| 2430 | LEAVE_FF(dj.fs, res); |
| 2431 | } |
| 2432 | |
| 2433 | |
| 2434 | |
| 2435 | |
| 2436 | /*-----------------------------------------------------------------------*/ |
| 2437 | /* Read File */ |
| 2438 | /*-----------------------------------------------------------------------*/ |
| 2439 | |
| 2440 | FRESULT f_read ( |
| 2441 | FIL *fp, /* Pointer to the file object */ |
| 2442 | void *buff, /* Pointer to data buffer */ |
| 2443 | UINT btr, /* Number of bytes to read */ |
| 2444 | UINT *br /* Pointer to number of bytes read */ |
| 2445 | ) |
| 2446 | { |
| 2447 | FRESULT res; |
| 2448 | DWORD clst, sect, remain; |
| 2449 | UINT rcnt, cc; |
| 2450 | BYTE csect, *rbuff = (BYTE*)buff; |
| 2451 | |
| 2452 | |
| 2453 | *br = 0; /* Clear read byte counter */ |
| 2454 | |
| 2455 | res = validate(fp); /* Check validity */ |
| 2456 | if (res != FR_OK) LEAVE_FF(fp->fs, res); |
| 2457 | if (fp->flag & FA__ERROR) /* Aborted file? */ |
| 2458 | LEAVE_FF(fp->fs, FR_INT_ERR); |
| 2459 | if (!(fp->flag & FA_READ)) /* Check access mode */ |
| 2460 | LEAVE_FF(fp->fs, FR_DENIED); |
| 2461 | remain = fp->fsize - fp->fptr; |
| 2462 | if (btr > remain) btr = (UINT)remain; /* Truncate btr by remaining bytes */ |
| 2463 | |
| 2464 | for ( ; btr; /* Repeat until all data read */ |
| 2465 | rbuff += rcnt, fp->fptr += rcnt, *br += rcnt, btr -= rcnt) { |
| 2466 | if ((fp->fptr % SS(fp->fs)) == 0) { /* On the sector boundary? */ |
| 2467 | csect = (BYTE)(fp->fptr / SS(fp->fs) & (fp->fs->csize - 1)); /* Sector offset in the cluster */ |
| 2468 | if (!csect) { /* On the cluster boundary? */ |
| 2469 | if (fp->fptr == 0) { /* On the top of the file? */ |
| 2470 | clst = fp->sclust; /* Follow from the origin */ |
| 2471 | } else { /* Middle or end of the file */ |
| 2472 | #if _USE_FASTSEEK |
| 2473 | if (fp->cltbl) |
| 2474 | clst = clmt_clust(fp, fp->fptr); /* Get cluster# from the CLMT */ |
| 2475 | else |
| 2476 | #endif |
| 2477 | clst = get_fat(fp->fs, fp->clust); /* Follow cluster chain on the FAT */ |
| 2478 | } |
| 2479 | if (clst < 2) ABORT(fp->fs, FR_INT_ERR); |
| 2480 | if (clst == 0xFFFFFFFF) ABORT(fp->fs, FR_DISK_ERR); |
| 2481 | fp->clust = clst; /* Update current cluster */ |
| 2482 | } |
| 2483 | sect = clust2sect(fp->fs, fp->clust); /* Get current sector */ |
| 2484 | if (!sect) ABORT(fp->fs, FR_INT_ERR); |
| 2485 | sect += csect; |
| 2486 | cc = btr / SS(fp->fs); /* When remaining bytes >= sector size, */ |
| 2487 | if (cc) { /* Read maximum contiguous sectors directly */ |
| 2488 | if (csect + cc > fp->fs->csize) /* Clip at cluster boundary */ |
| 2489 | cc = fp->fs->csize - csect; |
| 2490 | if (disk_read(fp->fs->drv, rbuff, sect, (BYTE)cc) != RES_OK) |
| 2491 | ABORT(fp->fs, FR_DISK_ERR); |
| 2492 | #if !_FS_READONLY && _FS_MINIMIZE <= 2 /* Replace one of the read sectors with cached data if it contains a dirty sector */ |
| 2493 | #if _FS_TINY |
| 2494 | if (fp->fs->wflag && fp->fs->winsect - sect < cc) |
| 2495 | mem_cpy(rbuff + ((fp->fs->winsect - sect) * SS(fp->fs)), fp->fs->win, SS(fp->fs)); |
| 2496 | #else |
| 2497 | if ((fp->flag & FA__DIRTY) && fp->dsect - sect < cc) |
| 2498 | mem_cpy(rbuff + ((fp->dsect - sect) * SS(fp->fs)), fp->buf, SS(fp->fs)); |
| 2499 | #endif |
| 2500 | #endif |
| 2501 | rcnt = SS(fp->fs) * cc; /* Number of bytes transferred */ |
| 2502 | continue; |
| 2503 | } |
| 2504 | #if !_FS_TINY |
| 2505 | if (fp->dsect != sect) { /* Load data sector if not in cache */ |
| 2506 | #if !_FS_READONLY |
| 2507 | if (fp->flag & FA__DIRTY) { /* Write-back dirty sector cache */ |
| 2508 | if (disk_write(fp->fs->drv, fp->buf, fp->dsect, 1) != RES_OK) |
| 2509 | ABORT(fp->fs, FR_DISK_ERR); |
| 2510 | fp->flag &= ~FA__DIRTY; |
| 2511 | } |
| 2512 | #endif |
| 2513 | if (disk_read(fp->fs->drv, fp->buf, sect, 1) != RES_OK) /* Fill sector cache */ |
| 2514 | ABORT(fp->fs, FR_DISK_ERR); |
| 2515 | } |
| 2516 | #endif |
| 2517 | fp->dsect = sect; |
| 2518 | } |
| 2519 | rcnt = SS(fp->fs) - ((UINT)fp->fptr % SS(fp->fs)); /* Get partial sector data from sector buffer */ |
| 2520 | if (rcnt > btr) rcnt = btr; |
| 2521 | #if _FS_TINY |
| 2522 | if (move_window(fp->fs, fp->dsect)) /* Move sector window */ |
| 2523 | ABORT(fp->fs, FR_DISK_ERR); |
| 2524 | mem_cpy(rbuff, &fp->fs->win[fp->fptr % SS(fp->fs)], rcnt); /* Pick partial sector */ |
| 2525 | #else |
| 2526 | mem_cpy(rbuff, &fp->buf[fp->fptr % SS(fp->fs)], rcnt); /* Pick partial sector */ |
| 2527 | #endif |
| 2528 | } |
| 2529 | |
| 2530 | LEAVE_FF(fp->fs, FR_OK); |
| 2531 | } |
| 2532 | |
| 2533 | |
| 2534 | |
| 2535 | |
| 2536 | #if !_FS_READONLY |
| 2537 | /*-----------------------------------------------------------------------*/ |
| 2538 | /* Write File */ |
| 2539 | /*-----------------------------------------------------------------------*/ |
| 2540 | |
| 2541 | FRESULT f_write ( |
| 2542 | FIL *fp, /* Pointer to the file object */ |
| 2543 | const void *buff, /* Pointer to the data to be written */ |
| 2544 | UINT btw, /* Number of bytes to write */ |
| 2545 | UINT *bw /* Pointer to number of bytes written */ |
| 2546 | ) |
| 2547 | { |
| 2548 | FRESULT res; |
| 2549 | DWORD clst, sect; |
| 2550 | UINT wcnt, cc; |
| 2551 | const BYTE *wbuff = (const BYTE*)buff; |
| 2552 | BYTE csect; |
| 2553 | |
| 2554 | |
| 2555 | *bw = 0; /* Clear write byte counter */ |
| 2556 | |
| 2557 | res = validate(fp); /* Check validity */ |
| 2558 | if (res != FR_OK) LEAVE_FF(fp->fs, res); |
| 2559 | if (fp->flag & FA__ERROR) /* Aborted file? */ |
| 2560 | LEAVE_FF(fp->fs, FR_INT_ERR); |
| 2561 | if (!(fp->flag & FA_WRITE)) /* Check access mode */ |
| 2562 | LEAVE_FF(fp->fs, FR_DENIED); |
| 2563 | if ((DWORD)(fp->fsize + btw) < fp->fsize) btw = 0; /* File size cannot reach 4GB */ |
| 2564 | |
| 2565 | for ( ; btw; /* Repeat until all data written */ |
| 2566 | wbuff += wcnt, fp->fptr += wcnt, *bw += wcnt, btw -= wcnt) { |
| 2567 | if ((fp->fptr % SS(fp->fs)) == 0) { /* On the sector boundary? */ |
| 2568 | csect = (BYTE)(fp->fptr / SS(fp->fs) & (fp->fs->csize - 1)); /* Sector offset in the cluster */ |
| 2569 | if (!csect) { /* On the cluster boundary? */ |
| 2570 | if (fp->fptr == 0) { /* On the top of the file? */ |
| 2571 | clst = fp->sclust; /* Follow from the origin */ |
| 2572 | if (clst == 0) /* When no cluster is allocated, */ |
| 2573 | fp->sclust = clst = create_chain(fp->fs, 0); /* Create a new cluster chain */ |
| 2574 | } else { /* Middle or end of the file */ |
| 2575 | #if _USE_FASTSEEK |
| 2576 | if (fp->cltbl) |
| 2577 | clst = clmt_clust(fp, fp->fptr); /* Get cluster# from the CLMT */ |
| 2578 | else |
| 2579 | #endif |
| 2580 | clst = create_chain(fp->fs, fp->clust); /* Follow or stretch cluster chain on the FAT */ |
| 2581 | } |
| 2582 | if (clst == 0) break; /* Could not allocate a new cluster (disk full) */ |
| 2583 | if (clst == 1) ABORT(fp->fs, FR_INT_ERR); |
| 2584 | if (clst == 0xFFFFFFFF) ABORT(fp->fs, FR_DISK_ERR); |
| 2585 | fp->clust = clst; /* Update current cluster */ |
| 2586 | } |
| 2587 | #if _FS_TINY |
| 2588 | if (fp->fs->winsect == fp->dsect && sync_window(fp->fs)) /* Write-back sector cache */ |
| 2589 | ABORT(fp->fs, FR_DISK_ERR); |
| 2590 | #else |
| 2591 | if (fp->flag & FA__DIRTY) { /* Write-back sector cache */ |
| 2592 | if (disk_write(fp->fs->drv, fp->buf, fp->dsect, 1) != RES_OK) |
| 2593 | ABORT(fp->fs, FR_DISK_ERR); |
| 2594 | fp->flag &= ~FA__DIRTY; |
| 2595 | } |
| 2596 | #endif |
| 2597 | sect = clust2sect(fp->fs, fp->clust); /* Get current sector */ |
| 2598 | if (!sect) ABORT(fp->fs, FR_INT_ERR); |
| 2599 | sect += csect; |
| 2600 | cc = btw / SS(fp->fs); /* When remaining bytes >= sector size, */ |
| 2601 | if (cc) { /* Write maximum contiguous sectors directly */ |
| 2602 | if (csect + cc > fp->fs->csize) /* Clip at cluster boundary */ |
| 2603 | cc = fp->fs->csize - csect; |
| 2604 | if (disk_write(fp->fs->drv, wbuff, sect, (BYTE)cc) != RES_OK) |
| 2605 | ABORT(fp->fs, FR_DISK_ERR); |
| 2606 | #if _FS_TINY |
| 2607 | if (fp->fs->winsect - sect < cc) { /* Refill sector cache if it gets invalidated by the direct write */ |
| 2608 | mem_cpy(fp->fs->win, wbuff + ((fp->fs->winsect - sect) * SS(fp->fs)), SS(fp->fs)); |
| 2609 | fp->fs->wflag = 0; |
| 2610 | } |
| 2611 | #else |
| 2612 | if (fp->dsect - sect < cc) { /* Refill sector cache if it gets invalidated by the direct write */ |
| 2613 | mem_cpy(fp->buf, wbuff + ((fp->dsect - sect) * SS(fp->fs)), SS(fp->fs)); |
| 2614 | fp->flag &= ~FA__DIRTY; |
| 2615 | } |
| 2616 | #endif |
| 2617 | wcnt = SS(fp->fs) * cc; /* Number of bytes transferred */ |
| 2618 | continue; |
| 2619 | } |
| 2620 | #if _FS_TINY |
| 2621 | if (fp->fptr >= fp->fsize) { /* Avoid silly cache filling at growing edge */ |
| 2622 | if (sync_window(fp->fs)) ABORT(fp->fs, FR_DISK_ERR); |
| 2623 | fp->fs->winsect = sect; |
| 2624 | } |
| 2625 | #else |
| 2626 | if (fp->dsect != sect) { /* Fill sector cache with file data */ |
| 2627 | if (fp->fptr < fp->fsize && |
| 2628 | disk_read(fp->fs->drv, fp->buf, sect, 1) != RES_OK) |
| 2629 | ABORT(fp->fs, FR_DISK_ERR); |
| 2630 | } |
| 2631 | #endif |
| 2632 | fp->dsect = sect; |
| 2633 | } |
| 2634 | wcnt = SS(fp->fs) - ((UINT)fp->fptr % SS(fp->fs));/* Put partial sector into file I/O buffer */ |
| 2635 | if (wcnt > btw) wcnt = btw; |
| 2636 | #if _FS_TINY |
| 2637 | if (move_window(fp->fs, fp->dsect)) /* Move sector window */ |
| 2638 | ABORT(fp->fs, FR_DISK_ERR); |
| 2639 | mem_cpy(&fp->fs->win[fp->fptr % SS(fp->fs)], wbuff, wcnt); /* Fit partial sector */ |
| 2640 | fp->fs->wflag = 1; |
| 2641 | #else |
| 2642 | mem_cpy(&fp->buf[fp->fptr % SS(fp->fs)], wbuff, wcnt); /* Fit partial sector */ |
| 2643 | fp->flag |= FA__DIRTY; |
| 2644 | #endif |
| 2645 | } |
| 2646 | |
| 2647 | if (fp->fptr > fp->fsize) fp->fsize = fp->fptr; /* Update file size if needed */ |
| 2648 | fp->flag |= FA__WRITTEN; /* Set file change flag */ |
| 2649 | |
| 2650 | LEAVE_FF(fp->fs, FR_OK); |
| 2651 | } |
| 2652 | |
| 2653 | |
| 2654 | |
| 2655 | |
| 2656 | /*-----------------------------------------------------------------------*/ |
| 2657 | /* Synchronize the File Object */ |
| 2658 | /*-----------------------------------------------------------------------*/ |
| 2659 | |
| 2660 | FRESULT f_sync ( |
| 2661 | FIL *fp /* Pointer to the file object */ |
| 2662 | ) |
| 2663 | { |
| 2664 | FRESULT res; |
| 2665 | DWORD tm; |
| 2666 | BYTE *dir; |
| 2667 | |
| 2668 | |
| 2669 | res = validate(fp); /* Check validity of the object */ |
| 2670 | if (res == FR_OK) { |
| 2671 | if (fp->flag & FA__WRITTEN) { /* Has the file been written? */ |
| 2672 | #if !_FS_TINY /* Write-back dirty buffer */ |
| 2673 | if (fp->flag & FA__DIRTY) { |
| 2674 | if (disk_write(fp->fs->drv, fp->buf, fp->dsect, 1) != RES_OK) |
| 2675 | LEAVE_FF(fp->fs, FR_DISK_ERR); |
| 2676 | fp->flag &= ~FA__DIRTY; |
| 2677 | } |
| 2678 | #endif |
| 2679 | /* Update the directory entry */ |
| 2680 | res = move_window(fp->fs, fp->dir_sect); |
| 2681 | if (res == FR_OK) { |
| 2682 | dir = fp->dir_ptr; |
| 2683 | dir[DIR_Attr] |= AM_ARC; /* Set archive bit */ |
| 2684 | ST_DWORD(dir+DIR_FileSize, fp->fsize); /* Update file size */ |
| 2685 | st_clust(dir, fp->sclust); /* Update start cluster */ |
| 2686 | tm = get_fattime(); /* Update updated time */ |
| 2687 | ST_DWORD(dir+DIR_WrtTime, tm); |
| 2688 | ST_WORD(dir+DIR_LstAccDate, 0); |
| 2689 | fp->flag &= ~FA__WRITTEN; |
| 2690 | fp->fs->wflag = 1; |
| 2691 | res = sync_fs(fp->fs); |
| 2692 | } |
| 2693 | } |
| 2694 | } |
| 2695 | |
| 2696 | LEAVE_FF(fp->fs, res); |
| 2697 | } |
| 2698 | |
| 2699 | #endif /* !_FS_READONLY */ |
| 2700 | |
| 2701 | |
| 2702 | |
| 2703 | |
| 2704 | /*-----------------------------------------------------------------------*/ |
| 2705 | /* Close File */ |
| 2706 | /*-----------------------------------------------------------------------*/ |
| 2707 | |
| 2708 | FRESULT f_close ( |
| 2709 | FIL *fp /* Pointer to the file object to be closed */ |
| 2710 | ) |
| 2711 | { |
| 2712 | FRESULT res; |
| 2713 | |
| 2714 | |
| 2715 | #if _FS_READONLY |
| 2716 | res = validate(fp); |
| 2717 | { |
| 2718 | #if _FS_REENTRANT |
| 2719 | FATFS *fs = fp->fs; |
| 2720 | #endif |
| 2721 | if (res == FR_OK) fp->fs = 0; /* Discard file object */ |
| 2722 | LEAVE_FF(fs, res); |
| 2723 | } |
| 2724 | #else |
| 2725 | res = f_sync(fp); /* Flush cached data */ |
| 2726 | #if _FS_LOCK |
| 2727 | if (res == FR_OK) { /* Decrement open counter */ |
| 2728 | #if _FS_REENTRANT |
| 2729 | FATFS *fs = fp->fs;; |
| 2730 | res = validate(fp); |
| 2731 | if (res == FR_OK) { |
| 2732 | res = dec_lock(fp->lockid); |
| 2733 | unlock_fs(fs, FR_OK); |
| 2734 | } |
| 2735 | #else |
| 2736 | res = dec_lock(fp->lockid); |
| 2737 | #endif |
| 2738 | } |
| 2739 | #endif |
| 2740 | if (res == FR_OK) fp->fs = 0; /* Discard file object */ |
| 2741 | return res; |
| 2742 | #endif |
| 2743 | } |
| 2744 | |
| 2745 | |
| 2746 | |
| 2747 | |
| 2748 | /*-----------------------------------------------------------------------*/ |
| 2749 | /* Current Drive/Directory Handlings */ |
| 2750 | /*-----------------------------------------------------------------------*/ |
| 2751 | |
| 2752 | #if _FS_RPATH >= 1 |
| 2753 | |
| 2754 | FRESULT f_chdrive ( |
| 2755 | BYTE drv /* Drive number */ |
| 2756 | ) |
| 2757 | { |
| 2758 | if (drv >= _VOLUMES) return FR_INVALID_DRIVE; |
| 2759 | |
| 2760 | CurrVol = drv; |
| 2761 | |
| 2762 | return FR_OK; |
| 2763 | } |
| 2764 | |
| 2765 | BYTE f_get_current_drive(void) |
| 2766 | { |
| 2767 | return CurrVol; |
| 2768 | } |
| 2769 | |
| 2770 | FRESULT f_chdir ( |
| 2771 | const TCHAR *path /* Pointer to the directory path */ |
| 2772 | ) |
| 2773 | { |
| 2774 | FRESULT res; |
| 2775 | DIR dj; |
| 2776 | DEF_NAMEBUF; |
| 2777 | |
| 2778 | |
| 2779 | res = chk_mounted(&path, &dj.fs, 0); |
| 2780 | if (res == FR_OK) { |
| 2781 | INIT_BUF(dj); |
| 2782 | res = follow_path(&dj, path); /* Follow the path */ |
| 2783 | FREE_BUF(); |
| 2784 | if (res == FR_OK) { /* Follow completed */ |
| 2785 | if (!dj.dir) { |
| 2786 | dj.fs->cdir = dj.sclust; /* Start directory itself */ |
| 2787 | } else { |
| 2788 | if (dj.dir[DIR_Attr] & AM_DIR) /* Reached to the directory */ |
| 2789 | dj.fs->cdir = ld_clust(dj.fs, dj.dir); |
| 2790 | else |
| 2791 | res = FR_NO_PATH; /* Reached but a file */ |
| 2792 | } |
| 2793 | } |
| 2794 | if (res == FR_NO_FILE) res = FR_NO_PATH; |
| 2795 | } |
| 2796 | |
| 2797 | LEAVE_FF(dj.fs, res); |
| 2798 | } |
| 2799 | |
| 2800 | |
| 2801 | #if _FS_RPATH >= 2 |
| 2802 | FRESULT f_getcwd ( |
| 2803 | TCHAR *buff, /* Pointer to the directory path */ |
| 2804 | UINT len /* Size of path */ |
| 2805 | ) |
| 2806 | { |
| 2807 | FRESULT res; |
| 2808 | DIR dj; |
| 2809 | UINT i, n; |
| 2810 | DWORD ccl; |
| 2811 | TCHAR *tp; |
| 2812 | FILINFO fno; |
| 2813 | DEF_NAMEBUF; |
| 2814 | |
| 2815 | |
| 2816 | *buff = 0; |
| 2817 | res = chk_mounted((const TCHAR**)&buff, &dj.fs, 0); /* Get current volume */ |
| 2818 | if (res == FR_OK) { |
| 2819 | INIT_BUF(dj); |
| 2820 | i = len; /* Bottom of buffer (dir stack base) */ |
| 2821 | dj.sclust = dj.fs->cdir; /* Start to follow upper dir from current dir */ |
| 2822 | while ((ccl = dj.sclust) != 0) { /* Repeat while current dir is a sub-dir */ |
| 2823 | res = dir_sdi(&dj, 1); /* Get parent dir */ |
| 2824 | if (res != FR_OK) break; |
| 2825 | res = dir_read(&dj, 0); |
| 2826 | if (res != FR_OK) break; |
| 2827 | dj.sclust = ld_clust(dj.fs, dj.dir); /* Goto parent dir */ |
| 2828 | res = dir_sdi(&dj, 0); |
| 2829 | if (res != FR_OK) break; |
| 2830 | do { /* Find the entry links to the child dir */ |
| 2831 | res = dir_read(&dj, 0); |
| 2832 | if (res != FR_OK) break; |
| 2833 | if (ccl == ld_clust(dj.fs, dj.dir)) break; /* Found the entry */ |
| 2834 | res = dir_next(&dj, 0); |
| 2835 | } while (res == FR_OK); |
| 2836 | if (res == FR_NO_FILE) res = FR_INT_ERR;/* It cannot be 'not found'. */ |
| 2837 | if (res != FR_OK) break; |
| 2838 | #if _USE_LFN |
| 2839 | fno.lfname = buff; |
| 2840 | fno.lfsize = i; |
| 2841 | #endif |
| 2842 | get_fileinfo(&dj, &fno); /* Get the dir name and push it to the buffer */ |
| 2843 | tp = fno.fname; |
| 2844 | if (_USE_LFN && *buff) tp = buff; |
| 2845 | for (n = 0; tp[n]; n++) ; |
| 2846 | if (i < n + 3) { |
| 2847 | res = FR_NOT_ENOUGH_CORE; break; |
| 2848 | } |
| 2849 | while (n) buff[--i] = tp[--n]; |
| 2850 | buff[--i] = '/'; |
| 2851 | } |
| 2852 | tp = buff; |
| 2853 | if (res == FR_OK) { |
| 2854 | *tp++ = '0' + CurrVol; /* Put drive number */ |
| 2855 | *tp++ = ':'; |
| 2856 | if (i == len) { /* Root-dir */ |
| 2857 | *tp++ = '/'; |
| 2858 | } else { /* Sub-dir */ |
| 2859 | do /* Add stacked path str */ |
| 2860 | *tp++ = buff[i++]; |
| 2861 | while (i < len); |
| 2862 | } |
| 2863 | } |
| 2864 | *tp = 0; |
| 2865 | FREE_BUF(); |
| 2866 | } |
| 2867 | |
| 2868 | LEAVE_FF(dj.fs, res); |
| 2869 | } |
| 2870 | #endif /* _FS_RPATH >= 2 */ |
| 2871 | #endif /* _FS_RPATH >= 1 */ |
| 2872 | |
| 2873 | |
| 2874 | |
| 2875 | #if _FS_MINIMIZE <= 2 |
| 2876 | /*-----------------------------------------------------------------------*/ |
| 2877 | /* Seek File R/W Pointer */ |
| 2878 | /*-----------------------------------------------------------------------*/ |
| 2879 | |
| 2880 | FRESULT f_lseek ( |
| 2881 | FIL *fp, /* Pointer to the file object */ |
| 2882 | DWORD ofs /* File pointer from top of file */ |
| 2883 | ) |
| 2884 | { |
| 2885 | FRESULT res; |
| 2886 | |
| 2887 | |
| 2888 | res = validate(fp); /* Check validity of the object */ |
| 2889 | if (res != FR_OK) LEAVE_FF(fp->fs, res); |
| 2890 | if (fp->flag & FA__ERROR) /* Check abort flag */ |
| 2891 | LEAVE_FF(fp->fs, FR_INT_ERR); |
| 2892 | |
| 2893 | #if _USE_FASTSEEK |
| 2894 | if (fp->cltbl) { /* Fast seek */ |
| 2895 | DWORD cl, pcl, ncl, tcl, dsc, tlen, ulen, *tbl; |
| 2896 | |
| 2897 | if (ofs == CREATE_LINKMAP) { /* Create CLMT */ |
| 2898 | tbl = fp->cltbl; |
| 2899 | tlen = *tbl++; ulen = 2; /* Given table size and required table size */ |
| 2900 | cl = fp->sclust; /* Top of the chain */ |
| 2901 | if (cl) { |
| 2902 | do { |
| 2903 | /* Get a fragment */ |
| 2904 | tcl = cl; ncl = 0; ulen += 2; /* Top, length and used items */ |
| 2905 | do { |
| 2906 | pcl = cl; ncl++; |
| 2907 | cl = get_fat(fp->fs, cl); |
| 2908 | if (cl <= 1) ABORT(fp->fs, FR_INT_ERR); |
| 2909 | if (cl == 0xFFFFFFFF) ABORT(fp->fs, FR_DISK_ERR); |
| 2910 | } while (cl == pcl + 1); |
| 2911 | if (ulen <= tlen) { /* Store the length and top of the fragment */ |
| 2912 | *tbl++ = ncl; *tbl++ = tcl; |
| 2913 | } |
| 2914 | } while (cl < fp->fs->n_fatent); /* Repeat until end of chain */ |
| 2915 | } |
| 2916 | *fp->cltbl = ulen; /* Number of items used */ |
| 2917 | if (ulen <= tlen) |
| 2918 | *tbl = 0; /* Terminate table */ |
| 2919 | else |
| 2920 | res = FR_NOT_ENOUGH_CORE; /* Given table size is smaller than required */ |
| 2921 | |
| 2922 | } else { /* Fast seek */ |
| 2923 | if (ofs > fp->fsize) /* Clip offset at the file size */ |
| 2924 | ofs = fp->fsize; |
| 2925 | fp->fptr = ofs; /* Set file pointer */ |
| 2926 | if (ofs) { |
| 2927 | fp->clust = clmt_clust(fp, ofs - 1); |
| 2928 | dsc = clust2sect(fp->fs, fp->clust); |
| 2929 | if (!dsc) ABORT(fp->fs, FR_INT_ERR); |
| 2930 | dsc += (ofs - 1) / SS(fp->fs) & (fp->fs->csize - 1); |
| 2931 | if (fp->fptr % SS(fp->fs) && dsc != fp->dsect) { /* Refill sector cache if needed */ |
| 2932 | #if !_FS_TINY |
| 2933 | #if !_FS_READONLY |
| 2934 | if (fp->flag & FA__DIRTY) { /* Write-back dirty sector cache */ |
| 2935 | if (disk_write(fp->fs->drv, fp->buf, fp->dsect, 1) != RES_OK) |
| 2936 | ABORT(fp->fs, FR_DISK_ERR); |
| 2937 | fp->flag &= ~FA__DIRTY; |
| 2938 | } |
| 2939 | #endif |
| 2940 | if (disk_read(fp->fs->drv, fp->buf, dsc, 1) != RES_OK) /* Load current sector */ |
| 2941 | ABORT(fp->fs, FR_DISK_ERR); |
| 2942 | #endif |
| 2943 | fp->dsect = dsc; |
| 2944 | } |
| 2945 | } |
| 2946 | } |
| 2947 | } else |
| 2948 | #endif |
| 2949 | |
| 2950 | /* Normal Seek */ |
| 2951 | { |
| 2952 | DWORD clst, bcs, nsect, ifptr; |
| 2953 | |
| 2954 | if (ofs > fp->fsize /* In read-only mode, clip offset with the file size */ |
| 2955 | #if !_FS_READONLY |
| 2956 | && !(fp->flag & FA_WRITE) |
| 2957 | #endif |
| 2958 | ) ofs = fp->fsize; |
| 2959 | |
| 2960 | ifptr = fp->fptr; |
| 2961 | fp->fptr = nsect = 0; |
| 2962 | if (ofs) { |
| 2963 | bcs = (DWORD)fp->fs->csize * SS(fp->fs); /* Cluster size (byte) */ |
| 2964 | if (ifptr > 0 && |
| 2965 | (ofs - 1) / bcs >= (ifptr - 1) / bcs) { /* When seek to same or following cluster, */ |
| 2966 | fp->fptr = (ifptr - 1) & ~(bcs - 1); /* start from the current cluster */ |
| 2967 | ofs -= fp->fptr; |
| 2968 | clst = fp->clust; |
| 2969 | } else { /* When seek to back cluster, */ |
| 2970 | clst = fp->sclust; /* start from the first cluster */ |
| 2971 | #if !_FS_READONLY |
| 2972 | if (clst == 0) { /* If no cluster chain, create a new chain */ |
| 2973 | clst = create_chain(fp->fs, 0); |
| 2974 | if (clst == 1) ABORT(fp->fs, FR_INT_ERR); |
| 2975 | if (clst == 0xFFFFFFFF) ABORT(fp->fs, FR_DISK_ERR); |
| 2976 | fp->sclust = clst; |
| 2977 | } |
| 2978 | #endif |
| 2979 | fp->clust = clst; |
| 2980 | } |
| 2981 | if (clst != 0) { |
| 2982 | while (ofs > bcs) { /* Cluster following loop */ |
| 2983 | #if !_FS_READONLY |
| 2984 | if (fp->flag & FA_WRITE) { /* Check if in write mode or not */ |
| 2985 | clst = create_chain(fp->fs, clst); /* Force stretch if in write mode */ |
| 2986 | if (clst == 0) { /* When disk gets full, clip file size */ |
| 2987 | ofs = bcs; break; |
| 2988 | } |
| 2989 | } else |
| 2990 | #endif |
| 2991 | clst = get_fat(fp->fs, clst); /* Follow cluster chain if not in write mode */ |
| 2992 | if (clst == 0xFFFFFFFF) ABORT(fp->fs, FR_DISK_ERR); |
| 2993 | if (clst <= 1 || clst >= fp->fs->n_fatent) ABORT(fp->fs, FR_INT_ERR); |
| 2994 | fp->clust = clst; |
| 2995 | fp->fptr += bcs; |
| 2996 | ofs -= bcs; |
| 2997 | } |
| 2998 | fp->fptr += ofs; |
| 2999 | if (ofs % SS(fp->fs)) { |
| 3000 | nsect = clust2sect(fp->fs, clst); /* Current sector */ |
| 3001 | if (!nsect) ABORT(fp->fs, FR_INT_ERR); |
| 3002 | nsect += ofs / SS(fp->fs); |
| 3003 | } |
| 3004 | } |
| 3005 | } |
| 3006 | if (fp->fptr % SS(fp->fs) && nsect != fp->dsect) { /* Fill sector cache if needed */ |
| 3007 | #if !_FS_TINY |
| 3008 | #if !_FS_READONLY |
| 3009 | if (fp->flag & FA__DIRTY) { /* Write-back dirty sector cache */ |
| 3010 | if (disk_write(fp->fs->drv, fp->buf, fp->dsect, 1) != RES_OK) |
| 3011 | ABORT(fp->fs, FR_DISK_ERR); |
| 3012 | fp->flag &= ~FA__DIRTY; |
| 3013 | } |
| 3014 | #endif |
| 3015 | if (disk_read(fp->fs->drv, fp->buf, nsect, 1) != RES_OK) /* Fill sector cache */ |
| 3016 | ABORT(fp->fs, FR_DISK_ERR); |
| 3017 | #endif |
| 3018 | fp->dsect = nsect; |
| 3019 | } |
| 3020 | #if !_FS_READONLY |
| 3021 | if (fp->fptr > fp->fsize) { /* Set file change flag if the file size is extended */ |
| 3022 | fp->fsize = fp->fptr; |
| 3023 | fp->flag |= FA__WRITTEN; |
| 3024 | } |
| 3025 | #endif |
| 3026 | } |
| 3027 | |
| 3028 | LEAVE_FF(fp->fs, res); |
| 3029 | } |
| 3030 | |
| 3031 | |
| 3032 | |
| 3033 | #if _FS_MINIMIZE <= 1 |
| 3034 | /*-----------------------------------------------------------------------*/ |
| 3035 | /* Create a Directory Object */ |
| 3036 | /*-----------------------------------------------------------------------*/ |
| 3037 | |
| 3038 | FRESULT f_opendir ( |
| 3039 | DIR *dj, /* Pointer to directory object to create */ |
| 3040 | const TCHAR *path /* Pointer to the directory path */ |
| 3041 | ) |
| 3042 | { |
| 3043 | FRESULT res; |
| 3044 | FATFS *fs; |
| 3045 | DEF_NAMEBUF; |
| 3046 | |
| 3047 | |
| 3048 | if (!dj) return FR_INVALID_OBJECT; |
| 3049 | |
| 3050 | res = chk_mounted(&path, &dj->fs, 0); |
| 3051 | fs = dj->fs; |
| 3052 | if (res == FR_OK) { |
| 3053 | INIT_BUF(*dj); |
| 3054 | res = follow_path(dj, path); /* Follow the path to the directory */ |
| 3055 | FREE_BUF(); |
| 3056 | if (res == FR_OK) { /* Follow completed */ |
| 3057 | if (dj->dir) { /* It is not the root dir */ |
| 3058 | if (dj->dir[DIR_Attr] & AM_DIR) { /* The object is a directory */ |
| 3059 | dj->sclust = ld_clust(fs, dj->dir); |
| 3060 | } else { /* The object is not a directory */ |
| 3061 | res = FR_NO_PATH; |
| 3062 | } |
| 3063 | } |
| 3064 | if (res == FR_OK) { |
| 3065 | dj->id = fs->id; |
| 3066 | res = dir_sdi(dj, 0); /* Rewind dir */ |
| 3067 | } |
| 3068 | } |
| 3069 | if (res == FR_NO_FILE) res = FR_NO_PATH; |
| 3070 | if (res != FR_OK) dj->fs = 0; /* Invalidate the dir object if function faild */ |
| 3071 | } else { |
| 3072 | dj->fs = 0; |
| 3073 | } |
| 3074 | |
| 3075 | LEAVE_FF(fs, res); |
| 3076 | } |
| 3077 | |
| 3078 | |
| 3079 | |
| 3080 | |
| 3081 | /*-----------------------------------------------------------------------*/ |
| 3082 | /* Read Directory Entry in Sequence */ |
| 3083 | /*-----------------------------------------------------------------------*/ |
| 3084 | |
| 3085 | FRESULT f_readdir ( |
| 3086 | DIR *dj, /* Pointer to the open directory object */ |
| 3087 | FILINFO *fno /* Pointer to file information to return */ |
| 3088 | ) |
| 3089 | { |
| 3090 | FRESULT res; |
| 3091 | DEF_NAMEBUF; |
| 3092 | |
| 3093 | |
| 3094 | res = validate(dj); /* Check validity of the object */ |
| 3095 | if (res == FR_OK) { |
| 3096 | if (!fno) { |
| 3097 | res = dir_sdi(dj, 0); /* Rewind the directory object */ |
| 3098 | } else { |
| 3099 | INIT_BUF(*dj); |
| 3100 | res = dir_read(dj, 0); /* Read an item */ |
| 3101 | if (res == FR_NO_FILE) { /* Reached end of dir */ |
| 3102 | dj->sect = 0; |
| 3103 | res = FR_OK; |
| 3104 | } |
| 3105 | if (res == FR_OK) { /* A valid entry is found */ |
| 3106 | get_fileinfo(dj, fno); /* Get the object information */ |
| 3107 | res = dir_next(dj, 0); /* Increment index for next */ |
| 3108 | if (res == FR_NO_FILE) { |
| 3109 | dj->sect = 0; |
| 3110 | res = FR_OK; |
| 3111 | } |
| 3112 | } |
| 3113 | FREE_BUF(); |
| 3114 | } |
| 3115 | } |
| 3116 | |
| 3117 | LEAVE_FF(dj->fs, res); |
| 3118 | } |
| 3119 | |
| 3120 | |
| 3121 | |
| 3122 | #if _FS_MINIMIZE == 0 |
| 3123 | /*-----------------------------------------------------------------------*/ |
| 3124 | /* Get File Status */ |
| 3125 | /*-----------------------------------------------------------------------*/ |
| 3126 | |
| 3127 | FRESULT f_stat ( |
| 3128 | const TCHAR *path, /* Pointer to the file path */ |
| 3129 | FILINFO *fno /* Pointer to file information to return */ |
| 3130 | ) |
| 3131 | { |
| 3132 | FRESULT res; |
| 3133 | DIR dj; |
| 3134 | DEF_NAMEBUF; |
| 3135 | |
| 3136 | |
| 3137 | res = chk_mounted(&path, &dj.fs, 0); |
| 3138 | if (res == FR_OK) { |
| 3139 | INIT_BUF(dj); |
| 3140 | res = follow_path(&dj, path); /* Follow the file path */ |
| 3141 | if (res == FR_OK) { /* Follow completed */ |
| 3142 | if (dj.dir) /* Found an object */ |
| 3143 | get_fileinfo(&dj, fno); |
| 3144 | else /* It is root dir */ |
| 3145 | res = FR_INVALID_NAME; |
| 3146 | } |
| 3147 | FREE_BUF(); |
| 3148 | } |
| 3149 | |
| 3150 | LEAVE_FF(dj.fs, res); |
| 3151 | } |
| 3152 | |
| 3153 | |
| 3154 | |
| 3155 | #if !_FS_READONLY |
| 3156 | /*-----------------------------------------------------------------------*/ |
| 3157 | /* Get Number of Free Clusters */ |
| 3158 | /*-----------------------------------------------------------------------*/ |
| 3159 | |
| 3160 | FRESULT f_getfree ( |
| 3161 | const TCHAR *path, /* Path name of the logical drive number */ |
| 3162 | DWORD *nclst, /* Pointer to a variable to return number of free clusters */ |
| 3163 | FATFS **fatfs /* Pointer to return pointer to corresponding file system object */ |
| 3164 | ) |
| 3165 | { |
| 3166 | FRESULT res; |
| 3167 | FATFS *fs; |
| 3168 | DWORD n, clst, sect, stat; |
| 3169 | UINT i; |
| 3170 | BYTE fat, *p; |
| 3171 | |
| 3172 | |
| 3173 | /* Get drive number */ |
| 3174 | res = chk_mounted(&path, fatfs, 0); |
| 3175 | fs = *fatfs; |
| 3176 | if (res == FR_OK) { |
| 3177 | /* If free_clust is valid, return it without full cluster scan */ |
| 3178 | if (fs->free_clust <= fs->n_fatent - 2) { |
| 3179 | *nclst = fs->free_clust; |
| 3180 | } else { |
| 3181 | /* Get number of free clusters */ |
| 3182 | fat = fs->fs_type; |
| 3183 | n = 0; |
| 3184 | if (fat == FS_FAT12) { |
| 3185 | clst = 2; |
| 3186 | do { |
| 3187 | stat = get_fat(fs, clst); |
| 3188 | if (stat == 0xFFFFFFFF) { res = FR_DISK_ERR; break; } |
| 3189 | if (stat == 1) { res = FR_INT_ERR; break; } |
| 3190 | if (stat == 0) n++; |
| 3191 | } while (++clst < fs->n_fatent); |
| 3192 | } else { |
| 3193 | clst = fs->n_fatent; |
| 3194 | sect = fs->fatbase; |
| 3195 | i = 0; p = 0; |
| 3196 | do { |
| 3197 | if (!i) { |
| 3198 | res = move_window(fs, sect++); |
| 3199 | if (res != FR_OK) break; |
| 3200 | p = fs->win; |
| 3201 | i = SS(fs); |
| 3202 | } |
| 3203 | if (fat == FS_FAT16) { |
| 3204 | if (LD_WORD(p) == 0) n++; |
| 3205 | p += 2; i -= 2; |
| 3206 | } else { |
| 3207 | if ((LD_DWORD(p) & 0x0FFFFFFF) == 0) n++; |
| 3208 | p += 4; i -= 4; |
| 3209 | } |
| 3210 | } while (--clst); |
| 3211 | } |
| 3212 | fs->free_clust = n; |
| 3213 | if (fat == FS_FAT32) fs->fsi_flag = 1; |
| 3214 | *nclst = n; |
| 3215 | } |
| 3216 | } |
| 3217 | LEAVE_FF(fs, res); |
| 3218 | } |
| 3219 | |
| 3220 | |
| 3221 | |
| 3222 | |
| 3223 | /*-----------------------------------------------------------------------*/ |
| 3224 | /* Truncate File */ |
| 3225 | /*-----------------------------------------------------------------------*/ |
| 3226 | |
| 3227 | FRESULT f_truncate ( |
| 3228 | FIL *fp /* Pointer to the file object */ |
| 3229 | ) |
| 3230 | { |
| 3231 | FRESULT res; |
| 3232 | DWORD ncl; |
| 3233 | |
| 3234 | |
| 3235 | res = validate(fp); /* Check validity of the object */ |
| 3236 | if (res == FR_OK) { |
| 3237 | if (fp->flag & FA__ERROR) { /* Check abort flag */ |
| 3238 | res = FR_INT_ERR; |
| 3239 | } else { |
| 3240 | if (!(fp->flag & FA_WRITE)) /* Check access mode */ |
| 3241 | res = FR_DENIED; |
| 3242 | } |
| 3243 | } |
| 3244 | if (res == FR_OK) { |
| 3245 | if (fp->fsize > fp->fptr) { |
| 3246 | fp->fsize = fp->fptr; /* Set file size to current R/W point */ |
| 3247 | fp->flag |= FA__WRITTEN; |
| 3248 | if (fp->fptr == 0) { /* When set file size to zero, remove entire cluster chain */ |
| 3249 | res = remove_chain(fp->fs, fp->sclust); |
| 3250 | fp->sclust = 0; |
| 3251 | } else { /* When truncate a part of the file, remove remaining clusters */ |
| 3252 | ncl = get_fat(fp->fs, fp->clust); |
| 3253 | res = FR_OK; |
| 3254 | if (ncl == 0xFFFFFFFF) res = FR_DISK_ERR; |
| 3255 | if (ncl == 1) res = FR_INT_ERR; |
| 3256 | if (res == FR_OK && ncl < fp->fs->n_fatent) { |
| 3257 | res = put_fat(fp->fs, fp->clust, 0x0FFFFFFF); |
| 3258 | if (res == FR_OK) res = remove_chain(fp->fs, ncl); |
| 3259 | } |
| 3260 | } |
| 3261 | } |
| 3262 | if (res != FR_OK) fp->flag |= FA__ERROR; |
| 3263 | } |
| 3264 | |
| 3265 | LEAVE_FF(fp->fs, res); |
| 3266 | } |
| 3267 | |
| 3268 | |
| 3269 | |
| 3270 | |
| 3271 | /*-----------------------------------------------------------------------*/ |
| 3272 | /* Delete a File or Directory */ |
| 3273 | /*-----------------------------------------------------------------------*/ |
| 3274 | |
| 3275 | FRESULT f_unlink ( |
| 3276 | const TCHAR *path /* Pointer to the file or directory path */ |
| 3277 | ) |
| 3278 | { |
| 3279 | FRESULT res; |
| 3280 | DIR dj, sdj; |
| 3281 | BYTE *dir; |
| 3282 | DWORD dclst; |
| 3283 | DEF_NAMEBUF; |
| 3284 | |
| 3285 | |
| 3286 | res = chk_mounted(&path, &dj.fs, 1); |
| 3287 | if (res == FR_OK) { |
| 3288 | INIT_BUF(dj); |
| 3289 | res = follow_path(&dj, path); /* Follow the file path */ |
| 3290 | if (_FS_RPATH && res == FR_OK && (dj.fn[NS] & NS_DOT)) |
| 3291 | res = FR_INVALID_NAME; /* Cannot remove dot entry */ |
| 3292 | #if _FS_LOCK |
| 3293 | if (res == FR_OK) res = chk_lock(&dj, 2); /* Cannot remove open file */ |
| 3294 | #endif |
| 3295 | if (res == FR_OK) { /* The object is accessible */ |
| 3296 | dir = dj.dir; |
| 3297 | if (!dir) { |
| 3298 | res = FR_INVALID_NAME; /* Cannot remove the start directory */ |
| 3299 | } else { |
| 3300 | if (dir[DIR_Attr] & AM_RDO) |
| 3301 | res = FR_DENIED; /* Cannot remove R/O object */ |
| 3302 | } |
| 3303 | dclst = ld_clust(dj.fs, dir); |
| 3304 | if (res == FR_OK && (dir[DIR_Attr] & AM_DIR)) { /* Is it a sub-dir? */ |
| 3305 | if (dclst < 2) { |
| 3306 | res = FR_INT_ERR; |
| 3307 | } else { |
| 3308 | mem_cpy(&sdj, &dj, sizeof (DIR)); /* Check if the sub-dir is empty or not */ |
| 3309 | sdj.sclust = dclst; |
| 3310 | res = dir_sdi(&sdj, 2); /* Exclude dot entries */ |
| 3311 | if (res == FR_OK) { |
| 3312 | res = dir_read(&sdj, 0); /* Read an item */ |
| 3313 | if (res == FR_OK /* Not empty dir */ |
| 3314 | #if _FS_RPATH |
| 3315 | || dclst == dj.fs->cdir /* Current dir */ |
| 3316 | #endif |
| 3317 | ) res = FR_DENIED; |
| 3318 | if (res == FR_NO_FILE) res = FR_OK; /* Empty */ |
| 3319 | } |
| 3320 | } |
| 3321 | } |
| 3322 | if (res == FR_OK) { |
| 3323 | res = dir_remove(&dj); /* Remove the directory entry */ |
| 3324 | if (res == FR_OK) { |
| 3325 | if (dclst) /* Remove the cluster chain if exist */ |
| 3326 | res = remove_chain(dj.fs, dclst); |
| 3327 | if (res == FR_OK) res = sync_fs(dj.fs); |
| 3328 | } |
| 3329 | } |
| 3330 | } |
| 3331 | FREE_BUF(); |
| 3332 | } |
| 3333 | |
| 3334 | LEAVE_FF(dj.fs, res); |
| 3335 | } |
| 3336 | |
| 3337 | |
| 3338 | |
| 3339 | |
| 3340 | /*-----------------------------------------------------------------------*/ |
| 3341 | /* Create a Directory */ |
| 3342 | /*-----------------------------------------------------------------------*/ |
| 3343 | |
| 3344 | FRESULT f_mkdir ( |
| 3345 | const TCHAR *path /* Pointer to the directory path */ |
| 3346 | ) |
| 3347 | { |
| 3348 | FRESULT res; |
| 3349 | DIR dj; |
| 3350 | BYTE *dir, n; |
| 3351 | DWORD dsc, dcl, pcl, tm = get_fattime(); |
| 3352 | DEF_NAMEBUF; |
| 3353 | |
| 3354 | |
| 3355 | res = chk_mounted(&path, &dj.fs, 1); |
| 3356 | if (res == FR_OK) { |
| 3357 | INIT_BUF(dj); |
| 3358 | res = follow_path(&dj, path); /* Follow the file path */ |
| 3359 | if (res == FR_OK) res = FR_EXIST; /* Any object with same name is already existing */ |
| 3360 | if (_FS_RPATH && res == FR_NO_FILE && (dj.fn[NS] & NS_DOT)) |
| 3361 | res = FR_INVALID_NAME; |
| 3362 | if (res == FR_NO_FILE) { /* Can create a new directory */ |
| 3363 | dcl = create_chain(dj.fs, 0); /* Allocate a cluster for the new directory table */ |
| 3364 | res = FR_OK; |
| 3365 | if (dcl == 0) res = FR_DENIED; /* No space to allocate a new cluster */ |
| 3366 | if (dcl == 1) res = FR_INT_ERR; |
| 3367 | if (dcl == 0xFFFFFFFF) res = FR_DISK_ERR; |
| 3368 | if (res == FR_OK) /* Flush FAT */ |
| 3369 | res = sync_window(dj.fs); |
| 3370 | if (res == FR_OK) { /* Initialize the new directory table */ |
| 3371 | dsc = clust2sect(dj.fs, dcl); |
| 3372 | dir = dj.fs->win; |
| 3373 | mem_set(dir, 0, SS(dj.fs)); |
| 3374 | mem_set(dir+DIR_Name, ' ', 11); /* Create "." entry */ |
| 3375 | dir[DIR_Name] = '.'; |
| 3376 | dir[DIR_Attr] = AM_DIR; |
| 3377 | ST_DWORD(dir+DIR_WrtTime, tm); |
| 3378 | st_clust(dir, dcl); |
| 3379 | mem_cpy(dir+SZ_DIR, dir, SZ_DIR); /* Create ".." entry */ |
| 3380 | dir[33] = '.'; pcl = dj.sclust; |
| 3381 | if (dj.fs->fs_type == FS_FAT32 && pcl == dj.fs->dirbase) |
| 3382 | pcl = 0; |
| 3383 | st_clust(dir+SZ_DIR, pcl); |
| 3384 | for (n = dj.fs->csize; n; n--) { /* Write dot entries and clear following sectors */ |
| 3385 | dj.fs->winsect = dsc++; |
| 3386 | dj.fs->wflag = 1; |
| 3387 | res = sync_window(dj.fs); |
| 3388 | if (res != FR_OK) break; |
| 3389 | mem_set(dir, 0, SS(dj.fs)); |
| 3390 | } |
| 3391 | } |
| 3392 | if (res == FR_OK) res = dir_register(&dj); /* Register the object to the directoy */ |
| 3393 | if (res != FR_OK) { |
| 3394 | remove_chain(dj.fs, dcl); /* Could not register, remove cluster chain */ |
| 3395 | } else { |
| 3396 | dir = dj.dir; |
| 3397 | dir[DIR_Attr] = AM_DIR; /* Attribute */ |
| 3398 | ST_DWORD(dir+DIR_WrtTime, tm); /* Created time */ |
| 3399 | st_clust(dir, dcl); /* Table start cluster */ |
| 3400 | dj.fs->wflag = 1; |
| 3401 | res = sync_fs(dj.fs); |
| 3402 | } |
| 3403 | } |
| 3404 | FREE_BUF(); |
| 3405 | } |
| 3406 | |
| 3407 | LEAVE_FF(dj.fs, res); |
| 3408 | } |
| 3409 | |
| 3410 | |
| 3411 | |
| 3412 | |
| 3413 | /*-----------------------------------------------------------------------*/ |
| 3414 | /* Change Attribute */ |
| 3415 | /*-----------------------------------------------------------------------*/ |
| 3416 | |
| 3417 | FRESULT f_chmod ( |
| 3418 | const TCHAR *path, /* Pointer to the file path */ |
| 3419 | BYTE value, /* Attribute bits */ |
| 3420 | BYTE mask /* Attribute mask to change */ |
| 3421 | ) |
| 3422 | { |
| 3423 | FRESULT res; |
| 3424 | DIR dj; |
| 3425 | BYTE *dir; |
| 3426 | DEF_NAMEBUF; |
| 3427 | |
| 3428 | |
| 3429 | res = chk_mounted(&path, &dj.fs, 1); |
| 3430 | if (res == FR_OK) { |
| 3431 | INIT_BUF(dj); |
| 3432 | res = follow_path(&dj, path); /* Follow the file path */ |
| 3433 | FREE_BUF(); |
| 3434 | if (_FS_RPATH && res == FR_OK && (dj.fn[NS] & NS_DOT)) |
| 3435 | res = FR_INVALID_NAME; |
| 3436 | if (res == FR_OK) { |
| 3437 | dir = dj.dir; |
| 3438 | if (!dir) { /* Is it a root directory? */ |
| 3439 | res = FR_INVALID_NAME; |
| 3440 | } else { /* File or sub directory */ |
| 3441 | mask &= AM_RDO|AM_HID|AM_SYS|AM_ARC; /* Valid attribute mask */ |
| 3442 | dir[DIR_Attr] = (value & mask) | (dir[DIR_Attr] & (BYTE)~mask); /* Apply attribute change */ |
| 3443 | dj.fs->wflag = 1; |
| 3444 | res = sync_fs(dj.fs); |
| 3445 | } |
| 3446 | } |
| 3447 | } |
| 3448 | |
| 3449 | LEAVE_FF(dj.fs, res); |
| 3450 | } |
| 3451 | |
| 3452 | |
| 3453 | |
| 3454 | |
| 3455 | /*-----------------------------------------------------------------------*/ |
| 3456 | /* Change Timestamp */ |
| 3457 | /*-----------------------------------------------------------------------*/ |
| 3458 | |
| 3459 | FRESULT f_utime ( |
| 3460 | const TCHAR *path, /* Pointer to the file/directory name */ |
| 3461 | const FILINFO *fno /* Pointer to the time stamp to be set */ |
| 3462 | ) |
| 3463 | { |
| 3464 | FRESULT res; |
| 3465 | DIR dj; |
| 3466 | BYTE *dir; |
| 3467 | DEF_NAMEBUF; |
| 3468 | |
| 3469 | |
| 3470 | res = chk_mounted(&path, &dj.fs, 1); |
| 3471 | if (res == FR_OK) { |
| 3472 | INIT_BUF(dj); |
| 3473 | res = follow_path(&dj, path); /* Follow the file path */ |
| 3474 | FREE_BUF(); |
| 3475 | if (_FS_RPATH && res == FR_OK && (dj.fn[NS] & NS_DOT)) |
| 3476 | res = FR_INVALID_NAME; |
| 3477 | if (res == FR_OK) { |
| 3478 | dir = dj.dir; |
| 3479 | if (!dir) { /* Root directory */ |
| 3480 | res = FR_INVALID_NAME; |
| 3481 | } else { /* File or sub-directory */ |
| 3482 | ST_WORD(dir+DIR_WrtTime, fno->ftime); |
| 3483 | ST_WORD(dir+DIR_WrtDate, fno->fdate); |
| 3484 | dj.fs->wflag = 1; |
| 3485 | res = sync_fs(dj.fs); |
| 3486 | } |
| 3487 | } |
| 3488 | } |
| 3489 | |
| 3490 | LEAVE_FF(dj.fs, res); |
| 3491 | } |
| 3492 | |
| 3493 | |
| 3494 | |
| 3495 | |
| 3496 | /*-----------------------------------------------------------------------*/ |
| 3497 | /* Rename File/Directory */ |
| 3498 | /*-----------------------------------------------------------------------*/ |
| 3499 | |
| 3500 | FRESULT f_rename ( |
| 3501 | const TCHAR *path_old, /* Pointer to the old name */ |
| 3502 | const TCHAR *path_new /* Pointer to the new name */ |
| 3503 | ) |
| 3504 | { |
| 3505 | FRESULT res; |
| 3506 | DIR djo, djn; |
| 3507 | BYTE buf[21], *dir; |
| 3508 | DWORD dw; |
| 3509 | DEF_NAMEBUF; |
| 3510 | |
| 3511 | |
| 3512 | res = chk_mounted(&path_old, &djo.fs, 1); |
| 3513 | if (res == FR_OK) { |
| 3514 | djn.fs = djo.fs; |
| 3515 | INIT_BUF(djo); |
| 3516 | res = follow_path(&djo, path_old); /* Check old object */ |
| 3517 | if (_FS_RPATH && res == FR_OK && (djo.fn[NS] & NS_DOT)) |
| 3518 | res = FR_INVALID_NAME; |
| 3519 | #if _FS_LOCK |
| 3520 | if (res == FR_OK) res = chk_lock(&djo, 2); |
| 3521 | #endif |
| 3522 | if (res == FR_OK) { /* Old object is found */ |
| 3523 | if (!djo.dir) { /* Is root dir? */ |
| 3524 | res = FR_NO_FILE; |
| 3525 | } else { |
| 3526 | mem_cpy(buf, djo.dir+DIR_Attr, 21); /* Save the object information except for name */ |
| 3527 | mem_cpy(&djn, &djo, sizeof (DIR)); /* Check new object */ |
| 3528 | res = follow_path(&djn, path_new); |
| 3529 | if (res == FR_OK) res = FR_EXIST; /* The new object name is already existing */ |
| 3530 | if (res == FR_NO_FILE) { /* Is it a valid path and no name collision? */ |
| 3531 | /* Start critical section that any interruption can cause a cross-link */ |
| 3532 | res = dir_register(&djn); /* Register the new entry */ |
| 3533 | if (res == FR_OK) { |
| 3534 | dir = djn.dir; /* Copy object information except for name */ |
| 3535 | mem_cpy(dir+13, buf+2, 19); |
| 3536 | dir[DIR_Attr] = buf[0] | AM_ARC; |
| 3537 | djo.fs->wflag = 1; |
| 3538 | if (djo.sclust != djn.sclust && (dir[DIR_Attr] & AM_DIR)) { /* Update .. entry in the directory if needed */ |
| 3539 | dw = clust2sect(djo.fs, ld_clust(djo.fs, dir)); |
| 3540 | if (!dw) { |
| 3541 | res = FR_INT_ERR; |
| 3542 | } else { |
| 3543 | res = move_window(djo.fs, dw); |
| 3544 | dir = djo.fs->win+SZ_DIR; /* .. entry */ |
| 3545 | if (res == FR_OK && dir[1] == '.') { |
| 3546 | dw = (djo.fs->fs_type == FS_FAT32 && djn.sclust == djo.fs->dirbase) ? 0 : djn.sclust; |
| 3547 | st_clust(dir, dw); |
| 3548 | djo.fs->wflag = 1; |
| 3549 | } |
| 3550 | } |
| 3551 | } |
| 3552 | if (res == FR_OK) { |
| 3553 | res = dir_remove(&djo); /* Remove old entry */ |
| 3554 | if (res == FR_OK) |
| 3555 | res = sync_fs(djo.fs); |
| 3556 | } |
| 3557 | } |
| 3558 | /* End critical section */ |
| 3559 | } |
| 3560 | } |
| 3561 | } |
| 3562 | FREE_BUF(); |
| 3563 | } |
| 3564 | |
| 3565 | LEAVE_FF(djo.fs, res); |
| 3566 | } |
| 3567 | |
| 3568 | #endif /* !_FS_READONLY */ |
| 3569 | #endif /* _FS_MINIMIZE == 0 */ |
| 3570 | #endif /* _FS_MINIMIZE <= 1 */ |
| 3571 | #endif /* _FS_MINIMIZE <= 2 */ |
| 3572 | |
| 3573 | |
| 3574 | |
| 3575 | #if _USE_LABEL |
| 3576 | /*-----------------------------------------------------------------------*/ |
| 3577 | /* Get volume label */ |
| 3578 | /*-----------------------------------------------------------------------*/ |
| 3579 | |
| 3580 | FRESULT f_getlabel ( |
| 3581 | const TCHAR* path, /* Path name of the logical drive number */ |
| 3582 | TCHAR* label, /* Pointer to a buffer to return the volume label */ |
| 3583 | DWORD* sn /* Pointer to a variable to return the volume serial number */ |
| 3584 | ) |
| 3585 | { |
| 3586 | FRESULT res; |
| 3587 | DIR dj; |
| 3588 | UINT i, j; |
| 3589 | |
| 3590 | |
| 3591 | /* Get logical drive */ |
| 3592 | res = chk_mounted(&path, &dj.fs, 0); |
| 3593 | |
| 3594 | /* Get volume label */ |
| 3595 | if (res == FR_OK && label) { |
| 3596 | dj.sclust = 0; /* Open root dir */ |
| 3597 | res = dir_sdi(&dj, 0); |
| 3598 | if (res == FR_OK) { |
| 3599 | res = dir_read(&dj, 1); /* Get an entry with AM_VOL */ |
| 3600 | if (res == FR_OK) { /* A volume label is exist */ |
| 3601 | #if _LFN_UNICODE |
| 3602 | WCHAR w; |
| 3603 | i = j = 0; |
| 3604 | do { |
| 3605 | w = (i < 11) ? dj.dir[i++] : ' '; |
| 3606 | if (IsDBCS1(w) && i < 11 && IsDBCS2(dj.dir[i])) |
| 3607 | w = (w << 8) | dj.dir[i++]; |
| 3608 | label[j++] = ff_convert(w, 1); |
| 3609 | } while (j < 11); |
| 3610 | #else |
| 3611 | mem_cpy(label, dj.dir, 11); |
| 3612 | #endif |
| 3613 | j = 11; |
| 3614 | do { |
| 3615 | label[j] = 0; |
| 3616 | if (!j) break; |
| 3617 | } while (label[--j] == ' '); |
| 3618 | } |
| 3619 | if (res == FR_NO_FILE) { /* No label, return nul string */ |
| 3620 | label[0] = 0; |
| 3621 | res = FR_OK; |
| 3622 | } |
| 3623 | } |
| 3624 | } |
| 3625 | |
| 3626 | /* Get volume serial number */ |
| 3627 | if (res == FR_OK && sn) { |
| 3628 | res = move_window(dj.fs, dj.fs->volbase); |
| 3629 | if (res == FR_OK) { |
| 3630 | i = dj.fs->fs_type == FS_FAT32 ? BS_VolID32 : BS_VolID; |
| 3631 | *sn = LD_DWORD(&dj.fs->win[i]); |
| 3632 | } |
| 3633 | } |
| 3634 | |
| 3635 | LEAVE_FF(dj.fs, res); |
| 3636 | } |
| 3637 | |
| 3638 | |
| 3639 | |
| 3640 | #if !_FS_READONLY |
| 3641 | /*-----------------------------------------------------------------------*/ |
| 3642 | /* Set volume label */ |
| 3643 | /*-----------------------------------------------------------------------*/ |
| 3644 | |
| 3645 | FRESULT f_setlabel ( |
| 3646 | const TCHAR* label /* Pointer to the volume label to set */ |
| 3647 | ) |
| 3648 | { |
| 3649 | FRESULT res; |
| 3650 | DIR dj; |
| 3651 | BYTE vn[11]; |
| 3652 | UINT i, j, sl; |
| 3653 | WCHAR w; |
| 3654 | DWORD tm; |
| 3655 | |
| 3656 | |
| 3657 | /* Get logical drive */ |
| 3658 | res = chk_mounted(&label, &dj.fs, 1); |
| 3659 | if (res) LEAVE_FF(dj.fs, res); |
| 3660 | |
| 3661 | /* Create a volume label in directory form */ |
| 3662 | vn[0] = 0; |
| 3663 | for (sl = 0; label[sl]; sl++) ; /* Get name length */ |
| 3664 | for ( ; sl && label[sl-1] == ' '; sl--) ; /* Remove trailing spaces */ |
| 3665 | if (sl) { /* Create volume label in directory form */ |
| 3666 | i = j = 0; |
| 3667 | do { |
| 3668 | #if _LFN_UNICODE |
| 3669 | w = ff_convert(ff_wtoupper(label[i++]), 0); |
| 3670 | #else |
| 3671 | w = (BYTE)label[i++]; |
| 3672 | if (IsDBCS1(w)) |
| 3673 | w = (j < 10 && i < sl && IsDBCS2(label[i])) ? (w << 8) | (BYTE)label[i++] : 0; |
| 3674 | #if _USE_LFN |
| 3675 | w = ff_convert(ff_wtoupper(ff_convert(w, 1)), 0); |
| 3676 | #else |
| 3677 | if (IsLower(w)) w -= 0x20; /* To upper ASCII chars */ |
| 3678 | #ifdef _EXCVT |
| 3679 | if (w >= 0x80) w = ExCvt[w - 0x80]; /* To upper extended chars (SBCS cfg) */ |
| 3680 | #else |
| 3681 | if (!_DF1S && w >= 0x80) w = 0; /* Reject extended chars (ASCII cfg) */ |
| 3682 | #endif |
| 3683 | #endif |
| 3684 | #endif |
| 3685 | if (!w || chk_chr("\"*+,.:;<=>\?[]|\x7F", w) || j >= (UINT)((w >= 0x100) ? 10 : 11)) /* Reject invalid chars for volume label */ |
| 3686 | LEAVE_FF(dj.fs, FR_INVALID_NAME); |
| 3687 | if (w >= 0x100) vn[j++] = (BYTE)(w >> 8); |
| 3688 | vn[j++] = (BYTE)w; |
| 3689 | } while (i < sl); |
| 3690 | while (j < 11) vn[j++] = ' '; |
| 3691 | } |
| 3692 | |
| 3693 | /* Set volume label */ |
| 3694 | dj.sclust = 0; /* Open root dir */ |
| 3695 | res = dir_sdi(&dj, 0); |
| 3696 | if (res == FR_OK) { |
| 3697 | res = dir_read(&dj, 1); /* Get an entry with AM_VOL */ |
| 3698 | if (res == FR_OK) { /* A volume label is found */ |
| 3699 | if (vn[0]) { |
| 3700 | mem_cpy(dj.dir, vn, 11); /* Change the volume label name */ |
| 3701 | tm = get_fattime(); |
| 3702 | ST_DWORD(dj.dir+DIR_WrtTime, tm); |
| 3703 | } else { |
| 3704 | dj.dir[0] = DDE; /* Remove the volume label */ |
| 3705 | } |
| 3706 | dj.fs->wflag = 1; |
| 3707 | res = sync_fs(dj.fs); |
| 3708 | } else { /* No volume label is found or error */ |
| 3709 | if (res == FR_NO_FILE) { |
| 3710 | res = FR_OK; |
| 3711 | if (vn[0]) { /* Create volume label as new */ |
| 3712 | res = dir_alloc(&dj, 1); /* Allocate an entry for volume label */ |
| 3713 | if (res == FR_OK) { |
| 3714 | mem_set(dj.dir, 0, SZ_DIR); /* Set volume label */ |
| 3715 | mem_cpy(dj.dir, vn, 11); |
| 3716 | dj.dir[DIR_Attr] = AM_VOL; |
| 3717 | tm = get_fattime(); |
| 3718 | ST_DWORD(dj.dir+DIR_WrtTime, tm); |
| 3719 | dj.fs->wflag = 1; |
| 3720 | res = sync_fs(dj.fs); |
| 3721 | } |
| 3722 | } |
| 3723 | } |
| 3724 | } |
| 3725 | } |
| 3726 | |
| 3727 | LEAVE_FF(dj.fs, res); |
| 3728 | } |
| 3729 | |
| 3730 | #endif /* !_FS_READONLY */ |
| 3731 | #endif /* _USE_LABEL */ |
| 3732 | |
| 3733 | |
| 3734 | |
| 3735 | /*-----------------------------------------------------------------------*/ |
| 3736 | /* Forward data to the stream directly (available on only tiny cfg) */ |
| 3737 | /*-----------------------------------------------------------------------*/ |
| 3738 | #if _USE_FORWARD && _FS_TINY |
| 3739 | |
| 3740 | FRESULT f_forward ( |
| 3741 | FIL *fp, /* Pointer to the file object */ |
| 3742 | UINT (*func)(const BYTE*,UINT), /* Pointer to the streaming function */ |
| 3743 | UINT btf, /* Number of bytes to forward */ |
| 3744 | UINT *bf /* Pointer to number of bytes forwarded */ |
| 3745 | ) |
| 3746 | { |
| 3747 | FRESULT res; |
| 3748 | DWORD remain, clst, sect; |
| 3749 | UINT rcnt; |
| 3750 | BYTE csect; |
| 3751 | |
| 3752 | |
| 3753 | *bf = 0; /* Clear transfer byte counter */ |
| 3754 | |
| 3755 | res = validate(fp); /* Check validity of the object */ |
| 3756 | if (res != FR_OK) LEAVE_FF(fp->fs, res); |
| 3757 | if (fp->flag & FA__ERROR) /* Check error flag */ |
| 3758 | LEAVE_FF(fp->fs, FR_INT_ERR); |
| 3759 | if (!(fp->flag & FA_READ)) /* Check access mode */ |
| 3760 | LEAVE_FF(fp->fs, FR_DENIED); |
| 3761 | |
| 3762 | remain = fp->fsize - fp->fptr; |
| 3763 | if (btf > remain) btf = (UINT)remain; /* Truncate btf by remaining bytes */ |
| 3764 | |
| 3765 | for ( ; btf && (*func)(0, 0); /* Repeat until all data transferred or stream becomes busy */ |
| 3766 | fp->fptr += rcnt, *bf += rcnt, btf -= rcnt) { |
| 3767 | csect = (BYTE)(fp->fptr / SS(fp->fs) & (fp->fs->csize - 1)); /* Sector offset in the cluster */ |
| 3768 | if ((fp->fptr % SS(fp->fs)) == 0) { /* On the sector boundary? */ |
| 3769 | if (!csect) { /* On the cluster boundary? */ |
| 3770 | clst = (fp->fptr == 0) ? /* On the top of the file? */ |
| 3771 | fp->sclust : get_fat(fp->fs, fp->clust); |
| 3772 | if (clst <= 1) ABORT(fp->fs, FR_INT_ERR); |
| 3773 | if (clst == 0xFFFFFFFF) ABORT(fp->fs, FR_DISK_ERR); |
| 3774 | fp->clust = clst; /* Update current cluster */ |
| 3775 | } |
| 3776 | } |
| 3777 | sect = clust2sect(fp->fs, fp->clust); /* Get current data sector */ |
| 3778 | if (!sect) ABORT(fp->fs, FR_INT_ERR); |
| 3779 | sect += csect; |
| 3780 | if (move_window(fp->fs, sect)) /* Move sector window */ |
| 3781 | ABORT(fp->fs, FR_DISK_ERR); |
| 3782 | fp->dsect = sect; |
| 3783 | rcnt = SS(fp->fs) - (WORD)(fp->fptr % SS(fp->fs)); /* Forward data from sector window */ |
| 3784 | if (rcnt > btf) rcnt = btf; |
| 3785 | rcnt = (*func)(&fp->fs->win[(WORD)fp->fptr % SS(fp->fs)], rcnt); |
| 3786 | if (!rcnt) ABORT(fp->fs, FR_INT_ERR); |
| 3787 | } |
| 3788 | |
| 3789 | LEAVE_FF(fp->fs, FR_OK); |
| 3790 | } |
| 3791 | #endif /* _USE_FORWARD */ |
| 3792 | |
| 3793 | |
| 3794 | |
| 3795 | #if _USE_MKFS && !_FS_READONLY |
| 3796 | /*-----------------------------------------------------------------------*/ |
| 3797 | /* Create File System on the Drive */ |
| 3798 | /*-----------------------------------------------------------------------*/ |
| 3799 | #define N_ROOTDIR 512 /* Number of root dir entries for FAT12/16 */ |
| 3800 | #define N_FATS 1 /* Number of FAT copies (1 or 2) */ |
| 3801 | |
| 3802 | |
| 3803 | FRESULT f_mkfs ( |
| 3804 | BYTE vol, /* Logical drive number */ |
| 3805 | BYTE sfd, /* Partitioning rule 0:FDISK, 1:SFD */ |
| 3806 | UINT au /* Allocation unit size [bytes] */ |
| 3807 | ) |
| 3808 | { |
| 3809 | static const WORD vst[] = { 1024, 512, 256, 128, 64, 32, 16, 8, 4, 2, 0}; |
| 3810 | static const WORD cst[] = {32768, 16384, 8192, 4096, 2048, 16384, 8192, 4096, 2048, 1024, 512}; |
| 3811 | BYTE fmt, md, sys, *tbl, pdrv, part; |
| 3812 | DWORD n_clst, vs, n, wsect; |
| 3813 | UINT i; |
| 3814 | DWORD b_vol, b_fat, b_dir, b_data; /* LBA */ |
| 3815 | DWORD n_vol, n_rsv, n_fat, n_dir; /* Size */ |
| 3816 | FATFS *fs; |
| 3817 | DSTATUS stat; |
| 3818 | |
| 3819 | |
| 3820 | /* Check mounted drive and clear work area */ |
| 3821 | if (vol >= _VOLUMES) return FR_INVALID_DRIVE; |
| 3822 | if (sfd > 1) return FR_INVALID_PARAMETER; |
| 3823 | if (au & (au - 1)) return FR_INVALID_PARAMETER; |
| 3824 | fs = FatFs[vol]; |
| 3825 | if (!fs) return FR_NOT_ENABLED; |
| 3826 | fs->fs_type = 0; |
| 3827 | pdrv = LD2PD(vol); /* Physical drive */ |
| 3828 | part = LD2PT(vol); /* Partition (0:auto detect, 1-4:get from partition table)*/ |
| 3829 | |
| 3830 | /* Get disk statics */ |
| 3831 | stat = disk_initialize(pdrv); |
| 3832 | if (stat & STA_NOINIT) return FR_NOT_READY; |
| 3833 | if (stat & STA_PROTECT) return FR_WRITE_PROTECTED; |
| 3834 | #if _MAX_SS != 512 /* Get disk sector size */ |
| 3835 | if (disk_ioctl(pdrv, GET_SECTOR_SIZE, &SS(fs)) != RES_OK || SS(fs) > _MAX_SS) |
| 3836 | return FR_DISK_ERR; |
| 3837 | #endif |
| 3838 | if (_MULTI_PARTITION && part) { |
| 3839 | /* Get partition information from partition table in the MBR */ |
| 3840 | if (disk_read(pdrv, fs->win, 0, 1) != RES_OK) return FR_DISK_ERR; |
| 3841 | if (LD_WORD(fs->win+BS_55AA) != 0xAA55) return FR_MKFS_ABORTED; |
| 3842 | tbl = &fs->win[MBR_Table + (part - 1) * SZ_PTE]; |
| 3843 | if (!tbl[4]) return FR_MKFS_ABORTED; /* No partition? */ |
| 3844 | b_vol = LD_DWORD(tbl+8); /* Volume start sector */ |
| 3845 | n_vol = LD_DWORD(tbl+12); /* Volume size */ |
| 3846 | } else { |
| 3847 | /* Create a partition in this function */ |
| 3848 | if (disk_ioctl(pdrv, GET_SECTOR_COUNT, &n_vol) != RES_OK || n_vol < 128) |
| 3849 | return FR_DISK_ERR; |
| 3850 | b_vol = (sfd) ? 0 : 63; /* Volume start sector */ |
| 3851 | n_vol -= b_vol; /* Volume size */ |
| 3852 | } |
| 3853 | |
| 3854 | if (!au) { /* AU auto selection */ |
| 3855 | vs = n_vol / (2000 / (SS(fs) / 512)); |
| 3856 | for (i = 0; vs < vst[i]; i++) ; |
| 3857 | au = cst[i]; |
| 3858 | } |
| 3859 | au /= SS(fs); /* Number of sectors per cluster */ |
| 3860 | if (au == 0) au = 1; |
| 3861 | if (au > 128) au = 128; |
| 3862 | |
| 3863 | /* Pre-compute number of clusters and FAT sub-type */ |
| 3864 | n_clst = n_vol / au; |
| 3865 | fmt = FS_FAT12; |
| 3866 | if (n_clst >= MIN_FAT16) fmt = FS_FAT16; |
| 3867 | if (n_clst >= MIN_FAT32) fmt = FS_FAT32; |
| 3868 | |
| 3869 | /* Determine offset and size of FAT structure */ |
| 3870 | if (fmt == FS_FAT32) { |
| 3871 | n_fat = ((n_clst * 4) + 8 + SS(fs) - 1) / SS(fs); |
| 3872 | n_rsv = 32; |
| 3873 | n_dir = 0; |
| 3874 | } else { |
| 3875 | n_fat = (fmt == FS_FAT12) ? (n_clst * 3 + 1) / 2 + 3 : (n_clst * 2) + 4; |
| 3876 | n_fat = (n_fat + SS(fs) - 1) / SS(fs); |
| 3877 | n_rsv = 1; |
| 3878 | n_dir = (DWORD)N_ROOTDIR * SZ_DIR / SS(fs); |
| 3879 | } |
| 3880 | b_fat = b_vol + n_rsv; /* FAT area start sector */ |
| 3881 | b_dir = b_fat + n_fat * N_FATS; /* Directory area start sector */ |
| 3882 | b_data = b_dir + n_dir; /* Data area start sector */ |
| 3883 | if (n_vol < b_data + au - b_vol) return FR_MKFS_ABORTED; /* Too small volume */ |
| 3884 | |
| 3885 | /* Align data start sector to erase block boundary (for flash memory media) */ |
| 3886 | if (disk_ioctl(pdrv, GET_BLOCK_SIZE, &n) != RES_OK || !n || n > 32768) n = 1; |
| 3887 | n = (b_data + n - 1) & ~(n - 1); /* Next nearest erase block from current data start */ |
| 3888 | n = (n - b_data) / N_FATS; |
| 3889 | if (fmt == FS_FAT32) { /* FAT32: Move FAT offset */ |
| 3890 | n_rsv += n; |
| 3891 | b_fat += n; |
| 3892 | } else { /* FAT12/16: Expand FAT size */ |
| 3893 | n_fat += n; |
| 3894 | } |
| 3895 | |
| 3896 | /* Determine number of clusters and final check of validity of the FAT sub-type */ |
| 3897 | n_clst = (n_vol - n_rsv - n_fat * N_FATS - n_dir) / au; |
| 3898 | if ( (fmt == FS_FAT16 && n_clst < MIN_FAT16) |
| 3899 | || (fmt == FS_FAT32 && n_clst < MIN_FAT32)) |
| 3900 | return FR_MKFS_ABORTED; |
| 3901 | |
| 3902 | switch (fmt) { /* Determine system ID for partition table */ |
| 3903 | case FS_FAT12: sys = 0x01; break; |
| 3904 | case FS_FAT16: sys = (n_vol < 0x10000) ? 0x04 : 0x06; break; |
| 3905 | default: sys = 0x0C; |
| 3906 | } |
| 3907 | |
| 3908 | if (_MULTI_PARTITION && part) { |
| 3909 | /* Update system ID in the partition table */ |
| 3910 | tbl = &fs->win[MBR_Table + (part - 1) * SZ_PTE]; |
| 3911 | tbl[4] = sys; |
| 3912 | if (disk_write(pdrv, fs->win, 0, 1) != RES_OK) return FR_DISK_ERR; |
| 3913 | md = 0xF8; |
| 3914 | } else { |
| 3915 | if (sfd) { /* No partition table (SFD) */ |
| 3916 | md = 0xF0; |
| 3917 | } else { /* Create partition table (FDISK) */ |
| 3918 | mem_set(fs->win, 0, SS(fs)); |
| 3919 | tbl = fs->win+MBR_Table; /* Create partition table for single partition in the drive */ |
| 3920 | tbl[1] = 1; /* Partition start head */ |
| 3921 | tbl[2] = 1; /* Partition start sector */ |
| 3922 | tbl[3] = 0; /* Partition start cylinder */ |
| 3923 | tbl[4] = sys; /* System type */ |
| 3924 | tbl[5] = 254; /* Partition end head */ |
| 3925 | n = (b_vol + n_vol) / 63 / 255; |
| 3926 | tbl[6] = (BYTE)((n >> 2) | 63); /* Partition end sector */ |
| 3927 | tbl[7] = (BYTE)n; /* End cylinder */ |
| 3928 | ST_DWORD(tbl+8, 63); /* Partition start in LBA */ |
| 3929 | ST_DWORD(tbl+12, n_vol); /* Partition size in LBA */ |
| 3930 | ST_WORD(fs->win+BS_55AA, 0xAA55); /* MBR signature */ |
| 3931 | if (disk_write(pdrv, fs->win, 0, 1) != RES_OK) /* Write it to the MBR sector */ |
| 3932 | return FR_DISK_ERR; |
| 3933 | md = 0xF8; |
| 3934 | } |
| 3935 | } |
| 3936 | |
| 3937 | /* Create BPB in the VBR */ |
| 3938 | tbl = fs->win; /* Clear sector */ |
| 3939 | mem_set(tbl, 0, SS(fs)); |
| 3940 | mem_cpy(tbl, "\xEB\xFE\x90" "MSDOS5.0", 11);/* Boot jump code, OEM name */ |
| 3941 | i = SS(fs); /* Sector size */ |
| 3942 | ST_WORD(tbl+BPB_BytsPerSec, i); |
| 3943 | tbl[BPB_SecPerClus] = (BYTE)au; /* Sectors per cluster */ |
| 3944 | ST_WORD(tbl+BPB_RsvdSecCnt, n_rsv); /* Reserved sectors */ |
| 3945 | tbl[BPB_NumFATs] = N_FATS; /* Number of FATs */ |
| 3946 | i = (fmt == FS_FAT32) ? 0 : N_ROOTDIR; /* Number of rootdir entries */ |
| 3947 | ST_WORD(tbl+BPB_RootEntCnt, i); |
| 3948 | if (n_vol < 0x10000) { /* Number of total sectors */ |
| 3949 | ST_WORD(tbl+BPB_TotSec16, n_vol); |
| 3950 | } else { |
| 3951 | ST_DWORD(tbl+BPB_TotSec32, n_vol); |
| 3952 | } |
| 3953 | tbl[BPB_Media] = md; /* Media descriptor */ |
| 3954 | ST_WORD(tbl+BPB_SecPerTrk, 63); /* Number of sectors per track */ |
| 3955 | ST_WORD(tbl+BPB_NumHeads, 255); /* Number of heads */ |
| 3956 | ST_DWORD(tbl+BPB_HiddSec, b_vol); /* Hidden sectors */ |
| 3957 | n = get_fattime(); /* Use current time as VSN */ |
| 3958 | if (fmt == FS_FAT32) { |
| 3959 | ST_DWORD(tbl+BS_VolID32, n); /* VSN */ |
| 3960 | ST_DWORD(tbl+BPB_FATSz32, n_fat); /* Number of sectors per FAT */ |
| 3961 | ST_DWORD(tbl+BPB_RootClus, 2); /* Root directory start cluster (2) */ |
| 3962 | ST_WORD(tbl+BPB_FSInfo, 1); /* FSInfo record offset (VBR+1) */ |
| 3963 | ST_WORD(tbl+BPB_BkBootSec, 6); /* Backup boot record offset (VBR+6) */ |
| 3964 | tbl[BS_DrvNum32] = 0x80; /* Drive number */ |
| 3965 | tbl[BS_BootSig32] = 0x29; /* Extended boot signature */ |
| 3966 | mem_cpy(tbl+BS_VolLab32, "NO NAME " "FAT32 ", 19); /* Volume label, FAT signature */ |
| 3967 | } else { |
| 3968 | ST_DWORD(tbl+BS_VolID, n); /* VSN */ |
| 3969 | ST_WORD(tbl+BPB_FATSz16, n_fat); /* Number of sectors per FAT */ |
| 3970 | tbl[BS_DrvNum] = 0x80; /* Drive number */ |
| 3971 | tbl[BS_BootSig] = 0x29; /* Extended boot signature */ |
| 3972 | mem_cpy(tbl+BS_VolLab, "NO NAME " "FAT ", 19); /* Volume label, FAT signature */ |
| 3973 | } |
| 3974 | ST_WORD(tbl+BS_55AA, 0xAA55); /* Signature (Offset is fixed here regardless of sector size) */ |
| 3975 | if (disk_write(pdrv, tbl, b_vol, 1) != RES_OK) /* Write it to the VBR sector */ |
| 3976 | return FR_DISK_ERR; |
| 3977 | if (fmt == FS_FAT32) /* Write backup VBR if needed (VBR+6) */ |
| 3978 | disk_write(pdrv, tbl, b_vol + 6, 1); |
| 3979 | |
| 3980 | /* Initialize FAT area */ |
| 3981 | wsect = b_fat; |
| 3982 | for (i = 0; i < N_FATS; i++) { /* Initialize each FAT copy */ |
| 3983 | mem_set(tbl, 0, SS(fs)); /* 1st sector of the FAT */ |
| 3984 | n = md; /* Media descriptor byte */ |
| 3985 | if (fmt != FS_FAT32) { |
| 3986 | n |= (fmt == FS_FAT12) ? 0x00FFFF00 : 0xFFFFFF00; |
| 3987 | ST_DWORD(tbl+0, n); /* Reserve cluster #0-1 (FAT12/16) */ |
| 3988 | } else { |
| 3989 | n |= 0xFFFFFF00; |
| 3990 | ST_DWORD(tbl+0, n); /* Reserve cluster #0-1 (FAT32) */ |
| 3991 | ST_DWORD(tbl+4, 0xFFFFFFFF); |
| 3992 | ST_DWORD(tbl+8, 0x0FFFFFFF); /* Reserve cluster #2 for root dir */ |
| 3993 | } |
| 3994 | if (disk_write(pdrv, tbl, wsect++, 1) != RES_OK) |
| 3995 | return FR_DISK_ERR; |
| 3996 | mem_set(tbl, 0, SS(fs)); /* Fill following FAT entries with zero */ |
| 3997 | for (n = 1; n < n_fat; n++) { /* This loop may take a time on FAT32 volume due to many single sector writes */ |
| 3998 | if (disk_write(pdrv, tbl, wsect++, 1) != RES_OK) |
| 3999 | return FR_DISK_ERR; |
| 4000 | } |
| 4001 | } |
| 4002 | |
| 4003 | /* Initialize root directory */ |
| 4004 | i = (fmt == FS_FAT32) ? au : n_dir; |
| 4005 | do { |
| 4006 | if (disk_write(pdrv, tbl, wsect++, 1) != RES_OK) |
| 4007 | return FR_DISK_ERR; |
| 4008 | } while (--i); |
| 4009 | |
| 4010 | #if _USE_ERASE /* Erase data area if needed */ |
| 4011 | { |
| 4012 | DWORD eb[2]; |
| 4013 | |
| 4014 | eb[0] = wsect; eb[1] = wsect + (n_clst - ((fmt == FS_FAT32) ? 1 : 0)) * au - 1; |
| 4015 | disk_ioctl(pdrv, CTRL_ERASE_SECTOR, eb); |
| 4016 | } |
| 4017 | #endif |
| 4018 | |
| 4019 | /* Create FSInfo if needed */ |
| 4020 | if (fmt == FS_FAT32) { |
| 4021 | ST_DWORD(tbl+FSI_LeadSig, 0x41615252); |
| 4022 | ST_DWORD(tbl+FSI_StrucSig, 0x61417272); |
| 4023 | ST_DWORD(tbl+FSI_Free_Count, n_clst - 1); /* Number of free clusters */ |
| 4024 | ST_DWORD(tbl+FSI_Nxt_Free, 2); /* Last allocated cluster# */ |
| 4025 | ST_WORD(tbl+BS_55AA, 0xAA55); |
| 4026 | disk_write(pdrv, tbl, b_vol + 1, 1); /* Write original (VBR+1) */ |
| 4027 | disk_write(pdrv, tbl, b_vol + 7, 1); /* Write backup (VBR+7) */ |
| 4028 | } |
| 4029 | |
| 4030 | return (disk_ioctl(pdrv, CTRL_SYNC, 0) == RES_OK) ? FR_OK : FR_DISK_ERR; |
| 4031 | } |
| 4032 | |
| 4033 | |
| 4034 | #if _MULTI_PARTITION |
| 4035 | /*-----------------------------------------------------------------------*/ |
| 4036 | /* Divide Physical Drive */ |
| 4037 | /*-----------------------------------------------------------------------*/ |
| 4038 | |
| 4039 | FRESULT f_fdisk ( |
| 4040 | BYTE pdrv, /* Physical drive number */ |
| 4041 | const DWORD szt[], /* Pointer to the size table for each partitions */ |
| 4042 | void* work /* Pointer to the working buffer */ |
| 4043 | ) |
| 4044 | { |
| 4045 | UINT i, n, sz_cyl, tot_cyl, b_cyl, e_cyl, p_cyl; |
| 4046 | BYTE s_hd, e_hd, *p, *buf = (BYTE*)work; |
| 4047 | DSTATUS stat; |
| 4048 | DWORD sz_disk, sz_part, s_part; |
| 4049 | |
| 4050 | |
| 4051 | stat = disk_initialize(pdrv); |
| 4052 | if (stat & STA_NOINIT) return FR_NOT_READY; |
| 4053 | if (stat & STA_PROTECT) return FR_WRITE_PROTECTED; |
| 4054 | if (disk_ioctl(pdrv, GET_SECTOR_COUNT, &sz_disk)) return FR_DISK_ERR; |
| 4055 | |
| 4056 | /* Determine CHS in the table regardless of the drive geometry */ |
| 4057 | for (n = 16; n < 256 && sz_disk / n / 63 > 1024; n *= 2) ; |
| 4058 | if (n == 256) n--; |
| 4059 | e_hd = n - 1; |
| 4060 | sz_cyl = 63 * n; |
| 4061 | tot_cyl = sz_disk / sz_cyl; |
| 4062 | |
| 4063 | /* Create partition table */ |
| 4064 | mem_set(buf, 0, _MAX_SS); |
| 4065 | p = buf + MBR_Table; b_cyl = 0; |
| 4066 | for (i = 0; i < 4; i++, p += SZ_PTE) { |
| 4067 | p_cyl = (szt[i] <= 100) ? (DWORD)tot_cyl * szt[i] / 100 : szt[i] / sz_cyl; |
| 4068 | if (!p_cyl) continue; |
| 4069 | s_part = (DWORD)sz_cyl * b_cyl; |
| 4070 | sz_part = (DWORD)sz_cyl * p_cyl; |
| 4071 | if (i == 0) { /* Exclude first track of cylinder 0 */ |
| 4072 | s_hd = 1; |
| 4073 | s_part += 63; sz_part -= 63; |
| 4074 | } else { |
| 4075 | s_hd = 0; |
| 4076 | } |
| 4077 | e_cyl = b_cyl + p_cyl - 1; |
| 4078 | if (e_cyl >= tot_cyl) return FR_INVALID_PARAMETER; |
| 4079 | |
| 4080 | /* Set partition table */ |
| 4081 | p[1] = s_hd; /* Start head */ |
| 4082 | p[2] = (BYTE)((b_cyl >> 2) + 1); /* Start sector */ |
| 4083 | p[3] = (BYTE)b_cyl; /* Start cylinder */ |
| 4084 | p[4] = 0x06; /* System type (temporary setting) */ |
| 4085 | p[5] = e_hd; /* End head */ |
| 4086 | p[6] = (BYTE)((e_cyl >> 2) + 63); /* End sector */ |
| 4087 | p[7] = (BYTE)e_cyl; /* End cylinder */ |
| 4088 | ST_DWORD(p + 8, s_part); /* Start sector in LBA */ |
| 4089 | ST_DWORD(p + 12, sz_part); /* Partition size */ |
| 4090 | |
| 4091 | /* Next partition */ |
| 4092 | b_cyl += p_cyl; |
| 4093 | } |
| 4094 | ST_WORD(p, 0xAA55); |
| 4095 | |
| 4096 | /* Write it to the MBR */ |
| 4097 | return (disk_write(pdrv, buf, 0, 1) || disk_ioctl(pdrv, CTRL_SYNC, 0)) ? FR_DISK_ERR : FR_OK; |
| 4098 | } |
| 4099 | |
| 4100 | |
| 4101 | #endif /* _MULTI_PARTITION */ |
| 4102 | #endif /* _USE_MKFS && !_FS_READONLY */ |
| 4103 | |
| 4104 | |
| 4105 | |
| 4106 | |
| 4107 | #if _USE_STRFUNC |
| 4108 | /*-----------------------------------------------------------------------*/ |
| 4109 | /* Get a string from the file */ |
| 4110 | /*-----------------------------------------------------------------------*/ |
| 4111 | |
| 4112 | TCHAR* f_gets ( |
| 4113 | TCHAR* buff, /* Pointer to the string buffer to read */ |
| 4114 | int len, /* Size of string buffer (characters) */ |
| 4115 | FIL* fp /* Pointer to the file object */ |
| 4116 | ) |
| 4117 | { |
| 4118 | int n = 0; |
| 4119 | TCHAR c, *p = buff; |
| 4120 | BYTE s[2]; |
| 4121 | UINT rc; |
| 4122 | |
| 4123 | |
| 4124 | while (n < len - 1) { /* Read bytes until buffer gets filled */ |
| 4125 | f_read(fp, s, 1, &rc); |
| 4126 | if (rc != 1) break; /* Break on EOF or error */ |
| 4127 | c = s[0]; |
| 4128 | #if _LFN_UNICODE /* Read a character in UTF-8 encoding */ |
| 4129 | if (c >= 0x80) { |
| 4130 | if (c < 0xC0) continue; /* Skip stray trailer */ |
| 4131 | if (c < 0xE0) { /* Two-byte sequence */ |
| 4132 | f_read(fp, s, 1, &rc); |
| 4133 | if (rc != 1) break; |
| 4134 | c = ((c & 0x1F) << 6) | (s[0] & 0x3F); |
| 4135 | if (c < 0x80) c = '?'; |
| 4136 | } else { |
| 4137 | if (c < 0xF0) { /* Three-byte sequence */ |
| 4138 | f_read(fp, s, 2, &rc); |
| 4139 | if (rc != 2) break; |
| 4140 | c = (c << 12) | ((s[0] & 0x3F) << 6) | (s[1] & 0x3F); |
| 4141 | if (c < 0x800) c = '?'; |
| 4142 | } else { /* Reject four-byte sequence */ |
| 4143 | c = '?'; |
| 4144 | } |
| 4145 | } |
| 4146 | } |
| 4147 | #endif |
| 4148 | #if _USE_STRFUNC >= 2 |
| 4149 | if (c == '\r') continue; /* Strip '\r' */ |
| 4150 | #endif |
| 4151 | *p++ = c; |
| 4152 | n++; |
| 4153 | if (c == '\n') break; /* Break on EOL */ |
| 4154 | } |
| 4155 | *p = 0; |
| 4156 | return n ? buff : 0; /* When no data read (eof or error), return with error. */ |
| 4157 | } |
| 4158 | |
| 4159 | |
| 4160 | |
| 4161 | #if !_FS_READONLY |
| 4162 | #include <stdarg.h> |
| 4163 | /*-----------------------------------------------------------------------*/ |
| 4164 | /* Put a character to the file */ |
| 4165 | /*-----------------------------------------------------------------------*/ |
| 4166 | |
| 4167 | int f_putc ( |
| 4168 | TCHAR c, /* A character to be output */ |
| 4169 | FIL* fp /* Pointer to the file object */ |
| 4170 | ) |
| 4171 | { |
| 4172 | UINT bw, btw; |
| 4173 | BYTE s[3]; |
| 4174 | |
| 4175 | |
| 4176 | #if _USE_STRFUNC >= 2 |
| 4177 | if (c == '\n') f_putc ('\r', fp); /* LF -> CRLF conversion */ |
| 4178 | #endif |
| 4179 | |
| 4180 | #if _LFN_UNICODE /* Write the character in UTF-8 encoding */ |
| 4181 | if (c < 0x80) { /* 7-bit */ |
| 4182 | s[0] = (BYTE)c; |
| 4183 | btw = 1; |
| 4184 | } else { |
| 4185 | if (c < 0x800) { /* 11-bit */ |
| 4186 | s[0] = (BYTE)(0xC0 | (c >> 6)); |
| 4187 | s[1] = (BYTE)(0x80 | (c & 0x3F)); |
| 4188 | btw = 2; |
| 4189 | } else { /* 16-bit */ |
| 4190 | s[0] = (BYTE)(0xE0 | (c >> 12)); |
| 4191 | s[1] = (BYTE)(0x80 | ((c >> 6) & 0x3F)); |
| 4192 | s[2] = (BYTE)(0x80 | (c & 0x3F)); |
| 4193 | btw = 3; |
| 4194 | } |
| 4195 | } |
| 4196 | #else /* Write the character without conversion */ |
| 4197 | s[0] = (BYTE)c; |
| 4198 | btw = 1; |
| 4199 | #endif |
| 4200 | f_write(fp, s, btw, &bw); /* Write the char to the file */ |
| 4201 | return (bw == btw) ? 1 : EOF; /* Return the result */ |
| 4202 | } |
| 4203 | |
| 4204 | |
| 4205 | |
| 4206 | |
| 4207 | /*-----------------------------------------------------------------------*/ |
| 4208 | /* Put a string to the file */ |
| 4209 | /*-----------------------------------------------------------------------*/ |
| 4210 | |
| 4211 | int f_puts ( |
| 4212 | const TCHAR* str, /* Pointer to the string to be output */ |
| 4213 | FIL* fp /* Pointer to the file object */ |
| 4214 | ) |
| 4215 | { |
| 4216 | int n; |
| 4217 | |
| 4218 | |
| 4219 | for (n = 0; *str; str++, n++) { |
| 4220 | if (f_putc(*str, fp) == EOF) return EOF; |
| 4221 | } |
| 4222 | return n; |
| 4223 | } |
| 4224 | |
| 4225 | |
| 4226 | |
| 4227 | |
| 4228 | /*-----------------------------------------------------------------------*/ |
| 4229 | /* Put a formatted string to the file */ |
| 4230 | /*-----------------------------------------------------------------------*/ |
| 4231 | |
| 4232 | int f_printf ( |
| 4233 | FIL* fp, /* Pointer to the file object */ |
| 4234 | const TCHAR* str, /* Pointer to the format string */ |
| 4235 | ... /* Optional arguments... */ |
| 4236 | ) |
| 4237 | { |
| 4238 | va_list arp; |
| 4239 | BYTE f, r; |
| 4240 | UINT i, j, w; |
| 4241 | ULONG v; |
| 4242 | TCHAR c, d, s[16], *p; |
| 4243 | int res, chc, cc; |
| 4244 | |
| 4245 | |
| 4246 | va_start(arp, str); |
| 4247 | |
| 4248 | for (cc = res = 0; cc != EOF; res += cc) { |
| 4249 | c = *str++; |
| 4250 | if (c == 0) break; /* End of string */ |
| 4251 | if (c != '%') { /* Non escape character */ |
| 4252 | cc = f_putc(c, fp); |
| 4253 | if (cc != EOF) cc = 1; |
| 4254 | continue; |
| 4255 | } |
| 4256 | w = f = 0; |
| 4257 | c = *str++; |
| 4258 | if (c == '0') { /* Flag: '0' padding */ |
| 4259 | f = 1; c = *str++; |
| 4260 | } else { |
| 4261 | if (c == '-') { /* Flag: left justified */ |
| 4262 | f = 2; c = *str++; |
| 4263 | } |
| 4264 | } |
| 4265 | while (IsDigit(c)) { /* Precision */ |
| 4266 | w = w * 10 + c - '0'; |
| 4267 | c = *str++; |
| 4268 | } |
| 4269 | if (c == 'l' || c == 'L') { /* Prefix: Size is long int */ |
| 4270 | f |= 4; c = *str++; |
| 4271 | } |
| 4272 | if (!c) break; |
| 4273 | d = c; |
| 4274 | if (IsLower(d)) d -= 0x20; |
| 4275 | switch (d) { /* Type is... */ |
| 4276 | case 'S' : /* String */ |
| 4277 | p = va_arg(arp, TCHAR*); |
| 4278 | for (j = 0; p[j]; j++) ; |
| 4279 | chc = 0; |
| 4280 | if (!(f & 2)) { |
| 4281 | while (j++ < w) chc += (cc = f_putc(' ', fp)); |
| 4282 | } |
| 4283 | chc += (cc = f_puts(p, fp)); |
| 4284 | while (j++ < w) chc += (cc = f_putc(' ', fp)); |
| 4285 | if (cc != EOF) cc = chc; |
| 4286 | continue; |
| 4287 | case 'C' : /* Character */ |
| 4288 | cc = f_putc((TCHAR)va_arg(arp, int), fp); continue; |
| 4289 | case 'B' : /* Binary */ |
| 4290 | r = 2; break; |
| 4291 | case 'O' : /* Octal */ |
| 4292 | r = 8; break; |
| 4293 | case 'D' : /* Signed decimal */ |
| 4294 | case 'U' : /* Unsigned decimal */ |
| 4295 | r = 10; break; |
| 4296 | case 'X' : /* Hexdecimal */ |
| 4297 | r = 16; break; |
| 4298 | default: /* Unknown type (pass-through) */ |
| 4299 | cc = f_putc(c, fp); continue; |
| 4300 | } |
| 4301 | |
| 4302 | /* Get an argument and put it in numeral */ |
| 4303 | v = (f & 4) ? (ULONG)va_arg(arp, long) : ((d == 'D') ? (ULONG)(long)va_arg(arp, int) : (ULONG)va_arg(arp, unsigned int)); |
| 4304 | if (d == 'D' && (v & 0x80000000)) { |
| 4305 | v = 0 - v; |
| 4306 | f |= 8; |
| 4307 | } |
| 4308 | i = 0; |
| 4309 | do { |
| 4310 | d = (TCHAR)(v % r); v /= r; |
| 4311 | if (d > 9) d += (c == 'x') ? 0x27 : 0x07; |
| 4312 | s[i++] = d + '0'; |
| 4313 | } while (v && i < sizeof s / sizeof s[0]); |
| 4314 | if (f & 8) s[i++] = '-'; |
| 4315 | j = i; d = (f & 1) ? '0' : ' '; |
| 4316 | chc = 0; |
| 4317 | while (!(f & 2) && j++ < w) chc += (cc = f_putc(d, fp)); |
| 4318 | do chc += (cc = f_putc(s[--i], fp)); while(i); |
| 4319 | while (j++ < w) chc += (cc = f_putc(' ', fp)); |
| 4320 | if (cc != EOF) cc = chc; |
| 4321 | } |
| 4322 | |
| 4323 | va_end(arp); |
| 4324 | return (cc == EOF) ? cc : res; |
| 4325 | } |
| 4326 | |
| 4327 | #endif /* !_FS_READONLY */ |
| 4328 | #endif /* _USE_STRFUNC */ |
| 4329 | |
| 4330 | #endif // CFG_TUH_MSC |