blob: 82ddb7eab1b64fe6bb8014f9379028dbfc888dd6 [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
Richard Genoudcb940c72012-12-13 03:30:10 +000025#ifdef CONFIG_SUPPORT_VFAT
26static const int vfat_enabled = 1;
27#else
28static const int vfat_enabled = 0;
29#endif
30
wdenk71f95112003-06-15 22:40:42 +000031/*
32 * Convert a string to lowercase.
33 */
Benoît Thébaudeau9795e072012-07-20 15:18:44 +020034static void downcase(char *str)
wdenk71f95112003-06-15 22:40:42 +000035{
36 while (*str != '\0') {
Richard Genoudfb7e16c2012-12-13 00:47:36 +000037 *str = tolower(*str);
wdenk71f95112003-06-15 22:40:42 +000038 str++;
39 }
40}
41
Simon Glass4101f682016-02-29 15:25:34 -070042static struct blk_desc *cur_dev;
Kyle Moffett9813b752011-12-21 07:08:10 +000043static disk_partition_t cur_part_info;
Wolfgang Denk7385c282010-07-19 11:37:00 +020044
Kyle Moffett9813b752011-12-21 07:08:10 +000045#define DOS_BOOT_MAGIC_OFFSET 0x1fe
wdenk7205e402003-09-10 22:30:53 +000046#define DOS_FS_TYPE_OFFSET 0x36
Wolfgang Denk66c2d732010-07-19 11:36:57 +020047#define DOS_FS32_TYPE_OFFSET 0x52
wdenk71f95112003-06-15 22:40:42 +000048
Kyle Moffett9813b752011-12-21 07:08:10 +000049static int disk_read(__u32 block, __u32 nr_blocks, void *buf)
wdenk71f95112003-06-15 22:40:42 +000050{
Łukasz Majewski0a04ed82015-09-03 14:21:39 +020051 ulong ret;
52
Simon Glass2a981dc2016-02-29 15:25:52 -070053 if (!cur_dev)
wdenk7205e402003-09-10 22:30:53 +000054 return -1;
Wolfgang Denk7385c282010-07-19 11:37:00 +020055
Simon Glass2a981dc2016-02-29 15:25:52 -070056 ret = blk_dread(cur_dev, cur_part_info.start + block, nr_blocks, buf);
Łukasz Majewski0a04ed82015-09-03 14:21:39 +020057
Tom Rini42a9f142017-08-14 21:02:08 -040058 if (ret != nr_blocks)
Łukasz Majewski0a04ed82015-09-03 14:21:39 +020059 return -1;
60
61 return ret;
wdenk71f95112003-06-15 22:40:42 +000062}
63
Simon Glass4101f682016-02-29 15:25:34 -070064int fat_set_blk_dev(struct blk_desc *dev_desc, disk_partition_t *info)
wdenk71f95112003-06-15 22:40:42 +000065{
Eric Nelson9a800ac2012-04-11 04:08:53 +000066 ALLOC_CACHE_ALIGN_BUFFER(unsigned char, buffer, dev_desc->blksz);
wdenk7205e402003-09-10 22:30:53 +000067
Stephen Warren5e8f9832012-10-17 06:44:59 +000068 cur_dev = dev_desc;
69 cur_part_info = *info;
Kyle Moffett9813b752011-12-21 07:08:10 +000070
71 /* Make sure it has a valid FAT header */
72 if (disk_read(0, 1, buffer) != 1) {
73 cur_dev = NULL;
74 return -1;
75 }
76
77 /* Check if it's actually a DOS volume */
78 if (memcmp(buffer + DOS_BOOT_MAGIC_OFFSET, "\x55\xAA", 2)) {
79 cur_dev = NULL;
80 return -1;
81 }
82
83 /* Check for FAT12/FAT16/FAT32 filesystem */
84 if (!memcmp(buffer + DOS_FS_TYPE_OFFSET, "FAT", 3))
85 return 0;
86 if (!memcmp(buffer + DOS_FS32_TYPE_OFFSET, "FAT32", 5))
87 return 0;
88
89 cur_dev = NULL;
90 return -1;
wdenk71f95112003-06-15 22:40:42 +000091}
92
Simon Glass4101f682016-02-29 15:25:34 -070093int fat_register_device(struct blk_desc *dev_desc, int part_no)
Stephen Warren5e8f9832012-10-17 06:44:59 +000094{
95 disk_partition_t info;
96
97 /* First close any currently found FAT filesystem */
98 cur_dev = NULL;
99
100 /* Read the partition table, if present */
Simon Glass3e8bd462016-02-29 15:25:48 -0700101 if (part_get_info(dev_desc, part_no, &info)) {
Stephen Warren5e8f9832012-10-17 06:44:59 +0000102 if (part_no != 0) {
103 printf("** Partition %d not valid on device %d **\n",
Simon Glassbcce53d2016-02-29 15:25:51 -0700104 part_no, dev_desc->devnum);
Stephen Warren5e8f9832012-10-17 06:44:59 +0000105 return -1;
106 }
107
108 info.start = 0;
109 info.size = dev_desc->lba;
110 info.blksz = dev_desc->blksz;
111 info.name[0] = 0;
112 info.type[0] = 0;
113 info.bootable = 0;
Patrick Delaunayb331cd62017-01-27 11:00:42 +0100114#if CONFIG_IS_ENABLED(PARTITION_UUIDS)
Stephen Warren5e8f9832012-10-17 06:44:59 +0000115 info.uuid[0] = 0;
116#endif
117 }
118
119 return fat_set_blk_dev(dev_desc, &info);
120}
Kyle Moffett9813b752011-12-21 07:08:10 +0000121
wdenk71f95112003-06-15 22:40:42 +0000122/*
wdenk71f95112003-06-15 22:40:42 +0000123 * Extract zero terminated short name from a directory entry.
124 */
Benoît Thébaudeau9795e072012-07-20 15:18:44 +0200125static void get_name(dir_entry *dirent, char *s_name)
wdenk71f95112003-06-15 22:40:42 +0000126{
127 char *ptr;
128
Wolfgang Denk7385c282010-07-19 11:37:00 +0200129 memcpy(s_name, dirent->name, 8);
wdenk71f95112003-06-15 22:40:42 +0000130 s_name[8] = '\0';
131 ptr = s_name;
132 while (*ptr && *ptr != ' ')
133 ptr++;
134 if (dirent->ext[0] && dirent->ext[0] != ' ') {
135 *ptr = '.';
136 ptr++;
Wolfgang Denk7385c282010-07-19 11:37:00 +0200137 memcpy(ptr, dirent->ext, 3);
wdenk71f95112003-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 Bohmer3c2c2f42008-11-27 22:30:27 +0100146 *s_name = DELETED_FLAG;
Wolfgang Denk7385c282010-07-19 11:37:00 +0200147 downcase(s_name);
wdenk71f95112003-06-15 22:40:42 +0000148}
149
Stefan Brünsb8948d22016-12-17 00:27:51 +0100150static int flush_dirty_fat_buffer(fsdata *mydata);
151#if !defined(CONFIG_FAT_WRITE)
152/* Stub for read only operation */
153int flush_dirty_fat_buffer(fsdata *mydata)
154{
155 (void)(mydata);
156 return 0;
157}
158#endif
159
wdenk71f95112003-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ébaudeau9795e072012-07-20 15:18:44 +0200164static __u32 get_fatent(fsdata *mydata, __u32 entry)
wdenk71f95112003-06-15 22:40:42 +0000165{
166 __u32 bufnum;
Stefan Brünsb352cae2017-01-26 20:22:36 +0000167 __u32 offset, off8;
wdenk71f95112003-06-15 22:40:42 +0000168 __u32 ret = 0x00;
169
Stefan Brünsb8948d22016-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
wdenk71f95112003-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ünsb8948d22016-12-17 00:27:51 +0100194 debug("FAT%d: entry: 0x%08x = %d, offset: 0x%04x = %d\n",
Wolfgang Denk7385c282010-07-19 11:37:00 +0200195 mydata->fatsize, entry, entry, offset, offset);
Wolfgang Denk2aa98c62010-07-19 11:36:58 +0200196
wdenk71f95112003-06-15 22:40:42 +0000197 /* Read a new block of FAT entries into the cache. */
198 if (bufnum != mydata->fatbufnum) {
Sergei Shtylyov60b36f02011-08-08 09:39:29 +0000199 __u32 getsize = FATBUFBLOCKS;
wdenk71f95112003-06-15 22:40:42 +0000200 __u8 *bufptr = mydata->fatbuf;
201 __u32 fatlength = mydata->fatlength;
202 __u32 startblock = bufnum * FATBUFBLOCKS;
203
Stefan Brüns6c1a8082016-12-17 00:27:50 +0100204 /* Cap length if fatlength is not a multiple of FATBUFBLOCKS */
Benoît Thébaudeau8006dd22012-07-20 15:19:29 +0200205 if (startblock + getsize > fatlength)
206 getsize = fatlength - startblock;
Sergei Shtylyov60b36f02011-08-08 09:39:29 +0000207
wdenk71f95112003-06-15 22:40:42 +0000208 startblock += mydata->fat_sect; /* Offset from start of disk */
209
Stefan Brünsb8948d22016-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
wdenk71f95112003-06-15 22:40:42 +0000214 if (disk_read(startblock, getsize, bufptr) < 0) {
Wolfgang Denk7385c282010-07-19 11:37:00 +0200215 debug("Error reading FAT blocks\n");
wdenk71f95112003-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 Denk7385c282010-07-19 11:37:00 +0200224 ret = FAT2CPU32(((__u32 *) mydata->fatbuf)[offset]);
wdenk71f95112003-06-15 22:40:42 +0000225 break;
226 case 16:
Wolfgang Denk7385c282010-07-19 11:37:00 +0200227 ret = FAT2CPU16(((__u16 *) mydata->fatbuf)[offset]);
wdenk71f95112003-06-15 22:40:42 +0000228 break;
Wolfgang Denk7385c282010-07-19 11:37:00 +0200229 case 12:
Stefan Brünsb352cae2017-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);
wdenk71f95112003-06-15 22:40:42 +0000233
Stefan Brüns8d48c922016-12-17 03:55:10 +0100234 if (offset & 0x1)
235 ret >>= 4;
236 ret &= 0xfff;
wdenk71f95112003-06-15 22:40:42 +0000237 }
Stefan Brünsb8948d22016-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);
wdenk71f95112003-06-15 22:40:42 +0000240
241 return ret;
242}
243
wdenk71f95112003-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ébaudeau9795e072012-07-20 15:18:44 +0200249get_cluster(fsdata *mydata, __u32 clustnum, __u8 *buffer, unsigned long size)
wdenk71f95112003-06-15 22:40:42 +0000250{
Erik Hansen3f270f42011-03-24 10:15:37 +0100251 __u32 idx = 0;
wdenk71f95112003-06-15 22:40:42 +0000252 __u32 startsect;
Kyle Moffett46236b12011-12-20 07:41:13 +0000253 int ret;
wdenk71f95112003-06-15 22:40:42 +0000254
255 if (clustnum > 0) {
Wolfgang Denk7385c282010-07-19 11:37:00 +0200256 startsect = mydata->data_begin +
257 clustnum * mydata->clust_size;
wdenk71f95112003-06-15 22:40:42 +0000258 } else {
259 startsect = mydata->rootdir_sect;
260 }
261
Wolfgang Denk7385c282010-07-19 11:37:00 +0200262 debug("gc - clustnum: %d, startsect: %d\n", clustnum, startsect);
263
Benoît Thébaudeaucc63b252012-07-20 15:21:08 +0200264 if ((unsigned long)buffer & (ARCH_DMA_MINALIGN - 1)) {
Eric Nelson9a800ac2012-04-11 04:08:53 +0000265 ALLOC_CACHE_ALIGN_BUFFER(__u8, tmpbuf, mydata->sect_size);
Wolfgang Denk7385c282010-07-19 11:37:00 +0200266
Benoît Thébaudeaucc63b252012-07-20 15:21:08 +0200267 printf("FAT: Misaligned buffer address (%p)\n", buffer);
268
269 while (size >= mydata->sect_size) {
270 ret = disk_read(startsect++, 1, tmpbuf);
271 if (ret != 1) {
272 debug("Error reading data (got %d)\n", ret);
273 return -1;
274 }
275
276 memcpy(buffer, tmpbuf, mydata->sect_size);
277 buffer += mydata->sect_size;
278 size -= mydata->sect_size;
279 }
280 } else {
Sergei Shtylyovac497772011-08-08 09:38:33 +0000281 idx = size / mydata->sect_size;
Benoît Thébaudeaucc63b252012-07-20 15:21:08 +0200282 ret = disk_read(startsect, idx, buffer);
283 if (ret != idx) {
284 debug("Error reading data (got %d)\n", ret);
285 return -1;
286 }
287 startsect += idx;
288 idx *= mydata->sect_size;
289 buffer += idx;
290 size -= idx;
291 }
292 if (size) {
293 ALLOC_CACHE_ALIGN_BUFFER(__u8, tmpbuf, mydata->sect_size);
294
295 ret = disk_read(startsect, 1, tmpbuf);
Kyle Moffett46236b12011-12-20 07:41:13 +0000296 if (ret != 1) {
297 debug("Error reading data (got %d)\n", ret);
wdenk7205e402003-09-10 22:30:53 +0000298 return -1;
wdenk71f95112003-06-15 22:40:42 +0000299 }
wdenk7205e402003-09-10 22:30:53 +0000300
Benoît Thébaudeaucc63b252012-07-20 15:21:08 +0200301 memcpy(buffer, tmpbuf, size);
wdenk71f95112003-06-15 22:40:42 +0000302 }
303
304 return 0;
305}
306
wdenk71f95112003-06-15 22:40:42 +0000307/*
Benoît Thébaudeau1170e632012-09-18 08:14:56 +0000308 * Read at most 'maxsize' bytes from 'pos' in the file associated with 'dentptr'
wdenk71f95112003-06-15 22:40:42 +0000309 * into 'buffer'.
Suriyan Ramasami1ad0b982014-11-17 14:39:35 -0800310 * Update the number of bytes read in *gotsize or return -1 on fatal errors.
wdenk71f95112003-06-15 22:40:42 +0000311 */
Benoît Thébaudeau1170e632012-09-18 08:14:56 +0000312__u8 get_contents_vfatname_block[MAX_CLUSTSIZE]
313 __aligned(ARCH_DMA_MINALIGN);
314
Suriyan Ramasami1ad0b982014-11-17 14:39:35 -0800315static int get_contents(fsdata *mydata, dir_entry *dentptr, loff_t pos,
316 __u8 *buffer, loff_t maxsize, loff_t *gotsize)
wdenk71f95112003-06-15 22:40:42 +0000317{
Suriyan Ramasami1ad0b982014-11-17 14:39:35 -0800318 loff_t filesize = FAT2CPU32(dentptr->size);
Sergei Shtylyovac497772011-08-08 09:38:33 +0000319 unsigned int bytesperclust = mydata->clust_size * mydata->sect_size;
wdenk71f95112003-06-15 22:40:42 +0000320 __u32 curclust = START(dentptr);
wdenk7205e402003-09-10 22:30:53 +0000321 __u32 endclust, newclust;
Suriyan Ramasami1ad0b982014-11-17 14:39:35 -0800322 loff_t actsize;
wdenk71f95112003-06-15 22:40:42 +0000323
Suriyan Ramasami1ad0b982014-11-17 14:39:35 -0800324 *gotsize = 0;
325 debug("Filesize: %llu bytes\n", filesize);
wdenk71f95112003-06-15 22:40:42 +0000326
Benoît Thébaudeau1170e632012-09-18 08:14:56 +0000327 if (pos >= filesize) {
Suriyan Ramasami1ad0b982014-11-17 14:39:35 -0800328 debug("Read position past EOF: %llu\n", pos);
329 return 0;
Benoît Thébaudeau1170e632012-09-18 08:14:56 +0000330 }
331
332 if (maxsize > 0 && filesize > pos + maxsize)
333 filesize = pos + maxsize;
wdenk71f95112003-06-15 22:40:42 +0000334
Suriyan Ramasami1ad0b982014-11-17 14:39:35 -0800335 debug("%llu bytes\n", filesize);
wdenk71f95112003-06-15 22:40:42 +0000336
Wolfgang Denk7385c282010-07-19 11:37:00 +0200337 actsize = bytesperclust;
Benoît Thébaudeau1170e632012-09-18 08:14:56 +0000338
339 /* go to cluster at pos */
340 while (actsize <= pos) {
341 curclust = get_fatent(mydata, curclust);
342 if (CHECK_CLUST(curclust, mydata->fatsize)) {
343 debug("curclust: 0x%x\n", curclust);
344 debug("Invalid FAT entry\n");
Suriyan Ramasami1ad0b982014-11-17 14:39:35 -0800345 return 0;
Benoît Thébaudeau1170e632012-09-18 08:14:56 +0000346 }
347 actsize += bytesperclust;
348 }
349
350 /* actsize > pos */
351 actsize -= bytesperclust;
352 filesize -= actsize;
353 pos -= actsize;
354
355 /* align to beginning of next cluster if any */
356 if (pos) {
Suriyan Ramasami1ad0b982014-11-17 14:39:35 -0800357 actsize = min(filesize, (loff_t)bytesperclust);
Benoît Thébaudeau1170e632012-09-18 08:14:56 +0000358 if (get_cluster(mydata, curclust, get_contents_vfatname_block,
359 (int)actsize) != 0) {
360 printf("Error reading cluster\n");
361 return -1;
362 }
363 filesize -= actsize;
364 actsize -= pos;
365 memcpy(buffer, get_contents_vfatname_block + pos, actsize);
Suriyan Ramasami1ad0b982014-11-17 14:39:35 -0800366 *gotsize += actsize;
Benoît Thébaudeau1170e632012-09-18 08:14:56 +0000367 if (!filesize)
Suriyan Ramasami1ad0b982014-11-17 14:39:35 -0800368 return 0;
Benoît Thébaudeau1170e632012-09-18 08:14:56 +0000369 buffer += actsize;
370
371 curclust = get_fatent(mydata, curclust);
372 if (CHECK_CLUST(curclust, mydata->fatsize)) {
373 debug("curclust: 0x%x\n", curclust);
374 debug("Invalid FAT entry\n");
Suriyan Ramasami1ad0b982014-11-17 14:39:35 -0800375 return 0;
Benoît Thébaudeau1170e632012-09-18 08:14:56 +0000376 }
377 }
378
379 actsize = bytesperclust;
Wolfgang Denk7385c282010-07-19 11:37:00 +0200380 endclust = curclust;
381
wdenk71f95112003-06-15 22:40:42 +0000382 do {
wdenk7205e402003-09-10 22:30:53 +0000383 /* search for consecutive clusters */
Wolfgang Denk7385c282010-07-19 11:37:00 +0200384 while (actsize < filesize) {
wdenk7205e402003-09-10 22:30:53 +0000385 newclust = get_fatent(mydata, endclust);
Wolfgang Denk7385c282010-07-19 11:37:00 +0200386 if ((newclust - 1) != endclust)
wdenk7205e402003-09-10 22:30:53 +0000387 goto getit;
michael8ce4e5c2008-03-02 23:33:46 +0100388 if (CHECK_CLUST(newclust, mydata->fatsize)) {
Wolfgang Denk7385c282010-07-19 11:37:00 +0200389 debug("curclust: 0x%x\n", newclust);
390 debug("Invalid FAT entry\n");
Suriyan Ramasami1ad0b982014-11-17 14:39:35 -0800391 return 0;
wdenk7205e402003-09-10 22:30:53 +0000392 }
Wolfgang Denk7385c282010-07-19 11:37:00 +0200393 endclust = newclust;
394 actsize += bytesperclust;
wdenk7205e402003-09-10 22:30:53 +0000395 }
Wolfgang Denk7385c282010-07-19 11:37:00 +0200396
wdenk7205e402003-09-10 22:30:53 +0000397 /* get remaining bytes */
Wolfgang Denk7385c282010-07-19 11:37:00 +0200398 actsize = filesize;
Benoît Thébaudeau0880e5b2012-07-20 15:21:37 +0200399 if (get_cluster(mydata, curclust, buffer, (int)actsize) != 0) {
Wolfgang Denk7385c282010-07-19 11:37:00 +0200400 printf("Error reading cluster\n");
wdenk7205e402003-09-10 22:30:53 +0000401 return -1;
402 }
Suriyan Ramasami1ad0b982014-11-17 14:39:35 -0800403 *gotsize += actsize;
404 return 0;
wdenk7205e402003-09-10 22:30:53 +0000405getit:
406 if (get_cluster(mydata, curclust, buffer, (int)actsize) != 0) {
Wolfgang Denk7385c282010-07-19 11:37:00 +0200407 printf("Error reading cluster\n");
wdenk7205e402003-09-10 22:30:53 +0000408 return -1;
409 }
Suriyan Ramasami1ad0b982014-11-17 14:39:35 -0800410 *gotsize += (int)actsize;
wdenk7205e402003-09-10 22:30:53 +0000411 filesize -= actsize;
412 buffer += actsize;
Wolfgang Denk7385c282010-07-19 11:37:00 +0200413
wdenk7205e402003-09-10 22:30:53 +0000414 curclust = get_fatent(mydata, endclust);
michael8ce4e5c2008-03-02 23:33:46 +0100415 if (CHECK_CLUST(curclust, mydata->fatsize)) {
Wolfgang Denk7385c282010-07-19 11:37:00 +0200416 debug("curclust: 0x%x\n", curclust);
417 printf("Invalid FAT entry\n");
Suriyan Ramasami1ad0b982014-11-17 14:39:35 -0800418 return 0;
wdenk71f95112003-06-15 22:40:42 +0000419 }
Wolfgang Denk7385c282010-07-19 11:37:00 +0200420 actsize = bytesperclust;
421 endclust = curclust;
wdenk71f95112003-06-15 22:40:42 +0000422 } while (1);
423}
424
wdenk71f95112003-06-15 22:40:42 +0000425/*
426 * Extract the file name information from 'slotptr' into 'l_name',
427 * starting at l_name[*idx].
428 * Return 1 if terminator (zero byte) is found, 0 otherwise.
429 */
Benoît Thébaudeau9795e072012-07-20 15:18:44 +0200430static int slot2str(dir_slot *slotptr, char *l_name, int *idx)
wdenk71f95112003-06-15 22:40:42 +0000431{
432 int j;
433
434 for (j = 0; j <= 8; j += 2) {
435 l_name[*idx] = slotptr->name0_4[j];
Wolfgang Denk7385c282010-07-19 11:37:00 +0200436 if (l_name[*idx] == 0x00)
437 return 1;
wdenk71f95112003-06-15 22:40:42 +0000438 (*idx)++;
439 }
440 for (j = 0; j <= 10; j += 2) {
441 l_name[*idx] = slotptr->name5_10[j];
Wolfgang Denk7385c282010-07-19 11:37:00 +0200442 if (l_name[*idx] == 0x00)
443 return 1;
wdenk71f95112003-06-15 22:40:42 +0000444 (*idx)++;
445 }
446 for (j = 0; j <= 2; j += 2) {
447 l_name[*idx] = slotptr->name11_12[j];
Wolfgang Denk7385c282010-07-19 11:37:00 +0200448 if (l_name[*idx] == 0x00)
449 return 1;
wdenk71f95112003-06-15 22:40:42 +0000450 (*idx)++;
451 }
452
453 return 0;
454}
455
wdenk71f95112003-06-15 22:40:42 +0000456/* Calculate short name checksum */
Marek Vasutff04f6d2012-10-09 07:20:22 +0000457static __u8 mkcksum(const char name[8], const char ext[3])
wdenk71f95112003-06-15 22:40:42 +0000458{
459 int i;
Wolfgang Denk7385c282010-07-19 11:37:00 +0200460
wdenk71f95112003-06-15 22:40:42 +0000461 __u8 ret = 0;
462
Marek Vasut6ad77d82013-01-11 03:35:48 +0000463 for (i = 0; i < 8; i++)
Marek Vasutff04f6d2012-10-09 07:20:22 +0000464 ret = (((ret & 1) << 7) | ((ret & 0xfe) >> 1)) + name[i];
Marek Vasut6ad77d82013-01-11 03:35:48 +0000465 for (i = 0; i < 3; i++)
Marek Vasutff04f6d2012-10-09 07:20:22 +0000466 ret = (((ret & 1) << 7) | ((ret & 0xfe) >> 1)) + ext[i];
wdenk71f95112003-06-15 22:40:42 +0000467
468 return ret;
469}
wdenk71f95112003-06-15 22:40:42 +0000470
471/*
Rob Clark8eafae22017-09-09 13:15:54 -0400472 * TODO these should go away once fat_write is reworked to use the
473 * directory iterator
wdenk71f95112003-06-15 22:40:42 +0000474 */
Eric Nelson9a800ac2012-04-11 04:08:53 +0000475__u8 get_dentfromdir_block[MAX_CLUSTSIZE]
476 __aligned(ARCH_DMA_MINALIGN);
Rob Clark8eafae22017-09-09 13:15:54 -0400477__u8 do_fat_read_at_block[MAX_CLUSTSIZE]
478 __aligned(ARCH_DMA_MINALIGN);
wdenk71f95112003-06-15 22:40:42 +0000479
wdenk71f95112003-06-15 22:40:42 +0000480/*
481 * Read boot sector and volume info from a FAT filesystem
482 */
483static int
Benoît Thébaudeau9795e072012-07-20 15:18:44 +0200484read_bootsectandvi(boot_sector *bs, volume_info *volinfo, int *fatsize)
wdenk71f95112003-06-15 22:40:42 +0000485{
Sergei Shtylyovac497772011-08-08 09:38:33 +0000486 __u8 *block;
wdenk71f95112003-06-15 22:40:42 +0000487 volume_info *vistart;
Sergei Shtylyovac497772011-08-08 09:38:33 +0000488 int ret = 0;
489
490 if (cur_dev == NULL) {
491 debug("Error: no device selected\n");
492 return -1;
493 }
494
Eric Nelson9a800ac2012-04-11 04:08:53 +0000495 block = memalign(ARCH_DMA_MINALIGN, cur_dev->blksz);
Sergei Shtylyovac497772011-08-08 09:38:33 +0000496 if (block == NULL) {
497 debug("Error: allocating block\n");
498 return -1;
499 }
wdenk71f95112003-06-15 22:40:42 +0000500
Benoît Thébaudeau9795e072012-07-20 15:18:44 +0200501 if (disk_read(0, 1, block) < 0) {
Wolfgang Denk7385c282010-07-19 11:37:00 +0200502 debug("Error: reading block\n");
Sergei Shtylyovac497772011-08-08 09:38:33 +0000503 goto fail;
wdenk71f95112003-06-15 22:40:42 +0000504 }
505
506 memcpy(bs, block, sizeof(boot_sector));
Wolfgang Denk7385c282010-07-19 11:37:00 +0200507 bs->reserved = FAT2CPU16(bs->reserved);
508 bs->fat_length = FAT2CPU16(bs->fat_length);
509 bs->secs_track = FAT2CPU16(bs->secs_track);
510 bs->heads = FAT2CPU16(bs->heads);
511 bs->total_sect = FAT2CPU32(bs->total_sect);
wdenk71f95112003-06-15 22:40:42 +0000512
513 /* FAT32 entries */
514 if (bs->fat_length == 0) {
515 /* Assume FAT32 */
516 bs->fat32_length = FAT2CPU32(bs->fat32_length);
Wolfgang Denk7385c282010-07-19 11:37:00 +0200517 bs->flags = FAT2CPU16(bs->flags);
wdenk71f95112003-06-15 22:40:42 +0000518 bs->root_cluster = FAT2CPU32(bs->root_cluster);
Wolfgang Denk7385c282010-07-19 11:37:00 +0200519 bs->info_sector = FAT2CPU16(bs->info_sector);
520 bs->backup_boot = FAT2CPU16(bs->backup_boot);
521 vistart = (volume_info *)(block + sizeof(boot_sector));
wdenk71f95112003-06-15 22:40:42 +0000522 *fatsize = 32;
523 } else {
Wolfgang Denk7385c282010-07-19 11:37:00 +0200524 vistart = (volume_info *)&(bs->fat32_length);
wdenk71f95112003-06-15 22:40:42 +0000525 *fatsize = 0;
526 }
527 memcpy(volinfo, vistart, sizeof(volume_info));
528
wdenk71f95112003-06-15 22:40:42 +0000529 if (*fatsize == 32) {
Wolfgang Denk7385c282010-07-19 11:37:00 +0200530 if (strncmp(FAT32_SIGN, vistart->fs_type, SIGNLEN) == 0)
Sergei Shtylyovac497772011-08-08 09:38:33 +0000531 goto exit;
wdenk71f95112003-06-15 22:40:42 +0000532 } else {
Tom Rix651351f2009-05-20 07:55:41 -0500533 if (strncmp(FAT12_SIGN, vistart->fs_type, SIGNLEN) == 0) {
wdenk71f95112003-06-15 22:40:42 +0000534 *fatsize = 12;
Sergei Shtylyovac497772011-08-08 09:38:33 +0000535 goto exit;
wdenk71f95112003-06-15 22:40:42 +0000536 }
Tom Rix651351f2009-05-20 07:55:41 -0500537 if (strncmp(FAT16_SIGN, vistart->fs_type, SIGNLEN) == 0) {
wdenk71f95112003-06-15 22:40:42 +0000538 *fatsize = 16;
Sergei Shtylyovac497772011-08-08 09:38:33 +0000539 goto exit;
wdenk71f95112003-06-15 22:40:42 +0000540 }
541 }
542
Wolfgang Denk7385c282010-07-19 11:37:00 +0200543 debug("Error: broken fs_type sign\n");
Sergei Shtylyovac497772011-08-08 09:38:33 +0000544fail:
545 ret = -1;
546exit:
547 free(block);
548 return ret;
wdenk71f95112003-06-15 22:40:42 +0000549}
550
Rob Clark45449982017-09-09 13:15:52 -0400551static int get_fs_info(fsdata *mydata)
wdenk71f95112003-06-15 22:40:42 +0000552{
Wolfgang Denk7385c282010-07-19 11:37:00 +0200553 boot_sector bs;
554 volume_info volinfo;
Rob Clark45449982017-09-09 13:15:52 -0400555 int ret;
wdenk71f95112003-06-15 22:40:42 +0000556
Rob Clark45449982017-09-09 13:15:52 -0400557 ret = read_bootsectandvi(&bs, &volinfo, &mydata->fatsize);
558 if (ret) {
Wolfgang Denk7385c282010-07-19 11:37:00 +0200559 debug("Error: reading boot sector\n");
Rob Clark45449982017-09-09 13:15:52 -0400560 return ret;
Wolfgang Denk7385c282010-07-19 11:37:00 +0200561 }
562
Sergei Shtylyov40e21912011-08-19 09:32:34 +0000563 if (mydata->fatsize == 32) {
Wolfgang Denk7385c282010-07-19 11:37:00 +0200564 mydata->fatlength = bs.fat32_length;
Sergei Shtylyov40e21912011-08-19 09:32:34 +0000565 } else {
Wolfgang Denk7385c282010-07-19 11:37:00 +0200566 mydata->fatlength = bs.fat_length;
Sergei Shtylyov40e21912011-08-19 09:32:34 +0000567 }
wdenk71f95112003-06-15 22:40:42 +0000568
Wolfgang Denk7385c282010-07-19 11:37:00 +0200569 mydata->fat_sect = bs.reserved;
wdenk71f95112003-06-15 22:40:42 +0000570
Rob Clark45449982017-09-09 13:15:52 -0400571 mydata->rootdir_sect = mydata->fat_sect + mydata->fatlength * bs.fats;
wdenk71f95112003-06-15 22:40:42 +0000572
Sergei Shtylyovac497772011-08-08 09:38:33 +0000573 mydata->sect_size = (bs.sector_size[1] << 8) + bs.sector_size[0];
Wolfgang Denk7385c282010-07-19 11:37:00 +0200574 mydata->clust_size = bs.cluster_size;
Kyle Moffett46236b12011-12-20 07:41:13 +0000575 if (mydata->sect_size != cur_part_info.blksz) {
576 printf("Error: FAT sector size mismatch (fs=%hu, dev=%lu)\n",
577 mydata->sect_size, cur_part_info.blksz);
578 return -1;
579 }
wdenk71f95112003-06-15 22:40:42 +0000580
Wolfgang Denk7385c282010-07-19 11:37:00 +0200581 if (mydata->fatsize == 32) {
582 mydata->data_begin = mydata->rootdir_sect -
583 (mydata->clust_size * 2);
Rob Clarkc6e3baa2017-09-09 13:15:53 -0400584 mydata->root_cluster = bs.root_cluster;
Wolfgang Denk7385c282010-07-19 11:37:00 +0200585 } else {
Rob Clark45449982017-09-09 13:15:52 -0400586 mydata->rootdir_size = ((bs.dir_entries[1] * (int)256 +
587 bs.dir_entries[0]) *
588 sizeof(dir_entry)) /
589 mydata->sect_size;
Wolfgang Denk7385c282010-07-19 11:37:00 +0200590 mydata->data_begin = mydata->rootdir_sect +
Rob Clark45449982017-09-09 13:15:52 -0400591 mydata->rootdir_size -
Wolfgang Denk7385c282010-07-19 11:37:00 +0200592 (mydata->clust_size * 2);
Rob Clarkc6e3baa2017-09-09 13:15:53 -0400593 mydata->root_cluster = (mydata->rootdir_sect -
594 mydata->data_begin) /
595 mydata->clust_size;
wdenk71f95112003-06-15 22:40:42 +0000596 }
wdenk71f95112003-06-15 22:40:42 +0000597
Wolfgang Denk7385c282010-07-19 11:37:00 +0200598 mydata->fatbufnum = -1;
Stefan Brüns3c0ed9c2016-09-11 22:51:40 +0200599 mydata->fat_dirty = 0;
Eric Nelson9a800ac2012-04-11 04:08:53 +0000600 mydata->fatbuf = memalign(ARCH_DMA_MINALIGN, FATBUFSIZE);
Sergei Shtylyovac497772011-08-08 09:38:33 +0000601 if (mydata->fatbuf == NULL) {
602 debug("Error: allocating memory\n");
603 return -1;
604 }
Wolfgang Denk7385c282010-07-19 11:37:00 +0200605
Richard Genoudcb940c72012-12-13 03:30:10 +0000606 if (vfat_enabled)
607 debug("VFAT Support enabled\n");
608
Wolfgang Denk7385c282010-07-19 11:37:00 +0200609 debug("FAT%d, fat_sect: %d, fatlength: %d\n",
610 mydata->fatsize, mydata->fat_sect, mydata->fatlength);
611 debug("Rootdir begins at cluster: %d, sector: %d, offset: %x\n"
612 "Data begins at: %d\n",
Rob Clarkc6e3baa2017-09-09 13:15:53 -0400613 mydata->root_cluster,
Wolfgang Denk7385c282010-07-19 11:37:00 +0200614 mydata->rootdir_sect,
Sergei Shtylyovac497772011-08-08 09:38:33 +0000615 mydata->rootdir_sect * mydata->sect_size, mydata->data_begin);
616 debug("Sector size: %d, cluster size: %d\n", mydata->sect_size,
617 mydata->clust_size);
Wolfgang Denk7385c282010-07-19 11:37:00 +0200618
Rob Clark45449982017-09-09 13:15:52 -0400619 return 0;
620}
621
Rob Clarkc6e3baa2017-09-09 13:15:53 -0400622
623/*
624 * Directory iterator, to simplify filesystem traversal
625 *
626 * Implements an iterator pattern to traverse directory tables,
627 * transparently handling directory tables split across multiple
628 * clusters, and the difference between FAT12/FAT16 root directory
629 * (contiguous) and subdirectories + FAT32 root (chained).
630 *
631 * Rough usage:
632 *
633 * for (fat_itr_root(&itr, fsdata); fat_itr_next(&itr); ) {
634 * // to traverse down to a subdirectory pointed to by
635 * // current iterator position:
636 * fat_itr_child(&itr, &itr);
637 * }
638 *
639 * For more complete example, see fat_itr_resolve()
640 */
641
642typedef struct {
643 fsdata *fsdata; /* filesystem parameters */
644 unsigned clust; /* current cluster */
645 int last_cluster; /* set once we've read last cluster */
646 int is_root; /* is iterator at root directory */
647 int remaining; /* remaining dent's in current cluster */
648
649 /* current iterator position values: */
650 dir_entry *dent; /* current directory entry */
651 char l_name[VFAT_MAXLEN_BYTES]; /* long (vfat) name */
652 char s_name[14]; /* short 8.3 name */
653 char *name; /* l_name if there is one, else s_name */
654
655 /* storage for current cluster in memory: */
656 u8 block[MAX_CLUSTSIZE] __aligned(ARCH_DMA_MINALIGN);
657} fat_itr;
658
659static int fat_itr_isdir(fat_itr *itr);
660
661/**
662 * fat_itr_root() - initialize an iterator to start at the root
663 * directory
664 *
665 * @itr: iterator to initialize
666 * @fsdata: filesystem data for the partition
667 * @return 0 on success, else -errno
668 */
669static int fat_itr_root(fat_itr *itr, fsdata *fsdata)
670{
671 if (get_fs_info(fsdata))
672 return -ENXIO;
673
674 itr->fsdata = fsdata;
675 itr->clust = fsdata->root_cluster;
676 itr->dent = NULL;
677 itr->remaining = 0;
678 itr->last_cluster = 0;
679 itr->is_root = 1;
680
681 return 0;
682}
683
684/**
685 * fat_itr_child() - initialize an iterator to descend into a sub-
686 * directory
687 *
688 * Initializes 'itr' to iterate the contents of the directory at
689 * the current cursor position of 'parent'. It is an error to
690 * call this if the current cursor of 'parent' is pointing at a
691 * regular file.
692 *
693 * Note that 'itr' and 'parent' can be the same pointer if you do
694 * not need to preserve 'parent' after this call, which is useful
695 * for traversing directory structure to resolve a file/directory.
696 *
697 * @itr: iterator to initialize
698 * @parent: the iterator pointing at a directory entry in the
699 * parent directory of the directory to iterate
700 */
701static void fat_itr_child(fat_itr *itr, fat_itr *parent)
702{
703 fsdata *mydata = parent->fsdata; /* for silly macros */
704 unsigned clustnum = START(parent->dent);
705
706 assert(fat_itr_isdir(parent));
707
708 itr->fsdata = parent->fsdata;
709 if (clustnum > 0) {
710 itr->clust = clustnum;
711 } else {
712 itr->clust = parent->fsdata->root_cluster;
713 }
714 itr->dent = NULL;
715 itr->remaining = 0;
716 itr->last_cluster = 0;
717 itr->is_root = 0;
718}
719
720static void *next_cluster(fat_itr *itr)
721{
722 fsdata *mydata = itr->fsdata; /* for silly macros */
723 int ret;
724 u32 sect;
725
726 /* have we reached the end? */
727 if (itr->last_cluster)
728 return NULL;
729
730 sect = clust_to_sect(itr->fsdata, itr->clust);
731
732 debug("FAT read(sect=%d), clust_size=%d, DIRENTSPERBLOCK=%zd\n",
733 sect, itr->fsdata->clust_size, DIRENTSPERBLOCK);
734
735 /*
736 * NOTE: do_fat_read_at() had complicated logic to deal w/
737 * vfat names that span multiple clusters in the fat16 case,
738 * which get_dentfromdir() probably also needed (and was
739 * missing). And not entirely sure what fat32 didn't have
740 * the same issue.. We solve that by only caring about one
741 * dent at a time and iteratively constructing the vfat long
742 * name.
743 */
744 ret = disk_read(sect, itr->fsdata->clust_size,
745 itr->block);
746 if (ret < 0) {
747 debug("Error: reading block\n");
748 return NULL;
749 }
750
751 if (itr->is_root && itr->fsdata->fatsize != 32) {
752 itr->clust++;
753 sect = clust_to_sect(itr->fsdata, itr->clust);
754 if (sect - itr->fsdata->rootdir_sect >=
755 itr->fsdata->rootdir_size) {
756 debug("cursect: 0x%x\n", itr->clust);
757 itr->last_cluster = 1;
758 }
759 } else {
760 itr->clust = get_fatent(itr->fsdata, itr->clust);
761 if (CHECK_CLUST(itr->clust, itr->fsdata->fatsize)) {
762 debug("cursect: 0x%x\n", itr->clust);
763 itr->last_cluster = 1;
764 }
765 }
766
767 return itr->block;
768}
769
770static dir_entry *next_dent(fat_itr *itr)
771{
772 if (itr->remaining == 0) {
773 struct dir_entry *dent = next_cluster(itr);
774 unsigned nbytes = itr->fsdata->sect_size *
775 itr->fsdata->clust_size;
776
777 /* have we reached the last cluster? */
778 if (!dent)
779 return NULL;
780
781 itr->remaining = nbytes / sizeof(dir_entry) - 1;
782 itr->dent = dent;
783 } else {
784 itr->remaining--;
785 itr->dent++;
786 }
787
788 /* have we reached the last valid entry? */
789 if (itr->dent->name[0] == 0)
790 return NULL;
791
792 return itr->dent;
793}
794
795static dir_entry *extract_vfat_name(fat_itr *itr)
796{
797 struct dir_entry *dent = itr->dent;
798 int seqn = itr->dent->name[0] & ~LAST_LONG_ENTRY_MASK;
799 u8 chksum, alias_checksum = ((dir_slot *)dent)->alias_checksum;
800 int n = 0;
801
802 while (seqn--) {
803 char buf[13];
804 int idx = 0;
805
806 slot2str((dir_slot *)dent, buf, &idx);
807
808 /* shift accumulated long-name up and copy new part in: */
809 memmove(itr->l_name + idx, itr->l_name, n);
810 memcpy(itr->l_name, buf, idx);
811 n += idx;
812
813 dent = next_dent(itr);
814 if (!dent)
815 return NULL;
816 }
817
818 itr->l_name[n] = '\0';
819
820 chksum = mkcksum(dent->name, dent->ext);
821
822 /* checksum mismatch could mean deleted file, etc.. skip it: */
823 if (chksum != alias_checksum) {
824 debug("** chksum=%x, alias_checksum=%x, l_name=%s, s_name=%8s.%3s\n",
825 chksum, alias_checksum, itr->l_name, dent->name, dent->ext);
826 return NULL;
827 }
828
829 return dent;
830}
831
832/**
833 * fat_itr_next() - step to the next entry in a directory
834 *
835 * Must be called once on a new iterator before the cursor is valid.
836 *
837 * @itr: the iterator to iterate
838 * @return boolean, 1 if success or 0 if no more entries in the
839 * current directory
840 */
841static int fat_itr_next(fat_itr *itr)
842{
843 dir_entry *dent;
844
845 itr->name = NULL;
846
847 while (1) {
848 dent = next_dent(itr);
849 if (!dent)
850 return 0;
851
852 if (dent->name[0] == DELETED_FLAG ||
853 dent->name[0] == aRING)
854 continue;
855
856 if (dent->attr & ATTR_VOLUME) {
857 if (vfat_enabled &&
858 (dent->attr & ATTR_VFAT) == ATTR_VFAT &&
859 (dent->name[0] & LAST_LONG_ENTRY_MASK)) {
860 dent = extract_vfat_name(itr);
861 if (!dent)
862 continue;
863 itr->name = itr->l_name;
864 break;
865 } else {
866 /* Volume label or VFAT entry, skip */
867 continue;
868 }
869 }
870
871 break;
872 }
873
874 get_name(dent, itr->s_name);
875 if (!itr->name)
876 itr->name = itr->s_name;
877
878 return 1;
879}
880
881/**
882 * fat_itr_isdir() - is current cursor position pointing to a directory
883 *
884 * @itr: the iterator
885 * @return true if cursor is at a directory
886 */
887static int fat_itr_isdir(fat_itr *itr)
888{
889 return !!(itr->dent->attr & ATTR_DIR);
890}
891
892/*
893 * Helpers:
894 */
895
896#define TYPE_FILE 0x1
897#define TYPE_DIR 0x2
898#define TYPE_ANY (TYPE_FILE | TYPE_DIR)
899
900/**
901 * fat_itr_resolve() - traverse directory structure to resolve the
902 * requested path.
903 *
904 * Traverse directory structure to the requested path. If the specified
905 * path is to a directory, this will descend into the directory and
906 * leave it iterator at the start of the directory. If the path is to a
907 * file, it will leave the iterator in the parent directory with current
908 * cursor at file's entry in the directory.
909 *
910 * @itr: iterator initialized to root
911 * @path: the requested path
912 * @type: bitmask of allowable file types
913 * @return 0 on success or -errno
914 */
915static int fat_itr_resolve(fat_itr *itr, const char *path, unsigned type)
916{
917 const char *next;
918
919 /* chomp any extra leading slashes: */
920 while (path[0] && ISDIRDELIM(path[0]))
921 path++;
922
923 /* are we at the end? */
924 if (strlen(path) == 0) {
925 if (!(type & TYPE_DIR))
926 return -ENOENT;
927 return 0;
928 }
929
930 /* find length of next path entry: */
931 next = path;
932 while (next[0] && !ISDIRDELIM(next[0]))
933 next++;
934
935 while (fat_itr_next(itr)) {
936 int match = 0;
937 unsigned n = max(strlen(itr->name), (size_t)(next - path));
938
939 /* check both long and short name: */
940 if (!strncasecmp(path, itr->name, n))
941 match = 1;
942 else if (itr->name != itr->s_name &&
943 !strncasecmp(path, itr->s_name, n))
944 match = 1;
945
946 if (!match)
947 continue;
948
949 if (fat_itr_isdir(itr)) {
950 /* recurse into directory: */
951 fat_itr_child(itr, itr);
952 return fat_itr_resolve(itr, next, type);
953 } else if (next[0]) {
954 /*
955 * If next is not empty then we have a case
956 * like: /path/to/realfile/nonsense
957 */
958 debug("bad trailing path: %s\n", next);
959 return -ENOENT;
960 } else if (!(type & TYPE_FILE)) {
961 return -ENOTDIR;
962 } else {
963 return 0;
964 }
965 }
966
967 return -ENOENT;
968}
969
Benoît Thébaudeau9795e072012-07-20 15:18:44 +0200970int file_fat_detectfs(void)
wdenk71f95112003-06-15 22:40:42 +0000971{
Wolfgang Denk7385c282010-07-19 11:37:00 +0200972 boot_sector bs;
973 volume_info volinfo;
974 int fatsize;
975 char vol_label[12];
wdenk71f95112003-06-15 22:40:42 +0000976
Wolfgang Denk7385c282010-07-19 11:37:00 +0200977 if (cur_dev == NULL) {
wdenk7205e402003-09-10 22:30:53 +0000978 printf("No current device\n");
979 return 1;
980 }
Wolfgang Denk7385c282010-07-19 11:37:00 +0200981
Simon Glassfc843a02017-05-17 03:25:30 -0600982#if defined(CONFIG_IDE) || \
Simon Glass10e40d52017-06-14 21:28:25 -0600983 defined(CONFIG_SATA) || \
Simon Glassc649e3c2016-05-01 11:36:02 -0600984 defined(CONFIG_SCSI) || \
Jon Loeligerdd60d122007-07-09 17:56:50 -0500985 defined(CONFIG_CMD_USB) || \
Andy Fleming21f6f962008-01-16 13:06:59 -0600986 defined(CONFIG_MMC)
wdenk7205e402003-09-10 22:30:53 +0000987 printf("Interface: ");
Wolfgang Denk7385c282010-07-19 11:37:00 +0200988 switch (cur_dev->if_type) {
989 case IF_TYPE_IDE:
990 printf("IDE");
991 break;
992 case IF_TYPE_SATA:
993 printf("SATA");
994 break;
995 case IF_TYPE_SCSI:
996 printf("SCSI");
997 break;
998 case IF_TYPE_ATAPI:
999 printf("ATAPI");
1000 break;
1001 case IF_TYPE_USB:
1002 printf("USB");
1003 break;
1004 case IF_TYPE_DOC:
1005 printf("DOC");
1006 break;
1007 case IF_TYPE_MMC:
1008 printf("MMC");
1009 break;
1010 default:
1011 printf("Unknown");
wdenk7205e402003-09-10 22:30:53 +00001012 }
Wolfgang Denk7385c282010-07-19 11:37:00 +02001013
Simon Glassbcce53d2016-02-29 15:25:51 -07001014 printf("\n Device %d: ", cur_dev->devnum);
wdenk7205e402003-09-10 22:30:53 +00001015 dev_print(cur_dev);
1016#endif
Wolfgang Denk7385c282010-07-19 11:37:00 +02001017
1018 if (read_bootsectandvi(&bs, &volinfo, &fatsize)) {
wdenk7205e402003-09-10 22:30:53 +00001019 printf("\nNo valid FAT fs found\n");
1020 return 1;
1021 }
Wolfgang Denk7385c282010-07-19 11:37:00 +02001022
1023 memcpy(vol_label, volinfo.volume_label, 11);
wdenk7205e402003-09-10 22:30:53 +00001024 vol_label[11] = '\0';
Wolfgang Denk7385c282010-07-19 11:37:00 +02001025 volinfo.fs_type[5] = '\0';
1026
Stephen Warren461f86e2012-10-17 06:44:57 +00001027 printf("Filesystem: %s \"%s\"\n", volinfo.fs_type, vol_label);
Wolfgang Denk7385c282010-07-19 11:37:00 +02001028
wdenk7205e402003-09-10 22:30:53 +00001029 return 0;
wdenk71f95112003-06-15 22:40:42 +00001030}
1031
Benoît Thébaudeau9795e072012-07-20 15:18:44 +02001032int file_fat_ls(const char *dir)
wdenk71f95112003-06-15 22:40:42 +00001033{
Rob Clark8eafae22017-09-09 13:15:54 -04001034 fsdata fsdata;
1035 fat_itr itrblock, *itr = &itrblock;
1036 int files = 0, dirs = 0;
1037 int ret;
Suriyan Ramasami1ad0b982014-11-17 14:39:35 -08001038
Rob Clark8eafae22017-09-09 13:15:54 -04001039 ret = fat_itr_root(itr, &fsdata);
1040 if (ret)
1041 return ret;
1042
1043 ret = fat_itr_resolve(itr, dir, TYPE_DIR);
1044 if (ret)
1045 return ret;
1046
1047 while (fat_itr_next(itr)) {
1048 if (fat_itr_isdir(itr)) {
1049 printf(" %s/\n", itr->name);
1050 dirs++;
1051 } else {
1052 printf(" %8u %s\n",
1053 FAT2CPU32(itr->dent->size),
1054 itr->name);
1055 files++;
1056 }
1057 }
1058
1059 printf("\n%d file(s), %d dir(s)\n\n", files, dirs);
1060
1061 return 0;
wdenk71f95112003-06-15 22:40:42 +00001062}
1063
Stephen Warrenb7b5f312014-02-03 13:21:10 -07001064int fat_exists(const char *filename)
1065{
Rob Clark8eafae22017-09-09 13:15:54 -04001066 fsdata fsdata;
1067 fat_itr itrblock, *itr = &itrblock;
Suriyan Ramasami1ad0b982014-11-17 14:39:35 -08001068 int ret;
Suriyan Ramasami1ad0b982014-11-17 14:39:35 -08001069
Rob Clark8eafae22017-09-09 13:15:54 -04001070 ret = fat_itr_root(itr, &fsdata);
1071 if (ret)
1072 return 0;
1073
1074 ret = fat_itr_resolve(itr, filename, TYPE_ANY);
Suriyan Ramasami1ad0b982014-11-17 14:39:35 -08001075 return ret == 0;
Stephen Warrenb7b5f312014-02-03 13:21:10 -07001076}
1077
Suriyan Ramasamid455d872014-11-17 14:39:38 -08001078int fat_size(const char *filename, loff_t *size)
Stephen Warrencf659812014-06-11 12:47:26 -06001079{
Rob Clark8eafae22017-09-09 13:15:54 -04001080 fsdata fsdata;
1081 fat_itr itrblock, *itr = &itrblock;
1082 int ret;
1083
1084 ret = fat_itr_root(itr, &fsdata);
1085 if (ret)
1086 return ret;
1087
1088 ret = fat_itr_resolve(itr, filename, TYPE_FILE);
1089 if (ret) {
1090 /*
1091 * Directories don't have size, but fs_size() is not
1092 * expected to fail if passed a directory path:
1093 */
1094 fat_itr_root(itr, &fsdata);
1095 if (!fat_itr_resolve(itr, filename, TYPE_DIR)) {
1096 *size = 0;
1097 return 0;
1098 }
1099 return ret;
1100 }
1101
1102 *size = FAT2CPU32(itr->dent->size);
1103
1104 return 0;
Stephen Warrencf659812014-06-11 12:47:26 -06001105}
1106
Suriyan Ramasami1ad0b982014-11-17 14:39:35 -08001107int file_fat_read_at(const char *filename, loff_t pos, void *buffer,
1108 loff_t maxsize, loff_t *actread)
wdenk71f95112003-06-15 22:40:42 +00001109{
Rob Clark8eafae22017-09-09 13:15:54 -04001110 fsdata fsdata;
1111 fat_itr itrblock, *itr = &itrblock;
1112 int ret;
1113
1114 ret = fat_itr_root(itr, &fsdata);
1115 if (ret)
1116 return ret;
1117
1118 ret = fat_itr_resolve(itr, filename, TYPE_FILE);
1119 if (ret)
1120 return ret;
1121
Wolfgang Denk7385c282010-07-19 11:37:00 +02001122 printf("reading %s\n", filename);
Rob Clark8eafae22017-09-09 13:15:54 -04001123 return get_contents(&fsdata, itr->dent, pos, buffer, maxsize, actread);
Benoît Thébaudeau1170e632012-09-18 08:14:56 +00001124}
1125
Suriyan Ramasami1ad0b982014-11-17 14:39:35 -08001126int file_fat_read(const char *filename, void *buffer, int maxsize)
Benoît Thébaudeau1170e632012-09-18 08:14:56 +00001127{
Suriyan Ramasami1ad0b982014-11-17 14:39:35 -08001128 loff_t actread;
1129 int ret;
1130
1131 ret = file_fat_read_at(filename, 0, buffer, maxsize, &actread);
1132 if (ret)
1133 return ret;
1134 else
1135 return actread;
wdenk71f95112003-06-15 22:40:42 +00001136}
Simon Glasse6d52412012-12-26 09:53:33 +00001137
Suriyan Ramasamid455d872014-11-17 14:39:38 -08001138int fat_read_file(const char *filename, void *buf, loff_t offset, loff_t len,
1139 loff_t *actread)
Simon Glasse6d52412012-12-26 09:53:33 +00001140{
Suriyan Ramasami1ad0b982014-11-17 14:39:35 -08001141 int ret;
Simon Glasse6d52412012-12-26 09:53:33 +00001142
Suriyan Ramasamid455d872014-11-17 14:39:38 -08001143 ret = file_fat_read_at(filename, offset, buf, len, actread);
1144 if (ret)
Simon Glasse6d52412012-12-26 09:53:33 +00001145 printf("** Unable to read file %s **\n", filename);
Simon Glasse6d52412012-12-26 09:53:33 +00001146
Suriyan Ramasamid455d872014-11-17 14:39:38 -08001147 return ret;
Simon Glasse6d52412012-12-26 09:53:33 +00001148}
1149
Rob Clark1f403662017-09-09 13:15:56 -04001150typedef struct {
1151 struct fs_dir_stream parent;
1152 struct fs_dirent dirent;
1153 fsdata fsdata;
1154 fat_itr itr;
1155} fat_dir;
1156
1157int fat_opendir(const char *filename, struct fs_dir_stream **dirsp)
1158{
1159 fat_dir *dir = malloc(sizeof(*dir));
1160 int ret;
1161
1162 if (!dir)
1163 return -ENOMEM;
1164
1165 ret = fat_itr_root(&dir->itr, &dir->fsdata);
1166 if (ret)
1167 goto fail;
1168
1169 ret = fat_itr_resolve(&dir->itr, filename, TYPE_DIR);
1170 if (ret)
1171 goto fail;
1172
1173 *dirsp = (struct fs_dir_stream *)dir;
1174 return 0;
1175
1176fail:
1177 free(dir);
1178 return ret;
1179}
1180
1181int fat_readdir(struct fs_dir_stream *dirs, struct fs_dirent **dentp)
1182{
1183 fat_dir *dir = (fat_dir *)dirs;
1184 struct fs_dirent *dent = &dir->dirent;
1185
1186 if (!fat_itr_next(&dir->itr))
1187 return -ENOENT;
1188
1189 memset(dent, 0, sizeof(*dent));
1190 strcpy(dent->name, dir->itr.name);
1191
1192 if (fat_itr_isdir(&dir->itr)) {
1193 dent->type = FS_DT_DIR;
1194 } else {
1195 dent->type = FS_DT_REG;
1196 dent->size = FAT2CPU32(dir->itr.dent->size);
1197 }
1198
1199 *dentp = dent;
1200
1201 return 0;
1202}
1203
1204void fat_closedir(struct fs_dir_stream *dirs)
1205{
1206 fat_dir *dir = (fat_dir *)dirs;
1207 free(dir);
1208}
1209
Simon Glasse6d52412012-12-26 09:53:33 +00001210void fat_close(void)
1211{
1212}