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+
18 #include <asm/byteorder.h>
22 #include <linux/compiler.h>
23 #include <linux/ctype.h>
25 #ifdef CONFIG_SUPPORT_VFAT
26 static const int vfat_enabled = 1;
28 static const int vfat_enabled = 0;
32 * Convert a string to lowercase. Converts at most 'len' characters,
33 * 'len' may be larger than the length of 'str' if 'str' is NULL
36 static void downcase(char *str, size_t len)
38 while (*str != '\0' && len--) {
44 static struct blk_desc *cur_dev;
45 static disk_partition_t cur_part_info;
47 #define DOS_BOOT_MAGIC_OFFSET 0x1fe
48 #define DOS_FS_TYPE_OFFSET 0x36
49 #define DOS_FS32_TYPE_OFFSET 0x52
51 static int disk_read(__u32 block, __u32 nr_blocks, void *buf)
58 ret = blk_dread(cur_dev, cur_part_info.start + block, nr_blocks, buf);
66 int fat_set_blk_dev(struct blk_desc *dev_desc, disk_partition_t *info)
68 ALLOC_CACHE_ALIGN_BUFFER(unsigned char, buffer, dev_desc->blksz);
71 cur_part_info = *info;
73 /* Make sure it has a valid FAT header */
74 if (disk_read(0, 1, buffer) != 1) {
79 /* Check if it's actually a DOS volume */
80 if (memcmp(buffer + DOS_BOOT_MAGIC_OFFSET, "\x55\xAA", 2)) {
85 /* Check for FAT12/FAT16/FAT32 filesystem */
86 if (!memcmp(buffer + DOS_FS_TYPE_OFFSET, "FAT", 3))
88 if (!memcmp(buffer + DOS_FS32_TYPE_OFFSET, "FAT32", 5))
95 int fat_register_device(struct blk_desc *dev_desc, int part_no)
97 disk_partition_t info;
99 /* First close any currently found FAT filesystem */
102 /* Read the partition table, if present */
103 if (part_get_info(dev_desc, part_no, &info)) {
105 printf("** Partition %d not valid on device %d **\n",
106 part_no, dev_desc->devnum);
111 info.size = dev_desc->lba;
112 info.blksz = dev_desc->blksz;
116 #if CONFIG_IS_ENABLED(PARTITION_UUIDS)
121 return fat_set_blk_dev(dev_desc, &info);
125 * Extract zero terminated short name from a directory entry.
127 static void get_name(dir_entry *dirent, char *s_name)
131 memcpy(s_name, dirent->name, 8);
134 while (*ptr && *ptr != ' ')
136 if (dirent->lcase & CASE_LOWER_BASE)
137 downcase(s_name, (unsigned)(ptr - s_name));
138 if (dirent->ext[0] && dirent->ext[0] != ' ') {
140 memcpy(ptr, dirent->ext, 3);
141 if (dirent->lcase & CASE_LOWER_EXT)
144 while (*ptr && *ptr != ' ')
148 if (*s_name == DELETED_FLAG)
150 else if (*s_name == aRING)
151 *s_name = DELETED_FLAG;
154 static int flush_dirty_fat_buffer(fsdata *mydata);
155 #if !defined(CONFIG_FAT_WRITE)
156 /* Stub for read only operation */
157 int flush_dirty_fat_buffer(fsdata *mydata)
165 * Get the entry at index 'entry' in a FAT (12/16/32) table.
166 * On failure 0x00 is returned.
168 static __u32 get_fatent(fsdata *mydata, __u32 entry)
174 if (CHECK_CLUST(entry, mydata->fatsize)) {
175 printf("Error: Invalid FAT entry: 0x%08x\n", entry);
179 switch (mydata->fatsize) {
181 bufnum = entry / FAT32BUFSIZE;
182 offset = entry - bufnum * FAT32BUFSIZE;
185 bufnum = entry / FAT16BUFSIZE;
186 offset = entry - bufnum * FAT16BUFSIZE;
189 bufnum = entry / FAT12BUFSIZE;
190 offset = entry - bufnum * FAT12BUFSIZE;
194 /* Unsupported FAT size */
198 debug("FAT%d: entry: 0x%08x = %d, offset: 0x%04x = %d\n",
199 mydata->fatsize, entry, entry, offset, offset);
201 /* Read a new block of FAT entries into the cache. */
202 if (bufnum != mydata->fatbufnum) {
203 __u32 getsize = FATBUFBLOCKS;
204 __u8 *bufptr = mydata->fatbuf;
205 __u32 fatlength = mydata->fatlength;
206 __u32 startblock = bufnum * FATBUFBLOCKS;
208 /* Cap length if fatlength is not a multiple of FATBUFBLOCKS */
209 if (startblock + getsize > fatlength)
210 getsize = fatlength - startblock;
212 startblock += mydata->fat_sect; /* Offset from start of disk */
214 /* Write back the fatbuf to the disk */
215 if (flush_dirty_fat_buffer(mydata) < 0)
218 if (disk_read(startblock, getsize, bufptr) < 0) {
219 debug("Error reading FAT blocks\n");
222 mydata->fatbufnum = bufnum;
225 /* Get the actual entry from the table */
226 switch (mydata->fatsize) {
228 ret = FAT2CPU32(((__u32 *) mydata->fatbuf)[offset]);
231 ret = FAT2CPU16(((__u16 *) mydata->fatbuf)[offset]);
234 off8 = (offset * 3) / 2;
235 /* fatbut + off8 may be unaligned, read in byte granularity */
236 ret = mydata->fatbuf[off8] + (mydata->fatbuf[off8 + 1] << 8);
242 debug("FAT%d: ret: 0x%08x, entry: 0x%08x, offset: 0x%04x\n",
243 mydata->fatsize, ret, entry, offset);
249 * Read at most 'size' bytes from the specified cluster into 'buffer'.
250 * Return 0 on success, -1 otherwise.
253 get_cluster(fsdata *mydata, __u32 clustnum, __u8 *buffer, unsigned long size)
260 startsect = clust_to_sect(mydata, clustnum);
262 startsect = mydata->rootdir_sect;
265 debug("gc - clustnum: %d, startsect: %d\n", clustnum, startsect);
267 if ((unsigned long)buffer & (ARCH_DMA_MINALIGN - 1)) {
268 ALLOC_CACHE_ALIGN_BUFFER(__u8, tmpbuf, mydata->sect_size);
270 printf("FAT: Misaligned buffer address (%p)\n", buffer);
272 while (size >= mydata->sect_size) {
273 ret = disk_read(startsect++, 1, tmpbuf);
275 debug("Error reading data (got %d)\n", ret);
279 memcpy(buffer, tmpbuf, mydata->sect_size);
280 buffer += mydata->sect_size;
281 size -= mydata->sect_size;
284 idx = size / mydata->sect_size;
285 ret = disk_read(startsect, idx, buffer);
287 debug("Error reading data (got %d)\n", ret);
291 idx *= mydata->sect_size;
296 ALLOC_CACHE_ALIGN_BUFFER(__u8, tmpbuf, mydata->sect_size);
298 ret = disk_read(startsect, 1, tmpbuf);
300 debug("Error reading data (got %d)\n", ret);
304 memcpy(buffer, tmpbuf, size);
311 * Read at most 'maxsize' bytes from 'pos' in the file associated with 'dentptr'
313 * Update the number of bytes read in *gotsize or return -1 on fatal errors.
315 __u8 get_contents_vfatname_block[MAX_CLUSTSIZE]
316 __aligned(ARCH_DMA_MINALIGN);
318 static int get_contents(fsdata *mydata, dir_entry *dentptr, loff_t pos,
319 __u8 *buffer, loff_t maxsize, loff_t *gotsize)
321 loff_t filesize = FAT2CPU32(dentptr->size);
322 unsigned int bytesperclust = mydata->clust_size * mydata->sect_size;
323 __u32 curclust = START(dentptr);
324 __u32 endclust, newclust;
328 debug("Filesize: %llu bytes\n", filesize);
330 if (pos >= filesize) {
331 debug("Read position past EOF: %llu\n", pos);
335 if (maxsize > 0 && filesize > pos + maxsize)
336 filesize = pos + maxsize;
338 debug("%llu bytes\n", filesize);
340 actsize = bytesperclust;
342 /* go to cluster at pos */
343 while (actsize <= pos) {
344 curclust = get_fatent(mydata, curclust);
345 if (CHECK_CLUST(curclust, mydata->fatsize)) {
346 debug("curclust: 0x%x\n", curclust);
347 debug("Invalid FAT entry\n");
350 actsize += bytesperclust;
354 actsize -= bytesperclust;
358 /* align to beginning of next cluster if any */
360 actsize = min(filesize, (loff_t)bytesperclust);
361 if (get_cluster(mydata, curclust, get_contents_vfatname_block,
362 (int)actsize) != 0) {
363 printf("Error reading cluster\n");
368 memcpy(buffer, get_contents_vfatname_block + 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 * TODO these should go away once fat_write is reworked to use the
478 __u8 get_dentfromdir_block[MAX_CLUSTSIZE]
479 __aligned(ARCH_DMA_MINALIGN);
480 __u8 do_fat_read_at_block[MAX_CLUSTSIZE]
481 __aligned(ARCH_DMA_MINALIGN);
484 * Read boot sector and volume info from a FAT filesystem
487 read_bootsectandvi(boot_sector *bs, volume_info *volinfo, int *fatsize)
490 volume_info *vistart;
493 if (cur_dev == NULL) {
494 debug("Error: no device selected\n");
498 block = malloc_cache_aligned(cur_dev->blksz);
500 debug("Error: allocating block\n");
504 if (disk_read(0, 1, block) < 0) {
505 debug("Error: reading block\n");
509 memcpy(bs, block, sizeof(boot_sector));
510 bs->reserved = FAT2CPU16(bs->reserved);
511 bs->fat_length = FAT2CPU16(bs->fat_length);
512 bs->secs_track = FAT2CPU16(bs->secs_track);
513 bs->heads = FAT2CPU16(bs->heads);
514 bs->total_sect = FAT2CPU32(bs->total_sect);
517 if (bs->fat_length == 0) {
519 bs->fat32_length = FAT2CPU32(bs->fat32_length);
520 bs->flags = FAT2CPU16(bs->flags);
521 bs->root_cluster = FAT2CPU32(bs->root_cluster);
522 bs->info_sector = FAT2CPU16(bs->info_sector);
523 bs->backup_boot = FAT2CPU16(bs->backup_boot);
524 vistart = (volume_info *)(block + sizeof(boot_sector));
527 vistart = (volume_info *)&(bs->fat32_length);
530 memcpy(volinfo, vistart, sizeof(volume_info));
532 if (*fatsize == 32) {
533 if (strncmp(FAT32_SIGN, vistart->fs_type, SIGNLEN) == 0)
536 if (strncmp(FAT12_SIGN, vistart->fs_type, SIGNLEN) == 0) {
540 if (strncmp(FAT16_SIGN, vistart->fs_type, SIGNLEN) == 0) {
546 debug("Error: broken fs_type sign\n");
554 static int get_fs_info(fsdata *mydata)
560 ret = read_bootsectandvi(&bs, &volinfo, &mydata->fatsize);
562 debug("Error: reading boot sector\n");
566 if (mydata->fatsize == 32) {
567 mydata->fatlength = bs.fat32_length;
569 mydata->fatlength = bs.fat_length;
572 mydata->fat_sect = bs.reserved;
574 mydata->rootdir_sect = mydata->fat_sect + mydata->fatlength * bs.fats;
576 mydata->sect_size = (bs.sector_size[1] << 8) + bs.sector_size[0];
577 mydata->clust_size = bs.cluster_size;
578 if (mydata->sect_size != cur_part_info.blksz) {
579 printf("Error: FAT sector size mismatch (fs=%hu, dev=%lu)\n",
580 mydata->sect_size, cur_part_info.blksz);
584 if (mydata->fatsize == 32) {
585 mydata->data_begin = mydata->rootdir_sect -
586 (mydata->clust_size * 2);
587 mydata->root_cluster = bs.root_cluster;
589 mydata->rootdir_size = ((bs.dir_entries[1] * (int)256 +
593 mydata->data_begin = mydata->rootdir_sect +
594 mydata->rootdir_size -
595 (mydata->clust_size * 2);
596 mydata->root_cluster =
597 sect_to_clust(mydata, mydata->rootdir_sect);
600 mydata->fatbufnum = -1;
601 mydata->fat_dirty = 0;
602 mydata->fatbuf = malloc_cache_aligned(FATBUFSIZE);
603 if (mydata->fatbuf == NULL) {
604 debug("Error: allocating memory\n");
609 debug("VFAT Support enabled\n");
611 debug("FAT%d, fat_sect: %d, fatlength: %d\n",
612 mydata->fatsize, mydata->fat_sect, mydata->fatlength);
613 debug("Rootdir begins at cluster: %d, sector: %d, offset: %x\n"
614 "Data begins at: %d\n",
615 mydata->root_cluster,
616 mydata->rootdir_sect,
617 mydata->rootdir_sect * mydata->sect_size, mydata->data_begin);
618 debug("Sector size: %d, cluster size: %d\n", mydata->sect_size,
626 * Directory iterator, to simplify filesystem traversal
628 * Implements an iterator pattern to traverse directory tables,
629 * transparently handling directory tables split across multiple
630 * clusters, and the difference between FAT12/FAT16 root directory
631 * (contiguous) and subdirectories + FAT32 root (chained).
635 * for (fat_itr_root(&itr, fsdata); fat_itr_next(&itr); ) {
636 * // to traverse down to a subdirectory pointed to by
637 * // current iterator position:
638 * fat_itr_child(&itr, &itr);
641 * For more complete example, see fat_itr_resolve()
645 fsdata *fsdata; /* filesystem parameters */
646 unsigned clust; /* current cluster */
647 int last_cluster; /* set once we've read last cluster */
648 int is_root; /* is iterator at root directory */
649 int remaining; /* remaining dent's in current cluster */
651 /* current iterator position values: */
652 dir_entry *dent; /* current directory entry */
653 char l_name[VFAT_MAXLEN_BYTES]; /* long (vfat) name */
654 char s_name[14]; /* short 8.3 name */
655 char *name; /* l_name if there is one, else s_name */
657 /* storage for current cluster in memory: */
658 u8 block[MAX_CLUSTSIZE] __aligned(ARCH_DMA_MINALIGN);
661 static int fat_itr_isdir(fat_itr *itr);
664 * fat_itr_root() - initialize an iterator to start at the root
667 * @itr: iterator to initialize
668 * @fsdata: filesystem data for the partition
669 * @return 0 on success, else -errno
671 static int fat_itr_root(fat_itr *itr, fsdata *fsdata)
673 if (get_fs_info(fsdata))
676 itr->fsdata = fsdata;
677 itr->clust = fsdata->root_cluster;
680 itr->last_cluster = 0;
687 * fat_itr_child() - initialize an iterator to descend into a sub-
690 * Initializes 'itr' to iterate the contents of the directory at
691 * the current cursor position of 'parent'. It is an error to
692 * call this if the current cursor of 'parent' is pointing at a
695 * Note that 'itr' and 'parent' can be the same pointer if you do
696 * not need to preserve 'parent' after this call, which is useful
697 * for traversing directory structure to resolve a file/directory.
699 * @itr: iterator to initialize
700 * @parent: the iterator pointing at a directory entry in the
701 * parent directory of the directory to iterate
703 static void fat_itr_child(fat_itr *itr, fat_itr *parent)
705 fsdata *mydata = parent->fsdata; /* for silly macros */
706 unsigned clustnum = START(parent->dent);
708 assert(fat_itr_isdir(parent));
710 itr->fsdata = parent->fsdata;
712 itr->clust = clustnum;
715 itr->clust = parent->fsdata->root_cluster;
720 itr->last_cluster = 0;
723 static void *next_cluster(fat_itr *itr)
725 fsdata *mydata = itr->fsdata; /* for silly macros */
729 /* have we reached the end? */
730 if (itr->last_cluster)
733 sect = clust_to_sect(itr->fsdata, itr->clust);
735 debug("FAT read(sect=%d), clust_size=%d, DIRENTSPERBLOCK=%zd\n",
736 sect, itr->fsdata->clust_size, DIRENTSPERBLOCK);
739 * NOTE: do_fat_read_at() had complicated logic to deal w/
740 * vfat names that span multiple clusters in the fat16 case,
741 * which get_dentfromdir() probably also needed (and was
742 * missing). And not entirely sure what fat32 didn't have
743 * the same issue.. We solve that by only caring about one
744 * dent at a time and iteratively constructing the vfat long
747 ret = disk_read(sect, itr->fsdata->clust_size,
750 debug("Error: reading block\n");
754 if (itr->is_root && itr->fsdata->fatsize != 32) {
756 sect = clust_to_sect(itr->fsdata, itr->clust);
757 if (sect - itr->fsdata->rootdir_sect >=
758 itr->fsdata->rootdir_size) {
759 debug("cursect: 0x%x\n", itr->clust);
760 itr->last_cluster = 1;
763 itr->clust = get_fatent(itr->fsdata, itr->clust);
764 if (CHECK_CLUST(itr->clust, itr->fsdata->fatsize)) {
765 debug("cursect: 0x%x\n", itr->clust);
766 itr->last_cluster = 1;
773 static dir_entry *next_dent(fat_itr *itr)
775 if (itr->remaining == 0) {
776 struct dir_entry *dent = next_cluster(itr);
777 unsigned nbytes = itr->fsdata->sect_size *
778 itr->fsdata->clust_size;
780 /* have we reached the last cluster? */
784 itr->remaining = nbytes / sizeof(dir_entry) - 1;
791 /* have we reached the last valid entry? */
792 if (itr->dent->name[0] == 0)
798 static dir_entry *extract_vfat_name(fat_itr *itr)
800 struct dir_entry *dent = itr->dent;
801 int seqn = itr->dent->name[0] & ~LAST_LONG_ENTRY_MASK;
802 u8 chksum, alias_checksum = ((dir_slot *)dent)->alias_checksum;
809 slot2str((dir_slot *)dent, buf, &idx);
811 /* shift accumulated long-name up and copy new part in: */
812 memmove(itr->l_name + idx, itr->l_name, n);
813 memcpy(itr->l_name, buf, idx);
816 dent = next_dent(itr);
821 itr->l_name[n] = '\0';
823 chksum = mkcksum(dent->name, dent->ext);
825 /* checksum mismatch could mean deleted file, etc.. skip it: */
826 if (chksum != alias_checksum) {
827 debug("** chksum=%x, alias_checksum=%x, l_name=%s, s_name=%8s.%3s\n",
828 chksum, alias_checksum, itr->l_name, dent->name, dent->ext);
836 * fat_itr_next() - step to the next entry in a directory
838 * Must be called once on a new iterator before the cursor is valid.
840 * @itr: the iterator to iterate
841 * @return boolean, 1 if success or 0 if no more entries in the
844 static int fat_itr_next(fat_itr *itr)
851 dent = next_dent(itr);
855 if (dent->name[0] == DELETED_FLAG ||
856 dent->name[0] == aRING)
859 if (dent->attr & ATTR_VOLUME) {
861 (dent->attr & ATTR_VFAT) == ATTR_VFAT &&
862 (dent->name[0] & LAST_LONG_ENTRY_MASK)) {
863 dent = extract_vfat_name(itr);
866 itr->name = itr->l_name;
869 /* Volume label or VFAT entry, skip */
877 get_name(dent, itr->s_name);
879 itr->name = itr->s_name;
885 * fat_itr_isdir() - is current cursor position pointing to a directory
888 * @return true if cursor is at a directory
890 static int fat_itr_isdir(fat_itr *itr)
892 return !!(itr->dent->attr & ATTR_DIR);
899 #define TYPE_FILE 0x1
901 #define TYPE_ANY (TYPE_FILE | TYPE_DIR)
904 * fat_itr_resolve() - traverse directory structure to resolve the
907 * Traverse directory structure to the requested path. If the specified
908 * path is to a directory, this will descend into the directory and
909 * leave it iterator at the start of the directory. If the path is to a
910 * file, it will leave the iterator in the parent directory with current
911 * cursor at file's entry in the directory.
913 * @itr: iterator initialized to root
914 * @path: the requested path
915 * @type: bitmask of allowable file types
916 * @return 0 on success or -errno
918 static int fat_itr_resolve(fat_itr *itr, const char *path, unsigned type)
922 /* chomp any extra leading slashes: */
923 while (path[0] && ISDIRDELIM(path[0]))
926 /* are we at the end? */
927 if (strlen(path) == 0) {
928 if (!(type & TYPE_DIR))
933 /* find length of next path entry: */
935 while (next[0] && !ISDIRDELIM(next[0]))
938 while (fat_itr_next(itr)) {
940 unsigned n = max(strlen(itr->name), (size_t)(next - path));
942 /* check both long and short name: */
943 if (!strncasecmp(path, itr->name, n))
945 else if (itr->name != itr->s_name &&
946 !strncasecmp(path, itr->s_name, n))
952 if (fat_itr_isdir(itr)) {
953 /* recurse into directory: */
954 fat_itr_child(itr, itr);
955 return fat_itr_resolve(itr, next, type);
956 } else if (next[0]) {
958 * If next is not empty then we have a case
959 * like: /path/to/realfile/nonsense
961 debug("bad trailing path: %s\n", next);
963 } else if (!(type & TYPE_FILE)) {
973 int file_fat_detectfs(void)
980 if (cur_dev == NULL) {
981 printf("No current device\n");
985 #if defined(CONFIG_IDE) || \
986 defined(CONFIG_SATA) || \
987 defined(CONFIG_SCSI) || \
988 defined(CONFIG_CMD_USB) || \
990 printf("Interface: ");
991 switch (cur_dev->if_type) {
1017 printf("\n Device %d: ", cur_dev->devnum);
1021 if (read_bootsectandvi(&bs, &volinfo, &fatsize)) {
1022 printf("\nNo valid FAT fs found\n");
1026 memcpy(vol_label, volinfo.volume_label, 11);
1027 vol_label[11] = '\0';
1028 volinfo.fs_type[5] = '\0';
1030 printf("Filesystem: %s \"%s\"\n", volinfo.fs_type, vol_label);
1035 int fat_exists(const char *filename)
1041 itr = malloc_cache_aligned(sizeof(fat_itr));
1044 ret = fat_itr_root(itr, &fsdata);
1048 ret = fat_itr_resolve(itr, filename, TYPE_ANY);
1049 free(fsdata.fatbuf);
1055 int fat_size(const char *filename, loff_t *size)
1061 itr = malloc_cache_aligned(sizeof(fat_itr));
1064 ret = fat_itr_root(itr, &fsdata);
1068 ret = fat_itr_resolve(itr, filename, TYPE_FILE);
1071 * Directories don't have size, but fs_size() is not
1072 * expected to fail if passed a directory path:
1074 free(fsdata.fatbuf);
1075 fat_itr_root(itr, &fsdata);
1076 if (!fat_itr_resolve(itr, filename, TYPE_DIR)) {
1083 *size = FAT2CPU32(itr->dent->size);
1085 free(fsdata.fatbuf);
1091 int file_fat_read_at(const char *filename, loff_t pos, void *buffer,
1092 loff_t maxsize, loff_t *actread)
1098 itr = malloc_cache_aligned(sizeof(fat_itr));
1101 ret = fat_itr_root(itr, &fsdata);
1105 ret = fat_itr_resolve(itr, filename, TYPE_FILE);
1109 debug("reading %s\n", filename);
1110 ret = get_contents(&fsdata, itr->dent, pos, buffer, maxsize, actread);
1113 free(fsdata.fatbuf);
1119 int file_fat_read(const char *filename, void *buffer, int maxsize)
1124 ret = file_fat_read_at(filename, 0, buffer, maxsize, &actread);
1131 int fat_read_file(const char *filename, void *buf, loff_t offset, loff_t len,
1136 ret = file_fat_read_at(filename, offset, buf, len, actread);
1138 printf("** Unable to read file %s **\n", filename);
1144 struct fs_dir_stream parent;
1145 struct fs_dirent dirent;
1150 int fat_opendir(const char *filename, struct fs_dir_stream **dirsp)
1155 dir = malloc_cache_aligned(sizeof(*dir));
1158 memset(dir, 0, sizeof(*dir));
1160 ret = fat_itr_root(&dir->itr, &dir->fsdata);
1164 ret = fat_itr_resolve(&dir->itr, filename, TYPE_DIR);
1166 goto fail_free_both;
1168 *dirsp = (struct fs_dir_stream *)dir;
1172 free(dir->fsdata.fatbuf);
1178 int fat_readdir(struct fs_dir_stream *dirs, struct fs_dirent **dentp)
1180 fat_dir *dir = (fat_dir *)dirs;
1181 struct fs_dirent *dent = &dir->dirent;
1183 if (!fat_itr_next(&dir->itr))
1186 memset(dent, 0, sizeof(*dent));
1187 strcpy(dent->name, dir->itr.name);
1189 if (fat_itr_isdir(&dir->itr)) {
1190 dent->type = FS_DT_DIR;
1192 dent->type = FS_DT_REG;
1193 dent->size = FAT2CPU32(dir->itr.dent->size);
1201 void fat_closedir(struct fs_dir_stream *dirs)
1203 fat_dir *dir = (fat_dir *)dirs;
1204 free(dir->fsdata.fatbuf);
1208 void fat_close(void)