4 * R/O (V)FAT 12/16/32 filesystem implementation by Marcus Sundberg
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
9 * SPDX-License-Identifier: GPL-2.0+
16 #include <asm/byteorder.h>
19 #include <linux/compiler.h>
20 #include <linux/ctype.h>
22 #ifdef CONFIG_SUPPORT_VFAT
23 static const int vfat_enabled = 1;
25 static const int vfat_enabled = 0;
29 * Convert a string to lowercase.
31 static void downcase(char *str)
33 while (*str != '\0') {
39 static block_dev_desc_t *cur_dev;
40 static disk_partition_t cur_part_info;
42 #define DOS_BOOT_MAGIC_OFFSET 0x1fe
43 #define DOS_FS_TYPE_OFFSET 0x36
44 #define DOS_FS32_TYPE_OFFSET 0x52
46 static int disk_read(__u32 block, __u32 nr_blocks, void *buf)
48 if (!cur_dev || !cur_dev->block_read)
51 return cur_dev->block_read(cur_dev->dev,
52 cur_part_info.start + block, nr_blocks, buf);
55 int fat_set_blk_dev(block_dev_desc_t *dev_desc, disk_partition_t *info)
57 ALLOC_CACHE_ALIGN_BUFFER(unsigned char, buffer, dev_desc->blksz);
60 cur_part_info = *info;
62 /* Make sure it has a valid FAT header */
63 if (disk_read(0, 1, buffer) != 1) {
68 /* Check if it's actually a DOS volume */
69 if (memcmp(buffer + DOS_BOOT_MAGIC_OFFSET, "\x55\xAA", 2)) {
74 /* Check for FAT12/FAT16/FAT32 filesystem */
75 if (!memcmp(buffer + DOS_FS_TYPE_OFFSET, "FAT", 3))
77 if (!memcmp(buffer + DOS_FS32_TYPE_OFFSET, "FAT32", 5))
84 int fat_register_device(block_dev_desc_t *dev_desc, int part_no)
86 disk_partition_t info;
88 /* First close any currently found FAT filesystem */
91 /* Read the partition table, if present */
92 if (get_partition_info(dev_desc, part_no, &info)) {
94 printf("** Partition %d not valid on device %d **\n",
95 part_no, dev_desc->dev);
100 info.size = dev_desc->lba;
101 info.blksz = dev_desc->blksz;
105 #ifdef CONFIG_PARTITION_UUIDS
110 return fat_set_blk_dev(dev_desc, &info);
114 * Get the first occurence of a directory delimiter ('/' or '\') in a string.
115 * Return index into string if found, -1 otherwise.
117 static int dirdelim(char *str)
121 while (*str != '\0') {
122 if (ISDIRDELIM(*str))
130 * Extract zero terminated short name from a directory entry.
132 static void get_name(dir_entry *dirent, char *s_name)
136 memcpy(s_name, dirent->name, 8);
139 while (*ptr && *ptr != ' ')
141 if (dirent->ext[0] && dirent->ext[0] != ' ') {
144 memcpy(ptr, dirent->ext, 3);
146 while (*ptr && *ptr != ' ')
150 if (*s_name == DELETED_FLAG)
152 else if (*s_name == aRING)
153 *s_name = DELETED_FLAG;
158 * Get the entry at index 'entry' in a FAT (12/16/32) table.
159 * On failure 0x00 is returned.
161 static __u32 get_fatent(fsdata *mydata, __u32 entry)
168 switch (mydata->fatsize) {
170 bufnum = entry / FAT32BUFSIZE;
171 offset = entry - bufnum * FAT32BUFSIZE;
174 bufnum = entry / FAT16BUFSIZE;
175 offset = entry - bufnum * FAT16BUFSIZE;
178 bufnum = entry / FAT12BUFSIZE;
179 offset = entry - bufnum * FAT12BUFSIZE;
183 /* Unsupported FAT size */
187 debug("FAT%d: entry: 0x%04x = %d, offset: 0x%04x = %d\n",
188 mydata->fatsize, entry, entry, offset, offset);
190 /* Read a new block of FAT entries into the cache. */
191 if (bufnum != mydata->fatbufnum) {
192 __u32 getsize = FATBUFBLOCKS;
193 __u8 *bufptr = mydata->fatbuf;
194 __u32 fatlength = mydata->fatlength;
195 __u32 startblock = bufnum * FATBUFBLOCKS;
197 if (startblock + getsize > fatlength)
198 getsize = fatlength - startblock;
200 startblock += mydata->fat_sect; /* Offset from start of disk */
202 if (disk_read(startblock, getsize, bufptr) < 0) {
203 debug("Error reading FAT blocks\n");
206 mydata->fatbufnum = bufnum;
209 /* Get the actual entry from the table */
210 switch (mydata->fatsize) {
212 ret = FAT2CPU32(((__u32 *) mydata->fatbuf)[offset]);
215 ret = FAT2CPU16(((__u16 *) mydata->fatbuf)[offset]);
218 off16 = (offset * 3) / 4;
220 switch (offset & 0x3) {
222 ret = FAT2CPU16(((__u16 *) mydata->fatbuf)[off16]);
226 val1 = FAT2CPU16(((__u16 *)mydata->fatbuf)[off16]);
228 val2 = FAT2CPU16(((__u16 *)mydata->fatbuf)[off16 + 1]);
230 ret = (val2 << 4) | (val1 >> 12);
233 val1 = FAT2CPU16(((__u16 *)mydata->fatbuf)[off16]);
235 val2 = FAT2CPU16(((__u16 *)mydata->fatbuf)[off16 + 1]);
237 ret = (val2 << 8) | (val1 >> 8);
240 ret = FAT2CPU16(((__u16 *)mydata->fatbuf)[off16]);
241 ret = (ret & 0xfff0) >> 4;
248 debug("FAT%d: ret: %08x, offset: %04x\n",
249 mydata->fatsize, ret, offset);
255 * Read at most 'size' bytes from the specified cluster into 'buffer'.
256 * Return 0 on success, -1 otherwise.
259 get_cluster(fsdata *mydata, __u32 clustnum, __u8 *buffer, unsigned long size)
266 startsect = mydata->data_begin +
267 clustnum * mydata->clust_size;
269 startsect = mydata->rootdir_sect;
272 debug("gc - clustnum: %d, startsect: %d\n", clustnum, startsect);
274 if ((unsigned long)buffer & (ARCH_DMA_MINALIGN - 1)) {
275 ALLOC_CACHE_ALIGN_BUFFER(__u8, tmpbuf, mydata->sect_size);
277 printf("FAT: Misaligned buffer address (%p)\n", buffer);
279 while (size >= mydata->sect_size) {
280 ret = disk_read(startsect++, 1, tmpbuf);
282 debug("Error reading data (got %d)\n", ret);
286 memcpy(buffer, tmpbuf, mydata->sect_size);
287 buffer += mydata->sect_size;
288 size -= mydata->sect_size;
291 idx = size / mydata->sect_size;
292 ret = disk_read(startsect, idx, buffer);
294 debug("Error reading data (got %d)\n", ret);
298 idx *= mydata->sect_size;
303 ALLOC_CACHE_ALIGN_BUFFER(__u8, tmpbuf, mydata->sect_size);
305 ret = disk_read(startsect, 1, tmpbuf);
307 debug("Error reading data (got %d)\n", ret);
311 memcpy(buffer, tmpbuf, size);
318 * Read at most 'maxsize' bytes from 'pos' in the file associated with 'dentptr'
320 * Return the number of bytes read or -1 on fatal errors.
322 __u8 get_contents_vfatname_block[MAX_CLUSTSIZE]
323 __aligned(ARCH_DMA_MINALIGN);
326 get_contents(fsdata *mydata, dir_entry *dentptr, unsigned long pos,
327 __u8 *buffer, unsigned long maxsize)
329 unsigned long filesize = FAT2CPU32(dentptr->size), gotsize = 0;
330 unsigned int bytesperclust = mydata->clust_size * mydata->sect_size;
331 __u32 curclust = START(dentptr);
332 __u32 endclust, newclust;
333 unsigned long actsize;
335 debug("Filesize: %ld bytes\n", filesize);
337 if (pos >= filesize) {
338 debug("Read position past EOF: %lu\n", pos);
342 if (maxsize > 0 && filesize > pos + maxsize)
343 filesize = pos + maxsize;
345 debug("%ld bytes\n", filesize);
347 actsize = bytesperclust;
349 /* go to cluster at pos */
350 while (actsize <= pos) {
351 curclust = get_fatent(mydata, curclust);
352 if (CHECK_CLUST(curclust, mydata->fatsize)) {
353 debug("curclust: 0x%x\n", curclust);
354 debug("Invalid FAT entry\n");
357 actsize += bytesperclust;
361 actsize -= bytesperclust;
365 /* align to beginning of next cluster if any */
367 actsize = min(filesize, bytesperclust);
368 if (get_cluster(mydata, curclust, get_contents_vfatname_block,
369 (int)actsize) != 0) {
370 printf("Error reading cluster\n");
375 memcpy(buffer, get_contents_vfatname_block + pos, actsize);
381 curclust = get_fatent(mydata, curclust);
382 if (CHECK_CLUST(curclust, mydata->fatsize)) {
383 debug("curclust: 0x%x\n", curclust);
384 debug("Invalid FAT entry\n");
389 actsize = bytesperclust;
393 /* search for consecutive clusters */
394 while (actsize < filesize) {
395 newclust = get_fatent(mydata, endclust);
396 if ((newclust - 1) != endclust)
398 if (CHECK_CLUST(newclust, mydata->fatsize)) {
399 debug("curclust: 0x%x\n", newclust);
400 debug("Invalid FAT entry\n");
404 actsize += bytesperclust;
407 /* get remaining bytes */
409 if (get_cluster(mydata, curclust, buffer, (int)actsize) != 0) {
410 printf("Error reading cluster\n");
416 if (get_cluster(mydata, curclust, buffer, (int)actsize) != 0) {
417 printf("Error reading cluster\n");
420 gotsize += (int)actsize;
424 curclust = get_fatent(mydata, endclust);
425 if (CHECK_CLUST(curclust, mydata->fatsize)) {
426 debug("curclust: 0x%x\n", curclust);
427 printf("Invalid FAT entry\n");
430 actsize = bytesperclust;
436 * Extract the file name information from 'slotptr' into 'l_name',
437 * starting at l_name[*idx].
438 * Return 1 if terminator (zero byte) is found, 0 otherwise.
440 static int slot2str(dir_slot *slotptr, char *l_name, int *idx)
444 for (j = 0; j <= 8; j += 2) {
445 l_name[*idx] = slotptr->name0_4[j];
446 if (l_name[*idx] == 0x00)
450 for (j = 0; j <= 10; j += 2) {
451 l_name[*idx] = slotptr->name5_10[j];
452 if (l_name[*idx] == 0x00)
456 for (j = 0; j <= 2; j += 2) {
457 l_name[*idx] = slotptr->name11_12[j];
458 if (l_name[*idx] == 0x00)
467 * Extract the full long filename starting at 'retdent' (which is really
468 * a slot) into 'l_name'. If successful also copy the real directory entry
470 * Return 0 on success, -1 otherwise.
473 get_vfatname(fsdata *mydata, int curclust, __u8 *cluster,
474 dir_entry *retdent, char *l_name)
477 dir_slot *slotptr = (dir_slot *)retdent;
478 __u8 *buflimit = cluster + mydata->sect_size * ((curclust == 0) ?
481 __u8 counter = (slotptr->id & ~LAST_LONG_ENTRY_MASK) & 0xff;
484 if (counter > VFAT_MAXSEQ) {
485 debug("Error: VFAT name is too long\n");
489 while ((__u8 *)slotptr < buflimit) {
492 if (((slotptr->id & ~LAST_LONG_ENTRY_MASK) & 0xff) != counter)
498 if ((__u8 *)slotptr >= buflimit) {
503 curclust = get_fatent(mydata, curclust);
504 if (CHECK_CLUST(curclust, mydata->fatsize)) {
505 debug("curclust: 0x%x\n", curclust);
506 printf("Invalid FAT entry\n");
510 if (get_cluster(mydata, curclust, get_contents_vfatname_block,
511 mydata->clust_size * mydata->sect_size) != 0) {
512 debug("Error: reading directory block\n");
516 slotptr2 = (dir_slot *)get_contents_vfatname_block;
517 while (counter > 0) {
518 if (((slotptr2->id & ~LAST_LONG_ENTRY_MASK)
525 /* Save the real directory entry */
526 realdent = (dir_entry *)slotptr2;
527 while ((__u8 *)slotptr2 > get_contents_vfatname_block) {
529 slot2str(slotptr2, l_name, &idx);
532 /* Save the real directory entry */
533 realdent = (dir_entry *)slotptr;
538 if (slot2str(slotptr, l_name, &idx))
540 } while (!(slotptr->id & LAST_LONG_ENTRY_MASK));
543 if (*l_name == DELETED_FLAG)
545 else if (*l_name == aRING)
546 *l_name = DELETED_FLAG;
549 /* Return the real directory entry */
550 memcpy(retdent, realdent, sizeof(dir_entry));
555 /* Calculate short name checksum */
556 static __u8 mkcksum(const char name[8], const char ext[3])
562 for (i = 0; i < 8; i++)
563 ret = (((ret & 1) << 7) | ((ret & 0xfe) >> 1)) + name[i];
564 for (i = 0; i < 3; i++)
565 ret = (((ret & 1) << 7) | ((ret & 0xfe) >> 1)) + ext[i];
571 * Get the directory entry associated with 'filename' from the directory
572 * starting at 'startsect'
574 __u8 get_dentfromdir_block[MAX_CLUSTSIZE]
575 __aligned(ARCH_DMA_MINALIGN);
577 static dir_entry *get_dentfromdir(fsdata *mydata, int startsect,
578 char *filename, dir_entry *retdent,
581 __u16 prevcksum = 0xffff;
582 __u32 curclust = START(retdent);
583 int files = 0, dirs = 0;
585 debug("get_dentfromdir: %s\n", filename);
592 if (get_cluster(mydata, curclust, get_dentfromdir_block,
593 mydata->clust_size * mydata->sect_size) != 0) {
594 debug("Error: reading directory block\n");
598 dentptr = (dir_entry *)get_dentfromdir_block;
600 for (i = 0; i < DIRENTSPERCLUST; i++) {
601 char s_name[14], l_name[VFAT_MAXLEN_BYTES];
604 if (dentptr->name[0] == DELETED_FLAG) {
608 if ((dentptr->attr & ATTR_VOLUME)) {
610 (dentptr->attr & ATTR_VFAT) == ATTR_VFAT &&
611 (dentptr->name[0] & LAST_LONG_ENTRY_MASK)) {
612 prevcksum = ((dir_slot *)dentptr)->alias_checksum;
613 get_vfatname(mydata, curclust,
614 get_dentfromdir_block,
621 isdir = (dentptr->attr & ATTR_DIR);
629 if (l_name[0] != 0) {
636 printf(" %8ld %s%c\n",
637 (long)FAT2CPU32(dentptr->size),
649 debug("vfatname: |%s|\n", l_name);
651 /* Volume label or VFAT entry */
656 if (dentptr->name[0] == 0) {
658 printf("\n%d file(s), %d dir(s)\n\n",
661 debug("Dentname == NULL - %d\n", i);
665 __u8 csum = mkcksum(dentptr->name, dentptr->ext);
666 if (dols && csum == prevcksum) {
673 get_name(dentptr, s_name);
675 int isdir = (dentptr->attr & ATTR_DIR);
685 if (s_name[0] != 0) {
693 printf(" %8ld %s%c\n",
694 (long)FAT2CPU32(dentptr->size),
706 if (strcmp(filename, s_name)
707 && strcmp(filename, l_name)) {
708 debug("Mismatch: |%s|%s|\n", s_name, l_name);
713 memcpy(retdent, dentptr, sizeof(dir_entry));
715 debug("DentName: %s", s_name);
716 debug(", start: 0x%x", START(dentptr));
717 debug(", size: 0x%x %s\n",
718 FAT2CPU32(dentptr->size),
719 (dentptr->attr & ATTR_DIR) ? "(DIR)" : "");
724 curclust = get_fatent(mydata, curclust);
725 if (CHECK_CLUST(curclust, mydata->fatsize)) {
726 debug("curclust: 0x%x\n", curclust);
727 printf("Invalid FAT entry\n");
736 * Read boot sector and volume info from a FAT filesystem
739 read_bootsectandvi(boot_sector *bs, volume_info *volinfo, int *fatsize)
742 volume_info *vistart;
745 if (cur_dev == NULL) {
746 debug("Error: no device selected\n");
750 block = memalign(ARCH_DMA_MINALIGN, cur_dev->blksz);
752 debug("Error: allocating block\n");
756 if (disk_read(0, 1, block) < 0) {
757 debug("Error: reading block\n");
761 memcpy(bs, block, sizeof(boot_sector));
762 bs->reserved = FAT2CPU16(bs->reserved);
763 bs->fat_length = FAT2CPU16(bs->fat_length);
764 bs->secs_track = FAT2CPU16(bs->secs_track);
765 bs->heads = FAT2CPU16(bs->heads);
766 bs->total_sect = FAT2CPU32(bs->total_sect);
769 if (bs->fat_length == 0) {
771 bs->fat32_length = FAT2CPU32(bs->fat32_length);
772 bs->flags = FAT2CPU16(bs->flags);
773 bs->root_cluster = FAT2CPU32(bs->root_cluster);
774 bs->info_sector = FAT2CPU16(bs->info_sector);
775 bs->backup_boot = FAT2CPU16(bs->backup_boot);
776 vistart = (volume_info *)(block + sizeof(boot_sector));
779 vistart = (volume_info *)&(bs->fat32_length);
782 memcpy(volinfo, vistart, sizeof(volume_info));
784 if (*fatsize == 32) {
785 if (strncmp(FAT32_SIGN, vistart->fs_type, SIGNLEN) == 0)
788 if (strncmp(FAT12_SIGN, vistart->fs_type, SIGNLEN) == 0) {
792 if (strncmp(FAT16_SIGN, vistart->fs_type, SIGNLEN) == 0) {
798 debug("Error: broken fs_type sign\n");
806 __u8 do_fat_read_at_block[MAX_CLUSTSIZE]
807 __aligned(ARCH_DMA_MINALIGN);
810 do_fat_read_at(const char *filename, unsigned long pos, void *buffer,
811 unsigned long maxsize, int dols, int dogetsize)
813 char fnamecopy[2048];
817 fsdata *mydata = &datablock;
818 dir_entry *dentptr = NULL;
819 __u16 prevcksum = 0xffff;
823 int files = 0, dirs = 0;
826 __u32 root_cluster = 0;
827 int rootdir_size = 0;
830 if (read_bootsectandvi(&bs, &volinfo, &mydata->fatsize)) {
831 debug("Error: reading boot sector\n");
835 if (mydata->fatsize == 32) {
836 root_cluster = bs.root_cluster;
837 mydata->fatlength = bs.fat32_length;
839 mydata->fatlength = bs.fat_length;
842 mydata->fat_sect = bs.reserved;
844 cursect = mydata->rootdir_sect
845 = mydata->fat_sect + mydata->fatlength * bs.fats;
847 mydata->sect_size = (bs.sector_size[1] << 8) + bs.sector_size[0];
848 mydata->clust_size = bs.cluster_size;
849 if (mydata->sect_size != cur_part_info.blksz) {
850 printf("Error: FAT sector size mismatch (fs=%hu, dev=%lu)\n",
851 mydata->sect_size, cur_part_info.blksz);
855 if (mydata->fatsize == 32) {
856 mydata->data_begin = mydata->rootdir_sect -
857 (mydata->clust_size * 2);
859 rootdir_size = ((bs.dir_entries[1] * (int)256 +
863 mydata->data_begin = mydata->rootdir_sect +
865 (mydata->clust_size * 2);
868 mydata->fatbufnum = -1;
869 mydata->fatbuf = memalign(ARCH_DMA_MINALIGN, FATBUFSIZE);
870 if (mydata->fatbuf == NULL) {
871 debug("Error: allocating memory\n");
876 debug("VFAT Support enabled\n");
878 debug("FAT%d, fat_sect: %d, fatlength: %d\n",
879 mydata->fatsize, mydata->fat_sect, mydata->fatlength);
880 debug("Rootdir begins at cluster: %d, sector: %d, offset: %x\n"
881 "Data begins at: %d\n",
883 mydata->rootdir_sect,
884 mydata->rootdir_sect * mydata->sect_size, mydata->data_begin);
885 debug("Sector size: %d, cluster size: %d\n", mydata->sect_size,
888 /* "cwd" is always the root... */
889 while (ISDIRDELIM(*filename))
892 /* Make a copy of the filename and convert it to lowercase */
893 strcpy(fnamecopy, filename);
896 if (*fnamecopy == '\0') {
901 } else if ((idx = dirdelim(fnamecopy)) >= 0) {
903 fnamecopy[idx] = '\0';
904 subname = fnamecopy + idx + 1;
906 /* Handle multiple delimiters */
907 while (ISDIRDELIM(*subname))
918 debug("FAT read sect=%d, clust_size=%d, DIRENTSPERBLOCK=%zd\n",
919 cursect, mydata->clust_size, DIRENTSPERBLOCK);
921 if (disk_read(cursect,
922 (mydata->fatsize == 32) ?
923 (mydata->clust_size) :
925 do_fat_read_at_block) < 0) {
926 debug("Error: reading rootdir block\n");
930 dentptr = (dir_entry *) do_fat_read_at_block;
933 for (i = 0; i < DIRENTSPERBLOCK; i++) {
934 char s_name[14], l_name[VFAT_MAXLEN_BYTES];
938 if (dentptr->name[0] == DELETED_FLAG) {
944 csum = mkcksum(dentptr->name, dentptr->ext);
946 if (dentptr->attr & ATTR_VOLUME) {
948 (dentptr->attr & ATTR_VFAT) == ATTR_VFAT &&
949 (dentptr->name[0] & LAST_LONG_ENTRY_MASK)) {
951 ((dir_slot *)dentptr)->alias_checksum;
955 do_fat_read_at_block,
958 if (dols == LS_ROOT) {
962 (dentptr->attr & ATTR_DIR);
970 if (l_name[0] != 0) {
977 printf(" %8ld %s%c\n",
978 (long)FAT2CPU32(dentptr->size),
990 debug("Rootvfatname: |%s|\n",
993 /* Volume label or VFAT entry */
997 } else if (dentptr->name[0] == 0) {
998 debug("RootDentname == NULL - %d\n", i);
999 if (dols == LS_ROOT) {
1000 printf("\n%d file(s), %d dir(s)\n\n",
1006 else if (vfat_enabled &&
1007 dols == LS_ROOT && csum == prevcksum) {
1013 get_name(dentptr, s_name);
1015 if (dols == LS_ROOT) {
1016 int isdir = (dentptr->attr & ATTR_DIR);
1022 if (s_name[0] != 0) {
1028 if (s_name[0] != 0) {
1035 printf(" %8ld %s%c\n",
1036 (long)FAT2CPU32(dentptr->size),
1047 if (strcmp(fnamecopy, s_name)
1048 && strcmp(fnamecopy, l_name)) {
1049 debug("RootMismatch: |%s|%s|\n", s_name,
1055 if (isdir && !(dentptr->attr & ATTR_DIR))
1058 debug("RootName: %s", s_name);
1059 debug(", start: 0x%x", START(dentptr));
1060 debug(", size: 0x%x %s\n",
1061 FAT2CPU32(dentptr->size),
1062 isdir ? "(DIR)" : "");
1064 goto rootdir_done; /* We got a match */
1066 debug("END LOOP: j=%d clust_size=%d\n", j,
1067 mydata->clust_size);
1070 * On FAT32 we must fetch the FAT entries for the next
1071 * root directory clusters when a cluster has been
1072 * completely processed.
1075 int rootdir_end = 0;
1076 if (mydata->fatsize == 32) {
1077 if (j == mydata->clust_size) {
1081 nxt_clust = get_fatent(mydata, root_cluster);
1082 rootdir_end = CHECK_CLUST(nxt_clust, 32);
1084 nxtsect = mydata->data_begin +
1085 (nxt_clust * mydata->clust_size);
1087 root_cluster = nxt_clust;
1093 if (j == PREFETCH_BLOCKS)
1096 rootdir_end = (++cursect - mydata->rootdir_sect >=
1100 /* If end of rootdir reached */
1102 if (dols == LS_ROOT) {
1103 printf("\n%d file(s), %d dir(s)\n\n",
1115 int startsect = mydata->data_begin
1116 + START(dentptr) * mydata->clust_size;
1118 char *nextname = NULL;
1123 idx = dirdelim(subname);
1126 subname[idx] = '\0';
1127 nextname = subname + idx + 1;
1128 /* Handle multiple delimiters */
1129 while (ISDIRDELIM(*nextname))
1131 if (dols && *nextname == '\0')
1134 if (dols && firsttime) {
1141 if (get_dentfromdir(mydata, startsect, subname, dentptr,
1142 isdir ? 0 : dols) == NULL) {
1148 if (isdir && !(dentptr->attr & ATTR_DIR))
1156 ret = FAT2CPU32(dentptr->size);
1158 ret = get_contents(mydata, dentptr, pos, buffer, maxsize);
1159 debug("Size: %d, got: %ld\n", FAT2CPU32(dentptr->size), ret);
1162 free(mydata->fatbuf);
1167 do_fat_read(const char *filename, void *buffer, unsigned long maxsize, int dols)
1169 return do_fat_read_at(filename, 0, buffer, maxsize, dols, 0);
1172 int file_fat_detectfs(void)
1175 volume_info volinfo;
1179 if (cur_dev == NULL) {
1180 printf("No current device\n");
1184 #if defined(CONFIG_CMD_IDE) || \
1185 defined(CONFIG_CMD_SATA) || \
1186 defined(CONFIG_CMD_SCSI) || \
1187 defined(CONFIG_CMD_USB) || \
1189 printf("Interface: ");
1190 switch (cur_dev->if_type) {
1216 printf("\n Device %d: ", cur_dev->dev);
1220 if (read_bootsectandvi(&bs, &volinfo, &fatsize)) {
1221 printf("\nNo valid FAT fs found\n");
1225 memcpy(vol_label, volinfo.volume_label, 11);
1226 vol_label[11] = '\0';
1227 volinfo.fs_type[5] = '\0';
1229 printf("Filesystem: %s \"%s\"\n", volinfo.fs_type, vol_label);
1234 int file_fat_ls(const char *dir)
1236 return do_fat_read(dir, NULL, 0, LS_YES);
1239 int fat_exists(const char *filename)
1242 sz = do_fat_read_at(filename, 0, NULL, 0, LS_NO, 1);
1246 int fat_size(const char *filename)
1248 return do_fat_read_at(filename, 0, NULL, 0, LS_NO, 1);
1251 long file_fat_read_at(const char *filename, unsigned long pos, void *buffer,
1252 unsigned long maxsize)
1254 printf("reading %s\n", filename);
1255 return do_fat_read_at(filename, pos, buffer, maxsize, LS_NO, 0);
1258 long file_fat_read(const char *filename, void *buffer, unsigned long maxsize)
1260 return file_fat_read_at(filename, 0, buffer, maxsize);
1263 int fat_read_file(const char *filename, void *buf, int offset, int len)
1267 len_read = file_fat_read_at(filename, offset, buf, len);
1268 if (len_read == -1) {
1269 printf("** Unable to read file %s **\n", filename);
1276 void fat_close(void)