1 // SPDX-License-Identifier: GPL-2.0+
5 * R/O (V)FAT 12/16/32 filesystem implementation by Marcus Sundberg
7 * 2002-07-28 - rjones@nexus-tech.net - ported to ppcboot v1.1.6
8 * 2003-03-10 - kharris@nexus-tech.net - ported to uboot
17 #include <asm/byteorder.h>
21 #include <linux/compiler.h>
22 #include <linux/ctype.h>
25 * Convert a string to lowercase. Converts at most 'len' characters,
26 * 'len' may be larger than the length of 'str' if 'str' is NULL
29 static void downcase(char *str, size_t len)
31 while (*str != '\0' && len--) {
37 static struct blk_desc *cur_dev;
38 static disk_partition_t cur_part_info;
40 #define DOS_BOOT_MAGIC_OFFSET 0x1fe
41 #define DOS_FS_TYPE_OFFSET 0x36
42 #define DOS_FS32_TYPE_OFFSET 0x52
44 static int disk_read(__u32 block, __u32 nr_blocks, void *buf)
51 ret = blk_dread(cur_dev, cur_part_info.start + block, nr_blocks, buf);
59 int fat_set_blk_dev(struct blk_desc *dev_desc, disk_partition_t *info)
61 ALLOC_CACHE_ALIGN_BUFFER(unsigned char, buffer, dev_desc->blksz);
64 cur_part_info = *info;
66 /* Make sure it has a valid FAT header */
67 if (disk_read(0, 1, buffer) != 1) {
72 /* Check if it's actually a DOS volume */
73 if (memcmp(buffer + DOS_BOOT_MAGIC_OFFSET, "\x55\xAA", 2)) {
78 /* Check for FAT12/FAT16/FAT32 filesystem */
79 if (!memcmp(buffer + DOS_FS_TYPE_OFFSET, "FAT", 3))
81 if (!memcmp(buffer + DOS_FS32_TYPE_OFFSET, "FAT32", 5))
88 int fat_register_device(struct blk_desc *dev_desc, int part_no)
90 disk_partition_t info;
92 /* First close any currently found FAT filesystem */
95 /* Read the partition table, if present */
96 if (part_get_info(dev_desc, part_no, &info)) {
98 printf("** Partition %d not valid on device %d **\n",
99 part_no, dev_desc->devnum);
104 info.size = dev_desc->lba;
105 info.blksz = dev_desc->blksz;
109 #if CONFIG_IS_ENABLED(PARTITION_UUIDS)
114 return fat_set_blk_dev(dev_desc, &info);
118 * Extract zero terminated short name from a directory entry.
120 static void get_name(dir_entry *dirent, char *s_name)
124 memcpy(s_name, dirent->name, 8);
127 while (*ptr && *ptr != ' ')
129 if (dirent->lcase & CASE_LOWER_BASE)
130 downcase(s_name, (unsigned)(ptr - s_name));
131 if (dirent->ext[0] && dirent->ext[0] != ' ') {
133 memcpy(ptr, dirent->ext, 3);
134 if (dirent->lcase & CASE_LOWER_EXT)
137 while (*ptr && *ptr != ' ')
141 if (*s_name == DELETED_FLAG)
143 else if (*s_name == aRING)
144 *s_name = DELETED_FLAG;
147 static int flush_dirty_fat_buffer(fsdata *mydata);
149 #if !CONFIG_IS_ENABLED(FAT_WRITE)
150 /* Stub for read only operation */
151 int flush_dirty_fat_buffer(fsdata *mydata)
159 * Get the entry at index 'entry' in a FAT (12/16/32) table.
160 * On failure 0x00 is returned.
162 static __u32 get_fatent(fsdata *mydata, __u32 entry)
168 if (CHECK_CLUST(entry, mydata->fatsize)) {
169 printf("Error: Invalid FAT entry: 0x%08x\n", entry);
173 switch (mydata->fatsize) {
175 bufnum = entry / FAT32BUFSIZE;
176 offset = entry - bufnum * FAT32BUFSIZE;
179 bufnum = entry / FAT16BUFSIZE;
180 offset = entry - bufnum * FAT16BUFSIZE;
183 bufnum = entry / FAT12BUFSIZE;
184 offset = entry - bufnum * FAT12BUFSIZE;
188 /* Unsupported FAT size */
192 debug("FAT%d: entry: 0x%08x = %d, offset: 0x%04x = %d\n",
193 mydata->fatsize, entry, entry, offset, offset);
195 /* Read a new block of FAT entries into the cache. */
196 if (bufnum != mydata->fatbufnum) {
197 __u32 getsize = FATBUFBLOCKS;
198 __u8 *bufptr = mydata->fatbuf;
199 __u32 fatlength = mydata->fatlength;
200 __u32 startblock = bufnum * FATBUFBLOCKS;
202 /* Cap length if fatlength is not a multiple of FATBUFBLOCKS */
203 if (startblock + getsize > fatlength)
204 getsize = fatlength - startblock;
206 startblock += mydata->fat_sect; /* Offset from start of disk */
208 /* Write back the fatbuf to the disk */
209 if (flush_dirty_fat_buffer(mydata) < 0)
212 if (disk_read(startblock, getsize, bufptr) < 0) {
213 debug("Error reading FAT blocks\n");
216 mydata->fatbufnum = bufnum;
219 /* Get the actual entry from the table */
220 switch (mydata->fatsize) {
222 ret = FAT2CPU32(((__u32 *) mydata->fatbuf)[offset]);
225 ret = FAT2CPU16(((__u16 *) mydata->fatbuf)[offset]);
228 off8 = (offset * 3) / 2;
229 /* fatbut + off8 may be unaligned, read in byte granularity */
230 ret = mydata->fatbuf[off8] + (mydata->fatbuf[off8 + 1] << 8);
236 debug("FAT%d: ret: 0x%08x, entry: 0x%08x, offset: 0x%04x\n",
237 mydata->fatsize, ret, entry, offset);
243 * Read at most 'size' bytes from the specified cluster into 'buffer'.
244 * Return 0 on success, -1 otherwise.
247 get_cluster(fsdata *mydata, __u32 clustnum, __u8 *buffer, unsigned long size)
254 startsect = clust_to_sect(mydata, clustnum);
256 startsect = mydata->rootdir_sect;
259 debug("gc - clustnum: %d, startsect: %d\n", clustnum, startsect);
261 if ((unsigned long)buffer & (ARCH_DMA_MINALIGN - 1)) {
262 ALLOC_CACHE_ALIGN_BUFFER(__u8, tmpbuf, mydata->sect_size);
264 debug("FAT: Misaligned buffer address (%p)\n", buffer);
266 while (size >= mydata->sect_size) {
267 ret = disk_read(startsect++, 1, tmpbuf);
269 debug("Error reading data (got %d)\n", ret);
273 memcpy(buffer, tmpbuf, mydata->sect_size);
274 buffer += mydata->sect_size;
275 size -= mydata->sect_size;
278 idx = size / mydata->sect_size;
279 ret = disk_read(startsect, idx, buffer);
281 debug("Error reading data (got %d)\n", ret);
285 idx *= mydata->sect_size;
290 ALLOC_CACHE_ALIGN_BUFFER(__u8, tmpbuf, mydata->sect_size);
292 ret = disk_read(startsect, 1, tmpbuf);
294 debug("Error reading data (got %d)\n", ret);
298 memcpy(buffer, tmpbuf, size);
305 * Read at most 'maxsize' bytes from 'pos' in the file associated with 'dentptr'
307 * Update the number of bytes read in *gotsize or return -1 on fatal errors.
309 static int get_contents(fsdata *mydata, dir_entry *dentptr, loff_t pos,
310 __u8 *buffer, loff_t maxsize, loff_t *gotsize)
312 loff_t filesize = FAT2CPU32(dentptr->size);
313 unsigned int bytesperclust = mydata->clust_size * mydata->sect_size;
314 __u32 curclust = START(dentptr);
315 __u32 endclust, newclust;
319 debug("Filesize: %llu bytes\n", filesize);
321 if (pos >= filesize) {
322 debug("Read position past EOF: %llu\n", pos);
326 if (maxsize > 0 && filesize > pos + maxsize)
327 filesize = pos + maxsize;
329 debug("%llu bytes\n", filesize);
331 actsize = bytesperclust;
333 /* go to cluster at pos */
334 while (actsize <= pos) {
335 curclust = get_fatent(mydata, curclust);
336 if (CHECK_CLUST(curclust, mydata->fatsize)) {
337 debug("curclust: 0x%x\n", curclust);
338 debug("Invalid FAT entry\n");
341 actsize += bytesperclust;
345 actsize -= bytesperclust;
349 /* align to beginning of next cluster if any */
353 actsize = min(filesize, (loff_t)bytesperclust);
354 tmp_buffer = malloc_cache_aligned(actsize);
356 debug("Error: allocating buffer\n");
360 if (get_cluster(mydata, curclust, tmp_buffer, actsize) != 0) {
361 printf("Error reading cluster\n");
367 memcpy(buffer, tmp_buffer + pos, actsize);
374 curclust = get_fatent(mydata, curclust);
375 if (CHECK_CLUST(curclust, mydata->fatsize)) {
376 debug("curclust: 0x%x\n", curclust);
377 debug("Invalid FAT entry\n");
382 actsize = bytesperclust;
386 /* search for consecutive clusters */
387 while (actsize < filesize) {
388 newclust = get_fatent(mydata, endclust);
389 if ((newclust - 1) != endclust)
391 if (CHECK_CLUST(newclust, mydata->fatsize)) {
392 debug("curclust: 0x%x\n", newclust);
393 debug("Invalid FAT entry\n");
397 actsize += bytesperclust;
400 /* get remaining bytes */
402 if (get_cluster(mydata, curclust, buffer, (int)actsize) != 0) {
403 printf("Error reading cluster\n");
409 if (get_cluster(mydata, curclust, buffer, (int)actsize) != 0) {
410 printf("Error reading cluster\n");
413 *gotsize += (int)actsize;
417 curclust = get_fatent(mydata, endclust);
418 if (CHECK_CLUST(curclust, mydata->fatsize)) {
419 debug("curclust: 0x%x\n", curclust);
420 printf("Invalid FAT entry\n");
423 actsize = bytesperclust;
429 * Extract the file name information from 'slotptr' into 'l_name',
430 * starting at l_name[*idx].
431 * Return 1 if terminator (zero byte) is found, 0 otherwise.
433 static int slot2str(dir_slot *slotptr, char *l_name, int *idx)
437 for (j = 0; j <= 8; j += 2) {
438 l_name[*idx] = slotptr->name0_4[j];
439 if (l_name[*idx] == 0x00)
443 for (j = 0; j <= 10; j += 2) {
444 l_name[*idx] = slotptr->name5_10[j];
445 if (l_name[*idx] == 0x00)
449 for (j = 0; j <= 2; j += 2) {
450 l_name[*idx] = slotptr->name11_12[j];
451 if (l_name[*idx] == 0x00)
459 /* Calculate short name checksum */
460 static __u8 mkcksum(const char name[8], const char ext[3])
466 for (i = 0; i < 8; i++)
467 ret = (((ret & 1) << 7) | ((ret & 0xfe) >> 1)) + name[i];
468 for (i = 0; i < 3; i++)
469 ret = (((ret & 1) << 7) | ((ret & 0xfe) >> 1)) + ext[i];
475 * Read boot sector and volume info from a FAT filesystem
478 read_bootsectandvi(boot_sector *bs, volume_info *volinfo, int *fatsize)
481 volume_info *vistart;
484 if (cur_dev == NULL) {
485 debug("Error: no device selected\n");
489 block = malloc_cache_aligned(cur_dev->blksz);
491 debug("Error: allocating block\n");
495 if (disk_read(0, 1, block) < 0) {
496 debug("Error: reading block\n");
500 memcpy(bs, block, sizeof(boot_sector));
501 bs->reserved = FAT2CPU16(bs->reserved);
502 bs->fat_length = FAT2CPU16(bs->fat_length);
503 bs->secs_track = FAT2CPU16(bs->secs_track);
504 bs->heads = FAT2CPU16(bs->heads);
505 bs->total_sect = FAT2CPU32(bs->total_sect);
508 if (bs->fat_length == 0) {
510 bs->fat32_length = FAT2CPU32(bs->fat32_length);
511 bs->flags = FAT2CPU16(bs->flags);
512 bs->root_cluster = FAT2CPU32(bs->root_cluster);
513 bs->info_sector = FAT2CPU16(bs->info_sector);
514 bs->backup_boot = FAT2CPU16(bs->backup_boot);
515 vistart = (volume_info *)(block + sizeof(boot_sector));
518 vistart = (volume_info *)&(bs->fat32_length);
521 memcpy(volinfo, vistart, sizeof(volume_info));
523 if (*fatsize == 32) {
524 if (strncmp(FAT32_SIGN, vistart->fs_type, SIGNLEN) == 0)
527 if (strncmp(FAT12_SIGN, vistart->fs_type, SIGNLEN) == 0) {
531 if (strncmp(FAT16_SIGN, vistart->fs_type, SIGNLEN) == 0) {
537 debug("Error: broken fs_type sign\n");
545 static int get_fs_info(fsdata *mydata)
551 ret = read_bootsectandvi(&bs, &volinfo, &mydata->fatsize);
553 debug("Error: reading boot sector\n");
557 if (mydata->fatsize == 32) {
558 mydata->fatlength = bs.fat32_length;
559 mydata->total_sect = bs.total_sect;
561 mydata->fatlength = bs.fat_length;
562 mydata->total_sect = (bs.sectors[1] << 8) + bs.sectors[0];
563 if (!mydata->total_sect)
564 mydata->total_sect = bs.total_sect;
566 if (!mydata->total_sect) /* unlikely */
567 mydata->total_sect = (u32)cur_part_info.size;
569 mydata->fats = bs.fats;
570 mydata->fat_sect = bs.reserved;
572 mydata->rootdir_sect = mydata->fat_sect + mydata->fatlength * bs.fats;
574 mydata->sect_size = (bs.sector_size[1] << 8) + bs.sector_size[0];
575 mydata->clust_size = bs.cluster_size;
576 if (mydata->sect_size != cur_part_info.blksz) {
577 printf("Error: FAT sector size mismatch (fs=%hu, dev=%lu)\n",
578 mydata->sect_size, cur_part_info.blksz);
581 if (mydata->clust_size == 0) {
582 printf("Error: FAT cluster size not set\n");
585 if ((unsigned int)mydata->clust_size * mydata->sect_size >
587 printf("Error: FAT cluster size too big (cs=%u, max=%u)\n",
588 (unsigned int)mydata->clust_size * mydata->sect_size,
593 if (mydata->fatsize == 32) {
594 mydata->data_begin = mydata->rootdir_sect -
595 (mydata->clust_size * 2);
596 mydata->root_cluster = bs.root_cluster;
598 mydata->rootdir_size = ((bs.dir_entries[1] * (int)256 +
602 mydata->data_begin = mydata->rootdir_sect +
603 mydata->rootdir_size -
604 (mydata->clust_size * 2);
607 * The root directory is not cluster-aligned and may be on a
608 * "negative" cluster, this will be handled specially in
611 mydata->root_cluster = 0;
614 mydata->fatbufnum = -1;
615 mydata->fat_dirty = 0;
616 mydata->fatbuf = malloc_cache_aligned(FATBUFSIZE);
617 if (mydata->fatbuf == NULL) {
618 debug("Error: allocating memory\n");
622 debug("FAT%d, fat_sect: %d, fatlength: %d\n",
623 mydata->fatsize, mydata->fat_sect, mydata->fatlength);
624 debug("Rootdir begins at cluster: %d, sector: %d, offset: %x\n"
625 "Data begins at: %d\n",
626 mydata->root_cluster,
627 mydata->rootdir_sect,
628 mydata->rootdir_sect * mydata->sect_size, mydata->data_begin);
629 debug("Sector size: %d, cluster size: %d\n", mydata->sect_size,
637 * Directory iterator, to simplify filesystem traversal
639 * Implements an iterator pattern to traverse directory tables,
640 * transparently handling directory tables split across multiple
641 * clusters, and the difference between FAT12/FAT16 root directory
642 * (contiguous) and subdirectories + FAT32 root (chained).
646 * for (fat_itr_root(&itr, fsdata); fat_itr_next(&itr); ) {
647 * // to traverse down to a subdirectory pointed to by
648 * // current iterator position:
649 * fat_itr_child(&itr, &itr);
652 * For more complete example, see fat_itr_resolve()
656 fsdata *fsdata; /* filesystem parameters */
657 unsigned start_clust; /* first cluster */
658 unsigned clust; /* current cluster */
659 unsigned next_clust; /* next cluster if remaining == 0 */
660 int last_cluster; /* set once we've read last cluster */
661 int is_root; /* is iterator at root directory */
662 int remaining; /* remaining dent's in current cluster */
664 /* current iterator position values: */
665 dir_entry *dent; /* current directory entry */
666 char l_name[VFAT_MAXLEN_BYTES]; /* long (vfat) name */
667 char s_name[14]; /* short 8.3 name */
668 char *name; /* l_name if there is one, else s_name */
670 /* storage for current cluster in memory: */
671 u8 block[MAX_CLUSTSIZE] __aligned(ARCH_DMA_MINALIGN);
674 static int fat_itr_isdir(fat_itr *itr);
677 * fat_itr_root() - initialize an iterator to start at the root
680 * @itr: iterator to initialize
681 * @fsdata: filesystem data for the partition
682 * @return 0 on success, else -errno
684 static int fat_itr_root(fat_itr *itr, fsdata *fsdata)
686 if (get_fs_info(fsdata))
689 itr->fsdata = fsdata;
690 itr->start_clust = 0;
691 itr->clust = fsdata->root_cluster;
692 itr->next_clust = fsdata->root_cluster;
695 itr->last_cluster = 0;
702 * fat_itr_child() - initialize an iterator to descend into a sub-
705 * Initializes 'itr' to iterate the contents of the directory at
706 * the current cursor position of 'parent'. It is an error to
707 * call this if the current cursor of 'parent' is pointing at a
710 * Note that 'itr' and 'parent' can be the same pointer if you do
711 * not need to preserve 'parent' after this call, which is useful
712 * for traversing directory structure to resolve a file/directory.
714 * @itr: iterator to initialize
715 * @parent: the iterator pointing at a directory entry in the
716 * parent directory of the directory to iterate
718 static void fat_itr_child(fat_itr *itr, fat_itr *parent)
720 fsdata *mydata = parent->fsdata; /* for silly macros */
721 unsigned clustnum = START(parent->dent);
723 assert(fat_itr_isdir(parent));
725 itr->fsdata = parent->fsdata;
726 itr->start_clust = clustnum;
728 itr->clust = clustnum;
729 itr->next_clust = clustnum;
732 itr->clust = parent->fsdata->root_cluster;
733 itr->next_clust = parent->fsdata->root_cluster;
738 itr->last_cluster = 0;
741 static void *next_cluster(fat_itr *itr, unsigned *nbytes)
743 fsdata *mydata = itr->fsdata; /* for silly macros */
748 /* have we reached the end? */
749 if (itr->last_cluster)
752 if (itr->is_root && itr->fsdata->fatsize != 32) {
754 * The root directory is located before the data area and
755 * cannot be indexed using the regular unsigned cluster
756 * numbers (it may start at a "negative" cluster or not at a
757 * cluster boundary at all), so consider itr->next_clust to be
758 * a offset in cluster-sized units from the start of rootdir.
760 unsigned sect_offset = itr->next_clust * itr->fsdata->clust_size;
761 unsigned remaining_sects = itr->fsdata->rootdir_size - sect_offset;
762 sect = itr->fsdata->rootdir_sect + sect_offset;
763 /* do not read past the end of rootdir */
764 read_size = min_t(u32, itr->fsdata->clust_size,
767 sect = clust_to_sect(itr->fsdata, itr->next_clust);
768 read_size = itr->fsdata->clust_size;
771 debug("FAT read(sect=%d), clust_size=%d, read_size=%u, DIRENTSPERBLOCK=%zd\n",
772 sect, itr->fsdata->clust_size, read_size, DIRENTSPERBLOCK);
775 * NOTE: do_fat_read_at() had complicated logic to deal w/
776 * vfat names that span multiple clusters in the fat16 case,
777 * which get_dentfromdir() probably also needed (and was
778 * missing). And not entirely sure what fat32 didn't have
779 * the same issue.. We solve that by only caring about one
780 * dent at a time and iteratively constructing the vfat long
783 ret = disk_read(sect, read_size, itr->block);
785 debug("Error: reading block\n");
789 *nbytes = read_size * itr->fsdata->sect_size;
790 itr->clust = itr->next_clust;
791 if (itr->is_root && itr->fsdata->fatsize != 32) {
793 if (itr->next_clust * itr->fsdata->clust_size >=
794 itr->fsdata->rootdir_size) {
795 debug("nextclust: 0x%x\n", itr->next_clust);
796 itr->last_cluster = 1;
799 itr->next_clust = get_fatent(itr->fsdata, itr->next_clust);
800 if (CHECK_CLUST(itr->next_clust, itr->fsdata->fatsize)) {
801 debug("nextclust: 0x%x\n", itr->next_clust);
802 itr->last_cluster = 1;
809 static dir_entry *next_dent(fat_itr *itr)
811 if (itr->remaining == 0) {
813 struct dir_entry *dent = next_cluster(itr, &nbytes);
815 /* have we reached the last cluster? */
817 /* a sign for no more entries left */
822 itr->remaining = nbytes / sizeof(dir_entry) - 1;
829 /* have we reached the last valid entry? */
830 if (itr->dent->name[0] == 0)
836 static dir_entry *extract_vfat_name(fat_itr *itr)
838 struct dir_entry *dent = itr->dent;
839 int seqn = itr->dent->name[0] & ~LAST_LONG_ENTRY_MASK;
840 u8 chksum, alias_checksum = ((dir_slot *)dent)->alias_checksum;
847 slot2str((dir_slot *)dent, buf, &idx);
849 if (n + idx >= sizeof(itr->l_name))
852 /* shift accumulated long-name up and copy new part in: */
853 memmove(itr->l_name + idx, itr->l_name, n);
854 memcpy(itr->l_name, buf, idx);
857 dent = next_dent(itr);
862 itr->l_name[n] = '\0';
864 chksum = mkcksum(dent->name, dent->ext);
866 /* checksum mismatch could mean deleted file, etc.. skip it: */
867 if (chksum != alias_checksum) {
868 debug("** chksum=%x, alias_checksum=%x, l_name=%s, s_name=%8s.%3s\n",
869 chksum, alias_checksum, itr->l_name, dent->name, dent->ext);
877 * fat_itr_next() - step to the next entry in a directory
879 * Must be called once on a new iterator before the cursor is valid.
881 * @itr: the iterator to iterate
882 * @return boolean, 1 if success or 0 if no more entries in the
885 static int fat_itr_next(fat_itr *itr)
892 dent = next_dent(itr);
896 if (dent->name[0] == DELETED_FLAG ||
897 dent->name[0] == aRING)
900 if (dent->attr & ATTR_VOLUME) {
901 if ((dent->attr & ATTR_VFAT) == ATTR_VFAT &&
902 (dent->name[0] & LAST_LONG_ENTRY_MASK)) {
903 dent = extract_vfat_name(itr);
906 itr->name = itr->l_name;
909 /* Volume label or VFAT entry, skip */
917 get_name(dent, itr->s_name);
919 itr->name = itr->s_name;
925 * fat_itr_isdir() - is current cursor position pointing to a directory
928 * @return true if cursor is at a directory
930 static int fat_itr_isdir(fat_itr *itr)
932 return !!(itr->dent->attr & ATTR_DIR);
939 #define TYPE_FILE 0x1
941 #define TYPE_ANY (TYPE_FILE | TYPE_DIR)
944 * fat_itr_resolve() - traverse directory structure to resolve the
947 * Traverse directory structure to the requested path. If the specified
948 * path is to a directory, this will descend into the directory and
949 * leave it iterator at the start of the directory. If the path is to a
950 * file, it will leave the iterator in the parent directory with current
951 * cursor at file's entry in the directory.
953 * @itr: iterator initialized to root
954 * @path: the requested path
955 * @type: bitmask of allowable file types
956 * @return 0 on success or -errno
958 static int fat_itr_resolve(fat_itr *itr, const char *path, unsigned type)
962 /* chomp any extra leading slashes: */
963 while (path[0] && ISDIRDELIM(path[0]))
966 /* are we at the end? */
967 if (strlen(path) == 0) {
968 if (!(type & TYPE_DIR))
973 /* find length of next path entry: */
975 while (next[0] && !ISDIRDELIM(next[0]))
979 /* root dir doesn't have "." nor ".." */
980 if ((((next - path) == 1) && !strncmp(path, ".", 1)) ||
981 (((next - path) == 2) && !strncmp(path, "..", 2))) {
982 /* point back to itself */
983 itr->clust = itr->fsdata->root_cluster;
984 itr->next_clust = itr->fsdata->root_cluster;
987 itr->last_cluster = 0;
996 return fat_itr_resolve(itr, next, type);
1000 while (fat_itr_next(itr)) {
1002 unsigned n = max(strlen(itr->name), (size_t)(next - path));
1004 /* check both long and short name: */
1005 if (!strncasecmp(path, itr->name, n))
1007 else if (itr->name != itr->s_name &&
1008 !strncasecmp(path, itr->s_name, n))
1014 if (fat_itr_isdir(itr)) {
1015 /* recurse into directory: */
1016 fat_itr_child(itr, itr);
1017 return fat_itr_resolve(itr, next, type);
1018 } else if (next[0]) {
1020 * If next is not empty then we have a case
1021 * like: /path/to/realfile/nonsense
1023 debug("bad trailing path: %s\n", next);
1025 } else if (!(type & TYPE_FILE)) {
1035 int file_fat_detectfs(void)
1038 volume_info volinfo;
1042 if (cur_dev == NULL) {
1043 printf("No current device\n");
1047 #if defined(CONFIG_IDE) || \
1048 defined(CONFIG_SATA) || \
1049 defined(CONFIG_SCSI) || \
1050 defined(CONFIG_CMD_USB) || \
1052 printf("Interface: ");
1053 switch (cur_dev->if_type) {
1079 printf("\n Device %d: ", cur_dev->devnum);
1083 if (read_bootsectandvi(&bs, &volinfo, &fatsize)) {
1084 printf("\nNo valid FAT fs found\n");
1088 memcpy(vol_label, volinfo.volume_label, 11);
1089 vol_label[11] = '\0';
1090 volinfo.fs_type[5] = '\0';
1092 printf("Filesystem: %s \"%s\"\n", volinfo.fs_type, vol_label);
1097 int fat_exists(const char *filename)
1103 itr = malloc_cache_aligned(sizeof(fat_itr));
1106 ret = fat_itr_root(itr, &fsdata);
1110 ret = fat_itr_resolve(itr, filename, TYPE_ANY);
1111 free(fsdata.fatbuf);
1117 int fat_size(const char *filename, loff_t *size)
1123 itr = malloc_cache_aligned(sizeof(fat_itr));
1126 ret = fat_itr_root(itr, &fsdata);
1130 ret = fat_itr_resolve(itr, filename, TYPE_FILE);
1133 * Directories don't have size, but fs_size() is not
1134 * expected to fail if passed a directory path:
1136 free(fsdata.fatbuf);
1137 fat_itr_root(itr, &fsdata);
1138 if (!fat_itr_resolve(itr, filename, TYPE_DIR)) {
1145 *size = FAT2CPU32(itr->dent->size);
1147 free(fsdata.fatbuf);
1153 int file_fat_read_at(const char *filename, loff_t pos, void *buffer,
1154 loff_t maxsize, loff_t *actread)
1160 itr = malloc_cache_aligned(sizeof(fat_itr));
1163 ret = fat_itr_root(itr, &fsdata);
1167 ret = fat_itr_resolve(itr, filename, TYPE_FILE);
1171 debug("reading %s at pos %llu\n", filename, pos);
1173 /* For saving default max clustersize memory allocated to malloc pool */
1174 dir_entry *dentptr = itr->dent;
1180 ret = get_contents(&fsdata, dentptr, pos, buffer, maxsize, actread);
1183 free(fsdata.fatbuf);
1189 int file_fat_read(const char *filename, void *buffer, int maxsize)
1194 ret = file_fat_read_at(filename, 0, buffer, maxsize, &actread);
1201 int fat_read_file(const char *filename, void *buf, loff_t offset, loff_t len,
1206 ret = file_fat_read_at(filename, offset, buf, len, actread);
1208 printf("** Unable to read file %s **\n", filename);
1214 struct fs_dir_stream parent;
1215 struct fs_dirent dirent;
1220 int fat_opendir(const char *filename, struct fs_dir_stream **dirsp)
1225 dir = malloc_cache_aligned(sizeof(*dir));
1228 memset(dir, 0, sizeof(*dir));
1230 ret = fat_itr_root(&dir->itr, &dir->fsdata);
1234 ret = fat_itr_resolve(&dir->itr, filename, TYPE_DIR);
1236 goto fail_free_both;
1238 *dirsp = (struct fs_dir_stream *)dir;
1242 free(dir->fsdata.fatbuf);
1248 int fat_readdir(struct fs_dir_stream *dirs, struct fs_dirent **dentp)
1250 fat_dir *dir = (fat_dir *)dirs;
1251 struct fs_dirent *dent = &dir->dirent;
1253 if (!fat_itr_next(&dir->itr))
1256 memset(dent, 0, sizeof(*dent));
1257 strcpy(dent->name, dir->itr.name);
1259 if (fat_itr_isdir(&dir->itr)) {
1260 dent->type = FS_DT_DIR;
1262 dent->type = FS_DT_REG;
1263 dent->size = FAT2CPU32(dir->itr.dent->size);
1271 void fat_closedir(struct fs_dir_stream *dirs)
1273 fat_dir *dir = (fat_dir *)dirs;
1274 free(dir->fsdata.fatbuf);
1278 void fat_close(void)