blob: b0fac5e1ed681b9dfb75b517a9d28f459d5d100c [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 *
9 * See file CREDITS for list of people who contributed to this
10 * project.
11 *
12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License as
14 * published by the Free Software Foundation; either version 2 of
15 * the License, or (at your option) any later version.
16 *
17 * This program is distributed in the hope that it will be useful,
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 * GNU General Public License for more details.
21 *
22 * You should have received a copy of the GNU General Public License
23 * along with this program; if not, write to the Free Software
24 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
25 * MA 02111-1307 USA
26 */
27
28#include <common.h>
29#include <config.h>
Sergei Shtylyovac497772011-08-08 09:38:33 +000030#include <exports.h>
wdenk71f95112003-06-15 22:40:42 +000031#include <fat.h>
32#include <asm/byteorder.h>
wdenk7205e402003-09-10 22:30:53 +000033#include <part.h>
Eric Nelson9a800ac2012-04-11 04:08:53 +000034#include <malloc.h>
35#include <linux/compiler.h>
Richard Genoudfb7e16c2012-12-13 00:47:36 +000036#include <linux/ctype.h>
wdenk71f95112003-06-15 22:40:42 +000037
Richard Genoudcb940c72012-12-13 03:30:10 +000038#ifdef CONFIG_SUPPORT_VFAT
39static const int vfat_enabled = 1;
40#else
41static const int vfat_enabled = 0;
42#endif
43
wdenk71f95112003-06-15 22:40:42 +000044/*
45 * Convert a string to lowercase.
46 */
Benoît Thébaudeau9795e072012-07-20 15:18:44 +020047static void downcase(char *str)
wdenk71f95112003-06-15 22:40:42 +000048{
49 while (*str != '\0') {
Richard Genoudfb7e16c2012-12-13 00:47:36 +000050 *str = tolower(*str);
wdenk71f95112003-06-15 22:40:42 +000051 str++;
52 }
53}
54
Kyle Moffett9813b752011-12-21 07:08:10 +000055static block_dev_desc_t *cur_dev;
Kyle Moffett9813b752011-12-21 07:08:10 +000056static disk_partition_t cur_part_info;
Wolfgang Denk7385c282010-07-19 11:37:00 +020057
Kyle Moffett9813b752011-12-21 07:08:10 +000058#define DOS_BOOT_MAGIC_OFFSET 0x1fe
wdenk7205e402003-09-10 22:30:53 +000059#define DOS_FS_TYPE_OFFSET 0x36
Wolfgang Denk66c2d732010-07-19 11:36:57 +020060#define DOS_FS32_TYPE_OFFSET 0x52
wdenk71f95112003-06-15 22:40:42 +000061
Kyle Moffett9813b752011-12-21 07:08:10 +000062static int disk_read(__u32 block, __u32 nr_blocks, void *buf)
wdenk71f95112003-06-15 22:40:42 +000063{
Kyle Moffett9813b752011-12-21 07:08:10 +000064 if (!cur_dev || !cur_dev->block_read)
wdenk7205e402003-09-10 22:30:53 +000065 return -1;
Wolfgang Denk7385c282010-07-19 11:37:00 +020066
Kyle Moffett9813b752011-12-21 07:08:10 +000067 return cur_dev->block_read(cur_dev->dev,
68 cur_part_info.start + block, nr_blocks, buf);
wdenk71f95112003-06-15 22:40:42 +000069}
70
Stephen Warren5e8f9832012-10-17 06:44:59 +000071int fat_set_blk_dev(block_dev_desc_t *dev_desc, disk_partition_t *info)
wdenk71f95112003-06-15 22:40:42 +000072{
Eric Nelson9a800ac2012-04-11 04:08:53 +000073 ALLOC_CACHE_ALIGN_BUFFER(unsigned char, buffer, dev_desc->blksz);
wdenk7205e402003-09-10 22:30:53 +000074
Stephen Warren5e8f9832012-10-17 06:44:59 +000075 cur_dev = dev_desc;
76 cur_part_info = *info;
Kyle Moffett9813b752011-12-21 07:08:10 +000077
78 /* Make sure it has a valid FAT header */
79 if (disk_read(0, 1, buffer) != 1) {
80 cur_dev = NULL;
81 return -1;
82 }
83
84 /* Check if it's actually a DOS volume */
85 if (memcmp(buffer + DOS_BOOT_MAGIC_OFFSET, "\x55\xAA", 2)) {
86 cur_dev = NULL;
87 return -1;
88 }
89
90 /* Check for FAT12/FAT16/FAT32 filesystem */
91 if (!memcmp(buffer + DOS_FS_TYPE_OFFSET, "FAT", 3))
92 return 0;
93 if (!memcmp(buffer + DOS_FS32_TYPE_OFFSET, "FAT32", 5))
94 return 0;
95
96 cur_dev = NULL;
97 return -1;
wdenk71f95112003-06-15 22:40:42 +000098}
99
Stephen Warren5e8f9832012-10-17 06:44:59 +0000100int fat_register_device(block_dev_desc_t *dev_desc, int part_no)
101{
102 disk_partition_t info;
103
104 /* First close any currently found FAT filesystem */
105 cur_dev = NULL;
106
107 /* Read the partition table, if present */
108 if (get_partition_info(dev_desc, part_no, &info)) {
109 if (part_no != 0) {
110 printf("** Partition %d not valid on device %d **\n",
111 part_no, dev_desc->dev);
112 return -1;
113 }
114
115 info.start = 0;
116 info.size = dev_desc->lba;
117 info.blksz = dev_desc->blksz;
118 info.name[0] = 0;
119 info.type[0] = 0;
120 info.bootable = 0;
121#ifdef CONFIG_PARTITION_UUIDS
122 info.uuid[0] = 0;
123#endif
124 }
125
126 return fat_set_blk_dev(dev_desc, &info);
127}
Kyle Moffett9813b752011-12-21 07:08:10 +0000128
wdenk71f95112003-06-15 22:40:42 +0000129/*
130 * Get the first occurence of a directory delimiter ('/' or '\') in a string.
131 * Return index into string if found, -1 otherwise.
132 */
Benoît Thébaudeau9795e072012-07-20 15:18:44 +0200133static int dirdelim(char *str)
wdenk71f95112003-06-15 22:40:42 +0000134{
135 char *start = str;
136
137 while (*str != '\0') {
Wolfgang Denk7385c282010-07-19 11:37:00 +0200138 if (ISDIRDELIM(*str))
139 return str - start;
wdenk71f95112003-06-15 22:40:42 +0000140 str++;
141 }
142 return -1;
143}
144
wdenk71f95112003-06-15 22:40:42 +0000145/*
146 * Extract zero terminated short name from a directory entry.
147 */
Benoît Thébaudeau9795e072012-07-20 15:18:44 +0200148static void get_name(dir_entry *dirent, char *s_name)
wdenk71f95112003-06-15 22:40:42 +0000149{
150 char *ptr;
151
Wolfgang Denk7385c282010-07-19 11:37:00 +0200152 memcpy(s_name, dirent->name, 8);
wdenk71f95112003-06-15 22:40:42 +0000153 s_name[8] = '\0';
154 ptr = s_name;
155 while (*ptr && *ptr != ' ')
156 ptr++;
157 if (dirent->ext[0] && dirent->ext[0] != ' ') {
158 *ptr = '.';
159 ptr++;
Wolfgang Denk7385c282010-07-19 11:37:00 +0200160 memcpy(ptr, dirent->ext, 3);
wdenk71f95112003-06-15 22:40:42 +0000161 ptr[3] = '\0';
162 while (*ptr && *ptr != ' ')
163 ptr++;
164 }
165 *ptr = '\0';
166 if (*s_name == DELETED_FLAG)
167 *s_name = '\0';
168 else if (*s_name == aRING)
Remy Bohmer3c2c2f42008-11-27 22:30:27 +0100169 *s_name = DELETED_FLAG;
Wolfgang Denk7385c282010-07-19 11:37:00 +0200170 downcase(s_name);
wdenk71f95112003-06-15 22:40:42 +0000171}
172
173/*
174 * Get the entry at index 'entry' in a FAT (12/16/32) table.
175 * On failure 0x00 is returned.
176 */
Benoît Thébaudeau9795e072012-07-20 15:18:44 +0200177static __u32 get_fatent(fsdata *mydata, __u32 entry)
wdenk71f95112003-06-15 22:40:42 +0000178{
179 __u32 bufnum;
Wolfgang Denk7385c282010-07-19 11:37:00 +0200180 __u32 off16, offset;
wdenk71f95112003-06-15 22:40:42 +0000181 __u32 ret = 0x00;
Wolfgang Denk7385c282010-07-19 11:37:00 +0200182 __u16 val1, val2;
wdenk71f95112003-06-15 22:40:42 +0000183
184 switch (mydata->fatsize) {
185 case 32:
186 bufnum = entry / FAT32BUFSIZE;
187 offset = entry - bufnum * FAT32BUFSIZE;
188 break;
189 case 16:
190 bufnum = entry / FAT16BUFSIZE;
191 offset = entry - bufnum * FAT16BUFSIZE;
192 break;
193 case 12:
194 bufnum = entry / FAT12BUFSIZE;
195 offset = entry - bufnum * FAT12BUFSIZE;
196 break;
197
198 default:
199 /* Unsupported FAT size */
200 return ret;
201 }
202
Wolfgang Denk7385c282010-07-19 11:37:00 +0200203 debug("FAT%d: entry: 0x%04x = %d, offset: 0x%04x = %d\n",
204 mydata->fatsize, entry, entry, offset, offset);
Wolfgang Denk2aa98c62010-07-19 11:36:58 +0200205
wdenk71f95112003-06-15 22:40:42 +0000206 /* Read a new block of FAT entries into the cache. */
207 if (bufnum != mydata->fatbufnum) {
Sergei Shtylyov60b36f02011-08-08 09:39:29 +0000208 __u32 getsize = FATBUFBLOCKS;
wdenk71f95112003-06-15 22:40:42 +0000209 __u8 *bufptr = mydata->fatbuf;
210 __u32 fatlength = mydata->fatlength;
211 __u32 startblock = bufnum * FATBUFBLOCKS;
212
Benoît Thébaudeau8006dd22012-07-20 15:19:29 +0200213 if (startblock + getsize > fatlength)
214 getsize = fatlength - startblock;
Sergei Shtylyov60b36f02011-08-08 09:39:29 +0000215
wdenk71f95112003-06-15 22:40:42 +0000216 startblock += mydata->fat_sect; /* Offset from start of disk */
217
wdenk71f95112003-06-15 22:40:42 +0000218 if (disk_read(startblock, getsize, bufptr) < 0) {
Wolfgang Denk7385c282010-07-19 11:37:00 +0200219 debug("Error reading FAT blocks\n");
wdenk71f95112003-06-15 22:40:42 +0000220 return ret;
221 }
222 mydata->fatbufnum = bufnum;
223 }
224
225 /* Get the actual entry from the table */
226 switch (mydata->fatsize) {
227 case 32:
Wolfgang Denk7385c282010-07-19 11:37:00 +0200228 ret = FAT2CPU32(((__u32 *) mydata->fatbuf)[offset]);
wdenk71f95112003-06-15 22:40:42 +0000229 break;
230 case 16:
Wolfgang Denk7385c282010-07-19 11:37:00 +0200231 ret = FAT2CPU16(((__u16 *) mydata->fatbuf)[offset]);
wdenk71f95112003-06-15 22:40:42 +0000232 break;
Wolfgang Denk7385c282010-07-19 11:37:00 +0200233 case 12:
234 off16 = (offset * 3) / 4;
wdenk71f95112003-06-15 22:40:42 +0000235
236 switch (offset & 0x3) {
237 case 0:
Wolfgang Denk7385c282010-07-19 11:37:00 +0200238 ret = FAT2CPU16(((__u16 *) mydata->fatbuf)[off16]);
wdenk71f95112003-06-15 22:40:42 +0000239 ret &= 0xfff;
240 break;
241 case 1:
Wolfgang Denk7385c282010-07-19 11:37:00 +0200242 val1 = FAT2CPU16(((__u16 *)mydata->fatbuf)[off16]);
wdenk71f95112003-06-15 22:40:42 +0000243 val1 &= 0xf000;
Wolfgang Denk7385c282010-07-19 11:37:00 +0200244 val2 = FAT2CPU16(((__u16 *)mydata->fatbuf)[off16 + 1]);
wdenk71f95112003-06-15 22:40:42 +0000245 val2 &= 0x00ff;
246 ret = (val2 << 4) | (val1 >> 12);
247 break;
248 case 2:
Wolfgang Denk7385c282010-07-19 11:37:00 +0200249 val1 = FAT2CPU16(((__u16 *)mydata->fatbuf)[off16]);
wdenk71f95112003-06-15 22:40:42 +0000250 val1 &= 0xff00;
Wolfgang Denk7385c282010-07-19 11:37:00 +0200251 val2 = FAT2CPU16(((__u16 *)mydata->fatbuf)[off16 + 1]);
wdenk71f95112003-06-15 22:40:42 +0000252 val2 &= 0x000f;
253 ret = (val2 << 8) | (val1 >> 8);
254 break;
255 case 3:
Wolfgang Denk7385c282010-07-19 11:37:00 +0200256 ret = FAT2CPU16(((__u16 *)mydata->fatbuf)[off16]);
wdenk71f95112003-06-15 22:40:42 +0000257 ret = (ret & 0xfff0) >> 4;
258 break;
259 default:
260 break;
261 }
Wolfgang Denk7385c282010-07-19 11:37:00 +0200262 break;
wdenk71f95112003-06-15 22:40:42 +0000263 }
Wolfgang Denk7385c282010-07-19 11:37:00 +0200264 debug("FAT%d: ret: %08x, offset: %04x\n",
265 mydata->fatsize, ret, offset);
wdenk71f95112003-06-15 22:40:42 +0000266
267 return ret;
268}
269
wdenk71f95112003-06-15 22:40:42 +0000270/*
271 * Read at most 'size' bytes from the specified cluster into 'buffer'.
272 * Return 0 on success, -1 otherwise.
273 */
274static int
Benoît Thébaudeau9795e072012-07-20 15:18:44 +0200275get_cluster(fsdata *mydata, __u32 clustnum, __u8 *buffer, unsigned long size)
wdenk71f95112003-06-15 22:40:42 +0000276{
Erik Hansen3f270f42011-03-24 10:15:37 +0100277 __u32 idx = 0;
wdenk71f95112003-06-15 22:40:42 +0000278 __u32 startsect;
Kyle Moffett46236b12011-12-20 07:41:13 +0000279 int ret;
wdenk71f95112003-06-15 22:40:42 +0000280
281 if (clustnum > 0) {
Wolfgang Denk7385c282010-07-19 11:37:00 +0200282 startsect = mydata->data_begin +
283 clustnum * mydata->clust_size;
wdenk71f95112003-06-15 22:40:42 +0000284 } else {
285 startsect = mydata->rootdir_sect;
286 }
287
Wolfgang Denk7385c282010-07-19 11:37:00 +0200288 debug("gc - clustnum: %d, startsect: %d\n", clustnum, startsect);
289
Benoît Thébaudeaucc63b252012-07-20 15:21:08 +0200290 if ((unsigned long)buffer & (ARCH_DMA_MINALIGN - 1)) {
Eric Nelson9a800ac2012-04-11 04:08:53 +0000291 ALLOC_CACHE_ALIGN_BUFFER(__u8, tmpbuf, mydata->sect_size);
Wolfgang Denk7385c282010-07-19 11:37:00 +0200292
Benoît Thébaudeaucc63b252012-07-20 15:21:08 +0200293 printf("FAT: Misaligned buffer address (%p)\n", buffer);
294
295 while (size >= mydata->sect_size) {
296 ret = disk_read(startsect++, 1, tmpbuf);
297 if (ret != 1) {
298 debug("Error reading data (got %d)\n", ret);
299 return -1;
300 }
301
302 memcpy(buffer, tmpbuf, mydata->sect_size);
303 buffer += mydata->sect_size;
304 size -= mydata->sect_size;
305 }
306 } else {
Sergei Shtylyovac497772011-08-08 09:38:33 +0000307 idx = size / mydata->sect_size;
Benoît Thébaudeaucc63b252012-07-20 15:21:08 +0200308 ret = disk_read(startsect, idx, buffer);
309 if (ret != idx) {
310 debug("Error reading data (got %d)\n", ret);
311 return -1;
312 }
313 startsect += idx;
314 idx *= mydata->sect_size;
315 buffer += idx;
316 size -= idx;
317 }
318 if (size) {
319 ALLOC_CACHE_ALIGN_BUFFER(__u8, tmpbuf, mydata->sect_size);
320
321 ret = disk_read(startsect, 1, tmpbuf);
Kyle Moffett46236b12011-12-20 07:41:13 +0000322 if (ret != 1) {
323 debug("Error reading data (got %d)\n", ret);
wdenk7205e402003-09-10 22:30:53 +0000324 return -1;
wdenk71f95112003-06-15 22:40:42 +0000325 }
wdenk7205e402003-09-10 22:30:53 +0000326
Benoît Thébaudeaucc63b252012-07-20 15:21:08 +0200327 memcpy(buffer, tmpbuf, size);
wdenk71f95112003-06-15 22:40:42 +0000328 }
329
330 return 0;
331}
332
wdenk71f95112003-06-15 22:40:42 +0000333/*
Benoît Thébaudeau1170e632012-09-18 08:14:56 +0000334 * Read at most 'maxsize' bytes from 'pos' in the file associated with 'dentptr'
wdenk71f95112003-06-15 22:40:42 +0000335 * into 'buffer'.
336 * Return the number of bytes read or -1 on fatal errors.
337 */
Benoît Thébaudeau1170e632012-09-18 08:14:56 +0000338__u8 get_contents_vfatname_block[MAX_CLUSTSIZE]
339 __aligned(ARCH_DMA_MINALIGN);
340
wdenk71f95112003-06-15 22:40:42 +0000341static long
Benoît Thébaudeau1170e632012-09-18 08:14:56 +0000342get_contents(fsdata *mydata, dir_entry *dentptr, unsigned long pos,
343 __u8 *buffer, unsigned long maxsize)
wdenk71f95112003-06-15 22:40:42 +0000344{
345 unsigned long filesize = FAT2CPU32(dentptr->size), gotsize = 0;
Sergei Shtylyovac497772011-08-08 09:38:33 +0000346 unsigned int bytesperclust = mydata->clust_size * mydata->sect_size;
wdenk71f95112003-06-15 22:40:42 +0000347 __u32 curclust = START(dentptr);
wdenk7205e402003-09-10 22:30:53 +0000348 __u32 endclust, newclust;
349 unsigned long actsize;
wdenk71f95112003-06-15 22:40:42 +0000350
Wolfgang Denk7385c282010-07-19 11:37:00 +0200351 debug("Filesize: %ld bytes\n", filesize);
wdenk71f95112003-06-15 22:40:42 +0000352
Benoît Thébaudeau1170e632012-09-18 08:14:56 +0000353 if (pos >= filesize) {
354 debug("Read position past EOF: %lu\n", pos);
355 return gotsize;
356 }
357
358 if (maxsize > 0 && filesize > pos + maxsize)
359 filesize = pos + maxsize;
wdenk71f95112003-06-15 22:40:42 +0000360
Wolfgang Denk7385c282010-07-19 11:37:00 +0200361 debug("%ld bytes\n", filesize);
wdenk71f95112003-06-15 22:40:42 +0000362
Wolfgang Denk7385c282010-07-19 11:37:00 +0200363 actsize = bytesperclust;
Benoît Thébaudeau1170e632012-09-18 08:14:56 +0000364
365 /* go to cluster at pos */
366 while (actsize <= pos) {
367 curclust = get_fatent(mydata, curclust);
368 if (CHECK_CLUST(curclust, mydata->fatsize)) {
369 debug("curclust: 0x%x\n", curclust);
370 debug("Invalid FAT entry\n");
371 return gotsize;
372 }
373 actsize += bytesperclust;
374 }
375
376 /* actsize > pos */
377 actsize -= bytesperclust;
378 filesize -= actsize;
379 pos -= actsize;
380
381 /* align to beginning of next cluster if any */
382 if (pos) {
383 actsize = min(filesize, bytesperclust);
384 if (get_cluster(mydata, curclust, get_contents_vfatname_block,
385 (int)actsize) != 0) {
386 printf("Error reading cluster\n");
387 return -1;
388 }
389 filesize -= actsize;
390 actsize -= pos;
391 memcpy(buffer, get_contents_vfatname_block + pos, actsize);
392 gotsize += actsize;
393 if (!filesize)
394 return gotsize;
395 buffer += actsize;
396
397 curclust = get_fatent(mydata, curclust);
398 if (CHECK_CLUST(curclust, mydata->fatsize)) {
399 debug("curclust: 0x%x\n", curclust);
400 debug("Invalid FAT entry\n");
401 return gotsize;
402 }
403 }
404
405 actsize = bytesperclust;
Wolfgang Denk7385c282010-07-19 11:37:00 +0200406 endclust = curclust;
407
wdenk71f95112003-06-15 22:40:42 +0000408 do {
wdenk7205e402003-09-10 22:30:53 +0000409 /* search for consecutive clusters */
Wolfgang Denk7385c282010-07-19 11:37:00 +0200410 while (actsize < filesize) {
wdenk7205e402003-09-10 22:30:53 +0000411 newclust = get_fatent(mydata, endclust);
Wolfgang Denk7385c282010-07-19 11:37:00 +0200412 if ((newclust - 1) != endclust)
wdenk7205e402003-09-10 22:30:53 +0000413 goto getit;
michael8ce4e5c2008-03-02 23:33:46 +0100414 if (CHECK_CLUST(newclust, mydata->fatsize)) {
Wolfgang Denk7385c282010-07-19 11:37:00 +0200415 debug("curclust: 0x%x\n", newclust);
416 debug("Invalid FAT entry\n");
wdenk7205e402003-09-10 22:30:53 +0000417 return gotsize;
418 }
Wolfgang Denk7385c282010-07-19 11:37:00 +0200419 endclust = newclust;
420 actsize += bytesperclust;
wdenk7205e402003-09-10 22:30:53 +0000421 }
Wolfgang Denk7385c282010-07-19 11:37:00 +0200422
wdenk7205e402003-09-10 22:30:53 +0000423 /* get remaining bytes */
Wolfgang Denk7385c282010-07-19 11:37:00 +0200424 actsize = filesize;
Benoît Thébaudeau0880e5b2012-07-20 15:21:37 +0200425 if (get_cluster(mydata, curclust, buffer, (int)actsize) != 0) {
Wolfgang Denk7385c282010-07-19 11:37:00 +0200426 printf("Error reading cluster\n");
wdenk7205e402003-09-10 22:30:53 +0000427 return -1;
428 }
Wolfgang Denk7385c282010-07-19 11:37:00 +0200429 gotsize += actsize;
wdenk7205e402003-09-10 22:30:53 +0000430 return gotsize;
431getit:
432 if (get_cluster(mydata, curclust, buffer, (int)actsize) != 0) {
Wolfgang Denk7385c282010-07-19 11:37:00 +0200433 printf("Error reading cluster\n");
wdenk7205e402003-09-10 22:30:53 +0000434 return -1;
435 }
436 gotsize += (int)actsize;
437 filesize -= actsize;
438 buffer += actsize;
Wolfgang Denk7385c282010-07-19 11:37:00 +0200439
wdenk7205e402003-09-10 22:30:53 +0000440 curclust = get_fatent(mydata, endclust);
michael8ce4e5c2008-03-02 23:33:46 +0100441 if (CHECK_CLUST(curclust, mydata->fatsize)) {
Wolfgang Denk7385c282010-07-19 11:37:00 +0200442 debug("curclust: 0x%x\n", curclust);
443 printf("Invalid FAT entry\n");
wdenk71f95112003-06-15 22:40:42 +0000444 return gotsize;
445 }
Wolfgang Denk7385c282010-07-19 11:37:00 +0200446 actsize = bytesperclust;
447 endclust = curclust;
wdenk71f95112003-06-15 22:40:42 +0000448 } while (1);
449}
450
wdenk71f95112003-06-15 22:40:42 +0000451/*
452 * Extract the file name information from 'slotptr' into 'l_name',
453 * starting at l_name[*idx].
454 * Return 1 if terminator (zero byte) is found, 0 otherwise.
455 */
Benoît Thébaudeau9795e072012-07-20 15:18:44 +0200456static int slot2str(dir_slot *slotptr, char *l_name, int *idx)
wdenk71f95112003-06-15 22:40:42 +0000457{
458 int j;
459
460 for (j = 0; j <= 8; j += 2) {
461 l_name[*idx] = slotptr->name0_4[j];
Wolfgang Denk7385c282010-07-19 11:37:00 +0200462 if (l_name[*idx] == 0x00)
463 return 1;
wdenk71f95112003-06-15 22:40:42 +0000464 (*idx)++;
465 }
466 for (j = 0; j <= 10; j += 2) {
467 l_name[*idx] = slotptr->name5_10[j];
Wolfgang Denk7385c282010-07-19 11:37:00 +0200468 if (l_name[*idx] == 0x00)
469 return 1;
wdenk71f95112003-06-15 22:40:42 +0000470 (*idx)++;
471 }
472 for (j = 0; j <= 2; j += 2) {
473 l_name[*idx] = slotptr->name11_12[j];
Wolfgang Denk7385c282010-07-19 11:37:00 +0200474 if (l_name[*idx] == 0x00)
475 return 1;
wdenk71f95112003-06-15 22:40:42 +0000476 (*idx)++;
477 }
478
479 return 0;
480}
481
wdenk71f95112003-06-15 22:40:42 +0000482/*
483 * Extract the full long filename starting at 'retdent' (which is really
484 * a slot) into 'l_name'. If successful also copy the real directory entry
485 * into 'retdent'
486 * Return 0 on success, -1 otherwise.
487 */
488static int
Benoît Thébaudeau9795e072012-07-20 15:18:44 +0200489get_vfatname(fsdata *mydata, int curclust, __u8 *cluster,
490 dir_entry *retdent, char *l_name)
wdenk71f95112003-06-15 22:40:42 +0000491{
492 dir_entry *realdent;
Wolfgang Denk7385c282010-07-19 11:37:00 +0200493 dir_slot *slotptr = (dir_slot *)retdent;
Sergei Shtylyov025421e2011-08-19 09:37:46 +0000494 __u8 *buflimit = cluster + mydata->sect_size * ((curclust == 0) ?
495 PREFETCH_BLOCKS :
496 mydata->clust_size);
Wolfgang Denk7385c282010-07-19 11:37:00 +0200497 __u8 counter = (slotptr->id & ~LAST_LONG_ENTRY_MASK) & 0xff;
wdenk71f95112003-06-15 22:40:42 +0000498 int idx = 0;
499
Mikhail Zolotaryov38315302010-09-08 17:06:03 +0300500 if (counter > VFAT_MAXSEQ) {
501 debug("Error: VFAT name is too long\n");
502 return -1;
503 }
504
505 while ((__u8 *)slotptr < buflimit) {
Wolfgang Denk7385c282010-07-19 11:37:00 +0200506 if (counter == 0)
507 break;
wdenk2d1a5372004-02-23 19:30:57 +0000508 if (((slotptr->id & ~LAST_LONG_ENTRY_MASK) & 0xff) != counter)
509 return -1;
wdenk71f95112003-06-15 22:40:42 +0000510 slotptr++;
511 counter--;
512 }
513
Mikhail Zolotaryov38315302010-09-08 17:06:03 +0300514 if ((__u8 *)slotptr >= buflimit) {
wdenk71f95112003-06-15 22:40:42 +0000515 dir_slot *slotptr2;
516
Mikhail Zolotaryov38315302010-09-08 17:06:03 +0300517 if (curclust == 0)
518 return -1;
wdenk71f95112003-06-15 22:40:42 +0000519 curclust = get_fatent(mydata, curclust);
michael8ce4e5c2008-03-02 23:33:46 +0100520 if (CHECK_CLUST(curclust, mydata->fatsize)) {
Wolfgang Denk7385c282010-07-19 11:37:00 +0200521 debug("curclust: 0x%x\n", curclust);
522 printf("Invalid FAT entry\n");
wdenk71f95112003-06-15 22:40:42 +0000523 return -1;
524 }
Wolfgang Denk7385c282010-07-19 11:37:00 +0200525
Benoît Thébaudeau1170e632012-09-18 08:14:56 +0000526 if (get_cluster(mydata, curclust, get_contents_vfatname_block,
Sergei Shtylyovac497772011-08-08 09:38:33 +0000527 mydata->clust_size * mydata->sect_size) != 0) {
Wolfgang Denk7385c282010-07-19 11:37:00 +0200528 debug("Error: reading directory block\n");
wdenk71f95112003-06-15 22:40:42 +0000529 return -1;
530 }
Wolfgang Denk7385c282010-07-19 11:37:00 +0200531
Benoît Thébaudeau1170e632012-09-18 08:14:56 +0000532 slotptr2 = (dir_slot *)get_contents_vfatname_block;
Mikhail Zolotaryov38315302010-09-08 17:06:03 +0300533 while (counter > 0) {
534 if (((slotptr2->id & ~LAST_LONG_ENTRY_MASK)
535 & 0xff) != counter)
536 return -1;
wdenk71f95112003-06-15 22:40:42 +0000537 slotptr2++;
Mikhail Zolotaryov38315302010-09-08 17:06:03 +0300538 counter--;
539 }
Wolfgang Denk7385c282010-07-19 11:37:00 +0200540
wdenk71f95112003-06-15 22:40:42 +0000541 /* Save the real directory entry */
Mikhail Zolotaryov38315302010-09-08 17:06:03 +0300542 realdent = (dir_entry *)slotptr2;
Benoît Thébaudeau1170e632012-09-18 08:14:56 +0000543 while ((__u8 *)slotptr2 > get_contents_vfatname_block) {
wdenk71f95112003-06-15 22:40:42 +0000544 slotptr2--;
Mikhail Zolotaryov38315302010-09-08 17:06:03 +0300545 slot2str(slotptr2, l_name, &idx);
wdenk71f95112003-06-15 22:40:42 +0000546 }
547 } else {
548 /* Save the real directory entry */
Wolfgang Denk7385c282010-07-19 11:37:00 +0200549 realdent = (dir_entry *)slotptr;
wdenk71f95112003-06-15 22:40:42 +0000550 }
551
552 do {
553 slotptr--;
Wolfgang Denk7385c282010-07-19 11:37:00 +0200554 if (slot2str(slotptr, l_name, &idx))
555 break;
wdenk2d1a5372004-02-23 19:30:57 +0000556 } while (!(slotptr->id & LAST_LONG_ENTRY_MASK));
wdenk71f95112003-06-15 22:40:42 +0000557
558 l_name[idx] = '\0';
Wolfgang Denk7385c282010-07-19 11:37:00 +0200559 if (*l_name == DELETED_FLAG)
560 *l_name = '\0';
561 else if (*l_name == aRING)
562 *l_name = DELETED_FLAG;
wdenk71f95112003-06-15 22:40:42 +0000563 downcase(l_name);
564
565 /* Return the real directory entry */
566 memcpy(retdent, realdent, sizeof(dir_entry));
567
568 return 0;
569}
570
wdenk71f95112003-06-15 22:40:42 +0000571/* Calculate short name checksum */
Marek Vasutff04f6d2012-10-09 07:20:22 +0000572static __u8 mkcksum(const char name[8], const char ext[3])
wdenk71f95112003-06-15 22:40:42 +0000573{
574 int i;
Wolfgang Denk7385c282010-07-19 11:37:00 +0200575
wdenk71f95112003-06-15 22:40:42 +0000576 __u8 ret = 0;
577
Marek Vasut6ad77d82013-01-11 03:35:48 +0000578 for (i = 0; i < 8; i++)
Marek Vasutff04f6d2012-10-09 07:20:22 +0000579 ret = (((ret & 1) << 7) | ((ret & 0xfe) >> 1)) + name[i];
Marek Vasut6ad77d82013-01-11 03:35:48 +0000580 for (i = 0; i < 3; i++)
Marek Vasutff04f6d2012-10-09 07:20:22 +0000581 ret = (((ret & 1) << 7) | ((ret & 0xfe) >> 1)) + ext[i];
wdenk71f95112003-06-15 22:40:42 +0000582
583 return ret;
584}
wdenk71f95112003-06-15 22:40:42 +0000585
586/*
587 * Get the directory entry associated with 'filename' from the directory
588 * starting at 'startsect'
589 */
Eric Nelson9a800ac2012-04-11 04:08:53 +0000590__u8 get_dentfromdir_block[MAX_CLUSTSIZE]
591 __aligned(ARCH_DMA_MINALIGN);
Wolfgang Denk7385c282010-07-19 11:37:00 +0200592
Benoît Thébaudeau9795e072012-07-20 15:18:44 +0200593static dir_entry *get_dentfromdir(fsdata *mydata, int startsect,
594 char *filename, dir_entry *retdent,
595 int dols)
wdenk71f95112003-06-15 22:40:42 +0000596{
Wolfgang Denk7385c282010-07-19 11:37:00 +0200597 __u16 prevcksum = 0xffff;
598 __u32 curclust = START(retdent);
599 int files = 0, dirs = 0;
wdenk71f95112003-06-15 22:40:42 +0000600
Wolfgang Denk7385c282010-07-19 11:37:00 +0200601 debug("get_dentfromdir: %s\n", filename);
wdenk71f95112003-06-15 22:40:42 +0000602
Wolfgang Denk7385c282010-07-19 11:37:00 +0200603 while (1) {
604 dir_entry *dentptr;
wdenk71f95112003-06-15 22:40:42 +0000605
Wolfgang Denk7385c282010-07-19 11:37:00 +0200606 int i;
wdenk71f95112003-06-15 22:40:42 +0000607
Wolfgang Denk7385c282010-07-19 11:37:00 +0200608 if (get_cluster(mydata, curclust, get_dentfromdir_block,
Sergei Shtylyovac497772011-08-08 09:38:33 +0000609 mydata->clust_size * mydata->sect_size) != 0) {
Wolfgang Denk7385c282010-07-19 11:37:00 +0200610 debug("Error: reading directory block\n");
611 return NULL;
612 }
613
614 dentptr = (dir_entry *)get_dentfromdir_block;
615
616 for (i = 0; i < DIRENTSPERCLUST; i++) {
Mikhail Zolotaryov38315302010-09-08 17:06:03 +0300617 char s_name[14], l_name[VFAT_MAXLEN_BYTES];
Wolfgang Denk7385c282010-07-19 11:37:00 +0200618
619 l_name[0] = '\0';
620 if (dentptr->name[0] == DELETED_FLAG) {
621 dentptr++;
622 continue;
wdenk71f95112003-06-15 22:40:42 +0000623 }
Wolfgang Denk7385c282010-07-19 11:37:00 +0200624 if ((dentptr->attr & ATTR_VOLUME)) {
Richard Genoudcb940c72012-12-13 03:30:10 +0000625 if (vfat_enabled &&
626 (dentptr->attr & ATTR_VFAT) == ATTR_VFAT &&
J. Vijayanand206d68f2011-10-19 07:43:08 +0000627 (dentptr->name[0] & LAST_LONG_ENTRY_MASK)) {
Wolfgang Denk7385c282010-07-19 11:37:00 +0200628 prevcksum = ((dir_slot *)dentptr)->alias_checksum;
629 get_vfatname(mydata, curclust,
630 get_dentfromdir_block,
631 dentptr, l_name);
632 if (dols) {
633 int isdir;
634 char dirc;
635 int doit = 0;
636
637 isdir = (dentptr->attr & ATTR_DIR);
638
639 if (isdir) {
640 dirs++;
641 dirc = '/';
642 doit = 1;
643 } else {
644 dirc = ' ';
645 if (l_name[0] != 0) {
646 files++;
647 doit = 1;
648 }
649 }
650 if (doit) {
651 if (dirc == ' ') {
652 printf(" %8ld %s%c\n",
653 (long)FAT2CPU32(dentptr->size),
654 l_name,
655 dirc);
656 } else {
657 printf(" %s%c\n",
658 l_name,
659 dirc);
660 }
661 }
662 dentptr++;
663 continue;
664 }
665 debug("vfatname: |%s|\n", l_name);
Richard Genoudcb940c72012-12-13 03:30:10 +0000666 } else {
Wolfgang Denk7385c282010-07-19 11:37:00 +0200667 /* Volume label or VFAT entry */
668 dentptr++;
669 continue;
670 }
671 }
672 if (dentptr->name[0] == 0) {
673 if (dols) {
674 printf("\n%d file(s), %d dir(s)\n\n",
675 files, dirs);
676 }
677 debug("Dentname == NULL - %d\n", i);
678 return NULL;
679 }
Richard Genoudcb940c72012-12-13 03:30:10 +0000680 if (vfat_enabled) {
681 __u8 csum = mkcksum(dentptr->name, dentptr->ext);
682 if (dols && csum == prevcksum) {
683 prevcksum = 0xffff;
684 dentptr++;
685 continue;
686 }
Wolfgang Denk7385c282010-07-19 11:37:00 +0200687 }
Richard Genoudcb940c72012-12-13 03:30:10 +0000688
Wolfgang Denk7385c282010-07-19 11:37:00 +0200689 get_name(dentptr, s_name);
690 if (dols) {
691 int isdir = (dentptr->attr & ATTR_DIR);
692 char dirc;
693 int doit = 0;
wdenk71f95112003-06-15 22:40:42 +0000694
Wolfgang Denk7385c282010-07-19 11:37:00 +0200695 if (isdir) {
696 dirs++;
697 dirc = '/';
698 doit = 1;
699 } else {
700 dirc = ' ';
701 if (s_name[0] != 0) {
702 files++;
703 doit = 1;
704 }
705 }
706
707 if (doit) {
708 if (dirc == ' ') {
709 printf(" %8ld %s%c\n",
710 (long)FAT2CPU32(dentptr->size),
711 s_name, dirc);
712 } else {
713 printf(" %s%c\n",
714 s_name, dirc);
715 }
716 }
717
718 dentptr++;
719 continue;
720 }
721
722 if (strcmp(filename, s_name)
723 && strcmp(filename, l_name)) {
724 debug("Mismatch: |%s|%s|\n", s_name, l_name);
725 dentptr++;
726 continue;
727 }
728
729 memcpy(retdent, dentptr, sizeof(dir_entry));
730
731 debug("DentName: %s", s_name);
732 debug(", start: 0x%x", START(dentptr));
733 debug(", size: 0x%x %s\n",
734 FAT2CPU32(dentptr->size),
735 (dentptr->attr & ATTR_DIR) ? "(DIR)" : "");
736
737 return retdent;
wdenk71f95112003-06-15 22:40:42 +0000738 }
Wolfgang Denk7385c282010-07-19 11:37:00 +0200739
740 curclust = get_fatent(mydata, curclust);
741 if (CHECK_CLUST(curclust, mydata->fatsize)) {
742 debug("curclust: 0x%x\n", curclust);
743 printf("Invalid FAT entry\n");
744 return NULL;
wdenk71f95112003-06-15 22:40:42 +0000745 }
wdenk71f95112003-06-15 22:40:42 +0000746 }
wdenk71f95112003-06-15 22:40:42 +0000747
Wolfgang Denk7385c282010-07-19 11:37:00 +0200748 return NULL;
wdenk71f95112003-06-15 22:40:42 +0000749}
750
wdenk71f95112003-06-15 22:40:42 +0000751/*
752 * Read boot sector and volume info from a FAT filesystem
753 */
754static int
Benoît Thébaudeau9795e072012-07-20 15:18:44 +0200755read_bootsectandvi(boot_sector *bs, volume_info *volinfo, int *fatsize)
wdenk71f95112003-06-15 22:40:42 +0000756{
Sergei Shtylyovac497772011-08-08 09:38:33 +0000757 __u8 *block;
wdenk71f95112003-06-15 22:40:42 +0000758 volume_info *vistart;
Sergei Shtylyovac497772011-08-08 09:38:33 +0000759 int ret = 0;
760
761 if (cur_dev == NULL) {
762 debug("Error: no device selected\n");
763 return -1;
764 }
765
Eric Nelson9a800ac2012-04-11 04:08:53 +0000766 block = memalign(ARCH_DMA_MINALIGN, cur_dev->blksz);
Sergei Shtylyovac497772011-08-08 09:38:33 +0000767 if (block == NULL) {
768 debug("Error: allocating block\n");
769 return -1;
770 }
wdenk71f95112003-06-15 22:40:42 +0000771
Benoît Thébaudeau9795e072012-07-20 15:18:44 +0200772 if (disk_read(0, 1, block) < 0) {
Wolfgang Denk7385c282010-07-19 11:37:00 +0200773 debug("Error: reading block\n");
Sergei Shtylyovac497772011-08-08 09:38:33 +0000774 goto fail;
wdenk71f95112003-06-15 22:40:42 +0000775 }
776
777 memcpy(bs, block, sizeof(boot_sector));
Wolfgang Denk7385c282010-07-19 11:37:00 +0200778 bs->reserved = FAT2CPU16(bs->reserved);
779 bs->fat_length = FAT2CPU16(bs->fat_length);
780 bs->secs_track = FAT2CPU16(bs->secs_track);
781 bs->heads = FAT2CPU16(bs->heads);
782 bs->total_sect = FAT2CPU32(bs->total_sect);
wdenk71f95112003-06-15 22:40:42 +0000783
784 /* FAT32 entries */
785 if (bs->fat_length == 0) {
786 /* Assume FAT32 */
787 bs->fat32_length = FAT2CPU32(bs->fat32_length);
Wolfgang Denk7385c282010-07-19 11:37:00 +0200788 bs->flags = FAT2CPU16(bs->flags);
wdenk71f95112003-06-15 22:40:42 +0000789 bs->root_cluster = FAT2CPU32(bs->root_cluster);
Wolfgang Denk7385c282010-07-19 11:37:00 +0200790 bs->info_sector = FAT2CPU16(bs->info_sector);
791 bs->backup_boot = FAT2CPU16(bs->backup_boot);
792 vistart = (volume_info *)(block + sizeof(boot_sector));
wdenk71f95112003-06-15 22:40:42 +0000793 *fatsize = 32;
794 } else {
Wolfgang Denk7385c282010-07-19 11:37:00 +0200795 vistart = (volume_info *)&(bs->fat32_length);
wdenk71f95112003-06-15 22:40:42 +0000796 *fatsize = 0;
797 }
798 memcpy(volinfo, vistart, sizeof(volume_info));
799
wdenk71f95112003-06-15 22:40:42 +0000800 if (*fatsize == 32) {
Wolfgang Denk7385c282010-07-19 11:37:00 +0200801 if (strncmp(FAT32_SIGN, vistart->fs_type, SIGNLEN) == 0)
Sergei Shtylyovac497772011-08-08 09:38:33 +0000802 goto exit;
wdenk71f95112003-06-15 22:40:42 +0000803 } else {
Tom Rix651351f2009-05-20 07:55:41 -0500804 if (strncmp(FAT12_SIGN, vistart->fs_type, SIGNLEN) == 0) {
wdenk71f95112003-06-15 22:40:42 +0000805 *fatsize = 12;
Sergei Shtylyovac497772011-08-08 09:38:33 +0000806 goto exit;
wdenk71f95112003-06-15 22:40:42 +0000807 }
Tom Rix651351f2009-05-20 07:55:41 -0500808 if (strncmp(FAT16_SIGN, vistart->fs_type, SIGNLEN) == 0) {
wdenk71f95112003-06-15 22:40:42 +0000809 *fatsize = 16;
Sergei Shtylyovac497772011-08-08 09:38:33 +0000810 goto exit;
wdenk71f95112003-06-15 22:40:42 +0000811 }
812 }
813
Wolfgang Denk7385c282010-07-19 11:37:00 +0200814 debug("Error: broken fs_type sign\n");
Sergei Shtylyovac497772011-08-08 09:38:33 +0000815fail:
816 ret = -1;
817exit:
818 free(block);
819 return ret;
wdenk71f95112003-06-15 22:40:42 +0000820}
821
Benoît Thébaudeau1170e632012-09-18 08:14:56 +0000822__u8 do_fat_read_at_block[MAX_CLUSTSIZE]
Eric Nelson9a800ac2012-04-11 04:08:53 +0000823 __aligned(ARCH_DMA_MINALIGN);
Wolfgang Denk7385c282010-07-19 11:37:00 +0200824
stroese20cc00d2004-12-16 17:57:26 +0000825long
Benoît Thébaudeau1170e632012-09-18 08:14:56 +0000826do_fat_read_at(const char *filename, unsigned long pos, void *buffer,
827 unsigned long maxsize, int dols)
wdenk71f95112003-06-15 22:40:42 +0000828{
Wolfgang Denk7385c282010-07-19 11:37:00 +0200829 char fnamecopy[2048];
830 boot_sector bs;
831 volume_info volinfo;
832 fsdata datablock;
833 fsdata *mydata = &datablock;
Benoît Thébaudeaucd1b0422012-07-20 15:20:12 +0200834 dir_entry *dentptr = NULL;
Wolfgang Denk7385c282010-07-19 11:37:00 +0200835 __u16 prevcksum = 0xffff;
836 char *subname = "";
Erik Hansen3f270f42011-03-24 10:15:37 +0100837 __u32 cursect;
Wolfgang Denk7385c282010-07-19 11:37:00 +0200838 int idx, isdir = 0;
839 int files = 0, dirs = 0;
Sergei Shtylyovac497772011-08-08 09:38:33 +0000840 long ret = -1;
Wolfgang Denk7385c282010-07-19 11:37:00 +0200841 int firsttime;
Sergei Shtylyov40e21912011-08-19 09:32:34 +0000842 __u32 root_cluster = 0;
Erik Hansen3f270f42011-03-24 10:15:37 +0100843 int rootdir_size = 0;
Wolfgang Denk7385c282010-07-19 11:37:00 +0200844 int j;
wdenk71f95112003-06-15 22:40:42 +0000845
Wolfgang Denk7385c282010-07-19 11:37:00 +0200846 if (read_bootsectandvi(&bs, &volinfo, &mydata->fatsize)) {
847 debug("Error: reading boot sector\n");
848 return -1;
849 }
850
Sergei Shtylyov40e21912011-08-19 09:32:34 +0000851 if (mydata->fatsize == 32) {
852 root_cluster = bs.root_cluster;
Wolfgang Denk7385c282010-07-19 11:37:00 +0200853 mydata->fatlength = bs.fat32_length;
Sergei Shtylyov40e21912011-08-19 09:32:34 +0000854 } else {
Wolfgang Denk7385c282010-07-19 11:37:00 +0200855 mydata->fatlength = bs.fat_length;
Sergei Shtylyov40e21912011-08-19 09:32:34 +0000856 }
wdenk71f95112003-06-15 22:40:42 +0000857
Wolfgang Denk7385c282010-07-19 11:37:00 +0200858 mydata->fat_sect = bs.reserved;
wdenk71f95112003-06-15 22:40:42 +0000859
Wolfgang Denk7385c282010-07-19 11:37:00 +0200860 cursect = mydata->rootdir_sect
861 = mydata->fat_sect + mydata->fatlength * bs.fats;
wdenk71f95112003-06-15 22:40:42 +0000862
Sergei Shtylyovac497772011-08-08 09:38:33 +0000863 mydata->sect_size = (bs.sector_size[1] << 8) + bs.sector_size[0];
Wolfgang Denk7385c282010-07-19 11:37:00 +0200864 mydata->clust_size = bs.cluster_size;
Kyle Moffett46236b12011-12-20 07:41:13 +0000865 if (mydata->sect_size != cur_part_info.blksz) {
866 printf("Error: FAT sector size mismatch (fs=%hu, dev=%lu)\n",
867 mydata->sect_size, cur_part_info.blksz);
868 return -1;
869 }
wdenk71f95112003-06-15 22:40:42 +0000870
Wolfgang Denk7385c282010-07-19 11:37:00 +0200871 if (mydata->fatsize == 32) {
872 mydata->data_begin = mydata->rootdir_sect -
873 (mydata->clust_size * 2);
874 } else {
Wolfgang Denk7385c282010-07-19 11:37:00 +0200875 rootdir_size = ((bs.dir_entries[1] * (int)256 +
876 bs.dir_entries[0]) *
877 sizeof(dir_entry)) /
Sergei Shtylyovac497772011-08-08 09:38:33 +0000878 mydata->sect_size;
Wolfgang Denk7385c282010-07-19 11:37:00 +0200879 mydata->data_begin = mydata->rootdir_sect +
880 rootdir_size -
881 (mydata->clust_size * 2);
wdenk71f95112003-06-15 22:40:42 +0000882 }
wdenk71f95112003-06-15 22:40:42 +0000883
Wolfgang Denk7385c282010-07-19 11:37:00 +0200884 mydata->fatbufnum = -1;
Eric Nelson9a800ac2012-04-11 04:08:53 +0000885 mydata->fatbuf = memalign(ARCH_DMA_MINALIGN, FATBUFSIZE);
Sergei Shtylyovac497772011-08-08 09:38:33 +0000886 if (mydata->fatbuf == NULL) {
887 debug("Error: allocating memory\n");
888 return -1;
889 }
Wolfgang Denk7385c282010-07-19 11:37:00 +0200890
Richard Genoudcb940c72012-12-13 03:30:10 +0000891 if (vfat_enabled)
892 debug("VFAT Support enabled\n");
893
Wolfgang Denk7385c282010-07-19 11:37:00 +0200894 debug("FAT%d, fat_sect: %d, fatlength: %d\n",
895 mydata->fatsize, mydata->fat_sect, mydata->fatlength);
896 debug("Rootdir begins at cluster: %d, sector: %d, offset: %x\n"
897 "Data begins at: %d\n",
898 root_cluster,
899 mydata->rootdir_sect,
Sergei Shtylyovac497772011-08-08 09:38:33 +0000900 mydata->rootdir_sect * mydata->sect_size, mydata->data_begin);
901 debug("Sector size: %d, cluster size: %d\n", mydata->sect_size,
902 mydata->clust_size);
Wolfgang Denk7385c282010-07-19 11:37:00 +0200903
904 /* "cwd" is always the root... */
905 while (ISDIRDELIM(*filename))
906 filename++;
907
908 /* Make a copy of the filename and convert it to lowercase */
909 strcpy(fnamecopy, filename);
910 downcase(fnamecopy);
911
912 if (*fnamecopy == '\0') {
913 if (!dols)
Sergei Shtylyovac497772011-08-08 09:38:33 +0000914 goto exit;
Wolfgang Denk7385c282010-07-19 11:37:00 +0200915
916 dols = LS_ROOT;
917 } else if ((idx = dirdelim(fnamecopy)) >= 0) {
918 isdir = 1;
919 fnamecopy[idx] = '\0';
920 subname = fnamecopy + idx + 1;
921
922 /* Handle multiple delimiters */
923 while (ISDIRDELIM(*subname))
924 subname++;
925 } else if (dols) {
926 isdir = 1;
927 }
928
929 j = 0;
930 while (1) {
931 int i;
932
Benoît Thébaudeaucd1b0422012-07-20 15:20:12 +0200933 if (j == 0) {
934 debug("FAT read sect=%d, clust_size=%d, DIRENTSPERBLOCK=%zd\n",
935 cursect, mydata->clust_size, DIRENTSPERBLOCK);
Wolfgang Denk7385c282010-07-19 11:37:00 +0200936
Benoît Thébaudeaucd1b0422012-07-20 15:20:12 +0200937 if (disk_read(cursect,
938 (mydata->fatsize == 32) ?
939 (mydata->clust_size) :
940 PREFETCH_BLOCKS,
Benoît Thébaudeau1170e632012-09-18 08:14:56 +0000941 do_fat_read_at_block) < 0) {
Benoît Thébaudeaucd1b0422012-07-20 15:20:12 +0200942 debug("Error: reading rootdir block\n");
943 goto exit;
944 }
945
Benoît Thébaudeau1170e632012-09-18 08:14:56 +0000946 dentptr = (dir_entry *) do_fat_read_at_block;
wdenk71f95112003-06-15 22:40:42 +0000947 }
Wolfgang Denk7385c282010-07-19 11:37:00 +0200948
Wolfgang Denk7385c282010-07-19 11:37:00 +0200949 for (i = 0; i < DIRENTSPERBLOCK; i++) {
Mikhail Zolotaryov38315302010-09-08 17:06:03 +0300950 char s_name[14], l_name[VFAT_MAXLEN_BYTES];
Marek Vasutff04f6d2012-10-09 07:20:22 +0000951 __u8 csum;
Wolfgang Denk7385c282010-07-19 11:37:00 +0200952
953 l_name[0] = '\0';
Mikhail Zolotaryov38315302010-09-08 17:06:03 +0300954 if (dentptr->name[0] == DELETED_FLAG) {
955 dentptr++;
956 continue;
957 }
Marek Vasutff04f6d2012-10-09 07:20:22 +0000958
Richard Genoudcb940c72012-12-13 03:30:10 +0000959 if (vfat_enabled)
960 csum = mkcksum(dentptr->name, dentptr->ext);
961
Marek Vasutff04f6d2012-10-09 07:20:22 +0000962 if (dentptr->attr & ATTR_VOLUME) {
Richard Genoudcb940c72012-12-13 03:30:10 +0000963 if (vfat_enabled &&
964 (dentptr->attr & ATTR_VFAT) == ATTR_VFAT &&
Wolfgang Denk7385c282010-07-19 11:37:00 +0200965 (dentptr->name[0] & LAST_LONG_ENTRY_MASK)) {
966 prevcksum =
967 ((dir_slot *)dentptr)->alias_checksum;
wdenk71f95112003-06-15 22:40:42 +0000968
Mikhail Zolotaryov38315302010-09-08 17:06:03 +0300969 get_vfatname(mydata,
Sergei Shtylyov40e21912011-08-19 09:32:34 +0000970 root_cluster,
Benoît Thébaudeau1170e632012-09-18 08:14:56 +0000971 do_fat_read_at_block,
Wolfgang Denk7385c282010-07-19 11:37:00 +0200972 dentptr, l_name);
973
974 if (dols == LS_ROOT) {
975 char dirc;
976 int doit = 0;
977 int isdir =
978 (dentptr->attr & ATTR_DIR);
979
980 if (isdir) {
981 dirs++;
982 dirc = '/';
983 doit = 1;
984 } else {
985 dirc = ' ';
986 if (l_name[0] != 0) {
987 files++;
988 doit = 1;
989 }
990 }
991 if (doit) {
992 if (dirc == ' ') {
993 printf(" %8ld %s%c\n",
994 (long)FAT2CPU32(dentptr->size),
995 l_name,
996 dirc);
997 } else {
998 printf(" %s%c\n",
999 l_name,
1000 dirc);
1001 }
1002 }
1003 dentptr++;
1004 continue;
1005 }
1006 debug("Rootvfatname: |%s|\n",
1007 l_name);
Richard Genoudcb940c72012-12-13 03:30:10 +00001008 } else {
Wolfgang Denk7385c282010-07-19 11:37:00 +02001009 /* Volume label or VFAT entry */
1010 dentptr++;
1011 continue;
1012 }
1013 } else if (dentptr->name[0] == 0) {
1014 debug("RootDentname == NULL - %d\n", i);
1015 if (dols == LS_ROOT) {
1016 printf("\n%d file(s), %d dir(s)\n\n",
1017 files, dirs);
Sergei Shtylyovac497772011-08-08 09:38:33 +00001018 ret = 0;
Wolfgang Denk7385c282010-07-19 11:37:00 +02001019 }
Sergei Shtylyovac497772011-08-08 09:38:33 +00001020 goto exit;
Wolfgang Denk7385c282010-07-19 11:37:00 +02001021 }
Richard Genoudcb940c72012-12-13 03:30:10 +00001022 else if (vfat_enabled &&
1023 dols == LS_ROOT && csum == prevcksum) {
Sergei Shtylyovbf34e7d2012-01-02 06:54:29 +00001024 prevcksum = 0xffff;
Wolfgang Denk7385c282010-07-19 11:37:00 +02001025 dentptr++;
1026 continue;
1027 }
Richard Genoudcb940c72012-12-13 03:30:10 +00001028
Wolfgang Denk7385c282010-07-19 11:37:00 +02001029 get_name(dentptr, s_name);
1030
1031 if (dols == LS_ROOT) {
1032 int isdir = (dentptr->attr & ATTR_DIR);
1033 char dirc;
1034 int doit = 0;
1035
1036 if (isdir) {
1037 dirc = '/';
1038 if (s_name[0] != 0) {
1039 dirs++;
1040 doit = 1;
1041 }
1042 } else {
1043 dirc = ' ';
1044 if (s_name[0] != 0) {
1045 files++;
1046 doit = 1;
1047 }
1048 }
1049 if (doit) {
1050 if (dirc == ' ') {
1051 printf(" %8ld %s%c\n",
1052 (long)FAT2CPU32(dentptr->size),
1053 s_name, dirc);
1054 } else {
1055 printf(" %s%c\n",
1056 s_name, dirc);
1057 }
1058 }
1059 dentptr++;
1060 continue;
1061 }
1062
1063 if (strcmp(fnamecopy, s_name)
1064 && strcmp(fnamecopy, l_name)) {
1065 debug("RootMismatch: |%s|%s|\n", s_name,
1066 l_name);
1067 dentptr++;
1068 continue;
1069 }
1070
1071 if (isdir && !(dentptr->attr & ATTR_DIR))
Sergei Shtylyovac497772011-08-08 09:38:33 +00001072 goto exit;
Wolfgang Denk7385c282010-07-19 11:37:00 +02001073
1074 debug("RootName: %s", s_name);
1075 debug(", start: 0x%x", START(dentptr));
1076 debug(", size: 0x%x %s\n",
1077 FAT2CPU32(dentptr->size),
1078 isdir ? "(DIR)" : "");
1079
1080 goto rootdir_done; /* We got a match */
1081 }
1082 debug("END LOOP: j=%d clust_size=%d\n", j,
1083 mydata->clust_size);
1084
1085 /*
1086 * On FAT32 we must fetch the FAT entries for the next
1087 * root directory clusters when a cluster has been
1088 * completely processed.
1089 */
Erik Hansen3f270f42011-03-24 10:15:37 +01001090 ++j;
Benoît Thébaudeaucd1b0422012-07-20 15:20:12 +02001091 int rootdir_end = 0;
1092 if (mydata->fatsize == 32) {
1093 if (j == mydata->clust_size) {
1094 int nxtsect = 0;
1095 int nxt_clust = 0;
Wolfgang Denk7385c282010-07-19 11:37:00 +02001096
Benoît Thébaudeaucd1b0422012-07-20 15:20:12 +02001097 nxt_clust = get_fatent(mydata, root_cluster);
1098 rootdir_end = CHECK_CLUST(nxt_clust, 32);
Wolfgang Denk7385c282010-07-19 11:37:00 +02001099
Benoît Thébaudeaucd1b0422012-07-20 15:20:12 +02001100 nxtsect = mydata->data_begin +
1101 (nxt_clust * mydata->clust_size);
Wolfgang Denk7385c282010-07-19 11:37:00 +02001102
Benoît Thébaudeaucd1b0422012-07-20 15:20:12 +02001103 root_cluster = nxt_clust;
Wolfgang Denk7385c282010-07-19 11:37:00 +02001104
Benoît Thébaudeaucd1b0422012-07-20 15:20:12 +02001105 cursect = nxtsect;
1106 j = 0;
1107 }
wdenk71f95112003-06-15 22:40:42 +00001108 } else {
Benoît Thébaudeaucd1b0422012-07-20 15:20:12 +02001109 if (j == PREFETCH_BLOCKS)
1110 j = 0;
1111
1112 rootdir_end = (++cursect - mydata->rootdir_sect >=
1113 rootdir_size);
wdenk71f95112003-06-15 22:40:42 +00001114 }
Erik Hansen3f270f42011-03-24 10:15:37 +01001115
1116 /* If end of rootdir reached */
Benoît Thébaudeaucd1b0422012-07-20 15:20:12 +02001117 if (rootdir_end) {
Erik Hansen3f270f42011-03-24 10:15:37 +01001118 if (dols == LS_ROOT) {
1119 printf("\n%d file(s), %d dir(s)\n\n",
1120 files, dirs);
Sergei Shtylyovac497772011-08-08 09:38:33 +00001121 ret = 0;
Erik Hansen3f270f42011-03-24 10:15:37 +01001122 }
Sergei Shtylyovac497772011-08-08 09:38:33 +00001123 goto exit;
Erik Hansen3f270f42011-03-24 10:15:37 +01001124 }
Wolfgang Denk7385c282010-07-19 11:37:00 +02001125 }
1126rootdir_done:
1127
1128 firsttime = 1;
1129
1130 while (isdir) {
1131 int startsect = mydata->data_begin
1132 + START(dentptr) * mydata->clust_size;
1133 dir_entry dent;
1134 char *nextname = NULL;
1135
1136 dent = *dentptr;
1137 dentptr = &dent;
1138
1139 idx = dirdelim(subname);
1140
1141 if (idx >= 0) {
1142 subname[idx] = '\0';
1143 nextname = subname + idx + 1;
1144 /* Handle multiple delimiters */
1145 while (ISDIRDELIM(*nextname))
1146 nextname++;
1147 if (dols && *nextname == '\0')
1148 firsttime = 0;
1149 } else {
1150 if (dols && firsttime) {
1151 firsttime = 0;
1152 } else {
1153 isdir = 0;
1154 }
wdenk71f95112003-06-15 22:40:42 +00001155 }
wdenk71f95112003-06-15 22:40:42 +00001156
Wolfgang Denk7385c282010-07-19 11:37:00 +02001157 if (get_dentfromdir(mydata, startsect, subname, dentptr,
1158 isdir ? 0 : dols) == NULL) {
1159 if (dols && !isdir)
Sergei Shtylyovac497772011-08-08 09:38:33 +00001160 ret = 0;
1161 goto exit;
Wolfgang Denk7385c282010-07-19 11:37:00 +02001162 }
wdenk71f95112003-06-15 22:40:42 +00001163
Benoît Thébaudeau7ee46ce2012-07-20 03:20:29 +00001164 if (isdir && !(dentptr->attr & ATTR_DIR))
1165 goto exit;
1166
1167 if (idx >= 0)
Wolfgang Denk7385c282010-07-19 11:37:00 +02001168 subname = nextname;
wdenk71f95112003-06-15 22:40:42 +00001169 }
1170
Benoît Thébaudeau1170e632012-09-18 08:14:56 +00001171 ret = get_contents(mydata, dentptr, pos, buffer, maxsize);
Wolfgang Denk7385c282010-07-19 11:37:00 +02001172 debug("Size: %d, got: %ld\n", FAT2CPU32(dentptr->size), ret);
wdenk71f95112003-06-15 22:40:42 +00001173
Sergei Shtylyovac497772011-08-08 09:38:33 +00001174exit:
1175 free(mydata->fatbuf);
Wolfgang Denk7385c282010-07-19 11:37:00 +02001176 return ret;
wdenk71f95112003-06-15 22:40:42 +00001177}
1178
Benoît Thébaudeau1170e632012-09-18 08:14:56 +00001179long
1180do_fat_read(const char *filename, void *buffer, unsigned long maxsize, int dols)
1181{
1182 return do_fat_read_at(filename, 0, buffer, maxsize, dols);
1183}
1184
Benoît Thébaudeau9795e072012-07-20 15:18:44 +02001185int file_fat_detectfs(void)
wdenk71f95112003-06-15 22:40:42 +00001186{
Wolfgang Denk7385c282010-07-19 11:37:00 +02001187 boot_sector bs;
1188 volume_info volinfo;
1189 int fatsize;
1190 char vol_label[12];
wdenk71f95112003-06-15 22:40:42 +00001191
Wolfgang Denk7385c282010-07-19 11:37:00 +02001192 if (cur_dev == NULL) {
wdenk7205e402003-09-10 22:30:53 +00001193 printf("No current device\n");
1194 return 1;
1195 }
Wolfgang Denk7385c282010-07-19 11:37:00 +02001196
Jon Loeligerdd60d122007-07-09 17:56:50 -05001197#if defined(CONFIG_CMD_IDE) || \
Sonic Zhang8c5170a2008-12-09 23:20:18 -05001198 defined(CONFIG_CMD_SATA) || \
Jon Loeligerdd60d122007-07-09 17:56:50 -05001199 defined(CONFIG_CMD_SCSI) || \
1200 defined(CONFIG_CMD_USB) || \
Andy Fleming21f6f962008-01-16 13:06:59 -06001201 defined(CONFIG_MMC)
wdenk7205e402003-09-10 22:30:53 +00001202 printf("Interface: ");
Wolfgang Denk7385c282010-07-19 11:37:00 +02001203 switch (cur_dev->if_type) {
1204 case IF_TYPE_IDE:
1205 printf("IDE");
1206 break;
1207 case IF_TYPE_SATA:
1208 printf("SATA");
1209 break;
1210 case IF_TYPE_SCSI:
1211 printf("SCSI");
1212 break;
1213 case IF_TYPE_ATAPI:
1214 printf("ATAPI");
1215 break;
1216 case IF_TYPE_USB:
1217 printf("USB");
1218 break;
1219 case IF_TYPE_DOC:
1220 printf("DOC");
1221 break;
1222 case IF_TYPE_MMC:
1223 printf("MMC");
1224 break;
1225 default:
1226 printf("Unknown");
wdenk7205e402003-09-10 22:30:53 +00001227 }
Wolfgang Denk7385c282010-07-19 11:37:00 +02001228
1229 printf("\n Device %d: ", cur_dev->dev);
wdenk7205e402003-09-10 22:30:53 +00001230 dev_print(cur_dev);
1231#endif
Wolfgang Denk7385c282010-07-19 11:37:00 +02001232
1233 if (read_bootsectandvi(&bs, &volinfo, &fatsize)) {
wdenk7205e402003-09-10 22:30:53 +00001234 printf("\nNo valid FAT fs found\n");
1235 return 1;
1236 }
Wolfgang Denk7385c282010-07-19 11:37:00 +02001237
1238 memcpy(vol_label, volinfo.volume_label, 11);
wdenk7205e402003-09-10 22:30:53 +00001239 vol_label[11] = '\0';
Wolfgang Denk7385c282010-07-19 11:37:00 +02001240 volinfo.fs_type[5] = '\0';
1241
Stephen Warren461f86e2012-10-17 06:44:57 +00001242 printf("Filesystem: %s \"%s\"\n", volinfo.fs_type, vol_label);
Wolfgang Denk7385c282010-07-19 11:37:00 +02001243
wdenk7205e402003-09-10 22:30:53 +00001244 return 0;
wdenk71f95112003-06-15 22:40:42 +00001245}
1246
Benoît Thébaudeau9795e072012-07-20 15:18:44 +02001247int file_fat_ls(const char *dir)
wdenk71f95112003-06-15 22:40:42 +00001248{
1249 return do_fat_read(dir, NULL, 0, LS_YES);
1250}
1251
Benoît Thébaudeau1170e632012-09-18 08:14:56 +00001252long file_fat_read_at(const char *filename, unsigned long pos, void *buffer,
1253 unsigned long maxsize)
wdenk71f95112003-06-15 22:40:42 +00001254{
Wolfgang Denk7385c282010-07-19 11:37:00 +02001255 printf("reading %s\n", filename);
Benoît Thébaudeau1170e632012-09-18 08:14:56 +00001256 return do_fat_read_at(filename, pos, buffer, maxsize, LS_NO);
1257}
1258
1259long file_fat_read(const char *filename, void *buffer, unsigned long maxsize)
1260{
1261 return file_fat_read_at(filename, 0, buffer, maxsize);
wdenk71f95112003-06-15 22:40:42 +00001262}
Simon Glasse6d52412012-12-26 09:53:33 +00001263
1264int fat_read_file(const char *filename, void *buf, int offset, int len)
1265{
1266 int len_read;
1267
1268 len_read = file_fat_read_at(filename, offset, buf, len);
1269 if (len_read == -1) {
1270 printf("** Unable to read file %s **\n", filename);
1271 return -1;
1272 }
1273
1274 return len_read;
1275}
1276
1277void fat_close(void)
1278{
1279}