blob: e2570e81676875d54911ceec27a8d1bedc1c32d5 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
wdenk71f95112003-06-15 22:40:42 +00002/*
3 * fat.c
4 *
5 * R/O (V)FAT 12/16/32 filesystem implementation by Marcus Sundberg
6 *
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
wdenk71f95112003-06-15 22:40:42 +00009 */
10
Simon Glass78211de2023-07-15 21:39:06 -060011#define LOG_CATEGORY LOGC_FS
12
Simon Glass2a981dc2016-02-29 15:25:52 -070013#include <blk.h>
wdenk71f95112003-06-15 22:40:42 +000014#include <config.h>
Sergei Shtylyovac497772011-08-08 09:38:33 +000015#include <exports.h>
wdenk71f95112003-06-15 22:40:42 +000016#include <fat.h>
Rob Clark1f403662017-09-09 13:15:56 -040017#include <fs.h>
Simon Glassf7ae49f2020-05-10 11:40:05 -060018#include <log.h>
wdenk71f95112003-06-15 22:40:42 +000019#include <asm/byteorder.h>
Christian Taedcke24caa692023-11-15 13:44:16 +010020#include <asm/unaligned.h>
wdenk7205e402003-09-10 22:30:53 +000021#include <part.h>
Eric Nelson9a800ac2012-04-11 04:08:53 +000022#include <malloc.h>
Simon Glasscf92e052015-09-02 17:24:58 -060023#include <memalign.h>
Simon Glass90526e92020-05-10 11:39:56 -060024#include <asm/cache.h>
Eric Nelson9a800ac2012-04-11 04:08:53 +000025#include <linux/compiler.h>
Richard Genoudfb7e16c2012-12-13 00:47:36 +000026#include <linux/ctype.h>
Christian Taedckec4899372023-11-15 13:44:20 +010027#include <linux/log2.h>
wdenk71f95112003-06-15 22:40:42 +000028
Christian Taedcke08f622a2023-11-15 13:44:18 +010029/* maximum number of clusters for FAT12 */
30#define MAX_FAT12 0xFF4
31
wdenk71f95112003-06-15 22:40:42 +000032/*
Rob Clark21a24c32017-09-09 13:15:59 -040033 * Convert a string to lowercase. Converts at most 'len' characters,
34 * 'len' may be larger than the length of 'str' if 'str' is NULL
35 * terminated.
wdenk71f95112003-06-15 22:40:42 +000036 */
Rob Clark21a24c32017-09-09 13:15:59 -040037static void downcase(char *str, size_t len)
wdenk71f95112003-06-15 22:40:42 +000038{
Rob Clark21a24c32017-09-09 13:15:59 -040039 while (*str != '\0' && len--) {
Richard Genoudfb7e16c2012-12-13 00:47:36 +000040 *str = tolower(*str);
wdenk71f95112003-06-15 22:40:42 +000041 str++;
42 }
43}
44
Simon Glass4101f682016-02-29 15:25:34 -070045static struct blk_desc *cur_dev;
Simon Glass05289792020-05-10 11:39:57 -060046static struct disk_partition cur_part_info;
Wolfgang Denk7385c282010-07-19 11:37:00 +020047
Kyle Moffett9813b752011-12-21 07:08:10 +000048#define DOS_BOOT_MAGIC_OFFSET 0x1fe
wdenk7205e402003-09-10 22:30:53 +000049#define DOS_FS_TYPE_OFFSET 0x36
Wolfgang Denk66c2d732010-07-19 11:36:57 +020050#define DOS_FS32_TYPE_OFFSET 0x52
wdenk71f95112003-06-15 22:40:42 +000051
Kyle Moffett9813b752011-12-21 07:08:10 +000052static int disk_read(__u32 block, __u32 nr_blocks, void *buf)
wdenk71f95112003-06-15 22:40:42 +000053{
Łukasz Majewski0a04ed82015-09-03 14:21:39 +020054 ulong ret;
55
Simon Glass2a981dc2016-02-29 15:25:52 -070056 if (!cur_dev)
wdenk7205e402003-09-10 22:30:53 +000057 return -1;
Wolfgang Denk7385c282010-07-19 11:37:00 +020058
Simon Glass2a981dc2016-02-29 15:25:52 -070059 ret = blk_dread(cur_dev, cur_part_info.start + block, nr_blocks, buf);
Łukasz Majewski0a04ed82015-09-03 14:21:39 +020060
Tom Rini42a9f142017-08-14 21:02:08 -040061 if (ret != nr_blocks)
Łukasz Majewski0a04ed82015-09-03 14:21:39 +020062 return -1;
63
64 return ret;
wdenk71f95112003-06-15 22:40:42 +000065}
66
Simon Glass05289792020-05-10 11:39:57 -060067int fat_set_blk_dev(struct blk_desc *dev_desc, struct disk_partition *info)
wdenk71f95112003-06-15 22:40:42 +000068{
Eric Nelson9a800ac2012-04-11 04:08:53 +000069 ALLOC_CACHE_ALIGN_BUFFER(unsigned char, buffer, dev_desc->blksz);
wdenk7205e402003-09-10 22:30:53 +000070
Stephen Warren5e8f9832012-10-17 06:44:59 +000071 cur_dev = dev_desc;
72 cur_part_info = *info;
Kyle Moffett9813b752011-12-21 07:08:10 +000073
74 /* Make sure it has a valid FAT header */
75 if (disk_read(0, 1, buffer) != 1) {
76 cur_dev = NULL;
77 return -1;
78 }
79
80 /* Check if it's actually a DOS volume */
81 if (memcmp(buffer + DOS_BOOT_MAGIC_OFFSET, "\x55\xAA", 2)) {
82 cur_dev = NULL;
83 return -1;
84 }
85
86 /* Check for FAT12/FAT16/FAT32 filesystem */
87 if (!memcmp(buffer + DOS_FS_TYPE_OFFSET, "FAT", 3))
88 return 0;
89 if (!memcmp(buffer + DOS_FS32_TYPE_OFFSET, "FAT32", 5))
90 return 0;
91
92 cur_dev = NULL;
93 return -1;
wdenk71f95112003-06-15 22:40:42 +000094}
95
Simon Glass4101f682016-02-29 15:25:34 -070096int fat_register_device(struct blk_desc *dev_desc, int part_no)
Stephen Warren5e8f9832012-10-17 06:44:59 +000097{
Simon Glass05289792020-05-10 11:39:57 -060098 struct disk_partition info;
Stephen Warren5e8f9832012-10-17 06:44:59 +000099
100 /* First close any currently found FAT filesystem */
101 cur_dev = NULL;
102
103 /* Read the partition table, if present */
Simon Glass3e8bd462016-02-29 15:25:48 -0700104 if (part_get_info(dev_desc, part_no, &info)) {
Stephen Warren5e8f9832012-10-17 06:44:59 +0000105 if (part_no != 0) {
Simon Glass78211de2023-07-15 21:39:06 -0600106 log_err("Partition %d invalid on device %d\n", part_no,
107 dev_desc->devnum);
Stephen Warren5e8f9832012-10-17 06:44:59 +0000108 return -1;
109 }
110
111 info.start = 0;
112 info.size = dev_desc->lba;
113 info.blksz = dev_desc->blksz;
114 info.name[0] = 0;
115 info.type[0] = 0;
116 info.bootable = 0;
Simon Glassc5f1d002023-08-24 13:55:31 -0600117 disk_partition_clr_uuid(&info);
Stephen Warren5e8f9832012-10-17 06:44:59 +0000118 }
119
120 return fat_set_blk_dev(dev_desc, &info);
121}
Kyle Moffett9813b752011-12-21 07:08:10 +0000122
wdenk71f95112003-06-15 22:40:42 +0000123/*
wdenk71f95112003-06-15 22:40:42 +0000124 * Extract zero terminated short name from a directory entry.
125 */
Benoît Thébaudeau9795e072012-07-20 15:18:44 +0200126static void get_name(dir_entry *dirent, char *s_name)
wdenk71f95112003-06-15 22:40:42 +0000127{
128 char *ptr;
129
Heinrich Schuchardt041f0af2021-01-21 00:23:33 +0100130 memcpy(s_name, dirent->nameext.name, 8);
wdenk71f95112003-06-15 22:40:42 +0000131 s_name[8] = '\0';
132 ptr = s_name;
133 while (*ptr && *ptr != ' ')
134 ptr++;
Rob Clark21a24c32017-09-09 13:15:59 -0400135 if (dirent->lcase & CASE_LOWER_BASE)
136 downcase(s_name, (unsigned)(ptr - s_name));
Heinrich Schuchardt041f0af2021-01-21 00:23:33 +0100137 if (dirent->nameext.ext[0] && dirent->nameext.ext[0] != ' ') {
Rob Clark21a24c32017-09-09 13:15:59 -0400138 *ptr++ = '.';
Heinrich Schuchardt041f0af2021-01-21 00:23:33 +0100139 memcpy(ptr, dirent->nameext.ext, 3);
Rob Clark21a24c32017-09-09 13:15:59 -0400140 if (dirent->lcase & CASE_LOWER_EXT)
141 downcase(ptr, 3);
wdenk71f95112003-06-15 22:40:42 +0000142 ptr[3] = '\0';
143 while (*ptr && *ptr != ' ')
144 ptr++;
145 }
146 *ptr = '\0';
147 if (*s_name == DELETED_FLAG)
148 *s_name = '\0';
149 else if (*s_name == aRING)
Remy Bohmer3c2c2f42008-11-27 22:30:27 +0100150 *s_name = DELETED_FLAG;
wdenk71f95112003-06-15 22:40:42 +0000151}
152
Stefan Brünsb8948d22016-12-17 00:27:51 +0100153static int flush_dirty_fat_buffer(fsdata *mydata);
Tien Fong Cheed8c3ea92019-01-23 14:20:04 +0800154
155#if !CONFIG_IS_ENABLED(FAT_WRITE)
Stefan Brünsb8948d22016-12-17 00:27:51 +0100156/* Stub for read only operation */
157int flush_dirty_fat_buffer(fsdata *mydata)
158{
159 (void)(mydata);
160 return 0;
161}
162#endif
163
wdenk71f95112003-06-15 22:40:42 +0000164/*
165 * Get the entry at index 'entry' in a FAT (12/16/32) table.
166 * On failure 0x00 is returned.
167 */
Benoît Thébaudeau9795e072012-07-20 15:18:44 +0200168static __u32 get_fatent(fsdata *mydata, __u32 entry)
wdenk71f95112003-06-15 22:40:42 +0000169{
170 __u32 bufnum;
Stefan Brünsb352cae2017-01-26 20:22:36 +0000171 __u32 offset, off8;
wdenk71f95112003-06-15 22:40:42 +0000172 __u32 ret = 0x00;
173
Stefan Brünsb8948d22016-12-17 00:27:51 +0100174 if (CHECK_CLUST(entry, mydata->fatsize)) {
Simon Glass78211de2023-07-15 21:39:06 -0600175 log_err("Invalid FAT entry: %#08x\n", entry);
Stefan Brünsb8948d22016-12-17 00:27:51 +0100176 return ret;
177 }
178
wdenk71f95112003-06-15 22:40:42 +0000179 switch (mydata->fatsize) {
180 case 32:
181 bufnum = entry / FAT32BUFSIZE;
182 offset = entry - bufnum * FAT32BUFSIZE;
183 break;
184 case 16:
185 bufnum = entry / FAT16BUFSIZE;
186 offset = entry - bufnum * FAT16BUFSIZE;
187 break;
188 case 12:
189 bufnum = entry / FAT12BUFSIZE;
190 offset = entry - bufnum * FAT12BUFSIZE;
191 break;
192
193 default:
194 /* Unsupported FAT size */
195 return ret;
196 }
197
Stefan Brünsb8948d22016-12-17 00:27:51 +0100198 debug("FAT%d: entry: 0x%08x = %d, offset: 0x%04x = %d\n",
Wolfgang Denk7385c282010-07-19 11:37:00 +0200199 mydata->fatsize, entry, entry, offset, offset);
Wolfgang Denk2aa98c62010-07-19 11:36:58 +0200200
wdenk71f95112003-06-15 22:40:42 +0000201 /* Read a new block of FAT entries into the cache. */
202 if (bufnum != mydata->fatbufnum) {
Sergei Shtylyov60b36f02011-08-08 09:39:29 +0000203 __u32 getsize = FATBUFBLOCKS;
wdenk71f95112003-06-15 22:40:42 +0000204 __u8 *bufptr = mydata->fatbuf;
205 __u32 fatlength = mydata->fatlength;
206 __u32 startblock = bufnum * FATBUFBLOCKS;
207
Stefan Brüns6c1a8082016-12-17 00:27:50 +0100208 /* Cap length if fatlength is not a multiple of FATBUFBLOCKS */
Benoît Thébaudeau8006dd22012-07-20 15:19:29 +0200209 if (startblock + getsize > fatlength)
210 getsize = fatlength - startblock;
Sergei Shtylyov60b36f02011-08-08 09:39:29 +0000211
wdenk71f95112003-06-15 22:40:42 +0000212 startblock += mydata->fat_sect; /* Offset from start of disk */
213
Stefan Brünsb8948d22016-12-17 00:27:51 +0100214 /* Write back the fatbuf to the disk */
215 if (flush_dirty_fat_buffer(mydata) < 0)
216 return -1;
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:
Stefan Brünsb352cae2017-01-26 20:22:36 +0000234 off8 = (offset * 3) / 2;
235 /* fatbut + off8 may be unaligned, read in byte granularity */
236 ret = mydata->fatbuf[off8] + (mydata->fatbuf[off8 + 1] << 8);
wdenk71f95112003-06-15 22:40:42 +0000237
Stefan Brüns8d48c922016-12-17 03:55:10 +0100238 if (offset & 0x1)
239 ret >>= 4;
240 ret &= 0xfff;
wdenk71f95112003-06-15 22:40:42 +0000241 }
Stefan Brünsb8948d22016-12-17 00:27:51 +0100242 debug("FAT%d: ret: 0x%08x, entry: 0x%08x, offset: 0x%04x\n",
243 mydata->fatsize, ret, entry, offset);
wdenk71f95112003-06-15 22:40:42 +0000244
245 return ret;
246}
247
wdenk71f95112003-06-15 22:40:42 +0000248/*
249 * Read at most 'size' bytes from the specified cluster into 'buffer'.
250 * Return 0 on success, -1 otherwise.
251 */
252static int
Benoît Thébaudeau9795e072012-07-20 15:18:44 +0200253get_cluster(fsdata *mydata, __u32 clustnum, __u8 *buffer, unsigned long size)
wdenk71f95112003-06-15 22:40:42 +0000254{
wdenk71f95112003-06-15 22:40:42 +0000255 __u32 startsect;
Kyle Moffett46236b12011-12-20 07:41:13 +0000256 int ret;
wdenk71f95112003-06-15 22:40:42 +0000257
258 if (clustnum > 0) {
Rob Clark265edc02017-09-09 13:16:00 -0400259 startsect = clust_to_sect(mydata, clustnum);
wdenk71f95112003-06-15 22:40:42 +0000260 } else {
261 startsect = mydata->rootdir_sect;
262 }
263
Wolfgang Denk7385c282010-07-19 11:37:00 +0200264 debug("gc - clustnum: %d, startsect: %d\n", clustnum, startsect);
265
Benoît Thébaudeaucc63b252012-07-20 15:21:08 +0200266 if ((unsigned long)buffer & (ARCH_DMA_MINALIGN - 1)) {
Eric Nelson9a800ac2012-04-11 04:08:53 +0000267 ALLOC_CACHE_ALIGN_BUFFER(__u8, tmpbuf, mydata->sect_size);
Wolfgang Denk7385c282010-07-19 11:37:00 +0200268
Heinrich Schuchardt1c381ce2018-09-13 19:42:47 +0200269 debug("FAT: Misaligned buffer address (%p)\n", buffer);
Benoît Thébaudeaucc63b252012-07-20 15:21:08 +0200270
271 while (size >= mydata->sect_size) {
272 ret = disk_read(startsect++, 1, tmpbuf);
273 if (ret != 1) {
274 debug("Error reading data (got %d)\n", ret);
275 return -1;
276 }
277
278 memcpy(buffer, tmpbuf, mydata->sect_size);
279 buffer += mydata->sect_size;
280 size -= mydata->sect_size;
281 }
Ricardo Salveti41130eb2021-09-26 21:36:04 +0300282 } else if (size >= mydata->sect_size) {
283 __u32 bytes_read;
284 __u32 sect_count = size / mydata->sect_size;
Heinrich Schuchardt84ca3052021-01-26 00:14:14 +0100285
Ricardo Salveti41130eb2021-09-26 21:36:04 +0300286 ret = disk_read(startsect, sect_count, buffer);
287 if (ret != sect_count) {
Benoît Thébaudeaucc63b252012-07-20 15:21:08 +0200288 debug("Error reading data (got %d)\n", ret);
289 return -1;
290 }
Ricardo Salveti41130eb2021-09-26 21:36:04 +0300291 bytes_read = sect_count * mydata->sect_size;
292 startsect += sect_count;
293 buffer += bytes_read;
294 size -= bytes_read;
Benoît Thébaudeaucc63b252012-07-20 15:21:08 +0200295 }
296 if (size) {
297 ALLOC_CACHE_ALIGN_BUFFER(__u8, tmpbuf, mydata->sect_size);
298
299 ret = disk_read(startsect, 1, tmpbuf);
Kyle Moffett46236b12011-12-20 07:41:13 +0000300 if (ret != 1) {
301 debug("Error reading data (got %d)\n", ret);
wdenk7205e402003-09-10 22:30:53 +0000302 return -1;
wdenk71f95112003-06-15 22:40:42 +0000303 }
wdenk7205e402003-09-10 22:30:53 +0000304
Benoît Thébaudeaucc63b252012-07-20 15:21:08 +0200305 memcpy(buffer, tmpbuf, size);
wdenk71f95112003-06-15 22:40:42 +0000306 }
307
308 return 0;
309}
310
Heinrich Schuchardtc7a86d12019-09-12 19:19:29 +0200311/**
312 * get_contents() - read from file
313 *
Benoît Thébaudeau1170e632012-09-18 08:14:56 +0000314 * Read at most 'maxsize' bytes from 'pos' in the file associated with 'dentptr'
Heinrich Schuchardtc7a86d12019-09-12 19:19:29 +0200315 * into 'buffer'. Update the number of bytes read in *gotsize or return -1 on
316 * fatal errors.
317 *
318 * @mydata: file system description
319 * @dentprt: directory entry pointer
320 * @pos: position from where to read
321 * @buffer: buffer into which to read
322 * @maxsize: maximum number of bytes to read
323 * @gotsize: number of bytes actually read
324 * Return: -1 on error, otherwise 0
wdenk71f95112003-06-15 22:40:42 +0000325 */
Suriyan Ramasami1ad0b982014-11-17 14:39:35 -0800326static int get_contents(fsdata *mydata, dir_entry *dentptr, loff_t pos,
327 __u8 *buffer, loff_t maxsize, loff_t *gotsize)
wdenk71f95112003-06-15 22:40:42 +0000328{
Suriyan Ramasami1ad0b982014-11-17 14:39:35 -0800329 loff_t filesize = FAT2CPU32(dentptr->size);
Sergei Shtylyovac497772011-08-08 09:38:33 +0000330 unsigned int bytesperclust = mydata->clust_size * mydata->sect_size;
wdenk71f95112003-06-15 22:40:42 +0000331 __u32 curclust = START(dentptr);
wdenk7205e402003-09-10 22:30:53 +0000332 __u32 endclust, newclust;
Suriyan Ramasami1ad0b982014-11-17 14:39:35 -0800333 loff_t actsize;
wdenk71f95112003-06-15 22:40:42 +0000334
Suriyan Ramasami1ad0b982014-11-17 14:39:35 -0800335 *gotsize = 0;
336 debug("Filesize: %llu bytes\n", filesize);
wdenk71f95112003-06-15 22:40:42 +0000337
Benoît Thébaudeau1170e632012-09-18 08:14:56 +0000338 if (pos >= filesize) {
Suriyan Ramasami1ad0b982014-11-17 14:39:35 -0800339 debug("Read position past EOF: %llu\n", pos);
340 return 0;
Benoît Thébaudeau1170e632012-09-18 08:14:56 +0000341 }
342
343 if (maxsize > 0 && filesize > pos + maxsize)
344 filesize = pos + maxsize;
wdenk71f95112003-06-15 22:40:42 +0000345
Suriyan Ramasami1ad0b982014-11-17 14:39:35 -0800346 debug("%llu bytes\n", filesize);
wdenk71f95112003-06-15 22:40:42 +0000347
Wolfgang Denk7385c282010-07-19 11:37:00 +0200348 actsize = bytesperclust;
Benoît Thébaudeau1170e632012-09-18 08:14:56 +0000349
350 /* go to cluster at pos */
351 while (actsize <= pos) {
352 curclust = get_fatent(mydata, curclust);
353 if (CHECK_CLUST(curclust, mydata->fatsize)) {
354 debug("curclust: 0x%x\n", curclust);
Heinrich Schuchardtc7a86d12019-09-12 19:19:29 +0200355 printf("Invalid FAT entry\n");
356 return -1;
Benoît Thébaudeau1170e632012-09-18 08:14:56 +0000357 }
358 actsize += bytesperclust;
359 }
360
361 /* actsize > pos */
362 actsize -= bytesperclust;
363 filesize -= actsize;
364 pos -= actsize;
365
366 /* align to beginning of next cluster if any */
367 if (pos) {
Tien Fong Chee85378742019-02-11 14:56:19 +0800368 __u8 *tmp_buffer;
369
Suriyan Ramasami1ad0b982014-11-17 14:39:35 -0800370 actsize = min(filesize, (loff_t)bytesperclust);
Tien Fong Chee85378742019-02-11 14:56:19 +0800371 tmp_buffer = malloc_cache_aligned(actsize);
372 if (!tmp_buffer) {
373 debug("Error: allocating buffer\n");
Heinrich Schuchardtf1368382019-09-12 19:19:30 +0200374 return -1;
Tien Fong Chee85378742019-02-11 14:56:19 +0800375 }
376
377 if (get_cluster(mydata, curclust, tmp_buffer, actsize) != 0) {
Benoît Thébaudeau1170e632012-09-18 08:14:56 +0000378 printf("Error reading cluster\n");
Tien Fong Chee85378742019-02-11 14:56:19 +0800379 free(tmp_buffer);
Benoît Thébaudeau1170e632012-09-18 08:14:56 +0000380 return -1;
381 }
382 filesize -= actsize;
383 actsize -= pos;
Tien Fong Chee85378742019-02-11 14:56:19 +0800384 memcpy(buffer, tmp_buffer + pos, actsize);
385 free(tmp_buffer);
Suriyan Ramasami1ad0b982014-11-17 14:39:35 -0800386 *gotsize += actsize;
Benoît Thébaudeau1170e632012-09-18 08:14:56 +0000387 if (!filesize)
Suriyan Ramasami1ad0b982014-11-17 14:39:35 -0800388 return 0;
Benoît Thébaudeau1170e632012-09-18 08:14:56 +0000389 buffer += actsize;
390
391 curclust = get_fatent(mydata, curclust);
392 if (CHECK_CLUST(curclust, mydata->fatsize)) {
393 debug("curclust: 0x%x\n", curclust);
Heinrich Schuchardtc7a86d12019-09-12 19:19:29 +0200394 printf("Invalid FAT entry\n");
395 return -1;
Benoît Thébaudeau1170e632012-09-18 08:14:56 +0000396 }
397 }
398
399 actsize = bytesperclust;
Wolfgang Denk7385c282010-07-19 11:37:00 +0200400 endclust = curclust;
401
wdenk71f95112003-06-15 22:40:42 +0000402 do {
wdenk7205e402003-09-10 22:30:53 +0000403 /* search for consecutive clusters */
Wolfgang Denk7385c282010-07-19 11:37:00 +0200404 while (actsize < filesize) {
wdenk7205e402003-09-10 22:30:53 +0000405 newclust = get_fatent(mydata, endclust);
Wolfgang Denk7385c282010-07-19 11:37:00 +0200406 if ((newclust - 1) != endclust)
wdenk7205e402003-09-10 22:30:53 +0000407 goto getit;
michael8ce4e5c2008-03-02 23:33:46 +0100408 if (CHECK_CLUST(newclust, mydata->fatsize)) {
Wolfgang Denk7385c282010-07-19 11:37:00 +0200409 debug("curclust: 0x%x\n", newclust);
Heinrich Schuchardtc7a86d12019-09-12 19:19:29 +0200410 printf("Invalid FAT entry\n");
411 return -1;
wdenk7205e402003-09-10 22:30:53 +0000412 }
Wolfgang Denk7385c282010-07-19 11:37:00 +0200413 endclust = newclust;
414 actsize += bytesperclust;
wdenk7205e402003-09-10 22:30:53 +0000415 }
Wolfgang Denk7385c282010-07-19 11:37:00 +0200416
wdenk7205e402003-09-10 22:30:53 +0000417 /* get remaining bytes */
Wolfgang Denk7385c282010-07-19 11:37:00 +0200418 actsize = filesize;
Benoît Thébaudeau0880e5b2012-07-20 15:21:37 +0200419 if (get_cluster(mydata, curclust, buffer, (int)actsize) != 0) {
Wolfgang Denk7385c282010-07-19 11:37:00 +0200420 printf("Error reading cluster\n");
wdenk7205e402003-09-10 22:30:53 +0000421 return -1;
422 }
Suriyan Ramasami1ad0b982014-11-17 14:39:35 -0800423 *gotsize += actsize;
424 return 0;
wdenk7205e402003-09-10 22:30:53 +0000425getit:
426 if (get_cluster(mydata, curclust, buffer, (int)actsize) != 0) {
Wolfgang Denk7385c282010-07-19 11:37:00 +0200427 printf("Error reading cluster\n");
wdenk7205e402003-09-10 22:30:53 +0000428 return -1;
429 }
Suriyan Ramasami1ad0b982014-11-17 14:39:35 -0800430 *gotsize += (int)actsize;
wdenk7205e402003-09-10 22:30:53 +0000431 filesize -= actsize;
432 buffer += actsize;
Wolfgang Denk7385c282010-07-19 11:37:00 +0200433
wdenk7205e402003-09-10 22:30:53 +0000434 curclust = get_fatent(mydata, endclust);
michael8ce4e5c2008-03-02 23:33:46 +0100435 if (CHECK_CLUST(curclust, mydata->fatsize)) {
Wolfgang Denk7385c282010-07-19 11:37:00 +0200436 debug("curclust: 0x%x\n", curclust);
437 printf("Invalid FAT entry\n");
Heinrich Schuchardtc7a86d12019-09-12 19:19:29 +0200438 return -1;
wdenk71f95112003-06-15 22:40:42 +0000439 }
Wolfgang Denk7385c282010-07-19 11:37:00 +0200440 actsize = bytesperclust;
441 endclust = curclust;
wdenk71f95112003-06-15 22:40:42 +0000442 } while (1);
443}
444
wdenk71f95112003-06-15 22:40:42 +0000445/*
446 * Extract the file name information from 'slotptr' into 'l_name',
447 * starting at l_name[*idx].
448 * Return 1 if terminator (zero byte) is found, 0 otherwise.
449 */
Benoît Thébaudeau9795e072012-07-20 15:18:44 +0200450static int slot2str(dir_slot *slotptr, char *l_name, int *idx)
wdenk71f95112003-06-15 22:40:42 +0000451{
452 int j;
453
454 for (j = 0; j <= 8; j += 2) {
455 l_name[*idx] = slotptr->name0_4[j];
Wolfgang Denk7385c282010-07-19 11:37:00 +0200456 if (l_name[*idx] == 0x00)
457 return 1;
wdenk71f95112003-06-15 22:40:42 +0000458 (*idx)++;
459 }
460 for (j = 0; j <= 10; j += 2) {
461 l_name[*idx] = slotptr->name5_10[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 <= 2; j += 2) {
467 l_name[*idx] = slotptr->name11_12[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
473 return 0;
474}
475
wdenk71f95112003-06-15 22:40:42 +0000476/* Calculate short name checksum */
Heinrich Schuchardt041f0af2021-01-21 00:23:33 +0100477static __u8 mkcksum(struct nameext *nameext)
wdenk71f95112003-06-15 22:40:42 +0000478{
479 int i;
Heinrich Schuchardt041f0af2021-01-21 00:23:33 +0100480 u8 *pos = (void *)nameext;
Wolfgang Denk7385c282010-07-19 11:37:00 +0200481
wdenk71f95112003-06-15 22:40:42 +0000482 __u8 ret = 0;
483
Heinrich Schuchardt041f0af2021-01-21 00:23:33 +0100484 for (i = 0; i < 11; i++)
485 ret = (((ret & 1) << 7) | ((ret & 0xfe) >> 1)) + pos[i];
wdenk71f95112003-06-15 22:40:42 +0000486
487 return ret;
488}
wdenk71f95112003-06-15 22:40:42 +0000489
490/*
Christian Taedcke08f622a2023-11-15 13:44:18 +0100491 * Determine if the FAT type is FAT12 or FAT16
492 *
493 * Based on fat_fill_super() from the Linux kernel's fs/fat/inode.c
494 */
495static int determine_legacy_fat_bits(const boot_sector *bs)
496{
497 u16 fat_start = bs->reserved;
498 u32 dir_start = fat_start + bs->fats * bs->fat_length;
499 u32 rootdir_sectors = get_unaligned_le16(bs->dir_entries) *
500 sizeof(dir_entry) /
501 get_unaligned_le16(bs->sector_size);
502 u32 data_start = dir_start + rootdir_sectors;
503 u16 sectors = get_unaligned_le16(bs->sectors);
504 u32 total_sectors = sectors ? sectors : bs->total_sect;
505 u32 total_clusters = (total_sectors - data_start) /
506 bs->cluster_size;
507
508 return (total_clusters > MAX_FAT12) ? 16 : 12;
509}
510
511/*
Christian Taedckec4899372023-11-15 13:44:20 +0100512 * Determines if the boot sector's media field is valid
513 *
514 * Based on fat_valid_media() from Linux kernel's include/linux/msdos_fs.h
515 */
516static int fat_valid_media(u8 media)
517{
518 return media >= 0xf8 || media == 0xf0;
519}
520
521/*
522 * Determines if the given boot sector is valid
523 *
524 * Based on fat_read_bpb() from the Linux kernel's fs/fat/inode.c
525 */
526static int is_bootsector_valid(const boot_sector *bs)
527{
528 u16 sector_size = get_unaligned_le16(bs->sector_size);
529 u16 dir_per_block = sector_size / sizeof(dir_entry);
530
531 if (!bs->reserved)
532 return 0;
533
534 if (!bs->fats)
535 return 0;
536
537 if (!fat_valid_media(bs->media))
538 return 0;
539
540 if (!is_power_of_2(sector_size) ||
541 sector_size < 512 ||
542 sector_size > 4096)
543 return 0;
544
545 if (!is_power_of_2(bs->cluster_size))
546 return 0;
547
548 if (!bs->fat_length && !bs->fat32_length)
549 return 0;
550
551 if (get_unaligned_le16(bs->dir_entries) & (dir_per_block - 1))
552 return 0;
553
554 return 1;
555}
556
557/*
wdenk71f95112003-06-15 22:40:42 +0000558 * Read boot sector and volume info from a FAT filesystem
559 */
560static int
Benoît Thébaudeau9795e072012-07-20 15:18:44 +0200561read_bootsectandvi(boot_sector *bs, volume_info *volinfo, int *fatsize)
wdenk71f95112003-06-15 22:40:42 +0000562{
Sergei Shtylyovac497772011-08-08 09:38:33 +0000563 __u8 *block;
wdenk71f95112003-06-15 22:40:42 +0000564 volume_info *vistart;
Sergei Shtylyovac497772011-08-08 09:38:33 +0000565 int ret = 0;
566
567 if (cur_dev == NULL) {
568 debug("Error: no device selected\n");
569 return -1;
570 }
571
Tuomas Tynkkynen09fa9642017-10-01 02:25:21 +0300572 block = malloc_cache_aligned(cur_dev->blksz);
Sergei Shtylyovac497772011-08-08 09:38:33 +0000573 if (block == NULL) {
574 debug("Error: allocating block\n");
575 return -1;
576 }
wdenk71f95112003-06-15 22:40:42 +0000577
Benoît Thébaudeau9795e072012-07-20 15:18:44 +0200578 if (disk_read(0, 1, block) < 0) {
Wolfgang Denk7385c282010-07-19 11:37:00 +0200579 debug("Error: reading block\n");
Christian Taedcke33daef42023-11-15 13:44:19 +0100580 ret = -1;
581 goto out_free;
wdenk71f95112003-06-15 22:40:42 +0000582 }
583
584 memcpy(bs, block, sizeof(boot_sector));
Wolfgang Denk7385c282010-07-19 11:37:00 +0200585 bs->reserved = FAT2CPU16(bs->reserved);
586 bs->fat_length = FAT2CPU16(bs->fat_length);
587 bs->secs_track = FAT2CPU16(bs->secs_track);
588 bs->heads = FAT2CPU16(bs->heads);
589 bs->total_sect = FAT2CPU32(bs->total_sect);
wdenk71f95112003-06-15 22:40:42 +0000590
Christian Taedckec4899372023-11-15 13:44:20 +0100591 if (!is_bootsector_valid(bs)) {
592 debug("Error: bootsector is invalid\n");
593 ret = -1;
594 goto out_free;
595 }
596
wdenk71f95112003-06-15 22:40:42 +0000597 /* FAT32 entries */
Christian Taedcke08f622a2023-11-15 13:44:18 +0100598 if (!bs->fat_length && bs->fat32_length) {
wdenk71f95112003-06-15 22:40:42 +0000599 /* Assume FAT32 */
600 bs->fat32_length = FAT2CPU32(bs->fat32_length);
Wolfgang Denk7385c282010-07-19 11:37:00 +0200601 bs->flags = FAT2CPU16(bs->flags);
wdenk71f95112003-06-15 22:40:42 +0000602 bs->root_cluster = FAT2CPU32(bs->root_cluster);
Wolfgang Denk7385c282010-07-19 11:37:00 +0200603 bs->info_sector = FAT2CPU16(bs->info_sector);
604 bs->backup_boot = FAT2CPU16(bs->backup_boot);
605 vistart = (volume_info *)(block + sizeof(boot_sector));
wdenk71f95112003-06-15 22:40:42 +0000606 *fatsize = 32;
607 } else {
Wolfgang Denk7385c282010-07-19 11:37:00 +0200608 vistart = (volume_info *)&(bs->fat32_length);
Christian Taedcke08f622a2023-11-15 13:44:18 +0100609 *fatsize = determine_legacy_fat_bits(bs);
wdenk71f95112003-06-15 22:40:42 +0000610 }
611 memcpy(volinfo, vistart, sizeof(volume_info));
Christian Taedcke33daef42023-11-15 13:44:19 +0100612
613out_free:
Sergei Shtylyovac497772011-08-08 09:38:33 +0000614 free(block);
615 return ret;
wdenk71f95112003-06-15 22:40:42 +0000616}
617
Rob Clark45449982017-09-09 13:15:52 -0400618static int get_fs_info(fsdata *mydata)
wdenk71f95112003-06-15 22:40:42 +0000619{
Wolfgang Denk7385c282010-07-19 11:37:00 +0200620 boot_sector bs;
621 volume_info volinfo;
Rob Clark45449982017-09-09 13:15:52 -0400622 int ret;
wdenk71f95112003-06-15 22:40:42 +0000623
Rob Clark45449982017-09-09 13:15:52 -0400624 ret = read_bootsectandvi(&bs, &volinfo, &mydata->fatsize);
625 if (ret) {
Wolfgang Denk7385c282010-07-19 11:37:00 +0200626 debug("Error: reading boot sector\n");
Rob Clark45449982017-09-09 13:15:52 -0400627 return ret;
Wolfgang Denk7385c282010-07-19 11:37:00 +0200628 }
629
Sergei Shtylyov40e21912011-08-19 09:32:34 +0000630 if (mydata->fatsize == 32) {
Wolfgang Denk7385c282010-07-19 11:37:00 +0200631 mydata->fatlength = bs.fat32_length;
AKASHI Takahirof23101f2018-09-11 15:58:58 +0900632 mydata->total_sect = bs.total_sect;
Sergei Shtylyov40e21912011-08-19 09:32:34 +0000633 } else {
Wolfgang Denk7385c282010-07-19 11:37:00 +0200634 mydata->fatlength = bs.fat_length;
Christian Taedcke24caa692023-11-15 13:44:16 +0100635 mydata->total_sect = get_unaligned_le16(bs.sectors);
AKASHI Takahirof23101f2018-09-11 15:58:58 +0900636 if (!mydata->total_sect)
637 mydata->total_sect = bs.total_sect;
Sergei Shtylyov40e21912011-08-19 09:32:34 +0000638 }
AKASHI Takahirof23101f2018-09-11 15:58:58 +0900639 if (!mydata->total_sect) /* unlikely */
640 mydata->total_sect = (u32)cur_part_info.size;
wdenk71f95112003-06-15 22:40:42 +0000641
AKASHI Takahirof23101f2018-09-11 15:58:58 +0900642 mydata->fats = bs.fats;
Wolfgang Denk7385c282010-07-19 11:37:00 +0200643 mydata->fat_sect = bs.reserved;
wdenk71f95112003-06-15 22:40:42 +0000644
Rob Clark45449982017-09-09 13:15:52 -0400645 mydata->rootdir_sect = mydata->fat_sect + mydata->fatlength * bs.fats;
wdenk71f95112003-06-15 22:40:42 +0000646
Christian Taedcke24caa692023-11-15 13:44:16 +0100647 mydata->sect_size = get_unaligned_le16(bs.sector_size);
Wolfgang Denk7385c282010-07-19 11:37:00 +0200648 mydata->clust_size = bs.cluster_size;
Kyle Moffett46236b12011-12-20 07:41:13 +0000649 if (mydata->sect_size != cur_part_info.blksz) {
Simon Glass78211de2023-07-15 21:39:06 -0600650 log_err("FAT sector size mismatch (fs=%u, dev=%lu)\n",
651 mydata->sect_size, cur_part_info.blksz);
Kyle Moffett46236b12011-12-20 07:41:13 +0000652 return -1;
653 }
Patrick Wildtcd80a4f2018-11-26 15:56:57 +0100654 if (mydata->clust_size == 0) {
Simon Glass78211de2023-07-15 21:39:06 -0600655 log_err("FAT cluster size not set\n");
Patrick Wildtcd80a4f2018-11-26 15:56:57 +0100656 return -1;
657 }
658 if ((unsigned int)mydata->clust_size * mydata->sect_size >
659 MAX_CLUSTSIZE) {
Simon Glass78211de2023-07-15 21:39:06 -0600660 log_err("FAT cluster size too big (cs=%u, max=%u)\n",
661 (uint)mydata->clust_size * mydata->sect_size,
662 MAX_CLUSTSIZE);
Patrick Wildtcd80a4f2018-11-26 15:56:57 +0100663 return -1;
664 }
wdenk71f95112003-06-15 22:40:42 +0000665
Wolfgang Denk7385c282010-07-19 11:37:00 +0200666 if (mydata->fatsize == 32) {
667 mydata->data_begin = mydata->rootdir_sect -
668 (mydata->clust_size * 2);
Rob Clarkc6e3baa2017-09-09 13:15:53 -0400669 mydata->root_cluster = bs.root_cluster;
Wolfgang Denk7385c282010-07-19 11:37:00 +0200670 } else {
Christian Taedcke24caa692023-11-15 13:44:16 +0100671 mydata->rootdir_size = (get_unaligned_le16(bs.dir_entries) *
Rob Clark45449982017-09-09 13:15:52 -0400672 sizeof(dir_entry)) /
673 mydata->sect_size;
Wolfgang Denk7385c282010-07-19 11:37:00 +0200674 mydata->data_begin = mydata->rootdir_sect +
Rob Clark45449982017-09-09 13:15:52 -0400675 mydata->rootdir_size -
Wolfgang Denk7385c282010-07-19 11:37:00 +0200676 (mydata->clust_size * 2);
Anssi Hannula9b183582019-02-27 12:55:57 +0200677
678 /*
679 * The root directory is not cluster-aligned and may be on a
680 * "negative" cluster, this will be handled specially in
Heinrich Schuchardtd236e822020-11-22 09:19:52 +0100681 * fat_next_cluster().
Anssi Hannula9b183582019-02-27 12:55:57 +0200682 */
683 mydata->root_cluster = 0;
wdenk71f95112003-06-15 22:40:42 +0000684 }
wdenk71f95112003-06-15 22:40:42 +0000685
Wolfgang Denk7385c282010-07-19 11:37:00 +0200686 mydata->fatbufnum = -1;
Stefan Brüns3c0ed9c2016-09-11 22:51:40 +0200687 mydata->fat_dirty = 0;
Tuomas Tynkkynen09fa9642017-10-01 02:25:21 +0300688 mydata->fatbuf = malloc_cache_aligned(FATBUFSIZE);
Sergei Shtylyovac497772011-08-08 09:38:33 +0000689 if (mydata->fatbuf == NULL) {
690 debug("Error: allocating memory\n");
691 return -1;
692 }
Wolfgang Denk7385c282010-07-19 11:37:00 +0200693
Wolfgang Denk7385c282010-07-19 11:37:00 +0200694 debug("FAT%d, fat_sect: %d, fatlength: %d\n",
695 mydata->fatsize, mydata->fat_sect, mydata->fatlength);
696 debug("Rootdir begins at cluster: %d, sector: %d, offset: %x\n"
697 "Data begins at: %d\n",
Rob Clarkc6e3baa2017-09-09 13:15:53 -0400698 mydata->root_cluster,
Wolfgang Denk7385c282010-07-19 11:37:00 +0200699 mydata->rootdir_sect,
Sergei Shtylyovac497772011-08-08 09:38:33 +0000700 mydata->rootdir_sect * mydata->sect_size, mydata->data_begin);
701 debug("Sector size: %d, cluster size: %d\n", mydata->sect_size,
702 mydata->clust_size);
Wolfgang Denk7385c282010-07-19 11:37:00 +0200703
Rob Clark45449982017-09-09 13:15:52 -0400704 return 0;
705}
706
Heinrich Schuchardtd236e822020-11-22 09:19:52 +0100707/**
708 * struct fat_itr - directory iterator, to simplify filesystem traversal
Rob Clarkc6e3baa2017-09-09 13:15:53 -0400709 *
710 * Implements an iterator pattern to traverse directory tables,
711 * transparently handling directory tables split across multiple
712 * clusters, and the difference between FAT12/FAT16 root directory
713 * (contiguous) and subdirectories + FAT32 root (chained).
714 *
Heinrich Schuchardtd236e822020-11-22 09:19:52 +0100715 * Rough usage
Rob Clarkc6e3baa2017-09-09 13:15:53 -0400716 *
Heinrich Schuchardtd236e822020-11-22 09:19:52 +0100717 * .. code-block:: c
Rob Clarkc6e3baa2017-09-09 13:15:53 -0400718 *
Heinrich Schuchardtd236e822020-11-22 09:19:52 +0100719 * for (fat_itr_root(&itr, fsdata); fat_itr_next(&itr); ) {
720 * // to traverse down to a subdirectory pointed to by
721 * // current iterator position:
722 * fat_itr_child(&itr, &itr);
723 * }
724 *
725 * For a more complete example, see fat_itr_resolve().
Rob Clarkc6e3baa2017-09-09 13:15:53 -0400726 */
Heinrich Schuchardtd236e822020-11-22 09:19:52 +0100727struct fat_itr {
728 /**
729 * @fsdata: filesystem parameters
730 */
731 fsdata *fsdata;
732 /**
733 * @start_clust: first cluster
734 */
735 unsigned int start_clust;
736 /**
737 * @clust: current cluster
738 */
739 unsigned int clust;
740 /**
741 * @next_clust: next cluster if remaining == 0
742 */
743 unsigned int next_clust;
744 /**
745 * @last_cluster: set if last cluster of directory reached
746 */
747 int last_cluster;
748 /**
749 * @is_root: is iterator at root directory
750 */
751 int is_root;
752 /**
753 * @remaining: remaining directory entries in current cluster
754 */
755 int remaining;
756 /**
757 * @dent: current directory entry
758 */
759 dir_entry *dent;
760 /**
Heinrich Schuchardt89735b42020-11-19 07:44:08 +0100761 * @dent_rem: remaining entries after long name start
762 */
763 int dent_rem;
764 /**
765 * @dent_clust: cluster of long name start
766 */
767 unsigned int dent_clust;
768 /**
769 * @dent_start: first directory entry for long name
770 */
771 dir_entry *dent_start;
772 /**
Heinrich Schuchardtd236e822020-11-22 09:19:52 +0100773 * @l_name: long name of current directory entry
774 */
775 char l_name[VFAT_MAXLEN_BYTES];
776 /**
777 * @s_name: short 8.3 name of current directory entry
778 */
779 char s_name[14];
780 /**
781 * @name: l_name if there is one, else s_name
782 */
783 char *name;
784 /**
785 * @block: buffer for current cluster
786 */
787 u8 block[MAX_CLUSTSIZE] __aligned(ARCH_DMA_MINALIGN);
788};
Rob Clarkc6e3baa2017-09-09 13:15:53 -0400789
790static int fat_itr_isdir(fat_itr *itr);
791
792/**
793 * fat_itr_root() - initialize an iterator to start at the root
794 * directory
795 *
796 * @itr: iterator to initialize
797 * @fsdata: filesystem data for the partition
Heinrich Schuchardt185f8122022-01-19 18:05:50 +0100798 * Return: 0 on success, else -errno
Rob Clarkc6e3baa2017-09-09 13:15:53 -0400799 */
800static int fat_itr_root(fat_itr *itr, fsdata *fsdata)
801{
802 if (get_fs_info(fsdata))
803 return -ENXIO;
804
805 itr->fsdata = fsdata;
Heinrich Schuchardt7557c842020-11-22 16:04:47 +0100806 itr->start_clust = fsdata->root_cluster;
Rob Clarkc6e3baa2017-09-09 13:15:53 -0400807 itr->clust = fsdata->root_cluster;
AKASHI Takahirof528c142018-09-11 15:59:00 +0900808 itr->next_clust = fsdata->root_cluster;
Rob Clarkc6e3baa2017-09-09 13:15:53 -0400809 itr->dent = NULL;
810 itr->remaining = 0;
811 itr->last_cluster = 0;
812 itr->is_root = 1;
813
814 return 0;
815}
816
817/**
818 * fat_itr_child() - initialize an iterator to descend into a sub-
819 * directory
820 *
821 * Initializes 'itr' to iterate the contents of the directory at
822 * the current cursor position of 'parent'. It is an error to
823 * call this if the current cursor of 'parent' is pointing at a
824 * regular file.
825 *
826 * Note that 'itr' and 'parent' can be the same pointer if you do
827 * not need to preserve 'parent' after this call, which is useful
828 * for traversing directory structure to resolve a file/directory.
829 *
830 * @itr: iterator to initialize
831 * @parent: the iterator pointing at a directory entry in the
832 * parent directory of the directory to iterate
833 */
834static void fat_itr_child(fat_itr *itr, fat_itr *parent)
835{
836 fsdata *mydata = parent->fsdata; /* for silly macros */
837 unsigned clustnum = START(parent->dent);
838
839 assert(fat_itr_isdir(parent));
840
841 itr->fsdata = parent->fsdata;
AKASHI Takahiro3a10e072018-09-11 15:59:09 +0900842 itr->start_clust = clustnum;
Rob Clarkc6e3baa2017-09-09 13:15:53 -0400843 if (clustnum > 0) {
844 itr->clust = clustnum;
AKASHI Takahirof528c142018-09-11 15:59:00 +0900845 itr->next_clust = clustnum;
Tuomas Tynkkynen8df87312017-09-25 22:06:33 +0300846 itr->is_root = 0;
Rob Clarkc6e3baa2017-09-09 13:15:53 -0400847 } else {
848 itr->clust = parent->fsdata->root_cluster;
AKASHI Takahirof528c142018-09-11 15:59:00 +0900849 itr->next_clust = parent->fsdata->root_cluster;
Heinrich Schuchardt7557c842020-11-22 16:04:47 +0100850 itr->start_clust = parent->fsdata->root_cluster;
Tuomas Tynkkynen8df87312017-09-25 22:06:33 +0300851 itr->is_root = 1;
Rob Clarkc6e3baa2017-09-09 13:15:53 -0400852 }
853 itr->dent = NULL;
854 itr->remaining = 0;
855 itr->last_cluster = 0;
Rob Clarkc6e3baa2017-09-09 13:15:53 -0400856}
857
Heinrich Schuchardtd236e822020-11-22 09:19:52 +0100858/**
859 * fat_next_cluster() - load next FAT cluster
860 *
861 * The function is used when iterating through directories. It loads the
862 * next cluster with directory entries
863 *
864 * @itr: directory iterator
865 * @nbytes: number of bytes read, 0 on error
866 * Return: first directory entry, NULL on error
867 */
868void *fat_next_cluster(fat_itr *itr, unsigned int *nbytes)
Rob Clarkc6e3baa2017-09-09 13:15:53 -0400869{
Rob Clarkc6e3baa2017-09-09 13:15:53 -0400870 int ret;
871 u32 sect;
Anssi Hannula9b183582019-02-27 12:55:57 +0200872 u32 read_size;
Rob Clarkc6e3baa2017-09-09 13:15:53 -0400873
874 /* have we reached the end? */
875 if (itr->last_cluster)
876 return NULL;
877
Anssi Hannula9b183582019-02-27 12:55:57 +0200878 if (itr->is_root && itr->fsdata->fatsize != 32) {
879 /*
880 * The root directory is located before the data area and
881 * cannot be indexed using the regular unsigned cluster
882 * numbers (it may start at a "negative" cluster or not at a
883 * cluster boundary at all), so consider itr->next_clust to be
884 * a offset in cluster-sized units from the start of rootdir.
885 */
886 unsigned sect_offset = itr->next_clust * itr->fsdata->clust_size;
887 unsigned remaining_sects = itr->fsdata->rootdir_size - sect_offset;
888 sect = itr->fsdata->rootdir_sect + sect_offset;
889 /* do not read past the end of rootdir */
890 read_size = min_t(u32, itr->fsdata->clust_size,
891 remaining_sects);
892 } else {
893 sect = clust_to_sect(itr->fsdata, itr->next_clust);
894 read_size = itr->fsdata->clust_size;
895 }
Rob Clarkc6e3baa2017-09-09 13:15:53 -0400896
Heinrich Schuchardtd0be6762020-12-25 14:30:04 +0100897 log_debug("FAT read(sect=%d), clust_size=%d, read_size=%u\n",
898 sect, itr->fsdata->clust_size, read_size);
Rob Clarkc6e3baa2017-09-09 13:15:53 -0400899
900 /*
901 * NOTE: do_fat_read_at() had complicated logic to deal w/
902 * vfat names that span multiple clusters in the fat16 case,
903 * which get_dentfromdir() probably also needed (and was
904 * missing). And not entirely sure what fat32 didn't have
905 * the same issue.. We solve that by only caring about one
906 * dent at a time and iteratively constructing the vfat long
907 * name.
908 */
Anssi Hannula9b183582019-02-27 12:55:57 +0200909 ret = disk_read(sect, read_size, itr->block);
Rob Clarkc6e3baa2017-09-09 13:15:53 -0400910 if (ret < 0) {
911 debug("Error: reading block\n");
912 return NULL;
913 }
914
Anssi Hannula9b183582019-02-27 12:55:57 +0200915 *nbytes = read_size * itr->fsdata->sect_size;
AKASHI Takahirof528c142018-09-11 15:59:00 +0900916 itr->clust = itr->next_clust;
Rob Clarkc6e3baa2017-09-09 13:15:53 -0400917 if (itr->is_root && itr->fsdata->fatsize != 32) {
AKASHI Takahirof528c142018-09-11 15:59:00 +0900918 itr->next_clust++;
Anssi Hannula9b183582019-02-27 12:55:57 +0200919 if (itr->next_clust * itr->fsdata->clust_size >=
Rob Clarkc6e3baa2017-09-09 13:15:53 -0400920 itr->fsdata->rootdir_size) {
AKASHI Takahirof528c142018-09-11 15:59:00 +0900921 debug("nextclust: 0x%x\n", itr->next_clust);
Rob Clarkc6e3baa2017-09-09 13:15:53 -0400922 itr->last_cluster = 1;
923 }
924 } else {
AKASHI Takahirof528c142018-09-11 15:59:00 +0900925 itr->next_clust = get_fatent(itr->fsdata, itr->next_clust);
926 if (CHECK_CLUST(itr->next_clust, itr->fsdata->fatsize)) {
927 debug("nextclust: 0x%x\n", itr->next_clust);
Rob Clarkc6e3baa2017-09-09 13:15:53 -0400928 itr->last_cluster = 1;
929 }
930 }
931
932 return itr->block;
933}
934
935static dir_entry *next_dent(fat_itr *itr)
936{
937 if (itr->remaining == 0) {
Anssi Hannula9b183582019-02-27 12:55:57 +0200938 unsigned nbytes;
Heinrich Schuchardtd236e822020-11-22 09:19:52 +0100939 struct dir_entry *dent = fat_next_cluster(itr, &nbytes);
Rob Clarkc6e3baa2017-09-09 13:15:53 -0400940
941 /* have we reached the last cluster? */
AKASHI Takahirof528c142018-09-11 15:59:00 +0900942 if (!dent) {
943 /* a sign for no more entries left */
944 itr->dent = NULL;
Rob Clarkc6e3baa2017-09-09 13:15:53 -0400945 return NULL;
AKASHI Takahirof528c142018-09-11 15:59:00 +0900946 }
Rob Clarkc6e3baa2017-09-09 13:15:53 -0400947
948 itr->remaining = nbytes / sizeof(dir_entry) - 1;
949 itr->dent = dent;
950 } else {
951 itr->remaining--;
952 itr->dent++;
953 }
954
955 /* have we reached the last valid entry? */
Heinrich Schuchardt041f0af2021-01-21 00:23:33 +0100956 if (itr->dent->nameext.name[0] == 0)
Rob Clarkc6e3baa2017-09-09 13:15:53 -0400957 return NULL;
958
959 return itr->dent;
960}
961
962static dir_entry *extract_vfat_name(fat_itr *itr)
963{
964 struct dir_entry *dent = itr->dent;
Heinrich Schuchardt041f0af2021-01-21 00:23:33 +0100965 int seqn = itr->dent->nameext.name[0] & ~LAST_LONG_ENTRY_MASK;
Rob Clarkc6e3baa2017-09-09 13:15:53 -0400966 u8 chksum, alias_checksum = ((dir_slot *)dent)->alias_checksum;
967 int n = 0;
968
969 while (seqn--) {
970 char buf[13];
971 int idx = 0;
972
973 slot2str((dir_slot *)dent, buf, &idx);
974
Patrick Wildt8b021bb2018-11-26 15:58:13 +0100975 if (n + idx >= sizeof(itr->l_name))
976 return NULL;
977
Rob Clarkc6e3baa2017-09-09 13:15:53 -0400978 /* shift accumulated long-name up and copy new part in: */
979 memmove(itr->l_name + idx, itr->l_name, n);
980 memcpy(itr->l_name, buf, idx);
981 n += idx;
982
983 dent = next_dent(itr);
984 if (!dent)
985 return NULL;
986 }
987
AKASHI Takahiro39606d42019-11-26 17:29:31 +0900988 /*
989 * We are now at the short file name entry.
990 * If it is marked as deleted, just skip it.
991 */
Heinrich Schuchardt041f0af2021-01-21 00:23:33 +0100992 if (dent->nameext.name[0] == DELETED_FLAG ||
993 dent->nameext.name[0] == aRING)
AKASHI Takahiro39606d42019-11-26 17:29:31 +0900994 return NULL;
995
Rob Clarkc6e3baa2017-09-09 13:15:53 -0400996 itr->l_name[n] = '\0';
997
Heinrich Schuchardt041f0af2021-01-21 00:23:33 +0100998 chksum = mkcksum(&dent->nameext);
Rob Clarkc6e3baa2017-09-09 13:15:53 -0400999
1000 /* checksum mismatch could mean deleted file, etc.. skip it: */
1001 if (chksum != alias_checksum) {
1002 debug("** chksum=%x, alias_checksum=%x, l_name=%s, s_name=%8s.%3s\n",
Heinrich Schuchardt041f0af2021-01-21 00:23:33 +01001003 chksum, alias_checksum, itr->l_name, dent->nameext.name,
1004 dent->nameext.ext);
Rob Clarkc6e3baa2017-09-09 13:15:53 -04001005 return NULL;
1006 }
1007
1008 return dent;
1009}
1010
1011/**
1012 * fat_itr_next() - step to the next entry in a directory
1013 *
1014 * Must be called once on a new iterator before the cursor is valid.
1015 *
1016 * @itr: the iterator to iterate
Heinrich Schuchardt185f8122022-01-19 18:05:50 +01001017 * Return: boolean, 1 if success or 0 if no more entries in the
Rob Clarkc6e3baa2017-09-09 13:15:53 -04001018 * current directory
1019 */
1020static int fat_itr_next(fat_itr *itr)
1021{
1022 dir_entry *dent;
1023
1024 itr->name = NULL;
1025
AKASHI Takahiro39606d42019-11-26 17:29:31 +09001026 /*
1027 * One logical directory entry consist of following slots:
1028 * name[0] Attributes
1029 * dent[N - N]: LFN[N - 1] N|0x40 ATTR_VFAT
1030 * ...
1031 * dent[N - 2]: LFN[1] 2 ATTR_VFAT
1032 * dent[N - 1]: LFN[0] 1 ATTR_VFAT
1033 * dent[N]: SFN ATTR_ARCH
1034 */
1035
Rob Clarkc6e3baa2017-09-09 13:15:53 -04001036 while (1) {
1037 dent = next_dent(itr);
Heinrich Schuchardt89735b42020-11-19 07:44:08 +01001038 if (!dent) {
1039 itr->dent_start = NULL;
Rob Clarkc6e3baa2017-09-09 13:15:53 -04001040 return 0;
Heinrich Schuchardt89735b42020-11-19 07:44:08 +01001041 }
1042 itr->dent_rem = itr->remaining;
1043 itr->dent_start = itr->dent;
1044 itr->dent_clust = itr->clust;
Heinrich Schuchardt041f0af2021-01-21 00:23:33 +01001045 if (dent->nameext.name[0] == DELETED_FLAG)
Rob Clarkc6e3baa2017-09-09 13:15:53 -04001046 continue;
1047
1048 if (dent->attr & ATTR_VOLUME) {
Tuomas Tynkkynen8bad6cb2018-01-05 02:45:21 +02001049 if ((dent->attr & ATTR_VFAT) == ATTR_VFAT &&
Heinrich Schuchardt041f0af2021-01-21 00:23:33 +01001050 (dent->nameext.name[0] & LAST_LONG_ENTRY_MASK)) {
AKASHI Takahiro39606d42019-11-26 17:29:31 +09001051 /* long file name */
Rob Clarkc6e3baa2017-09-09 13:15:53 -04001052 dent = extract_vfat_name(itr);
AKASHI Takahiro39606d42019-11-26 17:29:31 +09001053 /*
1054 * If succeeded, dent has a valid short file
1055 * name entry for the current entry.
1056 * If failed, itr points to a current bogus
1057 * entry. So after fetching a next one,
1058 * it may have a short file name entry
1059 * for this bogus entry so that we can still
1060 * check for a short name.
1061 */
Rob Clarkc6e3baa2017-09-09 13:15:53 -04001062 if (!dent)
1063 continue;
1064 itr->name = itr->l_name;
1065 break;
1066 } else {
1067 /* Volume label or VFAT entry, skip */
1068 continue;
1069 }
Christian Gmeiner1788a962020-06-09 09:09:07 +02001070 }
Rob Clarkc6e3baa2017-09-09 13:15:53 -04001071
AKASHI Takahiro39606d42019-11-26 17:29:31 +09001072 /* short file name */
Rob Clarkc6e3baa2017-09-09 13:15:53 -04001073 break;
1074 }
1075
1076 get_name(dent, itr->s_name);
1077 if (!itr->name)
1078 itr->name = itr->s_name;
1079
1080 return 1;
1081}
1082
1083/**
1084 * fat_itr_isdir() - is current cursor position pointing to a directory
1085 *
1086 * @itr: the iterator
Heinrich Schuchardt185f8122022-01-19 18:05:50 +01001087 * Return: true if cursor is at a directory
Rob Clarkc6e3baa2017-09-09 13:15:53 -04001088 */
1089static int fat_itr_isdir(fat_itr *itr)
1090{
1091 return !!(itr->dent->attr & ATTR_DIR);
1092}
1093
1094/*
1095 * Helpers:
1096 */
1097
1098#define TYPE_FILE 0x1
1099#define TYPE_DIR 0x2
1100#define TYPE_ANY (TYPE_FILE | TYPE_DIR)
1101
1102/**
1103 * fat_itr_resolve() - traverse directory structure to resolve the
1104 * requested path.
1105 *
1106 * Traverse directory structure to the requested path. If the specified
1107 * path is to a directory, this will descend into the directory and
1108 * leave it iterator at the start of the directory. If the path is to a
1109 * file, it will leave the iterator in the parent directory with current
1110 * cursor at file's entry in the directory.
1111 *
1112 * @itr: iterator initialized to root
1113 * @path: the requested path
1114 * @type: bitmask of allowable file types
Heinrich Schuchardt185f8122022-01-19 18:05:50 +01001115 * Return: 0 on success or -errno
Rob Clarkc6e3baa2017-09-09 13:15:53 -04001116 */
1117static int fat_itr_resolve(fat_itr *itr, const char *path, unsigned type)
1118{
1119 const char *next;
1120
1121 /* chomp any extra leading slashes: */
1122 while (path[0] && ISDIRDELIM(path[0]))
1123 path++;
1124
1125 /* are we at the end? */
1126 if (strlen(path) == 0) {
1127 if (!(type & TYPE_DIR))
1128 return -ENOENT;
1129 return 0;
1130 }
1131
1132 /* find length of next path entry: */
1133 next = path;
1134 while (next[0] && !ISDIRDELIM(next[0]))
1135 next++;
1136
AKASHI Takahirob94b6be2018-09-11 15:58:59 +09001137 if (itr->is_root) {
1138 /* root dir doesn't have "." nor ".." */
1139 if ((((next - path) == 1) && !strncmp(path, ".", 1)) ||
1140 (((next - path) == 2) && !strncmp(path, "..", 2))) {
1141 /* point back to itself */
1142 itr->clust = itr->fsdata->root_cluster;
AKASHI Takahirof528c142018-09-11 15:59:00 +09001143 itr->next_clust = itr->fsdata->root_cluster;
Heinrich Schuchardt7557c842020-11-22 16:04:47 +01001144 itr->start_clust = itr->fsdata->root_cluster;
AKASHI Takahirob94b6be2018-09-11 15:58:59 +09001145 itr->dent = NULL;
1146 itr->remaining = 0;
1147 itr->last_cluster = 0;
1148
1149 if (next[0] == 0) {
1150 if (type & TYPE_DIR)
1151 return 0;
1152 else
1153 return -ENOENT;
1154 }
1155
1156 return fat_itr_resolve(itr, next, type);
1157 }
1158 }
1159
Rob Clarkc6e3baa2017-09-09 13:15:53 -04001160 while (fat_itr_next(itr)) {
1161 int match = 0;
1162 unsigned n = max(strlen(itr->name), (size_t)(next - path));
1163
1164 /* check both long and short name: */
1165 if (!strncasecmp(path, itr->name, n))
1166 match = 1;
1167 else if (itr->name != itr->s_name &&
1168 !strncasecmp(path, itr->s_name, n))
1169 match = 1;
1170
1171 if (!match)
1172 continue;
1173
1174 if (fat_itr_isdir(itr)) {
1175 /* recurse into directory: */
1176 fat_itr_child(itr, itr);
1177 return fat_itr_resolve(itr, next, type);
1178 } else if (next[0]) {
1179 /*
1180 * If next is not empty then we have a case
1181 * like: /path/to/realfile/nonsense
1182 */
1183 debug("bad trailing path: %s\n", next);
1184 return -ENOENT;
1185 } else if (!(type & TYPE_FILE)) {
1186 return -ENOTDIR;
1187 } else {
1188 return 0;
1189 }
1190 }
1191
1192 return -ENOENT;
1193}
1194
Benoît Thébaudeau9795e072012-07-20 15:18:44 +02001195int file_fat_detectfs(void)
wdenk71f95112003-06-15 22:40:42 +00001196{
Wolfgang Denk7385c282010-07-19 11:37:00 +02001197 boot_sector bs;
1198 volume_info volinfo;
1199 int fatsize;
1200 char vol_label[12];
wdenk71f95112003-06-15 22:40:42 +00001201
Wolfgang Denk7385c282010-07-19 11:37:00 +02001202 if (cur_dev == NULL) {
wdenk7205e402003-09-10 22:30:53 +00001203 printf("No current device\n");
1204 return 1;
1205 }
Wolfgang Denk7385c282010-07-19 11:37:00 +02001206
Simon Glassa51eb8d2022-08-11 19:34:45 -06001207 if (blk_enabled()) {
Simon Glass8149b152022-09-17 09:00:09 -06001208 printf("Interface: %s\n", blk_get_uclass_name(cur_dev->uclass_id));
Heinrich Schuchardt02079eb2021-01-25 12:53:14 +01001209 printf(" Device %d: ", cur_dev->devnum);
1210 dev_print(cur_dev);
wdenk7205e402003-09-10 22:30:53 +00001211 }
Wolfgang Denk7385c282010-07-19 11:37:00 +02001212
Wolfgang Denk7385c282010-07-19 11:37:00 +02001213 if (read_bootsectandvi(&bs, &volinfo, &fatsize)) {
wdenk7205e402003-09-10 22:30:53 +00001214 printf("\nNo valid FAT fs found\n");
1215 return 1;
1216 }
Wolfgang Denk7385c282010-07-19 11:37:00 +02001217
1218 memcpy(vol_label, volinfo.volume_label, 11);
wdenk7205e402003-09-10 22:30:53 +00001219 vol_label[11] = '\0';
Wolfgang Denk7385c282010-07-19 11:37:00 +02001220
Christian Taedcke08f622a2023-11-15 13:44:18 +01001221 printf("Filesystem: FAT%d \"%s\"\n", fatsize, vol_label);
Wolfgang Denk7385c282010-07-19 11:37:00 +02001222
wdenk7205e402003-09-10 22:30:53 +00001223 return 0;
wdenk71f95112003-06-15 22:40:42 +00001224}
1225
Stephen Warrenb7b5f312014-02-03 13:21:10 -07001226int fat_exists(const char *filename)
1227{
Rob Clark8eafae22017-09-09 13:15:54 -04001228 fsdata fsdata;
Tom Rini24600982017-09-22 07:37:43 -04001229 fat_itr *itr;
Suriyan Ramasami1ad0b982014-11-17 14:39:35 -08001230 int ret;
Suriyan Ramasami1ad0b982014-11-17 14:39:35 -08001231
Tuomas Tynkkynen09fa9642017-10-01 02:25:21 +03001232 itr = malloc_cache_aligned(sizeof(fat_itr));
Tuomas Tynkkynenaf609e32017-10-01 02:25:22 +03001233 if (!itr)
1234 return 0;
Rob Clark8eafae22017-09-09 13:15:54 -04001235 ret = fat_itr_root(itr, &fsdata);
1236 if (ret)
Tuomas Tynkkynenaf609e32017-10-01 02:25:22 +03001237 goto out;
Rob Clark8eafae22017-09-09 13:15:54 -04001238
1239 ret = fat_itr_resolve(itr, filename, TYPE_ANY);
Rob Clark725ffdb2017-09-12 16:40:01 -04001240 free(fsdata.fatbuf);
Tuomas Tynkkynenaf609e32017-10-01 02:25:22 +03001241out:
Tom Rini24600982017-09-22 07:37:43 -04001242 free(itr);
Suriyan Ramasami1ad0b982014-11-17 14:39:35 -08001243 return ret == 0;
Stephen Warrenb7b5f312014-02-03 13:21:10 -07001244}
1245
Heinrich Schuchardt13c11c62021-05-15 22:06:16 +02001246/**
1247 * fat2rtc() - convert FAT time stamp to RTC file stamp
1248 *
1249 * @date: FAT date
1250 * @time: FAT time
1251 * @tm: RTC time stamp
1252 */
1253static void __maybe_unused fat2rtc(u16 date, u16 time, struct rtc_time *tm)
1254{
1255 tm->tm_mday = date & 0x1f;
Heinrich Schuchardt3c1bc9f2024-04-09 20:04:56 +02001256 tm->tm_mon = (date & 0x1e0) >> 5;
Heinrich Schuchardt13c11c62021-05-15 22:06:16 +02001257 tm->tm_year = (date >> 9) + 1980;
1258
1259 tm->tm_sec = (time & 0x1f) << 1;
1260 tm->tm_min = (time & 0x7e0) >> 5;
1261 tm->tm_hour = time >> 11;
1262
1263 rtc_calc_weekday(tm);
1264 tm->tm_yday = 0;
1265 tm->tm_isdst = 0;
1266}
1267
Suriyan Ramasamid455d872014-11-17 14:39:38 -08001268int fat_size(const char *filename, loff_t *size)
Stephen Warrencf659812014-06-11 12:47:26 -06001269{
Rob Clark8eafae22017-09-09 13:15:54 -04001270 fsdata fsdata;
Tom Rini24600982017-09-22 07:37:43 -04001271 fat_itr *itr;
Rob Clark8eafae22017-09-09 13:15:54 -04001272 int ret;
1273
Tuomas Tynkkynen09fa9642017-10-01 02:25:21 +03001274 itr = malloc_cache_aligned(sizeof(fat_itr));
Tuomas Tynkkynenaf609e32017-10-01 02:25:22 +03001275 if (!itr)
1276 return -ENOMEM;
Rob Clark8eafae22017-09-09 13:15:54 -04001277 ret = fat_itr_root(itr, &fsdata);
1278 if (ret)
Tuomas Tynkkynenaf609e32017-10-01 02:25:22 +03001279 goto out_free_itr;
Rob Clark8eafae22017-09-09 13:15:54 -04001280
1281 ret = fat_itr_resolve(itr, filename, TYPE_FILE);
1282 if (ret) {
1283 /*
1284 * Directories don't have size, but fs_size() is not
1285 * expected to fail if passed a directory path:
1286 */
Rob Clark725ffdb2017-09-12 16:40:01 -04001287 free(fsdata.fatbuf);
Andrew F. Davisd0cd30e2019-05-16 09:34:31 -05001288 ret = fat_itr_root(itr, &fsdata);
1289 if (ret)
1290 goto out_free_itr;
1291 ret = fat_itr_resolve(itr, filename, TYPE_DIR);
1292 if (!ret)
Rob Clark8eafae22017-09-09 13:15:54 -04001293 *size = 0;
Tuomas Tynkkynenaf609e32017-10-01 02:25:22 +03001294 goto out_free_both;
Rob Clark8eafae22017-09-09 13:15:54 -04001295 }
1296
1297 *size = FAT2CPU32(itr->dent->size);
Tuomas Tynkkynenaf609e32017-10-01 02:25:22 +03001298out_free_both:
Rob Clark725ffdb2017-09-12 16:40:01 -04001299 free(fsdata.fatbuf);
Tuomas Tynkkynenaf609e32017-10-01 02:25:22 +03001300out_free_itr:
Tom Rini24600982017-09-22 07:37:43 -04001301 free(itr);
Rob Clark725ffdb2017-09-12 16:40:01 -04001302 return ret;
Stephen Warrencf659812014-06-11 12:47:26 -06001303}
1304
Heinrich Schuchardtde943352023-01-19 15:37:40 +01001305int fat_read_file(const char *filename, void *buf, loff_t offset, loff_t len,
1306 loff_t *actread)
wdenk71f95112003-06-15 22:40:42 +00001307{
Rob Clark8eafae22017-09-09 13:15:54 -04001308 fsdata fsdata;
Tom Rini24600982017-09-22 07:37:43 -04001309 fat_itr *itr;
Rob Clark8eafae22017-09-09 13:15:54 -04001310 int ret;
1311
Tuomas Tynkkynen09fa9642017-10-01 02:25:21 +03001312 itr = malloc_cache_aligned(sizeof(fat_itr));
Tuomas Tynkkynenaf609e32017-10-01 02:25:22 +03001313 if (!itr)
1314 return -ENOMEM;
Rob Clark8eafae22017-09-09 13:15:54 -04001315 ret = fat_itr_root(itr, &fsdata);
1316 if (ret)
Tuomas Tynkkynenaf609e32017-10-01 02:25:22 +03001317 goto out_free_itr;
Rob Clark8eafae22017-09-09 13:15:54 -04001318
1319 ret = fat_itr_resolve(itr, filename, TYPE_FILE);
1320 if (ret)
Tuomas Tynkkynenaf609e32017-10-01 02:25:22 +03001321 goto out_free_both;
Rob Clark8eafae22017-09-09 13:15:54 -04001322
Heinrich Schuchardtde943352023-01-19 15:37:40 +01001323 debug("reading %s at pos %llu\n", filename, offset);
Tien Fong Cheee48485f2019-02-11 14:56:20 +08001324
1325 /* For saving default max clustersize memory allocated to malloc pool */
1326 dir_entry *dentptr = itr->dent;
1327
Heinrich Schuchardtde943352023-01-19 15:37:40 +01001328 ret = get_contents(&fsdata, dentptr, offset, buf, len, actread);
Rob Clark725ffdb2017-09-12 16:40:01 -04001329
Tuomas Tynkkynenaf609e32017-10-01 02:25:22 +03001330out_free_both:
Rob Clark725ffdb2017-09-12 16:40:01 -04001331 free(fsdata.fatbuf);
Tuomas Tynkkynenaf609e32017-10-01 02:25:22 +03001332out_free_itr:
Tom Rini24600982017-09-22 07:37:43 -04001333 free(itr);
Rob Clark725ffdb2017-09-12 16:40:01 -04001334 return ret;
Benoît Thébaudeau1170e632012-09-18 08:14:56 +00001335}
1336
Suriyan Ramasami1ad0b982014-11-17 14:39:35 -08001337int file_fat_read(const char *filename, void *buffer, int maxsize)
Benoît Thébaudeau1170e632012-09-18 08:14:56 +00001338{
Suriyan Ramasami1ad0b982014-11-17 14:39:35 -08001339 loff_t actread;
1340 int ret;
1341
Heinrich Schuchardtde943352023-01-19 15:37:40 +01001342 ret = fat_read_file(filename, buffer, 0, maxsize, &actread);
Suriyan Ramasami1ad0b982014-11-17 14:39:35 -08001343 if (ret)
1344 return ret;
1345 else
1346 return actread;
wdenk71f95112003-06-15 22:40:42 +00001347}
Simon Glasse6d52412012-12-26 09:53:33 +00001348
Rob Clark1f403662017-09-09 13:15:56 -04001349typedef struct {
1350 struct fs_dir_stream parent;
1351 struct fs_dirent dirent;
1352 fsdata fsdata;
1353 fat_itr itr;
1354} fat_dir;
1355
1356int fat_opendir(const char *filename, struct fs_dir_stream **dirsp)
1357{
Neil Armstrong34dd8532017-11-24 09:54:41 +01001358 fat_dir *dir;
Rob Clark1f403662017-09-09 13:15:56 -04001359 int ret;
1360
Neil Armstrong34dd8532017-11-24 09:54:41 +01001361 dir = malloc_cache_aligned(sizeof(*dir));
Rob Clark1f403662017-09-09 13:15:56 -04001362 if (!dir)
1363 return -ENOMEM;
Neil Armstrong34dd8532017-11-24 09:54:41 +01001364 memset(dir, 0, sizeof(*dir));
Rob Clark1f403662017-09-09 13:15:56 -04001365
1366 ret = fat_itr_root(&dir->itr, &dir->fsdata);
1367 if (ret)
Tuomas Tynkkynenaf609e32017-10-01 02:25:22 +03001368 goto fail_free_dir;
Rob Clark1f403662017-09-09 13:15:56 -04001369
1370 ret = fat_itr_resolve(&dir->itr, filename, TYPE_DIR);
1371 if (ret)
Tuomas Tynkkynenaf609e32017-10-01 02:25:22 +03001372 goto fail_free_both;
Rob Clark1f403662017-09-09 13:15:56 -04001373
1374 *dirsp = (struct fs_dir_stream *)dir;
1375 return 0;
1376
Tuomas Tynkkynenaf609e32017-10-01 02:25:22 +03001377fail_free_both:
Rob Clark725ffdb2017-09-12 16:40:01 -04001378 free(dir->fsdata.fatbuf);
Tuomas Tynkkynenaf609e32017-10-01 02:25:22 +03001379fail_free_dir:
Rob Clark1f403662017-09-09 13:15:56 -04001380 free(dir);
1381 return ret;
1382}
1383
1384int fat_readdir(struct fs_dir_stream *dirs, struct fs_dirent **dentp)
1385{
1386 fat_dir *dir = (fat_dir *)dirs;
1387 struct fs_dirent *dent = &dir->dirent;
1388
1389 if (!fat_itr_next(&dir->itr))
1390 return -ENOENT;
1391
1392 memset(dent, 0, sizeof(*dent));
1393 strcpy(dent->name, dir->itr.name);
Heinrich Schuchardt13c11c62021-05-15 22:06:16 +02001394 if (CONFIG_IS_ENABLED(EFI_LOADER)) {
1395 dent->attr = dir->itr.dent->attr;
1396 fat2rtc(le16_to_cpu(dir->itr.dent->cdate),
1397 le16_to_cpu(dir->itr.dent->ctime), &dent->create_time);
1398 fat2rtc(le16_to_cpu(dir->itr.dent->date),
1399 le16_to_cpu(dir->itr.dent->time), &dent->change_time);
1400 fat2rtc(le16_to_cpu(dir->itr.dent->adate),
1401 0, &dent->access_time);
1402 }
Rob Clark1f403662017-09-09 13:15:56 -04001403 if (fat_itr_isdir(&dir->itr)) {
1404 dent->type = FS_DT_DIR;
1405 } else {
1406 dent->type = FS_DT_REG;
1407 dent->size = FAT2CPU32(dir->itr.dent->size);
1408 }
1409
1410 *dentp = dent;
1411
1412 return 0;
1413}
1414
1415void fat_closedir(struct fs_dir_stream *dirs)
1416{
1417 fat_dir *dir = (fat_dir *)dirs;
Rob Clark725ffdb2017-09-12 16:40:01 -04001418 free(dir->fsdata.fatbuf);
Rob Clark1f403662017-09-09 13:15:56 -04001419 free(dir);
1420}
1421
Simon Glasse6d52412012-12-26 09:53:33 +00001422void fat_close(void)
1423{
1424}
Heinrich Schuchardtc0029e42020-12-31 00:38:13 +01001425
1426int fat_uuid(char *uuid_str)
1427{
1428 boot_sector bs;
1429 volume_info volinfo;
1430 int fatsize;
1431 int ret;
1432 u8 *id;
1433
1434 ret = read_bootsectandvi(&bs, &volinfo, &fatsize);
1435 if (ret)
1436 return ret;
1437
1438 id = volinfo.volume_id;
1439 sprintf(uuid_str, "%02X%02X-%02X%02X", id[3], id[2], id[1], id[0]);
1440
1441 return 0;
1442}