blob: e1c0a15dc73f50160d086d270e66e9b5bcd5fbb9 [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>
17#include <asm/byteorder.h>
wdenk7205e402003-09-10 22:30:53 +000018#include <part.h>
Eric Nelson9a800ac2012-04-11 04:08:53 +000019#include <malloc.h>
Simon Glasscf92e052015-09-02 17:24:58 -060020#include <memalign.h>
Eric Nelson9a800ac2012-04-11 04:08:53 +000021#include <linux/compiler.h>
Richard Genoudfb7e16c2012-12-13 00:47:36 +000022#include <linux/ctype.h>
wdenk71f95112003-06-15 22:40:42 +000023
Richard Genoudcb940c72012-12-13 03:30:10 +000024#ifdef CONFIG_SUPPORT_VFAT
25static const int vfat_enabled = 1;
26#else
27static const int vfat_enabled = 0;
28#endif
29
wdenk71f95112003-06-15 22:40:42 +000030/*
31 * Convert a string to lowercase.
32 */
Benoît Thébaudeau9795e072012-07-20 15:18:44 +020033static void downcase(char *str)
wdenk71f95112003-06-15 22:40:42 +000034{
35 while (*str != '\0') {
Richard Genoudfb7e16c2012-12-13 00:47:36 +000036 *str = tolower(*str);
wdenk71f95112003-06-15 22:40:42 +000037 str++;
38 }
39}
40
Simon Glass4101f682016-02-29 15:25:34 -070041static struct blk_desc *cur_dev;
Kyle Moffett9813b752011-12-21 07:08:10 +000042static disk_partition_t cur_part_info;
Wolfgang Denk7385c282010-07-19 11:37:00 +020043
Kyle Moffett9813b752011-12-21 07:08:10 +000044#define DOS_BOOT_MAGIC_OFFSET 0x1fe
wdenk7205e402003-09-10 22:30:53 +000045#define DOS_FS_TYPE_OFFSET 0x36
Wolfgang Denk66c2d732010-07-19 11:36:57 +020046#define DOS_FS32_TYPE_OFFSET 0x52
wdenk71f95112003-06-15 22:40:42 +000047
Kyle Moffett9813b752011-12-21 07:08:10 +000048static int disk_read(__u32 block, __u32 nr_blocks, void *buf)
wdenk71f95112003-06-15 22:40:42 +000049{
Łukasz Majewski0a04ed82015-09-03 14:21:39 +020050 ulong ret;
51
Simon Glass2a981dc2016-02-29 15:25:52 -070052 if (!cur_dev)
wdenk7205e402003-09-10 22:30:53 +000053 return -1;
Wolfgang Denk7385c282010-07-19 11:37:00 +020054
Simon Glass2a981dc2016-02-29 15:25:52 -070055 ret = blk_dread(cur_dev, cur_part_info.start + block, nr_blocks, buf);
Łukasz Majewski0a04ed82015-09-03 14:21:39 +020056
Tom Rini42a9f142017-08-14 21:02:08 -040057 if (ret != nr_blocks)
Łukasz Majewski0a04ed82015-09-03 14:21:39 +020058 return -1;
59
60 return ret;
wdenk71f95112003-06-15 22:40:42 +000061}
62
Simon Glass4101f682016-02-29 15:25:34 -070063int fat_set_blk_dev(struct blk_desc *dev_desc, disk_partition_t *info)
wdenk71f95112003-06-15 22:40:42 +000064{
Eric Nelson9a800ac2012-04-11 04:08:53 +000065 ALLOC_CACHE_ALIGN_BUFFER(unsigned char, buffer, dev_desc->blksz);
wdenk7205e402003-09-10 22:30:53 +000066
Stephen Warren5e8f9832012-10-17 06:44:59 +000067 cur_dev = dev_desc;
68 cur_part_info = *info;
Kyle Moffett9813b752011-12-21 07:08:10 +000069
70 /* Make sure it has a valid FAT header */
71 if (disk_read(0, 1, buffer) != 1) {
72 cur_dev = NULL;
73 return -1;
74 }
75
76 /* Check if it's actually a DOS volume */
77 if (memcmp(buffer + DOS_BOOT_MAGIC_OFFSET, "\x55\xAA", 2)) {
78 cur_dev = NULL;
79 return -1;
80 }
81
82 /* Check for FAT12/FAT16/FAT32 filesystem */
83 if (!memcmp(buffer + DOS_FS_TYPE_OFFSET, "FAT", 3))
84 return 0;
85 if (!memcmp(buffer + DOS_FS32_TYPE_OFFSET, "FAT32", 5))
86 return 0;
87
88 cur_dev = NULL;
89 return -1;
wdenk71f95112003-06-15 22:40:42 +000090}
91
Simon Glass4101f682016-02-29 15:25:34 -070092int fat_register_device(struct blk_desc *dev_desc, int part_no)
Stephen Warren5e8f9832012-10-17 06:44:59 +000093{
94 disk_partition_t info;
95
96 /* First close any currently found FAT filesystem */
97 cur_dev = NULL;
98
99 /* Read the partition table, if present */
Simon Glass3e8bd462016-02-29 15:25:48 -0700100 if (part_get_info(dev_desc, part_no, &info)) {
Stephen Warren5e8f9832012-10-17 06:44:59 +0000101 if (part_no != 0) {
102 printf("** Partition %d not valid on device %d **\n",
Simon Glassbcce53d2016-02-29 15:25:51 -0700103 part_no, dev_desc->devnum);
Stephen Warren5e8f9832012-10-17 06:44:59 +0000104 return -1;
105 }
106
107 info.start = 0;
108 info.size = dev_desc->lba;
109 info.blksz = dev_desc->blksz;
110 info.name[0] = 0;
111 info.type[0] = 0;
112 info.bootable = 0;
Patrick Delaunayb331cd62017-01-27 11:00:42 +0100113#if CONFIG_IS_ENABLED(PARTITION_UUIDS)
Stephen Warren5e8f9832012-10-17 06:44:59 +0000114 info.uuid[0] = 0;
115#endif
116 }
117
118 return fat_set_blk_dev(dev_desc, &info);
119}
Kyle Moffett9813b752011-12-21 07:08:10 +0000120
wdenk71f95112003-06-15 22:40:42 +0000121/*
122 * Get the first occurence of a directory delimiter ('/' or '\') in a string.
123 * Return index into string if found, -1 otherwise.
124 */
Benoît Thébaudeau9795e072012-07-20 15:18:44 +0200125static int dirdelim(char *str)
wdenk71f95112003-06-15 22:40:42 +0000126{
127 char *start = str;
128
129 while (*str != '\0') {
Wolfgang Denk7385c282010-07-19 11:37:00 +0200130 if (ISDIRDELIM(*str))
131 return str - start;
wdenk71f95112003-06-15 22:40:42 +0000132 str++;
133 }
134 return -1;
135}
136
wdenk71f95112003-06-15 22:40:42 +0000137/*
138 * Extract zero terminated short name from a directory entry.
139 */
Benoît Thébaudeau9795e072012-07-20 15:18:44 +0200140static void get_name(dir_entry *dirent, char *s_name)
wdenk71f95112003-06-15 22:40:42 +0000141{
142 char *ptr;
143
Wolfgang Denk7385c282010-07-19 11:37:00 +0200144 memcpy(s_name, dirent->name, 8);
wdenk71f95112003-06-15 22:40:42 +0000145 s_name[8] = '\0';
146 ptr = s_name;
147 while (*ptr && *ptr != ' ')
148 ptr++;
149 if (dirent->ext[0] && dirent->ext[0] != ' ') {
150 *ptr = '.';
151 ptr++;
Wolfgang Denk7385c282010-07-19 11:37:00 +0200152 memcpy(ptr, dirent->ext, 3);
wdenk71f95112003-06-15 22:40:42 +0000153 ptr[3] = '\0';
154 while (*ptr && *ptr != ' ')
155 ptr++;
156 }
157 *ptr = '\0';
158 if (*s_name == DELETED_FLAG)
159 *s_name = '\0';
160 else if (*s_name == aRING)
Remy Bohmer3c2c2f42008-11-27 22:30:27 +0100161 *s_name = DELETED_FLAG;
Wolfgang Denk7385c282010-07-19 11:37:00 +0200162 downcase(s_name);
wdenk71f95112003-06-15 22:40:42 +0000163}
164
Stefan Brünsb8948d22016-12-17 00:27:51 +0100165static int flush_dirty_fat_buffer(fsdata *mydata);
166#if !defined(CONFIG_FAT_WRITE)
167/* Stub for read only operation */
168int flush_dirty_fat_buffer(fsdata *mydata)
169{
170 (void)(mydata);
171 return 0;
172}
173#endif
174
wdenk71f95112003-06-15 22:40:42 +0000175/*
176 * Get the entry at index 'entry' in a FAT (12/16/32) table.
177 * On failure 0x00 is returned.
178 */
Benoît Thébaudeau9795e072012-07-20 15:18:44 +0200179static __u32 get_fatent(fsdata *mydata, __u32 entry)
wdenk71f95112003-06-15 22:40:42 +0000180{
181 __u32 bufnum;
Stefan Brünsb352cae2017-01-26 20:22:36 +0000182 __u32 offset, off8;
wdenk71f95112003-06-15 22:40:42 +0000183 __u32 ret = 0x00;
184
Stefan Brünsb8948d22016-12-17 00:27:51 +0100185 if (CHECK_CLUST(entry, mydata->fatsize)) {
186 printf("Error: Invalid FAT entry: 0x%08x\n", entry);
187 return ret;
188 }
189
wdenk71f95112003-06-15 22:40:42 +0000190 switch (mydata->fatsize) {
191 case 32:
192 bufnum = entry / FAT32BUFSIZE;
193 offset = entry - bufnum * FAT32BUFSIZE;
194 break;
195 case 16:
196 bufnum = entry / FAT16BUFSIZE;
197 offset = entry - bufnum * FAT16BUFSIZE;
198 break;
199 case 12:
200 bufnum = entry / FAT12BUFSIZE;
201 offset = entry - bufnum * FAT12BUFSIZE;
202 break;
203
204 default:
205 /* Unsupported FAT size */
206 return ret;
207 }
208
Stefan Brünsb8948d22016-12-17 00:27:51 +0100209 debug("FAT%d: entry: 0x%08x = %d, offset: 0x%04x = %d\n",
Wolfgang Denk7385c282010-07-19 11:37:00 +0200210 mydata->fatsize, entry, entry, offset, offset);
Wolfgang Denk2aa98c62010-07-19 11:36:58 +0200211
wdenk71f95112003-06-15 22:40:42 +0000212 /* Read a new block of FAT entries into the cache. */
213 if (bufnum != mydata->fatbufnum) {
Sergei Shtylyov60b36f02011-08-08 09:39:29 +0000214 __u32 getsize = FATBUFBLOCKS;
wdenk71f95112003-06-15 22:40:42 +0000215 __u8 *bufptr = mydata->fatbuf;
216 __u32 fatlength = mydata->fatlength;
217 __u32 startblock = bufnum * FATBUFBLOCKS;
218
Stefan Brüns6c1a8082016-12-17 00:27:50 +0100219 /* Cap length if fatlength is not a multiple of FATBUFBLOCKS */
Benoît Thébaudeau8006dd22012-07-20 15:19:29 +0200220 if (startblock + getsize > fatlength)
221 getsize = fatlength - startblock;
Sergei Shtylyov60b36f02011-08-08 09:39:29 +0000222
wdenk71f95112003-06-15 22:40:42 +0000223 startblock += mydata->fat_sect; /* Offset from start of disk */
224
Stefan Brünsb8948d22016-12-17 00:27:51 +0100225 /* Write back the fatbuf to the disk */
226 if (flush_dirty_fat_buffer(mydata) < 0)
227 return -1;
228
wdenk71f95112003-06-15 22:40:42 +0000229 if (disk_read(startblock, getsize, bufptr) < 0) {
Wolfgang Denk7385c282010-07-19 11:37:00 +0200230 debug("Error reading FAT blocks\n");
wdenk71f95112003-06-15 22:40:42 +0000231 return ret;
232 }
233 mydata->fatbufnum = bufnum;
234 }
235
236 /* Get the actual entry from the table */
237 switch (mydata->fatsize) {
238 case 32:
Wolfgang Denk7385c282010-07-19 11:37:00 +0200239 ret = FAT2CPU32(((__u32 *) mydata->fatbuf)[offset]);
wdenk71f95112003-06-15 22:40:42 +0000240 break;
241 case 16:
Wolfgang Denk7385c282010-07-19 11:37:00 +0200242 ret = FAT2CPU16(((__u16 *) mydata->fatbuf)[offset]);
wdenk71f95112003-06-15 22:40:42 +0000243 break;
Wolfgang Denk7385c282010-07-19 11:37:00 +0200244 case 12:
Stefan Brünsb352cae2017-01-26 20:22:36 +0000245 off8 = (offset * 3) / 2;
246 /* fatbut + off8 may be unaligned, read in byte granularity */
247 ret = mydata->fatbuf[off8] + (mydata->fatbuf[off8 + 1] << 8);
wdenk71f95112003-06-15 22:40:42 +0000248
Stefan Brüns8d48c922016-12-17 03:55:10 +0100249 if (offset & 0x1)
250 ret >>= 4;
251 ret &= 0xfff;
wdenk71f95112003-06-15 22:40:42 +0000252 }
Stefan Brünsb8948d22016-12-17 00:27:51 +0100253 debug("FAT%d: ret: 0x%08x, entry: 0x%08x, offset: 0x%04x\n",
254 mydata->fatsize, ret, entry, offset);
wdenk71f95112003-06-15 22:40:42 +0000255
256 return ret;
257}
258
wdenk71f95112003-06-15 22:40:42 +0000259/*
260 * Read at most 'size' bytes from the specified cluster into 'buffer'.
261 * Return 0 on success, -1 otherwise.
262 */
263static int
Benoît Thébaudeau9795e072012-07-20 15:18:44 +0200264get_cluster(fsdata *mydata, __u32 clustnum, __u8 *buffer, unsigned long size)
wdenk71f95112003-06-15 22:40:42 +0000265{
Erik Hansen3f270f42011-03-24 10:15:37 +0100266 __u32 idx = 0;
wdenk71f95112003-06-15 22:40:42 +0000267 __u32 startsect;
Kyle Moffett46236b12011-12-20 07:41:13 +0000268 int ret;
wdenk71f95112003-06-15 22:40:42 +0000269
270 if (clustnum > 0) {
Wolfgang Denk7385c282010-07-19 11:37:00 +0200271 startsect = mydata->data_begin +
272 clustnum * mydata->clust_size;
wdenk71f95112003-06-15 22:40:42 +0000273 } else {
274 startsect = mydata->rootdir_sect;
275 }
276
Wolfgang Denk7385c282010-07-19 11:37:00 +0200277 debug("gc - clustnum: %d, startsect: %d\n", clustnum, startsect);
278
Benoît Thébaudeaucc63b252012-07-20 15:21:08 +0200279 if ((unsigned long)buffer & (ARCH_DMA_MINALIGN - 1)) {
Eric Nelson9a800ac2012-04-11 04:08:53 +0000280 ALLOC_CACHE_ALIGN_BUFFER(__u8, tmpbuf, mydata->sect_size);
Wolfgang Denk7385c282010-07-19 11:37:00 +0200281
Benoît Thébaudeaucc63b252012-07-20 15:21:08 +0200282 printf("FAT: Misaligned buffer address (%p)\n", buffer);
283
284 while (size >= mydata->sect_size) {
285 ret = disk_read(startsect++, 1, tmpbuf);
286 if (ret != 1) {
287 debug("Error reading data (got %d)\n", ret);
288 return -1;
289 }
290
291 memcpy(buffer, tmpbuf, mydata->sect_size);
292 buffer += mydata->sect_size;
293 size -= mydata->sect_size;
294 }
295 } else {
Sergei Shtylyovac497772011-08-08 09:38:33 +0000296 idx = size / mydata->sect_size;
Benoît Thébaudeaucc63b252012-07-20 15:21:08 +0200297 ret = disk_read(startsect, idx, buffer);
298 if (ret != idx) {
299 debug("Error reading data (got %d)\n", ret);
300 return -1;
301 }
302 startsect += idx;
303 idx *= mydata->sect_size;
304 buffer += idx;
305 size -= idx;
306 }
307 if (size) {
308 ALLOC_CACHE_ALIGN_BUFFER(__u8, tmpbuf, mydata->sect_size);
309
310 ret = disk_read(startsect, 1, tmpbuf);
Kyle Moffett46236b12011-12-20 07:41:13 +0000311 if (ret != 1) {
312 debug("Error reading data (got %d)\n", ret);
wdenk7205e402003-09-10 22:30:53 +0000313 return -1;
wdenk71f95112003-06-15 22:40:42 +0000314 }
wdenk7205e402003-09-10 22:30:53 +0000315
Benoît Thébaudeaucc63b252012-07-20 15:21:08 +0200316 memcpy(buffer, tmpbuf, size);
wdenk71f95112003-06-15 22:40:42 +0000317 }
318
319 return 0;
320}
321
wdenk71f95112003-06-15 22:40:42 +0000322/*
Benoît Thébaudeau1170e632012-09-18 08:14:56 +0000323 * Read at most 'maxsize' bytes from 'pos' in the file associated with 'dentptr'
wdenk71f95112003-06-15 22:40:42 +0000324 * into 'buffer'.
Suriyan Ramasami1ad0b982014-11-17 14:39:35 -0800325 * Update the number of bytes read in *gotsize or return -1 on fatal errors.
wdenk71f95112003-06-15 22:40:42 +0000326 */
Benoît Thébaudeau1170e632012-09-18 08:14:56 +0000327__u8 get_contents_vfatname_block[MAX_CLUSTSIZE]
328 __aligned(ARCH_DMA_MINALIGN);
329
Suriyan Ramasami1ad0b982014-11-17 14:39:35 -0800330static int get_contents(fsdata *mydata, dir_entry *dentptr, loff_t pos,
331 __u8 *buffer, loff_t maxsize, loff_t *gotsize)
wdenk71f95112003-06-15 22:40:42 +0000332{
Suriyan Ramasami1ad0b982014-11-17 14:39:35 -0800333 loff_t filesize = FAT2CPU32(dentptr->size);
Sergei Shtylyovac497772011-08-08 09:38:33 +0000334 unsigned int bytesperclust = mydata->clust_size * mydata->sect_size;
wdenk71f95112003-06-15 22:40:42 +0000335 __u32 curclust = START(dentptr);
wdenk7205e402003-09-10 22:30:53 +0000336 __u32 endclust, newclust;
Suriyan Ramasami1ad0b982014-11-17 14:39:35 -0800337 loff_t actsize;
wdenk71f95112003-06-15 22:40:42 +0000338
Suriyan Ramasami1ad0b982014-11-17 14:39:35 -0800339 *gotsize = 0;
340 debug("Filesize: %llu bytes\n", filesize);
wdenk71f95112003-06-15 22:40:42 +0000341
Benoît Thébaudeau1170e632012-09-18 08:14:56 +0000342 if (pos >= filesize) {
Suriyan Ramasami1ad0b982014-11-17 14:39:35 -0800343 debug("Read position past EOF: %llu\n", pos);
344 return 0;
Benoît Thébaudeau1170e632012-09-18 08:14:56 +0000345 }
346
347 if (maxsize > 0 && filesize > pos + maxsize)
348 filesize = pos + maxsize;
wdenk71f95112003-06-15 22:40:42 +0000349
Suriyan Ramasami1ad0b982014-11-17 14:39:35 -0800350 debug("%llu bytes\n", filesize);
wdenk71f95112003-06-15 22:40:42 +0000351
Wolfgang Denk7385c282010-07-19 11:37:00 +0200352 actsize = bytesperclust;
Benoît Thébaudeau1170e632012-09-18 08:14:56 +0000353
354 /* go to cluster at pos */
355 while (actsize <= pos) {
356 curclust = get_fatent(mydata, curclust);
357 if (CHECK_CLUST(curclust, mydata->fatsize)) {
358 debug("curclust: 0x%x\n", curclust);
359 debug("Invalid FAT entry\n");
Suriyan Ramasami1ad0b982014-11-17 14:39:35 -0800360 return 0;
Benoît Thébaudeau1170e632012-09-18 08:14:56 +0000361 }
362 actsize += bytesperclust;
363 }
364
365 /* actsize > pos */
366 actsize -= bytesperclust;
367 filesize -= actsize;
368 pos -= actsize;
369
370 /* align to beginning of next cluster if any */
371 if (pos) {
Suriyan Ramasami1ad0b982014-11-17 14:39:35 -0800372 actsize = min(filesize, (loff_t)bytesperclust);
Benoît Thébaudeau1170e632012-09-18 08:14:56 +0000373 if (get_cluster(mydata, curclust, get_contents_vfatname_block,
374 (int)actsize) != 0) {
375 printf("Error reading cluster\n");
376 return -1;
377 }
378 filesize -= actsize;
379 actsize -= pos;
380 memcpy(buffer, get_contents_vfatname_block + pos, actsize);
Suriyan Ramasami1ad0b982014-11-17 14:39:35 -0800381 *gotsize += actsize;
Benoît Thébaudeau1170e632012-09-18 08:14:56 +0000382 if (!filesize)
Suriyan Ramasami1ad0b982014-11-17 14:39:35 -0800383 return 0;
Benoît Thébaudeau1170e632012-09-18 08:14:56 +0000384 buffer += actsize;
385
386 curclust = get_fatent(mydata, curclust);
387 if (CHECK_CLUST(curclust, mydata->fatsize)) {
388 debug("curclust: 0x%x\n", curclust);
389 debug("Invalid FAT entry\n");
Suriyan Ramasami1ad0b982014-11-17 14:39:35 -0800390 return 0;
Benoît Thébaudeau1170e632012-09-18 08:14:56 +0000391 }
392 }
393
394 actsize = bytesperclust;
Wolfgang Denk7385c282010-07-19 11:37:00 +0200395 endclust = curclust;
396
wdenk71f95112003-06-15 22:40:42 +0000397 do {
wdenk7205e402003-09-10 22:30:53 +0000398 /* search for consecutive clusters */
Wolfgang Denk7385c282010-07-19 11:37:00 +0200399 while (actsize < filesize) {
wdenk7205e402003-09-10 22:30:53 +0000400 newclust = get_fatent(mydata, endclust);
Wolfgang Denk7385c282010-07-19 11:37:00 +0200401 if ((newclust - 1) != endclust)
wdenk7205e402003-09-10 22:30:53 +0000402 goto getit;
michael8ce4e5c2008-03-02 23:33:46 +0100403 if (CHECK_CLUST(newclust, mydata->fatsize)) {
Wolfgang Denk7385c282010-07-19 11:37:00 +0200404 debug("curclust: 0x%x\n", newclust);
405 debug("Invalid FAT entry\n");
Suriyan Ramasami1ad0b982014-11-17 14:39:35 -0800406 return 0;
wdenk7205e402003-09-10 22:30:53 +0000407 }
Wolfgang Denk7385c282010-07-19 11:37:00 +0200408 endclust = newclust;
409 actsize += bytesperclust;
wdenk7205e402003-09-10 22:30:53 +0000410 }
Wolfgang Denk7385c282010-07-19 11:37:00 +0200411
wdenk7205e402003-09-10 22:30:53 +0000412 /* get remaining bytes */
Wolfgang Denk7385c282010-07-19 11:37:00 +0200413 actsize = filesize;
Benoît Thébaudeau0880e5b2012-07-20 15:21:37 +0200414 if (get_cluster(mydata, curclust, buffer, (int)actsize) != 0) {
Wolfgang Denk7385c282010-07-19 11:37:00 +0200415 printf("Error reading cluster\n");
wdenk7205e402003-09-10 22:30:53 +0000416 return -1;
417 }
Suriyan Ramasami1ad0b982014-11-17 14:39:35 -0800418 *gotsize += actsize;
419 return 0;
wdenk7205e402003-09-10 22:30:53 +0000420getit:
421 if (get_cluster(mydata, curclust, buffer, (int)actsize) != 0) {
Wolfgang Denk7385c282010-07-19 11:37:00 +0200422 printf("Error reading cluster\n");
wdenk7205e402003-09-10 22:30:53 +0000423 return -1;
424 }
Suriyan Ramasami1ad0b982014-11-17 14:39:35 -0800425 *gotsize += (int)actsize;
wdenk7205e402003-09-10 22:30:53 +0000426 filesize -= actsize;
427 buffer += actsize;
Wolfgang Denk7385c282010-07-19 11:37:00 +0200428
wdenk7205e402003-09-10 22:30:53 +0000429 curclust = get_fatent(mydata, endclust);
michael8ce4e5c2008-03-02 23:33:46 +0100430 if (CHECK_CLUST(curclust, mydata->fatsize)) {
Wolfgang Denk7385c282010-07-19 11:37:00 +0200431 debug("curclust: 0x%x\n", curclust);
432 printf("Invalid FAT entry\n");
Suriyan Ramasami1ad0b982014-11-17 14:39:35 -0800433 return 0;
wdenk71f95112003-06-15 22:40:42 +0000434 }
Wolfgang Denk7385c282010-07-19 11:37:00 +0200435 actsize = bytesperclust;
436 endclust = curclust;
wdenk71f95112003-06-15 22:40:42 +0000437 } while (1);
438}
439
wdenk71f95112003-06-15 22:40:42 +0000440/*
441 * Extract the file name information from 'slotptr' into 'l_name',
442 * starting at l_name[*idx].
443 * Return 1 if terminator (zero byte) is found, 0 otherwise.
444 */
Benoît Thébaudeau9795e072012-07-20 15:18:44 +0200445static int slot2str(dir_slot *slotptr, char *l_name, int *idx)
wdenk71f95112003-06-15 22:40:42 +0000446{
447 int j;
448
449 for (j = 0; j <= 8; j += 2) {
450 l_name[*idx] = slotptr->name0_4[j];
Wolfgang Denk7385c282010-07-19 11:37:00 +0200451 if (l_name[*idx] == 0x00)
452 return 1;
wdenk71f95112003-06-15 22:40:42 +0000453 (*idx)++;
454 }
455 for (j = 0; j <= 10; j += 2) {
456 l_name[*idx] = slotptr->name5_10[j];
Wolfgang Denk7385c282010-07-19 11:37:00 +0200457 if (l_name[*idx] == 0x00)
458 return 1;
wdenk71f95112003-06-15 22:40:42 +0000459 (*idx)++;
460 }
461 for (j = 0; j <= 2; j += 2) {
462 l_name[*idx] = slotptr->name11_12[j];
Wolfgang Denk7385c282010-07-19 11:37:00 +0200463 if (l_name[*idx] == 0x00)
464 return 1;
wdenk71f95112003-06-15 22:40:42 +0000465 (*idx)++;
466 }
467
468 return 0;
469}
470
wdenk71f95112003-06-15 22:40:42 +0000471/*
472 * Extract the full long filename starting at 'retdent' (which is really
473 * a slot) into 'l_name'. If successful also copy the real directory entry
474 * into 'retdent'
475 * Return 0 on success, -1 otherwise.
476 */
477static int
Benoît Thébaudeau9795e072012-07-20 15:18:44 +0200478get_vfatname(fsdata *mydata, int curclust, __u8 *cluster,
479 dir_entry *retdent, char *l_name)
wdenk71f95112003-06-15 22:40:42 +0000480{
481 dir_entry *realdent;
Wolfgang Denk7385c282010-07-19 11:37:00 +0200482 dir_slot *slotptr = (dir_slot *)retdent;
Sergei Shtylyov025421e2011-08-19 09:37:46 +0000483 __u8 *buflimit = cluster + mydata->sect_size * ((curclust == 0) ?
484 PREFETCH_BLOCKS :
485 mydata->clust_size);
Wolfgang Denk7385c282010-07-19 11:37:00 +0200486 __u8 counter = (slotptr->id & ~LAST_LONG_ENTRY_MASK) & 0xff;
wdenk71f95112003-06-15 22:40:42 +0000487 int idx = 0;
488
Mikhail Zolotaryov38315302010-09-08 17:06:03 +0300489 if (counter > VFAT_MAXSEQ) {
490 debug("Error: VFAT name is too long\n");
491 return -1;
492 }
493
494 while ((__u8 *)slotptr < buflimit) {
Wolfgang Denk7385c282010-07-19 11:37:00 +0200495 if (counter == 0)
496 break;
wdenk2d1a5372004-02-23 19:30:57 +0000497 if (((slotptr->id & ~LAST_LONG_ENTRY_MASK) & 0xff) != counter)
498 return -1;
wdenk71f95112003-06-15 22:40:42 +0000499 slotptr++;
500 counter--;
501 }
502
Mikhail Zolotaryov38315302010-09-08 17:06:03 +0300503 if ((__u8 *)slotptr >= buflimit) {
wdenk71f95112003-06-15 22:40:42 +0000504 dir_slot *slotptr2;
505
Mikhail Zolotaryov38315302010-09-08 17:06:03 +0300506 if (curclust == 0)
507 return -1;
wdenk71f95112003-06-15 22:40:42 +0000508 curclust = get_fatent(mydata, curclust);
michael8ce4e5c2008-03-02 23:33:46 +0100509 if (CHECK_CLUST(curclust, mydata->fatsize)) {
Wolfgang Denk7385c282010-07-19 11:37:00 +0200510 debug("curclust: 0x%x\n", curclust);
511 printf("Invalid FAT entry\n");
wdenk71f95112003-06-15 22:40:42 +0000512 return -1;
513 }
Wolfgang Denk7385c282010-07-19 11:37:00 +0200514
Benoît Thébaudeau1170e632012-09-18 08:14:56 +0000515 if (get_cluster(mydata, curclust, get_contents_vfatname_block,
Sergei Shtylyovac497772011-08-08 09:38:33 +0000516 mydata->clust_size * mydata->sect_size) != 0) {
Wolfgang Denk7385c282010-07-19 11:37:00 +0200517 debug("Error: reading directory block\n");
wdenk71f95112003-06-15 22:40:42 +0000518 return -1;
519 }
Wolfgang Denk7385c282010-07-19 11:37:00 +0200520
Benoît Thébaudeau1170e632012-09-18 08:14:56 +0000521 slotptr2 = (dir_slot *)get_contents_vfatname_block;
Mikhail Zolotaryov38315302010-09-08 17:06:03 +0300522 while (counter > 0) {
523 if (((slotptr2->id & ~LAST_LONG_ENTRY_MASK)
524 & 0xff) != counter)
525 return -1;
wdenk71f95112003-06-15 22:40:42 +0000526 slotptr2++;
Mikhail Zolotaryov38315302010-09-08 17:06:03 +0300527 counter--;
528 }
Wolfgang Denk7385c282010-07-19 11:37:00 +0200529
wdenk71f95112003-06-15 22:40:42 +0000530 /* Save the real directory entry */
Mikhail Zolotaryov38315302010-09-08 17:06:03 +0300531 realdent = (dir_entry *)slotptr2;
Benoît Thébaudeau1170e632012-09-18 08:14:56 +0000532 while ((__u8 *)slotptr2 > get_contents_vfatname_block) {
wdenk71f95112003-06-15 22:40:42 +0000533 slotptr2--;
Mikhail Zolotaryov38315302010-09-08 17:06:03 +0300534 slot2str(slotptr2, l_name, &idx);
wdenk71f95112003-06-15 22:40:42 +0000535 }
536 } else {
537 /* Save the real directory entry */
Wolfgang Denk7385c282010-07-19 11:37:00 +0200538 realdent = (dir_entry *)slotptr;
wdenk71f95112003-06-15 22:40:42 +0000539 }
540
541 do {
542 slotptr--;
Wolfgang Denk7385c282010-07-19 11:37:00 +0200543 if (slot2str(slotptr, l_name, &idx))
544 break;
wdenk2d1a5372004-02-23 19:30:57 +0000545 } while (!(slotptr->id & LAST_LONG_ENTRY_MASK));
wdenk71f95112003-06-15 22:40:42 +0000546
547 l_name[idx] = '\0';
Wolfgang Denk7385c282010-07-19 11:37:00 +0200548 if (*l_name == DELETED_FLAG)
549 *l_name = '\0';
550 else if (*l_name == aRING)
551 *l_name = DELETED_FLAG;
wdenk71f95112003-06-15 22:40:42 +0000552 downcase(l_name);
553
554 /* Return the real directory entry */
555 memcpy(retdent, realdent, sizeof(dir_entry));
556
557 return 0;
558}
559
wdenk71f95112003-06-15 22:40:42 +0000560/* Calculate short name checksum */
Marek Vasutff04f6d2012-10-09 07:20:22 +0000561static __u8 mkcksum(const char name[8], const char ext[3])
wdenk71f95112003-06-15 22:40:42 +0000562{
563 int i;
Wolfgang Denk7385c282010-07-19 11:37:00 +0200564
wdenk71f95112003-06-15 22:40:42 +0000565 __u8 ret = 0;
566
Marek Vasut6ad77d82013-01-11 03:35:48 +0000567 for (i = 0; i < 8; i++)
Marek Vasutff04f6d2012-10-09 07:20:22 +0000568 ret = (((ret & 1) << 7) | ((ret & 0xfe) >> 1)) + name[i];
Marek Vasut6ad77d82013-01-11 03:35:48 +0000569 for (i = 0; i < 3; i++)
Marek Vasutff04f6d2012-10-09 07:20:22 +0000570 ret = (((ret & 1) << 7) | ((ret & 0xfe) >> 1)) + ext[i];
wdenk71f95112003-06-15 22:40:42 +0000571
572 return ret;
573}
wdenk71f95112003-06-15 22:40:42 +0000574
575/*
576 * Get the directory entry associated with 'filename' from the directory
577 * starting at 'startsect'
578 */
Eric Nelson9a800ac2012-04-11 04:08:53 +0000579__u8 get_dentfromdir_block[MAX_CLUSTSIZE]
580 __aligned(ARCH_DMA_MINALIGN);
Wolfgang Denk7385c282010-07-19 11:37:00 +0200581
Benoît Thébaudeau9795e072012-07-20 15:18:44 +0200582static dir_entry *get_dentfromdir(fsdata *mydata, int startsect,
583 char *filename, dir_entry *retdent,
584 int dols)
wdenk71f95112003-06-15 22:40:42 +0000585{
Wolfgang Denk7385c282010-07-19 11:37:00 +0200586 __u16 prevcksum = 0xffff;
587 __u32 curclust = START(retdent);
588 int files = 0, dirs = 0;
wdenk71f95112003-06-15 22:40:42 +0000589
Wolfgang Denk7385c282010-07-19 11:37:00 +0200590 debug("get_dentfromdir: %s\n", filename);
wdenk71f95112003-06-15 22:40:42 +0000591
Wolfgang Denk7385c282010-07-19 11:37:00 +0200592 while (1) {
593 dir_entry *dentptr;
wdenk71f95112003-06-15 22:40:42 +0000594
Wolfgang Denk7385c282010-07-19 11:37:00 +0200595 int i;
wdenk71f95112003-06-15 22:40:42 +0000596
Wolfgang Denk7385c282010-07-19 11:37:00 +0200597 if (get_cluster(mydata, curclust, get_dentfromdir_block,
Sergei Shtylyovac497772011-08-08 09:38:33 +0000598 mydata->clust_size * mydata->sect_size) != 0) {
Wolfgang Denk7385c282010-07-19 11:37:00 +0200599 debug("Error: reading directory block\n");
600 return NULL;
601 }
602
603 dentptr = (dir_entry *)get_dentfromdir_block;
604
605 for (i = 0; i < DIRENTSPERCLUST; i++) {
Mikhail Zolotaryov38315302010-09-08 17:06:03 +0300606 char s_name[14], l_name[VFAT_MAXLEN_BYTES];
Wolfgang Denk7385c282010-07-19 11:37:00 +0200607
608 l_name[0] = '\0';
609 if (dentptr->name[0] == DELETED_FLAG) {
610 dentptr++;
611 continue;
wdenk71f95112003-06-15 22:40:42 +0000612 }
Wolfgang Denk7385c282010-07-19 11:37:00 +0200613 if ((dentptr->attr & ATTR_VOLUME)) {
Richard Genoudcb940c72012-12-13 03:30:10 +0000614 if (vfat_enabled &&
615 (dentptr->attr & ATTR_VFAT) == ATTR_VFAT &&
J. Vijayanand206d68f2011-10-19 07:43:08 +0000616 (dentptr->name[0] & LAST_LONG_ENTRY_MASK)) {
Wolfgang Denk7385c282010-07-19 11:37:00 +0200617 prevcksum = ((dir_slot *)dentptr)->alias_checksum;
618 get_vfatname(mydata, curclust,
619 get_dentfromdir_block,
620 dentptr, l_name);
621 if (dols) {
622 int isdir;
623 char dirc;
624 int doit = 0;
625
626 isdir = (dentptr->attr & ATTR_DIR);
627
628 if (isdir) {
629 dirs++;
630 dirc = '/';
631 doit = 1;
632 } else {
633 dirc = ' ';
634 if (l_name[0] != 0) {
635 files++;
636 doit = 1;
637 }
638 }
639 if (doit) {
640 if (dirc == ' ') {
Suriyan Ramasami1ad0b982014-11-17 14:39:35 -0800641 printf(" %8u %s%c\n",
642 FAT2CPU32(dentptr->size),
Wolfgang Denk7385c282010-07-19 11:37:00 +0200643 l_name,
644 dirc);
645 } else {
646 printf(" %s%c\n",
647 l_name,
648 dirc);
649 }
650 }
651 dentptr++;
652 continue;
653 }
654 debug("vfatname: |%s|\n", l_name);
Richard Genoudcb940c72012-12-13 03:30:10 +0000655 } else {
Wolfgang Denk7385c282010-07-19 11:37:00 +0200656 /* Volume label or VFAT entry */
657 dentptr++;
658 continue;
659 }
660 }
661 if (dentptr->name[0] == 0) {
662 if (dols) {
663 printf("\n%d file(s), %d dir(s)\n\n",
664 files, dirs);
665 }
666 debug("Dentname == NULL - %d\n", i);
667 return NULL;
668 }
Richard Genoudcb940c72012-12-13 03:30:10 +0000669 if (vfat_enabled) {
670 __u8 csum = mkcksum(dentptr->name, dentptr->ext);
671 if (dols && csum == prevcksum) {
672 prevcksum = 0xffff;
673 dentptr++;
674 continue;
675 }
Wolfgang Denk7385c282010-07-19 11:37:00 +0200676 }
Richard Genoudcb940c72012-12-13 03:30:10 +0000677
Wolfgang Denk7385c282010-07-19 11:37:00 +0200678 get_name(dentptr, s_name);
679 if (dols) {
680 int isdir = (dentptr->attr & ATTR_DIR);
681 char dirc;
682 int doit = 0;
wdenk71f95112003-06-15 22:40:42 +0000683
Wolfgang Denk7385c282010-07-19 11:37:00 +0200684 if (isdir) {
685 dirs++;
686 dirc = '/';
687 doit = 1;
688 } else {
689 dirc = ' ';
690 if (s_name[0] != 0) {
691 files++;
692 doit = 1;
693 }
694 }
695
696 if (doit) {
697 if (dirc == ' ') {
Suriyan Ramasami1ad0b982014-11-17 14:39:35 -0800698 printf(" %8u %s%c\n",
699 FAT2CPU32(dentptr->size),
Wolfgang Denk7385c282010-07-19 11:37:00 +0200700 s_name, dirc);
701 } else {
702 printf(" %s%c\n",
703 s_name, dirc);
704 }
705 }
706
707 dentptr++;
708 continue;
709 }
710
711 if (strcmp(filename, s_name)
712 && strcmp(filename, l_name)) {
713 debug("Mismatch: |%s|%s|\n", s_name, l_name);
714 dentptr++;
715 continue;
716 }
717
718 memcpy(retdent, dentptr, sizeof(dir_entry));
719
720 debug("DentName: %s", s_name);
721 debug(", start: 0x%x", START(dentptr));
722 debug(", size: 0x%x %s\n",
723 FAT2CPU32(dentptr->size),
724 (dentptr->attr & ATTR_DIR) ? "(DIR)" : "");
725
726 return retdent;
wdenk71f95112003-06-15 22:40:42 +0000727 }
Wolfgang Denk7385c282010-07-19 11:37:00 +0200728
729 curclust = get_fatent(mydata, curclust);
730 if (CHECK_CLUST(curclust, mydata->fatsize)) {
731 debug("curclust: 0x%x\n", curclust);
732 printf("Invalid FAT entry\n");
733 return NULL;
wdenk71f95112003-06-15 22:40:42 +0000734 }
wdenk71f95112003-06-15 22:40:42 +0000735 }
wdenk71f95112003-06-15 22:40:42 +0000736
Wolfgang Denk7385c282010-07-19 11:37:00 +0200737 return NULL;
wdenk71f95112003-06-15 22:40:42 +0000738}
739
wdenk71f95112003-06-15 22:40:42 +0000740/*
741 * Read boot sector and volume info from a FAT filesystem
742 */
743static int
Benoît Thébaudeau9795e072012-07-20 15:18:44 +0200744read_bootsectandvi(boot_sector *bs, volume_info *volinfo, int *fatsize)
wdenk71f95112003-06-15 22:40:42 +0000745{
Sergei Shtylyovac497772011-08-08 09:38:33 +0000746 __u8 *block;
wdenk71f95112003-06-15 22:40:42 +0000747 volume_info *vistart;
Sergei Shtylyovac497772011-08-08 09:38:33 +0000748 int ret = 0;
749
750 if (cur_dev == NULL) {
751 debug("Error: no device selected\n");
752 return -1;
753 }
754
Eric Nelson9a800ac2012-04-11 04:08:53 +0000755 block = memalign(ARCH_DMA_MINALIGN, cur_dev->blksz);
Sergei Shtylyovac497772011-08-08 09:38:33 +0000756 if (block == NULL) {
757 debug("Error: allocating block\n");
758 return -1;
759 }
wdenk71f95112003-06-15 22:40:42 +0000760
Benoît Thébaudeau9795e072012-07-20 15:18:44 +0200761 if (disk_read(0, 1, block) < 0) {
Wolfgang Denk7385c282010-07-19 11:37:00 +0200762 debug("Error: reading block\n");
Sergei Shtylyovac497772011-08-08 09:38:33 +0000763 goto fail;
wdenk71f95112003-06-15 22:40:42 +0000764 }
765
766 memcpy(bs, block, sizeof(boot_sector));
Wolfgang Denk7385c282010-07-19 11:37:00 +0200767 bs->reserved = FAT2CPU16(bs->reserved);
768 bs->fat_length = FAT2CPU16(bs->fat_length);
769 bs->secs_track = FAT2CPU16(bs->secs_track);
770 bs->heads = FAT2CPU16(bs->heads);
771 bs->total_sect = FAT2CPU32(bs->total_sect);
wdenk71f95112003-06-15 22:40:42 +0000772
773 /* FAT32 entries */
774 if (bs->fat_length == 0) {
775 /* Assume FAT32 */
776 bs->fat32_length = FAT2CPU32(bs->fat32_length);
Wolfgang Denk7385c282010-07-19 11:37:00 +0200777 bs->flags = FAT2CPU16(bs->flags);
wdenk71f95112003-06-15 22:40:42 +0000778 bs->root_cluster = FAT2CPU32(bs->root_cluster);
Wolfgang Denk7385c282010-07-19 11:37:00 +0200779 bs->info_sector = FAT2CPU16(bs->info_sector);
780 bs->backup_boot = FAT2CPU16(bs->backup_boot);
781 vistart = (volume_info *)(block + sizeof(boot_sector));
wdenk71f95112003-06-15 22:40:42 +0000782 *fatsize = 32;
783 } else {
Wolfgang Denk7385c282010-07-19 11:37:00 +0200784 vistart = (volume_info *)&(bs->fat32_length);
wdenk71f95112003-06-15 22:40:42 +0000785 *fatsize = 0;
786 }
787 memcpy(volinfo, vistart, sizeof(volume_info));
788
wdenk71f95112003-06-15 22:40:42 +0000789 if (*fatsize == 32) {
Wolfgang Denk7385c282010-07-19 11:37:00 +0200790 if (strncmp(FAT32_SIGN, vistart->fs_type, SIGNLEN) == 0)
Sergei Shtylyovac497772011-08-08 09:38:33 +0000791 goto exit;
wdenk71f95112003-06-15 22:40:42 +0000792 } else {
Tom Rix651351f2009-05-20 07:55:41 -0500793 if (strncmp(FAT12_SIGN, vistart->fs_type, SIGNLEN) == 0) {
wdenk71f95112003-06-15 22:40:42 +0000794 *fatsize = 12;
Sergei Shtylyovac497772011-08-08 09:38:33 +0000795 goto exit;
wdenk71f95112003-06-15 22:40:42 +0000796 }
Tom Rix651351f2009-05-20 07:55:41 -0500797 if (strncmp(FAT16_SIGN, vistart->fs_type, SIGNLEN) == 0) {
wdenk71f95112003-06-15 22:40:42 +0000798 *fatsize = 16;
Sergei Shtylyovac497772011-08-08 09:38:33 +0000799 goto exit;
wdenk71f95112003-06-15 22:40:42 +0000800 }
801 }
802
Wolfgang Denk7385c282010-07-19 11:37:00 +0200803 debug("Error: broken fs_type sign\n");
Sergei Shtylyovac497772011-08-08 09:38:33 +0000804fail:
805 ret = -1;
806exit:
807 free(block);
808 return ret;
wdenk71f95112003-06-15 22:40:42 +0000809}
810
Rob Clark45449982017-09-09 13:15:52 -0400811static int get_fs_info(fsdata *mydata)
wdenk71f95112003-06-15 22:40:42 +0000812{
Wolfgang Denk7385c282010-07-19 11:37:00 +0200813 boot_sector bs;
814 volume_info volinfo;
Sergei Shtylyov40e21912011-08-19 09:32:34 +0000815 __u32 root_cluster = 0;
Rob Clark45449982017-09-09 13:15:52 -0400816 int ret;
wdenk71f95112003-06-15 22:40:42 +0000817
Rob Clark45449982017-09-09 13:15:52 -0400818 ret = read_bootsectandvi(&bs, &volinfo, &mydata->fatsize);
819 if (ret) {
Wolfgang Denk7385c282010-07-19 11:37:00 +0200820 debug("Error: reading boot sector\n");
Rob Clark45449982017-09-09 13:15:52 -0400821 return ret;
Wolfgang Denk7385c282010-07-19 11:37:00 +0200822 }
823
Sergei Shtylyov40e21912011-08-19 09:32:34 +0000824 if (mydata->fatsize == 32) {
825 root_cluster = bs.root_cluster;
Wolfgang Denk7385c282010-07-19 11:37:00 +0200826 mydata->fatlength = bs.fat32_length;
Sergei Shtylyov40e21912011-08-19 09:32:34 +0000827 } else {
Wolfgang Denk7385c282010-07-19 11:37:00 +0200828 mydata->fatlength = bs.fat_length;
Sergei Shtylyov40e21912011-08-19 09:32:34 +0000829 }
wdenk71f95112003-06-15 22:40:42 +0000830
Wolfgang Denk7385c282010-07-19 11:37:00 +0200831 mydata->fat_sect = bs.reserved;
wdenk71f95112003-06-15 22:40:42 +0000832
Rob Clark45449982017-09-09 13:15:52 -0400833 mydata->rootdir_sect = mydata->fat_sect + mydata->fatlength * bs.fats;
wdenk71f95112003-06-15 22:40:42 +0000834
Sergei Shtylyovac497772011-08-08 09:38:33 +0000835 mydata->sect_size = (bs.sector_size[1] << 8) + bs.sector_size[0];
Wolfgang Denk7385c282010-07-19 11:37:00 +0200836 mydata->clust_size = bs.cluster_size;
Kyle Moffett46236b12011-12-20 07:41:13 +0000837 if (mydata->sect_size != cur_part_info.blksz) {
838 printf("Error: FAT sector size mismatch (fs=%hu, dev=%lu)\n",
839 mydata->sect_size, cur_part_info.blksz);
840 return -1;
841 }
wdenk71f95112003-06-15 22:40:42 +0000842
Wolfgang Denk7385c282010-07-19 11:37:00 +0200843 if (mydata->fatsize == 32) {
844 mydata->data_begin = mydata->rootdir_sect -
845 (mydata->clust_size * 2);
846 } else {
Rob Clark45449982017-09-09 13:15:52 -0400847 mydata->rootdir_size = ((bs.dir_entries[1] * (int)256 +
848 bs.dir_entries[0]) *
849 sizeof(dir_entry)) /
850 mydata->sect_size;
Wolfgang Denk7385c282010-07-19 11:37:00 +0200851 mydata->data_begin = mydata->rootdir_sect +
Rob Clark45449982017-09-09 13:15:52 -0400852 mydata->rootdir_size -
Wolfgang Denk7385c282010-07-19 11:37:00 +0200853 (mydata->clust_size * 2);
wdenk71f95112003-06-15 22:40:42 +0000854 }
wdenk71f95112003-06-15 22:40:42 +0000855
Wolfgang Denk7385c282010-07-19 11:37:00 +0200856 mydata->fatbufnum = -1;
Stefan Brüns3c0ed9c2016-09-11 22:51:40 +0200857 mydata->fat_dirty = 0;
Eric Nelson9a800ac2012-04-11 04:08:53 +0000858 mydata->fatbuf = memalign(ARCH_DMA_MINALIGN, FATBUFSIZE);
Sergei Shtylyovac497772011-08-08 09:38:33 +0000859 if (mydata->fatbuf == NULL) {
860 debug("Error: allocating memory\n");
861 return -1;
862 }
Wolfgang Denk7385c282010-07-19 11:37:00 +0200863
Richard Genoudcb940c72012-12-13 03:30:10 +0000864 if (vfat_enabled)
865 debug("VFAT Support enabled\n");
866
Wolfgang Denk7385c282010-07-19 11:37:00 +0200867 debug("FAT%d, fat_sect: %d, fatlength: %d\n",
868 mydata->fatsize, mydata->fat_sect, mydata->fatlength);
869 debug("Rootdir begins at cluster: %d, sector: %d, offset: %x\n"
870 "Data begins at: %d\n",
871 root_cluster,
872 mydata->rootdir_sect,
Sergei Shtylyovac497772011-08-08 09:38:33 +0000873 mydata->rootdir_sect * mydata->sect_size, mydata->data_begin);
874 debug("Sector size: %d, cluster size: %d\n", mydata->sect_size,
875 mydata->clust_size);
Wolfgang Denk7385c282010-07-19 11:37:00 +0200876
Rob Clark45449982017-09-09 13:15:52 -0400877 return 0;
878}
879
880__u8 do_fat_read_at_block[MAX_CLUSTSIZE]
881 __aligned(ARCH_DMA_MINALIGN);
882
883int do_fat_read_at(const char *filename, loff_t pos, void *buffer,
884 loff_t maxsize, int dols, int dogetsize, loff_t *size)
885{
886 char fnamecopy[2048];
887 fsdata datablock;
888 fsdata *mydata = &datablock;
889 dir_entry *dentptr = NULL;
890 __u16 prevcksum = 0xffff;
891 char *subname = "";
892 __u32 cursect;
893 int idx, isdir = 0;
894 int files = 0, dirs = 0;
895 int ret = -1;
896 int firsttime;
897 __u32 root_cluster = 0;
898 __u32 read_blk;
899 int rootdir_size = 0;
900 int buffer_blk_cnt;
901 int do_read;
902 __u8 *dir_ptr;
903
904 if (get_fs_info(mydata))
905 return -1;
906
907 cursect = mydata->rootdir_sect;
908
Wolfgang Denk7385c282010-07-19 11:37:00 +0200909 /* "cwd" is always the root... */
910 while (ISDIRDELIM(*filename))
911 filename++;
912
913 /* Make a copy of the filename and convert it to lowercase */
914 strcpy(fnamecopy, filename);
915 downcase(fnamecopy);
916
Stephen Warren18a10d42015-07-28 21:55:03 -0600917root_reparse:
Wolfgang Denk7385c282010-07-19 11:37:00 +0200918 if (*fnamecopy == '\0') {
919 if (!dols)
Sergei Shtylyovac497772011-08-08 09:38:33 +0000920 goto exit;
Wolfgang Denk7385c282010-07-19 11:37:00 +0200921
922 dols = LS_ROOT;
923 } else if ((idx = dirdelim(fnamecopy)) >= 0) {
924 isdir = 1;
925 fnamecopy[idx] = '\0';
926 subname = fnamecopy + idx + 1;
927
928 /* Handle multiple delimiters */
929 while (ISDIRDELIM(*subname))
930 subname++;
931 } else if (dols) {
932 isdir = 1;
933 }
934
Przemyslaw Marczak64f65e12014-12-18 17:14:17 +0100935 buffer_blk_cnt = 0;
936 firsttime = 1;
Wolfgang Denk7385c282010-07-19 11:37:00 +0200937 while (1) {
938 int i;
939
Przemyslaw Marczak64f65e12014-12-18 17:14:17 +0100940 if (mydata->fatsize == 32 || firsttime) {
941 dir_ptr = do_fat_read_at_block;
942 firsttime = 0;
943 } else {
944 /**
945 * FAT16 sector buffer modification:
946 * Each loop, the second buffered block is moved to
947 * the buffer begin, and two next sectors are read
948 * next to the previously moved one. So the sector
949 * buffer keeps always 3 sectors for fat16.
950 * And the current sector is the buffer second sector
951 * beside the "firsttime" read, when it is the first one.
952 *
953 * PREFETCH_BLOCKS is 2 for FAT16 == loop[0:1]
954 * n = computed root dir sector
955 * loop | cursect-1 | cursect | cursect+1 |
956 * 0 | sector n+0 | sector n+1 | none |
957 * 1 | none | sector n+0 | sector n+1 |
958 * 0 | sector n+1 | sector n+2 | sector n+3 |
959 * 1 | sector n+3 | ...
960 */
961 dir_ptr = (do_fat_read_at_block + mydata->sect_size);
962 memcpy(do_fat_read_at_block, dir_ptr, mydata->sect_size);
963 }
Wolfgang Denk7385c282010-07-19 11:37:00 +0200964
Przemyslaw Marczak64f65e12014-12-18 17:14:17 +0100965 do_read = 1;
966
967 if (mydata->fatsize == 32 && buffer_blk_cnt)
968 do_read = 0;
969
970 if (do_read) {
971 read_blk = (mydata->fatsize == 32) ?
972 mydata->clust_size : PREFETCH_BLOCKS;
973
974 debug("FAT read(sect=%d, cnt:%d), clust_size=%d, DIRENTSPERBLOCK=%zd\n",
975 cursect, read_blk, mydata->clust_size, DIRENTSPERBLOCK);
976
977 if (disk_read(cursect, read_blk, dir_ptr) < 0) {
Benoît Thébaudeaucd1b0422012-07-20 15:20:12 +0200978 debug("Error: reading rootdir block\n");
979 goto exit;
980 }
981
Przemyslaw Marczak64f65e12014-12-18 17:14:17 +0100982 dentptr = (dir_entry *)dir_ptr;
wdenk71f95112003-06-15 22:40:42 +0000983 }
Wolfgang Denk7385c282010-07-19 11:37:00 +0200984
Wolfgang Denk7385c282010-07-19 11:37:00 +0200985 for (i = 0; i < DIRENTSPERBLOCK; i++) {
Mikhail Zolotaryov38315302010-09-08 17:06:03 +0300986 char s_name[14], l_name[VFAT_MAXLEN_BYTES];
Marek Vasutff04f6d2012-10-09 07:20:22 +0000987 __u8 csum;
Wolfgang Denk7385c282010-07-19 11:37:00 +0200988
989 l_name[0] = '\0';
Mikhail Zolotaryov38315302010-09-08 17:06:03 +0300990 if (dentptr->name[0] == DELETED_FLAG) {
991 dentptr++;
992 continue;
993 }
Marek Vasutff04f6d2012-10-09 07:20:22 +0000994
Richard Genoudcb940c72012-12-13 03:30:10 +0000995 if (vfat_enabled)
996 csum = mkcksum(dentptr->name, dentptr->ext);
997
Marek Vasutff04f6d2012-10-09 07:20:22 +0000998 if (dentptr->attr & ATTR_VOLUME) {
Richard Genoudcb940c72012-12-13 03:30:10 +0000999 if (vfat_enabled &&
1000 (dentptr->attr & ATTR_VFAT) == ATTR_VFAT &&
Wolfgang Denk7385c282010-07-19 11:37:00 +02001001 (dentptr->name[0] & LAST_LONG_ENTRY_MASK)) {
1002 prevcksum =
1003 ((dir_slot *)dentptr)->alias_checksum;
wdenk71f95112003-06-15 22:40:42 +00001004
Mikhail Zolotaryov38315302010-09-08 17:06:03 +03001005 get_vfatname(mydata,
Sergei Shtylyov40e21912011-08-19 09:32:34 +00001006 root_cluster,
Przemyslaw Marczak64f65e12014-12-18 17:14:17 +01001007 dir_ptr,
Wolfgang Denk7385c282010-07-19 11:37:00 +02001008 dentptr, l_name);
1009
1010 if (dols == LS_ROOT) {
1011 char dirc;
1012 int doit = 0;
1013 int isdir =
1014 (dentptr->attr & ATTR_DIR);
1015
1016 if (isdir) {
1017 dirs++;
1018 dirc = '/';
1019 doit = 1;
1020 } else {
1021 dirc = ' ';
1022 if (l_name[0] != 0) {
1023 files++;
1024 doit = 1;
1025 }
1026 }
1027 if (doit) {
1028 if (dirc == ' ') {
Suriyan Ramasami1ad0b982014-11-17 14:39:35 -08001029 printf(" %8u %s%c\n",
1030 FAT2CPU32(dentptr->size),
Wolfgang Denk7385c282010-07-19 11:37:00 +02001031 l_name,
1032 dirc);
1033 } else {
1034 printf(" %s%c\n",
1035 l_name,
1036 dirc);
1037 }
1038 }
1039 dentptr++;
1040 continue;
1041 }
1042 debug("Rootvfatname: |%s|\n",
1043 l_name);
Richard Genoudcb940c72012-12-13 03:30:10 +00001044 } else {
Wolfgang Denk7385c282010-07-19 11:37:00 +02001045 /* Volume label or VFAT entry */
1046 dentptr++;
1047 continue;
1048 }
1049 } else if (dentptr->name[0] == 0) {
1050 debug("RootDentname == NULL - %d\n", i);
1051 if (dols == LS_ROOT) {
1052 printf("\n%d file(s), %d dir(s)\n\n",
1053 files, dirs);
Sergei Shtylyovac497772011-08-08 09:38:33 +00001054 ret = 0;
Wolfgang Denk7385c282010-07-19 11:37:00 +02001055 }
Sergei Shtylyovac497772011-08-08 09:38:33 +00001056 goto exit;
Wolfgang Denk7385c282010-07-19 11:37:00 +02001057 }
Richard Genoudcb940c72012-12-13 03:30:10 +00001058 else if (vfat_enabled &&
1059 dols == LS_ROOT && csum == prevcksum) {
Sergei Shtylyovbf34e7d2012-01-02 06:54:29 +00001060 prevcksum = 0xffff;
Wolfgang Denk7385c282010-07-19 11:37:00 +02001061 dentptr++;
1062 continue;
1063 }
Richard Genoudcb940c72012-12-13 03:30:10 +00001064
Wolfgang Denk7385c282010-07-19 11:37:00 +02001065 get_name(dentptr, s_name);
1066
1067 if (dols == LS_ROOT) {
1068 int isdir = (dentptr->attr & ATTR_DIR);
1069 char dirc;
1070 int doit = 0;
1071
1072 if (isdir) {
1073 dirc = '/';
1074 if (s_name[0] != 0) {
1075 dirs++;
1076 doit = 1;
1077 }
1078 } else {
1079 dirc = ' ';
1080 if (s_name[0] != 0) {
1081 files++;
1082 doit = 1;
1083 }
1084 }
1085 if (doit) {
1086 if (dirc == ' ') {
Suriyan Ramasami1ad0b982014-11-17 14:39:35 -08001087 printf(" %8u %s%c\n",
1088 FAT2CPU32(dentptr->size),
Wolfgang Denk7385c282010-07-19 11:37:00 +02001089 s_name, dirc);
1090 } else {
1091 printf(" %s%c\n",
1092 s_name, dirc);
1093 }
1094 }
1095 dentptr++;
1096 continue;
1097 }
1098
1099 if (strcmp(fnamecopy, s_name)
1100 && strcmp(fnamecopy, l_name)) {
1101 debug("RootMismatch: |%s|%s|\n", s_name,
1102 l_name);
1103 dentptr++;
1104 continue;
1105 }
1106
1107 if (isdir && !(dentptr->attr & ATTR_DIR))
Sergei Shtylyovac497772011-08-08 09:38:33 +00001108 goto exit;
Wolfgang Denk7385c282010-07-19 11:37:00 +02001109
1110 debug("RootName: %s", s_name);
1111 debug(", start: 0x%x", START(dentptr));
1112 debug(", size: 0x%x %s\n",
1113 FAT2CPU32(dentptr->size),
1114 isdir ? "(DIR)" : "");
1115
1116 goto rootdir_done; /* We got a match */
1117 }
Przemyslaw Marczak64f65e12014-12-18 17:14:17 +01001118 debug("END LOOP: buffer_blk_cnt=%d clust_size=%d\n", buffer_blk_cnt,
Wolfgang Denk7385c282010-07-19 11:37:00 +02001119 mydata->clust_size);
1120
1121 /*
1122 * On FAT32 we must fetch the FAT entries for the next
1123 * root directory clusters when a cluster has been
1124 * completely processed.
1125 */
Przemyslaw Marczak64f65e12014-12-18 17:14:17 +01001126 ++buffer_blk_cnt;
Benoît Thébaudeaucd1b0422012-07-20 15:20:12 +02001127 int rootdir_end = 0;
1128 if (mydata->fatsize == 32) {
Przemyslaw Marczak64f65e12014-12-18 17:14:17 +01001129 if (buffer_blk_cnt == mydata->clust_size) {
Benoît Thébaudeaucd1b0422012-07-20 15:20:12 +02001130 int nxtsect = 0;
1131 int nxt_clust = 0;
Wolfgang Denk7385c282010-07-19 11:37:00 +02001132
Benoît Thébaudeaucd1b0422012-07-20 15:20:12 +02001133 nxt_clust = get_fatent(mydata, root_cluster);
1134 rootdir_end = CHECK_CLUST(nxt_clust, 32);
Wolfgang Denk7385c282010-07-19 11:37:00 +02001135
Benoît Thébaudeaucd1b0422012-07-20 15:20:12 +02001136 nxtsect = mydata->data_begin +
1137 (nxt_clust * mydata->clust_size);
Wolfgang Denk7385c282010-07-19 11:37:00 +02001138
Benoît Thébaudeaucd1b0422012-07-20 15:20:12 +02001139 root_cluster = nxt_clust;
Wolfgang Denk7385c282010-07-19 11:37:00 +02001140
Benoît Thébaudeaucd1b0422012-07-20 15:20:12 +02001141 cursect = nxtsect;
Przemyslaw Marczak64f65e12014-12-18 17:14:17 +01001142 buffer_blk_cnt = 0;
Benoît Thébaudeaucd1b0422012-07-20 15:20:12 +02001143 }
wdenk71f95112003-06-15 22:40:42 +00001144 } else {
Przemyslaw Marczak64f65e12014-12-18 17:14:17 +01001145 if (buffer_blk_cnt == PREFETCH_BLOCKS)
1146 buffer_blk_cnt = 0;
Benoît Thébaudeaucd1b0422012-07-20 15:20:12 +02001147
1148 rootdir_end = (++cursect - mydata->rootdir_sect >=
1149 rootdir_size);
wdenk71f95112003-06-15 22:40:42 +00001150 }
Erik Hansen3f270f42011-03-24 10:15:37 +01001151
1152 /* If end of rootdir reached */
Benoît Thébaudeaucd1b0422012-07-20 15:20:12 +02001153 if (rootdir_end) {
Erik Hansen3f270f42011-03-24 10:15:37 +01001154 if (dols == LS_ROOT) {
1155 printf("\n%d file(s), %d dir(s)\n\n",
1156 files, dirs);
Suriyan Ramasami1ad0b982014-11-17 14:39:35 -08001157 *size = 0;
Erik Hansen3f270f42011-03-24 10:15:37 +01001158 }
Sergei Shtylyovac497772011-08-08 09:38:33 +00001159 goto exit;
Erik Hansen3f270f42011-03-24 10:15:37 +01001160 }
Wolfgang Denk7385c282010-07-19 11:37:00 +02001161 }
1162rootdir_done:
1163
1164 firsttime = 1;
1165
1166 while (isdir) {
1167 int startsect = mydata->data_begin
1168 + START(dentptr) * mydata->clust_size;
1169 dir_entry dent;
1170 char *nextname = NULL;
1171
1172 dent = *dentptr;
1173 dentptr = &dent;
1174
1175 idx = dirdelim(subname);
1176
1177 if (idx >= 0) {
1178 subname[idx] = '\0';
1179 nextname = subname + idx + 1;
1180 /* Handle multiple delimiters */
1181 while (ISDIRDELIM(*nextname))
1182 nextname++;
1183 if (dols && *nextname == '\0')
1184 firsttime = 0;
1185 } else {
1186 if (dols && firsttime) {
1187 firsttime = 0;
1188 } else {
1189 isdir = 0;
1190 }
wdenk71f95112003-06-15 22:40:42 +00001191 }
wdenk71f95112003-06-15 22:40:42 +00001192
Wolfgang Denk7385c282010-07-19 11:37:00 +02001193 if (get_dentfromdir(mydata, startsect, subname, dentptr,
1194 isdir ? 0 : dols) == NULL) {
1195 if (dols && !isdir)
Suriyan Ramasami1ad0b982014-11-17 14:39:35 -08001196 *size = 0;
Sergei Shtylyovac497772011-08-08 09:38:33 +00001197 goto exit;
Wolfgang Denk7385c282010-07-19 11:37:00 +02001198 }
wdenk71f95112003-06-15 22:40:42 +00001199
Benoît Thébaudeau7ee46ce2012-07-20 03:20:29 +00001200 if (isdir && !(dentptr->attr & ATTR_DIR))
1201 goto exit;
1202
Stephen Warren18a10d42015-07-28 21:55:03 -06001203 /*
1204 * If we are looking for a directory, and found a directory
1205 * type entry, and the entry is for the root directory (as
1206 * denoted by a cluster number of 0), jump back to the start
1207 * of the function, since at least on FAT12/16, the root dir
1208 * lives in a hard-coded location and needs special handling
1209 * to parse, rather than simply following the cluster linked
1210 * list in the FAT, like other directories.
1211 */
1212 if (isdir && (dentptr->attr & ATTR_DIR) && !START(dentptr)) {
1213 /*
1214 * Modify the filename to remove the prefix that gets
1215 * back to the root directory, so the initial root dir
1216 * parsing code can continue from where we are without
1217 * confusion.
1218 */
1219 strcpy(fnamecopy, nextname ?: "");
1220 /*
1221 * Set up state the same way as the function does when
1222 * first started. This is required for the root dir
1223 * parsing code operates in its expected environment.
1224 */
1225 subname = "";
1226 cursect = mydata->rootdir_sect;
1227 isdir = 0;
1228 goto root_reparse;
1229 }
1230
Benoît Thébaudeau7ee46ce2012-07-20 03:20:29 +00001231 if (idx >= 0)
Wolfgang Denk7385c282010-07-19 11:37:00 +02001232 subname = nextname;
wdenk71f95112003-06-15 22:40:42 +00001233 }
1234
Suriyan Ramasami1ad0b982014-11-17 14:39:35 -08001235 if (dogetsize) {
1236 *size = FAT2CPU32(dentptr->size);
1237 ret = 0;
1238 } else {
1239 ret = get_contents(mydata, dentptr, pos, buffer, maxsize, size);
1240 }
1241 debug("Size: %u, got: %llu\n", FAT2CPU32(dentptr->size), *size);
wdenk71f95112003-06-15 22:40:42 +00001242
Sergei Shtylyovac497772011-08-08 09:38:33 +00001243exit:
1244 free(mydata->fatbuf);
Wolfgang Denk7385c282010-07-19 11:37:00 +02001245 return ret;
wdenk71f95112003-06-15 22:40:42 +00001246}
1247
Suriyan Ramasami1ad0b982014-11-17 14:39:35 -08001248int do_fat_read(const char *filename, void *buffer, loff_t maxsize, int dols,
1249 loff_t *actread)
Benoît Thébaudeau1170e632012-09-18 08:14:56 +00001250{
Suriyan Ramasami1ad0b982014-11-17 14:39:35 -08001251 return do_fat_read_at(filename, 0, buffer, maxsize, dols, 0, actread);
Benoît Thébaudeau1170e632012-09-18 08:14:56 +00001252}
1253
Benoît Thébaudeau9795e072012-07-20 15:18:44 +02001254int file_fat_detectfs(void)
wdenk71f95112003-06-15 22:40:42 +00001255{
Wolfgang Denk7385c282010-07-19 11:37:00 +02001256 boot_sector bs;
1257 volume_info volinfo;
1258 int fatsize;
1259 char vol_label[12];
wdenk71f95112003-06-15 22:40:42 +00001260
Wolfgang Denk7385c282010-07-19 11:37:00 +02001261 if (cur_dev == NULL) {
wdenk7205e402003-09-10 22:30:53 +00001262 printf("No current device\n");
1263 return 1;
1264 }
Wolfgang Denk7385c282010-07-19 11:37:00 +02001265
Simon Glassfc843a02017-05-17 03:25:30 -06001266#if defined(CONFIG_IDE) || \
Simon Glass10e40d52017-06-14 21:28:25 -06001267 defined(CONFIG_SATA) || \
Simon Glassc649e3c2016-05-01 11:36:02 -06001268 defined(CONFIG_SCSI) || \
Jon Loeligerdd60d122007-07-09 17:56:50 -05001269 defined(CONFIG_CMD_USB) || \
Andy Fleming21f6f962008-01-16 13:06:59 -06001270 defined(CONFIG_MMC)
wdenk7205e402003-09-10 22:30:53 +00001271 printf("Interface: ");
Wolfgang Denk7385c282010-07-19 11:37:00 +02001272 switch (cur_dev->if_type) {
1273 case IF_TYPE_IDE:
1274 printf("IDE");
1275 break;
1276 case IF_TYPE_SATA:
1277 printf("SATA");
1278 break;
1279 case IF_TYPE_SCSI:
1280 printf("SCSI");
1281 break;
1282 case IF_TYPE_ATAPI:
1283 printf("ATAPI");
1284 break;
1285 case IF_TYPE_USB:
1286 printf("USB");
1287 break;
1288 case IF_TYPE_DOC:
1289 printf("DOC");
1290 break;
1291 case IF_TYPE_MMC:
1292 printf("MMC");
1293 break;
1294 default:
1295 printf("Unknown");
wdenk7205e402003-09-10 22:30:53 +00001296 }
Wolfgang Denk7385c282010-07-19 11:37:00 +02001297
Simon Glassbcce53d2016-02-29 15:25:51 -07001298 printf("\n Device %d: ", cur_dev->devnum);
wdenk7205e402003-09-10 22:30:53 +00001299 dev_print(cur_dev);
1300#endif
Wolfgang Denk7385c282010-07-19 11:37:00 +02001301
1302 if (read_bootsectandvi(&bs, &volinfo, &fatsize)) {
wdenk7205e402003-09-10 22:30:53 +00001303 printf("\nNo valid FAT fs found\n");
1304 return 1;
1305 }
Wolfgang Denk7385c282010-07-19 11:37:00 +02001306
1307 memcpy(vol_label, volinfo.volume_label, 11);
wdenk7205e402003-09-10 22:30:53 +00001308 vol_label[11] = '\0';
Wolfgang Denk7385c282010-07-19 11:37:00 +02001309 volinfo.fs_type[5] = '\0';
1310
Stephen Warren461f86e2012-10-17 06:44:57 +00001311 printf("Filesystem: %s \"%s\"\n", volinfo.fs_type, vol_label);
Wolfgang Denk7385c282010-07-19 11:37:00 +02001312
wdenk7205e402003-09-10 22:30:53 +00001313 return 0;
wdenk71f95112003-06-15 22:40:42 +00001314}
1315
Benoît Thébaudeau9795e072012-07-20 15:18:44 +02001316int file_fat_ls(const char *dir)
wdenk71f95112003-06-15 22:40:42 +00001317{
Suriyan Ramasami1ad0b982014-11-17 14:39:35 -08001318 loff_t size;
1319
1320 return do_fat_read(dir, NULL, 0, LS_YES, &size);
wdenk71f95112003-06-15 22:40:42 +00001321}
1322
Stephen Warrenb7b5f312014-02-03 13:21:10 -07001323int fat_exists(const char *filename)
1324{
Suriyan Ramasami1ad0b982014-11-17 14:39:35 -08001325 int ret;
1326 loff_t size;
1327
1328 ret = do_fat_read_at(filename, 0, NULL, 0, LS_NO, 1, &size);
1329 return ret == 0;
Stephen Warrenb7b5f312014-02-03 13:21:10 -07001330}
1331
Suriyan Ramasamid455d872014-11-17 14:39:38 -08001332int fat_size(const char *filename, loff_t *size)
Stephen Warrencf659812014-06-11 12:47:26 -06001333{
Suriyan Ramasamid455d872014-11-17 14:39:38 -08001334 return do_fat_read_at(filename, 0, NULL, 0, LS_NO, 1, size);
Stephen Warrencf659812014-06-11 12:47:26 -06001335}
1336
Suriyan Ramasami1ad0b982014-11-17 14:39:35 -08001337int file_fat_read_at(const char *filename, loff_t pos, void *buffer,
1338 loff_t maxsize, loff_t *actread)
wdenk71f95112003-06-15 22:40:42 +00001339{
Wolfgang Denk7385c282010-07-19 11:37:00 +02001340 printf("reading %s\n", filename);
Suriyan Ramasami1ad0b982014-11-17 14:39:35 -08001341 return do_fat_read_at(filename, pos, buffer, maxsize, LS_NO, 0,
1342 actread);
Benoît Thébaudeau1170e632012-09-18 08:14:56 +00001343}
1344
Suriyan Ramasami1ad0b982014-11-17 14:39:35 -08001345int file_fat_read(const char *filename, void *buffer, int maxsize)
Benoît Thébaudeau1170e632012-09-18 08:14:56 +00001346{
Suriyan Ramasami1ad0b982014-11-17 14:39:35 -08001347 loff_t actread;
1348 int ret;
1349
1350 ret = file_fat_read_at(filename, 0, buffer, maxsize, &actread);
1351 if (ret)
1352 return ret;
1353 else
1354 return actread;
wdenk71f95112003-06-15 22:40:42 +00001355}
Simon Glasse6d52412012-12-26 09:53:33 +00001356
Suriyan Ramasamid455d872014-11-17 14:39:38 -08001357int fat_read_file(const char *filename, void *buf, loff_t offset, loff_t len,
1358 loff_t *actread)
Simon Glasse6d52412012-12-26 09:53:33 +00001359{
Suriyan Ramasami1ad0b982014-11-17 14:39:35 -08001360 int ret;
Simon Glasse6d52412012-12-26 09:53:33 +00001361
Suriyan Ramasamid455d872014-11-17 14:39:38 -08001362 ret = file_fat_read_at(filename, offset, buf, len, actread);
1363 if (ret)
Simon Glasse6d52412012-12-26 09:53:33 +00001364 printf("** Unable to read file %s **\n", filename);
Simon Glasse6d52412012-12-26 09:53:33 +00001365
Suriyan Ramasamid455d872014-11-17 14:39:38 -08001366 return ret;
Simon Glasse6d52412012-12-26 09:53:33 +00001367}
1368
1369void fat_close(void)
1370{
1371}