blob: d4952e259ff600b73f1d48a33931d8dc41b92317 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Donggeun Kim8f814002011-10-24 21:15:28 +00002/*
3 * fat_write.c
4 *
5 * R/W (V)FAT 12/16/32 filesystem implementation by Donggeun Kim
Donggeun Kim8f814002011-10-24 21:15:28 +00006 */
7
Simon Glass468247d2023-01-28 15:00:16 -07008#define LOG_CATEGORY LOGC_FS
9
Donggeun Kim8f814002011-10-24 21:15:28 +000010#include <command.h>
11#include <config.h>
Heinrich Schuchardtba9c44e2020-11-20 12:55:22 +010012#include <div64.h>
Donggeun Kim8f814002011-10-24 21:15:28 +000013#include <fat.h>
Simon Glass0f2af882020-05-10 11:40:05 -060014#include <log.h>
Simon Glass9bc15642020-02-03 07:36:16 -070015#include <malloc.h>
Donggeun Kim8f814002011-10-24 21:15:28 +000016#include <part.h>
Heinrich Schuchardtba9c44e2020-11-20 12:55:22 +010017#include <rand.h>
18#include <asm/byteorder.h>
Simon Glass274e0b02020-05-10 11:39:56 -060019#include <asm/cache.h>
Heinrich Schuchardtcab43b02024-04-09 22:06:07 +020020#include <dm/uclass.h>
Richard Genoud2e372022012-12-13 00:47:36 +000021#include <linux/ctype.h>
Tom Rinia17b7bc2014-11-24 11:50:46 -050022#include <linux/math64.h>
Donggeun Kim8f814002011-10-24 21:15:28 +000023#include "fat.c"
24
Heinrich Schuchardt24977e52020-11-25 16:33:55 +010025static dir_entry *find_directory_entry(fat_itr *itr, char *filename);
Heinrich Schuchardt5bc30a52020-11-22 09:58:44 +010026static int new_dir_table(fat_itr *itr);
Heinrich Schuchardt24977e52020-11-25 16:33:55 +010027
Heinrich Schuchardtba9c44e2020-11-20 12:55:22 +010028/* Characters that may only be used in long file names */
29static const char LONG_ONLY_CHARS[] = "+,;=[]";
30
Heinrich Schuchardt7afbd602020-11-22 19:19:39 +010031/* Combined size of the name and ext fields in the directory entry */
32#define SHORT_NAME_SIZE 11
33
Heinrich Schuchardtba9c44e2020-11-20 12:55:22 +010034/**
35 * str2fat() - convert string to valid FAT name characters
36 *
37 * Stop when reaching end of @src or a period.
38 * Ignore spaces.
39 * Replace characters that may only be used in long names by underscores.
40 * Convert lower case characters to upper case.
41 *
42 * To avoid assumptions about the code page we do not use characters
43 * above 0x7f for the short name.
44 *
45 * @dest: destination buffer
46 * @src: source buffer
47 * @length: size of destination buffer
48 * Return: number of bytes in destination buffer
49 */
50static int str2fat(char *dest, char *src, int length)
Donggeun Kim8f814002011-10-24 21:15:28 +000051{
52 int i;
53
Heinrich Schuchardtba9c44e2020-11-20 12:55:22 +010054 for (i = 0; i < length; ++src) {
55 char c = *src;
56
57 if (!c || c == '.')
58 break;
59 if (c == ' ')
60 continue;
61 if (strchr(LONG_ONLY_CHARS, c) || c > 0x7f)
62 c = '_';
63 else if (c >= 'a' && c <= 'z')
64 c &= 0xdf;
65 dest[i] = c;
66 ++i;
Donggeun Kim8f814002011-10-24 21:15:28 +000067 }
Heinrich Schuchardtba9c44e2020-11-20 12:55:22 +010068 return i;
Donggeun Kim8f814002011-10-24 21:15:28 +000069}
70
Heinrich Schuchardtba9c44e2020-11-20 12:55:22 +010071/**
Heinrich Schuchardt24977e52020-11-25 16:33:55 +010072 * fat_move_to_cluster() - position to first directory entry in cluster
73 *
74 * @itr: directory iterator
75 * @cluster cluster
76 * Return: 0 for success, -EIO on error
77 */
78static int fat_move_to_cluster(fat_itr *itr, unsigned int cluster)
79{
80 unsigned int nbytes;
81
82 /* position to the start of the directory */
83 itr->next_clust = cluster;
84 itr->last_cluster = 0;
85 if (!fat_next_cluster(itr, &nbytes))
86 return -EIO;
87 itr->dent = (dir_entry *)itr->block;
88 itr->remaining = nbytes / sizeof(dir_entry) - 1;
89 return 0;
90}
91
92/**
Heinrich Schuchardtba9c44e2020-11-20 12:55:22 +010093 * set_name() - set short name in directory entry
94 *
95 * The function determines if the @filename is a valid short name.
96 * In this case no long name is needed.
97 *
98 * If a long name is needed, a short name is constructed.
99 *
Heinrich Schuchardt24977e52020-11-25 16:33:55 +0100100 * @itr: directory iterator
Heinrich Schuchardtba9c44e2020-11-20 12:55:22 +0100101 * @filename: long file name
Heinrich Schuchardt7afbd602020-11-22 19:19:39 +0100102 * @shortname: buffer of 11 bytes to receive chosen short name and extension
Heinrich Schuchardtba9c44e2020-11-20 12:55:22 +0100103 * Return: number of directory entries needed, negative on error
104 */
Heinrich Schuchardt24977e52020-11-25 16:33:55 +0100105static int set_name(fat_itr *itr, const char *filename, char *shortname)
Heinrich Schuchardtba9c44e2020-11-20 12:55:22 +0100106{
107 char *period;
108 char *pos;
109 int period_location;
110 char buf[13];
111 int i;
Heinrich Schuchardt7afbd602020-11-22 19:19:39 +0100112 int ret;
Heinrich Schuchardtcfb7c2b2021-01-26 00:04:19 +0100113 struct nameext dirent;
Heinrich Schuchardtba9c44e2020-11-20 12:55:22 +0100114
115 if (!filename)
116 return -EIO;
117
Heinrich Schuchardt7afbd602020-11-22 19:19:39 +0100118 /* Initialize buffer */
119 memset(&dirent, ' ', sizeof(dirent));
Heinrich Schuchardtba9c44e2020-11-20 12:55:22 +0100120
121 /* Convert filename to upper case short name */
122 period = strrchr(filename, '.');
123 pos = (char *)filename;
124 if (*pos == '.') {
125 pos = period + 1;
126 period = 0;
127 }
128 if (period)
Heinrich Schuchardt7afbd602020-11-22 19:19:39 +0100129 str2fat(dirent.ext, period + 1, sizeof(dirent.ext));
130 period_location = str2fat(dirent.name, pos, sizeof(dirent.name));
Heinrich Schuchardtba9c44e2020-11-20 12:55:22 +0100131 if (period_location < 0)
132 return period_location;
Heinrich Schuchardt7afbd602020-11-22 19:19:39 +0100133 if (*dirent.name == ' ')
134 *dirent.name = '_';
Heinrich Schuchardtd701a222023-07-26 10:33:13 +0200135 /* Substitute character 0xe5 signaling deletetion by character 0x05 */
136 if (*dirent.name == DELETED_FLAG)
137 *dirent.name = aRING;
Heinrich Schuchardtba9c44e2020-11-20 12:55:22 +0100138
139 /* If filename and short name are the same, quit. */
Heinrich Schuchardt7afbd602020-11-22 19:19:39 +0100140 sprintf(buf, "%.*s.%.3s", period_location, dirent.name, dirent.ext);
141 if (!strcmp(buf, filename)) {
142 ret = 1;
143 goto out;
Stefan Herbrechtsmeier4052d1f2023-03-17 13:04:13 +0100144 } else if (!strcasecmp(buf, filename)) {
145 goto out_ret;
Heinrich Schuchardt7afbd602020-11-22 19:19:39 +0100146 }
Heinrich Schuchardtba9c44e2020-11-20 12:55:22 +0100147
148 /* Construct an indexed short name */
149 for (i = 1; i < 0x200000; ++i) {
150 int suffix_len;
151 int suffix_start;
152 int j;
153
154 /* To speed up the search use random numbers */
155 if (i < 10) {
156 j = i;
157 } else {
158 j = 30 - fls(i);
159 j = 10 + (rand() >> j);
160 }
161 sprintf(buf, "~%d", j);
162 suffix_len = strlen(buf);
163 suffix_start = 8 - suffix_len;
164 if (suffix_start > period_location)
165 suffix_start = period_location;
Heinrich Schuchardt7afbd602020-11-22 19:19:39 +0100166 memcpy(dirent.name + suffix_start, buf, suffix_len);
167 if (*dirent.ext != ' ')
Heinrich Schuchardtba9c44e2020-11-20 12:55:22 +0100168 sprintf(buf, "%.*s.%.3s", suffix_start + suffix_len,
Heinrich Schuchardt7afbd602020-11-22 19:19:39 +0100169 dirent.name, dirent.ext);
Heinrich Schuchardtba9c44e2020-11-20 12:55:22 +0100170 else
171 sprintf(buf, "%.*s", suffix_start + suffix_len,
Heinrich Schuchardt7afbd602020-11-22 19:19:39 +0100172 dirent.name);
Heinrich Schuchardt24977e52020-11-25 16:33:55 +0100173 debug("generated short name: %s\n", buf);
174
175 /* Check that the short name does not exist yet. */
176 ret = fat_move_to_cluster(itr, itr->start_clust);
177 if (ret)
178 return ret;
179 if (find_directory_entry(itr, buf))
180 continue;
Heinrich Schuchardtba9c44e2020-11-20 12:55:22 +0100181
Stefan Herbrechtsmeier4052d1f2023-03-17 13:04:13 +0100182 goto out_ret;
Heinrich Schuchardtba9c44e2020-11-20 12:55:22 +0100183 }
184 return -EIO;
Stefan Herbrechtsmeier4052d1f2023-03-17 13:04:13 +0100185out_ret:
186 debug("chosen short name: %s\n", buf);
187 /* Each long name directory entry takes 13 characters. */
188 ret = (strlen(filename) + 25) / 13;
Heinrich Schuchardt7afbd602020-11-22 19:19:39 +0100189out:
Heinrich Schuchardtcfb7c2b2021-01-26 00:04:19 +0100190 memcpy(shortname, &dirent, SHORT_NAME_SIZE);
Heinrich Schuchardt7afbd602020-11-22 19:19:39 +0100191 return ret;
Heinrich Schuchardtba9c44e2020-11-20 12:55:22 +0100192}
193
Donggeun Kim8f814002011-10-24 21:15:28 +0000194static int total_sector;
Donggeun Kimcb5f3bc2012-03-22 04:38:55 +0000195static int disk_write(__u32 block, __u32 nr_blocks, void *buf)
Donggeun Kim8f814002011-10-24 21:15:28 +0000196{
Łukasz Majewskid6f23d82015-09-03 14:21:39 +0200197 ulong ret;
198
Simon Glass2ee8ada2016-02-29 15:25:52 -0700199 if (!cur_dev)
Donggeun Kim8f814002011-10-24 21:15:28 +0000200 return -1;
201
Donggeun Kimcb5f3bc2012-03-22 04:38:55 +0000202 if (cur_part_info.start + block + nr_blocks >
203 cur_part_info.start + total_sector) {
Donggeun Kim8f814002011-10-24 21:15:28 +0000204 printf("error: overflow occurs\n");
205 return -1;
206 }
207
Simon Glass2ee8ada2016-02-29 15:25:52 -0700208 ret = blk_dwrite(cur_dev, cur_part_info.start + block, nr_blocks, buf);
Łukasz Majewskid6f23d82015-09-03 14:21:39 +0200209 if (nr_blocks && ret == 0)
210 return -1;
211
212 return ret;
Donggeun Kim8f814002011-10-24 21:15:28 +0000213}
214
Donggeun Kim8f814002011-10-24 21:15:28 +0000215/*
216 * Write fat buffer into block device
217 */
Stefan Brüns751b31d2016-09-11 22:51:40 +0200218static int flush_dirty_fat_buffer(fsdata *mydata)
Donggeun Kim8f814002011-10-24 21:15:28 +0000219{
220 int getsize = FATBUFBLOCKS;
221 __u32 fatlength = mydata->fatlength;
222 __u8 *bufptr = mydata->fatbuf;
223 __u32 startblock = mydata->fatbufnum * FATBUFBLOCKS;
224
Stefan Brüns751b31d2016-09-11 22:51:40 +0200225 debug("debug: evicting %d, dirty: %d\n", mydata->fatbufnum,
226 (int)mydata->fat_dirty);
227
228 if ((!mydata->fat_dirty) || (mydata->fatbufnum == -1))
229 return 0;
230
Stefan Brüns58bf86f2016-12-17 00:27:50 +0100231 /* Cap length if fatlength is not a multiple of FATBUFBLOCKS */
232 if (startblock + getsize > fatlength)
233 getsize = fatlength - startblock;
Donggeun Kim8f814002011-10-24 21:15:28 +0000234
Stefan Brüns58bf86f2016-12-17 00:27:50 +0100235 startblock += mydata->fat_sect;
Donggeun Kim8f814002011-10-24 21:15:28 +0000236
237 /* Write FAT buf */
238 if (disk_write(startblock, getsize, bufptr) < 0) {
239 debug("error: writing FAT blocks\n");
240 return -1;
241 }
242
AKASHI Takahiro49ca96b2018-09-11 15:59:04 +0900243 if (mydata->fats == 2) {
Donggeun Kimaf57ce22011-12-20 18:34:27 +0000244 /* Update corresponding second FAT blocks */
245 startblock += mydata->fatlength;
246 if (disk_write(startblock, getsize, bufptr) < 0) {
247 debug("error: writing second FAT blocks\n");
248 return -1;
249 }
250 }
Stefan Brüns751b31d2016-09-11 22:51:40 +0200251 mydata->fat_dirty = 0;
Donggeun Kimaf57ce22011-12-20 18:34:27 +0000252
Donggeun Kim8f814002011-10-24 21:15:28 +0000253 return 0;
254}
255
Heinrich Schuchardt5bc30a52020-11-22 09:58:44 +0100256/**
257 * fat_find_empty_dentries() - find a sequence of available directory entries
258 *
259 * @itr: directory iterator
260 * @count: number of directory entries to find
261 * Return: 0 on success or negative error number
262 */
Heinrich Schuchardt524d13a2020-11-22 11:54:22 +0100263static int fat_find_empty_dentries(fat_itr *itr, int count)
Heinrich Schuchardt5bc30a52020-11-22 09:58:44 +0100264{
265 unsigned int cluster;
266 dir_entry *dent;
267 int remaining;
268 unsigned int n = 0;
269 int ret;
270
271 ret = fat_move_to_cluster(itr, itr->start_clust);
272 if (ret)
273 return ret;
274
275 for (;;) {
276 if (!itr->dent) {
277 log_debug("Not enough directory entries available\n");
278 return -ENOSPC;
279 }
Heinrich Schuchardt66ea58c2021-01-21 00:23:33 +0100280 switch (itr->dent->nameext.name[0]) {
Heinrich Schuchardt5bc30a52020-11-22 09:58:44 +0100281 case 0x00:
282 case DELETED_FLAG:
283 if (!n) {
284 /* Remember first deleted directory entry */
285 cluster = itr->clust;
286 dent = itr->dent;
287 remaining = itr->remaining;
288 }
289 ++n;
290 if (n == count)
291 goto out;
292 break;
293 default:
294 n = 0;
295 break;
296 }
297
298 next_dent(itr);
299 if (!itr->dent &&
300 (!itr->is_root || itr->fsdata->fatsize == 32) &&
301 new_dir_table(itr))
302 return -ENOSPC;
303 }
304out:
305 /* Position back to first directory entry */
306 if (itr->clust != cluster) {
307 ret = fat_move_to_cluster(itr, cluster);
308 if (ret)
309 return ret;
310 }
311 itr->dent = dent;
312 itr->remaining = remaining;
313 return 0;
314}
315
Donggeun Kim8f814002011-10-24 21:15:28 +0000316/*
Donggeun Kim8f814002011-10-24 21:15:28 +0000317 * Set the file name information from 'name' into 'slotptr',
318 */
319static int str2slot(dir_slot *slotptr, const char *name, int *idx)
320{
321 int j, end_idx = 0;
322
323 for (j = 0; j <= 8; j += 2) {
324 if (name[*idx] == 0x00) {
325 slotptr->name0_4[j] = 0;
326 slotptr->name0_4[j + 1] = 0;
327 end_idx++;
328 goto name0_4;
329 }
330 slotptr->name0_4[j] = name[*idx];
331 (*idx)++;
332 end_idx++;
333 }
334 for (j = 0; j <= 10; j += 2) {
335 if (name[*idx] == 0x00) {
336 slotptr->name5_10[j] = 0;
337 slotptr->name5_10[j + 1] = 0;
338 end_idx++;
339 goto name5_10;
340 }
341 slotptr->name5_10[j] = name[*idx];
342 (*idx)++;
343 end_idx++;
344 }
345 for (j = 0; j <= 2; j += 2) {
346 if (name[*idx] == 0x00) {
347 slotptr->name11_12[j] = 0;
348 slotptr->name11_12[j + 1] = 0;
349 end_idx++;
350 goto name11_12;
351 }
352 slotptr->name11_12[j] = name[*idx];
353 (*idx)++;
354 end_idx++;
355 }
356
357 if (name[*idx] == 0x00)
358 return 1;
359
360 return 0;
361/* Not used characters are filled with 0xff 0xff */
362name0_4:
363 for (; end_idx < 5; end_idx++) {
364 slotptr->name0_4[end_idx * 2] = 0xff;
365 slotptr->name0_4[end_idx * 2 + 1] = 0xff;
366 }
367 end_idx = 5;
368name5_10:
369 end_idx -= 5;
370 for (; end_idx < 6; end_idx++) {
371 slotptr->name5_10[end_idx * 2] = 0xff;
372 slotptr->name5_10[end_idx * 2 + 1] = 0xff;
373 }
374 end_idx = 11;
375name11_12:
376 end_idx -= 11;
377 for (; end_idx < 2; end_idx++) {
378 slotptr->name11_12[end_idx * 2] = 0xff;
379 slotptr->name11_12[end_idx * 2 + 1] = 0xff;
380 }
381
382 return 1;
383}
384
AKASHI Takahiroa2c0bd02019-05-24 14:10:36 +0900385static int flush_dir(fat_itr *itr);
Donggeun Kim8f814002011-10-24 21:15:28 +0000386
Heinrich Schuchardtac4ab752020-11-21 08:32:50 +0100387/**
388 * fill_dir_slot() - fill directory entries for long name
389 *
390 * @itr: directory iterator
391 * @l_name: long name
392 * @shortname: short name
393 * Return: 0 for success, -errno otherwise
Donggeun Kim8f814002011-10-24 21:15:28 +0000394 */
AKASHI Takahiro49ca96b2018-09-11 15:59:04 +0900395static int
Heinrich Schuchardtac4ab752020-11-21 08:32:50 +0100396fill_dir_slot(fat_itr *itr, const char *l_name, const char *shortname)
Donggeun Kim8f814002011-10-24 21:15:28 +0000397{
Tien Fong Chee0117dbe2016-07-27 23:08:56 -0700398 __u8 temp_dir_slot_buffer[MAX_LFN_SLOT * sizeof(dir_slot)];
399 dir_slot *slotptr = (dir_slot *)temp_dir_slot_buffer;
Anatolij Gustschinf4f9d5d2011-12-15 03:12:14 +0000400 __u8 counter = 0, checksum;
Donggeun Kim8f814002011-10-24 21:15:28 +0000401 int idx = 0, ret;
Donggeun Kim8f814002011-10-24 21:15:28 +0000402
Stefan Brüns6c617d62016-09-11 22:51:39 +0200403 /* Get short file name checksum value */
Heinrich Schuchardt66ea58c2021-01-21 00:23:33 +0100404 checksum = mkcksum((void *)shortname);
Donggeun Kim8f814002011-10-24 21:15:28 +0000405
406 do {
407 memset(slotptr, 0x00, sizeof(dir_slot));
408 ret = str2slot(slotptr, l_name, &idx);
409 slotptr->id = ++counter;
410 slotptr->attr = ATTR_VFAT;
411 slotptr->alias_checksum = checksum;
412 slotptr++;
413 } while (ret == 0);
414
415 slotptr--;
416 slotptr->id |= LAST_LONG_ENTRY_MASK;
417
418 while (counter >= 1) {
AKASHI Takahiro49ca96b2018-09-11 15:59:04 +0900419 memcpy(itr->dent, slotptr, sizeof(dir_slot));
Donggeun Kim8f814002011-10-24 21:15:28 +0000420 slotptr--;
421 counter--;
AKASHI Takahiroa2c0bd02019-05-24 14:10:36 +0900422
Heinrich Schuchardt913339a2021-01-20 22:21:53 +0100423 if (!itr->remaining) {
424 /* Write directory table to device */
425 ret = flush_dir(itr);
426 if (ret)
427 return ret;
428 }
AKASHI Takahiroa2c0bd02019-05-24 14:10:36 +0900429
Heinrich Schuchardt524d13a2020-11-22 11:54:22 +0100430 next_dent(itr);
431 if (!itr->dent)
432 return -EIO;
Donggeun Kim8f814002011-10-24 21:15:28 +0000433 }
434
Donggeun Kim8f814002011-10-24 21:15:28 +0000435 return 0;
436}
437
Donggeun Kim8f814002011-10-24 21:15:28 +0000438/*
Philipp Skadorov16f553d2016-12-15 15:52:53 -0500439 * Set the entry at index 'entry' in a FAT (12/16/32) table.
Donggeun Kim8f814002011-10-24 21:15:28 +0000440 */
441static int set_fatent_value(fsdata *mydata, __u32 entry, __u32 entry_value)
442{
Philipp Skadorov16f553d2016-12-15 15:52:53 -0500443 __u32 bufnum, offset, off16;
444 __u16 val1, val2;
Donggeun Kim8f814002011-10-24 21:15:28 +0000445
446 switch (mydata->fatsize) {
447 case 32:
448 bufnum = entry / FAT32BUFSIZE;
449 offset = entry - bufnum * FAT32BUFSIZE;
450 break;
451 case 16:
452 bufnum = entry / FAT16BUFSIZE;
453 offset = entry - bufnum * FAT16BUFSIZE;
454 break;
Philipp Skadorov16f553d2016-12-15 15:52:53 -0500455 case 12:
456 bufnum = entry / FAT12BUFSIZE;
457 offset = entry - bufnum * FAT12BUFSIZE;
458 break;
Donggeun Kim8f814002011-10-24 21:15:28 +0000459 default:
460 /* Unsupported FAT size */
461 return -1;
462 }
463
464 /* Read a new block of FAT entries into the cache. */
465 if (bufnum != mydata->fatbufnum) {
466 int getsize = FATBUFBLOCKS;
467 __u8 *bufptr = mydata->fatbuf;
468 __u32 fatlength = mydata->fatlength;
469 __u32 startblock = bufnum * FATBUFBLOCKS;
470
Stefan Brüns58bf86f2016-12-17 00:27:50 +0100471 /* Cap length if fatlength is not a multiple of FATBUFBLOCKS */
472 if (startblock + getsize > fatlength)
473 getsize = fatlength - startblock;
Donggeun Kim8f814002011-10-24 21:15:28 +0000474
Stefan Brüns751b31d2016-09-11 22:51:40 +0200475 if (flush_dirty_fat_buffer(mydata) < 0)
476 return -1;
Donggeun Kim8f814002011-10-24 21:15:28 +0000477
Stefan Brüns58bf86f2016-12-17 00:27:50 +0100478 startblock += mydata->fat_sect;
479
Donggeun Kim8f814002011-10-24 21:15:28 +0000480 if (disk_read(startblock, getsize, bufptr) < 0) {
481 debug("Error reading FAT blocks\n");
482 return -1;
483 }
484 mydata->fatbufnum = bufnum;
485 }
486
Stefan Brüns751b31d2016-09-11 22:51:40 +0200487 /* Mark as dirty */
488 mydata->fat_dirty = 1;
489
Donggeun Kim8f814002011-10-24 21:15:28 +0000490 /* Set the actual entry */
491 switch (mydata->fatsize) {
492 case 32:
493 ((__u32 *) mydata->fatbuf)[offset] = cpu_to_le32(entry_value);
494 break;
495 case 16:
496 ((__u16 *) mydata->fatbuf)[offset] = cpu_to_le16(entry_value);
497 break;
Philipp Skadorov16f553d2016-12-15 15:52:53 -0500498 case 12:
499 off16 = (offset * 3) / 4;
500
501 switch (offset & 0x3) {
502 case 0:
503 val1 = cpu_to_le16(entry_value) & 0xfff;
504 ((__u16 *)mydata->fatbuf)[off16] &= ~0xfff;
505 ((__u16 *)mydata->fatbuf)[off16] |= val1;
506 break;
507 case 1:
508 val1 = cpu_to_le16(entry_value) & 0xf;
509 val2 = (cpu_to_le16(entry_value) >> 4) & 0xff;
510
511 ((__u16 *)mydata->fatbuf)[off16] &= ~0xf000;
512 ((__u16 *)mydata->fatbuf)[off16] |= (val1 << 12);
513
514 ((__u16 *)mydata->fatbuf)[off16 + 1] &= ~0xff;
515 ((__u16 *)mydata->fatbuf)[off16 + 1] |= val2;
516 break;
517 case 2:
518 val1 = cpu_to_le16(entry_value) & 0xff;
519 val2 = (cpu_to_le16(entry_value) >> 8) & 0xf;
520
521 ((__u16 *)mydata->fatbuf)[off16] &= ~0xff00;
522 ((__u16 *)mydata->fatbuf)[off16] |= (val1 << 8);
523
524 ((__u16 *)mydata->fatbuf)[off16 + 1] &= ~0xf;
525 ((__u16 *)mydata->fatbuf)[off16 + 1] |= val2;
526 break;
527 case 3:
528 val1 = cpu_to_le16(entry_value) & 0xfff;
529 ((__u16 *)mydata->fatbuf)[off16] &= ~0xfff0;
530 ((__u16 *)mydata->fatbuf)[off16] |= (val1 << 4);
531 break;
532 default:
533 break;
534 }
535
536 break;
Donggeun Kim8f814002011-10-24 21:15:28 +0000537 default:
538 return -1;
539 }
540
541 return 0;
542}
543
544/*
Philipp Skadorov16f553d2016-12-15 15:52:53 -0500545 * Determine the next free cluster after 'entry' in a FAT (12/16/32) table
Stefan Brüns14999402016-09-11 22:51:41 +0200546 * and link it to 'entry'. EOC marker is not set on returned entry.
Donggeun Kim8f814002011-10-24 21:15:28 +0000547 */
548static __u32 determine_fatent(fsdata *mydata, __u32 entry)
549{
550 __u32 next_fat, next_entry = entry + 1;
551
552 while (1) {
Stefan Brüns9f95d812016-12-17 00:27:51 +0100553 next_fat = get_fatent(mydata, next_entry);
Donggeun Kim8f814002011-10-24 21:15:28 +0000554 if (next_fat == 0) {
Stefan Brüns14999402016-09-11 22:51:41 +0200555 /* found free entry, link to entry */
Donggeun Kim8f814002011-10-24 21:15:28 +0000556 set_fatent_value(mydata, entry, next_entry);
557 break;
558 }
559 next_entry++;
560 }
561 debug("FAT%d: entry: %08x, entry_value: %04x\n",
562 mydata->fatsize, entry, next_entry);
563
564 return next_entry;
565}
566
Heinrich Schuchardt9fb8db42018-10-02 09:30:45 +0200567/**
AKASHI Takahirod98c6742019-05-24 14:10:35 +0900568 * set_sectors() - write data to sectors
Heinrich Schuchardt9fb8db42018-10-02 09:30:45 +0200569 *
AKASHI Takahirod98c6742019-05-24 14:10:35 +0900570 * Write 'size' bytes from 'buffer' into the specified sector.
Heinrich Schuchardt9fb8db42018-10-02 09:30:45 +0200571 *
572 * @mydata: data to be written
AKASHI Takahirod98c6742019-05-24 14:10:35 +0900573 * @startsect: sector to be written to
Heinrich Schuchardt9fb8db42018-10-02 09:30:45 +0200574 * @buffer: data to be written
575 * @size: bytes to be written (but not more than the size of a cluster)
576 * Return: 0 on success, -1 otherwise
Donggeun Kim8f814002011-10-24 21:15:28 +0000577 */
578static int
AKASHI Takahirod98c6742019-05-24 14:10:35 +0900579set_sectors(fsdata *mydata, u32 startsect, u8 *buffer, u32 size)
Donggeun Kim8f814002011-10-24 21:15:28 +0000580{
Benoît Thébaudeauccc945b2015-09-28 15:45:28 +0200581 int ret;
Donggeun Kim8f814002011-10-24 21:15:28 +0000582
AKASHI Takahirod98c6742019-05-24 14:10:35 +0900583 debug("startsect: %d\n", startsect);
Donggeun Kim8f814002011-10-24 21:15:28 +0000584
Benoît Thébaudeauccc945b2015-09-28 15:45:28 +0200585 if ((unsigned long)buffer & (ARCH_DMA_MINALIGN - 1)) {
586 ALLOC_CACHE_ALIGN_BUFFER(__u8, tmpbuf, mydata->sect_size);
587
Heinrich Schuchardtaa9d6ba2018-09-13 19:42:47 +0200588 debug("FAT: Misaligned buffer address (%p)\n", buffer);
Benoît Thébaudeauccc945b2015-09-28 15:45:28 +0200589
590 while (size >= mydata->sect_size) {
591 memcpy(tmpbuf, buffer, mydata->sect_size);
592 ret = disk_write(startsect++, 1, tmpbuf);
593 if (ret != 1) {
594 debug("Error writing data (got %d)\n", ret);
595 return -1;
596 }
597
598 buffer += mydata->sect_size;
599 size -= mydata->sect_size;
600 }
601 } else if (size >= mydata->sect_size) {
Heinrich Schuchardteb3587b2021-01-26 00:14:14 +0100602 u32 nsects;
603
AKASHI Takahirod98c6742019-05-24 14:10:35 +0900604 nsects = size / mydata->sect_size;
605 ret = disk_write(startsect, nsects, buffer);
606 if (ret != nsects) {
Benoît Thébaudeauccc945b2015-09-28 15:45:28 +0200607 debug("Error writing data (got %d)\n", ret);
Wu, Joshb0e38dd2013-07-24 17:55:30 +0800608 return -1;
609 }
Donggeun Kim8f814002011-10-24 21:15:28 +0000610
AKASHI Takahirod98c6742019-05-24 14:10:35 +0900611 startsect += nsects;
612 buffer += nsects * mydata->sect_size;
613 size -= nsects * mydata->sect_size;
Benoît Thébaudeauccc945b2015-09-28 15:45:28 +0200614 }
Donggeun Kim8f814002011-10-24 21:15:28 +0000615
Benoît Thébaudeauccc945b2015-09-28 15:45:28 +0200616 if (size) {
617 ALLOC_CACHE_ALIGN_BUFFER(__u8, tmpbuf, mydata->sect_size);
Heinrich Schuchardt9fb8db42018-10-02 09:30:45 +0200618 /* Do not leak content of stack */
619 memset(tmpbuf, 0, mydata->sect_size);
Benoît Thébaudeauccc945b2015-09-28 15:45:28 +0200620 memcpy(tmpbuf, buffer, size);
621 ret = disk_write(startsect, 1, tmpbuf);
622 if (ret != 1) {
623 debug("Error writing data (got %d)\n", ret);
Donggeun Kim8f814002011-10-24 21:15:28 +0000624 return -1;
625 }
Donggeun Kim8f814002011-10-24 21:15:28 +0000626 }
627
628 return 0;
629}
630
AKASHI Takahirod98c6742019-05-24 14:10:35 +0900631/**
632 * set_cluster() - write data to cluster
633 *
634 * Write 'size' bytes from 'buffer' into the specified cluster.
635 *
636 * @mydata: data to be written
637 * @clustnum: cluster to be written to
638 * @buffer: data to be written
639 * @size: bytes to be written (but not more than the size of a cluster)
640 * Return: 0 on success, -1 otherwise
641 */
642static int
643set_cluster(fsdata *mydata, u32 clustnum, u8 *buffer, u32 size)
644{
645 return set_sectors(mydata, clust_to_sect(mydata, clustnum),
646 buffer, size);
647}
648
Heinrich Schuchardt913339a2021-01-20 22:21:53 +0100649/**
650 * flush_dir() - flush directory
651 *
652 * @itr: directory iterator
653 * Return: 0 for success, -EIO on error
654 */
655static int flush_dir(fat_itr *itr)
AKASHI Takahirod98c6742019-05-24 14:10:35 +0900656{
657 fsdata *mydata = itr->fsdata;
658 u32 startsect, sect_offset, nsects;
Heinrich Schuchardt913339a2021-01-20 22:21:53 +0100659 int ret;
AKASHI Takahirod98c6742019-05-24 14:10:35 +0900660
Heinrich Schuchardt913339a2021-01-20 22:21:53 +0100661 if (!itr->is_root || mydata->fatsize == 32) {
662 ret = set_cluster(mydata, itr->clust, itr->block,
663 mydata->clust_size * mydata->sect_size);
664 goto out;
665 }
AKASHI Takahirod98c6742019-05-24 14:10:35 +0900666
667 sect_offset = itr->clust * mydata->clust_size;
668 startsect = mydata->rootdir_sect + sect_offset;
669 /* do not write past the end of rootdir */
670 nsects = min_t(u32, mydata->clust_size,
671 mydata->rootdir_size - sect_offset);
672
Heinrich Schuchardt913339a2021-01-20 22:21:53 +0100673 ret = set_sectors(mydata, startsect, itr->block,
674 nsects * mydata->sect_size);
675out:
676 if (ret) {
677 log_err("Error: writing directory entry\n");
678 return -EIO;
679 }
680 return 0;
AKASHI Takahirod98c6742019-05-24 14:10:35 +0900681}
682
AKASHI Takahirob07f7042018-09-11 15:59:06 +0900683/*
684 * Read and modify data on existing and consecutive cluster blocks
685 */
686static int
687get_set_cluster(fsdata *mydata, __u32 clustnum, loff_t pos, __u8 *buffer,
688 loff_t size, loff_t *gotsize)
689{
Heinrich Schuchardt8a3ac6e2020-07-06 07:48:14 +0200690 static u8 *tmpbuf_cluster;
AKASHI Takahirob07f7042018-09-11 15:59:06 +0900691 unsigned int bytesperclust = mydata->clust_size * mydata->sect_size;
692 __u32 startsect;
Heinrich Schuchardtf0be00e2023-07-30 16:44:04 +0200693 loff_t clustcount, wsize;
694 int i, ret;
AKASHI Takahirob07f7042018-09-11 15:59:06 +0900695
696 *gotsize = 0;
697 if (!size)
698 return 0;
699
Heinrich Schuchardt8a3ac6e2020-07-06 07:48:14 +0200700 if (!tmpbuf_cluster) {
701 tmpbuf_cluster = memalign(ARCH_DMA_MINALIGN, MAX_CLUSTSIZE);
702 if (!tmpbuf_cluster)
703 return -1;
704 }
705
AKASHI Takahirob07f7042018-09-11 15:59:06 +0900706 assert(pos < bytesperclust);
707 startsect = clust_to_sect(mydata, clustnum);
708
709 debug("clustnum: %d, startsect: %d, pos: %lld\n",
710 clustnum, startsect, pos);
711
712 /* partial write at beginning */
713 if (pos) {
714 wsize = min(bytesperclust - pos, size);
715 ret = disk_read(startsect, mydata->clust_size, tmpbuf_cluster);
716 if (ret != mydata->clust_size) {
717 debug("Error reading data (got %d)\n", ret);
718 return -1;
719 }
720
721 memcpy(tmpbuf_cluster + pos, buffer, wsize);
722 ret = disk_write(startsect, mydata->clust_size, tmpbuf_cluster);
723 if (ret != mydata->clust_size) {
724 debug("Error writing data (got %d)\n", ret);
725 return -1;
726 }
727
728 size -= wsize;
729 buffer += wsize;
730 *gotsize += wsize;
731
732 startsect += mydata->clust_size;
733
734 if (!size)
735 return 0;
736 }
737
738 /* full-cluster write */
739 if (size >= bytesperclust) {
740 clustcount = lldiv(size, bytesperclust);
741
742 if (!((unsigned long)buffer & (ARCH_DMA_MINALIGN - 1))) {
743 wsize = clustcount * bytesperclust;
744 ret = disk_write(startsect,
745 clustcount * mydata->clust_size,
746 buffer);
747 if (ret != clustcount * mydata->clust_size) {
748 debug("Error writing data (got %d)\n", ret);
749 return -1;
750 }
751
752 size -= wsize;
753 buffer += wsize;
754 *gotsize += wsize;
755
756 startsect += clustcount * mydata->clust_size;
757 } else {
758 for (i = 0; i < clustcount; i++) {
759 memcpy(tmpbuf_cluster, buffer, bytesperclust);
760 ret = disk_write(startsect,
761 mydata->clust_size,
762 tmpbuf_cluster);
763 if (ret != mydata->clust_size) {
764 debug("Error writing data (got %d)\n",
765 ret);
766 return -1;
767 }
768
769 size -= bytesperclust;
770 buffer += bytesperclust;
771 *gotsize += bytesperclust;
772
773 startsect += mydata->clust_size;
774 }
775 }
776 }
777
778 /* partial write at end */
779 if (size) {
780 wsize = size;
781 ret = disk_read(startsect, mydata->clust_size, tmpbuf_cluster);
782 if (ret != mydata->clust_size) {
783 debug("Error reading data (got %d)\n", ret);
784 return -1;
785 }
786 memcpy(tmpbuf_cluster, buffer, wsize);
787 ret = disk_write(startsect, mydata->clust_size, tmpbuf_cluster);
788 if (ret != mydata->clust_size) {
789 debug("Error writing data (got %d)\n", ret);
790 return -1;
791 }
792
793 size -= wsize;
AKASHI Takahirob07f7042018-09-11 15:59:06 +0900794 *gotsize += wsize;
795 }
796
797 assert(!size);
798
799 return 0;
800}
801
Donggeun Kim8f814002011-10-24 21:15:28 +0000802/*
803 * Find the first empty cluster
804 */
805static int find_empty_cluster(fsdata *mydata)
806{
807 __u32 fat_val, entry = 3;
808
809 while (1) {
Stefan Brüns9f95d812016-12-17 00:27:51 +0100810 fat_val = get_fatent(mydata, entry);
Donggeun Kim8f814002011-10-24 21:15:28 +0000811 if (fat_val == 0)
812 break;
813 entry++;
814 }
815
816 return entry;
817}
818
Heinrich Schuchardte09f3e42020-11-26 19:06:55 +0100819/**
820 * new_dir_table() - allocate a cluster for additional directory entries
821 *
822 * @itr: directory iterator
823 * Return: 0 on success, -EIO otherwise
Donggeun Kim8f814002011-10-24 21:15:28 +0000824 */
AKASHI Takahiroa2c0bd02019-05-24 14:10:36 +0900825static int new_dir_table(fat_itr *itr)
Donggeun Kim8f814002011-10-24 21:15:28 +0000826{
AKASHI Takahiro49ca96b2018-09-11 15:59:04 +0900827 fsdata *mydata = itr->fsdata;
Donggeun Kim8f814002011-10-24 21:15:28 +0000828 int dir_newclust = 0;
Heinrich Schuchardte09f3e42020-11-26 19:06:55 +0100829 int dir_oldclust = itr->clust;
AKASHI Takahiro49ca96b2018-09-11 15:59:04 +0900830 unsigned int bytesperclust = mydata->clust_size * mydata->sect_size;
Donggeun Kim8f814002011-10-24 21:15:28 +0000831
Donggeun Kim8f814002011-10-24 21:15:28 +0000832 dir_newclust = find_empty_cluster(mydata);
Heinrich Schuchardte09f3e42020-11-26 19:06:55 +0100833
834 /*
835 * Flush before updating FAT to ensure valid directory structure
836 * in case of failure.
837 */
838 itr->clust = dir_newclust;
839 itr->next_clust = dir_newclust;
840 memset(itr->block, 0x00, bytesperclust);
841 if (flush_dir(itr))
842 return -EIO;
843
844 set_fatent_value(mydata, dir_oldclust, dir_newclust);
Donggeun Kim8f814002011-10-24 21:15:28 +0000845 if (mydata->fatsize == 32)
846 set_fatent_value(mydata, dir_newclust, 0xffffff8);
847 else if (mydata->fatsize == 16)
848 set_fatent_value(mydata, dir_newclust, 0xfff8);
Philipp Skadorov16f553d2016-12-15 15:52:53 -0500849 else if (mydata->fatsize == 12)
850 set_fatent_value(mydata, dir_newclust, 0xff8);
Donggeun Kim8f814002011-10-24 21:15:28 +0000851
Stefan Brüns751b31d2016-09-11 22:51:40 +0200852 if (flush_dirty_fat_buffer(mydata) < 0)
Heinrich Schuchardte09f3e42020-11-26 19:06:55 +0100853 return -EIO;
Donggeun Kim8f814002011-10-24 21:15:28 +0000854
AKASHI Takahiro49ca96b2018-09-11 15:59:04 +0900855 itr->dent = (dir_entry *)itr->block;
856 itr->last_cluster = 1;
857 itr->remaining = bytesperclust / sizeof(dir_entry) - 1;
Donggeun Kim8f814002011-10-24 21:15:28 +0000858
AKASHI Takahiro49ca96b2018-09-11 15:59:04 +0900859 return 0;
Donggeun Kim8f814002011-10-24 21:15:28 +0000860}
861
862/*
863 * Set empty cluster from 'entry' to the end of a file
864 */
865static int clear_fatent(fsdata *mydata, __u32 entry)
866{
867 __u32 fat_val;
868
Philipp Skadorov16f553d2016-12-15 15:52:53 -0500869 while (!CHECK_CLUST(entry, mydata->fatsize)) {
Stefan Brüns9f95d812016-12-17 00:27:51 +0100870 fat_val = get_fatent(mydata, entry);
Donggeun Kim8f814002011-10-24 21:15:28 +0000871 if (fat_val != 0)
872 set_fatent_value(mydata, entry, 0);
873 else
874 break;
875
Donggeun Kim8f814002011-10-24 21:15:28 +0000876 entry = fat_val;
877 }
878
879 /* Flush fat buffer */
Stefan Brüns751b31d2016-09-11 22:51:40 +0200880 if (flush_dirty_fat_buffer(mydata) < 0)
Donggeun Kim8f814002011-10-24 21:15:28 +0000881 return -1;
882
883 return 0;
884}
885
886/*
AKASHI Takahiroed8b1e42018-09-11 15:59:05 +0900887 * Set start cluster in directory entry
888 */
889static void set_start_cluster(const fsdata *mydata, dir_entry *dentptr,
890 __u32 start_cluster)
891{
892 if (mydata->fatsize == 32)
893 dentptr->starthi =
894 cpu_to_le16((start_cluster & 0xffff0000) >> 16);
895 dentptr->start = cpu_to_le16(start_cluster & 0xffff);
896}
897
898/*
899 * Check whether adding a file makes the file system to
900 * exceed the size of the block device
901 * Return -1 when overflow occurs, otherwise return 0
902 */
903static int check_overflow(fsdata *mydata, __u32 clustnum, loff_t size)
904{
905 __u32 startsect, sect_num, offset;
906
907 if (clustnum > 0)
908 startsect = clust_to_sect(mydata, clustnum);
909 else
910 startsect = mydata->rootdir_sect;
911
912 sect_num = div_u64_rem(size, mydata->sect_size, &offset);
913
914 if (offset != 0)
915 sect_num++;
916
917 if (startsect + sect_num > total_sector)
918 return -1;
919 return 0;
920}
921
922/*
Donggeun Kim8f814002011-10-24 21:15:28 +0000923 * Write at most 'maxsize' bytes from 'buffer' into
924 * the file associated with 'dentptr'
Suriyan Ramasami441c2232014-11-17 14:39:35 -0800925 * Update the number of bytes written in *gotsize and return 0
926 * or return -1 on fatal errors.
Donggeun Kim8f814002011-10-24 21:15:28 +0000927 */
928static int
AKASHI Takahiroed8b1e42018-09-11 15:59:05 +0900929set_contents(fsdata *mydata, dir_entry *dentptr, loff_t pos, __u8 *buffer,
930 loff_t maxsize, loff_t *gotsize)
Donggeun Kim8f814002011-10-24 21:15:28 +0000931{
Donggeun Kim8f814002011-10-24 21:15:28 +0000932 unsigned int bytesperclust = mydata->clust_size * mydata->sect_size;
933 __u32 curclust = START(dentptr);
934 __u32 endclust = 0, newclust = 0;
Heinrich Schuchardtdb538a92019-02-25 19:42:48 +0100935 u64 cur_pos, filesize;
936 loff_t offset, actsize, wsize;
Donggeun Kim8f814002011-10-24 21:15:28 +0000937
Suriyan Ramasami441c2232014-11-17 14:39:35 -0800938 *gotsize = 0;
AKASHI Takahirob07f7042018-09-11 15:59:06 +0900939 filesize = pos + maxsize;
Donggeun Kim8f814002011-10-24 21:15:28 +0000940
Suriyan Ramasami441c2232014-11-17 14:39:35 -0800941 debug("%llu bytes\n", filesize);
Donggeun Kim8f814002011-10-24 21:15:28 +0000942
AKASHI Takahirob07f7042018-09-11 15:59:06 +0900943 if (!filesize) {
944 if (!curclust)
945 return 0;
946 if (!CHECK_CLUST(curclust, mydata->fatsize) ||
947 IS_LAST_CLUST(curclust, mydata->fatsize)) {
948 clear_fatent(mydata, curclust);
949 set_start_cluster(mydata, dentptr, 0);
950 return 0;
951 }
952 debug("curclust: 0x%x\n", curclust);
953 debug("Invalid FAT entry\n");
954 return -1;
955 }
956
957 if (!curclust) {
958 assert(pos == 0);
959 goto set_clusters;
960 }
961
962 /* go to cluster at pos */
963 cur_pos = bytesperclust;
964 while (1) {
965 if (pos <= cur_pos)
966 break;
967 if (IS_LAST_CLUST(curclust, mydata->fatsize))
968 break;
969
970 newclust = get_fatent(mydata, curclust);
971 if (!IS_LAST_CLUST(newclust, mydata->fatsize) &&
972 CHECK_CLUST(newclust, mydata->fatsize)) {
973 debug("curclust: 0x%x\n", curclust);
974 debug("Invalid FAT entry\n");
Benoît Thébaudeau8fed7d32015-09-28 15:45:32 +0200975 return -1;
976 }
AKASHI Takahirob07f7042018-09-11 15:59:06 +0900977
978 cur_pos += bytesperclust;
979 curclust = newclust;
980 }
981 if (IS_LAST_CLUST(curclust, mydata->fatsize)) {
982 assert(pos == cur_pos);
983 goto set_clusters;
984 }
985
986 assert(pos < cur_pos);
987 cur_pos -= bytesperclust;
988
989 /* overwrite */
990 assert(IS_LAST_CLUST(curclust, mydata->fatsize) ||
991 !CHECK_CLUST(curclust, mydata->fatsize));
992
993 while (1) {
994 /* search for allocated consecutive clusters */
995 actsize = bytesperclust;
996 endclust = curclust;
997 while (1) {
998 if (filesize <= (cur_pos + actsize))
999 break;
1000
1001 newclust = get_fatent(mydata, endclust);
1002
Marek Szyprowski2f241672019-12-02 12:11:13 +01001003 if (newclust != endclust + 1)
1004 break;
AKASHI Takahirob07f7042018-09-11 15:59:06 +09001005 if (IS_LAST_CLUST(newclust, mydata->fatsize))
1006 break;
1007 if (CHECK_CLUST(newclust, mydata->fatsize)) {
1008 debug("curclust: 0x%x\n", curclust);
1009 debug("Invalid FAT entry\n");
1010 return -1;
1011 }
1012
1013 actsize += bytesperclust;
1014 endclust = newclust;
1015 }
1016
1017 /* overwrite to <curclust..endclust> */
1018 if (pos < cur_pos)
1019 offset = 0;
1020 else
1021 offset = pos - cur_pos;
Marek Szyprowski3a867ce2019-12-02 12:11:14 +01001022 wsize = min_t(unsigned long long, actsize, filesize - cur_pos);
1023 wsize -= offset;
1024
AKASHI Takahirob07f7042018-09-11 15:59:06 +09001025 if (get_set_cluster(mydata, curclust, offset,
1026 buffer, wsize, &actsize)) {
1027 printf("Error get-and-setting cluster\n");
1028 return -1;
1029 }
1030 buffer += wsize;
1031 *gotsize += wsize;
1032 cur_pos += offset + wsize;
1033
1034 if (filesize <= cur_pos)
1035 break;
1036
AKASHI Takahirob07f7042018-09-11 15:59:06 +09001037 if (IS_LAST_CLUST(newclust, mydata->fatsize))
1038 /* no more clusters */
1039 break;
1040
1041 curclust = newclust;
1042 }
1043
1044 if (filesize <= cur_pos) {
1045 /* no more write */
1046 newclust = get_fatent(mydata, endclust);
1047 if (!IS_LAST_CLUST(newclust, mydata->fatsize)) {
1048 /* truncate the rest */
1049 clear_fatent(mydata, newclust);
1050
1051 /* Mark end of file in FAT */
1052 if (mydata->fatsize == 12)
1053 newclust = 0xfff;
1054 else if (mydata->fatsize == 16)
1055 newclust = 0xffff;
1056 else if (mydata->fatsize == 32)
1057 newclust = 0xfffffff;
1058 set_fatent_value(mydata, endclust, newclust);
1059 }
1060
1061 return 0;
AKASHI Takahiroed8b1e42018-09-11 15:59:05 +09001062 }
1063
AKASHI Takahirob07f7042018-09-11 15:59:06 +09001064 curclust = endclust;
1065 filesize -= cur_pos;
Heinrich Schuchardtdb538a92019-02-25 19:42:48 +01001066 assert(!do_div(cur_pos, bytesperclust));
AKASHI Takahiroed8b1e42018-09-11 15:59:05 +09001067
AKASHI Takahirob07f7042018-09-11 15:59:06 +09001068set_clusters:
1069 /* allocate and write */
1070 assert(!pos);
1071
1072 /* Assure that curclust is valid */
1073 if (!curclust) {
1074 curclust = find_empty_cluster(mydata);
1075 set_start_cluster(mydata, dentptr, curclust);
1076 } else {
1077 newclust = get_fatent(mydata, curclust);
1078
1079 if (IS_LAST_CLUST(newclust, mydata->fatsize)) {
1080 newclust = determine_fatent(mydata, curclust);
1081 set_fatent_value(mydata, curclust, newclust);
1082 curclust = newclust;
1083 } else {
1084 debug("error: something wrong\n");
1085 return -1;
1086 }
1087 }
1088
1089 /* TODO: already partially written */
AKASHI Takahiroed8b1e42018-09-11 15:59:05 +09001090 if (check_overflow(mydata, curclust, filesize)) {
1091 printf("Error: no space left: %llu\n", filesize);
1092 return -1;
Benoît Thébaudeau8fed7d32015-09-28 15:45:32 +02001093 }
1094
Donggeun Kim8f814002011-10-24 21:15:28 +00001095 actsize = bytesperclust;
1096 endclust = curclust;
1097 do {
1098 /* search for consecutive clusters */
1099 while (actsize < filesize) {
1100 newclust = determine_fatent(mydata, endclust);
1101
1102 if ((newclust - 1) != endclust)
AKASHI Takahiroed8b1e42018-09-11 15:59:05 +09001103 /* write to <curclust..endclust> */
Donggeun Kim8f814002011-10-24 21:15:28 +00001104 goto getit;
1105
1106 if (CHECK_CLUST(newclust, mydata->fatsize)) {
Benoît Thébaudeaue0b86942015-09-28 15:45:30 +02001107 debug("newclust: 0x%x\n", newclust);
Donggeun Kim8f814002011-10-24 21:15:28 +00001108 debug("Invalid FAT entry\n");
Suriyan Ramasami441c2232014-11-17 14:39:35 -08001109 return 0;
Donggeun Kim8f814002011-10-24 21:15:28 +00001110 }
1111 endclust = newclust;
1112 actsize += bytesperclust;
1113 }
Donggeun Kim8f814002011-10-24 21:15:28 +00001114
1115 /* set remaining bytes */
Donggeun Kim8f814002011-10-24 21:15:28 +00001116 actsize = filesize;
Heinrich Schuchardt9fb8db42018-10-02 09:30:45 +02001117 if (set_cluster(mydata, curclust, buffer, (u32)actsize) != 0) {
Donggeun Kim8f814002011-10-24 21:15:28 +00001118 debug("error: writing cluster\n");
1119 return -1;
1120 }
Suriyan Ramasami441c2232014-11-17 14:39:35 -08001121 *gotsize += actsize;
Donggeun Kim8f814002011-10-24 21:15:28 +00001122
1123 /* Mark end of file in FAT */
Philipp Skadorov16f553d2016-12-15 15:52:53 -05001124 if (mydata->fatsize == 12)
1125 newclust = 0xfff;
1126 else if (mydata->fatsize == 16)
Donggeun Kim8f814002011-10-24 21:15:28 +00001127 newclust = 0xffff;
1128 else if (mydata->fatsize == 32)
1129 newclust = 0xfffffff;
1130 set_fatent_value(mydata, endclust, newclust);
1131
Suriyan Ramasami441c2232014-11-17 14:39:35 -08001132 return 0;
Donggeun Kim8f814002011-10-24 21:15:28 +00001133getit:
Heinrich Schuchardt9fb8db42018-10-02 09:30:45 +02001134 if (set_cluster(mydata, curclust, buffer, (u32)actsize) != 0) {
Donggeun Kim8f814002011-10-24 21:15:28 +00001135 debug("error: writing cluster\n");
1136 return -1;
1137 }
Suriyan Ramasami441c2232014-11-17 14:39:35 -08001138 *gotsize += actsize;
Donggeun Kim8f814002011-10-24 21:15:28 +00001139 filesize -= actsize;
1140 buffer += actsize;
1141
Benoît Thébaudeaue0b86942015-09-28 15:45:30 +02001142 if (CHECK_CLUST(newclust, mydata->fatsize)) {
1143 debug("newclust: 0x%x\n", newclust);
Donggeun Kim8f814002011-10-24 21:15:28 +00001144 debug("Invalid FAT entry\n");
Suriyan Ramasami441c2232014-11-17 14:39:35 -08001145 return 0;
Donggeun Kim8f814002011-10-24 21:15:28 +00001146 }
1147 actsize = bytesperclust;
1148 curclust = endclust = newclust;
1149 } while (1);
Donggeun Kim8f814002011-10-24 21:15:28 +00001150
AKASHI Takahiroed8b1e42018-09-11 15:59:05 +09001151 return 0;
Benoît Thébaudeau8fed7d32015-09-28 15:45:32 +02001152}
1153
Heinrich Schuchardt7afbd602020-11-22 19:19:39 +01001154/**
Heinrich Schuchardtcab43b02024-04-09 22:06:07 +02001155 * dentry_set_time() - set change time
1156 *
1157 * @dentptr: directory entry
1158 */
1159static void dentry_set_time(dir_entry *dentptr)
1160{
1161 if (CONFIG_IS_ENABLED(DM_RTC)) {
1162 struct udevice *dev;
1163 struct rtc_time tm;
1164 u16 date;
1165 u16 time;
1166
1167 uclass_first_device(UCLASS_RTC, &dev);
1168 if (!dev)
1169 goto err;
1170 if (dm_rtc_get(dev, &tm))
1171 goto err;
1172 if (tm.tm_year < 1980 || tm.tm_year > 2107)
1173 goto err;
1174 date = (tm.tm_mday & 0x1f) |
1175 ((tm.tm_mon & 0xf) << 5) |
1176 ((tm.tm_year - 1980) << 9);
1177 time = (tm.tm_sec > 1) |
1178 ((tm.tm_min & 0x3f) << 5) |
1179 (tm.tm_hour << 11);
1180 dentptr->date = date;
1181 dentptr->time = time;
1182 return;
1183 }
1184err:
1185 dentptr->date = 0x2821; /* 2000-01-01 */
1186 dentptr->time = 0;
1187}
1188
1189/**
Heinrich Schuchardt7afbd602020-11-22 19:19:39 +01001190 * fill_dentry() - fill directory entry with shortname
1191 *
1192 * @mydata: private filesystem parameters
1193 * @dentptr: directory entry
1194 * @shortname: chosen short name
1195 * @start_cluster: first cluster of file
1196 * @size: file size
1197 * @attr: file attributes
Benoît Thébaudeau8fed7d32015-09-28 15:45:32 +02001198 */
1199static void fill_dentry(fsdata *mydata, dir_entry *dentptr,
Heinrich Schuchardt7afbd602020-11-22 19:19:39 +01001200 const char *shortname, __u32 start_cluster, __u32 size, __u8 attr)
Benoît Thébaudeau8fed7d32015-09-28 15:45:32 +02001201{
Heinrich Schuchardt7afbd602020-11-22 19:19:39 +01001202 memset(dentptr, 0, sizeof(*dentptr));
1203
Benoît Thébaudeau8fed7d32015-09-28 15:45:32 +02001204 set_start_cluster(mydata, dentptr, start_cluster);
Donggeun Kim8f814002011-10-24 21:15:28 +00001205 dentptr->size = cpu_to_le32(size);
1206
1207 dentptr->attr = attr;
1208
Heinrich Schuchardtcab43b02024-04-09 22:06:07 +02001209 /* Set change date */
1210 dentry_set_time(dentptr);
1211 /* Set creation date */
1212 dentptr->cdate = dentptr->date;
1213 dentptr->ctime = dentptr->time;
1214
Heinrich Schuchardt66ea58c2021-01-21 00:23:33 +01001215 memcpy(&dentptr->nameext, shortname, SHORT_NAME_SIZE);
Donggeun Kim8f814002011-10-24 21:15:28 +00001216}
1217
Heinrich Schuchardt7a3f6102020-11-26 16:10:01 +01001218/**
Gabriel Dalimonte4b93d6e2025-02-17 13:26:44 -05001219 * fat_itr_parent() - modifies the iterator to the parent directory of the
1220 * current iterator.
1221 *
1222 * @itr: iterator positioned anywhere in a directory
1223 * @Return: 0 if the iterator is in the parent directory, -errno otherwise
1224 */
1225static int fat_itr_parent(fat_itr *itr)
1226{
1227 int ret;
1228
1229 if (itr->is_root)
1230 return -EIO;
1231
1232 /* ensure iterator is at the first directory entry */
1233 ret = fat_move_to_cluster(itr, itr->start_clust);
1234 if (ret)
1235 return ret;
1236
1237 return fat_itr_resolve(itr, "..", TYPE_DIR);
1238}
1239
1240/**
Gabriel Dalimonted1cc8dc2025-02-17 13:26:42 -05001241 * create_link() - inserts a directory entry for a file or directory
1242 *
1243 * @itr: directory iterator
1244 * @basename: file name
1245 * @clust: cluster number the new directory entry should point to. Use 0
1246 * if no cluster is assigned yet
1247 * @size: file size
1248 * @attr: file attributes
1249 * Return: 0 for success
1250 */
1251static int create_link(fat_itr *itr, char *basename, __u32 clust, __u32 size,
1252 __u8 attr)
1253{
1254 char shortname[SHORT_NAME_SIZE];
1255 int ndent;
1256 int ret;
1257
1258 /* Check if long name is needed */
1259 ndent = set_name(itr, basename, shortname);
1260 if (ndent < 0)
1261 return ndent;
1262 ret = fat_find_empty_dentries(itr, ndent);
1263 if (ret)
1264 return ret;
1265 if (ndent > 1) {
1266 /* Set long name entries */
1267 ret = fill_dir_slot(itr, basename, shortname);
1268 if (ret)
1269 return ret;
1270 }
1271
1272 fill_dentry(itr->fsdata, itr->dent, shortname, clust, size, attr);
1273
1274 return 0;
1275}
1276
1277/**
Heinrich Schuchardt7a3f6102020-11-26 16:10:01 +01001278 * find_directory_entry() - find a directory entry by filename
1279 *
1280 * @itr: directory iterator
1281 * @filename: name of file to find
1282 * Return: directory entry or NULL
Donggeun Kim8f814002011-10-24 21:15:28 +00001283 */
AKASHI Takahiro49ca96b2018-09-11 15:59:04 +09001284static dir_entry *find_directory_entry(fat_itr *itr, char *filename)
Donggeun Kim8f814002011-10-24 21:15:28 +00001285{
AKASHI Takahiro49ca96b2018-09-11 15:59:04 +09001286 int match = 0;
Donggeun Kim8f814002011-10-24 21:15:28 +00001287
AKASHI Takahiro49ca96b2018-09-11 15:59:04 +09001288 while (fat_itr_next(itr)) {
1289 /* check both long and short name: */
1290 if (!strcasecmp(filename, itr->name))
1291 match = 1;
1292 else if (itr->name != itr->s_name &&
1293 !strcasecmp(filename, itr->s_name))
1294 match = 1;
Donggeun Kim8f814002011-10-24 21:15:28 +00001295
AKASHI Takahiro49ca96b2018-09-11 15:59:04 +09001296 if (!match)
1297 continue;
Donggeun Kim8f814002011-10-24 21:15:28 +00001298
Heinrich Schuchardt66ea58c2021-01-21 00:23:33 +01001299 if (itr->dent->nameext.name[0] == '\0')
Donggeun Kim8f814002011-10-24 21:15:28 +00001300 return NULL;
AKASHI Takahiro49ca96b2018-09-11 15:59:04 +09001301 else
1302 return itr->dent;
1303 }
Donggeun Kim8f814002011-10-24 21:15:28 +00001304
AKASHI Takahiro49ca96b2018-09-11 15:59:04 +09001305 return NULL;
1306}
Donggeun Kim8f814002011-10-24 21:15:28 +00001307
AKASHI Takahiro49ca96b2018-09-11 15:59:04 +09001308static int split_filename(char *filename, char **dirname, char **basename)
1309{
1310 char *p, *last_slash, *last_slash_cont;
Donggeun Kim8f814002011-10-24 21:15:28 +00001311
AKASHI Takahiro49ca96b2018-09-11 15:59:04 +09001312again:
1313 p = filename;
1314 last_slash = NULL;
1315 last_slash_cont = NULL;
1316 while (*p) {
1317 if (ISDIRDELIM(*p)) {
1318 last_slash = p;
1319 last_slash_cont = p;
1320 /* continuous slashes */
1321 while (ISDIRDELIM(*p))
1322 last_slash_cont = p++;
1323 if (!*p)
1324 break;
Donggeun Kim8f814002011-10-24 21:15:28 +00001325 }
AKASHI Takahiro49ca96b2018-09-11 15:59:04 +09001326 p++;
1327 }
Wu, Josh675b23c2014-05-08 16:14:07 +08001328
AKASHI Takahiro49ca96b2018-09-11 15:59:04 +09001329 if (last_slash) {
1330 if (last_slash_cont == (filename + strlen(filename) - 1)) {
1331 /* remove trailing slashes */
1332 *last_slash = '\0';
1333 goto again;
Wu, Josh675b23c2014-05-08 16:14:07 +08001334 }
1335
AKASHI Takahiro49ca96b2018-09-11 15:59:04 +09001336 if (last_slash == filename) {
1337 /* avoid ""(null) directory */
1338 *dirname = "/";
1339 } else {
1340 *last_slash = '\0';
1341 *dirname = filename;
Donggeun Kim8f814002011-10-24 21:15:28 +00001342 }
AKASHI Takahiro49ca96b2018-09-11 15:59:04 +09001343
1344 *last_slash_cont = '\0';
Heinrich Schuchardt2e1b17b2021-01-30 14:12:10 +01001345 filename = last_slash_cont + 1;
AKASHI Takahiro49ca96b2018-09-11 15:59:04 +09001346 } else {
1347 *dirname = "/"; /* root by default */
Heinrich Schuchardt2e1b17b2021-01-30 14:12:10 +01001348 }
1349
1350 /*
1351 * The FAT32 File System Specification v1.03 requires leading and
1352 * trailing spaces as well as trailing periods to be ignored.
1353 */
1354 for (; *filename == ' '; ++filename)
1355 ;
1356
1357 /* Keep special entries '.' and '..' */
1358 if (filename[0] == '.' &&
1359 (!filename[1] || (filename[1] == '.' && !filename[2])))
1360 goto done;
1361
1362 /* Remove trailing periods and spaces */
1363 for (p = filename + strlen(filename) - 1; p >= filename; --p) {
1364 switch (*p) {
1365 case ' ':
1366 case '.':
1367 *p = 0;
1368 break;
1369 default:
1370 goto done;
1371 }
Donggeun Kim8f814002011-10-24 21:15:28 +00001372 }
1373
Heinrich Schuchardt2e1b17b2021-01-30 14:12:10 +01001374done:
1375 *basename = filename;
1376
AKASHI Takahiro49ca96b2018-09-11 15:59:04 +09001377 return 0;
Donggeun Kim8f814002011-10-24 21:15:28 +00001378}
1379
Heinrich Schuchardt58587212019-05-12 09:59:18 +02001380/**
1381 * normalize_longname() - check long file name and convert to lower case
1382 *
1383 * We assume here that the FAT file system is using an 8bit code page.
1384 * Linux typically uses CP437, EDK2 assumes CP1250.
1385 *
1386 * @l_filename: preallocated buffer receiving the normalized name
1387 * @filename: filename to normalize
1388 * Return: 0 on success, -1 on failure
1389 */
AKASHI Takahiroc83df1a2018-09-11 15:59:02 +09001390static int normalize_longname(char *l_filename, const char *filename)
1391{
Heinrich Schuchardt58587212019-05-12 09:59:18 +02001392 const char *p, illegal[] = "<>:\"/\\|?*";
Heinrich Schuchardtb36d5462021-01-30 11:08:21 +01001393 size_t len;
AKASHI Takahiroc83df1a2018-09-11 15:59:02 +09001394
Heinrich Schuchardtb36d5462021-01-30 11:08:21 +01001395 len = strlen(filename);
1396 if (!len || len >= VFAT_MAXLEN_BYTES || filename[len - 1] == '.')
AKASHI Takahiroc83df1a2018-09-11 15:59:02 +09001397 return -1;
AKASHI Takahiroc83df1a2018-09-11 15:59:02 +09001398
Heinrich Schuchardt58587212019-05-12 09:59:18 +02001399 for (p = filename; *p; ++p) {
1400 if ((unsigned char)*p < 0x20)
1401 return -1;
1402 if (strchr(illegal, *p))
1403 return -1;
1404 }
AKASHI Takahiroc83df1a2018-09-11 15:59:02 +09001405
Heinrich Schuchardt58587212019-05-12 09:59:18 +02001406 strcpy(l_filename, filename);
1407 downcase(l_filename, VFAT_MAXLEN_BYTES);
AKASHI Takahiroc83df1a2018-09-11 15:59:02 +09001408
1409 return 0;
1410}
1411
AKASHI Takahiroed8b1e42018-09-11 15:59:05 +09001412int file_fat_write_at(const char *filename, loff_t pos, void *buffer,
1413 loff_t size, loff_t *actwrite)
Donggeun Kim8f814002011-10-24 21:15:28 +00001414{
AKASHI Takahiro49ca96b2018-09-11 15:59:04 +09001415 dir_entry *retdent;
AKASHI Takahiro49ca96b2018-09-11 15:59:04 +09001416 fsdata datablock = { .fatbuf = NULL, };
Donggeun Kim8f814002011-10-24 21:15:28 +00001417 fsdata *mydata = &datablock;
AKASHI Takahiro49ca96b2018-09-11 15:59:04 +09001418 fat_itr *itr = NULL;
AKASHI Takahiroc83df1a2018-09-11 15:59:02 +09001419 int ret = -1;
AKASHI Takahiro49ca96b2018-09-11 15:59:04 +09001420 char *filename_copy, *parent, *basename;
Donggeun Kim8f814002011-10-24 21:15:28 +00001421 char l_filename[VFAT_MAXLEN_BYTES];
1422
AKASHI Takahiroed8b1e42018-09-11 15:59:05 +09001423 debug("writing %s\n", filename);
1424
AKASHI Takahiro49ca96b2018-09-11 15:59:04 +09001425 filename_copy = strdup(filename);
1426 if (!filename_copy)
1427 return -ENOMEM;
Donggeun Kim8f814002011-10-24 21:15:28 +00001428
AKASHI Takahiro49ca96b2018-09-11 15:59:04 +09001429 split_filename(filename_copy, &parent, &basename);
1430 if (!strlen(basename)) {
1431 ret = -EINVAL;
1432 goto exit;
Donggeun Kim8f814002011-10-24 21:15:28 +00001433 }
1434
Heinrich Schuchardt502cb892021-01-30 10:01:08 +01001435 if (normalize_longname(l_filename, basename)) {
1436 printf("FAT: illegal filename (%s)\n", basename);
AKASHI Takahiro49ca96b2018-09-11 15:59:04 +09001437 ret = -EINVAL;
1438 goto exit;
Donggeun Kim8f814002011-10-24 21:15:28 +00001439 }
1440
AKASHI Takahiro49ca96b2018-09-11 15:59:04 +09001441 itr = malloc_cache_aligned(sizeof(fat_itr));
1442 if (!itr) {
1443 ret = -ENOMEM;
1444 goto exit;
Donggeun Kim8f814002011-10-24 21:15:28 +00001445 }
1446
AKASHI Takahiro49ca96b2018-09-11 15:59:04 +09001447 ret = fat_itr_root(itr, &datablock);
1448 if (ret)
Donggeun Kim8f814002011-10-24 21:15:28 +00001449 goto exit;
Donggeun Kim8f814002011-10-24 21:15:28 +00001450
AKASHI Takahiro49ca96b2018-09-11 15:59:04 +09001451 total_sector = datablock.total_sect;
1452
1453 ret = fat_itr_resolve(itr, parent, TYPE_DIR);
1454 if (ret) {
1455 printf("%s: doesn't exist (%d)\n", parent, ret);
AKASHI Takahiroc83df1a2018-09-11 15:59:02 +09001456 goto exit;
1457 }
Donggeun Kim8f814002011-10-24 21:15:28 +00001458
AKASHI Takahiro49ca96b2018-09-11 15:59:04 +09001459 retdent = find_directory_entry(itr, l_filename);
1460
Donggeun Kim8f814002011-10-24 21:15:28 +00001461 if (retdent) {
AKASHI Takahiro49ca96b2018-09-11 15:59:04 +09001462 if (fat_itr_isdir(itr)) {
1463 ret = -EISDIR;
1464 goto exit;
1465 }
1466
AKASHI Takahirob07f7042018-09-11 15:59:06 +09001467 /* A file exists */
1468 if (pos == -1)
1469 /* Append to the end */
1470 pos = FAT2CPU32(retdent->size);
1471 if (pos > retdent->size) {
1472 /* No hole allowed */
1473 ret = -EINVAL;
1474 goto exit;
1475 }
1476
AKASHI Takahiroed8b1e42018-09-11 15:59:05 +09001477 /* Update file size in a directory entry */
1478 retdent->size = cpu_to_le32(pos + size);
Heinrich Schuchardtcab43b02024-04-09 22:06:07 +02001479 /* Update change date */
1480 dentry_set_time(retdent);
Donggeun Kim8f814002011-10-24 21:15:28 +00001481 } else {
AKASHI Takahirob07f7042018-09-11 15:59:06 +09001482 if (pos) {
1483 /* No hole allowed */
1484 ret = -EINVAL;
1485 goto exit;
1486 }
1487
Gabriel Dalimonted1cc8dc2025-02-17 13:26:42 -05001488 ret = create_link(itr, basename, 0, size, ATTR_ARCH);
Heinrich Schuchardt524d13a2020-11-22 11:54:22 +01001489 if (ret)
AKASHI Takahiro49ca96b2018-09-11 15:59:04 +09001490 goto exit;
Donggeun Kim8f814002011-10-24 21:15:28 +00001491
AKASHI Takahiro49ca96b2018-09-11 15:59:04 +09001492 retdent = itr->dent;
Benoît Thébaudeaud1d390a2015-09-28 15:45:31 +02001493 }
Donggeun Kim8f814002011-10-24 21:15:28 +00001494
AKASHI Takahiroed8b1e42018-09-11 15:59:05 +09001495 ret = set_contents(mydata, retdent, pos, buffer, size, actwrite);
Benoît Thébaudeaud1d390a2015-09-28 15:45:31 +02001496 if (ret < 0) {
1497 printf("Error: writing contents\n");
AKASHI Takahiro6aa77692018-09-11 15:59:03 +09001498 ret = -EIO;
Benoît Thébaudeaud1d390a2015-09-28 15:45:31 +02001499 goto exit;
1500 }
1501 debug("attempt to write 0x%llx bytes\n", *actwrite);
Donggeun Kim8f814002011-10-24 21:15:28 +00001502
Benoît Thébaudeaud1d390a2015-09-28 15:45:31 +02001503 /* Flush fat buffer */
Stefan Brüns751b31d2016-09-11 22:51:40 +02001504 ret = flush_dirty_fat_buffer(mydata);
Benoît Thébaudeaud1d390a2015-09-28 15:45:31 +02001505 if (ret) {
1506 printf("Error: flush fat buffer\n");
AKASHI Takahiro6aa77692018-09-11 15:59:03 +09001507 ret = -EIO;
Benoît Thébaudeaud1d390a2015-09-28 15:45:31 +02001508 goto exit;
Donggeun Kim8f814002011-10-24 21:15:28 +00001509 }
1510
Benoît Thébaudeaud1d390a2015-09-28 15:45:31 +02001511 /* Write directory table to device */
AKASHI Takahirod98c6742019-05-24 14:10:35 +09001512 ret = flush_dir(itr);
Benoît Thébaudeaud1d390a2015-09-28 15:45:31 +02001513
Donggeun Kim8f814002011-10-24 21:15:28 +00001514exit:
AKASHI Takahiro49ca96b2018-09-11 15:59:04 +09001515 free(filename_copy);
Donggeun Kim8f814002011-10-24 21:15:28 +00001516 free(mydata->fatbuf);
AKASHI Takahiro49ca96b2018-09-11 15:59:04 +09001517 free(itr);
Suriyan Ramasami441c2232014-11-17 14:39:35 -08001518 return ret;
Donggeun Kim8f814002011-10-24 21:15:28 +00001519}
1520
Suriyan Ramasami441c2232014-11-17 14:39:35 -08001521int file_fat_write(const char *filename, void *buffer, loff_t offset,
1522 loff_t maxsize, loff_t *actwrite)
Donggeun Kim8f814002011-10-24 21:15:28 +00001523{
AKASHI Takahiroed8b1e42018-09-11 15:59:05 +09001524 return file_fat_write_at(filename, offset, buffer, maxsize, actwrite);
Donggeun Kim8f814002011-10-24 21:15:28 +00001525}
AKASHI Takahiro1c24b7b2018-09-11 15:59:10 +09001526
AKASHI Takahiro73b34972018-09-11 15:59:14 +09001527static int fat_dir_entries(fat_itr *itr)
1528{
1529 fat_itr *dirs;
1530 fsdata fsdata = { .fatbuf = NULL, }, *mydata = &fsdata;
1531 /* for FATBUFSIZE */
1532 int count;
1533
1534 dirs = malloc_cache_aligned(sizeof(fat_itr));
1535 if (!dirs) {
1536 debug("Error: allocating memory\n");
1537 count = -ENOMEM;
1538 goto exit;
1539 }
1540
1541 /* duplicate fsdata */
1542 fat_itr_child(dirs, itr);
1543 fsdata = *dirs->fsdata;
1544
1545 /* allocate local fat buffer */
1546 fsdata.fatbuf = malloc_cache_aligned(FATBUFSIZE);
1547 if (!fsdata.fatbuf) {
1548 debug("Error: allocating memory\n");
1549 count = -ENOMEM;
1550 goto exit;
1551 }
1552 fsdata.fatbufnum = -1;
1553 dirs->fsdata = &fsdata;
1554
1555 for (count = 0; fat_itr_next(dirs); count++)
1556 ;
1557
1558exit:
1559 free(fsdata.fatbuf);
1560 free(dirs);
1561 return count;
1562}
1563
Heinrich Schuchardt284e85b2020-11-19 07:31:18 +01001564/**
1565 * delete_single_dentry() - delete a single directory entry
1566 *
1567 * @itr: directory iterator
1568 * Return: 0 for success
1569 */
1570static int delete_single_dentry(fat_itr *itr)
1571{
1572 struct dir_entry *dent = itr->dent;
1573
1574 memset(dent, 0, sizeof(*dent));
Heinrich Schuchardt66ea58c2021-01-21 00:23:33 +01001575 dent->nameext.name[0] = DELETED_FLAG;
Heinrich Schuchardt284e85b2020-11-19 07:31:18 +01001576
Heinrich Schuchardt913339a2021-01-20 22:21:53 +01001577 if (!itr->remaining)
1578 return flush_dir(itr);
Heinrich Schuchardt284e85b2020-11-19 07:31:18 +01001579 return 0;
1580}
1581
1582/**
1583 * delete_long_name() - delete long name directory entries
1584 *
1585 * @itr: directory iterator
1586 * Return: 0 for success
1587 */
1588static int delete_long_name(fat_itr *itr)
1589{
Heinrich Schuchardt66ea58c2021-01-21 00:23:33 +01001590 int seqn = itr->dent->nameext.name[0] & ~LAST_LONG_ENTRY_MASK;
Heinrich Schuchardt284e85b2020-11-19 07:31:18 +01001591
1592 while (seqn--) {
Heinrich Schuchardteb3587b2021-01-26 00:14:14 +01001593 struct dir_entry *dent;
Heinrich Schuchardt284e85b2020-11-19 07:31:18 +01001594 int ret;
1595
1596 ret = delete_single_dentry(itr);
1597 if (ret)
1598 return ret;
1599 dent = next_dent(itr);
1600 if (!dent)
1601 return -EIO;
1602 }
1603 return 0;
1604}
1605
1606/**
Gabriel Dalimonted1cc8dc2025-02-17 13:26:42 -05001607 * delete_dentry_link() - deletes a directory entry, but not the cluster chain
1608 * it points to
1609 *
1610 * @itr: the first directory entry (if a longname) to remove
1611 * Return: 0 for success
1612 */
1613static int delete_dentry_link(fat_itr *itr)
1614{
1615 itr->dent = itr->dent_start;
1616 itr->remaining = itr->dent_rem;
1617 /* Delete long name */
1618 if ((itr->dent->attr & ATTR_VFAT) == ATTR_VFAT &&
1619 (itr->dent->nameext.name[0] & LAST_LONG_ENTRY_MASK)) {
1620 int ret;
1621
1622 ret = delete_long_name(itr);
1623 if (ret)
1624 return ret;
1625 }
1626 /* Delete short name */
1627 delete_single_dentry(itr);
1628 return flush_dir(itr);
1629}
1630
1631/**
Heinrich Schuchardt284e85b2020-11-19 07:31:18 +01001632 * delete_dentry_long() - remove directory entry
1633 *
1634 * @itr: directory iterator
1635 * Return: 0 for success
1636 */
1637static int delete_dentry_long(fat_itr *itr)
AKASHI Takahiro73b34972018-09-11 15:59:14 +09001638{
1639 fsdata *mydata = itr->fsdata;
Heinrich Schuchardt284e85b2020-11-19 07:31:18 +01001640 dir_entry *dent = itr->dent;
AKASHI Takahiro73b34972018-09-11 15:59:14 +09001641
1642 /* free cluster blocks */
Heinrich Schuchardt284e85b2020-11-19 07:31:18 +01001643 clear_fatent(mydata, START(dent));
AKASHI Takahiro73b34972018-09-11 15:59:14 +09001644 if (flush_dirty_fat_buffer(mydata) < 0) {
1645 printf("Error: flush fat buffer\n");
1646 return -EIO;
1647 }
Heinrich Schuchardt284e85b2020-11-19 07:31:18 +01001648 /* Position to first directory entry for long name */
1649 if (itr->clust != itr->dent_clust) {
1650 int ret;
AKASHI Takahiro73b34972018-09-11 15:59:14 +09001651
Heinrich Schuchardt284e85b2020-11-19 07:31:18 +01001652 ret = fat_move_to_cluster(itr, itr->dent_clust);
1653 if (ret)
1654 return ret;
1655 }
Gabriel Dalimonted1cc8dc2025-02-17 13:26:42 -05001656 return delete_dentry_link(itr);
AKASHI Takahiro73b34972018-09-11 15:59:14 +09001657}
1658
1659int fat_unlink(const char *filename)
1660{
1661 fsdata fsdata = { .fatbuf = NULL, };
1662 fat_itr *itr = NULL;
1663 int n_entries, ret;
1664 char *filename_copy, *dirname, *basename;
1665
1666 filename_copy = strdup(filename);
Simon Glass47459812023-07-15 21:39:06 -06001667 itr = malloc_cache_aligned(sizeof(fat_itr));
1668 if (!itr || !filename_copy) {
1669 printf("Error: out of memory\n");
Heinrich Schuchardtb2242f62018-10-02 06:58:00 +02001670 ret = -ENOMEM;
1671 goto exit;
1672 }
AKASHI Takahiro73b34972018-09-11 15:59:14 +09001673 split_filename(filename_copy, &dirname, &basename);
1674
1675 if (!strcmp(dirname, "/") && !strcmp(basename, "")) {
1676 printf("Error: cannot remove root\n");
1677 ret = -EINVAL;
1678 goto exit;
1679 }
1680
AKASHI Takahiro73b34972018-09-11 15:59:14 +09001681 ret = fat_itr_root(itr, &fsdata);
1682 if (ret)
1683 goto exit;
1684
1685 total_sector = fsdata.total_sect;
1686
1687 ret = fat_itr_resolve(itr, dirname, TYPE_DIR);
1688 if (ret) {
1689 printf("%s: doesn't exist (%d)\n", dirname, ret);
1690 ret = -ENOENT;
1691 goto exit;
1692 }
1693
1694 if (!find_directory_entry(itr, basename)) {
Simon Glass47459812023-07-15 21:39:06 -06001695 log_err("%s: doesn't exist (%d)\n", basename, -ENOENT);
AKASHI Takahiro73b34972018-09-11 15:59:14 +09001696 ret = -ENOENT;
1697 goto exit;
1698 }
1699
1700 if (fat_itr_isdir(itr)) {
1701 n_entries = fat_dir_entries(itr);
1702 if (n_entries < 0) {
1703 ret = n_entries;
1704 goto exit;
1705 }
1706 if (n_entries > 2) {
1707 printf("Error: directory is not empty: %d\n",
1708 n_entries);
1709 ret = -EINVAL;
1710 goto exit;
1711 }
1712 }
1713
Heinrich Schuchardt284e85b2020-11-19 07:31:18 +01001714 ret = delete_dentry_long(itr);
AKASHI Takahiro73b34972018-09-11 15:59:14 +09001715
1716exit:
1717 free(fsdata.fatbuf);
1718 free(itr);
1719 free(filename_copy);
1720
1721 return ret;
1722}
1723
Heinrich Schuchardt502cb892021-01-30 10:01:08 +01001724int fat_mkdir(const char *dirname)
AKASHI Takahiro1c24b7b2018-09-11 15:59:10 +09001725{
1726 dir_entry *retdent;
1727 fsdata datablock = { .fatbuf = NULL, };
1728 fsdata *mydata = &datablock;
1729 fat_itr *itr = NULL;
Heinrich Schuchardt502cb892021-01-30 10:01:08 +01001730 char *dirname_copy, *parent, *basename;
AKASHI Takahiro1c24b7b2018-09-11 15:59:10 +09001731 char l_dirname[VFAT_MAXLEN_BYTES];
1732 int ret = -1;
1733 loff_t actwrite;
1734 unsigned int bytesperclust;
1735 dir_entry *dotdent = NULL;
1736
Heinrich Schuchardt502cb892021-01-30 10:01:08 +01001737 dirname_copy = strdup(dirname);
AKASHI Takahiro1c24b7b2018-09-11 15:59:10 +09001738 if (!dirname_copy)
1739 goto exit;
1740
Heinrich Schuchardt502cb892021-01-30 10:01:08 +01001741 split_filename(dirname_copy, &parent, &basename);
1742 if (!strlen(basename)) {
AKASHI Takahiro1c24b7b2018-09-11 15:59:10 +09001743 ret = -EINVAL;
1744 goto exit;
1745 }
1746
Heinrich Schuchardt502cb892021-01-30 10:01:08 +01001747 if (normalize_longname(l_dirname, basename)) {
1748 printf("FAT: illegal filename (%s)\n", basename);
AKASHI Takahiro1c24b7b2018-09-11 15:59:10 +09001749 ret = -EINVAL;
1750 goto exit;
1751 }
1752
1753 itr = malloc_cache_aligned(sizeof(fat_itr));
1754 if (!itr) {
1755 ret = -ENOMEM;
1756 goto exit;
1757 }
1758
1759 ret = fat_itr_root(itr, &datablock);
1760 if (ret)
1761 goto exit;
1762
1763 total_sector = datablock.total_sect;
1764
1765 ret = fat_itr_resolve(itr, parent, TYPE_DIR);
1766 if (ret) {
1767 printf("%s: doesn't exist (%d)\n", parent, ret);
1768 goto exit;
1769 }
1770
1771 retdent = find_directory_entry(itr, l_dirname);
1772
1773 if (retdent) {
1774 printf("%s: already exists\n", l_dirname);
1775 ret = -EEXIST;
1776 goto exit;
1777 } else {
1778 if (itr->is_root) {
1779 /* root dir cannot have "." or ".." */
1780 if (!strcmp(l_dirname, ".") ||
1781 !strcmp(l_dirname, "..")) {
1782 ret = -EINVAL;
1783 goto exit;
1784 }
1785 }
1786
Gabriel Dalimonted1cc8dc2025-02-17 13:26:42 -05001787 ret = create_link(itr, basename, 0, 0, ATTR_DIR | ATTR_ARCH);
Heinrich Schuchardt524d13a2020-11-22 11:54:22 +01001788 if (ret)
Heinrich Schuchardtba9c44e2020-11-20 12:55:22 +01001789 goto exit;
AKASHI Takahiro1c24b7b2018-09-11 15:59:10 +09001790
1791 retdent = itr->dent;
1792 }
1793
1794 /* Default entries */
1795 bytesperclust = mydata->clust_size * mydata->sect_size;
1796 dotdent = malloc_cache_aligned(bytesperclust);
1797 if (!dotdent) {
1798 ret = -ENOMEM;
1799 goto exit;
1800 }
1801 memset(dotdent, 0, bytesperclust);
1802
Heinrich Schuchardt66ea58c2021-01-21 00:23:33 +01001803 memcpy(&dotdent[0].nameext, ". ", 11);
AKASHI Takahiro1c24b7b2018-09-11 15:59:10 +09001804 dotdent[0].attr = ATTR_DIR | ATTR_ARCH;
1805
Heinrich Schuchardt66ea58c2021-01-21 00:23:33 +01001806 memcpy(&dotdent[1].nameext, ".. ", 11);
AKASHI Takahiro1c24b7b2018-09-11 15:59:10 +09001807 dotdent[1].attr = ATTR_DIR | ATTR_ARCH;
Heinrich Schuchardt00cf0762020-11-24 21:04:07 +01001808
1809 if (itr->is_root)
1810 set_start_cluster(mydata, &dotdent[1], 0);
1811 else
1812 set_start_cluster(mydata, &dotdent[1], itr->start_clust);
AKASHI Takahiro1c24b7b2018-09-11 15:59:10 +09001813
1814 ret = set_contents(mydata, retdent, 0, (__u8 *)dotdent,
1815 bytesperclust, &actwrite);
1816 if (ret < 0) {
1817 printf("Error: writing contents\n");
1818 goto exit;
1819 }
1820 /* Write twice for "." */
1821 set_start_cluster(mydata, &dotdent[0], START(retdent));
1822 ret = set_contents(mydata, retdent, 0, (__u8 *)dotdent,
1823 bytesperclust, &actwrite);
1824 if (ret < 0) {
1825 printf("Error: writing contents\n");
1826 goto exit;
1827 }
1828
1829 /* Flush fat buffer */
1830 ret = flush_dirty_fat_buffer(mydata);
1831 if (ret) {
1832 printf("Error: flush fat buffer\n");
Heinrich Schuchardt913339a2021-01-20 22:21:53 +01001833 ret = -EIO;
AKASHI Takahiro1c24b7b2018-09-11 15:59:10 +09001834 goto exit;
1835 }
1836
1837 /* Write directory table to device */
AKASHI Takahirod98c6742019-05-24 14:10:35 +09001838 ret = flush_dir(itr);
AKASHI Takahiro1c24b7b2018-09-11 15:59:10 +09001839
1840exit:
1841 free(dirname_copy);
1842 free(mydata->fatbuf);
1843 free(itr);
1844 free(dotdent);
1845 return ret;
1846}
Gabriel Dalimonte4b93d6e2025-02-17 13:26:44 -05001847
1848/**
1849 * check_path_prefix() - ensures one path does not contains another path as a
1850 * prefix.
1851 *
1852 * for example: path foo/bar/baz/qux contains the path prefix foo/bar/baz
1853 *
1854 * note: the iterator may be pointing to any directory entry in the directory
1855 *
1856 * @prefix_clust: start cluster of the final directory in the prefix path
1857 * (the start cluster of 'baz' in the above example)
1858 * @path_itr: iterator of the path to check (an iterator pointing to any
1859 * direntry in 'qux' in the above example)
1860 * Return: -errno on error, 0 if path_itr does not have the directory
1861 * at prefix_clust as an ancestor.
1862 */
1863static int check_path_prefix(loff_t prefix_clust, fat_itr *path_itr)
1864{
1865 fat_itr itr;
1866 fsdata fsdata = { .fatbuf = NULL, }, *mydata = &fsdata;
1867 int ret;
1868
1869 /* duplicate fsdata */
1870 itr = *path_itr;
1871 fsdata = *itr.fsdata;
1872
1873 /* allocate local fat buffer */
1874 fsdata.fatbuf = malloc_cache_aligned(FATBUFSIZE);
1875 if (!fsdata.fatbuf) {
1876 log_debug("Error: allocating memory\n");
1877 ret = -ENOMEM;
1878 goto exit;
1879 }
1880
1881 fsdata.fatbufnum = -1;
1882 itr.fsdata = &fsdata;
1883
1884 /* ensure iterator is at the first directory entry */
1885 ret = fat_move_to_cluster(&itr, itr.start_clust);
1886 if (ret)
1887 goto exit;
1888
1889 while (1) {
1890 if (prefix_clust == itr.start_clust) {
1891 ret = -EINVAL;
1892 goto exit;
1893 }
1894
1895 if (itr.is_root) {
1896 ret = 0;
1897 goto exit;
1898 }
1899
1900 /* Should not occur in a well-formed FAT filesystem besides the root */
1901 if (fat_itr_parent(&itr)) {
1902 log_debug("FAT filesystem corrupt!\n");
1903 log_debug("dir @ clust %u has no parent direntry\n",
1904 itr.start_clust);
1905 ret = -EIO;
1906 goto exit;
1907 }
1908 }
1909
1910exit:
1911 free(fsdata.fatbuf);
1912 return ret;
1913}
1914
1915/**
1916 * fat_rename - rename/move a file or directory
1917 *
1918 * @old_path: path to the existing file/directory
1919 * @new_path: new path/name for the rename/move
1920 * Return: 0 on success, -errno otherwise
1921 */
1922int fat_rename(const char *old_path, const char *new_path)
1923{
1924 fat_itr *old_itr = NULL, *new_itr = NULL;
1925 fsdata old_datablock = { .fatbuf = NULL, };
1926 fsdata new_datablock = { .fatbuf = NULL, };
1927 /* used for START macro */
1928 fsdata *mydata = &old_datablock;
1929 int ret = -EIO, is_old_dir;
1930 char *old_path_copy, *old_dirname, *old_basename;
1931 char *new_path_copy, *new_dirname, *new_basename;
1932 char l_new_basename[VFAT_MAXLEN_BYTES];
1933 __u32 old_clust;
1934 dir_entry *found_existing;
1935 /* only set if found_existing != NULL */
1936 __u32 new_clust;
1937
1938 old_path_copy = strdup(old_path);
1939 new_path_copy = strdup(new_path);
1940 old_itr = malloc_cache_aligned(sizeof(fat_itr));
1941 new_itr = malloc_cache_aligned(sizeof(fat_itr));
1942 if (!old_path_copy || !new_path_copy || !old_itr || !new_itr) {
1943 log_debug("Error: out of memory\n");
1944 ret = -ENOMEM;
1945 goto exit;
1946 }
1947 split_filename(old_path_copy, &old_dirname, &old_basename);
1948 split_filename(new_path_copy, &new_dirname, &new_basename);
1949
1950 if (normalize_longname(l_new_basename, new_basename)) {
1951 log_debug("FAT: illegal filename (%s)\n", new_basename);
1952 ret = -EINVAL;
1953 goto exit;
1954 }
1955
1956 if (!strcmp(old_basename, ".") || !strcmp(old_basename, "..") ||
1957 !strcmp(old_basename, "") || !strcmp(l_new_basename, ".") ||
1958 !strcmp(l_new_basename, "..") || !strcmp(l_new_basename, "")) {
1959 ret = -EINVAL;
1960 goto exit;
1961 }
1962
1963 /* checking for old_path == new_path is deferred until they're resolved */
1964
1965 /* resolve old_path */
1966 ret = fat_itr_root(old_itr, &old_datablock);
1967 if (ret)
1968 goto exit;
1969
1970 ret = fat_itr_resolve(old_itr, old_dirname, TYPE_DIR);
1971 if (ret) {
1972 log_debug("%s doesn't exist (%d)\n", old_dirname, ret);
1973 ret = -ENOENT;
1974 goto exit;
1975 }
1976
1977 if (!find_directory_entry(old_itr, old_basename)) {
1978 log_debug("%s doesn't exist (%d)\n", old_basename, -ENOENT);
1979 ret = -ENOENT;
1980 goto exit;
1981 }
1982
1983 /* store clust old_path points to, to relink later */
1984 total_sector = old_datablock.total_sect;
1985 old_clust = START(old_itr->dent);
1986 is_old_dir = fat_itr_isdir(old_itr);
1987
1988 /* resolve new_path*/
1989 ret = fat_itr_root(new_itr, &new_datablock);
1990 if (ret)
1991 goto exit;
1992
1993 ret = fat_itr_resolve(new_itr, new_dirname, TYPE_DIR);
1994 if (ret) {
1995 log_debug("%s doesn't exist (%d)\n", new_dirname, ret);
1996 ret = -ENOENT;
1997 goto exit;
1998 }
1999
2000 found_existing = find_directory_entry(new_itr, l_new_basename);
2001
2002 if (found_existing) {
2003 /* store cluster of new_path since it may need to be deleted */
2004 new_clust = START(new_itr->dent);
2005
2006 /* old_path is new_path, noop */
2007 if (old_clust == new_clust) {
2008 ret = 0;
2009 goto exit;
2010 }
2011
2012 if (fat_itr_isdir(new_itr) != is_old_dir) {
2013 if (is_old_dir)
2014 ret = -ENOTDIR;
2015 else
2016 ret = -EISDIR;
2017 goto exit;
2018 }
2019 }
2020
2021 if (is_old_dir) {
2022 ret = check_path_prefix(old_clust, new_itr);
2023 if (ret)
2024 goto exit;
2025 }
2026
2027 /* create/update dentry to point to old_path's data cluster */
2028 if (found_existing) {
2029 struct nameext new_name = new_itr->dent->nameext;
2030 __u8 lcase = new_itr->dent->lcase;
2031
2032 if (is_old_dir) {
2033 int n_entries = fat_dir_entries(new_itr);
2034
2035 if (n_entries < 0) {
2036 ret = n_entries;
2037 goto exit;
2038 }
2039 if (n_entries > 2) {
2040 log_debug("Error: directory is not empty: %d\n",
2041 n_entries);
2042 ret = -ENOTEMPTY;
2043 goto exit;
2044 }
2045 }
2046
2047 *new_itr->dent = *old_itr->dent;
2048 new_itr->dent->nameext = new_name;
2049 new_itr->dent->lcase = lcase;
2050 } else {
2051 /* reset iterator to the start of the directory */
2052 ret = fat_move_to_cluster(new_itr, new_itr->start_clust);
2053 if (ret)
2054 goto exit;
2055
2056 ret = create_link(new_itr, l_new_basename, old_clust,
2057 old_itr->dent->size,
2058 old_itr->dent->attr | ATTR_ARCH);
2059 if (ret)
2060 goto exit;
2061 }
2062
2063 ret = flush_dir(new_itr);
2064 if (ret)
2065 goto exit;
2066
2067 /* with new_path data cluster unreferenced, clear it */
2068 if (found_existing) {
2069 ret = clear_fatent(&new_datablock, new_clust);
2070 if (ret)
2071 goto exit;
2072 }
2073
2074 /* update moved directory so the parent is new_path */
2075 if (is_old_dir) {
2076 __u32 clust = new_itr->start_clust;
2077 dir_entry *dent;
2078
2079 fat_itr_child(new_itr, new_itr);
2080 dent = find_directory_entry(new_itr, "..");
2081 if (!dent) {
2082 log_debug("FAT filesystem corrupt!\n");
2083 log_debug("dir %s has no parent direntry\n",
2084 l_new_basename);
2085 ret = -EIO;
2086 goto exit;
2087 }
2088 set_start_cluster(&new_datablock, dent, clust);
2089 ret = flush_dir(new_itr);
2090 if (ret)
2091 goto exit;
2092 }
2093
2094 /* refresh old in case write happened to the same block. */
2095 ret = fat_move_to_cluster(old_itr, old_itr->dent_clust);
2096 if (ret)
2097 goto exit;
2098
2099 ret = delete_dentry_link(old_itr);
2100exit:
2101 free(new_datablock.fatbuf);
2102 free(old_datablock.fatbuf);
2103 free(new_itr);
2104 free(old_itr);
2105 free(new_path_copy);
2106 free(old_path_copy);
2107
2108 return ret;
2109}