blob: 68ce658386780af4494ff309c4cd0136080484b3 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
wdenk71f95112003-06-15 22:40:42 +00002/*
3 * fat.c
4 *
5 * R/O (V)FAT 12/16/32 filesystem implementation by Marcus Sundberg
6 *
7 * 2002-07-28 - rjones@nexus-tech.net - ported to ppcboot v1.1.6
8 * 2003-03-10 - kharris@nexus-tech.net - ported to uboot
wdenk71f95112003-06-15 22:40:42 +00009 */
10
11#include <common.h>
Simon Glass2a981dc2016-02-29 15:25:52 -070012#include <blk.h>
wdenk71f95112003-06-15 22:40:42 +000013#include <config.h>
Sergei Shtylyovac497772011-08-08 09:38:33 +000014#include <exports.h>
wdenk71f95112003-06-15 22:40:42 +000015#include <fat.h>
Rob Clark1f403662017-09-09 13:15:56 -040016#include <fs.h>
wdenk71f95112003-06-15 22:40:42 +000017#include <asm/byteorder.h>
wdenk7205e402003-09-10 22:30:53 +000018#include <part.h>
Eric Nelson9a800ac2012-04-11 04:08:53 +000019#include <malloc.h>
Simon Glasscf92e052015-09-02 17:24:58 -060020#include <memalign.h>
Eric Nelson9a800ac2012-04-11 04:08:53 +000021#include <linux/compiler.h>
Richard Genoudfb7e16c2012-12-13 00:47:36 +000022#include <linux/ctype.h>
wdenk71f95112003-06-15 22:40:42 +000023
wdenk71f95112003-06-15 22:40:42 +000024/*
Rob Clark21a24c32017-09-09 13:15:59 -040025 * Convert a string to lowercase. Converts at most 'len' characters,
26 * 'len' may be larger than the length of 'str' if 'str' is NULL
27 * terminated.
wdenk71f95112003-06-15 22:40:42 +000028 */
Rob Clark21a24c32017-09-09 13:15:59 -040029static void downcase(char *str, size_t len)
wdenk71f95112003-06-15 22:40:42 +000030{
Rob Clark21a24c32017-09-09 13:15:59 -040031 while (*str != '\0' && len--) {
Richard Genoudfb7e16c2012-12-13 00:47:36 +000032 *str = tolower(*str);
wdenk71f95112003-06-15 22:40:42 +000033 str++;
34 }
35}
36
Simon Glass4101f682016-02-29 15:25:34 -070037static struct blk_desc *cur_dev;
Kyle Moffett9813b752011-12-21 07:08:10 +000038static disk_partition_t cur_part_info;
Wolfgang Denk7385c282010-07-19 11:37:00 +020039
Kyle Moffett9813b752011-12-21 07:08:10 +000040#define DOS_BOOT_MAGIC_OFFSET 0x1fe
wdenk7205e402003-09-10 22:30:53 +000041#define DOS_FS_TYPE_OFFSET 0x36
Wolfgang Denk66c2d732010-07-19 11:36:57 +020042#define DOS_FS32_TYPE_OFFSET 0x52
wdenk71f95112003-06-15 22:40:42 +000043
Kyle Moffett9813b752011-12-21 07:08:10 +000044static int disk_read(__u32 block, __u32 nr_blocks, void *buf)
wdenk71f95112003-06-15 22:40:42 +000045{
Łukasz Majewski0a04ed82015-09-03 14:21:39 +020046 ulong ret;
47
Simon Glass2a981dc2016-02-29 15:25:52 -070048 if (!cur_dev)
wdenk7205e402003-09-10 22:30:53 +000049 return -1;
Wolfgang Denk7385c282010-07-19 11:37:00 +020050
Simon Glass2a981dc2016-02-29 15:25:52 -070051 ret = blk_dread(cur_dev, cur_part_info.start + block, nr_blocks, buf);
Łukasz Majewski0a04ed82015-09-03 14:21:39 +020052
Tom Rini42a9f142017-08-14 21:02:08 -040053 if (ret != nr_blocks)
Łukasz Majewski0a04ed82015-09-03 14:21:39 +020054 return -1;
55
56 return ret;
wdenk71f95112003-06-15 22:40:42 +000057}
58
Simon Glass4101f682016-02-29 15:25:34 -070059int fat_set_blk_dev(struct blk_desc *dev_desc, disk_partition_t *info)
wdenk71f95112003-06-15 22:40:42 +000060{
Eric Nelson9a800ac2012-04-11 04:08:53 +000061 ALLOC_CACHE_ALIGN_BUFFER(unsigned char, buffer, dev_desc->blksz);
wdenk7205e402003-09-10 22:30:53 +000062
Stephen Warren5e8f9832012-10-17 06:44:59 +000063 cur_dev = dev_desc;
64 cur_part_info = *info;
Kyle Moffett9813b752011-12-21 07:08:10 +000065
66 /* Make sure it has a valid FAT header */
67 if (disk_read(0, 1, buffer) != 1) {
68 cur_dev = NULL;
69 return -1;
70 }
71
72 /* Check if it's actually a DOS volume */
73 if (memcmp(buffer + DOS_BOOT_MAGIC_OFFSET, "\x55\xAA", 2)) {
74 cur_dev = NULL;
75 return -1;
76 }
77
78 /* Check for FAT12/FAT16/FAT32 filesystem */
79 if (!memcmp(buffer + DOS_FS_TYPE_OFFSET, "FAT", 3))
80 return 0;
81 if (!memcmp(buffer + DOS_FS32_TYPE_OFFSET, "FAT32", 5))
82 return 0;
83
84 cur_dev = NULL;
85 return -1;
wdenk71f95112003-06-15 22:40:42 +000086}
87
Simon Glass4101f682016-02-29 15:25:34 -070088int fat_register_device(struct blk_desc *dev_desc, int part_no)
Stephen Warren5e8f9832012-10-17 06:44:59 +000089{
90 disk_partition_t info;
91
92 /* First close any currently found FAT filesystem */
93 cur_dev = NULL;
94
95 /* Read the partition table, if present */
Simon Glass3e8bd462016-02-29 15:25:48 -070096 if (part_get_info(dev_desc, part_no, &info)) {
Stephen Warren5e8f9832012-10-17 06:44:59 +000097 if (part_no != 0) {
98 printf("** Partition %d not valid on device %d **\n",
Simon Glassbcce53d2016-02-29 15:25:51 -070099 part_no, dev_desc->devnum);
Stephen Warren5e8f9832012-10-17 06:44:59 +0000100 return -1;
101 }
102
103 info.start = 0;
104 info.size = dev_desc->lba;
105 info.blksz = dev_desc->blksz;
106 info.name[0] = 0;
107 info.type[0] = 0;
108 info.bootable = 0;
Patrick Delaunayb331cd62017-01-27 11:00:42 +0100109#if CONFIG_IS_ENABLED(PARTITION_UUIDS)
Stephen Warren5e8f9832012-10-17 06:44:59 +0000110 info.uuid[0] = 0;
111#endif
112 }
113
114 return fat_set_blk_dev(dev_desc, &info);
115}
Kyle Moffett9813b752011-12-21 07:08:10 +0000116
wdenk71f95112003-06-15 22:40:42 +0000117/*
wdenk71f95112003-06-15 22:40:42 +0000118 * Extract zero terminated short name from a directory entry.
119 */
Benoît Thébaudeau9795e072012-07-20 15:18:44 +0200120static void get_name(dir_entry *dirent, char *s_name)
wdenk71f95112003-06-15 22:40:42 +0000121{
122 char *ptr;
123
Wolfgang Denk7385c282010-07-19 11:37:00 +0200124 memcpy(s_name, dirent->name, 8);
wdenk71f95112003-06-15 22:40:42 +0000125 s_name[8] = '\0';
126 ptr = s_name;
127 while (*ptr && *ptr != ' ')
128 ptr++;
Rob Clark21a24c32017-09-09 13:15:59 -0400129 if (dirent->lcase & CASE_LOWER_BASE)
130 downcase(s_name, (unsigned)(ptr - s_name));
wdenk71f95112003-06-15 22:40:42 +0000131 if (dirent->ext[0] && dirent->ext[0] != ' ') {
Rob Clark21a24c32017-09-09 13:15:59 -0400132 *ptr++ = '.';
Wolfgang Denk7385c282010-07-19 11:37:00 +0200133 memcpy(ptr, dirent->ext, 3);
Rob Clark21a24c32017-09-09 13:15:59 -0400134 if (dirent->lcase & CASE_LOWER_EXT)
135 downcase(ptr, 3);
wdenk71f95112003-06-15 22:40:42 +0000136 ptr[3] = '\0';
137 while (*ptr && *ptr != ' ')
138 ptr++;
139 }
140 *ptr = '\0';
141 if (*s_name == DELETED_FLAG)
142 *s_name = '\0';
143 else if (*s_name == aRING)
Remy Bohmer3c2c2f42008-11-27 22:30:27 +0100144 *s_name = DELETED_FLAG;
wdenk71f95112003-06-15 22:40:42 +0000145}
146
Stefan Brünsb8948d22016-12-17 00:27:51 +0100147static int flush_dirty_fat_buffer(fsdata *mydata);
Tien Fong Cheed8c3ea92019-01-23 14:20:04 +0800148
149#if !CONFIG_IS_ENABLED(FAT_WRITE)
Stefan Brünsb8948d22016-12-17 00:27:51 +0100150/* Stub for read only operation */
151int flush_dirty_fat_buffer(fsdata *mydata)
152{
153 (void)(mydata);
154 return 0;
155}
156#endif
157
wdenk71f95112003-06-15 22:40:42 +0000158/*
159 * Get the entry at index 'entry' in a FAT (12/16/32) table.
160 * On failure 0x00 is returned.
161 */
Benoît Thébaudeau9795e072012-07-20 15:18:44 +0200162static __u32 get_fatent(fsdata *mydata, __u32 entry)
wdenk71f95112003-06-15 22:40:42 +0000163{
164 __u32 bufnum;
Stefan Brünsb352cae2017-01-26 20:22:36 +0000165 __u32 offset, off8;
wdenk71f95112003-06-15 22:40:42 +0000166 __u32 ret = 0x00;
167
Stefan Brünsb8948d22016-12-17 00:27:51 +0100168 if (CHECK_CLUST(entry, mydata->fatsize)) {
169 printf("Error: Invalid FAT entry: 0x%08x\n", entry);
170 return ret;
171 }
172
wdenk71f95112003-06-15 22:40:42 +0000173 switch (mydata->fatsize) {
174 case 32:
175 bufnum = entry / FAT32BUFSIZE;
176 offset = entry - bufnum * FAT32BUFSIZE;
177 break;
178 case 16:
179 bufnum = entry / FAT16BUFSIZE;
180 offset = entry - bufnum * FAT16BUFSIZE;
181 break;
182 case 12:
183 bufnum = entry / FAT12BUFSIZE;
184 offset = entry - bufnum * FAT12BUFSIZE;
185 break;
186
187 default:
188 /* Unsupported FAT size */
189 return ret;
190 }
191
Stefan Brünsb8948d22016-12-17 00:27:51 +0100192 debug("FAT%d: entry: 0x%08x = %d, offset: 0x%04x = %d\n",
Wolfgang Denk7385c282010-07-19 11:37:00 +0200193 mydata->fatsize, entry, entry, offset, offset);
Wolfgang Denk2aa98c62010-07-19 11:36:58 +0200194
wdenk71f95112003-06-15 22:40:42 +0000195 /* Read a new block of FAT entries into the cache. */
196 if (bufnum != mydata->fatbufnum) {
Sergei Shtylyov60b36f02011-08-08 09:39:29 +0000197 __u32 getsize = FATBUFBLOCKS;
wdenk71f95112003-06-15 22:40:42 +0000198 __u8 *bufptr = mydata->fatbuf;
199 __u32 fatlength = mydata->fatlength;
200 __u32 startblock = bufnum * FATBUFBLOCKS;
201
Stefan Brüns6c1a8082016-12-17 00:27:50 +0100202 /* Cap length if fatlength is not a multiple of FATBUFBLOCKS */
Benoît Thébaudeau8006dd22012-07-20 15:19:29 +0200203 if (startblock + getsize > fatlength)
204 getsize = fatlength - startblock;
Sergei Shtylyov60b36f02011-08-08 09:39:29 +0000205
wdenk71f95112003-06-15 22:40:42 +0000206 startblock += mydata->fat_sect; /* Offset from start of disk */
207
Stefan Brünsb8948d22016-12-17 00:27:51 +0100208 /* Write back the fatbuf to the disk */
209 if (flush_dirty_fat_buffer(mydata) < 0)
210 return -1;
211
wdenk71f95112003-06-15 22:40:42 +0000212 if (disk_read(startblock, getsize, bufptr) < 0) {
Wolfgang Denk7385c282010-07-19 11:37:00 +0200213 debug("Error reading FAT blocks\n");
wdenk71f95112003-06-15 22:40:42 +0000214 return ret;
215 }
216 mydata->fatbufnum = bufnum;
217 }
218
219 /* Get the actual entry from the table */
220 switch (mydata->fatsize) {
221 case 32:
Wolfgang Denk7385c282010-07-19 11:37:00 +0200222 ret = FAT2CPU32(((__u32 *) mydata->fatbuf)[offset]);
wdenk71f95112003-06-15 22:40:42 +0000223 break;
224 case 16:
Wolfgang Denk7385c282010-07-19 11:37:00 +0200225 ret = FAT2CPU16(((__u16 *) mydata->fatbuf)[offset]);
wdenk71f95112003-06-15 22:40:42 +0000226 break;
Wolfgang Denk7385c282010-07-19 11:37:00 +0200227 case 12:
Stefan Brünsb352cae2017-01-26 20:22:36 +0000228 off8 = (offset * 3) / 2;
229 /* fatbut + off8 may be unaligned, read in byte granularity */
230 ret = mydata->fatbuf[off8] + (mydata->fatbuf[off8 + 1] << 8);
wdenk71f95112003-06-15 22:40:42 +0000231
Stefan Brüns8d48c922016-12-17 03:55:10 +0100232 if (offset & 0x1)
233 ret >>= 4;
234 ret &= 0xfff;
wdenk71f95112003-06-15 22:40:42 +0000235 }
Stefan Brünsb8948d22016-12-17 00:27:51 +0100236 debug("FAT%d: ret: 0x%08x, entry: 0x%08x, offset: 0x%04x\n",
237 mydata->fatsize, ret, entry, offset);
wdenk71f95112003-06-15 22:40:42 +0000238
239 return ret;
240}
241
wdenk71f95112003-06-15 22:40:42 +0000242/*
243 * Read at most 'size' bytes from the specified cluster into 'buffer'.
244 * Return 0 on success, -1 otherwise.
245 */
246static int
Benoît Thébaudeau9795e072012-07-20 15:18:44 +0200247get_cluster(fsdata *mydata, __u32 clustnum, __u8 *buffer, unsigned long size)
wdenk71f95112003-06-15 22:40:42 +0000248{
Erik Hansen3f270f42011-03-24 10:15:37 +0100249 __u32 idx = 0;
wdenk71f95112003-06-15 22:40:42 +0000250 __u32 startsect;
Kyle Moffett46236b12011-12-20 07:41:13 +0000251 int ret;
wdenk71f95112003-06-15 22:40:42 +0000252
253 if (clustnum > 0) {
Rob Clark265edc02017-09-09 13:16:00 -0400254 startsect = clust_to_sect(mydata, clustnum);
wdenk71f95112003-06-15 22:40:42 +0000255 } else {
256 startsect = mydata->rootdir_sect;
257 }
258
Wolfgang Denk7385c282010-07-19 11:37:00 +0200259 debug("gc - clustnum: %d, startsect: %d\n", clustnum, startsect);
260
Benoît Thébaudeaucc63b252012-07-20 15:21:08 +0200261 if ((unsigned long)buffer & (ARCH_DMA_MINALIGN - 1)) {
Eric Nelson9a800ac2012-04-11 04:08:53 +0000262 ALLOC_CACHE_ALIGN_BUFFER(__u8, tmpbuf, mydata->sect_size);
Wolfgang Denk7385c282010-07-19 11:37:00 +0200263
Heinrich Schuchardt1c381ce2018-09-13 19:42:47 +0200264 debug("FAT: Misaligned buffer address (%p)\n", buffer);
Benoît Thébaudeaucc63b252012-07-20 15:21:08 +0200265
266 while (size >= mydata->sect_size) {
267 ret = disk_read(startsect++, 1, tmpbuf);
268 if (ret != 1) {
269 debug("Error reading data (got %d)\n", ret);
270 return -1;
271 }
272
273 memcpy(buffer, tmpbuf, mydata->sect_size);
274 buffer += mydata->sect_size;
275 size -= mydata->sect_size;
276 }
277 } else {
Sergei Shtylyovac497772011-08-08 09:38:33 +0000278 idx = size / mydata->sect_size;
Benoît Thébaudeaucc63b252012-07-20 15:21:08 +0200279 ret = disk_read(startsect, idx, buffer);
280 if (ret != idx) {
281 debug("Error reading data (got %d)\n", ret);
282 return -1;
283 }
284 startsect += idx;
285 idx *= mydata->sect_size;
286 buffer += idx;
287 size -= idx;
288 }
289 if (size) {
290 ALLOC_CACHE_ALIGN_BUFFER(__u8, tmpbuf, mydata->sect_size);
291
292 ret = disk_read(startsect, 1, tmpbuf);
Kyle Moffett46236b12011-12-20 07:41:13 +0000293 if (ret != 1) {
294 debug("Error reading data (got %d)\n", ret);
wdenk7205e402003-09-10 22:30:53 +0000295 return -1;
wdenk71f95112003-06-15 22:40:42 +0000296 }
wdenk7205e402003-09-10 22:30:53 +0000297
Benoît Thébaudeaucc63b252012-07-20 15:21:08 +0200298 memcpy(buffer, tmpbuf, size);
wdenk71f95112003-06-15 22:40:42 +0000299 }
300
301 return 0;
302}
303
Heinrich Schuchardtc7a86d12019-09-12 19:19:29 +0200304/**
305 * get_contents() - read from file
306 *
Benoît Thébaudeau1170e632012-09-18 08:14:56 +0000307 * Read at most 'maxsize' bytes from 'pos' in the file associated with 'dentptr'
Heinrich Schuchardtc7a86d12019-09-12 19:19:29 +0200308 * into 'buffer'. Update the number of bytes read in *gotsize or return -1 on
309 * fatal errors.
310 *
311 * @mydata: file system description
312 * @dentprt: directory entry pointer
313 * @pos: position from where to read
314 * @buffer: buffer into which to read
315 * @maxsize: maximum number of bytes to read
316 * @gotsize: number of bytes actually read
317 * Return: -1 on error, otherwise 0
wdenk71f95112003-06-15 22:40:42 +0000318 */
Suriyan Ramasami1ad0b982014-11-17 14:39:35 -0800319static int get_contents(fsdata *mydata, dir_entry *dentptr, loff_t pos,
320 __u8 *buffer, loff_t maxsize, loff_t *gotsize)
wdenk71f95112003-06-15 22:40:42 +0000321{
Suriyan Ramasami1ad0b982014-11-17 14:39:35 -0800322 loff_t filesize = FAT2CPU32(dentptr->size);
Sergei Shtylyovac497772011-08-08 09:38:33 +0000323 unsigned int bytesperclust = mydata->clust_size * mydata->sect_size;
wdenk71f95112003-06-15 22:40:42 +0000324 __u32 curclust = START(dentptr);
wdenk7205e402003-09-10 22:30:53 +0000325 __u32 endclust, newclust;
Suriyan Ramasami1ad0b982014-11-17 14:39:35 -0800326 loff_t actsize;
wdenk71f95112003-06-15 22:40:42 +0000327
Suriyan Ramasami1ad0b982014-11-17 14:39:35 -0800328 *gotsize = 0;
329 debug("Filesize: %llu bytes\n", filesize);
wdenk71f95112003-06-15 22:40:42 +0000330
Benoît Thébaudeau1170e632012-09-18 08:14:56 +0000331 if (pos >= filesize) {
Suriyan Ramasami1ad0b982014-11-17 14:39:35 -0800332 debug("Read position past EOF: %llu\n", pos);
333 return 0;
Benoît Thébaudeau1170e632012-09-18 08:14:56 +0000334 }
335
336 if (maxsize > 0 && filesize > pos + maxsize)
337 filesize = pos + maxsize;
wdenk71f95112003-06-15 22:40:42 +0000338
Suriyan Ramasami1ad0b982014-11-17 14:39:35 -0800339 debug("%llu bytes\n", filesize);
wdenk71f95112003-06-15 22:40:42 +0000340
Wolfgang Denk7385c282010-07-19 11:37:00 +0200341 actsize = bytesperclust;
Benoît Thébaudeau1170e632012-09-18 08:14:56 +0000342
343 /* go to cluster at pos */
344 while (actsize <= pos) {
345 curclust = get_fatent(mydata, curclust);
346 if (CHECK_CLUST(curclust, mydata->fatsize)) {
347 debug("curclust: 0x%x\n", curclust);
Heinrich Schuchardtc7a86d12019-09-12 19:19:29 +0200348 printf("Invalid FAT entry\n");
349 return -1;
Benoît Thébaudeau1170e632012-09-18 08:14:56 +0000350 }
351 actsize += bytesperclust;
352 }
353
354 /* actsize > pos */
355 actsize -= bytesperclust;
356 filesize -= actsize;
357 pos -= actsize;
358
359 /* align to beginning of next cluster if any */
360 if (pos) {
Tien Fong Chee85378742019-02-11 14:56:19 +0800361 __u8 *tmp_buffer;
362
Suriyan Ramasami1ad0b982014-11-17 14:39:35 -0800363 actsize = min(filesize, (loff_t)bytesperclust);
Tien Fong Chee85378742019-02-11 14:56:19 +0800364 tmp_buffer = malloc_cache_aligned(actsize);
365 if (!tmp_buffer) {
366 debug("Error: allocating buffer\n");
Heinrich Schuchardtf1368382019-09-12 19:19:30 +0200367 return -1;
Tien Fong Chee85378742019-02-11 14:56:19 +0800368 }
369
370 if (get_cluster(mydata, curclust, tmp_buffer, actsize) != 0) {
Benoît Thébaudeau1170e632012-09-18 08:14:56 +0000371 printf("Error reading cluster\n");
Tien Fong Chee85378742019-02-11 14:56:19 +0800372 free(tmp_buffer);
Benoît Thébaudeau1170e632012-09-18 08:14:56 +0000373 return -1;
374 }
375 filesize -= actsize;
376 actsize -= pos;
Tien Fong Chee85378742019-02-11 14:56:19 +0800377 memcpy(buffer, tmp_buffer + pos, actsize);
378 free(tmp_buffer);
Suriyan Ramasami1ad0b982014-11-17 14:39:35 -0800379 *gotsize += actsize;
Benoît Thébaudeau1170e632012-09-18 08:14:56 +0000380 if (!filesize)
Suriyan Ramasami1ad0b982014-11-17 14:39:35 -0800381 return 0;
Benoît Thébaudeau1170e632012-09-18 08:14:56 +0000382 buffer += actsize;
383
384 curclust = get_fatent(mydata, curclust);
385 if (CHECK_CLUST(curclust, mydata->fatsize)) {
386 debug("curclust: 0x%x\n", curclust);
Heinrich Schuchardtc7a86d12019-09-12 19:19:29 +0200387 printf("Invalid FAT entry\n");
388 return -1;
Benoît Thébaudeau1170e632012-09-18 08:14:56 +0000389 }
390 }
391
392 actsize = bytesperclust;
Wolfgang Denk7385c282010-07-19 11:37:00 +0200393 endclust = curclust;
394
wdenk71f95112003-06-15 22:40:42 +0000395 do {
wdenk7205e402003-09-10 22:30:53 +0000396 /* search for consecutive clusters */
Wolfgang Denk7385c282010-07-19 11:37:00 +0200397 while (actsize < filesize) {
wdenk7205e402003-09-10 22:30:53 +0000398 newclust = get_fatent(mydata, endclust);
Wolfgang Denk7385c282010-07-19 11:37:00 +0200399 if ((newclust - 1) != endclust)
wdenk7205e402003-09-10 22:30:53 +0000400 goto getit;
michael8ce4e5c2008-03-02 23:33:46 +0100401 if (CHECK_CLUST(newclust, mydata->fatsize)) {
Wolfgang Denk7385c282010-07-19 11:37:00 +0200402 debug("curclust: 0x%x\n", newclust);
Heinrich Schuchardtc7a86d12019-09-12 19:19:29 +0200403 printf("Invalid FAT entry\n");
404 return -1;
wdenk7205e402003-09-10 22:30:53 +0000405 }
Wolfgang Denk7385c282010-07-19 11:37:00 +0200406 endclust = newclust;
407 actsize += bytesperclust;
wdenk7205e402003-09-10 22:30:53 +0000408 }
Wolfgang Denk7385c282010-07-19 11:37:00 +0200409
wdenk7205e402003-09-10 22:30:53 +0000410 /* get remaining bytes */
Wolfgang Denk7385c282010-07-19 11:37:00 +0200411 actsize = filesize;
Benoît Thébaudeau0880e5b2012-07-20 15:21:37 +0200412 if (get_cluster(mydata, curclust, buffer, (int)actsize) != 0) {
Wolfgang Denk7385c282010-07-19 11:37:00 +0200413 printf("Error reading cluster\n");
wdenk7205e402003-09-10 22:30:53 +0000414 return -1;
415 }
Suriyan Ramasami1ad0b982014-11-17 14:39:35 -0800416 *gotsize += actsize;
417 return 0;
wdenk7205e402003-09-10 22:30:53 +0000418getit:
419 if (get_cluster(mydata, curclust, buffer, (int)actsize) != 0) {
Wolfgang Denk7385c282010-07-19 11:37:00 +0200420 printf("Error reading cluster\n");
wdenk7205e402003-09-10 22:30:53 +0000421 return -1;
422 }
Suriyan Ramasami1ad0b982014-11-17 14:39:35 -0800423 *gotsize += (int)actsize;
wdenk7205e402003-09-10 22:30:53 +0000424 filesize -= actsize;
425 buffer += actsize;
Wolfgang Denk7385c282010-07-19 11:37:00 +0200426
wdenk7205e402003-09-10 22:30:53 +0000427 curclust = get_fatent(mydata, endclust);
michael8ce4e5c2008-03-02 23:33:46 +0100428 if (CHECK_CLUST(curclust, mydata->fatsize)) {
Wolfgang Denk7385c282010-07-19 11:37:00 +0200429 debug("curclust: 0x%x\n", curclust);
430 printf("Invalid FAT entry\n");
Heinrich Schuchardtc7a86d12019-09-12 19:19:29 +0200431 return -1;
wdenk71f95112003-06-15 22:40:42 +0000432 }
Wolfgang Denk7385c282010-07-19 11:37:00 +0200433 actsize = bytesperclust;
434 endclust = curclust;
wdenk71f95112003-06-15 22:40:42 +0000435 } while (1);
436}
437
wdenk71f95112003-06-15 22:40:42 +0000438/*
439 * Extract the file name information from 'slotptr' into 'l_name',
440 * starting at l_name[*idx].
441 * Return 1 if terminator (zero byte) is found, 0 otherwise.
442 */
Benoît Thébaudeau9795e072012-07-20 15:18:44 +0200443static int slot2str(dir_slot *slotptr, char *l_name, int *idx)
wdenk71f95112003-06-15 22:40:42 +0000444{
445 int j;
446
447 for (j = 0; j <= 8; j += 2) {
448 l_name[*idx] = slotptr->name0_4[j];
Wolfgang Denk7385c282010-07-19 11:37:00 +0200449 if (l_name[*idx] == 0x00)
450 return 1;
wdenk71f95112003-06-15 22:40:42 +0000451 (*idx)++;
452 }
453 for (j = 0; j <= 10; j += 2) {
454 l_name[*idx] = slotptr->name5_10[j];
Wolfgang Denk7385c282010-07-19 11:37:00 +0200455 if (l_name[*idx] == 0x00)
456 return 1;
wdenk71f95112003-06-15 22:40:42 +0000457 (*idx)++;
458 }
459 for (j = 0; j <= 2; j += 2) {
460 l_name[*idx] = slotptr->name11_12[j];
Wolfgang Denk7385c282010-07-19 11:37:00 +0200461 if (l_name[*idx] == 0x00)
462 return 1;
wdenk71f95112003-06-15 22:40:42 +0000463 (*idx)++;
464 }
465
466 return 0;
467}
468
wdenk71f95112003-06-15 22:40:42 +0000469/* Calculate short name checksum */
Marek Vasutff04f6d2012-10-09 07:20:22 +0000470static __u8 mkcksum(const char name[8], const char ext[3])
wdenk71f95112003-06-15 22:40:42 +0000471{
472 int i;
Wolfgang Denk7385c282010-07-19 11:37:00 +0200473
wdenk71f95112003-06-15 22:40:42 +0000474 __u8 ret = 0;
475
Marek Vasut6ad77d82013-01-11 03:35:48 +0000476 for (i = 0; i < 8; i++)
Marek Vasutff04f6d2012-10-09 07:20:22 +0000477 ret = (((ret & 1) << 7) | ((ret & 0xfe) >> 1)) + name[i];
Marek Vasut6ad77d82013-01-11 03:35:48 +0000478 for (i = 0; i < 3; i++)
Marek Vasutff04f6d2012-10-09 07:20:22 +0000479 ret = (((ret & 1) << 7) | ((ret & 0xfe) >> 1)) + ext[i];
wdenk71f95112003-06-15 22:40:42 +0000480
481 return ret;
482}
wdenk71f95112003-06-15 22:40:42 +0000483
484/*
wdenk71f95112003-06-15 22:40:42 +0000485 * Read boot sector and volume info from a FAT filesystem
486 */
487static int
Benoît Thébaudeau9795e072012-07-20 15:18:44 +0200488read_bootsectandvi(boot_sector *bs, volume_info *volinfo, int *fatsize)
wdenk71f95112003-06-15 22:40:42 +0000489{
Sergei Shtylyovac497772011-08-08 09:38:33 +0000490 __u8 *block;
wdenk71f95112003-06-15 22:40:42 +0000491 volume_info *vistart;
Sergei Shtylyovac497772011-08-08 09:38:33 +0000492 int ret = 0;
493
494 if (cur_dev == NULL) {
495 debug("Error: no device selected\n");
496 return -1;
497 }
498
Tuomas Tynkkynen09fa9642017-10-01 02:25:21 +0300499 block = malloc_cache_aligned(cur_dev->blksz);
Sergei Shtylyovac497772011-08-08 09:38:33 +0000500 if (block == NULL) {
501 debug("Error: allocating block\n");
502 return -1;
503 }
wdenk71f95112003-06-15 22:40:42 +0000504
Benoît Thébaudeau9795e072012-07-20 15:18:44 +0200505 if (disk_read(0, 1, block) < 0) {
Wolfgang Denk7385c282010-07-19 11:37:00 +0200506 debug("Error: reading block\n");
Sergei Shtylyovac497772011-08-08 09:38:33 +0000507 goto fail;
wdenk71f95112003-06-15 22:40:42 +0000508 }
509
510 memcpy(bs, block, sizeof(boot_sector));
Wolfgang Denk7385c282010-07-19 11:37:00 +0200511 bs->reserved = FAT2CPU16(bs->reserved);
512 bs->fat_length = FAT2CPU16(bs->fat_length);
513 bs->secs_track = FAT2CPU16(bs->secs_track);
514 bs->heads = FAT2CPU16(bs->heads);
515 bs->total_sect = FAT2CPU32(bs->total_sect);
wdenk71f95112003-06-15 22:40:42 +0000516
517 /* FAT32 entries */
518 if (bs->fat_length == 0) {
519 /* Assume FAT32 */
520 bs->fat32_length = FAT2CPU32(bs->fat32_length);
Wolfgang Denk7385c282010-07-19 11:37:00 +0200521 bs->flags = FAT2CPU16(bs->flags);
wdenk71f95112003-06-15 22:40:42 +0000522 bs->root_cluster = FAT2CPU32(bs->root_cluster);
Wolfgang Denk7385c282010-07-19 11:37:00 +0200523 bs->info_sector = FAT2CPU16(bs->info_sector);
524 bs->backup_boot = FAT2CPU16(bs->backup_boot);
525 vistart = (volume_info *)(block + sizeof(boot_sector));
wdenk71f95112003-06-15 22:40:42 +0000526 *fatsize = 32;
527 } else {
Wolfgang Denk7385c282010-07-19 11:37:00 +0200528 vistart = (volume_info *)&(bs->fat32_length);
wdenk71f95112003-06-15 22:40:42 +0000529 *fatsize = 0;
530 }
531 memcpy(volinfo, vistart, sizeof(volume_info));
532
wdenk71f95112003-06-15 22:40:42 +0000533 if (*fatsize == 32) {
Wolfgang Denk7385c282010-07-19 11:37:00 +0200534 if (strncmp(FAT32_SIGN, vistart->fs_type, SIGNLEN) == 0)
Sergei Shtylyovac497772011-08-08 09:38:33 +0000535 goto exit;
wdenk71f95112003-06-15 22:40:42 +0000536 } else {
Tom Rix651351f2009-05-20 07:55:41 -0500537 if (strncmp(FAT12_SIGN, vistart->fs_type, SIGNLEN) == 0) {
wdenk71f95112003-06-15 22:40:42 +0000538 *fatsize = 12;
Sergei Shtylyovac497772011-08-08 09:38:33 +0000539 goto exit;
wdenk71f95112003-06-15 22:40:42 +0000540 }
Tom Rix651351f2009-05-20 07:55:41 -0500541 if (strncmp(FAT16_SIGN, vistart->fs_type, SIGNLEN) == 0) {
wdenk71f95112003-06-15 22:40:42 +0000542 *fatsize = 16;
Sergei Shtylyovac497772011-08-08 09:38:33 +0000543 goto exit;
wdenk71f95112003-06-15 22:40:42 +0000544 }
545 }
546
Wolfgang Denk7385c282010-07-19 11:37:00 +0200547 debug("Error: broken fs_type sign\n");
Sergei Shtylyovac497772011-08-08 09:38:33 +0000548fail:
549 ret = -1;
550exit:
551 free(block);
552 return ret;
wdenk71f95112003-06-15 22:40:42 +0000553}
554
Rob Clark45449982017-09-09 13:15:52 -0400555static int get_fs_info(fsdata *mydata)
wdenk71f95112003-06-15 22:40:42 +0000556{
Wolfgang Denk7385c282010-07-19 11:37:00 +0200557 boot_sector bs;
558 volume_info volinfo;
Rob Clark45449982017-09-09 13:15:52 -0400559 int ret;
wdenk71f95112003-06-15 22:40:42 +0000560
Rob Clark45449982017-09-09 13:15:52 -0400561 ret = read_bootsectandvi(&bs, &volinfo, &mydata->fatsize);
562 if (ret) {
Wolfgang Denk7385c282010-07-19 11:37:00 +0200563 debug("Error: reading boot sector\n");
Rob Clark45449982017-09-09 13:15:52 -0400564 return ret;
Wolfgang Denk7385c282010-07-19 11:37:00 +0200565 }
566
Sergei Shtylyov40e21912011-08-19 09:32:34 +0000567 if (mydata->fatsize == 32) {
Wolfgang Denk7385c282010-07-19 11:37:00 +0200568 mydata->fatlength = bs.fat32_length;
AKASHI Takahirof23101f2018-09-11 15:58:58 +0900569 mydata->total_sect = bs.total_sect;
Sergei Shtylyov40e21912011-08-19 09:32:34 +0000570 } else {
Wolfgang Denk7385c282010-07-19 11:37:00 +0200571 mydata->fatlength = bs.fat_length;
AKASHI Takahirof23101f2018-09-11 15:58:58 +0900572 mydata->total_sect = (bs.sectors[1] << 8) + bs.sectors[0];
573 if (!mydata->total_sect)
574 mydata->total_sect = bs.total_sect;
Sergei Shtylyov40e21912011-08-19 09:32:34 +0000575 }
AKASHI Takahirof23101f2018-09-11 15:58:58 +0900576 if (!mydata->total_sect) /* unlikely */
577 mydata->total_sect = (u32)cur_part_info.size;
wdenk71f95112003-06-15 22:40:42 +0000578
AKASHI Takahirof23101f2018-09-11 15:58:58 +0900579 mydata->fats = bs.fats;
Wolfgang Denk7385c282010-07-19 11:37:00 +0200580 mydata->fat_sect = bs.reserved;
wdenk71f95112003-06-15 22:40:42 +0000581
Rob Clark45449982017-09-09 13:15:52 -0400582 mydata->rootdir_sect = mydata->fat_sect + mydata->fatlength * bs.fats;
wdenk71f95112003-06-15 22:40:42 +0000583
Sergei Shtylyovac497772011-08-08 09:38:33 +0000584 mydata->sect_size = (bs.sector_size[1] << 8) + bs.sector_size[0];
Wolfgang Denk7385c282010-07-19 11:37:00 +0200585 mydata->clust_size = bs.cluster_size;
Kyle Moffett46236b12011-12-20 07:41:13 +0000586 if (mydata->sect_size != cur_part_info.blksz) {
587 printf("Error: FAT sector size mismatch (fs=%hu, dev=%lu)\n",
588 mydata->sect_size, cur_part_info.blksz);
589 return -1;
590 }
Patrick Wildtcd80a4f2018-11-26 15:56:57 +0100591 if (mydata->clust_size == 0) {
592 printf("Error: FAT cluster size not set\n");
593 return -1;
594 }
595 if ((unsigned int)mydata->clust_size * mydata->sect_size >
596 MAX_CLUSTSIZE) {
597 printf("Error: FAT cluster size too big (cs=%u, max=%u)\n",
598 (unsigned int)mydata->clust_size * mydata->sect_size,
599 MAX_CLUSTSIZE);
600 return -1;
601 }
wdenk71f95112003-06-15 22:40:42 +0000602
Wolfgang Denk7385c282010-07-19 11:37:00 +0200603 if (mydata->fatsize == 32) {
604 mydata->data_begin = mydata->rootdir_sect -
605 (mydata->clust_size * 2);
Rob Clarkc6e3baa2017-09-09 13:15:53 -0400606 mydata->root_cluster = bs.root_cluster;
Wolfgang Denk7385c282010-07-19 11:37:00 +0200607 } else {
Rob Clark45449982017-09-09 13:15:52 -0400608 mydata->rootdir_size = ((bs.dir_entries[1] * (int)256 +
609 bs.dir_entries[0]) *
610 sizeof(dir_entry)) /
611 mydata->sect_size;
Wolfgang Denk7385c282010-07-19 11:37:00 +0200612 mydata->data_begin = mydata->rootdir_sect +
Rob Clark45449982017-09-09 13:15:52 -0400613 mydata->rootdir_size -
Wolfgang Denk7385c282010-07-19 11:37:00 +0200614 (mydata->clust_size * 2);
Anssi Hannula9b183582019-02-27 12:55:57 +0200615
616 /*
617 * The root directory is not cluster-aligned and may be on a
618 * "negative" cluster, this will be handled specially in
619 * next_cluster().
620 */
621 mydata->root_cluster = 0;
wdenk71f95112003-06-15 22:40:42 +0000622 }
wdenk71f95112003-06-15 22:40:42 +0000623
Wolfgang Denk7385c282010-07-19 11:37:00 +0200624 mydata->fatbufnum = -1;
Stefan Brüns3c0ed9c2016-09-11 22:51:40 +0200625 mydata->fat_dirty = 0;
Tuomas Tynkkynen09fa9642017-10-01 02:25:21 +0300626 mydata->fatbuf = malloc_cache_aligned(FATBUFSIZE);
Sergei Shtylyovac497772011-08-08 09:38:33 +0000627 if (mydata->fatbuf == NULL) {
628 debug("Error: allocating memory\n");
629 return -1;
630 }
Wolfgang Denk7385c282010-07-19 11:37:00 +0200631
Wolfgang Denk7385c282010-07-19 11:37:00 +0200632 debug("FAT%d, fat_sect: %d, fatlength: %d\n",
633 mydata->fatsize, mydata->fat_sect, mydata->fatlength);
634 debug("Rootdir begins at cluster: %d, sector: %d, offset: %x\n"
635 "Data begins at: %d\n",
Rob Clarkc6e3baa2017-09-09 13:15:53 -0400636 mydata->root_cluster,
Wolfgang Denk7385c282010-07-19 11:37:00 +0200637 mydata->rootdir_sect,
Sergei Shtylyovac497772011-08-08 09:38:33 +0000638 mydata->rootdir_sect * mydata->sect_size, mydata->data_begin);
639 debug("Sector size: %d, cluster size: %d\n", mydata->sect_size,
640 mydata->clust_size);
Wolfgang Denk7385c282010-07-19 11:37:00 +0200641
Rob Clark45449982017-09-09 13:15:52 -0400642 return 0;
643}
644
Rob Clarkc6e3baa2017-09-09 13:15:53 -0400645
646/*
647 * Directory iterator, to simplify filesystem traversal
648 *
649 * Implements an iterator pattern to traverse directory tables,
650 * transparently handling directory tables split across multiple
651 * clusters, and the difference between FAT12/FAT16 root directory
652 * (contiguous) and subdirectories + FAT32 root (chained).
653 *
654 * Rough usage:
655 *
656 * for (fat_itr_root(&itr, fsdata); fat_itr_next(&itr); ) {
657 * // to traverse down to a subdirectory pointed to by
658 * // current iterator position:
659 * fat_itr_child(&itr, &itr);
660 * }
661 *
662 * For more complete example, see fat_itr_resolve()
663 */
664
665typedef struct {
666 fsdata *fsdata; /* filesystem parameters */
AKASHI Takahiro3a10e072018-09-11 15:59:09 +0900667 unsigned start_clust; /* first cluster */
Rob Clarkc6e3baa2017-09-09 13:15:53 -0400668 unsigned clust; /* current cluster */
AKASHI Takahirof528c142018-09-11 15:59:00 +0900669 unsigned next_clust; /* next cluster if remaining == 0 */
Rob Clarkc6e3baa2017-09-09 13:15:53 -0400670 int last_cluster; /* set once we've read last cluster */
671 int is_root; /* is iterator at root directory */
672 int remaining; /* remaining dent's in current cluster */
673
674 /* current iterator position values: */
675 dir_entry *dent; /* current directory entry */
676 char l_name[VFAT_MAXLEN_BYTES]; /* long (vfat) name */
677 char s_name[14]; /* short 8.3 name */
678 char *name; /* l_name if there is one, else s_name */
679
680 /* storage for current cluster in memory: */
681 u8 block[MAX_CLUSTSIZE] __aligned(ARCH_DMA_MINALIGN);
682} fat_itr;
683
684static int fat_itr_isdir(fat_itr *itr);
685
686/**
687 * fat_itr_root() - initialize an iterator to start at the root
688 * directory
689 *
690 * @itr: iterator to initialize
691 * @fsdata: filesystem data for the partition
692 * @return 0 on success, else -errno
693 */
694static int fat_itr_root(fat_itr *itr, fsdata *fsdata)
695{
696 if (get_fs_info(fsdata))
697 return -ENXIO;
698
699 itr->fsdata = fsdata;
AKASHI Takahiro3a10e072018-09-11 15:59:09 +0900700 itr->start_clust = 0;
Rob Clarkc6e3baa2017-09-09 13:15:53 -0400701 itr->clust = fsdata->root_cluster;
AKASHI Takahirof528c142018-09-11 15:59:00 +0900702 itr->next_clust = fsdata->root_cluster;
Rob Clarkc6e3baa2017-09-09 13:15:53 -0400703 itr->dent = NULL;
704 itr->remaining = 0;
705 itr->last_cluster = 0;
706 itr->is_root = 1;
707
708 return 0;
709}
710
711/**
712 * fat_itr_child() - initialize an iterator to descend into a sub-
713 * directory
714 *
715 * Initializes 'itr' to iterate the contents of the directory at
716 * the current cursor position of 'parent'. It is an error to
717 * call this if the current cursor of 'parent' is pointing at a
718 * regular file.
719 *
720 * Note that 'itr' and 'parent' can be the same pointer if you do
721 * not need to preserve 'parent' after this call, which is useful
722 * for traversing directory structure to resolve a file/directory.
723 *
724 * @itr: iterator to initialize
725 * @parent: the iterator pointing at a directory entry in the
726 * parent directory of the directory to iterate
727 */
728static void fat_itr_child(fat_itr *itr, fat_itr *parent)
729{
730 fsdata *mydata = parent->fsdata; /* for silly macros */
731 unsigned clustnum = START(parent->dent);
732
733 assert(fat_itr_isdir(parent));
734
735 itr->fsdata = parent->fsdata;
AKASHI Takahiro3a10e072018-09-11 15:59:09 +0900736 itr->start_clust = clustnum;
Rob Clarkc6e3baa2017-09-09 13:15:53 -0400737 if (clustnum > 0) {
738 itr->clust = clustnum;
AKASHI Takahirof528c142018-09-11 15:59:00 +0900739 itr->next_clust = clustnum;
Tuomas Tynkkynen8df87312017-09-25 22:06:33 +0300740 itr->is_root = 0;
Rob Clarkc6e3baa2017-09-09 13:15:53 -0400741 } else {
742 itr->clust = parent->fsdata->root_cluster;
AKASHI Takahirof528c142018-09-11 15:59:00 +0900743 itr->next_clust = parent->fsdata->root_cluster;
Tuomas Tynkkynen8df87312017-09-25 22:06:33 +0300744 itr->is_root = 1;
Rob Clarkc6e3baa2017-09-09 13:15:53 -0400745 }
746 itr->dent = NULL;
747 itr->remaining = 0;
748 itr->last_cluster = 0;
Rob Clarkc6e3baa2017-09-09 13:15:53 -0400749}
750
Anssi Hannula9b183582019-02-27 12:55:57 +0200751static void *next_cluster(fat_itr *itr, unsigned *nbytes)
Rob Clarkc6e3baa2017-09-09 13:15:53 -0400752{
753 fsdata *mydata = itr->fsdata; /* for silly macros */
754 int ret;
755 u32 sect;
Anssi Hannula9b183582019-02-27 12:55:57 +0200756 u32 read_size;
Rob Clarkc6e3baa2017-09-09 13:15:53 -0400757
758 /* have we reached the end? */
759 if (itr->last_cluster)
760 return NULL;
761
Anssi Hannula9b183582019-02-27 12:55:57 +0200762 if (itr->is_root && itr->fsdata->fatsize != 32) {
763 /*
764 * The root directory is located before the data area and
765 * cannot be indexed using the regular unsigned cluster
766 * numbers (it may start at a "negative" cluster or not at a
767 * cluster boundary at all), so consider itr->next_clust to be
768 * a offset in cluster-sized units from the start of rootdir.
769 */
770 unsigned sect_offset = itr->next_clust * itr->fsdata->clust_size;
771 unsigned remaining_sects = itr->fsdata->rootdir_size - sect_offset;
772 sect = itr->fsdata->rootdir_sect + sect_offset;
773 /* do not read past the end of rootdir */
774 read_size = min_t(u32, itr->fsdata->clust_size,
775 remaining_sects);
776 } else {
777 sect = clust_to_sect(itr->fsdata, itr->next_clust);
778 read_size = itr->fsdata->clust_size;
779 }
Rob Clarkc6e3baa2017-09-09 13:15:53 -0400780
Anssi Hannula9b183582019-02-27 12:55:57 +0200781 debug("FAT read(sect=%d), clust_size=%d, read_size=%u, DIRENTSPERBLOCK=%zd\n",
782 sect, itr->fsdata->clust_size, read_size, DIRENTSPERBLOCK);
Rob Clarkc6e3baa2017-09-09 13:15:53 -0400783
784 /*
785 * NOTE: do_fat_read_at() had complicated logic to deal w/
786 * vfat names that span multiple clusters in the fat16 case,
787 * which get_dentfromdir() probably also needed (and was
788 * missing). And not entirely sure what fat32 didn't have
789 * the same issue.. We solve that by only caring about one
790 * dent at a time and iteratively constructing the vfat long
791 * name.
792 */
Anssi Hannula9b183582019-02-27 12:55:57 +0200793 ret = disk_read(sect, read_size, itr->block);
Rob Clarkc6e3baa2017-09-09 13:15:53 -0400794 if (ret < 0) {
795 debug("Error: reading block\n");
796 return NULL;
797 }
798
Anssi Hannula9b183582019-02-27 12:55:57 +0200799 *nbytes = read_size * itr->fsdata->sect_size;
AKASHI Takahirof528c142018-09-11 15:59:00 +0900800 itr->clust = itr->next_clust;
Rob Clarkc6e3baa2017-09-09 13:15:53 -0400801 if (itr->is_root && itr->fsdata->fatsize != 32) {
AKASHI Takahirof528c142018-09-11 15:59:00 +0900802 itr->next_clust++;
Anssi Hannula9b183582019-02-27 12:55:57 +0200803 if (itr->next_clust * itr->fsdata->clust_size >=
Rob Clarkc6e3baa2017-09-09 13:15:53 -0400804 itr->fsdata->rootdir_size) {
AKASHI Takahirof528c142018-09-11 15:59:00 +0900805 debug("nextclust: 0x%x\n", itr->next_clust);
Rob Clarkc6e3baa2017-09-09 13:15:53 -0400806 itr->last_cluster = 1;
807 }
808 } else {
AKASHI Takahirof528c142018-09-11 15:59:00 +0900809 itr->next_clust = get_fatent(itr->fsdata, itr->next_clust);
810 if (CHECK_CLUST(itr->next_clust, itr->fsdata->fatsize)) {
811 debug("nextclust: 0x%x\n", itr->next_clust);
Rob Clarkc6e3baa2017-09-09 13:15:53 -0400812 itr->last_cluster = 1;
813 }
814 }
815
816 return itr->block;
817}
818
819static dir_entry *next_dent(fat_itr *itr)
820{
821 if (itr->remaining == 0) {
Anssi Hannula9b183582019-02-27 12:55:57 +0200822 unsigned nbytes;
823 struct dir_entry *dent = next_cluster(itr, &nbytes);
Rob Clarkc6e3baa2017-09-09 13:15:53 -0400824
825 /* have we reached the last cluster? */
AKASHI Takahirof528c142018-09-11 15:59:00 +0900826 if (!dent) {
827 /* a sign for no more entries left */
828 itr->dent = NULL;
Rob Clarkc6e3baa2017-09-09 13:15:53 -0400829 return NULL;
AKASHI Takahirof528c142018-09-11 15:59:00 +0900830 }
Rob Clarkc6e3baa2017-09-09 13:15:53 -0400831
832 itr->remaining = nbytes / sizeof(dir_entry) - 1;
833 itr->dent = dent;
834 } else {
835 itr->remaining--;
836 itr->dent++;
837 }
838
839 /* have we reached the last valid entry? */
840 if (itr->dent->name[0] == 0)
841 return NULL;
842
843 return itr->dent;
844}
845
846static dir_entry *extract_vfat_name(fat_itr *itr)
847{
848 struct dir_entry *dent = itr->dent;
849 int seqn = itr->dent->name[0] & ~LAST_LONG_ENTRY_MASK;
850 u8 chksum, alias_checksum = ((dir_slot *)dent)->alias_checksum;
851 int n = 0;
852
853 while (seqn--) {
854 char buf[13];
855 int idx = 0;
856
857 slot2str((dir_slot *)dent, buf, &idx);
858
Patrick Wildt8b021bb2018-11-26 15:58:13 +0100859 if (n + idx >= sizeof(itr->l_name))
860 return NULL;
861
Rob Clarkc6e3baa2017-09-09 13:15:53 -0400862 /* shift accumulated long-name up and copy new part in: */
863 memmove(itr->l_name + idx, itr->l_name, n);
864 memcpy(itr->l_name, buf, idx);
865 n += idx;
866
867 dent = next_dent(itr);
868 if (!dent)
869 return NULL;
870 }
871
AKASHI Takahiro39606d42019-11-26 17:29:31 +0900872 /*
873 * We are now at the short file name entry.
874 * If it is marked as deleted, just skip it.
875 */
876 if (dent->name[0] == DELETED_FLAG ||
877 dent->name[0] == aRING)
878 return NULL;
879
Rob Clarkc6e3baa2017-09-09 13:15:53 -0400880 itr->l_name[n] = '\0';
881
882 chksum = mkcksum(dent->name, dent->ext);
883
884 /* checksum mismatch could mean deleted file, etc.. skip it: */
885 if (chksum != alias_checksum) {
886 debug("** chksum=%x, alias_checksum=%x, l_name=%s, s_name=%8s.%3s\n",
887 chksum, alias_checksum, itr->l_name, dent->name, dent->ext);
888 return NULL;
889 }
890
891 return dent;
892}
893
894/**
895 * fat_itr_next() - step to the next entry in a directory
896 *
897 * Must be called once on a new iterator before the cursor is valid.
898 *
899 * @itr: the iterator to iterate
900 * @return boolean, 1 if success or 0 if no more entries in the
901 * current directory
902 */
903static int fat_itr_next(fat_itr *itr)
904{
905 dir_entry *dent;
906
907 itr->name = NULL;
908
AKASHI Takahiro39606d42019-11-26 17:29:31 +0900909 /*
910 * One logical directory entry consist of following slots:
911 * name[0] Attributes
912 * dent[N - N]: LFN[N - 1] N|0x40 ATTR_VFAT
913 * ...
914 * dent[N - 2]: LFN[1] 2 ATTR_VFAT
915 * dent[N - 1]: LFN[0] 1 ATTR_VFAT
916 * dent[N]: SFN ATTR_ARCH
917 */
918
Rob Clarkc6e3baa2017-09-09 13:15:53 -0400919 while (1) {
920 dent = next_dent(itr);
921 if (!dent)
922 return 0;
923
924 if (dent->name[0] == DELETED_FLAG ||
925 dent->name[0] == aRING)
926 continue;
927
928 if (dent->attr & ATTR_VOLUME) {
Tuomas Tynkkynen8bad6cb2018-01-05 02:45:21 +0200929 if ((dent->attr & ATTR_VFAT) == ATTR_VFAT &&
Rob Clarkc6e3baa2017-09-09 13:15:53 -0400930 (dent->name[0] & LAST_LONG_ENTRY_MASK)) {
AKASHI Takahiro39606d42019-11-26 17:29:31 +0900931 /* long file name */
Rob Clarkc6e3baa2017-09-09 13:15:53 -0400932 dent = extract_vfat_name(itr);
AKASHI Takahiro39606d42019-11-26 17:29:31 +0900933 /*
934 * If succeeded, dent has a valid short file
935 * name entry for the current entry.
936 * If failed, itr points to a current bogus
937 * entry. So after fetching a next one,
938 * it may have a short file name entry
939 * for this bogus entry so that we can still
940 * check for a short name.
941 */
Rob Clarkc6e3baa2017-09-09 13:15:53 -0400942 if (!dent)
943 continue;
944 itr->name = itr->l_name;
945 break;
946 } else {
947 /* Volume label or VFAT entry, skip */
948 continue;
949 }
AKASHI Takahiro39606d42019-11-26 17:29:31 +0900950 } else if (!(dent->attr & ATTR_ARCH) &&
951 !(dent->attr & ATTR_DIR))
952 continue;
Rob Clarkc6e3baa2017-09-09 13:15:53 -0400953
AKASHI Takahiro39606d42019-11-26 17:29:31 +0900954 /* short file name */
Rob Clarkc6e3baa2017-09-09 13:15:53 -0400955 break;
956 }
957
958 get_name(dent, itr->s_name);
959 if (!itr->name)
960 itr->name = itr->s_name;
961
962 return 1;
963}
964
965/**
966 * fat_itr_isdir() - is current cursor position pointing to a directory
967 *
968 * @itr: the iterator
969 * @return true if cursor is at a directory
970 */
971static int fat_itr_isdir(fat_itr *itr)
972{
973 return !!(itr->dent->attr & ATTR_DIR);
974}
975
976/*
977 * Helpers:
978 */
979
980#define TYPE_FILE 0x1
981#define TYPE_DIR 0x2
982#define TYPE_ANY (TYPE_FILE | TYPE_DIR)
983
984/**
985 * fat_itr_resolve() - traverse directory structure to resolve the
986 * requested path.
987 *
988 * Traverse directory structure to the requested path. If the specified
989 * path is to a directory, this will descend into the directory and
990 * leave it iterator at the start of the directory. If the path is to a
991 * file, it will leave the iterator in the parent directory with current
992 * cursor at file's entry in the directory.
993 *
994 * @itr: iterator initialized to root
995 * @path: the requested path
996 * @type: bitmask of allowable file types
997 * @return 0 on success or -errno
998 */
999static int fat_itr_resolve(fat_itr *itr, const char *path, unsigned type)
1000{
1001 const char *next;
1002
1003 /* chomp any extra leading slashes: */
1004 while (path[0] && ISDIRDELIM(path[0]))
1005 path++;
1006
1007 /* are we at the end? */
1008 if (strlen(path) == 0) {
1009 if (!(type & TYPE_DIR))
1010 return -ENOENT;
1011 return 0;
1012 }
1013
1014 /* find length of next path entry: */
1015 next = path;
1016 while (next[0] && !ISDIRDELIM(next[0]))
1017 next++;
1018
AKASHI Takahirob94b6be2018-09-11 15:58:59 +09001019 if (itr->is_root) {
1020 /* root dir doesn't have "." nor ".." */
1021 if ((((next - path) == 1) && !strncmp(path, ".", 1)) ||
1022 (((next - path) == 2) && !strncmp(path, "..", 2))) {
1023 /* point back to itself */
1024 itr->clust = itr->fsdata->root_cluster;
AKASHI Takahirof528c142018-09-11 15:59:00 +09001025 itr->next_clust = itr->fsdata->root_cluster;
AKASHI Takahirob94b6be2018-09-11 15:58:59 +09001026 itr->dent = NULL;
1027 itr->remaining = 0;
1028 itr->last_cluster = 0;
1029
1030 if (next[0] == 0) {
1031 if (type & TYPE_DIR)
1032 return 0;
1033 else
1034 return -ENOENT;
1035 }
1036
1037 return fat_itr_resolve(itr, next, type);
1038 }
1039 }
1040
Rob Clarkc6e3baa2017-09-09 13:15:53 -04001041 while (fat_itr_next(itr)) {
1042 int match = 0;
1043 unsigned n = max(strlen(itr->name), (size_t)(next - path));
1044
1045 /* check both long and short name: */
1046 if (!strncasecmp(path, itr->name, n))
1047 match = 1;
1048 else if (itr->name != itr->s_name &&
1049 !strncasecmp(path, itr->s_name, n))
1050 match = 1;
1051
1052 if (!match)
1053 continue;
1054
1055 if (fat_itr_isdir(itr)) {
1056 /* recurse into directory: */
1057 fat_itr_child(itr, itr);
1058 return fat_itr_resolve(itr, next, type);
1059 } else if (next[0]) {
1060 /*
1061 * If next is not empty then we have a case
1062 * like: /path/to/realfile/nonsense
1063 */
1064 debug("bad trailing path: %s\n", next);
1065 return -ENOENT;
1066 } else if (!(type & TYPE_FILE)) {
1067 return -ENOTDIR;
1068 } else {
1069 return 0;
1070 }
1071 }
1072
1073 return -ENOENT;
1074}
1075
Benoît Thébaudeau9795e072012-07-20 15:18:44 +02001076int file_fat_detectfs(void)
wdenk71f95112003-06-15 22:40:42 +00001077{
Wolfgang Denk7385c282010-07-19 11:37:00 +02001078 boot_sector bs;
1079 volume_info volinfo;
1080 int fatsize;
1081 char vol_label[12];
wdenk71f95112003-06-15 22:40:42 +00001082
Wolfgang Denk7385c282010-07-19 11:37:00 +02001083 if (cur_dev == NULL) {
wdenk7205e402003-09-10 22:30:53 +00001084 printf("No current device\n");
1085 return 1;
1086 }
Wolfgang Denk7385c282010-07-19 11:37:00 +02001087
Simon Glassfc843a02017-05-17 03:25:30 -06001088#if defined(CONFIG_IDE) || \
Simon Glass10e40d52017-06-14 21:28:25 -06001089 defined(CONFIG_SATA) || \
Simon Glassc649e3c2016-05-01 11:36:02 -06001090 defined(CONFIG_SCSI) || \
Jon Loeligerdd60d122007-07-09 17:56:50 -05001091 defined(CONFIG_CMD_USB) || \
Andy Fleming21f6f962008-01-16 13:06:59 -06001092 defined(CONFIG_MMC)
wdenk7205e402003-09-10 22:30:53 +00001093 printf("Interface: ");
Wolfgang Denk7385c282010-07-19 11:37:00 +02001094 switch (cur_dev->if_type) {
1095 case IF_TYPE_IDE:
1096 printf("IDE");
1097 break;
1098 case IF_TYPE_SATA:
1099 printf("SATA");
1100 break;
1101 case IF_TYPE_SCSI:
1102 printf("SCSI");
1103 break;
1104 case IF_TYPE_ATAPI:
1105 printf("ATAPI");
1106 break;
1107 case IF_TYPE_USB:
1108 printf("USB");
1109 break;
1110 case IF_TYPE_DOC:
1111 printf("DOC");
1112 break;
1113 case IF_TYPE_MMC:
1114 printf("MMC");
1115 break;
1116 default:
1117 printf("Unknown");
wdenk7205e402003-09-10 22:30:53 +00001118 }
Wolfgang Denk7385c282010-07-19 11:37:00 +02001119
Simon Glassbcce53d2016-02-29 15:25:51 -07001120 printf("\n Device %d: ", cur_dev->devnum);
wdenk7205e402003-09-10 22:30:53 +00001121 dev_print(cur_dev);
1122#endif
Wolfgang Denk7385c282010-07-19 11:37:00 +02001123
1124 if (read_bootsectandvi(&bs, &volinfo, &fatsize)) {
wdenk7205e402003-09-10 22:30:53 +00001125 printf("\nNo valid FAT fs found\n");
1126 return 1;
1127 }
Wolfgang Denk7385c282010-07-19 11:37:00 +02001128
1129 memcpy(vol_label, volinfo.volume_label, 11);
wdenk7205e402003-09-10 22:30:53 +00001130 vol_label[11] = '\0';
Wolfgang Denk7385c282010-07-19 11:37:00 +02001131 volinfo.fs_type[5] = '\0';
1132
Stephen Warren461f86e2012-10-17 06:44:57 +00001133 printf("Filesystem: %s \"%s\"\n", volinfo.fs_type, vol_label);
Wolfgang Denk7385c282010-07-19 11:37:00 +02001134
wdenk7205e402003-09-10 22:30:53 +00001135 return 0;
wdenk71f95112003-06-15 22:40:42 +00001136}
1137
Stephen Warrenb7b5f312014-02-03 13:21:10 -07001138int fat_exists(const char *filename)
1139{
Rob Clark8eafae22017-09-09 13:15:54 -04001140 fsdata fsdata;
Tom Rini24600982017-09-22 07:37:43 -04001141 fat_itr *itr;
Suriyan Ramasami1ad0b982014-11-17 14:39:35 -08001142 int ret;
Suriyan Ramasami1ad0b982014-11-17 14:39:35 -08001143
Tuomas Tynkkynen09fa9642017-10-01 02:25:21 +03001144 itr = malloc_cache_aligned(sizeof(fat_itr));
Tuomas Tynkkynenaf609e32017-10-01 02:25:22 +03001145 if (!itr)
1146 return 0;
Rob Clark8eafae22017-09-09 13:15:54 -04001147 ret = fat_itr_root(itr, &fsdata);
1148 if (ret)
Tuomas Tynkkynenaf609e32017-10-01 02:25:22 +03001149 goto out;
Rob Clark8eafae22017-09-09 13:15:54 -04001150
1151 ret = fat_itr_resolve(itr, filename, TYPE_ANY);
Rob Clark725ffdb2017-09-12 16:40:01 -04001152 free(fsdata.fatbuf);
Tuomas Tynkkynenaf609e32017-10-01 02:25:22 +03001153out:
Tom Rini24600982017-09-22 07:37:43 -04001154 free(itr);
Suriyan Ramasami1ad0b982014-11-17 14:39:35 -08001155 return ret == 0;
Stephen Warrenb7b5f312014-02-03 13:21:10 -07001156}
1157
Suriyan Ramasamid455d872014-11-17 14:39:38 -08001158int fat_size(const char *filename, loff_t *size)
Stephen Warrencf659812014-06-11 12:47:26 -06001159{
Rob Clark8eafae22017-09-09 13:15:54 -04001160 fsdata fsdata;
Tom Rini24600982017-09-22 07:37:43 -04001161 fat_itr *itr;
Rob Clark8eafae22017-09-09 13:15:54 -04001162 int ret;
1163
Tuomas Tynkkynen09fa9642017-10-01 02:25:21 +03001164 itr = malloc_cache_aligned(sizeof(fat_itr));
Tuomas Tynkkynenaf609e32017-10-01 02:25:22 +03001165 if (!itr)
1166 return -ENOMEM;
Rob Clark8eafae22017-09-09 13:15:54 -04001167 ret = fat_itr_root(itr, &fsdata);
1168 if (ret)
Tuomas Tynkkynenaf609e32017-10-01 02:25:22 +03001169 goto out_free_itr;
Rob Clark8eafae22017-09-09 13:15:54 -04001170
1171 ret = fat_itr_resolve(itr, filename, TYPE_FILE);
1172 if (ret) {
1173 /*
1174 * Directories don't have size, but fs_size() is not
1175 * expected to fail if passed a directory path:
1176 */
Rob Clark725ffdb2017-09-12 16:40:01 -04001177 free(fsdata.fatbuf);
Andrew F. Davisd0cd30e2019-05-16 09:34:31 -05001178 ret = fat_itr_root(itr, &fsdata);
1179 if (ret)
1180 goto out_free_itr;
1181 ret = fat_itr_resolve(itr, filename, TYPE_DIR);
1182 if (!ret)
Rob Clark8eafae22017-09-09 13:15:54 -04001183 *size = 0;
Tuomas Tynkkynenaf609e32017-10-01 02:25:22 +03001184 goto out_free_both;
Rob Clark8eafae22017-09-09 13:15:54 -04001185 }
1186
1187 *size = FAT2CPU32(itr->dent->size);
Tuomas Tynkkynenaf609e32017-10-01 02:25:22 +03001188out_free_both:
Rob Clark725ffdb2017-09-12 16:40:01 -04001189 free(fsdata.fatbuf);
Tuomas Tynkkynenaf609e32017-10-01 02:25:22 +03001190out_free_itr:
Tom Rini24600982017-09-22 07:37:43 -04001191 free(itr);
Rob Clark725ffdb2017-09-12 16:40:01 -04001192 return ret;
Stephen Warrencf659812014-06-11 12:47:26 -06001193}
1194
Suriyan Ramasami1ad0b982014-11-17 14:39:35 -08001195int file_fat_read_at(const char *filename, loff_t pos, void *buffer,
1196 loff_t maxsize, loff_t *actread)
wdenk71f95112003-06-15 22:40:42 +00001197{
Rob Clark8eafae22017-09-09 13:15:54 -04001198 fsdata fsdata;
Tom Rini24600982017-09-22 07:37:43 -04001199 fat_itr *itr;
Rob Clark8eafae22017-09-09 13:15:54 -04001200 int ret;
1201
Tuomas Tynkkynen09fa9642017-10-01 02:25:21 +03001202 itr = malloc_cache_aligned(sizeof(fat_itr));
Tuomas Tynkkynenaf609e32017-10-01 02:25:22 +03001203 if (!itr)
1204 return -ENOMEM;
Rob Clark8eafae22017-09-09 13:15:54 -04001205 ret = fat_itr_root(itr, &fsdata);
1206 if (ret)
Tuomas Tynkkynenaf609e32017-10-01 02:25:22 +03001207 goto out_free_itr;
Rob Clark8eafae22017-09-09 13:15:54 -04001208
1209 ret = fat_itr_resolve(itr, filename, TYPE_FILE);
1210 if (ret)
Tuomas Tynkkynenaf609e32017-10-01 02:25:22 +03001211 goto out_free_both;
Rob Clark8eafae22017-09-09 13:15:54 -04001212
Andreas Dannenberg287c04e2018-08-13 21:35:15 -05001213 debug("reading %s at pos %llu\n", filename, pos);
Tien Fong Cheee48485f2019-02-11 14:56:20 +08001214
1215 /* For saving default max clustersize memory allocated to malloc pool */
1216 dir_entry *dentptr = itr->dent;
1217
Tien Fong Cheee48485f2019-02-11 14:56:20 +08001218 ret = get_contents(&fsdata, dentptr, pos, buffer, maxsize, actread);
Rob Clark725ffdb2017-09-12 16:40:01 -04001219
Tuomas Tynkkynenaf609e32017-10-01 02:25:22 +03001220out_free_both:
Rob Clark725ffdb2017-09-12 16:40:01 -04001221 free(fsdata.fatbuf);
Tuomas Tynkkynenaf609e32017-10-01 02:25:22 +03001222out_free_itr:
Tom Rini24600982017-09-22 07:37:43 -04001223 free(itr);
Rob Clark725ffdb2017-09-12 16:40:01 -04001224 return ret;
Benoît Thébaudeau1170e632012-09-18 08:14:56 +00001225}
1226
Suriyan Ramasami1ad0b982014-11-17 14:39:35 -08001227int file_fat_read(const char *filename, void *buffer, int maxsize)
Benoît Thébaudeau1170e632012-09-18 08:14:56 +00001228{
Suriyan Ramasami1ad0b982014-11-17 14:39:35 -08001229 loff_t actread;
1230 int ret;
1231
1232 ret = file_fat_read_at(filename, 0, buffer, maxsize, &actread);
1233 if (ret)
1234 return ret;
1235 else
1236 return actread;
wdenk71f95112003-06-15 22:40:42 +00001237}
Simon Glasse6d52412012-12-26 09:53:33 +00001238
Suriyan Ramasamid455d872014-11-17 14:39:38 -08001239int fat_read_file(const char *filename, void *buf, loff_t offset, loff_t len,
1240 loff_t *actread)
Simon Glasse6d52412012-12-26 09:53:33 +00001241{
Suriyan Ramasami1ad0b982014-11-17 14:39:35 -08001242 int ret;
Simon Glasse6d52412012-12-26 09:53:33 +00001243
Suriyan Ramasamid455d872014-11-17 14:39:38 -08001244 ret = file_fat_read_at(filename, offset, buf, len, actread);
1245 if (ret)
Simon Glasse6d52412012-12-26 09:53:33 +00001246 printf("** Unable to read file %s **\n", filename);
Simon Glasse6d52412012-12-26 09:53:33 +00001247
Suriyan Ramasamid455d872014-11-17 14:39:38 -08001248 return ret;
Simon Glasse6d52412012-12-26 09:53:33 +00001249}
1250
Rob Clark1f403662017-09-09 13:15:56 -04001251typedef struct {
1252 struct fs_dir_stream parent;
1253 struct fs_dirent dirent;
1254 fsdata fsdata;
1255 fat_itr itr;
1256} fat_dir;
1257
1258int fat_opendir(const char *filename, struct fs_dir_stream **dirsp)
1259{
Neil Armstrong34dd8532017-11-24 09:54:41 +01001260 fat_dir *dir;
Rob Clark1f403662017-09-09 13:15:56 -04001261 int ret;
1262
Neil Armstrong34dd8532017-11-24 09:54:41 +01001263 dir = malloc_cache_aligned(sizeof(*dir));
Rob Clark1f403662017-09-09 13:15:56 -04001264 if (!dir)
1265 return -ENOMEM;
Neil Armstrong34dd8532017-11-24 09:54:41 +01001266 memset(dir, 0, sizeof(*dir));
Rob Clark1f403662017-09-09 13:15:56 -04001267
1268 ret = fat_itr_root(&dir->itr, &dir->fsdata);
1269 if (ret)
Tuomas Tynkkynenaf609e32017-10-01 02:25:22 +03001270 goto fail_free_dir;
Rob Clark1f403662017-09-09 13:15:56 -04001271
1272 ret = fat_itr_resolve(&dir->itr, filename, TYPE_DIR);
1273 if (ret)
Tuomas Tynkkynenaf609e32017-10-01 02:25:22 +03001274 goto fail_free_both;
Rob Clark1f403662017-09-09 13:15:56 -04001275
1276 *dirsp = (struct fs_dir_stream *)dir;
1277 return 0;
1278
Tuomas Tynkkynenaf609e32017-10-01 02:25:22 +03001279fail_free_both:
Rob Clark725ffdb2017-09-12 16:40:01 -04001280 free(dir->fsdata.fatbuf);
Tuomas Tynkkynenaf609e32017-10-01 02:25:22 +03001281fail_free_dir:
Rob Clark1f403662017-09-09 13:15:56 -04001282 free(dir);
1283 return ret;
1284}
1285
1286int fat_readdir(struct fs_dir_stream *dirs, struct fs_dirent **dentp)
1287{
1288 fat_dir *dir = (fat_dir *)dirs;
1289 struct fs_dirent *dent = &dir->dirent;
1290
1291 if (!fat_itr_next(&dir->itr))
1292 return -ENOENT;
1293
1294 memset(dent, 0, sizeof(*dent));
1295 strcpy(dent->name, dir->itr.name);
1296
1297 if (fat_itr_isdir(&dir->itr)) {
1298 dent->type = FS_DT_DIR;
1299 } else {
1300 dent->type = FS_DT_REG;
1301 dent->size = FAT2CPU32(dir->itr.dent->size);
1302 }
1303
1304 *dentp = dent;
1305
1306 return 0;
1307}
1308
1309void fat_closedir(struct fs_dir_stream *dirs)
1310{
1311 fat_dir *dir = (fat_dir *)dirs;
Rob Clark725ffdb2017-09-12 16:40:01 -04001312 free(dir->fsdata.fatbuf);
Rob Clark1f403662017-09-09 13:15:56 -04001313 free(dir);
1314}
1315
Simon Glasse6d52412012-12-26 09:53:33 +00001316void fat_close(void)
1317{
1318}