blob: dd7888cd6d4d5317c34449a93a8349f63e822056 [file] [log] [blame]
wdenk71f95112003-06-15 22:40:42 +00001/*
2 * fat.c
3 *
4 * R/O (V)FAT 12/16/32 filesystem implementation by Marcus Sundberg
5 *
6 * 2002-07-28 - rjones@nexus-tech.net - ported to ppcboot v1.1.6
7 * 2003-03-10 - kharris@nexus-tech.net - ported to uboot
8 *
Wolfgang Denk1a459662013-07-08 09:37:19 +02009 * SPDX-License-Identifier: GPL-2.0+
wdenk71f95112003-06-15 22:40:42 +000010 */
11
12#include <common.h>
Simon Glass2a981dc2016-02-29 15:25:52 -070013#include <blk.h>
wdenk71f95112003-06-15 22:40:42 +000014#include <config.h>
Sergei Shtylyovac497772011-08-08 09:38:33 +000015#include <exports.h>
wdenk71f95112003-06-15 22:40:42 +000016#include <fat.h>
Rob Clark1f403662017-09-09 13:15:56 -040017#include <fs.h>
wdenk71f95112003-06-15 22:40:42 +000018#include <asm/byteorder.h>
wdenk7205e402003-09-10 22:30:53 +000019#include <part.h>
Eric Nelson9a800ac2012-04-11 04:08:53 +000020#include <malloc.h>
Simon Glasscf92e052015-09-02 17:24:58 -060021#include <memalign.h>
Eric Nelson9a800ac2012-04-11 04:08:53 +000022#include <linux/compiler.h>
Richard Genoudfb7e16c2012-12-13 00:47:36 +000023#include <linux/ctype.h>
wdenk71f95112003-06-15 22:40:42 +000024
wdenk71f95112003-06-15 22:40:42 +000025/*
Rob Clark21a24c32017-09-09 13:15:59 -040026 * Convert a string to lowercase. Converts at most 'len' characters,
27 * 'len' may be larger than the length of 'str' if 'str' is NULL
28 * terminated.
wdenk71f95112003-06-15 22:40:42 +000029 */
Rob Clark21a24c32017-09-09 13:15:59 -040030static void downcase(char *str, size_t len)
wdenk71f95112003-06-15 22:40:42 +000031{
Rob Clark21a24c32017-09-09 13:15:59 -040032 while (*str != '\0' && len--) {
Richard Genoudfb7e16c2012-12-13 00:47:36 +000033 *str = tolower(*str);
wdenk71f95112003-06-15 22:40:42 +000034 str++;
35 }
36}
37
Simon Glass4101f682016-02-29 15:25:34 -070038static struct blk_desc *cur_dev;
Kyle Moffett9813b752011-12-21 07:08:10 +000039static disk_partition_t cur_part_info;
Wolfgang Denk7385c282010-07-19 11:37:00 +020040
Kyle Moffett9813b752011-12-21 07:08:10 +000041#define DOS_BOOT_MAGIC_OFFSET 0x1fe
wdenk7205e402003-09-10 22:30:53 +000042#define DOS_FS_TYPE_OFFSET 0x36
Wolfgang Denk66c2d732010-07-19 11:36:57 +020043#define DOS_FS32_TYPE_OFFSET 0x52
wdenk71f95112003-06-15 22:40:42 +000044
Kyle Moffett9813b752011-12-21 07:08:10 +000045static int disk_read(__u32 block, __u32 nr_blocks, void *buf)
wdenk71f95112003-06-15 22:40:42 +000046{
Łukasz Majewski0a04ed82015-09-03 14:21:39 +020047 ulong ret;
48
Simon Glass2a981dc2016-02-29 15:25:52 -070049 if (!cur_dev)
wdenk7205e402003-09-10 22:30:53 +000050 return -1;
Wolfgang Denk7385c282010-07-19 11:37:00 +020051
Simon Glass2a981dc2016-02-29 15:25:52 -070052 ret = blk_dread(cur_dev, cur_part_info.start + block, nr_blocks, buf);
Łukasz Majewski0a04ed82015-09-03 14:21:39 +020053
Tom Rini42a9f142017-08-14 21:02:08 -040054 if (ret != nr_blocks)
Łukasz Majewski0a04ed82015-09-03 14:21:39 +020055 return -1;
56
57 return ret;
wdenk71f95112003-06-15 22:40:42 +000058}
59
Simon Glass4101f682016-02-29 15:25:34 -070060int fat_set_blk_dev(struct blk_desc *dev_desc, disk_partition_t *info)
wdenk71f95112003-06-15 22:40:42 +000061{
Eric Nelson9a800ac2012-04-11 04:08:53 +000062 ALLOC_CACHE_ALIGN_BUFFER(unsigned char, buffer, dev_desc->blksz);
wdenk7205e402003-09-10 22:30:53 +000063
Stephen Warren5e8f9832012-10-17 06:44:59 +000064 cur_dev = dev_desc;
65 cur_part_info = *info;
Kyle Moffett9813b752011-12-21 07:08:10 +000066
67 /* Make sure it has a valid FAT header */
68 if (disk_read(0, 1, buffer) != 1) {
69 cur_dev = NULL;
70 return -1;
71 }
72
73 /* Check if it's actually a DOS volume */
74 if (memcmp(buffer + DOS_BOOT_MAGIC_OFFSET, "\x55\xAA", 2)) {
75 cur_dev = NULL;
76 return -1;
77 }
78
79 /* Check for FAT12/FAT16/FAT32 filesystem */
80 if (!memcmp(buffer + DOS_FS_TYPE_OFFSET, "FAT", 3))
81 return 0;
82 if (!memcmp(buffer + DOS_FS32_TYPE_OFFSET, "FAT32", 5))
83 return 0;
84
85 cur_dev = NULL;
86 return -1;
wdenk71f95112003-06-15 22:40:42 +000087}
88
Simon Glass4101f682016-02-29 15:25:34 -070089int fat_register_device(struct blk_desc *dev_desc, int part_no)
Stephen Warren5e8f9832012-10-17 06:44:59 +000090{
91 disk_partition_t info;
92
93 /* First close any currently found FAT filesystem */
94 cur_dev = NULL;
95
96 /* Read the partition table, if present */
Simon Glass3e8bd462016-02-29 15:25:48 -070097 if (part_get_info(dev_desc, part_no, &info)) {
Stephen Warren5e8f9832012-10-17 06:44:59 +000098 if (part_no != 0) {
99 printf("** Partition %d not valid on device %d **\n",
Simon Glassbcce53d2016-02-29 15:25:51 -0700100 part_no, dev_desc->devnum);
Stephen Warren5e8f9832012-10-17 06:44:59 +0000101 return -1;
102 }
103
104 info.start = 0;
105 info.size = dev_desc->lba;
106 info.blksz = dev_desc->blksz;
107 info.name[0] = 0;
108 info.type[0] = 0;
109 info.bootable = 0;
Patrick Delaunayb331cd62017-01-27 11:00:42 +0100110#if CONFIG_IS_ENABLED(PARTITION_UUIDS)
Stephen Warren5e8f9832012-10-17 06:44:59 +0000111 info.uuid[0] = 0;
112#endif
113 }
114
115 return fat_set_blk_dev(dev_desc, &info);
116}
Kyle Moffett9813b752011-12-21 07:08:10 +0000117
wdenk71f95112003-06-15 22:40:42 +0000118/*
wdenk71f95112003-06-15 22:40:42 +0000119 * Extract zero terminated short name from a directory entry.
120 */
Benoît Thébaudeau9795e072012-07-20 15:18:44 +0200121static void get_name(dir_entry *dirent, char *s_name)
wdenk71f95112003-06-15 22:40:42 +0000122{
123 char *ptr;
124
Wolfgang Denk7385c282010-07-19 11:37:00 +0200125 memcpy(s_name, dirent->name, 8);
wdenk71f95112003-06-15 22:40:42 +0000126 s_name[8] = '\0';
127 ptr = s_name;
128 while (*ptr && *ptr != ' ')
129 ptr++;
Rob Clark21a24c32017-09-09 13:15:59 -0400130 if (dirent->lcase & CASE_LOWER_BASE)
131 downcase(s_name, (unsigned)(ptr - s_name));
wdenk71f95112003-06-15 22:40:42 +0000132 if (dirent->ext[0] && dirent->ext[0] != ' ') {
Rob Clark21a24c32017-09-09 13:15:59 -0400133 *ptr++ = '.';
Wolfgang Denk7385c282010-07-19 11:37:00 +0200134 memcpy(ptr, dirent->ext, 3);
Rob Clark21a24c32017-09-09 13:15:59 -0400135 if (dirent->lcase & CASE_LOWER_EXT)
136 downcase(ptr, 3);
wdenk71f95112003-06-15 22:40:42 +0000137 ptr[3] = '\0';
138 while (*ptr && *ptr != ' ')
139 ptr++;
140 }
141 *ptr = '\0';
142 if (*s_name == DELETED_FLAG)
143 *s_name = '\0';
144 else if (*s_name == aRING)
Remy Bohmer3c2c2f42008-11-27 22:30:27 +0100145 *s_name = DELETED_FLAG;
wdenk71f95112003-06-15 22:40:42 +0000146}
147
Stefan Brünsb8948d22016-12-17 00:27:51 +0100148static int flush_dirty_fat_buffer(fsdata *mydata);
149#if !defined(CONFIG_FAT_WRITE)
150/* 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
Benoît Thébaudeaucc63b252012-07-20 15:21:08 +0200264 printf("FAT: Misaligned buffer address (%p)\n", buffer);
265
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
wdenk71f95112003-06-15 22:40:42 +0000304/*
Benoît Thébaudeau1170e632012-09-18 08:14:56 +0000305 * Read at most 'maxsize' bytes from 'pos' in the file associated with 'dentptr'
wdenk71f95112003-06-15 22:40:42 +0000306 * into 'buffer'.
Suriyan Ramasami1ad0b982014-11-17 14:39:35 -0800307 * Update the number of bytes read in *gotsize or return -1 on fatal errors.
wdenk71f95112003-06-15 22:40:42 +0000308 */
Benoît Thébaudeau1170e632012-09-18 08:14:56 +0000309__u8 get_contents_vfatname_block[MAX_CLUSTSIZE]
310 __aligned(ARCH_DMA_MINALIGN);
311
Suriyan Ramasami1ad0b982014-11-17 14:39:35 -0800312static int get_contents(fsdata *mydata, dir_entry *dentptr, loff_t pos,
313 __u8 *buffer, loff_t maxsize, loff_t *gotsize)
wdenk71f95112003-06-15 22:40:42 +0000314{
Suriyan Ramasami1ad0b982014-11-17 14:39:35 -0800315 loff_t filesize = FAT2CPU32(dentptr->size);
Sergei Shtylyovac497772011-08-08 09:38:33 +0000316 unsigned int bytesperclust = mydata->clust_size * mydata->sect_size;
wdenk71f95112003-06-15 22:40:42 +0000317 __u32 curclust = START(dentptr);
wdenk7205e402003-09-10 22:30:53 +0000318 __u32 endclust, newclust;
Suriyan Ramasami1ad0b982014-11-17 14:39:35 -0800319 loff_t actsize;
wdenk71f95112003-06-15 22:40:42 +0000320
Suriyan Ramasami1ad0b982014-11-17 14:39:35 -0800321 *gotsize = 0;
322 debug("Filesize: %llu bytes\n", filesize);
wdenk71f95112003-06-15 22:40:42 +0000323
Benoît Thébaudeau1170e632012-09-18 08:14:56 +0000324 if (pos >= filesize) {
Suriyan Ramasami1ad0b982014-11-17 14:39:35 -0800325 debug("Read position past EOF: %llu\n", pos);
326 return 0;
Benoît Thébaudeau1170e632012-09-18 08:14:56 +0000327 }
328
329 if (maxsize > 0 && filesize > pos + maxsize)
330 filesize = pos + maxsize;
wdenk71f95112003-06-15 22:40:42 +0000331
Suriyan Ramasami1ad0b982014-11-17 14:39:35 -0800332 debug("%llu bytes\n", filesize);
wdenk71f95112003-06-15 22:40:42 +0000333
Wolfgang Denk7385c282010-07-19 11:37:00 +0200334 actsize = bytesperclust;
Benoît Thébaudeau1170e632012-09-18 08:14:56 +0000335
336 /* go to cluster at pos */
337 while (actsize <= pos) {
338 curclust = get_fatent(mydata, curclust);
339 if (CHECK_CLUST(curclust, mydata->fatsize)) {
340 debug("curclust: 0x%x\n", curclust);
341 debug("Invalid FAT entry\n");
Suriyan Ramasami1ad0b982014-11-17 14:39:35 -0800342 return 0;
Benoît Thébaudeau1170e632012-09-18 08:14:56 +0000343 }
344 actsize += bytesperclust;
345 }
346
347 /* actsize > pos */
348 actsize -= bytesperclust;
349 filesize -= actsize;
350 pos -= actsize;
351
352 /* align to beginning of next cluster if any */
353 if (pos) {
Suriyan Ramasami1ad0b982014-11-17 14:39:35 -0800354 actsize = min(filesize, (loff_t)bytesperclust);
Benoît Thébaudeau1170e632012-09-18 08:14:56 +0000355 if (get_cluster(mydata, curclust, get_contents_vfatname_block,
356 (int)actsize) != 0) {
357 printf("Error reading cluster\n");
358 return -1;
359 }
360 filesize -= actsize;
361 actsize -= pos;
362 memcpy(buffer, get_contents_vfatname_block + pos, actsize);
Suriyan Ramasami1ad0b982014-11-17 14:39:35 -0800363 *gotsize += actsize;
Benoît Thébaudeau1170e632012-09-18 08:14:56 +0000364 if (!filesize)
Suriyan Ramasami1ad0b982014-11-17 14:39:35 -0800365 return 0;
Benoît Thébaudeau1170e632012-09-18 08:14:56 +0000366 buffer += actsize;
367
368 curclust = get_fatent(mydata, curclust);
369 if (CHECK_CLUST(curclust, mydata->fatsize)) {
370 debug("curclust: 0x%x\n", curclust);
371 debug("Invalid FAT entry\n");
Suriyan Ramasami1ad0b982014-11-17 14:39:35 -0800372 return 0;
Benoît Thébaudeau1170e632012-09-18 08:14:56 +0000373 }
374 }
375
376 actsize = bytesperclust;
Wolfgang Denk7385c282010-07-19 11:37:00 +0200377 endclust = curclust;
378
wdenk71f95112003-06-15 22:40:42 +0000379 do {
wdenk7205e402003-09-10 22:30:53 +0000380 /* search for consecutive clusters */
Wolfgang Denk7385c282010-07-19 11:37:00 +0200381 while (actsize < filesize) {
wdenk7205e402003-09-10 22:30:53 +0000382 newclust = get_fatent(mydata, endclust);
Wolfgang Denk7385c282010-07-19 11:37:00 +0200383 if ((newclust - 1) != endclust)
wdenk7205e402003-09-10 22:30:53 +0000384 goto getit;
michael8ce4e5c2008-03-02 23:33:46 +0100385 if (CHECK_CLUST(newclust, mydata->fatsize)) {
Wolfgang Denk7385c282010-07-19 11:37:00 +0200386 debug("curclust: 0x%x\n", newclust);
387 debug("Invalid FAT entry\n");
Suriyan Ramasami1ad0b982014-11-17 14:39:35 -0800388 return 0;
wdenk7205e402003-09-10 22:30:53 +0000389 }
Wolfgang Denk7385c282010-07-19 11:37:00 +0200390 endclust = newclust;
391 actsize += bytesperclust;
wdenk7205e402003-09-10 22:30:53 +0000392 }
Wolfgang Denk7385c282010-07-19 11:37:00 +0200393
wdenk7205e402003-09-10 22:30:53 +0000394 /* get remaining bytes */
Wolfgang Denk7385c282010-07-19 11:37:00 +0200395 actsize = filesize;
Benoît Thébaudeau0880e5b2012-07-20 15:21:37 +0200396 if (get_cluster(mydata, curclust, buffer, (int)actsize) != 0) {
Wolfgang Denk7385c282010-07-19 11:37:00 +0200397 printf("Error reading cluster\n");
wdenk7205e402003-09-10 22:30:53 +0000398 return -1;
399 }
Suriyan Ramasami1ad0b982014-11-17 14:39:35 -0800400 *gotsize += actsize;
401 return 0;
wdenk7205e402003-09-10 22:30:53 +0000402getit:
403 if (get_cluster(mydata, curclust, buffer, (int)actsize) != 0) {
Wolfgang Denk7385c282010-07-19 11:37:00 +0200404 printf("Error reading cluster\n");
wdenk7205e402003-09-10 22:30:53 +0000405 return -1;
406 }
Suriyan Ramasami1ad0b982014-11-17 14:39:35 -0800407 *gotsize += (int)actsize;
wdenk7205e402003-09-10 22:30:53 +0000408 filesize -= actsize;
409 buffer += actsize;
Wolfgang Denk7385c282010-07-19 11:37:00 +0200410
wdenk7205e402003-09-10 22:30:53 +0000411 curclust = get_fatent(mydata, endclust);
michael8ce4e5c2008-03-02 23:33:46 +0100412 if (CHECK_CLUST(curclust, mydata->fatsize)) {
Wolfgang Denk7385c282010-07-19 11:37:00 +0200413 debug("curclust: 0x%x\n", curclust);
414 printf("Invalid FAT entry\n");
Suriyan Ramasami1ad0b982014-11-17 14:39:35 -0800415 return 0;
wdenk71f95112003-06-15 22:40:42 +0000416 }
Wolfgang Denk7385c282010-07-19 11:37:00 +0200417 actsize = bytesperclust;
418 endclust = curclust;
wdenk71f95112003-06-15 22:40:42 +0000419 } while (1);
420}
421
wdenk71f95112003-06-15 22:40:42 +0000422/*
423 * Extract the file name information from 'slotptr' into 'l_name',
424 * starting at l_name[*idx].
425 * Return 1 if terminator (zero byte) is found, 0 otherwise.
426 */
Benoît Thébaudeau9795e072012-07-20 15:18:44 +0200427static int slot2str(dir_slot *slotptr, char *l_name, int *idx)
wdenk71f95112003-06-15 22:40:42 +0000428{
429 int j;
430
431 for (j = 0; j <= 8; j += 2) {
432 l_name[*idx] = slotptr->name0_4[j];
Wolfgang Denk7385c282010-07-19 11:37:00 +0200433 if (l_name[*idx] == 0x00)
434 return 1;
wdenk71f95112003-06-15 22:40:42 +0000435 (*idx)++;
436 }
437 for (j = 0; j <= 10; j += 2) {
438 l_name[*idx] = slotptr->name5_10[j];
Wolfgang Denk7385c282010-07-19 11:37:00 +0200439 if (l_name[*idx] == 0x00)
440 return 1;
wdenk71f95112003-06-15 22:40:42 +0000441 (*idx)++;
442 }
443 for (j = 0; j <= 2; j += 2) {
444 l_name[*idx] = slotptr->name11_12[j];
Wolfgang Denk7385c282010-07-19 11:37:00 +0200445 if (l_name[*idx] == 0x00)
446 return 1;
wdenk71f95112003-06-15 22:40:42 +0000447 (*idx)++;
448 }
449
450 return 0;
451}
452
wdenk71f95112003-06-15 22:40:42 +0000453/* Calculate short name checksum */
Marek Vasutff04f6d2012-10-09 07:20:22 +0000454static __u8 mkcksum(const char name[8], const char ext[3])
wdenk71f95112003-06-15 22:40:42 +0000455{
456 int i;
Wolfgang Denk7385c282010-07-19 11:37:00 +0200457
wdenk71f95112003-06-15 22:40:42 +0000458 __u8 ret = 0;
459
Marek Vasut6ad77d82013-01-11 03:35:48 +0000460 for (i = 0; i < 8; i++)
Marek Vasutff04f6d2012-10-09 07:20:22 +0000461 ret = (((ret & 1) << 7) | ((ret & 0xfe) >> 1)) + name[i];
Marek Vasut6ad77d82013-01-11 03:35:48 +0000462 for (i = 0; i < 3; i++)
Marek Vasutff04f6d2012-10-09 07:20:22 +0000463 ret = (((ret & 1) << 7) | ((ret & 0xfe) >> 1)) + ext[i];
wdenk71f95112003-06-15 22:40:42 +0000464
465 return ret;
466}
wdenk71f95112003-06-15 22:40:42 +0000467
468/*
Rob Clark8eafae22017-09-09 13:15:54 -0400469 * TODO these should go away once fat_write is reworked to use the
470 * directory iterator
wdenk71f95112003-06-15 22:40:42 +0000471 */
Eric Nelson9a800ac2012-04-11 04:08:53 +0000472__u8 get_dentfromdir_block[MAX_CLUSTSIZE]
473 __aligned(ARCH_DMA_MINALIGN);
Rob Clark8eafae22017-09-09 13:15:54 -0400474__u8 do_fat_read_at_block[MAX_CLUSTSIZE]
475 __aligned(ARCH_DMA_MINALIGN);
wdenk71f95112003-06-15 22:40:42 +0000476
wdenk71f95112003-06-15 22:40:42 +0000477/*
478 * Read boot sector and volume info from a FAT filesystem
479 */
480static int
Benoît Thébaudeau9795e072012-07-20 15:18:44 +0200481read_bootsectandvi(boot_sector *bs, volume_info *volinfo, int *fatsize)
wdenk71f95112003-06-15 22:40:42 +0000482{
Sergei Shtylyovac497772011-08-08 09:38:33 +0000483 __u8 *block;
wdenk71f95112003-06-15 22:40:42 +0000484 volume_info *vistart;
Sergei Shtylyovac497772011-08-08 09:38:33 +0000485 int ret = 0;
486
487 if (cur_dev == NULL) {
488 debug("Error: no device selected\n");
489 return -1;
490 }
491
Tuomas Tynkkynen09fa9642017-10-01 02:25:21 +0300492 block = malloc_cache_aligned(cur_dev->blksz);
Sergei Shtylyovac497772011-08-08 09:38:33 +0000493 if (block == NULL) {
494 debug("Error: allocating block\n");
495 return -1;
496 }
wdenk71f95112003-06-15 22:40:42 +0000497
Benoît Thébaudeau9795e072012-07-20 15:18:44 +0200498 if (disk_read(0, 1, block) < 0) {
Wolfgang Denk7385c282010-07-19 11:37:00 +0200499 debug("Error: reading block\n");
Sergei Shtylyovac497772011-08-08 09:38:33 +0000500 goto fail;
wdenk71f95112003-06-15 22:40:42 +0000501 }
502
503 memcpy(bs, block, sizeof(boot_sector));
Wolfgang Denk7385c282010-07-19 11:37:00 +0200504 bs->reserved = FAT2CPU16(bs->reserved);
505 bs->fat_length = FAT2CPU16(bs->fat_length);
506 bs->secs_track = FAT2CPU16(bs->secs_track);
507 bs->heads = FAT2CPU16(bs->heads);
508 bs->total_sect = FAT2CPU32(bs->total_sect);
wdenk71f95112003-06-15 22:40:42 +0000509
510 /* FAT32 entries */
511 if (bs->fat_length == 0) {
512 /* Assume FAT32 */
513 bs->fat32_length = FAT2CPU32(bs->fat32_length);
Wolfgang Denk7385c282010-07-19 11:37:00 +0200514 bs->flags = FAT2CPU16(bs->flags);
wdenk71f95112003-06-15 22:40:42 +0000515 bs->root_cluster = FAT2CPU32(bs->root_cluster);
Wolfgang Denk7385c282010-07-19 11:37:00 +0200516 bs->info_sector = FAT2CPU16(bs->info_sector);
517 bs->backup_boot = FAT2CPU16(bs->backup_boot);
518 vistart = (volume_info *)(block + sizeof(boot_sector));
wdenk71f95112003-06-15 22:40:42 +0000519 *fatsize = 32;
520 } else {
Wolfgang Denk7385c282010-07-19 11:37:00 +0200521 vistart = (volume_info *)&(bs->fat32_length);
wdenk71f95112003-06-15 22:40:42 +0000522 *fatsize = 0;
523 }
524 memcpy(volinfo, vistart, sizeof(volume_info));
525
wdenk71f95112003-06-15 22:40:42 +0000526 if (*fatsize == 32) {
Wolfgang Denk7385c282010-07-19 11:37:00 +0200527 if (strncmp(FAT32_SIGN, vistart->fs_type, SIGNLEN) == 0)
Sergei Shtylyovac497772011-08-08 09:38:33 +0000528 goto exit;
wdenk71f95112003-06-15 22:40:42 +0000529 } else {
Tom Rix651351f2009-05-20 07:55:41 -0500530 if (strncmp(FAT12_SIGN, vistart->fs_type, SIGNLEN) == 0) {
wdenk71f95112003-06-15 22:40:42 +0000531 *fatsize = 12;
Sergei Shtylyovac497772011-08-08 09:38:33 +0000532 goto exit;
wdenk71f95112003-06-15 22:40:42 +0000533 }
Tom Rix651351f2009-05-20 07:55:41 -0500534 if (strncmp(FAT16_SIGN, vistart->fs_type, SIGNLEN) == 0) {
wdenk71f95112003-06-15 22:40:42 +0000535 *fatsize = 16;
Sergei Shtylyovac497772011-08-08 09:38:33 +0000536 goto exit;
wdenk71f95112003-06-15 22:40:42 +0000537 }
538 }
539
Wolfgang Denk7385c282010-07-19 11:37:00 +0200540 debug("Error: broken fs_type sign\n");
Sergei Shtylyovac497772011-08-08 09:38:33 +0000541fail:
542 ret = -1;
543exit:
544 free(block);
545 return ret;
wdenk71f95112003-06-15 22:40:42 +0000546}
547
Rob Clark45449982017-09-09 13:15:52 -0400548static int get_fs_info(fsdata *mydata)
wdenk71f95112003-06-15 22:40:42 +0000549{
Wolfgang Denk7385c282010-07-19 11:37:00 +0200550 boot_sector bs;
551 volume_info volinfo;
Rob Clark45449982017-09-09 13:15:52 -0400552 int ret;
wdenk71f95112003-06-15 22:40:42 +0000553
Rob Clark45449982017-09-09 13:15:52 -0400554 ret = read_bootsectandvi(&bs, &volinfo, &mydata->fatsize);
555 if (ret) {
Wolfgang Denk7385c282010-07-19 11:37:00 +0200556 debug("Error: reading boot sector\n");
Rob Clark45449982017-09-09 13:15:52 -0400557 return ret;
Wolfgang Denk7385c282010-07-19 11:37:00 +0200558 }
559
Sergei Shtylyov40e21912011-08-19 09:32:34 +0000560 if (mydata->fatsize == 32) {
Wolfgang Denk7385c282010-07-19 11:37:00 +0200561 mydata->fatlength = bs.fat32_length;
Sergei Shtylyov40e21912011-08-19 09:32:34 +0000562 } else {
Wolfgang Denk7385c282010-07-19 11:37:00 +0200563 mydata->fatlength = bs.fat_length;
Sergei Shtylyov40e21912011-08-19 09:32:34 +0000564 }
wdenk71f95112003-06-15 22:40:42 +0000565
Wolfgang Denk7385c282010-07-19 11:37:00 +0200566 mydata->fat_sect = bs.reserved;
wdenk71f95112003-06-15 22:40:42 +0000567
Rob Clark45449982017-09-09 13:15:52 -0400568 mydata->rootdir_sect = mydata->fat_sect + mydata->fatlength * bs.fats;
wdenk71f95112003-06-15 22:40:42 +0000569
Sergei Shtylyovac497772011-08-08 09:38:33 +0000570 mydata->sect_size = (bs.sector_size[1] << 8) + bs.sector_size[0];
Wolfgang Denk7385c282010-07-19 11:37:00 +0200571 mydata->clust_size = bs.cluster_size;
Kyle Moffett46236b12011-12-20 07:41:13 +0000572 if (mydata->sect_size != cur_part_info.blksz) {
573 printf("Error: FAT sector size mismatch (fs=%hu, dev=%lu)\n",
574 mydata->sect_size, cur_part_info.blksz);
575 return -1;
576 }
wdenk71f95112003-06-15 22:40:42 +0000577
Wolfgang Denk7385c282010-07-19 11:37:00 +0200578 if (mydata->fatsize == 32) {
579 mydata->data_begin = mydata->rootdir_sect -
580 (mydata->clust_size * 2);
Rob Clarkc6e3baa2017-09-09 13:15:53 -0400581 mydata->root_cluster = bs.root_cluster;
Wolfgang Denk7385c282010-07-19 11:37:00 +0200582 } else {
Rob Clark45449982017-09-09 13:15:52 -0400583 mydata->rootdir_size = ((bs.dir_entries[1] * (int)256 +
584 bs.dir_entries[0]) *
585 sizeof(dir_entry)) /
586 mydata->sect_size;
Wolfgang Denk7385c282010-07-19 11:37:00 +0200587 mydata->data_begin = mydata->rootdir_sect +
Rob Clark45449982017-09-09 13:15:52 -0400588 mydata->rootdir_size -
Wolfgang Denk7385c282010-07-19 11:37:00 +0200589 (mydata->clust_size * 2);
Rob Clark265edc02017-09-09 13:16:00 -0400590 mydata->root_cluster =
591 sect_to_clust(mydata, mydata->rootdir_sect);
wdenk71f95112003-06-15 22:40:42 +0000592 }
wdenk71f95112003-06-15 22:40:42 +0000593
Wolfgang Denk7385c282010-07-19 11:37:00 +0200594 mydata->fatbufnum = -1;
Stefan Brüns3c0ed9c2016-09-11 22:51:40 +0200595 mydata->fat_dirty = 0;
Tuomas Tynkkynen09fa9642017-10-01 02:25:21 +0300596 mydata->fatbuf = malloc_cache_aligned(FATBUFSIZE);
Sergei Shtylyovac497772011-08-08 09:38:33 +0000597 if (mydata->fatbuf == NULL) {
598 debug("Error: allocating memory\n");
599 return -1;
600 }
Wolfgang Denk7385c282010-07-19 11:37:00 +0200601
Wolfgang Denk7385c282010-07-19 11:37:00 +0200602 debug("FAT%d, fat_sect: %d, fatlength: %d\n",
603 mydata->fatsize, mydata->fat_sect, mydata->fatlength);
604 debug("Rootdir begins at cluster: %d, sector: %d, offset: %x\n"
605 "Data begins at: %d\n",
Rob Clarkc6e3baa2017-09-09 13:15:53 -0400606 mydata->root_cluster,
Wolfgang Denk7385c282010-07-19 11:37:00 +0200607 mydata->rootdir_sect,
Sergei Shtylyovac497772011-08-08 09:38:33 +0000608 mydata->rootdir_sect * mydata->sect_size, mydata->data_begin);
609 debug("Sector size: %d, cluster size: %d\n", mydata->sect_size,
610 mydata->clust_size);
Wolfgang Denk7385c282010-07-19 11:37:00 +0200611
Rob Clark45449982017-09-09 13:15:52 -0400612 return 0;
613}
614
Rob Clarkc6e3baa2017-09-09 13:15:53 -0400615
616/*
617 * Directory iterator, to simplify filesystem traversal
618 *
619 * Implements an iterator pattern to traverse directory tables,
620 * transparently handling directory tables split across multiple
621 * clusters, and the difference between FAT12/FAT16 root directory
622 * (contiguous) and subdirectories + FAT32 root (chained).
623 *
624 * Rough usage:
625 *
626 * for (fat_itr_root(&itr, fsdata); fat_itr_next(&itr); ) {
627 * // to traverse down to a subdirectory pointed to by
628 * // current iterator position:
629 * fat_itr_child(&itr, &itr);
630 * }
631 *
632 * For more complete example, see fat_itr_resolve()
633 */
634
635typedef struct {
636 fsdata *fsdata; /* filesystem parameters */
637 unsigned clust; /* current cluster */
638 int last_cluster; /* set once we've read last cluster */
639 int is_root; /* is iterator at root directory */
640 int remaining; /* remaining dent's in current cluster */
641
642 /* current iterator position values: */
643 dir_entry *dent; /* current directory entry */
644 char l_name[VFAT_MAXLEN_BYTES]; /* long (vfat) name */
645 char s_name[14]; /* short 8.3 name */
646 char *name; /* l_name if there is one, else s_name */
647
648 /* storage for current cluster in memory: */
649 u8 block[MAX_CLUSTSIZE] __aligned(ARCH_DMA_MINALIGN);
650} fat_itr;
651
652static int fat_itr_isdir(fat_itr *itr);
653
654/**
655 * fat_itr_root() - initialize an iterator to start at the root
656 * directory
657 *
658 * @itr: iterator to initialize
659 * @fsdata: filesystem data for the partition
660 * @return 0 on success, else -errno
661 */
662static int fat_itr_root(fat_itr *itr, fsdata *fsdata)
663{
664 if (get_fs_info(fsdata))
665 return -ENXIO;
666
667 itr->fsdata = fsdata;
668 itr->clust = fsdata->root_cluster;
669 itr->dent = NULL;
670 itr->remaining = 0;
671 itr->last_cluster = 0;
672 itr->is_root = 1;
673
674 return 0;
675}
676
677/**
678 * fat_itr_child() - initialize an iterator to descend into a sub-
679 * directory
680 *
681 * Initializes 'itr' to iterate the contents of the directory at
682 * the current cursor position of 'parent'. It is an error to
683 * call this if the current cursor of 'parent' is pointing at a
684 * regular file.
685 *
686 * Note that 'itr' and 'parent' can be the same pointer if you do
687 * not need to preserve 'parent' after this call, which is useful
688 * for traversing directory structure to resolve a file/directory.
689 *
690 * @itr: iterator to initialize
691 * @parent: the iterator pointing at a directory entry in the
692 * parent directory of the directory to iterate
693 */
694static void fat_itr_child(fat_itr *itr, fat_itr *parent)
695{
696 fsdata *mydata = parent->fsdata; /* for silly macros */
697 unsigned clustnum = START(parent->dent);
698
699 assert(fat_itr_isdir(parent));
700
701 itr->fsdata = parent->fsdata;
702 if (clustnum > 0) {
703 itr->clust = clustnum;
Tuomas Tynkkynen8df87312017-09-25 22:06:33 +0300704 itr->is_root = 0;
Rob Clarkc6e3baa2017-09-09 13:15:53 -0400705 } else {
706 itr->clust = parent->fsdata->root_cluster;
Tuomas Tynkkynen8df87312017-09-25 22:06:33 +0300707 itr->is_root = 1;
Rob Clarkc6e3baa2017-09-09 13:15:53 -0400708 }
709 itr->dent = NULL;
710 itr->remaining = 0;
711 itr->last_cluster = 0;
Rob Clarkc6e3baa2017-09-09 13:15:53 -0400712}
713
714static void *next_cluster(fat_itr *itr)
715{
716 fsdata *mydata = itr->fsdata; /* for silly macros */
717 int ret;
718 u32 sect;
719
720 /* have we reached the end? */
721 if (itr->last_cluster)
722 return NULL;
723
724 sect = clust_to_sect(itr->fsdata, itr->clust);
725
726 debug("FAT read(sect=%d), clust_size=%d, DIRENTSPERBLOCK=%zd\n",
727 sect, itr->fsdata->clust_size, DIRENTSPERBLOCK);
728
729 /*
730 * NOTE: do_fat_read_at() had complicated logic to deal w/
731 * vfat names that span multiple clusters in the fat16 case,
732 * which get_dentfromdir() probably also needed (and was
733 * missing). And not entirely sure what fat32 didn't have
734 * the same issue.. We solve that by only caring about one
735 * dent at a time and iteratively constructing the vfat long
736 * name.
737 */
738 ret = disk_read(sect, itr->fsdata->clust_size,
739 itr->block);
740 if (ret < 0) {
741 debug("Error: reading block\n");
742 return NULL;
743 }
744
745 if (itr->is_root && itr->fsdata->fatsize != 32) {
746 itr->clust++;
747 sect = clust_to_sect(itr->fsdata, itr->clust);
748 if (sect - itr->fsdata->rootdir_sect >=
749 itr->fsdata->rootdir_size) {
750 debug("cursect: 0x%x\n", itr->clust);
751 itr->last_cluster = 1;
752 }
753 } else {
754 itr->clust = get_fatent(itr->fsdata, itr->clust);
755 if (CHECK_CLUST(itr->clust, itr->fsdata->fatsize)) {
756 debug("cursect: 0x%x\n", itr->clust);
757 itr->last_cluster = 1;
758 }
759 }
760
761 return itr->block;
762}
763
764static dir_entry *next_dent(fat_itr *itr)
765{
766 if (itr->remaining == 0) {
767 struct dir_entry *dent = next_cluster(itr);
768 unsigned nbytes = itr->fsdata->sect_size *
769 itr->fsdata->clust_size;
770
771 /* have we reached the last cluster? */
772 if (!dent)
773 return NULL;
774
775 itr->remaining = nbytes / sizeof(dir_entry) - 1;
776 itr->dent = dent;
777 } else {
778 itr->remaining--;
779 itr->dent++;
780 }
781
782 /* have we reached the last valid entry? */
783 if (itr->dent->name[0] == 0)
784 return NULL;
785
786 return itr->dent;
787}
788
789static dir_entry *extract_vfat_name(fat_itr *itr)
790{
791 struct dir_entry *dent = itr->dent;
792 int seqn = itr->dent->name[0] & ~LAST_LONG_ENTRY_MASK;
793 u8 chksum, alias_checksum = ((dir_slot *)dent)->alias_checksum;
794 int n = 0;
795
796 while (seqn--) {
797 char buf[13];
798 int idx = 0;
799
800 slot2str((dir_slot *)dent, buf, &idx);
801
802 /* shift accumulated long-name up and copy new part in: */
803 memmove(itr->l_name + idx, itr->l_name, n);
804 memcpy(itr->l_name, buf, idx);
805 n += idx;
806
807 dent = next_dent(itr);
808 if (!dent)
809 return NULL;
810 }
811
812 itr->l_name[n] = '\0';
813
814 chksum = mkcksum(dent->name, dent->ext);
815
816 /* checksum mismatch could mean deleted file, etc.. skip it: */
817 if (chksum != alias_checksum) {
818 debug("** chksum=%x, alias_checksum=%x, l_name=%s, s_name=%8s.%3s\n",
819 chksum, alias_checksum, itr->l_name, dent->name, dent->ext);
820 return NULL;
821 }
822
823 return dent;
824}
825
826/**
827 * fat_itr_next() - step to the next entry in a directory
828 *
829 * Must be called once on a new iterator before the cursor is valid.
830 *
831 * @itr: the iterator to iterate
832 * @return boolean, 1 if success or 0 if no more entries in the
833 * current directory
834 */
835static int fat_itr_next(fat_itr *itr)
836{
837 dir_entry *dent;
838
839 itr->name = NULL;
840
841 while (1) {
842 dent = next_dent(itr);
843 if (!dent)
844 return 0;
845
846 if (dent->name[0] == DELETED_FLAG ||
847 dent->name[0] == aRING)
848 continue;
849
850 if (dent->attr & ATTR_VOLUME) {
Tuomas Tynkkynen8bad6cb2018-01-05 02:45:21 +0200851 if ((dent->attr & ATTR_VFAT) == ATTR_VFAT &&
Rob Clarkc6e3baa2017-09-09 13:15:53 -0400852 (dent->name[0] & LAST_LONG_ENTRY_MASK)) {
853 dent = extract_vfat_name(itr);
854 if (!dent)
855 continue;
856 itr->name = itr->l_name;
857 break;
858 } else {
859 /* Volume label or VFAT entry, skip */
860 continue;
861 }
862 }
863
864 break;
865 }
866
867 get_name(dent, itr->s_name);
868 if (!itr->name)
869 itr->name = itr->s_name;
870
871 return 1;
872}
873
874/**
875 * fat_itr_isdir() - is current cursor position pointing to a directory
876 *
877 * @itr: the iterator
878 * @return true if cursor is at a directory
879 */
880static int fat_itr_isdir(fat_itr *itr)
881{
882 return !!(itr->dent->attr & ATTR_DIR);
883}
884
885/*
886 * Helpers:
887 */
888
889#define TYPE_FILE 0x1
890#define TYPE_DIR 0x2
891#define TYPE_ANY (TYPE_FILE | TYPE_DIR)
892
893/**
894 * fat_itr_resolve() - traverse directory structure to resolve the
895 * requested path.
896 *
897 * Traverse directory structure to the requested path. If the specified
898 * path is to a directory, this will descend into the directory and
899 * leave it iterator at the start of the directory. If the path is to a
900 * file, it will leave the iterator in the parent directory with current
901 * cursor at file's entry in the directory.
902 *
903 * @itr: iterator initialized to root
904 * @path: the requested path
905 * @type: bitmask of allowable file types
906 * @return 0 on success or -errno
907 */
908static int fat_itr_resolve(fat_itr *itr, const char *path, unsigned type)
909{
910 const char *next;
911
912 /* chomp any extra leading slashes: */
913 while (path[0] && ISDIRDELIM(path[0]))
914 path++;
915
916 /* are we at the end? */
917 if (strlen(path) == 0) {
918 if (!(type & TYPE_DIR))
919 return -ENOENT;
920 return 0;
921 }
922
923 /* find length of next path entry: */
924 next = path;
925 while (next[0] && !ISDIRDELIM(next[0]))
926 next++;
927
928 while (fat_itr_next(itr)) {
929 int match = 0;
930 unsigned n = max(strlen(itr->name), (size_t)(next - path));
931
932 /* check both long and short name: */
933 if (!strncasecmp(path, itr->name, n))
934 match = 1;
935 else if (itr->name != itr->s_name &&
936 !strncasecmp(path, itr->s_name, n))
937 match = 1;
938
939 if (!match)
940 continue;
941
942 if (fat_itr_isdir(itr)) {
943 /* recurse into directory: */
944 fat_itr_child(itr, itr);
945 return fat_itr_resolve(itr, next, type);
946 } else if (next[0]) {
947 /*
948 * If next is not empty then we have a case
949 * like: /path/to/realfile/nonsense
950 */
951 debug("bad trailing path: %s\n", next);
952 return -ENOENT;
953 } else if (!(type & TYPE_FILE)) {
954 return -ENOTDIR;
955 } else {
956 return 0;
957 }
958 }
959
960 return -ENOENT;
961}
962
Benoît Thébaudeau9795e072012-07-20 15:18:44 +0200963int file_fat_detectfs(void)
wdenk71f95112003-06-15 22:40:42 +0000964{
Wolfgang Denk7385c282010-07-19 11:37:00 +0200965 boot_sector bs;
966 volume_info volinfo;
967 int fatsize;
968 char vol_label[12];
wdenk71f95112003-06-15 22:40:42 +0000969
Wolfgang Denk7385c282010-07-19 11:37:00 +0200970 if (cur_dev == NULL) {
wdenk7205e402003-09-10 22:30:53 +0000971 printf("No current device\n");
972 return 1;
973 }
Wolfgang Denk7385c282010-07-19 11:37:00 +0200974
Simon Glassfc843a02017-05-17 03:25:30 -0600975#if defined(CONFIG_IDE) || \
Simon Glass10e40d52017-06-14 21:28:25 -0600976 defined(CONFIG_SATA) || \
Simon Glassc649e3c2016-05-01 11:36:02 -0600977 defined(CONFIG_SCSI) || \
Jon Loeligerdd60d122007-07-09 17:56:50 -0500978 defined(CONFIG_CMD_USB) || \
Andy Fleming21f6f962008-01-16 13:06:59 -0600979 defined(CONFIG_MMC)
wdenk7205e402003-09-10 22:30:53 +0000980 printf("Interface: ");
Wolfgang Denk7385c282010-07-19 11:37:00 +0200981 switch (cur_dev->if_type) {
982 case IF_TYPE_IDE:
983 printf("IDE");
984 break;
985 case IF_TYPE_SATA:
986 printf("SATA");
987 break;
988 case IF_TYPE_SCSI:
989 printf("SCSI");
990 break;
991 case IF_TYPE_ATAPI:
992 printf("ATAPI");
993 break;
994 case IF_TYPE_USB:
995 printf("USB");
996 break;
997 case IF_TYPE_DOC:
998 printf("DOC");
999 break;
1000 case IF_TYPE_MMC:
1001 printf("MMC");
1002 break;
1003 default:
1004 printf("Unknown");
wdenk7205e402003-09-10 22:30:53 +00001005 }
Wolfgang Denk7385c282010-07-19 11:37:00 +02001006
Simon Glassbcce53d2016-02-29 15:25:51 -07001007 printf("\n Device %d: ", cur_dev->devnum);
wdenk7205e402003-09-10 22:30:53 +00001008 dev_print(cur_dev);
1009#endif
Wolfgang Denk7385c282010-07-19 11:37:00 +02001010
1011 if (read_bootsectandvi(&bs, &volinfo, &fatsize)) {
wdenk7205e402003-09-10 22:30:53 +00001012 printf("\nNo valid FAT fs found\n");
1013 return 1;
1014 }
Wolfgang Denk7385c282010-07-19 11:37:00 +02001015
1016 memcpy(vol_label, volinfo.volume_label, 11);
wdenk7205e402003-09-10 22:30:53 +00001017 vol_label[11] = '\0';
Wolfgang Denk7385c282010-07-19 11:37:00 +02001018 volinfo.fs_type[5] = '\0';
1019
Stephen Warren461f86e2012-10-17 06:44:57 +00001020 printf("Filesystem: %s \"%s\"\n", volinfo.fs_type, vol_label);
Wolfgang Denk7385c282010-07-19 11:37:00 +02001021
wdenk7205e402003-09-10 22:30:53 +00001022 return 0;
wdenk71f95112003-06-15 22:40:42 +00001023}
1024
Stephen Warrenb7b5f312014-02-03 13:21:10 -07001025int fat_exists(const char *filename)
1026{
Rob Clark8eafae22017-09-09 13:15:54 -04001027 fsdata fsdata;
Tom Rini24600982017-09-22 07:37:43 -04001028 fat_itr *itr;
Suriyan Ramasami1ad0b982014-11-17 14:39:35 -08001029 int ret;
Suriyan Ramasami1ad0b982014-11-17 14:39:35 -08001030
Tuomas Tynkkynen09fa9642017-10-01 02:25:21 +03001031 itr = malloc_cache_aligned(sizeof(fat_itr));
Tuomas Tynkkynenaf609e32017-10-01 02:25:22 +03001032 if (!itr)
1033 return 0;
Rob Clark8eafae22017-09-09 13:15:54 -04001034 ret = fat_itr_root(itr, &fsdata);
1035 if (ret)
Tuomas Tynkkynenaf609e32017-10-01 02:25:22 +03001036 goto out;
Rob Clark8eafae22017-09-09 13:15:54 -04001037
1038 ret = fat_itr_resolve(itr, filename, TYPE_ANY);
Rob Clark725ffdb2017-09-12 16:40:01 -04001039 free(fsdata.fatbuf);
Tuomas Tynkkynenaf609e32017-10-01 02:25:22 +03001040out:
Tom Rini24600982017-09-22 07:37:43 -04001041 free(itr);
Suriyan Ramasami1ad0b982014-11-17 14:39:35 -08001042 return ret == 0;
Stephen Warrenb7b5f312014-02-03 13:21:10 -07001043}
1044
Suriyan Ramasamid455d872014-11-17 14:39:38 -08001045int fat_size(const char *filename, loff_t *size)
Stephen Warrencf659812014-06-11 12:47:26 -06001046{
Rob Clark8eafae22017-09-09 13:15:54 -04001047 fsdata fsdata;
Tom Rini24600982017-09-22 07:37:43 -04001048 fat_itr *itr;
Rob Clark8eafae22017-09-09 13:15:54 -04001049 int ret;
1050
Tuomas Tynkkynen09fa9642017-10-01 02:25:21 +03001051 itr = malloc_cache_aligned(sizeof(fat_itr));
Tuomas Tynkkynenaf609e32017-10-01 02:25:22 +03001052 if (!itr)
1053 return -ENOMEM;
Rob Clark8eafae22017-09-09 13:15:54 -04001054 ret = fat_itr_root(itr, &fsdata);
1055 if (ret)
Tuomas Tynkkynenaf609e32017-10-01 02:25:22 +03001056 goto out_free_itr;
Rob Clark8eafae22017-09-09 13:15:54 -04001057
1058 ret = fat_itr_resolve(itr, filename, TYPE_FILE);
1059 if (ret) {
1060 /*
1061 * Directories don't have size, but fs_size() is not
1062 * expected to fail if passed a directory path:
1063 */
Rob Clark725ffdb2017-09-12 16:40:01 -04001064 free(fsdata.fatbuf);
Rob Clark8eafae22017-09-09 13:15:54 -04001065 fat_itr_root(itr, &fsdata);
1066 if (!fat_itr_resolve(itr, filename, TYPE_DIR)) {
1067 *size = 0;
Rob Clark725ffdb2017-09-12 16:40:01 -04001068 ret = 0;
Rob Clark8eafae22017-09-09 13:15:54 -04001069 }
Tuomas Tynkkynenaf609e32017-10-01 02:25:22 +03001070 goto out_free_both;
Rob Clark8eafae22017-09-09 13:15:54 -04001071 }
1072
1073 *size = FAT2CPU32(itr->dent->size);
Tuomas Tynkkynenaf609e32017-10-01 02:25:22 +03001074out_free_both:
Rob Clark725ffdb2017-09-12 16:40:01 -04001075 free(fsdata.fatbuf);
Tuomas Tynkkynenaf609e32017-10-01 02:25:22 +03001076out_free_itr:
Tom Rini24600982017-09-22 07:37:43 -04001077 free(itr);
Rob Clark725ffdb2017-09-12 16:40:01 -04001078 return ret;
Stephen Warrencf659812014-06-11 12:47:26 -06001079}
1080
Suriyan Ramasami1ad0b982014-11-17 14:39:35 -08001081int file_fat_read_at(const char *filename, loff_t pos, void *buffer,
1082 loff_t maxsize, loff_t *actread)
wdenk71f95112003-06-15 22:40:42 +00001083{
Rob Clark8eafae22017-09-09 13:15:54 -04001084 fsdata fsdata;
Tom Rini24600982017-09-22 07:37:43 -04001085 fat_itr *itr;
Rob Clark8eafae22017-09-09 13:15:54 -04001086 int ret;
1087
Tuomas Tynkkynen09fa9642017-10-01 02:25:21 +03001088 itr = malloc_cache_aligned(sizeof(fat_itr));
Tuomas Tynkkynenaf609e32017-10-01 02:25:22 +03001089 if (!itr)
1090 return -ENOMEM;
Rob Clark8eafae22017-09-09 13:15:54 -04001091 ret = fat_itr_root(itr, &fsdata);
1092 if (ret)
Tuomas Tynkkynenaf609e32017-10-01 02:25:22 +03001093 goto out_free_itr;
Rob Clark8eafae22017-09-09 13:15:54 -04001094
1095 ret = fat_itr_resolve(itr, filename, TYPE_FILE);
1096 if (ret)
Tuomas Tynkkynenaf609e32017-10-01 02:25:22 +03001097 goto out_free_both;
Rob Clark8eafae22017-09-09 13:15:54 -04001098
Heinrich Schuchardtd2f71582018-01-01 21:31:58 +01001099 debug("reading %s\n", filename);
Rob Clark725ffdb2017-09-12 16:40:01 -04001100 ret = get_contents(&fsdata, itr->dent, pos, buffer, maxsize, actread);
1101
Tuomas Tynkkynenaf609e32017-10-01 02:25:22 +03001102out_free_both:
Rob Clark725ffdb2017-09-12 16:40:01 -04001103 free(fsdata.fatbuf);
Tuomas Tynkkynenaf609e32017-10-01 02:25:22 +03001104out_free_itr:
Tom Rini24600982017-09-22 07:37:43 -04001105 free(itr);
Rob Clark725ffdb2017-09-12 16:40:01 -04001106 return ret;
Benoît Thébaudeau1170e632012-09-18 08:14:56 +00001107}
1108
Suriyan Ramasami1ad0b982014-11-17 14:39:35 -08001109int file_fat_read(const char *filename, void *buffer, int maxsize)
Benoît Thébaudeau1170e632012-09-18 08:14:56 +00001110{
Suriyan Ramasami1ad0b982014-11-17 14:39:35 -08001111 loff_t actread;
1112 int ret;
1113
1114 ret = file_fat_read_at(filename, 0, buffer, maxsize, &actread);
1115 if (ret)
1116 return ret;
1117 else
1118 return actread;
wdenk71f95112003-06-15 22:40:42 +00001119}
Simon Glasse6d52412012-12-26 09:53:33 +00001120
Suriyan Ramasamid455d872014-11-17 14:39:38 -08001121int fat_read_file(const char *filename, void *buf, loff_t offset, loff_t len,
1122 loff_t *actread)
Simon Glasse6d52412012-12-26 09:53:33 +00001123{
Suriyan Ramasami1ad0b982014-11-17 14:39:35 -08001124 int ret;
Simon Glasse6d52412012-12-26 09:53:33 +00001125
Suriyan Ramasamid455d872014-11-17 14:39:38 -08001126 ret = file_fat_read_at(filename, offset, buf, len, actread);
1127 if (ret)
Simon Glasse6d52412012-12-26 09:53:33 +00001128 printf("** Unable to read file %s **\n", filename);
Simon Glasse6d52412012-12-26 09:53:33 +00001129
Suriyan Ramasamid455d872014-11-17 14:39:38 -08001130 return ret;
Simon Glasse6d52412012-12-26 09:53:33 +00001131}
1132
Rob Clark1f403662017-09-09 13:15:56 -04001133typedef struct {
1134 struct fs_dir_stream parent;
1135 struct fs_dirent dirent;
1136 fsdata fsdata;
1137 fat_itr itr;
1138} fat_dir;
1139
1140int fat_opendir(const char *filename, struct fs_dir_stream **dirsp)
1141{
Neil Armstrong34dd8532017-11-24 09:54:41 +01001142 fat_dir *dir;
Rob Clark1f403662017-09-09 13:15:56 -04001143 int ret;
1144
Neil Armstrong34dd8532017-11-24 09:54:41 +01001145 dir = malloc_cache_aligned(sizeof(*dir));
Rob Clark1f403662017-09-09 13:15:56 -04001146 if (!dir)
1147 return -ENOMEM;
Neil Armstrong34dd8532017-11-24 09:54:41 +01001148 memset(dir, 0, sizeof(*dir));
Rob Clark1f403662017-09-09 13:15:56 -04001149
1150 ret = fat_itr_root(&dir->itr, &dir->fsdata);
1151 if (ret)
Tuomas Tynkkynenaf609e32017-10-01 02:25:22 +03001152 goto fail_free_dir;
Rob Clark1f403662017-09-09 13:15:56 -04001153
1154 ret = fat_itr_resolve(&dir->itr, filename, TYPE_DIR);
1155 if (ret)
Tuomas Tynkkynenaf609e32017-10-01 02:25:22 +03001156 goto fail_free_both;
Rob Clark1f403662017-09-09 13:15:56 -04001157
1158 *dirsp = (struct fs_dir_stream *)dir;
1159 return 0;
1160
Tuomas Tynkkynenaf609e32017-10-01 02:25:22 +03001161fail_free_both:
Rob Clark725ffdb2017-09-12 16:40:01 -04001162 free(dir->fsdata.fatbuf);
Tuomas Tynkkynenaf609e32017-10-01 02:25:22 +03001163fail_free_dir:
Rob Clark1f403662017-09-09 13:15:56 -04001164 free(dir);
1165 return ret;
1166}
1167
1168int fat_readdir(struct fs_dir_stream *dirs, struct fs_dirent **dentp)
1169{
1170 fat_dir *dir = (fat_dir *)dirs;
1171 struct fs_dirent *dent = &dir->dirent;
1172
1173 if (!fat_itr_next(&dir->itr))
1174 return -ENOENT;
1175
1176 memset(dent, 0, sizeof(*dent));
1177 strcpy(dent->name, dir->itr.name);
1178
1179 if (fat_itr_isdir(&dir->itr)) {
1180 dent->type = FS_DT_DIR;
1181 } else {
1182 dent->type = FS_DT_REG;
1183 dent->size = FAT2CPU32(dir->itr.dent->size);
1184 }
1185
1186 *dentp = dent;
1187
1188 return 0;
1189}
1190
1191void fat_closedir(struct fs_dir_stream *dirs)
1192{
1193 fat_dir *dir = (fat_dir *)dirs;
Rob Clark725ffdb2017-09-12 16:40:01 -04001194 free(dir->fsdata.fatbuf);
Rob Clark1f403662017-09-09 13:15:56 -04001195 free(dir);
1196}
1197
Simon Glasse6d52412012-12-26 09:53:33 +00001198void fat_close(void)
1199{
1200}