blob: fb6ba894664268fef9141d2fb620e2640b7a4dbe [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
wdenk7a428cc2003-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
wdenk7a428cc2003-06-15 22:40:42 +00009 */
10
11#include <common.h>
Simon Glass2ee8ada2016-02-29 15:25:52 -070012#include <blk.h>
wdenk7a428cc2003-06-15 22:40:42 +000013#include <config.h>
Sergei Shtylyov5ab3ba72011-08-08 09:38:33 +000014#include <exports.h>
wdenk7a428cc2003-06-15 22:40:42 +000015#include <fat.h>
Rob Clark4174d7f2017-09-09 13:15:56 -040016#include <fs.h>
Simon Glass0f2af882020-05-10 11:40:05 -060017#include <log.h>
wdenk7a428cc2003-06-15 22:40:42 +000018#include <asm/byteorder.h>
wdenk2c9b05d2003-09-10 22:30:53 +000019#include <part.h>
Eric Nelson014705b2012-04-11 04:08:53 +000020#include <malloc.h>
Simon Glass2dd337a2015-09-02 17:24:58 -060021#include <memalign.h>
Simon Glass274e0b02020-05-10 11:39:56 -060022#include <asm/cache.h>
Eric Nelson014705b2012-04-11 04:08:53 +000023#include <linux/compiler.h>
Richard Genoud2e372022012-12-13 00:47:36 +000024#include <linux/ctype.h>
wdenk7a428cc2003-06-15 22:40:42 +000025
wdenk7a428cc2003-06-15 22:40:42 +000026/*
Rob Clarkfd6c6b42017-09-09 13:15:59 -040027 * Convert a string to lowercase. Converts at most 'len' characters,
28 * 'len' may be larger than the length of 'str' if 'str' is NULL
29 * terminated.
wdenk7a428cc2003-06-15 22:40:42 +000030 */
Rob Clarkfd6c6b42017-09-09 13:15:59 -040031static void downcase(char *str, size_t len)
wdenk7a428cc2003-06-15 22:40:42 +000032{
Rob Clarkfd6c6b42017-09-09 13:15:59 -040033 while (*str != '\0' && len--) {
Richard Genoud2e372022012-12-13 00:47:36 +000034 *str = tolower(*str);
wdenk7a428cc2003-06-15 22:40:42 +000035 str++;
36 }
37}
38
Simon Glasse3394752016-02-29 15:25:34 -070039static struct blk_desc *cur_dev;
Simon Glassc1c4a8f2020-05-10 11:39:57 -060040static struct disk_partition cur_part_info;
Wolfgang Denk927b8ce2010-07-19 11:37:00 +020041
Kyle Moffett1b3b4b72011-12-21 07:08:10 +000042#define DOS_BOOT_MAGIC_OFFSET 0x1fe
wdenk2c9b05d2003-09-10 22:30:53 +000043#define DOS_FS_TYPE_OFFSET 0x36
Wolfgang Denk7b2290c2010-07-19 11:36:57 +020044#define DOS_FS32_TYPE_OFFSET 0x52
wdenk7a428cc2003-06-15 22:40:42 +000045
Kyle Moffett1b3b4b72011-12-21 07:08:10 +000046static int disk_read(__u32 block, __u32 nr_blocks, void *buf)
wdenk7a428cc2003-06-15 22:40:42 +000047{
Łukasz Majewskid6f23d82015-09-03 14:21:39 +020048 ulong ret;
49
Simon Glass2ee8ada2016-02-29 15:25:52 -070050 if (!cur_dev)
wdenk2c9b05d2003-09-10 22:30:53 +000051 return -1;
Wolfgang Denk927b8ce2010-07-19 11:37:00 +020052
Simon Glass2ee8ada2016-02-29 15:25:52 -070053 ret = blk_dread(cur_dev, cur_part_info.start + block, nr_blocks, buf);
Łukasz Majewskid6f23d82015-09-03 14:21:39 +020054
Tom Rini240124c2017-08-14 21:02:08 -040055 if (ret != nr_blocks)
Łukasz Majewskid6f23d82015-09-03 14:21:39 +020056 return -1;
57
58 return ret;
wdenk7a428cc2003-06-15 22:40:42 +000059}
60
Simon Glassc1c4a8f2020-05-10 11:39:57 -060061int fat_set_blk_dev(struct blk_desc *dev_desc, struct disk_partition *info)
wdenk7a428cc2003-06-15 22:40:42 +000062{
Eric Nelson014705b2012-04-11 04:08:53 +000063 ALLOC_CACHE_ALIGN_BUFFER(unsigned char, buffer, dev_desc->blksz);
wdenk2c9b05d2003-09-10 22:30:53 +000064
Stephen Warren288904d2012-10-17 06:44:59 +000065 cur_dev = dev_desc;
66 cur_part_info = *info;
Kyle Moffett1b3b4b72011-12-21 07:08:10 +000067
68 /* Make sure it has a valid FAT header */
69 if (disk_read(0, 1, buffer) != 1) {
70 cur_dev = NULL;
71 return -1;
Wolfgang Denke78f2582007-08-07 16:02:13 +020072 }
Kyle Moffett1b3b4b72011-12-21 07:08:10 +000073
74 /* Check if it's actually a DOS volume */
75 if (memcmp(buffer + DOS_BOOT_MAGIC_OFFSET, "\x55\xAA", 2)) {
76 cur_dev = NULL;
77 return -1;
78 }
79
80 /* Check for FAT12/FAT16/FAT32 filesystem */
81 if (!memcmp(buffer + DOS_FS_TYPE_OFFSET, "FAT", 3))
82 return 0;
83 if (!memcmp(buffer + DOS_FS32_TYPE_OFFSET, "FAT32", 5))
84 return 0;
85
86 cur_dev = NULL;
87 return -1;
wdenk7a428cc2003-06-15 22:40:42 +000088}
89
Simon Glasse3394752016-02-29 15:25:34 -070090int fat_register_device(struct blk_desc *dev_desc, int part_no)
Stephen Warren288904d2012-10-17 06:44:59 +000091{
Simon Glassc1c4a8f2020-05-10 11:39:57 -060092 struct disk_partition info;
Stephen Warren288904d2012-10-17 06:44:59 +000093
94 /* First close any currently found FAT filesystem */
95 cur_dev = NULL;
96
97 /* Read the partition table, if present */
Simon Glassb89a8442016-02-29 15:25:48 -070098 if (part_get_info(dev_desc, part_no, &info)) {
Stephen Warren288904d2012-10-17 06:44:59 +000099 if (part_no != 0) {
100 printf("** Partition %d not valid on device %d **\n",
Simon Glass2f26fff2016-02-29 15:25:51 -0700101 part_no, dev_desc->devnum);
Stephen Warren288904d2012-10-17 06:44:59 +0000102 return -1;
103 }
104
105 info.start = 0;
106 info.size = dev_desc->lba;
107 info.blksz = dev_desc->blksz;
108 info.name[0] = 0;
109 info.type[0] = 0;
110 info.bootable = 0;
Patrick Delaunay73287092017-01-27 11:00:42 +0100111#if CONFIG_IS_ENABLED(PARTITION_UUIDS)
Stephen Warren288904d2012-10-17 06:44:59 +0000112 info.uuid[0] = 0;
113#endif
114 }
115
116 return fat_set_blk_dev(dev_desc, &info);
117}
Kyle Moffett1b3b4b72011-12-21 07:08:10 +0000118
wdenk7a428cc2003-06-15 22:40:42 +0000119/*
wdenk7a428cc2003-06-15 22:40:42 +0000120 * Extract zero terminated short name from a directory entry.
121 */
Benoît Thébaudeau0a120372012-07-20 15:18:44 +0200122static void get_name(dir_entry *dirent, char *s_name)
wdenk7a428cc2003-06-15 22:40:42 +0000123{
124 char *ptr;
125
Wolfgang Denk927b8ce2010-07-19 11:37:00 +0200126 memcpy(s_name, dirent->name, 8);
wdenk7a428cc2003-06-15 22:40:42 +0000127 s_name[8] = '\0';
128 ptr = s_name;
129 while (*ptr && *ptr != ' ')
130 ptr++;
Rob Clarkfd6c6b42017-09-09 13:15:59 -0400131 if (dirent->lcase & CASE_LOWER_BASE)
132 downcase(s_name, (unsigned)(ptr - s_name));
wdenk7a428cc2003-06-15 22:40:42 +0000133 if (dirent->ext[0] && dirent->ext[0] != ' ') {
Rob Clarkfd6c6b42017-09-09 13:15:59 -0400134 *ptr++ = '.';
Wolfgang Denk927b8ce2010-07-19 11:37:00 +0200135 memcpy(ptr, dirent->ext, 3);
Rob Clarkfd6c6b42017-09-09 13:15:59 -0400136 if (dirent->lcase & CASE_LOWER_EXT)
137 downcase(ptr, 3);
wdenk7a428cc2003-06-15 22:40:42 +0000138 ptr[3] = '\0';
139 while (*ptr && *ptr != ' ')
140 ptr++;
141 }
142 *ptr = '\0';
143 if (*s_name == DELETED_FLAG)
144 *s_name = '\0';
145 else if (*s_name == aRING)
Remy Bohmer7c8f2ce2008-11-27 22:30:27 +0100146 *s_name = DELETED_FLAG;
wdenk7a428cc2003-06-15 22:40:42 +0000147}
148
Stefan Brüns9f95d812016-12-17 00:27:51 +0100149static int flush_dirty_fat_buffer(fsdata *mydata);
Tien Fong Chee87fda0c2019-01-23 14:20:04 +0800150
151#if !CONFIG_IS_ENABLED(FAT_WRITE)
Stefan Brüns9f95d812016-12-17 00:27:51 +0100152/* Stub for read only operation */
153int flush_dirty_fat_buffer(fsdata *mydata)
154{
155 (void)(mydata);
156 return 0;
157}
158#endif
159
wdenk7a428cc2003-06-15 22:40:42 +0000160/*
161 * Get the entry at index 'entry' in a FAT (12/16/32) table.
162 * On failure 0x00 is returned.
163 */
Benoît Thébaudeau0a120372012-07-20 15:18:44 +0200164static __u32 get_fatent(fsdata *mydata, __u32 entry)
wdenk7a428cc2003-06-15 22:40:42 +0000165{
166 __u32 bufnum;
Stefan Brüns0f3b6972017-01-26 20:22:36 +0000167 __u32 offset, off8;
wdenk7a428cc2003-06-15 22:40:42 +0000168 __u32 ret = 0x00;
169
Stefan Brüns9f95d812016-12-17 00:27:51 +0100170 if (CHECK_CLUST(entry, mydata->fatsize)) {
171 printf("Error: Invalid FAT entry: 0x%08x\n", entry);
172 return ret;
173 }
174
wdenk7a428cc2003-06-15 22:40:42 +0000175 switch (mydata->fatsize) {
176 case 32:
177 bufnum = entry / FAT32BUFSIZE;
178 offset = entry - bufnum * FAT32BUFSIZE;
179 break;
180 case 16:
181 bufnum = entry / FAT16BUFSIZE;
182 offset = entry - bufnum * FAT16BUFSIZE;
183 break;
184 case 12:
185 bufnum = entry / FAT12BUFSIZE;
186 offset = entry - bufnum * FAT12BUFSIZE;
187 break;
188
189 default:
190 /* Unsupported FAT size */
191 return ret;
192 }
193
Stefan Brüns9f95d812016-12-17 00:27:51 +0100194 debug("FAT%d: entry: 0x%08x = %d, offset: 0x%04x = %d\n",
Wolfgang Denk927b8ce2010-07-19 11:37:00 +0200195 mydata->fatsize, entry, entry, offset, offset);
Wolfgang Denka48d0a32010-07-19 11:36:58 +0200196
wdenk7a428cc2003-06-15 22:40:42 +0000197 /* Read a new block of FAT entries into the cache. */
198 if (bufnum != mydata->fatbufnum) {
Sergei Shtylyovd5916532011-08-08 09:39:29 +0000199 __u32 getsize = FATBUFBLOCKS;
wdenk7a428cc2003-06-15 22:40:42 +0000200 __u8 *bufptr = mydata->fatbuf;
201 __u32 fatlength = mydata->fatlength;
202 __u32 startblock = bufnum * FATBUFBLOCKS;
203
Stefan Brüns58bf86f2016-12-17 00:27:50 +0100204 /* Cap length if fatlength is not a multiple of FATBUFBLOCKS */
Benoît Thébaudeau808a5fd2012-07-20 15:19:29 +0200205 if (startblock + getsize > fatlength)
206 getsize = fatlength - startblock;
Sergei Shtylyovd5916532011-08-08 09:39:29 +0000207
wdenk7a428cc2003-06-15 22:40:42 +0000208 startblock += mydata->fat_sect; /* Offset from start of disk */
209
Stefan Brüns9f95d812016-12-17 00:27:51 +0100210 /* Write back the fatbuf to the disk */
211 if (flush_dirty_fat_buffer(mydata) < 0)
212 return -1;
213
wdenk7a428cc2003-06-15 22:40:42 +0000214 if (disk_read(startblock, getsize, bufptr) < 0) {
Wolfgang Denk927b8ce2010-07-19 11:37:00 +0200215 debug("Error reading FAT blocks\n");
wdenk7a428cc2003-06-15 22:40:42 +0000216 return ret;
217 }
218 mydata->fatbufnum = bufnum;
219 }
220
221 /* Get the actual entry from the table */
222 switch (mydata->fatsize) {
223 case 32:
Wolfgang Denk927b8ce2010-07-19 11:37:00 +0200224 ret = FAT2CPU32(((__u32 *) mydata->fatbuf)[offset]);
wdenk7a428cc2003-06-15 22:40:42 +0000225 break;
226 case 16:
Wolfgang Denk927b8ce2010-07-19 11:37:00 +0200227 ret = FAT2CPU16(((__u16 *) mydata->fatbuf)[offset]);
wdenk7a428cc2003-06-15 22:40:42 +0000228 break;
Wolfgang Denk927b8ce2010-07-19 11:37:00 +0200229 case 12:
Stefan Brüns0f3b6972017-01-26 20:22:36 +0000230 off8 = (offset * 3) / 2;
231 /* fatbut + off8 may be unaligned, read in byte granularity */
232 ret = mydata->fatbuf[off8] + (mydata->fatbuf[off8 + 1] << 8);
wdenk7a428cc2003-06-15 22:40:42 +0000233
Stefan Brüns15f40632016-12-17 03:55:10 +0100234 if (offset & 0x1)
235 ret >>= 4;
236 ret &= 0xfff;
wdenk7a428cc2003-06-15 22:40:42 +0000237 }
Stefan Brüns9f95d812016-12-17 00:27:51 +0100238 debug("FAT%d: ret: 0x%08x, entry: 0x%08x, offset: 0x%04x\n",
239 mydata->fatsize, ret, entry, offset);
wdenk7a428cc2003-06-15 22:40:42 +0000240
241 return ret;
242}
243
wdenk7a428cc2003-06-15 22:40:42 +0000244/*
245 * Read at most 'size' bytes from the specified cluster into 'buffer'.
246 * Return 0 on success, -1 otherwise.
247 */
248static int
Benoît Thébaudeau0a120372012-07-20 15:18:44 +0200249get_cluster(fsdata *mydata, __u32 clustnum, __u8 *buffer, unsigned long size)
wdenk7a428cc2003-06-15 22:40:42 +0000250{
Erik Hansen4ea89662011-03-24 10:15:37 +0100251 __u32 idx = 0;
wdenk7a428cc2003-06-15 22:40:42 +0000252 __u32 startsect;
Kyle Moffett83c8a782011-12-20 07:41:13 +0000253 int ret;
wdenk7a428cc2003-06-15 22:40:42 +0000254
255 if (clustnum > 0) {
Rob Clarkc3ab0b82017-09-09 13:16:00 -0400256 startsect = clust_to_sect(mydata, clustnum);
wdenk7a428cc2003-06-15 22:40:42 +0000257 } else {
258 startsect = mydata->rootdir_sect;
259 }
260
Wolfgang Denk927b8ce2010-07-19 11:37:00 +0200261 debug("gc - clustnum: %d, startsect: %d\n", clustnum, startsect);
262
Benoît Thébaudeaue957c072012-07-20 15:21:08 +0200263 if ((unsigned long)buffer & (ARCH_DMA_MINALIGN - 1)) {
Eric Nelson014705b2012-04-11 04:08:53 +0000264 ALLOC_CACHE_ALIGN_BUFFER(__u8, tmpbuf, mydata->sect_size);
Wolfgang Denk927b8ce2010-07-19 11:37:00 +0200265
Heinrich Schuchardtaa9d6ba2018-09-13 19:42:47 +0200266 debug("FAT: Misaligned buffer address (%p)\n", buffer);
Benoît Thébaudeaue957c072012-07-20 15:21:08 +0200267
268 while (size >= mydata->sect_size) {
269 ret = disk_read(startsect++, 1, tmpbuf);
270 if (ret != 1) {
271 debug("Error reading data (got %d)\n", ret);
272 return -1;
273 }
274
275 memcpy(buffer, tmpbuf, mydata->sect_size);
276 buffer += mydata->sect_size;
277 size -= mydata->sect_size;
278 }
279 } else {
Sergei Shtylyov5ab3ba72011-08-08 09:38:33 +0000280 idx = size / mydata->sect_size;
Jason Wessel95bbe152020-06-23 14:36:54 -0700281 if (idx == 0)
282 ret = 0;
283 else
284 ret = disk_read(startsect, idx, buffer);
Benoît Thébaudeaue957c072012-07-20 15:21:08 +0200285 if (ret != idx) {
286 debug("Error reading data (got %d)\n", ret);
287 return -1;
288 }
289 startsect += idx;
290 idx *= mydata->sect_size;
291 buffer += idx;
292 size -= idx;
293 }
294 if (size) {
295 ALLOC_CACHE_ALIGN_BUFFER(__u8, tmpbuf, mydata->sect_size);
296
297 ret = disk_read(startsect, 1, tmpbuf);
Kyle Moffett83c8a782011-12-20 07:41:13 +0000298 if (ret != 1) {
299 debug("Error reading data (got %d)\n", ret);
wdenk2c9b05d2003-09-10 22:30:53 +0000300 return -1;
wdenk7a428cc2003-06-15 22:40:42 +0000301 }
wdenk2c9b05d2003-09-10 22:30:53 +0000302
Benoît Thébaudeaue957c072012-07-20 15:21:08 +0200303 memcpy(buffer, tmpbuf, size);
wdenk7a428cc2003-06-15 22:40:42 +0000304 }
305
306 return 0;
307}
308
Heinrich Schuchardtc1a159c2019-09-12 19:19:29 +0200309/**
310 * get_contents() - read from file
311 *
Benoît Thébaudeau5295aa82012-09-18 08:14:56 +0000312 * Read at most 'maxsize' bytes from 'pos' in the file associated with 'dentptr'
Heinrich Schuchardtc1a159c2019-09-12 19:19:29 +0200313 * into 'buffer'. Update the number of bytes read in *gotsize or return -1 on
314 * fatal errors.
315 *
316 * @mydata: file system description
317 * @dentprt: directory entry pointer
318 * @pos: position from where to read
319 * @buffer: buffer into which to read
320 * @maxsize: maximum number of bytes to read
321 * @gotsize: number of bytes actually read
322 * Return: -1 on error, otherwise 0
wdenk7a428cc2003-06-15 22:40:42 +0000323 */
Suriyan Ramasami441c2232014-11-17 14:39:35 -0800324static int get_contents(fsdata *mydata, dir_entry *dentptr, loff_t pos,
325 __u8 *buffer, loff_t maxsize, loff_t *gotsize)
wdenk7a428cc2003-06-15 22:40:42 +0000326{
Suriyan Ramasami441c2232014-11-17 14:39:35 -0800327 loff_t filesize = FAT2CPU32(dentptr->size);
Sergei Shtylyov5ab3ba72011-08-08 09:38:33 +0000328 unsigned int bytesperclust = mydata->clust_size * mydata->sect_size;
wdenk7a428cc2003-06-15 22:40:42 +0000329 __u32 curclust = START(dentptr);
wdenk2c9b05d2003-09-10 22:30:53 +0000330 __u32 endclust, newclust;
Suriyan Ramasami441c2232014-11-17 14:39:35 -0800331 loff_t actsize;
wdenk7a428cc2003-06-15 22:40:42 +0000332
Suriyan Ramasami441c2232014-11-17 14:39:35 -0800333 *gotsize = 0;
334 debug("Filesize: %llu bytes\n", filesize);
wdenk7a428cc2003-06-15 22:40:42 +0000335
Benoît Thébaudeau5295aa82012-09-18 08:14:56 +0000336 if (pos >= filesize) {
Suriyan Ramasami441c2232014-11-17 14:39:35 -0800337 debug("Read position past EOF: %llu\n", pos);
338 return 0;
Benoît Thébaudeau5295aa82012-09-18 08:14:56 +0000339 }
340
341 if (maxsize > 0 && filesize > pos + maxsize)
342 filesize = pos + maxsize;
wdenk7a428cc2003-06-15 22:40:42 +0000343
Suriyan Ramasami441c2232014-11-17 14:39:35 -0800344 debug("%llu bytes\n", filesize);
wdenk7a428cc2003-06-15 22:40:42 +0000345
Wolfgang Denk927b8ce2010-07-19 11:37:00 +0200346 actsize = bytesperclust;
Benoît Thébaudeau5295aa82012-09-18 08:14:56 +0000347
348 /* go to cluster at pos */
349 while (actsize <= pos) {
350 curclust = get_fatent(mydata, curclust);
351 if (CHECK_CLUST(curclust, mydata->fatsize)) {
352 debug("curclust: 0x%x\n", curclust);
Heinrich Schuchardtc1a159c2019-09-12 19:19:29 +0200353 printf("Invalid FAT entry\n");
354 return -1;
Benoît Thébaudeau5295aa82012-09-18 08:14:56 +0000355 }
356 actsize += bytesperclust;
357 }
358
359 /* actsize > pos */
360 actsize -= bytesperclust;
361 filesize -= actsize;
362 pos -= actsize;
363
364 /* align to beginning of next cluster if any */
365 if (pos) {
Tien Fong Cheef6764f22019-02-11 14:56:19 +0800366 __u8 *tmp_buffer;
367
Suriyan Ramasami441c2232014-11-17 14:39:35 -0800368 actsize = min(filesize, (loff_t)bytesperclust);
Tien Fong Cheef6764f22019-02-11 14:56:19 +0800369 tmp_buffer = malloc_cache_aligned(actsize);
370 if (!tmp_buffer) {
371 debug("Error: allocating buffer\n");
Heinrich Schuchardtd37d47c2019-09-12 19:19:30 +0200372 return -1;
Tien Fong Cheef6764f22019-02-11 14:56:19 +0800373 }
374
375 if (get_cluster(mydata, curclust, tmp_buffer, actsize) != 0) {
Benoît Thébaudeau5295aa82012-09-18 08:14:56 +0000376 printf("Error reading cluster\n");
Tien Fong Cheef6764f22019-02-11 14:56:19 +0800377 free(tmp_buffer);
Benoît Thébaudeau5295aa82012-09-18 08:14:56 +0000378 return -1;
379 }
380 filesize -= actsize;
381 actsize -= pos;
Tien Fong Cheef6764f22019-02-11 14:56:19 +0800382 memcpy(buffer, tmp_buffer + pos, actsize);
383 free(tmp_buffer);
Suriyan Ramasami441c2232014-11-17 14:39:35 -0800384 *gotsize += actsize;
Benoît Thébaudeau5295aa82012-09-18 08:14:56 +0000385 if (!filesize)
Suriyan Ramasami441c2232014-11-17 14:39:35 -0800386 return 0;
Benoît Thébaudeau5295aa82012-09-18 08:14:56 +0000387 buffer += actsize;
388
389 curclust = get_fatent(mydata, curclust);
390 if (CHECK_CLUST(curclust, mydata->fatsize)) {
391 debug("curclust: 0x%x\n", curclust);
Heinrich Schuchardtc1a159c2019-09-12 19:19:29 +0200392 printf("Invalid FAT entry\n");
393 return -1;
Benoît Thébaudeau5295aa82012-09-18 08:14:56 +0000394 }
395 }
396
397 actsize = bytesperclust;
Wolfgang Denk927b8ce2010-07-19 11:37:00 +0200398 endclust = curclust;
399
wdenk7a428cc2003-06-15 22:40:42 +0000400 do {
wdenk2c9b05d2003-09-10 22:30:53 +0000401 /* search for consecutive clusters */
Wolfgang Denk927b8ce2010-07-19 11:37:00 +0200402 while (actsize < filesize) {
wdenk2c9b05d2003-09-10 22:30:53 +0000403 newclust = get_fatent(mydata, endclust);
Wolfgang Denk927b8ce2010-07-19 11:37:00 +0200404 if ((newclust - 1) != endclust)
wdenk2c9b05d2003-09-10 22:30:53 +0000405 goto getit;
michael2c4d2982008-03-02 23:33:46 +0100406 if (CHECK_CLUST(newclust, mydata->fatsize)) {
Wolfgang Denk927b8ce2010-07-19 11:37:00 +0200407 debug("curclust: 0x%x\n", newclust);
Heinrich Schuchardtc1a159c2019-09-12 19:19:29 +0200408 printf("Invalid FAT entry\n");
409 return -1;
wdenk2c9b05d2003-09-10 22:30:53 +0000410 }
Wolfgang Denk927b8ce2010-07-19 11:37:00 +0200411 endclust = newclust;
412 actsize += bytesperclust;
wdenk2c9b05d2003-09-10 22:30:53 +0000413 }
Wolfgang Denk927b8ce2010-07-19 11:37:00 +0200414
wdenk2c9b05d2003-09-10 22:30:53 +0000415 /* get remaining bytes */
Wolfgang Denk927b8ce2010-07-19 11:37:00 +0200416 actsize = filesize;
Benoît Thébaudeau01938d82012-07-20 15:21:37 +0200417 if (get_cluster(mydata, curclust, buffer, (int)actsize) != 0) {
Wolfgang Denk927b8ce2010-07-19 11:37:00 +0200418 printf("Error reading cluster\n");
wdenk2c9b05d2003-09-10 22:30:53 +0000419 return -1;
420 }
Suriyan Ramasami441c2232014-11-17 14:39:35 -0800421 *gotsize += actsize;
422 return 0;
wdenk2c9b05d2003-09-10 22:30:53 +0000423getit:
424 if (get_cluster(mydata, curclust, buffer, (int)actsize) != 0) {
Wolfgang Denk927b8ce2010-07-19 11:37:00 +0200425 printf("Error reading cluster\n");
wdenk2c9b05d2003-09-10 22:30:53 +0000426 return -1;
427 }
Suriyan Ramasami441c2232014-11-17 14:39:35 -0800428 *gotsize += (int)actsize;
wdenk2c9b05d2003-09-10 22:30:53 +0000429 filesize -= actsize;
430 buffer += actsize;
Wolfgang Denk927b8ce2010-07-19 11:37:00 +0200431
wdenk2c9b05d2003-09-10 22:30:53 +0000432 curclust = get_fatent(mydata, endclust);
michael2c4d2982008-03-02 23:33:46 +0100433 if (CHECK_CLUST(curclust, mydata->fatsize)) {
Wolfgang Denk927b8ce2010-07-19 11:37:00 +0200434 debug("curclust: 0x%x\n", curclust);
435 printf("Invalid FAT entry\n");
Heinrich Schuchardtc1a159c2019-09-12 19:19:29 +0200436 return -1;
wdenk7a428cc2003-06-15 22:40:42 +0000437 }
Wolfgang Denk927b8ce2010-07-19 11:37:00 +0200438 actsize = bytesperclust;
439 endclust = curclust;
wdenk7a428cc2003-06-15 22:40:42 +0000440 } while (1);
441}
442
wdenk7a428cc2003-06-15 22:40:42 +0000443/*
444 * Extract the file name information from 'slotptr' into 'l_name',
445 * starting at l_name[*idx].
446 * Return 1 if terminator (zero byte) is found, 0 otherwise.
447 */
Benoît Thébaudeau0a120372012-07-20 15:18:44 +0200448static int slot2str(dir_slot *slotptr, char *l_name, int *idx)
wdenk7a428cc2003-06-15 22:40:42 +0000449{
450 int j;
451
452 for (j = 0; j <= 8; j += 2) {
453 l_name[*idx] = slotptr->name0_4[j];
Wolfgang Denk927b8ce2010-07-19 11:37:00 +0200454 if (l_name[*idx] == 0x00)
455 return 1;
wdenk7a428cc2003-06-15 22:40:42 +0000456 (*idx)++;
457 }
458 for (j = 0; j <= 10; j += 2) {
459 l_name[*idx] = slotptr->name5_10[j];
Wolfgang Denk927b8ce2010-07-19 11:37:00 +0200460 if (l_name[*idx] == 0x00)
461 return 1;
wdenk7a428cc2003-06-15 22:40:42 +0000462 (*idx)++;
463 }
464 for (j = 0; j <= 2; j += 2) {
465 l_name[*idx] = slotptr->name11_12[j];
Wolfgang Denk927b8ce2010-07-19 11:37:00 +0200466 if (l_name[*idx] == 0x00)
467 return 1;
wdenk7a428cc2003-06-15 22:40:42 +0000468 (*idx)++;
469 }
470
471 return 0;
472}
473
wdenk7a428cc2003-06-15 22:40:42 +0000474/* Calculate short name checksum */
Marek Vasut47a470f2012-10-09 07:20:22 +0000475static __u8 mkcksum(const char name[8], const char ext[3])
wdenk7a428cc2003-06-15 22:40:42 +0000476{
477 int i;
Wolfgang Denk927b8ce2010-07-19 11:37:00 +0200478
wdenk7a428cc2003-06-15 22:40:42 +0000479 __u8 ret = 0;
480
Marek Vasut4ab1f642013-01-11 03:35:48 +0000481 for (i = 0; i < 8; i++)
Marek Vasut47a470f2012-10-09 07:20:22 +0000482 ret = (((ret & 1) << 7) | ((ret & 0xfe) >> 1)) + name[i];
Marek Vasut4ab1f642013-01-11 03:35:48 +0000483 for (i = 0; i < 3; i++)
Marek Vasut47a470f2012-10-09 07:20:22 +0000484 ret = (((ret & 1) << 7) | ((ret & 0xfe) >> 1)) + ext[i];
wdenk7a428cc2003-06-15 22:40:42 +0000485
486 return ret;
487}
wdenk7a428cc2003-06-15 22:40:42 +0000488
489/*
wdenk7a428cc2003-06-15 22:40:42 +0000490 * Read boot sector and volume info from a FAT filesystem
491 */
492static int
Benoît Thébaudeau0a120372012-07-20 15:18:44 +0200493read_bootsectandvi(boot_sector *bs, volume_info *volinfo, int *fatsize)
wdenk7a428cc2003-06-15 22:40:42 +0000494{
Sergei Shtylyov5ab3ba72011-08-08 09:38:33 +0000495 __u8 *block;
wdenk7a428cc2003-06-15 22:40:42 +0000496 volume_info *vistart;
Sergei Shtylyov5ab3ba72011-08-08 09:38:33 +0000497 int ret = 0;
498
499 if (cur_dev == NULL) {
500 debug("Error: no device selected\n");
501 return -1;
502 }
503
Tuomas Tynkkynenbb93c912017-10-01 02:25:21 +0300504 block = malloc_cache_aligned(cur_dev->blksz);
Sergei Shtylyov5ab3ba72011-08-08 09:38:33 +0000505 if (block == NULL) {
506 debug("Error: allocating block\n");
507 return -1;
508 }
wdenk7a428cc2003-06-15 22:40:42 +0000509
Benoît Thébaudeau0a120372012-07-20 15:18:44 +0200510 if (disk_read(0, 1, block) < 0) {
Wolfgang Denk927b8ce2010-07-19 11:37:00 +0200511 debug("Error: reading block\n");
Sergei Shtylyov5ab3ba72011-08-08 09:38:33 +0000512 goto fail;
wdenk7a428cc2003-06-15 22:40:42 +0000513 }
514
515 memcpy(bs, block, sizeof(boot_sector));
Wolfgang Denk927b8ce2010-07-19 11:37:00 +0200516 bs->reserved = FAT2CPU16(bs->reserved);
517 bs->fat_length = FAT2CPU16(bs->fat_length);
518 bs->secs_track = FAT2CPU16(bs->secs_track);
519 bs->heads = FAT2CPU16(bs->heads);
520 bs->total_sect = FAT2CPU32(bs->total_sect);
wdenk7a428cc2003-06-15 22:40:42 +0000521
522 /* FAT32 entries */
523 if (bs->fat_length == 0) {
524 /* Assume FAT32 */
525 bs->fat32_length = FAT2CPU32(bs->fat32_length);
Wolfgang Denk927b8ce2010-07-19 11:37:00 +0200526 bs->flags = FAT2CPU16(bs->flags);
wdenk7a428cc2003-06-15 22:40:42 +0000527 bs->root_cluster = FAT2CPU32(bs->root_cluster);
Wolfgang Denk927b8ce2010-07-19 11:37:00 +0200528 bs->info_sector = FAT2CPU16(bs->info_sector);
529 bs->backup_boot = FAT2CPU16(bs->backup_boot);
530 vistart = (volume_info *)(block + sizeof(boot_sector));
wdenk7a428cc2003-06-15 22:40:42 +0000531 *fatsize = 32;
532 } else {
Wolfgang Denk927b8ce2010-07-19 11:37:00 +0200533 vistart = (volume_info *)&(bs->fat32_length);
wdenk7a428cc2003-06-15 22:40:42 +0000534 *fatsize = 0;
535 }
536 memcpy(volinfo, vistart, sizeof(volume_info));
537
wdenk7a428cc2003-06-15 22:40:42 +0000538 if (*fatsize == 32) {
Wolfgang Denk927b8ce2010-07-19 11:37:00 +0200539 if (strncmp(FAT32_SIGN, vistart->fs_type, SIGNLEN) == 0)
Sergei Shtylyov5ab3ba72011-08-08 09:38:33 +0000540 goto exit;
wdenk7a428cc2003-06-15 22:40:42 +0000541 } else {
Tom Rix155abaa2009-05-20 07:55:41 -0500542 if (strncmp(FAT12_SIGN, vistart->fs_type, SIGNLEN) == 0) {
wdenk7a428cc2003-06-15 22:40:42 +0000543 *fatsize = 12;
Sergei Shtylyov5ab3ba72011-08-08 09:38:33 +0000544 goto exit;
wdenk7a428cc2003-06-15 22:40:42 +0000545 }
Tom Rix155abaa2009-05-20 07:55:41 -0500546 if (strncmp(FAT16_SIGN, vistart->fs_type, SIGNLEN) == 0) {
wdenk7a428cc2003-06-15 22:40:42 +0000547 *fatsize = 16;
Sergei Shtylyov5ab3ba72011-08-08 09:38:33 +0000548 goto exit;
wdenk7a428cc2003-06-15 22:40:42 +0000549 }
550 }
551
Wolfgang Denk927b8ce2010-07-19 11:37:00 +0200552 debug("Error: broken fs_type sign\n");
Sergei Shtylyov5ab3ba72011-08-08 09:38:33 +0000553fail:
554 ret = -1;
555exit:
556 free(block);
557 return ret;
wdenk7a428cc2003-06-15 22:40:42 +0000558}
559
Rob Clark4996a5f2017-09-09 13:15:52 -0400560static int get_fs_info(fsdata *mydata)
wdenk7a428cc2003-06-15 22:40:42 +0000561{
Wolfgang Denk927b8ce2010-07-19 11:37:00 +0200562 boot_sector bs;
563 volume_info volinfo;
Rob Clark4996a5f2017-09-09 13:15:52 -0400564 int ret;
wdenk7a428cc2003-06-15 22:40:42 +0000565
Rob Clark4996a5f2017-09-09 13:15:52 -0400566 ret = read_bootsectandvi(&bs, &volinfo, &mydata->fatsize);
567 if (ret) {
Wolfgang Denk927b8ce2010-07-19 11:37:00 +0200568 debug("Error: reading boot sector\n");
Rob Clark4996a5f2017-09-09 13:15:52 -0400569 return ret;
Wolfgang Denk927b8ce2010-07-19 11:37:00 +0200570 }
571
Sergei Shtylyov42cdc9f2011-08-19 09:32:34 +0000572 if (mydata->fatsize == 32) {
Wolfgang Denk927b8ce2010-07-19 11:37:00 +0200573 mydata->fatlength = bs.fat32_length;
AKASHI Takahiro0d898422018-09-11 15:58:58 +0900574 mydata->total_sect = bs.total_sect;
Sergei Shtylyov42cdc9f2011-08-19 09:32:34 +0000575 } else {
Wolfgang Denk927b8ce2010-07-19 11:37:00 +0200576 mydata->fatlength = bs.fat_length;
AKASHI Takahiro0d898422018-09-11 15:58:58 +0900577 mydata->total_sect = (bs.sectors[1] << 8) + bs.sectors[0];
578 if (!mydata->total_sect)
579 mydata->total_sect = bs.total_sect;
Sergei Shtylyov42cdc9f2011-08-19 09:32:34 +0000580 }
AKASHI Takahiro0d898422018-09-11 15:58:58 +0900581 if (!mydata->total_sect) /* unlikely */
582 mydata->total_sect = (u32)cur_part_info.size;
Wolfgang Denk927b8ce2010-07-19 11:37:00 +0200583
AKASHI Takahiro0d898422018-09-11 15:58:58 +0900584 mydata->fats = bs.fats;
Wolfgang Denk927b8ce2010-07-19 11:37:00 +0200585 mydata->fat_sect = bs.reserved;
586
Rob Clark4996a5f2017-09-09 13:15:52 -0400587 mydata->rootdir_sect = mydata->fat_sect + mydata->fatlength * bs.fats;
Wolfgang Denk927b8ce2010-07-19 11:37:00 +0200588
Sergei Shtylyov5ab3ba72011-08-08 09:38:33 +0000589 mydata->sect_size = (bs.sector_size[1] << 8) + bs.sector_size[0];
Wolfgang Denk927b8ce2010-07-19 11:37:00 +0200590 mydata->clust_size = bs.cluster_size;
Kyle Moffett83c8a782011-12-20 07:41:13 +0000591 if (mydata->sect_size != cur_part_info.blksz) {
592 printf("Error: FAT sector size mismatch (fs=%hu, dev=%lu)\n",
593 mydata->sect_size, cur_part_info.blksz);
594 return -1;
595 }
Patrick Wildt1d614b92018-11-26 15:56:57 +0100596 if (mydata->clust_size == 0) {
597 printf("Error: FAT cluster size not set\n");
598 return -1;
599 }
600 if ((unsigned int)mydata->clust_size * mydata->sect_size >
601 MAX_CLUSTSIZE) {
602 printf("Error: FAT cluster size too big (cs=%u, max=%u)\n",
603 (unsigned int)mydata->clust_size * mydata->sect_size,
604 MAX_CLUSTSIZE);
605 return -1;
606 }
Wolfgang Denka48d0a32010-07-19 11:36:58 +0200607
Wolfgang Denk927b8ce2010-07-19 11:37:00 +0200608 if (mydata->fatsize == 32) {
609 mydata->data_begin = mydata->rootdir_sect -
610 (mydata->clust_size * 2);
Rob Clark0c33fce2017-09-09 13:15:53 -0400611 mydata->root_cluster = bs.root_cluster;
Wolfgang Denk927b8ce2010-07-19 11:37:00 +0200612 } else {
Rob Clark4996a5f2017-09-09 13:15:52 -0400613 mydata->rootdir_size = ((bs.dir_entries[1] * (int)256 +
614 bs.dir_entries[0]) *
615 sizeof(dir_entry)) /
616 mydata->sect_size;
Wolfgang Denk927b8ce2010-07-19 11:37:00 +0200617 mydata->data_begin = mydata->rootdir_sect +
Rob Clark4996a5f2017-09-09 13:15:52 -0400618 mydata->rootdir_size -
Wolfgang Denk927b8ce2010-07-19 11:37:00 +0200619 (mydata->clust_size * 2);
Anssi Hannulaccea7332019-02-27 12:55:57 +0200620
621 /*
622 * The root directory is not cluster-aligned and may be on a
623 * "negative" cluster, this will be handled specially in
624 * next_cluster().
625 */
626 mydata->root_cluster = 0;
Wolfgang Denk927b8ce2010-07-19 11:37:00 +0200627 }
628
629 mydata->fatbufnum = -1;
Stefan Brüns751b31d2016-09-11 22:51:40 +0200630 mydata->fat_dirty = 0;
Tuomas Tynkkynenbb93c912017-10-01 02:25:21 +0300631 mydata->fatbuf = malloc_cache_aligned(FATBUFSIZE);
Sergei Shtylyov5ab3ba72011-08-08 09:38:33 +0000632 if (mydata->fatbuf == NULL) {
633 debug("Error: allocating memory\n");
634 return -1;
635 }
wdenk7a428cc2003-06-15 22:40:42 +0000636
Wolfgang Denk927b8ce2010-07-19 11:37:00 +0200637 debug("FAT%d, fat_sect: %d, fatlength: %d\n",
638 mydata->fatsize, mydata->fat_sect, mydata->fatlength);
639 debug("Rootdir begins at cluster: %d, sector: %d, offset: %x\n"
640 "Data begins at: %d\n",
Rob Clark0c33fce2017-09-09 13:15:53 -0400641 mydata->root_cluster,
Wolfgang Denk927b8ce2010-07-19 11:37:00 +0200642 mydata->rootdir_sect,
Sergei Shtylyov5ab3ba72011-08-08 09:38:33 +0000643 mydata->rootdir_sect * mydata->sect_size, mydata->data_begin);
644 debug("Sector size: %d, cluster size: %d\n", mydata->sect_size,
645 mydata->clust_size);
wdenk7a428cc2003-06-15 22:40:42 +0000646
Rob Clark4996a5f2017-09-09 13:15:52 -0400647 return 0;
648}
649
Rob Clark0c33fce2017-09-09 13:15:53 -0400650
651/*
652 * Directory iterator, to simplify filesystem traversal
653 *
654 * Implements an iterator pattern to traverse directory tables,
655 * transparently handling directory tables split across multiple
656 * clusters, and the difference between FAT12/FAT16 root directory
657 * (contiguous) and subdirectories + FAT32 root (chained).
658 *
659 * Rough usage:
660 *
661 * for (fat_itr_root(&itr, fsdata); fat_itr_next(&itr); ) {
662 * // to traverse down to a subdirectory pointed to by
663 * // current iterator position:
664 * fat_itr_child(&itr, &itr);
665 * }
666 *
667 * For more complete example, see fat_itr_resolve()
668 */
669
670typedef struct {
671 fsdata *fsdata; /* filesystem parameters */
AKASHI Takahirof0926ae2018-09-11 15:59:09 +0900672 unsigned start_clust; /* first cluster */
Rob Clark0c33fce2017-09-09 13:15:53 -0400673 unsigned clust; /* current cluster */
AKASHI Takahirob88dff22018-09-11 15:59:00 +0900674 unsigned next_clust; /* next cluster if remaining == 0 */
Rob Clark0c33fce2017-09-09 13:15:53 -0400675 int last_cluster; /* set once we've read last cluster */
676 int is_root; /* is iterator at root directory */
677 int remaining; /* remaining dent's in current cluster */
678
679 /* current iterator position values: */
680 dir_entry *dent; /* current directory entry */
681 char l_name[VFAT_MAXLEN_BYTES]; /* long (vfat) name */
682 char s_name[14]; /* short 8.3 name */
683 char *name; /* l_name if there is one, else s_name */
684
685 /* storage for current cluster in memory: */
686 u8 block[MAX_CLUSTSIZE] __aligned(ARCH_DMA_MINALIGN);
687} fat_itr;
688
689static int fat_itr_isdir(fat_itr *itr);
690
691/**
692 * fat_itr_root() - initialize an iterator to start at the root
693 * directory
694 *
695 * @itr: iterator to initialize
696 * @fsdata: filesystem data for the partition
697 * @return 0 on success, else -errno
698 */
699static int fat_itr_root(fat_itr *itr, fsdata *fsdata)
700{
701 if (get_fs_info(fsdata))
702 return -ENXIO;
703
704 itr->fsdata = fsdata;
AKASHI Takahirof0926ae2018-09-11 15:59:09 +0900705 itr->start_clust = 0;
Rob Clark0c33fce2017-09-09 13:15:53 -0400706 itr->clust = fsdata->root_cluster;
AKASHI Takahirob88dff22018-09-11 15:59:00 +0900707 itr->next_clust = fsdata->root_cluster;
Rob Clark0c33fce2017-09-09 13:15:53 -0400708 itr->dent = NULL;
709 itr->remaining = 0;
710 itr->last_cluster = 0;
711 itr->is_root = 1;
712
713 return 0;
714}
715
716/**
717 * fat_itr_child() - initialize an iterator to descend into a sub-
718 * directory
719 *
720 * Initializes 'itr' to iterate the contents of the directory at
721 * the current cursor position of 'parent'. It is an error to
722 * call this if the current cursor of 'parent' is pointing at a
723 * regular file.
724 *
725 * Note that 'itr' and 'parent' can be the same pointer if you do
726 * not need to preserve 'parent' after this call, which is useful
727 * for traversing directory structure to resolve a file/directory.
728 *
729 * @itr: iterator to initialize
730 * @parent: the iterator pointing at a directory entry in the
731 * parent directory of the directory to iterate
732 */
733static void fat_itr_child(fat_itr *itr, fat_itr *parent)
734{
735 fsdata *mydata = parent->fsdata; /* for silly macros */
736 unsigned clustnum = START(parent->dent);
737
738 assert(fat_itr_isdir(parent));
739
740 itr->fsdata = parent->fsdata;
AKASHI Takahirof0926ae2018-09-11 15:59:09 +0900741 itr->start_clust = clustnum;
Rob Clark0c33fce2017-09-09 13:15:53 -0400742 if (clustnum > 0) {
743 itr->clust = clustnum;
AKASHI Takahirob88dff22018-09-11 15:59:00 +0900744 itr->next_clust = clustnum;
Tuomas Tynkkynen3e78e852017-09-25 22:06:33 +0300745 itr->is_root = 0;
Rob Clark0c33fce2017-09-09 13:15:53 -0400746 } else {
747 itr->clust = parent->fsdata->root_cluster;
AKASHI Takahirob88dff22018-09-11 15:59:00 +0900748 itr->next_clust = parent->fsdata->root_cluster;
Tuomas Tynkkynen3e78e852017-09-25 22:06:33 +0300749 itr->is_root = 1;
Rob Clark0c33fce2017-09-09 13:15:53 -0400750 }
751 itr->dent = NULL;
752 itr->remaining = 0;
753 itr->last_cluster = 0;
Rob Clark0c33fce2017-09-09 13:15:53 -0400754}
755
Anssi Hannulaccea7332019-02-27 12:55:57 +0200756static void *next_cluster(fat_itr *itr, unsigned *nbytes)
Rob Clark0c33fce2017-09-09 13:15:53 -0400757{
758 fsdata *mydata = itr->fsdata; /* for silly macros */
759 int ret;
760 u32 sect;
Anssi Hannulaccea7332019-02-27 12:55:57 +0200761 u32 read_size;
Rob Clark0c33fce2017-09-09 13:15:53 -0400762
763 /* have we reached the end? */
764 if (itr->last_cluster)
765 return NULL;
766
Anssi Hannulaccea7332019-02-27 12:55:57 +0200767 if (itr->is_root && itr->fsdata->fatsize != 32) {
768 /*
769 * The root directory is located before the data area and
770 * cannot be indexed using the regular unsigned cluster
771 * numbers (it may start at a "negative" cluster or not at a
772 * cluster boundary at all), so consider itr->next_clust to be
773 * a offset in cluster-sized units from the start of rootdir.
774 */
775 unsigned sect_offset = itr->next_clust * itr->fsdata->clust_size;
776 unsigned remaining_sects = itr->fsdata->rootdir_size - sect_offset;
777 sect = itr->fsdata->rootdir_sect + sect_offset;
778 /* do not read past the end of rootdir */
779 read_size = min_t(u32, itr->fsdata->clust_size,
780 remaining_sects);
781 } else {
782 sect = clust_to_sect(itr->fsdata, itr->next_clust);
783 read_size = itr->fsdata->clust_size;
784 }
Rob Clark0c33fce2017-09-09 13:15:53 -0400785
Anssi Hannulaccea7332019-02-27 12:55:57 +0200786 debug("FAT read(sect=%d), clust_size=%d, read_size=%u, DIRENTSPERBLOCK=%zd\n",
787 sect, itr->fsdata->clust_size, read_size, DIRENTSPERBLOCK);
Rob Clark0c33fce2017-09-09 13:15:53 -0400788
789 /*
790 * NOTE: do_fat_read_at() had complicated logic to deal w/
791 * vfat names that span multiple clusters in the fat16 case,
792 * which get_dentfromdir() probably also needed (and was
793 * missing). And not entirely sure what fat32 didn't have
794 * the same issue.. We solve that by only caring about one
795 * dent at a time and iteratively constructing the vfat long
796 * name.
797 */
Anssi Hannulaccea7332019-02-27 12:55:57 +0200798 ret = disk_read(sect, read_size, itr->block);
Rob Clark0c33fce2017-09-09 13:15:53 -0400799 if (ret < 0) {
800 debug("Error: reading block\n");
801 return NULL;
802 }
803
Anssi Hannulaccea7332019-02-27 12:55:57 +0200804 *nbytes = read_size * itr->fsdata->sect_size;
AKASHI Takahirob88dff22018-09-11 15:59:00 +0900805 itr->clust = itr->next_clust;
Rob Clark0c33fce2017-09-09 13:15:53 -0400806 if (itr->is_root && itr->fsdata->fatsize != 32) {
AKASHI Takahirob88dff22018-09-11 15:59:00 +0900807 itr->next_clust++;
Anssi Hannulaccea7332019-02-27 12:55:57 +0200808 if (itr->next_clust * itr->fsdata->clust_size >=
Rob Clark0c33fce2017-09-09 13:15:53 -0400809 itr->fsdata->rootdir_size) {
AKASHI Takahirob88dff22018-09-11 15:59:00 +0900810 debug("nextclust: 0x%x\n", itr->next_clust);
Rob Clark0c33fce2017-09-09 13:15:53 -0400811 itr->last_cluster = 1;
812 }
813 } else {
AKASHI Takahirob88dff22018-09-11 15:59:00 +0900814 itr->next_clust = get_fatent(itr->fsdata, itr->next_clust);
815 if (CHECK_CLUST(itr->next_clust, itr->fsdata->fatsize)) {
816 debug("nextclust: 0x%x\n", itr->next_clust);
Rob Clark0c33fce2017-09-09 13:15:53 -0400817 itr->last_cluster = 1;
818 }
819 }
820
821 return itr->block;
822}
823
824static dir_entry *next_dent(fat_itr *itr)
825{
826 if (itr->remaining == 0) {
Anssi Hannulaccea7332019-02-27 12:55:57 +0200827 unsigned nbytes;
828 struct dir_entry *dent = next_cluster(itr, &nbytes);
Rob Clark0c33fce2017-09-09 13:15:53 -0400829
830 /* have we reached the last cluster? */
AKASHI Takahirob88dff22018-09-11 15:59:00 +0900831 if (!dent) {
832 /* a sign for no more entries left */
833 itr->dent = NULL;
Rob Clark0c33fce2017-09-09 13:15:53 -0400834 return NULL;
AKASHI Takahirob88dff22018-09-11 15:59:00 +0900835 }
Rob Clark0c33fce2017-09-09 13:15:53 -0400836
837 itr->remaining = nbytes / sizeof(dir_entry) - 1;
838 itr->dent = dent;
839 } else {
840 itr->remaining--;
841 itr->dent++;
842 }
843
844 /* have we reached the last valid entry? */
845 if (itr->dent->name[0] == 0)
846 return NULL;
847
848 return itr->dent;
849}
850
851static dir_entry *extract_vfat_name(fat_itr *itr)
852{
853 struct dir_entry *dent = itr->dent;
854 int seqn = itr->dent->name[0] & ~LAST_LONG_ENTRY_MASK;
855 u8 chksum, alias_checksum = ((dir_slot *)dent)->alias_checksum;
856 int n = 0;
857
858 while (seqn--) {
859 char buf[13];
860 int idx = 0;
861
862 slot2str((dir_slot *)dent, buf, &idx);
863
Patrick Wildtd6153f12018-11-26 15:58:13 +0100864 if (n + idx >= sizeof(itr->l_name))
865 return NULL;
866
Rob Clark0c33fce2017-09-09 13:15:53 -0400867 /* shift accumulated long-name up and copy new part in: */
868 memmove(itr->l_name + idx, itr->l_name, n);
869 memcpy(itr->l_name, buf, idx);
870 n += idx;
871
872 dent = next_dent(itr);
873 if (!dent)
874 return NULL;
875 }
876
AKASHI Takahiro5f6ae542019-11-26 17:29:31 +0900877 /*
878 * We are now at the short file name entry.
879 * If it is marked as deleted, just skip it.
880 */
881 if (dent->name[0] == DELETED_FLAG ||
882 dent->name[0] == aRING)
883 return NULL;
884
Rob Clark0c33fce2017-09-09 13:15:53 -0400885 itr->l_name[n] = '\0';
886
887 chksum = mkcksum(dent->name, dent->ext);
888
889 /* checksum mismatch could mean deleted file, etc.. skip it: */
890 if (chksum != alias_checksum) {
891 debug("** chksum=%x, alias_checksum=%x, l_name=%s, s_name=%8s.%3s\n",
892 chksum, alias_checksum, itr->l_name, dent->name, dent->ext);
893 return NULL;
894 }
895
896 return dent;
897}
898
899/**
900 * fat_itr_next() - step to the next entry in a directory
901 *
902 * Must be called once on a new iterator before the cursor is valid.
903 *
904 * @itr: the iterator to iterate
905 * @return boolean, 1 if success or 0 if no more entries in the
906 * current directory
907 */
908static int fat_itr_next(fat_itr *itr)
909{
910 dir_entry *dent;
911
912 itr->name = NULL;
913
AKASHI Takahiro5f6ae542019-11-26 17:29:31 +0900914 /*
915 * One logical directory entry consist of following slots:
916 * name[0] Attributes
917 * dent[N - N]: LFN[N - 1] N|0x40 ATTR_VFAT
918 * ...
919 * dent[N - 2]: LFN[1] 2 ATTR_VFAT
920 * dent[N - 1]: LFN[0] 1 ATTR_VFAT
921 * dent[N]: SFN ATTR_ARCH
922 */
923
Rob Clark0c33fce2017-09-09 13:15:53 -0400924 while (1) {
925 dent = next_dent(itr);
926 if (!dent)
927 return 0;
928
Heinrich Schuchardt6dc7a162020-11-21 12:34:20 +0100929 if (dent->name[0] == DELETED_FLAG)
Rob Clark0c33fce2017-09-09 13:15:53 -0400930 continue;
931
932 if (dent->attr & ATTR_VOLUME) {
Tuomas Tynkkynena799dcd2018-01-05 02:45:21 +0200933 if ((dent->attr & ATTR_VFAT) == ATTR_VFAT &&
Rob Clark0c33fce2017-09-09 13:15:53 -0400934 (dent->name[0] & LAST_LONG_ENTRY_MASK)) {
AKASHI Takahiro5f6ae542019-11-26 17:29:31 +0900935 /* long file name */
Rob Clark0c33fce2017-09-09 13:15:53 -0400936 dent = extract_vfat_name(itr);
AKASHI Takahiro5f6ae542019-11-26 17:29:31 +0900937 /*
938 * If succeeded, dent has a valid short file
939 * name entry for the current entry.
940 * If failed, itr points to a current bogus
941 * entry. So after fetching a next one,
942 * it may have a short file name entry
943 * for this bogus entry so that we can still
944 * check for a short name.
945 */
Rob Clark0c33fce2017-09-09 13:15:53 -0400946 if (!dent)
947 continue;
948 itr->name = itr->l_name;
949 break;
950 } else {
951 /* Volume label or VFAT entry, skip */
952 continue;
953 }
Christian Gmeiner59e94402020-06-09 09:09:07 +0200954 }
Rob Clark0c33fce2017-09-09 13:15:53 -0400955
AKASHI Takahiro5f6ae542019-11-26 17:29:31 +0900956 /* short file name */
Rob Clark0c33fce2017-09-09 13:15:53 -0400957 break;
958 }
959
960 get_name(dent, itr->s_name);
961 if (!itr->name)
962 itr->name = itr->s_name;
963
964 return 1;
965}
966
967/**
968 * fat_itr_isdir() - is current cursor position pointing to a directory
969 *
970 * @itr: the iterator
971 * @return true if cursor is at a directory
972 */
973static int fat_itr_isdir(fat_itr *itr)
974{
975 return !!(itr->dent->attr & ATTR_DIR);
976}
977
978/*
979 * Helpers:
980 */
981
982#define TYPE_FILE 0x1
983#define TYPE_DIR 0x2
984#define TYPE_ANY (TYPE_FILE | TYPE_DIR)
985
986/**
987 * fat_itr_resolve() - traverse directory structure to resolve the
988 * requested path.
989 *
990 * Traverse directory structure to the requested path. If the specified
991 * path is to a directory, this will descend into the directory and
992 * leave it iterator at the start of the directory. If the path is to a
993 * file, it will leave the iterator in the parent directory with current
994 * cursor at file's entry in the directory.
995 *
996 * @itr: iterator initialized to root
997 * @path: the requested path
998 * @type: bitmask of allowable file types
999 * @return 0 on success or -errno
1000 */
1001static int fat_itr_resolve(fat_itr *itr, const char *path, unsigned type)
1002{
1003 const char *next;
1004
1005 /* chomp any extra leading slashes: */
1006 while (path[0] && ISDIRDELIM(path[0]))
1007 path++;
1008
1009 /* are we at the end? */
1010 if (strlen(path) == 0) {
1011 if (!(type & TYPE_DIR))
1012 return -ENOENT;
1013 return 0;
1014 }
1015
1016 /* find length of next path entry: */
1017 next = path;
1018 while (next[0] && !ISDIRDELIM(next[0]))
1019 next++;
1020
AKASHI Takahirof0a47812018-09-11 15:58:59 +09001021 if (itr->is_root) {
1022 /* root dir doesn't have "." nor ".." */
1023 if ((((next - path) == 1) && !strncmp(path, ".", 1)) ||
1024 (((next - path) == 2) && !strncmp(path, "..", 2))) {
1025 /* point back to itself */
1026 itr->clust = itr->fsdata->root_cluster;
AKASHI Takahirob88dff22018-09-11 15:59:00 +09001027 itr->next_clust = itr->fsdata->root_cluster;
AKASHI Takahirof0a47812018-09-11 15:58:59 +09001028 itr->dent = NULL;
1029 itr->remaining = 0;
1030 itr->last_cluster = 0;
1031
1032 if (next[0] == 0) {
1033 if (type & TYPE_DIR)
1034 return 0;
1035 else
1036 return -ENOENT;
1037 }
1038
1039 return fat_itr_resolve(itr, next, type);
1040 }
1041 }
1042
Rob Clark0c33fce2017-09-09 13:15:53 -04001043 while (fat_itr_next(itr)) {
1044 int match = 0;
1045 unsigned n = max(strlen(itr->name), (size_t)(next - path));
1046
1047 /* check both long and short name: */
1048 if (!strncasecmp(path, itr->name, n))
1049 match = 1;
1050 else if (itr->name != itr->s_name &&
1051 !strncasecmp(path, itr->s_name, n))
1052 match = 1;
1053
1054 if (!match)
1055 continue;
1056
1057 if (fat_itr_isdir(itr)) {
1058 /* recurse into directory: */
1059 fat_itr_child(itr, itr);
1060 return fat_itr_resolve(itr, next, type);
1061 } else if (next[0]) {
1062 /*
1063 * If next is not empty then we have a case
1064 * like: /path/to/realfile/nonsense
1065 */
1066 debug("bad trailing path: %s\n", next);
1067 return -ENOENT;
1068 } else if (!(type & TYPE_FILE)) {
1069 return -ENOTDIR;
1070 } else {
1071 return 0;
1072 }
1073 }
1074
1075 return -ENOENT;
1076}
1077
Benoît Thébaudeau0a120372012-07-20 15:18:44 +02001078int file_fat_detectfs(void)
wdenk7a428cc2003-06-15 22:40:42 +00001079{
Wolfgang Denk927b8ce2010-07-19 11:37:00 +02001080 boot_sector bs;
1081 volume_info volinfo;
1082 int fatsize;
1083 char vol_label[12];
wdenk7a428cc2003-06-15 22:40:42 +00001084
Wolfgang Denk927b8ce2010-07-19 11:37:00 +02001085 if (cur_dev == NULL) {
wdenk2c9b05d2003-09-10 22:30:53 +00001086 printf("No current device\n");
1087 return 1;
1088 }
Wolfgang Denk927b8ce2010-07-19 11:37:00 +02001089
Simon Glassb569a012017-05-17 03:25:30 -06001090#if defined(CONFIG_IDE) || \
Simon Glassab3055a2017-06-14 21:28:25 -06001091 defined(CONFIG_SATA) || \
Simon Glass8706b812016-05-01 11:36:02 -06001092 defined(CONFIG_SCSI) || \
Jon Loeliger80eb47c2007-07-09 17:56:50 -05001093 defined(CONFIG_CMD_USB) || \
Andy Fleming1efe5782008-01-16 13:06:59 -06001094 defined(CONFIG_MMC)
wdenk2c9b05d2003-09-10 22:30:53 +00001095 printf("Interface: ");
Wolfgang Denk927b8ce2010-07-19 11:37:00 +02001096 switch (cur_dev->if_type) {
1097 case IF_TYPE_IDE:
1098 printf("IDE");
1099 break;
1100 case IF_TYPE_SATA:
1101 printf("SATA");
1102 break;
1103 case IF_TYPE_SCSI:
1104 printf("SCSI");
1105 break;
1106 case IF_TYPE_ATAPI:
1107 printf("ATAPI");
1108 break;
1109 case IF_TYPE_USB:
1110 printf("USB");
1111 break;
1112 case IF_TYPE_DOC:
1113 printf("DOC");
1114 break;
1115 case IF_TYPE_MMC:
1116 printf("MMC");
1117 break;
1118 default:
1119 printf("Unknown");
wdenk2c9b05d2003-09-10 22:30:53 +00001120 }
Wolfgang Denk927b8ce2010-07-19 11:37:00 +02001121
Simon Glass2f26fff2016-02-29 15:25:51 -07001122 printf("\n Device %d: ", cur_dev->devnum);
wdenk2c9b05d2003-09-10 22:30:53 +00001123 dev_print(cur_dev);
1124#endif
Wolfgang Denk927b8ce2010-07-19 11:37:00 +02001125
1126 if (read_bootsectandvi(&bs, &volinfo, &fatsize)) {
wdenk2c9b05d2003-09-10 22:30:53 +00001127 printf("\nNo valid FAT fs found\n");
1128 return 1;
1129 }
Wolfgang Denk927b8ce2010-07-19 11:37:00 +02001130
1131 memcpy(vol_label, volinfo.volume_label, 11);
wdenk2c9b05d2003-09-10 22:30:53 +00001132 vol_label[11] = '\0';
Wolfgang Denk927b8ce2010-07-19 11:37:00 +02001133 volinfo.fs_type[5] = '\0';
1134
Stephen Warrend398dbe2012-10-17 06:44:57 +00001135 printf("Filesystem: %s \"%s\"\n", volinfo.fs_type, vol_label);
Wolfgang Denk927b8ce2010-07-19 11:37:00 +02001136
wdenk2c9b05d2003-09-10 22:30:53 +00001137 return 0;
wdenk7a428cc2003-06-15 22:40:42 +00001138}
1139
Stephen Warren1d2f9a02014-02-03 13:21:10 -07001140int fat_exists(const char *filename)
1141{
Rob Clark71193c92017-09-09 13:15:54 -04001142 fsdata fsdata;
Tom Rini5257a092017-09-22 07:37:43 -04001143 fat_itr *itr;
Suriyan Ramasami441c2232014-11-17 14:39:35 -08001144 int ret;
Suriyan Ramasami441c2232014-11-17 14:39:35 -08001145
Tuomas Tynkkynenbb93c912017-10-01 02:25:21 +03001146 itr = malloc_cache_aligned(sizeof(fat_itr));
Tuomas Tynkkynenf25bbb22017-10-01 02:25:22 +03001147 if (!itr)
1148 return 0;
Rob Clark71193c92017-09-09 13:15:54 -04001149 ret = fat_itr_root(itr, &fsdata);
1150 if (ret)
Tuomas Tynkkynenf25bbb22017-10-01 02:25:22 +03001151 goto out;
Rob Clark71193c92017-09-09 13:15:54 -04001152
1153 ret = fat_itr_resolve(itr, filename, TYPE_ANY);
Rob Clarkd17f4fe2017-09-12 16:40:01 -04001154 free(fsdata.fatbuf);
Tuomas Tynkkynenf25bbb22017-10-01 02:25:22 +03001155out:
Tom Rini5257a092017-09-22 07:37:43 -04001156 free(itr);
Suriyan Ramasami441c2232014-11-17 14:39:35 -08001157 return ret == 0;
Stephen Warren1d2f9a02014-02-03 13:21:10 -07001158}
1159
Suriyan Ramasami96171fb2014-11-17 14:39:38 -08001160int fat_size(const char *filename, loff_t *size)
Stephen Warren3eb58f52014-06-11 12:47:26 -06001161{
Rob Clark71193c92017-09-09 13:15:54 -04001162 fsdata fsdata;
Tom Rini5257a092017-09-22 07:37:43 -04001163 fat_itr *itr;
Rob Clark71193c92017-09-09 13:15:54 -04001164 int ret;
1165
Tuomas Tynkkynenbb93c912017-10-01 02:25:21 +03001166 itr = malloc_cache_aligned(sizeof(fat_itr));
Tuomas Tynkkynenf25bbb22017-10-01 02:25:22 +03001167 if (!itr)
1168 return -ENOMEM;
Rob Clark71193c92017-09-09 13:15:54 -04001169 ret = fat_itr_root(itr, &fsdata);
1170 if (ret)
Tuomas Tynkkynenf25bbb22017-10-01 02:25:22 +03001171 goto out_free_itr;
Rob Clark71193c92017-09-09 13:15:54 -04001172
1173 ret = fat_itr_resolve(itr, filename, TYPE_FILE);
1174 if (ret) {
1175 /*
1176 * Directories don't have size, but fs_size() is not
1177 * expected to fail if passed a directory path:
1178 */
Rob Clarkd17f4fe2017-09-12 16:40:01 -04001179 free(fsdata.fatbuf);
Andrew F. Davis8a6c6122019-05-16 09:34:31 -05001180 ret = fat_itr_root(itr, &fsdata);
1181 if (ret)
1182 goto out_free_itr;
1183 ret = fat_itr_resolve(itr, filename, TYPE_DIR);
1184 if (!ret)
Rob Clark71193c92017-09-09 13:15:54 -04001185 *size = 0;
Tuomas Tynkkynenf25bbb22017-10-01 02:25:22 +03001186 goto out_free_both;
Rob Clark71193c92017-09-09 13:15:54 -04001187 }
1188
1189 *size = FAT2CPU32(itr->dent->size);
Tuomas Tynkkynenf25bbb22017-10-01 02:25:22 +03001190out_free_both:
Rob Clarkd17f4fe2017-09-12 16:40:01 -04001191 free(fsdata.fatbuf);
Tuomas Tynkkynenf25bbb22017-10-01 02:25:22 +03001192out_free_itr:
Tom Rini5257a092017-09-22 07:37:43 -04001193 free(itr);
Rob Clarkd17f4fe2017-09-12 16:40:01 -04001194 return ret;
Stephen Warren3eb58f52014-06-11 12:47:26 -06001195}
1196
Suriyan Ramasami441c2232014-11-17 14:39:35 -08001197int file_fat_read_at(const char *filename, loff_t pos, void *buffer,
1198 loff_t maxsize, loff_t *actread)
wdenk7a428cc2003-06-15 22:40:42 +00001199{
Rob Clark71193c92017-09-09 13:15:54 -04001200 fsdata fsdata;
Tom Rini5257a092017-09-22 07:37:43 -04001201 fat_itr *itr;
Rob Clark71193c92017-09-09 13:15:54 -04001202 int ret;
1203
Tuomas Tynkkynenbb93c912017-10-01 02:25:21 +03001204 itr = malloc_cache_aligned(sizeof(fat_itr));
Tuomas Tynkkynenf25bbb22017-10-01 02:25:22 +03001205 if (!itr)
1206 return -ENOMEM;
Rob Clark71193c92017-09-09 13:15:54 -04001207 ret = fat_itr_root(itr, &fsdata);
1208 if (ret)
Tuomas Tynkkynenf25bbb22017-10-01 02:25:22 +03001209 goto out_free_itr;
Rob Clark71193c92017-09-09 13:15:54 -04001210
1211 ret = fat_itr_resolve(itr, filename, TYPE_FILE);
1212 if (ret)
Tuomas Tynkkynenf25bbb22017-10-01 02:25:22 +03001213 goto out_free_both;
Rob Clark71193c92017-09-09 13:15:54 -04001214
Andreas Dannenberg315c81d2018-08-13 21:35:15 -05001215 debug("reading %s at pos %llu\n", filename, pos);
Tien Fong Cheed16b79b2019-02-11 14:56:20 +08001216
1217 /* For saving default max clustersize memory allocated to malloc pool */
1218 dir_entry *dentptr = itr->dent;
1219
Tien Fong Cheed16b79b2019-02-11 14:56:20 +08001220 ret = get_contents(&fsdata, dentptr, pos, buffer, maxsize, actread);
Rob Clarkd17f4fe2017-09-12 16:40:01 -04001221
Tuomas Tynkkynenf25bbb22017-10-01 02:25:22 +03001222out_free_both:
Rob Clarkd17f4fe2017-09-12 16:40:01 -04001223 free(fsdata.fatbuf);
Tuomas Tynkkynenf25bbb22017-10-01 02:25:22 +03001224out_free_itr:
Tom Rini5257a092017-09-22 07:37:43 -04001225 free(itr);
Rob Clarkd17f4fe2017-09-12 16:40:01 -04001226 return ret;
Benoît Thébaudeau5295aa82012-09-18 08:14:56 +00001227}
1228
Suriyan Ramasami441c2232014-11-17 14:39:35 -08001229int file_fat_read(const char *filename, void *buffer, int maxsize)
Benoît Thébaudeau5295aa82012-09-18 08:14:56 +00001230{
Suriyan Ramasami441c2232014-11-17 14:39:35 -08001231 loff_t actread;
1232 int ret;
1233
1234 ret = file_fat_read_at(filename, 0, buffer, maxsize, &actread);
1235 if (ret)
1236 return ret;
1237 else
1238 return actread;
wdenk7a428cc2003-06-15 22:40:42 +00001239}
Simon Glass19e38582012-12-26 09:53:33 +00001240
Suriyan Ramasami96171fb2014-11-17 14:39:38 -08001241int fat_read_file(const char *filename, void *buf, loff_t offset, loff_t len,
1242 loff_t *actread)
Simon Glass19e38582012-12-26 09:53:33 +00001243{
Suriyan Ramasami441c2232014-11-17 14:39:35 -08001244 int ret;
Simon Glass19e38582012-12-26 09:53:33 +00001245
Suriyan Ramasami96171fb2014-11-17 14:39:38 -08001246 ret = file_fat_read_at(filename, offset, buf, len, actread);
1247 if (ret)
Simon Glass19e38582012-12-26 09:53:33 +00001248 printf("** Unable to read file %s **\n", filename);
Simon Glass19e38582012-12-26 09:53:33 +00001249
Suriyan Ramasami96171fb2014-11-17 14:39:38 -08001250 return ret;
Simon Glass19e38582012-12-26 09:53:33 +00001251}
1252
Rob Clark4174d7f2017-09-09 13:15:56 -04001253typedef struct {
1254 struct fs_dir_stream parent;
1255 struct fs_dirent dirent;
1256 fsdata fsdata;
1257 fat_itr itr;
1258} fat_dir;
1259
1260int fat_opendir(const char *filename, struct fs_dir_stream **dirsp)
1261{
Neil Armstrong6f625f82017-11-24 09:54:41 +01001262 fat_dir *dir;
Rob Clark4174d7f2017-09-09 13:15:56 -04001263 int ret;
1264
Neil Armstrong6f625f82017-11-24 09:54:41 +01001265 dir = malloc_cache_aligned(sizeof(*dir));
Rob Clark4174d7f2017-09-09 13:15:56 -04001266 if (!dir)
1267 return -ENOMEM;
Neil Armstrong6f625f82017-11-24 09:54:41 +01001268 memset(dir, 0, sizeof(*dir));
Rob Clark4174d7f2017-09-09 13:15:56 -04001269
1270 ret = fat_itr_root(&dir->itr, &dir->fsdata);
1271 if (ret)
Tuomas Tynkkynenf25bbb22017-10-01 02:25:22 +03001272 goto fail_free_dir;
Rob Clark4174d7f2017-09-09 13:15:56 -04001273
1274 ret = fat_itr_resolve(&dir->itr, filename, TYPE_DIR);
1275 if (ret)
Tuomas Tynkkynenf25bbb22017-10-01 02:25:22 +03001276 goto fail_free_both;
Rob Clark4174d7f2017-09-09 13:15:56 -04001277
1278 *dirsp = (struct fs_dir_stream *)dir;
1279 return 0;
1280
Tuomas Tynkkynenf25bbb22017-10-01 02:25:22 +03001281fail_free_both:
Rob Clarkd17f4fe2017-09-12 16:40:01 -04001282 free(dir->fsdata.fatbuf);
Tuomas Tynkkynenf25bbb22017-10-01 02:25:22 +03001283fail_free_dir:
Rob Clark4174d7f2017-09-09 13:15:56 -04001284 free(dir);
1285 return ret;
1286}
1287
1288int fat_readdir(struct fs_dir_stream *dirs, struct fs_dirent **dentp)
1289{
1290 fat_dir *dir = (fat_dir *)dirs;
1291 struct fs_dirent *dent = &dir->dirent;
1292
1293 if (!fat_itr_next(&dir->itr))
1294 return -ENOENT;
1295
1296 memset(dent, 0, sizeof(*dent));
1297 strcpy(dent->name, dir->itr.name);
1298
1299 if (fat_itr_isdir(&dir->itr)) {
1300 dent->type = FS_DT_DIR;
1301 } else {
1302 dent->type = FS_DT_REG;
1303 dent->size = FAT2CPU32(dir->itr.dent->size);
1304 }
1305
1306 *dentp = dent;
1307
1308 return 0;
1309}
1310
1311void fat_closedir(struct fs_dir_stream *dirs)
1312{
1313 fat_dir *dir = (fat_dir *)dirs;
Rob Clarkd17f4fe2017-09-12 16:40:01 -04001314 free(dir->fsdata.fatbuf);
Rob Clark4174d7f2017-09-09 13:15:56 -04001315 free(dir);
1316}
1317
Simon Glass19e38582012-12-26 09:53:33 +00001318void fat_close(void)
1319{
1320}