blob: c368c3b076589376f8eb65abcdd4f4825bc33465 [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
wdenk71f95112003-06-15 22:40:42 +000013#include <common.h>
Simon Glass2a981dc2016-02-29 15:25:52 -070014#include <blk.h>
wdenk71f95112003-06-15 22:40:42 +000015#include <config.h>
Sergei Shtylyovac497772011-08-08 09:38:33 +000016#include <exports.h>
wdenk71f95112003-06-15 22:40:42 +000017#include <fat.h>
Rob Clark1f403662017-09-09 13:15:56 -040018#include <fs.h>
Simon Glassf7ae49f2020-05-10 11:40:05 -060019#include <log.h>
wdenk71f95112003-06-15 22:40:42 +000020#include <asm/byteorder.h>
Christian Taedcke24caa692023-11-15 13:44:16 +010021#include <asm/unaligned.h>
wdenk7205e402003-09-10 22:30:53 +000022#include <part.h>
Eric Nelson9a800ac2012-04-11 04:08:53 +000023#include <malloc.h>
Simon Glasscf92e052015-09-02 17:24:58 -060024#include <memalign.h>
Simon Glass90526e92020-05-10 11:39:56 -060025#include <asm/cache.h>
Eric Nelson9a800ac2012-04-11 04:08:53 +000026#include <linux/compiler.h>
Richard Genoudfb7e16c2012-12-13 00:47:36 +000027#include <linux/ctype.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/*
wdenk71f95112003-06-15 22:40:42 +0000512 * Read boot sector and volume info from a FAT filesystem
513 */
514static int
Benoît Thébaudeau9795e072012-07-20 15:18:44 +0200515read_bootsectandvi(boot_sector *bs, volume_info *volinfo, int *fatsize)
wdenk71f95112003-06-15 22:40:42 +0000516{
Sergei Shtylyovac497772011-08-08 09:38:33 +0000517 __u8 *block;
wdenk71f95112003-06-15 22:40:42 +0000518 volume_info *vistart;
Sergei Shtylyovac497772011-08-08 09:38:33 +0000519 int ret = 0;
520
521 if (cur_dev == NULL) {
522 debug("Error: no device selected\n");
523 return -1;
524 }
525
Tuomas Tynkkynen09fa9642017-10-01 02:25:21 +0300526 block = malloc_cache_aligned(cur_dev->blksz);
Sergei Shtylyovac497772011-08-08 09:38:33 +0000527 if (block == NULL) {
528 debug("Error: allocating block\n");
529 return -1;
530 }
wdenk71f95112003-06-15 22:40:42 +0000531
Benoît Thébaudeau9795e072012-07-20 15:18:44 +0200532 if (disk_read(0, 1, block) < 0) {
Wolfgang Denk7385c282010-07-19 11:37:00 +0200533 debug("Error: reading block\n");
Sergei Shtylyovac497772011-08-08 09:38:33 +0000534 goto fail;
wdenk71f95112003-06-15 22:40:42 +0000535 }
536
537 memcpy(bs, block, sizeof(boot_sector));
Wolfgang Denk7385c282010-07-19 11:37:00 +0200538 bs->reserved = FAT2CPU16(bs->reserved);
539 bs->fat_length = FAT2CPU16(bs->fat_length);
540 bs->secs_track = FAT2CPU16(bs->secs_track);
541 bs->heads = FAT2CPU16(bs->heads);
542 bs->total_sect = FAT2CPU32(bs->total_sect);
wdenk71f95112003-06-15 22:40:42 +0000543
544 /* FAT32 entries */
Christian Taedcke08f622a2023-11-15 13:44:18 +0100545 if (!bs->fat_length && bs->fat32_length) {
wdenk71f95112003-06-15 22:40:42 +0000546 /* Assume FAT32 */
547 bs->fat32_length = FAT2CPU32(bs->fat32_length);
Wolfgang Denk7385c282010-07-19 11:37:00 +0200548 bs->flags = FAT2CPU16(bs->flags);
wdenk71f95112003-06-15 22:40:42 +0000549 bs->root_cluster = FAT2CPU32(bs->root_cluster);
Wolfgang Denk7385c282010-07-19 11:37:00 +0200550 bs->info_sector = FAT2CPU16(bs->info_sector);
551 bs->backup_boot = FAT2CPU16(bs->backup_boot);
552 vistart = (volume_info *)(block + sizeof(boot_sector));
wdenk71f95112003-06-15 22:40:42 +0000553 *fatsize = 32;
554 } else {
Wolfgang Denk7385c282010-07-19 11:37:00 +0200555 vistart = (volume_info *)&(bs->fat32_length);
Christian Taedcke08f622a2023-11-15 13:44:18 +0100556 *fatsize = determine_legacy_fat_bits(bs);
wdenk71f95112003-06-15 22:40:42 +0000557 }
558 memcpy(volinfo, vistart, sizeof(volume_info));
Christian Taedcke08f622a2023-11-15 13:44:18 +0100559 goto exit;
Sergei Shtylyovac497772011-08-08 09:38:33 +0000560fail:
561 ret = -1;
562exit:
563 free(block);
564 return ret;
wdenk71f95112003-06-15 22:40:42 +0000565}
566
Rob Clark45449982017-09-09 13:15:52 -0400567static int get_fs_info(fsdata *mydata)
wdenk71f95112003-06-15 22:40:42 +0000568{
Wolfgang Denk7385c282010-07-19 11:37:00 +0200569 boot_sector bs;
570 volume_info volinfo;
Rob Clark45449982017-09-09 13:15:52 -0400571 int ret;
wdenk71f95112003-06-15 22:40:42 +0000572
Rob Clark45449982017-09-09 13:15:52 -0400573 ret = read_bootsectandvi(&bs, &volinfo, &mydata->fatsize);
574 if (ret) {
Wolfgang Denk7385c282010-07-19 11:37:00 +0200575 debug("Error: reading boot sector\n");
Rob Clark45449982017-09-09 13:15:52 -0400576 return ret;
Wolfgang Denk7385c282010-07-19 11:37:00 +0200577 }
578
Sergei Shtylyov40e21912011-08-19 09:32:34 +0000579 if (mydata->fatsize == 32) {
Wolfgang Denk7385c282010-07-19 11:37:00 +0200580 mydata->fatlength = bs.fat32_length;
AKASHI Takahirof23101f2018-09-11 15:58:58 +0900581 mydata->total_sect = bs.total_sect;
Sergei Shtylyov40e21912011-08-19 09:32:34 +0000582 } else {
Wolfgang Denk7385c282010-07-19 11:37:00 +0200583 mydata->fatlength = bs.fat_length;
Christian Taedcke24caa692023-11-15 13:44:16 +0100584 mydata->total_sect = get_unaligned_le16(bs.sectors);
AKASHI Takahirof23101f2018-09-11 15:58:58 +0900585 if (!mydata->total_sect)
586 mydata->total_sect = bs.total_sect;
Sergei Shtylyov40e21912011-08-19 09:32:34 +0000587 }
AKASHI Takahirof23101f2018-09-11 15:58:58 +0900588 if (!mydata->total_sect) /* unlikely */
589 mydata->total_sect = (u32)cur_part_info.size;
wdenk71f95112003-06-15 22:40:42 +0000590
AKASHI Takahirof23101f2018-09-11 15:58:58 +0900591 mydata->fats = bs.fats;
Wolfgang Denk7385c282010-07-19 11:37:00 +0200592 mydata->fat_sect = bs.reserved;
wdenk71f95112003-06-15 22:40:42 +0000593
Rob Clark45449982017-09-09 13:15:52 -0400594 mydata->rootdir_sect = mydata->fat_sect + mydata->fatlength * bs.fats;
wdenk71f95112003-06-15 22:40:42 +0000595
Christian Taedcke24caa692023-11-15 13:44:16 +0100596 mydata->sect_size = get_unaligned_le16(bs.sector_size);
Wolfgang Denk7385c282010-07-19 11:37:00 +0200597 mydata->clust_size = bs.cluster_size;
Kyle Moffett46236b12011-12-20 07:41:13 +0000598 if (mydata->sect_size != cur_part_info.blksz) {
Simon Glass78211de2023-07-15 21:39:06 -0600599 log_err("FAT sector size mismatch (fs=%u, dev=%lu)\n",
600 mydata->sect_size, cur_part_info.blksz);
Kyle Moffett46236b12011-12-20 07:41:13 +0000601 return -1;
602 }
Patrick Wildtcd80a4f2018-11-26 15:56:57 +0100603 if (mydata->clust_size == 0) {
Simon Glass78211de2023-07-15 21:39:06 -0600604 log_err("FAT cluster size not set\n");
Patrick Wildtcd80a4f2018-11-26 15:56:57 +0100605 return -1;
606 }
607 if ((unsigned int)mydata->clust_size * mydata->sect_size >
608 MAX_CLUSTSIZE) {
Simon Glass78211de2023-07-15 21:39:06 -0600609 log_err("FAT cluster size too big (cs=%u, max=%u)\n",
610 (uint)mydata->clust_size * mydata->sect_size,
611 MAX_CLUSTSIZE);
Patrick Wildtcd80a4f2018-11-26 15:56:57 +0100612 return -1;
613 }
wdenk71f95112003-06-15 22:40:42 +0000614
Wolfgang Denk7385c282010-07-19 11:37:00 +0200615 if (mydata->fatsize == 32) {
616 mydata->data_begin = mydata->rootdir_sect -
617 (mydata->clust_size * 2);
Rob Clarkc6e3baa2017-09-09 13:15:53 -0400618 mydata->root_cluster = bs.root_cluster;
Wolfgang Denk7385c282010-07-19 11:37:00 +0200619 } else {
Christian Taedcke24caa692023-11-15 13:44:16 +0100620 mydata->rootdir_size = (get_unaligned_le16(bs.dir_entries) *
Rob Clark45449982017-09-09 13:15:52 -0400621 sizeof(dir_entry)) /
622 mydata->sect_size;
Wolfgang Denk7385c282010-07-19 11:37:00 +0200623 mydata->data_begin = mydata->rootdir_sect +
Rob Clark45449982017-09-09 13:15:52 -0400624 mydata->rootdir_size -
Wolfgang Denk7385c282010-07-19 11:37:00 +0200625 (mydata->clust_size * 2);
Anssi Hannula9b183582019-02-27 12:55:57 +0200626
627 /*
628 * The root directory is not cluster-aligned and may be on a
629 * "negative" cluster, this will be handled specially in
Heinrich Schuchardtd236e822020-11-22 09:19:52 +0100630 * fat_next_cluster().
Anssi Hannula9b183582019-02-27 12:55:57 +0200631 */
632 mydata->root_cluster = 0;
wdenk71f95112003-06-15 22:40:42 +0000633 }
wdenk71f95112003-06-15 22:40:42 +0000634
Wolfgang Denk7385c282010-07-19 11:37:00 +0200635 mydata->fatbufnum = -1;
Stefan Brüns3c0ed9c2016-09-11 22:51:40 +0200636 mydata->fat_dirty = 0;
Tuomas Tynkkynen09fa9642017-10-01 02:25:21 +0300637 mydata->fatbuf = malloc_cache_aligned(FATBUFSIZE);
Sergei Shtylyovac497772011-08-08 09:38:33 +0000638 if (mydata->fatbuf == NULL) {
639 debug("Error: allocating memory\n");
640 return -1;
641 }
Wolfgang Denk7385c282010-07-19 11:37:00 +0200642
Wolfgang Denk7385c282010-07-19 11:37:00 +0200643 debug("FAT%d, fat_sect: %d, fatlength: %d\n",
644 mydata->fatsize, mydata->fat_sect, mydata->fatlength);
645 debug("Rootdir begins at cluster: %d, sector: %d, offset: %x\n"
646 "Data begins at: %d\n",
Rob Clarkc6e3baa2017-09-09 13:15:53 -0400647 mydata->root_cluster,
Wolfgang Denk7385c282010-07-19 11:37:00 +0200648 mydata->rootdir_sect,
Sergei Shtylyovac497772011-08-08 09:38:33 +0000649 mydata->rootdir_sect * mydata->sect_size, mydata->data_begin);
650 debug("Sector size: %d, cluster size: %d\n", mydata->sect_size,
651 mydata->clust_size);
Wolfgang Denk7385c282010-07-19 11:37:00 +0200652
Rob Clark45449982017-09-09 13:15:52 -0400653 return 0;
654}
655
Heinrich Schuchardtd236e822020-11-22 09:19:52 +0100656/**
657 * struct fat_itr - directory iterator, to simplify filesystem traversal
Rob Clarkc6e3baa2017-09-09 13:15:53 -0400658 *
659 * Implements an iterator pattern to traverse directory tables,
660 * transparently handling directory tables split across multiple
661 * clusters, and the difference between FAT12/FAT16 root directory
662 * (contiguous) and subdirectories + FAT32 root (chained).
663 *
Heinrich Schuchardtd236e822020-11-22 09:19:52 +0100664 * Rough usage
Rob Clarkc6e3baa2017-09-09 13:15:53 -0400665 *
Heinrich Schuchardtd236e822020-11-22 09:19:52 +0100666 * .. code-block:: c
Rob Clarkc6e3baa2017-09-09 13:15:53 -0400667 *
Heinrich Schuchardtd236e822020-11-22 09:19:52 +0100668 * for (fat_itr_root(&itr, fsdata); fat_itr_next(&itr); ) {
669 * // to traverse down to a subdirectory pointed to by
670 * // current iterator position:
671 * fat_itr_child(&itr, &itr);
672 * }
673 *
674 * For a more complete example, see fat_itr_resolve().
Rob Clarkc6e3baa2017-09-09 13:15:53 -0400675 */
Heinrich Schuchardtd236e822020-11-22 09:19:52 +0100676struct fat_itr {
677 /**
678 * @fsdata: filesystem parameters
679 */
680 fsdata *fsdata;
681 /**
682 * @start_clust: first cluster
683 */
684 unsigned int start_clust;
685 /**
686 * @clust: current cluster
687 */
688 unsigned int clust;
689 /**
690 * @next_clust: next cluster if remaining == 0
691 */
692 unsigned int next_clust;
693 /**
694 * @last_cluster: set if last cluster of directory reached
695 */
696 int last_cluster;
697 /**
698 * @is_root: is iterator at root directory
699 */
700 int is_root;
701 /**
702 * @remaining: remaining directory entries in current cluster
703 */
704 int remaining;
705 /**
706 * @dent: current directory entry
707 */
708 dir_entry *dent;
709 /**
Heinrich Schuchardt89735b42020-11-19 07:44:08 +0100710 * @dent_rem: remaining entries after long name start
711 */
712 int dent_rem;
713 /**
714 * @dent_clust: cluster of long name start
715 */
716 unsigned int dent_clust;
717 /**
718 * @dent_start: first directory entry for long name
719 */
720 dir_entry *dent_start;
721 /**
Heinrich Schuchardtd236e822020-11-22 09:19:52 +0100722 * @l_name: long name of current directory entry
723 */
724 char l_name[VFAT_MAXLEN_BYTES];
725 /**
726 * @s_name: short 8.3 name of current directory entry
727 */
728 char s_name[14];
729 /**
730 * @name: l_name if there is one, else s_name
731 */
732 char *name;
733 /**
734 * @block: buffer for current cluster
735 */
736 u8 block[MAX_CLUSTSIZE] __aligned(ARCH_DMA_MINALIGN);
737};
Rob Clarkc6e3baa2017-09-09 13:15:53 -0400738
739static int fat_itr_isdir(fat_itr *itr);
740
741/**
742 * fat_itr_root() - initialize an iterator to start at the root
743 * directory
744 *
745 * @itr: iterator to initialize
746 * @fsdata: filesystem data for the partition
Heinrich Schuchardt185f8122022-01-19 18:05:50 +0100747 * Return: 0 on success, else -errno
Rob Clarkc6e3baa2017-09-09 13:15:53 -0400748 */
749static int fat_itr_root(fat_itr *itr, fsdata *fsdata)
750{
751 if (get_fs_info(fsdata))
752 return -ENXIO;
753
754 itr->fsdata = fsdata;
Heinrich Schuchardt7557c842020-11-22 16:04:47 +0100755 itr->start_clust = fsdata->root_cluster;
Rob Clarkc6e3baa2017-09-09 13:15:53 -0400756 itr->clust = fsdata->root_cluster;
AKASHI Takahirof528c142018-09-11 15:59:00 +0900757 itr->next_clust = fsdata->root_cluster;
Rob Clarkc6e3baa2017-09-09 13:15:53 -0400758 itr->dent = NULL;
759 itr->remaining = 0;
760 itr->last_cluster = 0;
761 itr->is_root = 1;
762
763 return 0;
764}
765
766/**
767 * fat_itr_child() - initialize an iterator to descend into a sub-
768 * directory
769 *
770 * Initializes 'itr' to iterate the contents of the directory at
771 * the current cursor position of 'parent'. It is an error to
772 * call this if the current cursor of 'parent' is pointing at a
773 * regular file.
774 *
775 * Note that 'itr' and 'parent' can be the same pointer if you do
776 * not need to preserve 'parent' after this call, which is useful
777 * for traversing directory structure to resolve a file/directory.
778 *
779 * @itr: iterator to initialize
780 * @parent: the iterator pointing at a directory entry in the
781 * parent directory of the directory to iterate
782 */
783static void fat_itr_child(fat_itr *itr, fat_itr *parent)
784{
785 fsdata *mydata = parent->fsdata; /* for silly macros */
786 unsigned clustnum = START(parent->dent);
787
788 assert(fat_itr_isdir(parent));
789
790 itr->fsdata = parent->fsdata;
AKASHI Takahiro3a10e072018-09-11 15:59:09 +0900791 itr->start_clust = clustnum;
Rob Clarkc6e3baa2017-09-09 13:15:53 -0400792 if (clustnum > 0) {
793 itr->clust = clustnum;
AKASHI Takahirof528c142018-09-11 15:59:00 +0900794 itr->next_clust = clustnum;
Tuomas Tynkkynen8df87312017-09-25 22:06:33 +0300795 itr->is_root = 0;
Rob Clarkc6e3baa2017-09-09 13:15:53 -0400796 } else {
797 itr->clust = parent->fsdata->root_cluster;
AKASHI Takahirof528c142018-09-11 15:59:00 +0900798 itr->next_clust = parent->fsdata->root_cluster;
Heinrich Schuchardt7557c842020-11-22 16:04:47 +0100799 itr->start_clust = parent->fsdata->root_cluster;
Tuomas Tynkkynen8df87312017-09-25 22:06:33 +0300800 itr->is_root = 1;
Rob Clarkc6e3baa2017-09-09 13:15:53 -0400801 }
802 itr->dent = NULL;
803 itr->remaining = 0;
804 itr->last_cluster = 0;
Rob Clarkc6e3baa2017-09-09 13:15:53 -0400805}
806
Heinrich Schuchardtd236e822020-11-22 09:19:52 +0100807/**
808 * fat_next_cluster() - load next FAT cluster
809 *
810 * The function is used when iterating through directories. It loads the
811 * next cluster with directory entries
812 *
813 * @itr: directory iterator
814 * @nbytes: number of bytes read, 0 on error
815 * Return: first directory entry, NULL on error
816 */
817void *fat_next_cluster(fat_itr *itr, unsigned int *nbytes)
Rob Clarkc6e3baa2017-09-09 13:15:53 -0400818{
Rob Clarkc6e3baa2017-09-09 13:15:53 -0400819 int ret;
820 u32 sect;
Anssi Hannula9b183582019-02-27 12:55:57 +0200821 u32 read_size;
Rob Clarkc6e3baa2017-09-09 13:15:53 -0400822
823 /* have we reached the end? */
824 if (itr->last_cluster)
825 return NULL;
826
Anssi Hannula9b183582019-02-27 12:55:57 +0200827 if (itr->is_root && itr->fsdata->fatsize != 32) {
828 /*
829 * The root directory is located before the data area and
830 * cannot be indexed using the regular unsigned cluster
831 * numbers (it may start at a "negative" cluster or not at a
832 * cluster boundary at all), so consider itr->next_clust to be
833 * a offset in cluster-sized units from the start of rootdir.
834 */
835 unsigned sect_offset = itr->next_clust * itr->fsdata->clust_size;
836 unsigned remaining_sects = itr->fsdata->rootdir_size - sect_offset;
837 sect = itr->fsdata->rootdir_sect + sect_offset;
838 /* do not read past the end of rootdir */
839 read_size = min_t(u32, itr->fsdata->clust_size,
840 remaining_sects);
841 } else {
842 sect = clust_to_sect(itr->fsdata, itr->next_clust);
843 read_size = itr->fsdata->clust_size;
844 }
Rob Clarkc6e3baa2017-09-09 13:15:53 -0400845
Heinrich Schuchardtd0be6762020-12-25 14:30:04 +0100846 log_debug("FAT read(sect=%d), clust_size=%d, read_size=%u\n",
847 sect, itr->fsdata->clust_size, read_size);
Rob Clarkc6e3baa2017-09-09 13:15:53 -0400848
849 /*
850 * NOTE: do_fat_read_at() had complicated logic to deal w/
851 * vfat names that span multiple clusters in the fat16 case,
852 * which get_dentfromdir() probably also needed (and was
853 * missing). And not entirely sure what fat32 didn't have
854 * the same issue.. We solve that by only caring about one
855 * dent at a time and iteratively constructing the vfat long
856 * name.
857 */
Anssi Hannula9b183582019-02-27 12:55:57 +0200858 ret = disk_read(sect, read_size, itr->block);
Rob Clarkc6e3baa2017-09-09 13:15:53 -0400859 if (ret < 0) {
860 debug("Error: reading block\n");
861 return NULL;
862 }
863
Anssi Hannula9b183582019-02-27 12:55:57 +0200864 *nbytes = read_size * itr->fsdata->sect_size;
AKASHI Takahirof528c142018-09-11 15:59:00 +0900865 itr->clust = itr->next_clust;
Rob Clarkc6e3baa2017-09-09 13:15:53 -0400866 if (itr->is_root && itr->fsdata->fatsize != 32) {
AKASHI Takahirof528c142018-09-11 15:59:00 +0900867 itr->next_clust++;
Anssi Hannula9b183582019-02-27 12:55:57 +0200868 if (itr->next_clust * itr->fsdata->clust_size >=
Rob Clarkc6e3baa2017-09-09 13:15:53 -0400869 itr->fsdata->rootdir_size) {
AKASHI Takahirof528c142018-09-11 15:59:00 +0900870 debug("nextclust: 0x%x\n", itr->next_clust);
Rob Clarkc6e3baa2017-09-09 13:15:53 -0400871 itr->last_cluster = 1;
872 }
873 } else {
AKASHI Takahirof528c142018-09-11 15:59:00 +0900874 itr->next_clust = get_fatent(itr->fsdata, itr->next_clust);
875 if (CHECK_CLUST(itr->next_clust, itr->fsdata->fatsize)) {
876 debug("nextclust: 0x%x\n", itr->next_clust);
Rob Clarkc6e3baa2017-09-09 13:15:53 -0400877 itr->last_cluster = 1;
878 }
879 }
880
881 return itr->block;
882}
883
884static dir_entry *next_dent(fat_itr *itr)
885{
886 if (itr->remaining == 0) {
Anssi Hannula9b183582019-02-27 12:55:57 +0200887 unsigned nbytes;
Heinrich Schuchardtd236e822020-11-22 09:19:52 +0100888 struct dir_entry *dent = fat_next_cluster(itr, &nbytes);
Rob Clarkc6e3baa2017-09-09 13:15:53 -0400889
890 /* have we reached the last cluster? */
AKASHI Takahirof528c142018-09-11 15:59:00 +0900891 if (!dent) {
892 /* a sign for no more entries left */
893 itr->dent = NULL;
Rob Clarkc6e3baa2017-09-09 13:15:53 -0400894 return NULL;
AKASHI Takahirof528c142018-09-11 15:59:00 +0900895 }
Rob Clarkc6e3baa2017-09-09 13:15:53 -0400896
897 itr->remaining = nbytes / sizeof(dir_entry) - 1;
898 itr->dent = dent;
899 } else {
900 itr->remaining--;
901 itr->dent++;
902 }
903
904 /* have we reached the last valid entry? */
Heinrich Schuchardt041f0af2021-01-21 00:23:33 +0100905 if (itr->dent->nameext.name[0] == 0)
Rob Clarkc6e3baa2017-09-09 13:15:53 -0400906 return NULL;
907
908 return itr->dent;
909}
910
911static dir_entry *extract_vfat_name(fat_itr *itr)
912{
913 struct dir_entry *dent = itr->dent;
Heinrich Schuchardt041f0af2021-01-21 00:23:33 +0100914 int seqn = itr->dent->nameext.name[0] & ~LAST_LONG_ENTRY_MASK;
Rob Clarkc6e3baa2017-09-09 13:15:53 -0400915 u8 chksum, alias_checksum = ((dir_slot *)dent)->alias_checksum;
916 int n = 0;
917
918 while (seqn--) {
919 char buf[13];
920 int idx = 0;
921
922 slot2str((dir_slot *)dent, buf, &idx);
923
Patrick Wildt8b021bb2018-11-26 15:58:13 +0100924 if (n + idx >= sizeof(itr->l_name))
925 return NULL;
926
Rob Clarkc6e3baa2017-09-09 13:15:53 -0400927 /* shift accumulated long-name up and copy new part in: */
928 memmove(itr->l_name + idx, itr->l_name, n);
929 memcpy(itr->l_name, buf, idx);
930 n += idx;
931
932 dent = next_dent(itr);
933 if (!dent)
934 return NULL;
935 }
936
AKASHI Takahiro39606d42019-11-26 17:29:31 +0900937 /*
938 * We are now at the short file name entry.
939 * If it is marked as deleted, just skip it.
940 */
Heinrich Schuchardt041f0af2021-01-21 00:23:33 +0100941 if (dent->nameext.name[0] == DELETED_FLAG ||
942 dent->nameext.name[0] == aRING)
AKASHI Takahiro39606d42019-11-26 17:29:31 +0900943 return NULL;
944
Rob Clarkc6e3baa2017-09-09 13:15:53 -0400945 itr->l_name[n] = '\0';
946
Heinrich Schuchardt041f0af2021-01-21 00:23:33 +0100947 chksum = mkcksum(&dent->nameext);
Rob Clarkc6e3baa2017-09-09 13:15:53 -0400948
949 /* checksum mismatch could mean deleted file, etc.. skip it: */
950 if (chksum != alias_checksum) {
951 debug("** chksum=%x, alias_checksum=%x, l_name=%s, s_name=%8s.%3s\n",
Heinrich Schuchardt041f0af2021-01-21 00:23:33 +0100952 chksum, alias_checksum, itr->l_name, dent->nameext.name,
953 dent->nameext.ext);
Rob Clarkc6e3baa2017-09-09 13:15:53 -0400954 return NULL;
955 }
956
957 return dent;
958}
959
960/**
961 * fat_itr_next() - step to the next entry in a directory
962 *
963 * Must be called once on a new iterator before the cursor is valid.
964 *
965 * @itr: the iterator to iterate
Heinrich Schuchardt185f8122022-01-19 18:05:50 +0100966 * Return: boolean, 1 if success or 0 if no more entries in the
Rob Clarkc6e3baa2017-09-09 13:15:53 -0400967 * current directory
968 */
969static int fat_itr_next(fat_itr *itr)
970{
971 dir_entry *dent;
972
973 itr->name = NULL;
974
AKASHI Takahiro39606d42019-11-26 17:29:31 +0900975 /*
976 * One logical directory entry consist of following slots:
977 * name[0] Attributes
978 * dent[N - N]: LFN[N - 1] N|0x40 ATTR_VFAT
979 * ...
980 * dent[N - 2]: LFN[1] 2 ATTR_VFAT
981 * dent[N - 1]: LFN[0] 1 ATTR_VFAT
982 * dent[N]: SFN ATTR_ARCH
983 */
984
Rob Clarkc6e3baa2017-09-09 13:15:53 -0400985 while (1) {
986 dent = next_dent(itr);
Heinrich Schuchardt89735b42020-11-19 07:44:08 +0100987 if (!dent) {
988 itr->dent_start = NULL;
Rob Clarkc6e3baa2017-09-09 13:15:53 -0400989 return 0;
Heinrich Schuchardt89735b42020-11-19 07:44:08 +0100990 }
991 itr->dent_rem = itr->remaining;
992 itr->dent_start = itr->dent;
993 itr->dent_clust = itr->clust;
Heinrich Schuchardt041f0af2021-01-21 00:23:33 +0100994 if (dent->nameext.name[0] == DELETED_FLAG)
Rob Clarkc6e3baa2017-09-09 13:15:53 -0400995 continue;
996
997 if (dent->attr & ATTR_VOLUME) {
Tuomas Tynkkynen8bad6cb2018-01-05 02:45:21 +0200998 if ((dent->attr & ATTR_VFAT) == ATTR_VFAT &&
Heinrich Schuchardt041f0af2021-01-21 00:23:33 +0100999 (dent->nameext.name[0] & LAST_LONG_ENTRY_MASK)) {
AKASHI Takahiro39606d42019-11-26 17:29:31 +09001000 /* long file name */
Rob Clarkc6e3baa2017-09-09 13:15:53 -04001001 dent = extract_vfat_name(itr);
AKASHI Takahiro39606d42019-11-26 17:29:31 +09001002 /*
1003 * If succeeded, dent has a valid short file
1004 * name entry for the current entry.
1005 * If failed, itr points to a current bogus
1006 * entry. So after fetching a next one,
1007 * it may have a short file name entry
1008 * for this bogus entry so that we can still
1009 * check for a short name.
1010 */
Rob Clarkc6e3baa2017-09-09 13:15:53 -04001011 if (!dent)
1012 continue;
1013 itr->name = itr->l_name;
1014 break;
1015 } else {
1016 /* Volume label or VFAT entry, skip */
1017 continue;
1018 }
Christian Gmeiner1788a962020-06-09 09:09:07 +02001019 }
Rob Clarkc6e3baa2017-09-09 13:15:53 -04001020
AKASHI Takahiro39606d42019-11-26 17:29:31 +09001021 /* short file name */
Rob Clarkc6e3baa2017-09-09 13:15:53 -04001022 break;
1023 }
1024
1025 get_name(dent, itr->s_name);
1026 if (!itr->name)
1027 itr->name = itr->s_name;
1028
1029 return 1;
1030}
1031
1032/**
1033 * fat_itr_isdir() - is current cursor position pointing to a directory
1034 *
1035 * @itr: the iterator
Heinrich Schuchardt185f8122022-01-19 18:05:50 +01001036 * Return: true if cursor is at a directory
Rob Clarkc6e3baa2017-09-09 13:15:53 -04001037 */
1038static int fat_itr_isdir(fat_itr *itr)
1039{
1040 return !!(itr->dent->attr & ATTR_DIR);
1041}
1042
1043/*
1044 * Helpers:
1045 */
1046
1047#define TYPE_FILE 0x1
1048#define TYPE_DIR 0x2
1049#define TYPE_ANY (TYPE_FILE | TYPE_DIR)
1050
1051/**
1052 * fat_itr_resolve() - traverse directory structure to resolve the
1053 * requested path.
1054 *
1055 * Traverse directory structure to the requested path. If the specified
1056 * path is to a directory, this will descend into the directory and
1057 * leave it iterator at the start of the directory. If the path is to a
1058 * file, it will leave the iterator in the parent directory with current
1059 * cursor at file's entry in the directory.
1060 *
1061 * @itr: iterator initialized to root
1062 * @path: the requested path
1063 * @type: bitmask of allowable file types
Heinrich Schuchardt185f8122022-01-19 18:05:50 +01001064 * Return: 0 on success or -errno
Rob Clarkc6e3baa2017-09-09 13:15:53 -04001065 */
1066static int fat_itr_resolve(fat_itr *itr, const char *path, unsigned type)
1067{
1068 const char *next;
1069
1070 /* chomp any extra leading slashes: */
1071 while (path[0] && ISDIRDELIM(path[0]))
1072 path++;
1073
1074 /* are we at the end? */
1075 if (strlen(path) == 0) {
1076 if (!(type & TYPE_DIR))
1077 return -ENOENT;
1078 return 0;
1079 }
1080
1081 /* find length of next path entry: */
1082 next = path;
1083 while (next[0] && !ISDIRDELIM(next[0]))
1084 next++;
1085
AKASHI Takahirob94b6be2018-09-11 15:58:59 +09001086 if (itr->is_root) {
1087 /* root dir doesn't have "." nor ".." */
1088 if ((((next - path) == 1) && !strncmp(path, ".", 1)) ||
1089 (((next - path) == 2) && !strncmp(path, "..", 2))) {
1090 /* point back to itself */
1091 itr->clust = itr->fsdata->root_cluster;
AKASHI Takahirof528c142018-09-11 15:59:00 +09001092 itr->next_clust = itr->fsdata->root_cluster;
Heinrich Schuchardt7557c842020-11-22 16:04:47 +01001093 itr->start_clust = itr->fsdata->root_cluster;
AKASHI Takahirob94b6be2018-09-11 15:58:59 +09001094 itr->dent = NULL;
1095 itr->remaining = 0;
1096 itr->last_cluster = 0;
1097
1098 if (next[0] == 0) {
1099 if (type & TYPE_DIR)
1100 return 0;
1101 else
1102 return -ENOENT;
1103 }
1104
1105 return fat_itr_resolve(itr, next, type);
1106 }
1107 }
1108
Rob Clarkc6e3baa2017-09-09 13:15:53 -04001109 while (fat_itr_next(itr)) {
1110 int match = 0;
1111 unsigned n = max(strlen(itr->name), (size_t)(next - path));
1112
1113 /* check both long and short name: */
1114 if (!strncasecmp(path, itr->name, n))
1115 match = 1;
1116 else if (itr->name != itr->s_name &&
1117 !strncasecmp(path, itr->s_name, n))
1118 match = 1;
1119
1120 if (!match)
1121 continue;
1122
1123 if (fat_itr_isdir(itr)) {
1124 /* recurse into directory: */
1125 fat_itr_child(itr, itr);
1126 return fat_itr_resolve(itr, next, type);
1127 } else if (next[0]) {
1128 /*
1129 * If next is not empty then we have a case
1130 * like: /path/to/realfile/nonsense
1131 */
1132 debug("bad trailing path: %s\n", next);
1133 return -ENOENT;
1134 } else if (!(type & TYPE_FILE)) {
1135 return -ENOTDIR;
1136 } else {
1137 return 0;
1138 }
1139 }
1140
1141 return -ENOENT;
1142}
1143
Benoît Thébaudeau9795e072012-07-20 15:18:44 +02001144int file_fat_detectfs(void)
wdenk71f95112003-06-15 22:40:42 +00001145{
Wolfgang Denk7385c282010-07-19 11:37:00 +02001146 boot_sector bs;
1147 volume_info volinfo;
1148 int fatsize;
1149 char vol_label[12];
wdenk71f95112003-06-15 22:40:42 +00001150
Wolfgang Denk7385c282010-07-19 11:37:00 +02001151 if (cur_dev == NULL) {
wdenk7205e402003-09-10 22:30:53 +00001152 printf("No current device\n");
1153 return 1;
1154 }
Wolfgang Denk7385c282010-07-19 11:37:00 +02001155
Simon Glassa51eb8d2022-08-11 19:34:45 -06001156 if (blk_enabled()) {
Simon Glass8149b152022-09-17 09:00:09 -06001157 printf("Interface: %s\n", blk_get_uclass_name(cur_dev->uclass_id));
Heinrich Schuchardt02079eb2021-01-25 12:53:14 +01001158 printf(" Device %d: ", cur_dev->devnum);
1159 dev_print(cur_dev);
wdenk7205e402003-09-10 22:30:53 +00001160 }
Wolfgang Denk7385c282010-07-19 11:37:00 +02001161
Wolfgang Denk7385c282010-07-19 11:37:00 +02001162 if (read_bootsectandvi(&bs, &volinfo, &fatsize)) {
wdenk7205e402003-09-10 22:30:53 +00001163 printf("\nNo valid FAT fs found\n");
1164 return 1;
1165 }
Wolfgang Denk7385c282010-07-19 11:37:00 +02001166
1167 memcpy(vol_label, volinfo.volume_label, 11);
wdenk7205e402003-09-10 22:30:53 +00001168 vol_label[11] = '\0';
Wolfgang Denk7385c282010-07-19 11:37:00 +02001169
Christian Taedcke08f622a2023-11-15 13:44:18 +01001170 printf("Filesystem: FAT%d \"%s\"\n", fatsize, vol_label);
Wolfgang Denk7385c282010-07-19 11:37:00 +02001171
wdenk7205e402003-09-10 22:30:53 +00001172 return 0;
wdenk71f95112003-06-15 22:40:42 +00001173}
1174
Stephen Warrenb7b5f312014-02-03 13:21:10 -07001175int fat_exists(const char *filename)
1176{
Rob Clark8eafae22017-09-09 13:15:54 -04001177 fsdata fsdata;
Tom Rini24600982017-09-22 07:37:43 -04001178 fat_itr *itr;
Suriyan Ramasami1ad0b982014-11-17 14:39:35 -08001179 int ret;
Suriyan Ramasami1ad0b982014-11-17 14:39:35 -08001180
Tuomas Tynkkynen09fa9642017-10-01 02:25:21 +03001181 itr = malloc_cache_aligned(sizeof(fat_itr));
Tuomas Tynkkynenaf609e32017-10-01 02:25:22 +03001182 if (!itr)
1183 return 0;
Rob Clark8eafae22017-09-09 13:15:54 -04001184 ret = fat_itr_root(itr, &fsdata);
1185 if (ret)
Tuomas Tynkkynenaf609e32017-10-01 02:25:22 +03001186 goto out;
Rob Clark8eafae22017-09-09 13:15:54 -04001187
1188 ret = fat_itr_resolve(itr, filename, TYPE_ANY);
Rob Clark725ffdb2017-09-12 16:40:01 -04001189 free(fsdata.fatbuf);
Tuomas Tynkkynenaf609e32017-10-01 02:25:22 +03001190out:
Tom Rini24600982017-09-22 07:37:43 -04001191 free(itr);
Suriyan Ramasami1ad0b982014-11-17 14:39:35 -08001192 return ret == 0;
Stephen Warrenb7b5f312014-02-03 13:21:10 -07001193}
1194
Heinrich Schuchardt13c11c62021-05-15 22:06:16 +02001195/**
1196 * fat2rtc() - convert FAT time stamp to RTC file stamp
1197 *
1198 * @date: FAT date
1199 * @time: FAT time
1200 * @tm: RTC time stamp
1201 */
1202static void __maybe_unused fat2rtc(u16 date, u16 time, struct rtc_time *tm)
1203{
1204 tm->tm_mday = date & 0x1f;
1205 tm->tm_mon = (date & 0x1e0) >> 4;
1206 tm->tm_year = (date >> 9) + 1980;
1207
1208 tm->tm_sec = (time & 0x1f) << 1;
1209 tm->tm_min = (time & 0x7e0) >> 5;
1210 tm->tm_hour = time >> 11;
1211
1212 rtc_calc_weekday(tm);
1213 tm->tm_yday = 0;
1214 tm->tm_isdst = 0;
1215}
1216
Suriyan Ramasamid455d872014-11-17 14:39:38 -08001217int fat_size(const char *filename, loff_t *size)
Stephen Warrencf659812014-06-11 12:47:26 -06001218{
Rob Clark8eafae22017-09-09 13:15:54 -04001219 fsdata fsdata;
Tom Rini24600982017-09-22 07:37:43 -04001220 fat_itr *itr;
Rob Clark8eafae22017-09-09 13:15:54 -04001221 int ret;
1222
Tuomas Tynkkynen09fa9642017-10-01 02:25:21 +03001223 itr = malloc_cache_aligned(sizeof(fat_itr));
Tuomas Tynkkynenaf609e32017-10-01 02:25:22 +03001224 if (!itr)
1225 return -ENOMEM;
Rob Clark8eafae22017-09-09 13:15:54 -04001226 ret = fat_itr_root(itr, &fsdata);
1227 if (ret)
Tuomas Tynkkynenaf609e32017-10-01 02:25:22 +03001228 goto out_free_itr;
Rob Clark8eafae22017-09-09 13:15:54 -04001229
1230 ret = fat_itr_resolve(itr, filename, TYPE_FILE);
1231 if (ret) {
1232 /*
1233 * Directories don't have size, but fs_size() is not
1234 * expected to fail if passed a directory path:
1235 */
Rob Clark725ffdb2017-09-12 16:40:01 -04001236 free(fsdata.fatbuf);
Andrew F. Davisd0cd30e2019-05-16 09:34:31 -05001237 ret = fat_itr_root(itr, &fsdata);
1238 if (ret)
1239 goto out_free_itr;
1240 ret = fat_itr_resolve(itr, filename, TYPE_DIR);
1241 if (!ret)
Rob Clark8eafae22017-09-09 13:15:54 -04001242 *size = 0;
Tuomas Tynkkynenaf609e32017-10-01 02:25:22 +03001243 goto out_free_both;
Rob Clark8eafae22017-09-09 13:15:54 -04001244 }
1245
1246 *size = FAT2CPU32(itr->dent->size);
Tuomas Tynkkynenaf609e32017-10-01 02:25:22 +03001247out_free_both:
Rob Clark725ffdb2017-09-12 16:40:01 -04001248 free(fsdata.fatbuf);
Tuomas Tynkkynenaf609e32017-10-01 02:25:22 +03001249out_free_itr:
Tom Rini24600982017-09-22 07:37:43 -04001250 free(itr);
Rob Clark725ffdb2017-09-12 16:40:01 -04001251 return ret;
Stephen Warrencf659812014-06-11 12:47:26 -06001252}
1253
Heinrich Schuchardtde943352023-01-19 15:37:40 +01001254int fat_read_file(const char *filename, void *buf, loff_t offset, loff_t len,
1255 loff_t *actread)
wdenk71f95112003-06-15 22:40:42 +00001256{
Rob Clark8eafae22017-09-09 13:15:54 -04001257 fsdata fsdata;
Tom Rini24600982017-09-22 07:37:43 -04001258 fat_itr *itr;
Rob Clark8eafae22017-09-09 13:15:54 -04001259 int ret;
1260
Tuomas Tynkkynen09fa9642017-10-01 02:25:21 +03001261 itr = malloc_cache_aligned(sizeof(fat_itr));
Tuomas Tynkkynenaf609e32017-10-01 02:25:22 +03001262 if (!itr)
1263 return -ENOMEM;
Rob Clark8eafae22017-09-09 13:15:54 -04001264 ret = fat_itr_root(itr, &fsdata);
1265 if (ret)
Tuomas Tynkkynenaf609e32017-10-01 02:25:22 +03001266 goto out_free_itr;
Rob Clark8eafae22017-09-09 13:15:54 -04001267
1268 ret = fat_itr_resolve(itr, filename, TYPE_FILE);
1269 if (ret)
Tuomas Tynkkynenaf609e32017-10-01 02:25:22 +03001270 goto out_free_both;
Rob Clark8eafae22017-09-09 13:15:54 -04001271
Heinrich Schuchardtde943352023-01-19 15:37:40 +01001272 debug("reading %s at pos %llu\n", filename, offset);
Tien Fong Cheee48485f2019-02-11 14:56:20 +08001273
1274 /* For saving default max clustersize memory allocated to malloc pool */
1275 dir_entry *dentptr = itr->dent;
1276
Heinrich Schuchardtde943352023-01-19 15:37:40 +01001277 ret = get_contents(&fsdata, dentptr, offset, buf, len, actread);
Rob Clark725ffdb2017-09-12 16:40:01 -04001278
Tuomas Tynkkynenaf609e32017-10-01 02:25:22 +03001279out_free_both:
Rob Clark725ffdb2017-09-12 16:40:01 -04001280 free(fsdata.fatbuf);
Tuomas Tynkkynenaf609e32017-10-01 02:25:22 +03001281out_free_itr:
Tom Rini24600982017-09-22 07:37:43 -04001282 free(itr);
Rob Clark725ffdb2017-09-12 16:40:01 -04001283 return ret;
Benoît Thébaudeau1170e632012-09-18 08:14:56 +00001284}
1285
Suriyan Ramasami1ad0b982014-11-17 14:39:35 -08001286int file_fat_read(const char *filename, void *buffer, int maxsize)
Benoît Thébaudeau1170e632012-09-18 08:14:56 +00001287{
Suriyan Ramasami1ad0b982014-11-17 14:39:35 -08001288 loff_t actread;
1289 int ret;
1290
Heinrich Schuchardtde943352023-01-19 15:37:40 +01001291 ret = fat_read_file(filename, buffer, 0, maxsize, &actread);
Suriyan Ramasami1ad0b982014-11-17 14:39:35 -08001292 if (ret)
1293 return ret;
1294 else
1295 return actread;
wdenk71f95112003-06-15 22:40:42 +00001296}
Simon Glasse6d52412012-12-26 09:53:33 +00001297
Rob Clark1f403662017-09-09 13:15:56 -04001298typedef struct {
1299 struct fs_dir_stream parent;
1300 struct fs_dirent dirent;
1301 fsdata fsdata;
1302 fat_itr itr;
1303} fat_dir;
1304
1305int fat_opendir(const char *filename, struct fs_dir_stream **dirsp)
1306{
Neil Armstrong34dd8532017-11-24 09:54:41 +01001307 fat_dir *dir;
Rob Clark1f403662017-09-09 13:15:56 -04001308 int ret;
1309
Neil Armstrong34dd8532017-11-24 09:54:41 +01001310 dir = malloc_cache_aligned(sizeof(*dir));
Rob Clark1f403662017-09-09 13:15:56 -04001311 if (!dir)
1312 return -ENOMEM;
Neil Armstrong34dd8532017-11-24 09:54:41 +01001313 memset(dir, 0, sizeof(*dir));
Rob Clark1f403662017-09-09 13:15:56 -04001314
1315 ret = fat_itr_root(&dir->itr, &dir->fsdata);
1316 if (ret)
Tuomas Tynkkynenaf609e32017-10-01 02:25:22 +03001317 goto fail_free_dir;
Rob Clark1f403662017-09-09 13:15:56 -04001318
1319 ret = fat_itr_resolve(&dir->itr, filename, TYPE_DIR);
1320 if (ret)
Tuomas Tynkkynenaf609e32017-10-01 02:25:22 +03001321 goto fail_free_both;
Rob Clark1f403662017-09-09 13:15:56 -04001322
1323 *dirsp = (struct fs_dir_stream *)dir;
1324 return 0;
1325
Tuomas Tynkkynenaf609e32017-10-01 02:25:22 +03001326fail_free_both:
Rob Clark725ffdb2017-09-12 16:40:01 -04001327 free(dir->fsdata.fatbuf);
Tuomas Tynkkynenaf609e32017-10-01 02:25:22 +03001328fail_free_dir:
Rob Clark1f403662017-09-09 13:15:56 -04001329 free(dir);
1330 return ret;
1331}
1332
1333int fat_readdir(struct fs_dir_stream *dirs, struct fs_dirent **dentp)
1334{
1335 fat_dir *dir = (fat_dir *)dirs;
1336 struct fs_dirent *dent = &dir->dirent;
1337
1338 if (!fat_itr_next(&dir->itr))
1339 return -ENOENT;
1340
1341 memset(dent, 0, sizeof(*dent));
1342 strcpy(dent->name, dir->itr.name);
Heinrich Schuchardt13c11c62021-05-15 22:06:16 +02001343 if (CONFIG_IS_ENABLED(EFI_LOADER)) {
1344 dent->attr = dir->itr.dent->attr;
1345 fat2rtc(le16_to_cpu(dir->itr.dent->cdate),
1346 le16_to_cpu(dir->itr.dent->ctime), &dent->create_time);
1347 fat2rtc(le16_to_cpu(dir->itr.dent->date),
1348 le16_to_cpu(dir->itr.dent->time), &dent->change_time);
1349 fat2rtc(le16_to_cpu(dir->itr.dent->adate),
1350 0, &dent->access_time);
1351 }
Rob Clark1f403662017-09-09 13:15:56 -04001352 if (fat_itr_isdir(&dir->itr)) {
1353 dent->type = FS_DT_DIR;
1354 } else {
1355 dent->type = FS_DT_REG;
1356 dent->size = FAT2CPU32(dir->itr.dent->size);
1357 }
1358
1359 *dentp = dent;
1360
1361 return 0;
1362}
1363
1364void fat_closedir(struct fs_dir_stream *dirs)
1365{
1366 fat_dir *dir = (fat_dir *)dirs;
Rob Clark725ffdb2017-09-12 16:40:01 -04001367 free(dir->fsdata.fatbuf);
Rob Clark1f403662017-09-09 13:15:56 -04001368 free(dir);
1369}
1370
Simon Glasse6d52412012-12-26 09:53:33 +00001371void fat_close(void)
1372{
1373}
Heinrich Schuchardtc0029e42020-12-31 00:38:13 +01001374
1375int fat_uuid(char *uuid_str)
1376{
1377 boot_sector bs;
1378 volume_info volinfo;
1379 int fatsize;
1380 int ret;
1381 u8 *id;
1382
1383 ret = read_bootsectandvi(&bs, &volinfo, &fatsize);
1384 if (ret)
1385 return ret;
1386
1387 id = volinfo.volume_id;
1388 sprintf(uuid_str, "%02X%02X-%02X%02X", id[3], id[2], id[1], id[0]);
1389
1390 return 0;
1391}