blob: 8e4a235d7cba63a69123c9b10c541811d268aee6 [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
8#include <common.h>
9#include <command.h>
10#include <config.h>
11#include <fat.h>
12#include <asm/byteorder.h>
13#include <part.h>
Richard Genoud2e372022012-12-13 00:47:36 +000014#include <linux/ctype.h>
Tom Rinia17b7bc2014-11-24 11:50:46 -050015#include <div64.h>
16#include <linux/math64.h>
Donggeun Kim8f814002011-10-24 21:15:28 +000017#include "fat.c"
18
19static void uppercase(char *str, int len)
20{
21 int i;
22
23 for (i = 0; i < len; i++) {
Richard Genoud2e372022012-12-13 00:47:36 +000024 *str = toupper(*str);
Donggeun Kim8f814002011-10-24 21:15:28 +000025 str++;
26 }
27}
28
29static int total_sector;
Donggeun Kimcb5f3bc2012-03-22 04:38:55 +000030static int disk_write(__u32 block, __u32 nr_blocks, void *buf)
Donggeun Kim8f814002011-10-24 21:15:28 +000031{
Łukasz Majewskid6f23d82015-09-03 14:21:39 +020032 ulong ret;
33
Simon Glass2ee8ada2016-02-29 15:25:52 -070034 if (!cur_dev)
Donggeun Kim8f814002011-10-24 21:15:28 +000035 return -1;
36
Donggeun Kimcb5f3bc2012-03-22 04:38:55 +000037 if (cur_part_info.start + block + nr_blocks >
38 cur_part_info.start + total_sector) {
Donggeun Kim8f814002011-10-24 21:15:28 +000039 printf("error: overflow occurs\n");
40 return -1;
41 }
42
Simon Glass2ee8ada2016-02-29 15:25:52 -070043 ret = blk_dwrite(cur_dev, cur_part_info.start + block, nr_blocks, buf);
Łukasz Majewskid6f23d82015-09-03 14:21:39 +020044 if (nr_blocks && ret == 0)
45 return -1;
46
47 return ret;
Donggeun Kim8f814002011-10-24 21:15:28 +000048}
49
50/*
51 * Set short name in directory entry
52 */
53static void set_name(dir_entry *dirent, const char *filename)
54{
55 char s_name[VFAT_MAXLEN_BYTES];
56 char *period;
57 int period_location, len, i, ext_num;
58
59 if (filename == NULL)
60 return;
61
62 len = strlen(filename);
63 if (len == 0)
64 return;
65
Piotr Wilczek65a43e32013-10-11 15:43:33 +020066 strcpy(s_name, filename);
Donggeun Kim8f814002011-10-24 21:15:28 +000067 uppercase(s_name, len);
68
69 period = strchr(s_name, '.');
70 if (period == NULL) {
71 period_location = len;
72 ext_num = 0;
73 } else {
74 period_location = period - s_name;
75 ext_num = len - period_location - 1;
76 }
77
78 /* Pad spaces when the length of file name is shorter than eight */
79 if (period_location < 8) {
80 memcpy(dirent->name, s_name, period_location);
81 for (i = period_location; i < 8; i++)
82 dirent->name[i] = ' ';
83 } else if (period_location == 8) {
84 memcpy(dirent->name, s_name, period_location);
85 } else {
86 memcpy(dirent->name, s_name, 6);
87 dirent->name[6] = '~';
88 dirent->name[7] = '1';
89 }
90
91 if (ext_num < 3) {
92 memcpy(dirent->ext, s_name + period_location + 1, ext_num);
93 for (i = ext_num; i < 3; i++)
94 dirent->ext[i] = ' ';
95 } else
96 memcpy(dirent->ext, s_name + period_location + 1, 3);
97
98 debug("name : %s\n", dirent->name);
99 debug("ext : %s\n", dirent->ext);
100}
101
102/*
103 * Write fat buffer into block device
104 */
Stefan Brüns751b31d2016-09-11 22:51:40 +0200105static int flush_dirty_fat_buffer(fsdata *mydata)
Donggeun Kim8f814002011-10-24 21:15:28 +0000106{
107 int getsize = FATBUFBLOCKS;
108 __u32 fatlength = mydata->fatlength;
109 __u8 *bufptr = mydata->fatbuf;
110 __u32 startblock = mydata->fatbufnum * FATBUFBLOCKS;
111
Stefan Brüns751b31d2016-09-11 22:51:40 +0200112 debug("debug: evicting %d, dirty: %d\n", mydata->fatbufnum,
113 (int)mydata->fat_dirty);
114
115 if ((!mydata->fat_dirty) || (mydata->fatbufnum == -1))
116 return 0;
117
Stefan Brüns58bf86f2016-12-17 00:27:50 +0100118 /* Cap length if fatlength is not a multiple of FATBUFBLOCKS */
119 if (startblock + getsize > fatlength)
120 getsize = fatlength - startblock;
Donggeun Kim8f814002011-10-24 21:15:28 +0000121
Stefan Brüns58bf86f2016-12-17 00:27:50 +0100122 startblock += mydata->fat_sect;
Donggeun Kim8f814002011-10-24 21:15:28 +0000123
124 /* Write FAT buf */
125 if (disk_write(startblock, getsize, bufptr) < 0) {
126 debug("error: writing FAT blocks\n");
127 return -1;
128 }
129
AKASHI Takahiro49ca96b2018-09-11 15:59:04 +0900130 if (mydata->fats == 2) {
Donggeun Kimaf57ce22011-12-20 18:34:27 +0000131 /* Update corresponding second FAT blocks */
132 startblock += mydata->fatlength;
133 if (disk_write(startblock, getsize, bufptr) < 0) {
134 debug("error: writing second FAT blocks\n");
135 return -1;
136 }
137 }
Stefan Brüns751b31d2016-09-11 22:51:40 +0200138 mydata->fat_dirty = 0;
Donggeun Kimaf57ce22011-12-20 18:34:27 +0000139
Donggeun Kim8f814002011-10-24 21:15:28 +0000140 return 0;
141}
142
143/*
Donggeun Kim8f814002011-10-24 21:15:28 +0000144 * Set the file name information from 'name' into 'slotptr',
145 */
146static int str2slot(dir_slot *slotptr, const char *name, int *idx)
147{
148 int j, end_idx = 0;
149
150 for (j = 0; j <= 8; j += 2) {
151 if (name[*idx] == 0x00) {
152 slotptr->name0_4[j] = 0;
153 slotptr->name0_4[j + 1] = 0;
154 end_idx++;
155 goto name0_4;
156 }
157 slotptr->name0_4[j] = name[*idx];
158 (*idx)++;
159 end_idx++;
160 }
161 for (j = 0; j <= 10; j += 2) {
162 if (name[*idx] == 0x00) {
163 slotptr->name5_10[j] = 0;
164 slotptr->name5_10[j + 1] = 0;
165 end_idx++;
166 goto name5_10;
167 }
168 slotptr->name5_10[j] = name[*idx];
169 (*idx)++;
170 end_idx++;
171 }
172 for (j = 0; j <= 2; j += 2) {
173 if (name[*idx] == 0x00) {
174 slotptr->name11_12[j] = 0;
175 slotptr->name11_12[j + 1] = 0;
176 end_idx++;
177 goto name11_12;
178 }
179 slotptr->name11_12[j] = name[*idx];
180 (*idx)++;
181 end_idx++;
182 }
183
184 if (name[*idx] == 0x00)
185 return 1;
186
187 return 0;
188/* Not used characters are filled with 0xff 0xff */
189name0_4:
190 for (; end_idx < 5; end_idx++) {
191 slotptr->name0_4[end_idx * 2] = 0xff;
192 slotptr->name0_4[end_idx * 2 + 1] = 0xff;
193 }
194 end_idx = 5;
195name5_10:
196 end_idx -= 5;
197 for (; end_idx < 6; end_idx++) {
198 slotptr->name5_10[end_idx * 2] = 0xff;
199 slotptr->name5_10[end_idx * 2 + 1] = 0xff;
200 }
201 end_idx = 11;
202name11_12:
203 end_idx -= 11;
204 for (; end_idx < 2; end_idx++) {
205 slotptr->name11_12[end_idx * 2] = 0xff;
206 slotptr->name11_12[end_idx * 2 + 1] = 0xff;
207 }
208
209 return 1;
210}
211
AKASHI Takahiroa2c0bd02019-05-24 14:10:36 +0900212static int new_dir_table(fat_itr *itr);
213static int flush_dir(fat_itr *itr);
Donggeun Kim8f814002011-10-24 21:15:28 +0000214
215/*
216 * Fill dir_slot entries with appropriate name, id, and attr
AKASHI Takahiro49ca96b2018-09-11 15:59:04 +0900217 * 'itr' will point to a next entry
Donggeun Kim8f814002011-10-24 21:15:28 +0000218 */
AKASHI Takahiro49ca96b2018-09-11 15:59:04 +0900219static int
220fill_dir_slot(fat_itr *itr, const char *l_name)
Donggeun Kim8f814002011-10-24 21:15:28 +0000221{
Tien Fong Chee0117dbe2016-07-27 23:08:56 -0700222 __u8 temp_dir_slot_buffer[MAX_LFN_SLOT * sizeof(dir_slot)];
223 dir_slot *slotptr = (dir_slot *)temp_dir_slot_buffer;
Anatolij Gustschinf4f9d5d2011-12-15 03:12:14 +0000224 __u8 counter = 0, checksum;
Donggeun Kim8f814002011-10-24 21:15:28 +0000225 int idx = 0, ret;
Donggeun Kim8f814002011-10-24 21:15:28 +0000226
Stefan Brüns6c617d62016-09-11 22:51:39 +0200227 /* Get short file name checksum value */
AKASHI Takahiro49ca96b2018-09-11 15:59:04 +0900228 checksum = mkcksum(itr->dent->name, itr->dent->ext);
Donggeun Kim8f814002011-10-24 21:15:28 +0000229
230 do {
231 memset(slotptr, 0x00, sizeof(dir_slot));
232 ret = str2slot(slotptr, l_name, &idx);
233 slotptr->id = ++counter;
234 slotptr->attr = ATTR_VFAT;
235 slotptr->alias_checksum = checksum;
236 slotptr++;
237 } while (ret == 0);
238
239 slotptr--;
240 slotptr->id |= LAST_LONG_ENTRY_MASK;
241
242 while (counter >= 1) {
AKASHI Takahiro49ca96b2018-09-11 15:59:04 +0900243 memcpy(itr->dent, slotptr, sizeof(dir_slot));
Donggeun Kim8f814002011-10-24 21:15:28 +0000244 slotptr--;
245 counter--;
AKASHI Takahiroa2c0bd02019-05-24 14:10:36 +0900246
247 if (itr->remaining == 0)
248 flush_dir(itr);
249
AKASHI Takahiroc3269332019-05-24 14:10:37 +0900250 /* allocate a cluster for more entries */
AKASHI Takahiro49ca96b2018-09-11 15:59:04 +0900251 if (!fat_itr_next(itr))
AKASHI Takahiroc3269332019-05-24 14:10:37 +0900252 if (!itr->dent &&
253 (!itr->is_root || itr->fsdata->fatsize == 32) &&
254 new_dir_table(itr))
Donggeun Kim8f814002011-10-24 21:15:28 +0000255 return -1;
Donggeun Kim8f814002011-10-24 21:15:28 +0000256 }
257
Donggeun Kim8f814002011-10-24 21:15:28 +0000258 return 0;
259}
260
Donggeun Kim8f814002011-10-24 21:15:28 +0000261/*
Philipp Skadorov16f553d2016-12-15 15:52:53 -0500262 * Set the entry at index 'entry' in a FAT (12/16/32) table.
Donggeun Kim8f814002011-10-24 21:15:28 +0000263 */
264static int set_fatent_value(fsdata *mydata, __u32 entry, __u32 entry_value)
265{
Philipp Skadorov16f553d2016-12-15 15:52:53 -0500266 __u32 bufnum, offset, off16;
267 __u16 val1, val2;
Donggeun Kim8f814002011-10-24 21:15:28 +0000268
269 switch (mydata->fatsize) {
270 case 32:
271 bufnum = entry / FAT32BUFSIZE;
272 offset = entry - bufnum * FAT32BUFSIZE;
273 break;
274 case 16:
275 bufnum = entry / FAT16BUFSIZE;
276 offset = entry - bufnum * FAT16BUFSIZE;
277 break;
Philipp Skadorov16f553d2016-12-15 15:52:53 -0500278 case 12:
279 bufnum = entry / FAT12BUFSIZE;
280 offset = entry - bufnum * FAT12BUFSIZE;
281 break;
Donggeun Kim8f814002011-10-24 21:15:28 +0000282 default:
283 /* Unsupported FAT size */
284 return -1;
285 }
286
287 /* Read a new block of FAT entries into the cache. */
288 if (bufnum != mydata->fatbufnum) {
289 int getsize = FATBUFBLOCKS;
290 __u8 *bufptr = mydata->fatbuf;
291 __u32 fatlength = mydata->fatlength;
292 __u32 startblock = bufnum * FATBUFBLOCKS;
293
Stefan Brüns58bf86f2016-12-17 00:27:50 +0100294 /* Cap length if fatlength is not a multiple of FATBUFBLOCKS */
295 if (startblock + getsize > fatlength)
296 getsize = fatlength - startblock;
Donggeun Kim8f814002011-10-24 21:15:28 +0000297
Stefan Brüns751b31d2016-09-11 22:51:40 +0200298 if (flush_dirty_fat_buffer(mydata) < 0)
299 return -1;
Donggeun Kim8f814002011-10-24 21:15:28 +0000300
Stefan Brüns58bf86f2016-12-17 00:27:50 +0100301 startblock += mydata->fat_sect;
302
Donggeun Kim8f814002011-10-24 21:15:28 +0000303 if (disk_read(startblock, getsize, bufptr) < 0) {
304 debug("Error reading FAT blocks\n");
305 return -1;
306 }
307 mydata->fatbufnum = bufnum;
308 }
309
Stefan Brüns751b31d2016-09-11 22:51:40 +0200310 /* Mark as dirty */
311 mydata->fat_dirty = 1;
312
Donggeun Kim8f814002011-10-24 21:15:28 +0000313 /* Set the actual entry */
314 switch (mydata->fatsize) {
315 case 32:
316 ((__u32 *) mydata->fatbuf)[offset] = cpu_to_le32(entry_value);
317 break;
318 case 16:
319 ((__u16 *) mydata->fatbuf)[offset] = cpu_to_le16(entry_value);
320 break;
Philipp Skadorov16f553d2016-12-15 15:52:53 -0500321 case 12:
322 off16 = (offset * 3) / 4;
323
324 switch (offset & 0x3) {
325 case 0:
326 val1 = cpu_to_le16(entry_value) & 0xfff;
327 ((__u16 *)mydata->fatbuf)[off16] &= ~0xfff;
328 ((__u16 *)mydata->fatbuf)[off16] |= val1;
329 break;
330 case 1:
331 val1 = cpu_to_le16(entry_value) & 0xf;
332 val2 = (cpu_to_le16(entry_value) >> 4) & 0xff;
333
334 ((__u16 *)mydata->fatbuf)[off16] &= ~0xf000;
335 ((__u16 *)mydata->fatbuf)[off16] |= (val1 << 12);
336
337 ((__u16 *)mydata->fatbuf)[off16 + 1] &= ~0xff;
338 ((__u16 *)mydata->fatbuf)[off16 + 1] |= val2;
339 break;
340 case 2:
341 val1 = cpu_to_le16(entry_value) & 0xff;
342 val2 = (cpu_to_le16(entry_value) >> 8) & 0xf;
343
344 ((__u16 *)mydata->fatbuf)[off16] &= ~0xff00;
345 ((__u16 *)mydata->fatbuf)[off16] |= (val1 << 8);
346
347 ((__u16 *)mydata->fatbuf)[off16 + 1] &= ~0xf;
348 ((__u16 *)mydata->fatbuf)[off16 + 1] |= val2;
349 break;
350 case 3:
351 val1 = cpu_to_le16(entry_value) & 0xfff;
352 ((__u16 *)mydata->fatbuf)[off16] &= ~0xfff0;
353 ((__u16 *)mydata->fatbuf)[off16] |= (val1 << 4);
354 break;
355 default:
356 break;
357 }
358
359 break;
Donggeun Kim8f814002011-10-24 21:15:28 +0000360 default:
361 return -1;
362 }
363
364 return 0;
365}
366
367/*
Philipp Skadorov16f553d2016-12-15 15:52:53 -0500368 * Determine the next free cluster after 'entry' in a FAT (12/16/32) table
Stefan Brüns14999402016-09-11 22:51:41 +0200369 * and link it to 'entry'. EOC marker is not set on returned entry.
Donggeun Kim8f814002011-10-24 21:15:28 +0000370 */
371static __u32 determine_fatent(fsdata *mydata, __u32 entry)
372{
373 __u32 next_fat, next_entry = entry + 1;
374
375 while (1) {
Stefan Brüns9f95d812016-12-17 00:27:51 +0100376 next_fat = get_fatent(mydata, next_entry);
Donggeun Kim8f814002011-10-24 21:15:28 +0000377 if (next_fat == 0) {
Stefan Brüns14999402016-09-11 22:51:41 +0200378 /* found free entry, link to entry */
Donggeun Kim8f814002011-10-24 21:15:28 +0000379 set_fatent_value(mydata, entry, next_entry);
380 break;
381 }
382 next_entry++;
383 }
384 debug("FAT%d: entry: %08x, entry_value: %04x\n",
385 mydata->fatsize, entry, next_entry);
386
387 return next_entry;
388}
389
Heinrich Schuchardt9fb8db42018-10-02 09:30:45 +0200390/**
AKASHI Takahirod98c6742019-05-24 14:10:35 +0900391 * set_sectors() - write data to sectors
Heinrich Schuchardt9fb8db42018-10-02 09:30:45 +0200392 *
AKASHI Takahirod98c6742019-05-24 14:10:35 +0900393 * Write 'size' bytes from 'buffer' into the specified sector.
Heinrich Schuchardt9fb8db42018-10-02 09:30:45 +0200394 *
395 * @mydata: data to be written
AKASHI Takahirod98c6742019-05-24 14:10:35 +0900396 * @startsect: sector to be written to
Heinrich Schuchardt9fb8db42018-10-02 09:30:45 +0200397 * @buffer: data to be written
398 * @size: bytes to be written (but not more than the size of a cluster)
399 * Return: 0 on success, -1 otherwise
Donggeun Kim8f814002011-10-24 21:15:28 +0000400 */
401static int
AKASHI Takahirod98c6742019-05-24 14:10:35 +0900402set_sectors(fsdata *mydata, u32 startsect, u8 *buffer, u32 size)
Donggeun Kim8f814002011-10-24 21:15:28 +0000403{
AKASHI Takahirod98c6742019-05-24 14:10:35 +0900404 u32 nsects = 0;
Benoît Thébaudeauccc945b2015-09-28 15:45:28 +0200405 int ret;
Donggeun Kim8f814002011-10-24 21:15:28 +0000406
AKASHI Takahirod98c6742019-05-24 14:10:35 +0900407 debug("startsect: %d\n", startsect);
Donggeun Kim8f814002011-10-24 21:15:28 +0000408
Benoît Thébaudeauccc945b2015-09-28 15:45:28 +0200409 if ((unsigned long)buffer & (ARCH_DMA_MINALIGN - 1)) {
410 ALLOC_CACHE_ALIGN_BUFFER(__u8, tmpbuf, mydata->sect_size);
411
Heinrich Schuchardtaa9d6ba2018-09-13 19:42:47 +0200412 debug("FAT: Misaligned buffer address (%p)\n", buffer);
Benoît Thébaudeauccc945b2015-09-28 15:45:28 +0200413
414 while (size >= mydata->sect_size) {
415 memcpy(tmpbuf, buffer, mydata->sect_size);
416 ret = disk_write(startsect++, 1, tmpbuf);
417 if (ret != 1) {
418 debug("Error writing data (got %d)\n", ret);
419 return -1;
420 }
421
422 buffer += mydata->sect_size;
423 size -= mydata->sect_size;
424 }
425 } else if (size >= mydata->sect_size) {
AKASHI Takahirod98c6742019-05-24 14:10:35 +0900426 nsects = size / mydata->sect_size;
427 ret = disk_write(startsect, nsects, buffer);
428 if (ret != nsects) {
Benoît Thébaudeauccc945b2015-09-28 15:45:28 +0200429 debug("Error writing data (got %d)\n", ret);
Wu, Joshb0e38dd2013-07-24 17:55:30 +0800430 return -1;
431 }
Donggeun Kim8f814002011-10-24 21:15:28 +0000432
AKASHI Takahirod98c6742019-05-24 14:10:35 +0900433 startsect += nsects;
434 buffer += nsects * mydata->sect_size;
435 size -= nsects * mydata->sect_size;
Benoît Thébaudeauccc945b2015-09-28 15:45:28 +0200436 }
Donggeun Kim8f814002011-10-24 21:15:28 +0000437
Benoît Thébaudeauccc945b2015-09-28 15:45:28 +0200438 if (size) {
439 ALLOC_CACHE_ALIGN_BUFFER(__u8, tmpbuf, mydata->sect_size);
Heinrich Schuchardt9fb8db42018-10-02 09:30:45 +0200440 /* Do not leak content of stack */
441 memset(tmpbuf, 0, mydata->sect_size);
Benoît Thébaudeauccc945b2015-09-28 15:45:28 +0200442 memcpy(tmpbuf, buffer, size);
443 ret = disk_write(startsect, 1, tmpbuf);
444 if (ret != 1) {
445 debug("Error writing data (got %d)\n", ret);
Donggeun Kim8f814002011-10-24 21:15:28 +0000446 return -1;
447 }
Donggeun Kim8f814002011-10-24 21:15:28 +0000448 }
449
450 return 0;
451}
452
AKASHI Takahirod98c6742019-05-24 14:10:35 +0900453/**
454 * set_cluster() - write data to cluster
455 *
456 * Write 'size' bytes from 'buffer' into the specified cluster.
457 *
458 * @mydata: data to be written
459 * @clustnum: cluster to be written to
460 * @buffer: data to be written
461 * @size: bytes to be written (but not more than the size of a cluster)
462 * Return: 0 on success, -1 otherwise
463 */
464static int
465set_cluster(fsdata *mydata, u32 clustnum, u8 *buffer, u32 size)
466{
467 return set_sectors(mydata, clust_to_sect(mydata, clustnum),
468 buffer, size);
469}
470
471static int
472flush_dir(fat_itr *itr)
473{
474 fsdata *mydata = itr->fsdata;
475 u32 startsect, sect_offset, nsects;
476
477 if (!itr->is_root || mydata->fatsize == 32)
478 return set_cluster(mydata, itr->clust, itr->block,
479 mydata->clust_size * mydata->sect_size);
480
481 sect_offset = itr->clust * mydata->clust_size;
482 startsect = mydata->rootdir_sect + sect_offset;
483 /* do not write past the end of rootdir */
484 nsects = min_t(u32, mydata->clust_size,
485 mydata->rootdir_size - sect_offset);
486
487 return set_sectors(mydata, startsect, itr->block,
488 nsects * mydata->sect_size);
489}
490
AKASHI Takahirob07f7042018-09-11 15:59:06 +0900491static __u8 tmpbuf_cluster[MAX_CLUSTSIZE] __aligned(ARCH_DMA_MINALIGN);
492
493/*
494 * Read and modify data on existing and consecutive cluster blocks
495 */
496static int
497get_set_cluster(fsdata *mydata, __u32 clustnum, loff_t pos, __u8 *buffer,
498 loff_t size, loff_t *gotsize)
499{
500 unsigned int bytesperclust = mydata->clust_size * mydata->sect_size;
501 __u32 startsect;
502 loff_t wsize;
503 int clustcount, i, ret;
504
505 *gotsize = 0;
506 if (!size)
507 return 0;
508
509 assert(pos < bytesperclust);
510 startsect = clust_to_sect(mydata, clustnum);
511
512 debug("clustnum: %d, startsect: %d, pos: %lld\n",
513 clustnum, startsect, pos);
514
515 /* partial write at beginning */
516 if (pos) {
517 wsize = min(bytesperclust - pos, size);
518 ret = disk_read(startsect, mydata->clust_size, tmpbuf_cluster);
519 if (ret != mydata->clust_size) {
520 debug("Error reading data (got %d)\n", ret);
521 return -1;
522 }
523
524 memcpy(tmpbuf_cluster + pos, buffer, wsize);
525 ret = disk_write(startsect, mydata->clust_size, tmpbuf_cluster);
526 if (ret != mydata->clust_size) {
527 debug("Error writing data (got %d)\n", ret);
528 return -1;
529 }
530
531 size -= wsize;
532 buffer += wsize;
533 *gotsize += wsize;
534
535 startsect += mydata->clust_size;
536
537 if (!size)
538 return 0;
539 }
540
541 /* full-cluster write */
542 if (size >= bytesperclust) {
543 clustcount = lldiv(size, bytesperclust);
544
545 if (!((unsigned long)buffer & (ARCH_DMA_MINALIGN - 1))) {
546 wsize = clustcount * bytesperclust;
547 ret = disk_write(startsect,
548 clustcount * mydata->clust_size,
549 buffer);
550 if (ret != clustcount * mydata->clust_size) {
551 debug("Error writing data (got %d)\n", ret);
552 return -1;
553 }
554
555 size -= wsize;
556 buffer += wsize;
557 *gotsize += wsize;
558
559 startsect += clustcount * mydata->clust_size;
560 } else {
561 for (i = 0; i < clustcount; i++) {
562 memcpy(tmpbuf_cluster, buffer, bytesperclust);
563 ret = disk_write(startsect,
564 mydata->clust_size,
565 tmpbuf_cluster);
566 if (ret != mydata->clust_size) {
567 debug("Error writing data (got %d)\n",
568 ret);
569 return -1;
570 }
571
572 size -= bytesperclust;
573 buffer += bytesperclust;
574 *gotsize += bytesperclust;
575
576 startsect += mydata->clust_size;
577 }
578 }
579 }
580
581 /* partial write at end */
582 if (size) {
583 wsize = size;
584 ret = disk_read(startsect, mydata->clust_size, tmpbuf_cluster);
585 if (ret != mydata->clust_size) {
586 debug("Error reading data (got %d)\n", ret);
587 return -1;
588 }
589 memcpy(tmpbuf_cluster, buffer, wsize);
590 ret = disk_write(startsect, mydata->clust_size, tmpbuf_cluster);
591 if (ret != mydata->clust_size) {
592 debug("Error writing data (got %d)\n", ret);
593 return -1;
594 }
595
596 size -= wsize;
597 buffer += wsize;
598 *gotsize += wsize;
599 }
600
601 assert(!size);
602
603 return 0;
604}
605
Donggeun Kim8f814002011-10-24 21:15:28 +0000606/*
607 * Find the first empty cluster
608 */
609static int find_empty_cluster(fsdata *mydata)
610{
611 __u32 fat_val, entry = 3;
612
613 while (1) {
Stefan Brüns9f95d812016-12-17 00:27:51 +0100614 fat_val = get_fatent(mydata, entry);
Donggeun Kim8f814002011-10-24 21:15:28 +0000615 if (fat_val == 0)
616 break;
617 entry++;
618 }
619
620 return entry;
621}
622
623/*
AKASHI Takahiroa2c0bd02019-05-24 14:10:36 +0900624 * Allocate a cluster for additional directory entries
Donggeun Kim8f814002011-10-24 21:15:28 +0000625 */
AKASHI Takahiroa2c0bd02019-05-24 14:10:36 +0900626static int new_dir_table(fat_itr *itr)
Donggeun Kim8f814002011-10-24 21:15:28 +0000627{
AKASHI Takahiro49ca96b2018-09-11 15:59:04 +0900628 fsdata *mydata = itr->fsdata;
Donggeun Kim8f814002011-10-24 21:15:28 +0000629 int dir_newclust = 0;
AKASHI Takahiro49ca96b2018-09-11 15:59:04 +0900630 unsigned int bytesperclust = mydata->clust_size * mydata->sect_size;
Donggeun Kim8f814002011-10-24 21:15:28 +0000631
Donggeun Kim8f814002011-10-24 21:15:28 +0000632 dir_newclust = find_empty_cluster(mydata);
AKASHI Takahiro49ca96b2018-09-11 15:59:04 +0900633 set_fatent_value(mydata, itr->clust, dir_newclust);
Donggeun Kim8f814002011-10-24 21:15:28 +0000634 if (mydata->fatsize == 32)
635 set_fatent_value(mydata, dir_newclust, 0xffffff8);
636 else if (mydata->fatsize == 16)
637 set_fatent_value(mydata, dir_newclust, 0xfff8);
Philipp Skadorov16f553d2016-12-15 15:52:53 -0500638 else if (mydata->fatsize == 12)
639 set_fatent_value(mydata, dir_newclust, 0xff8);
Donggeun Kim8f814002011-10-24 21:15:28 +0000640
AKASHI Takahiro49ca96b2018-09-11 15:59:04 +0900641 itr->clust = dir_newclust;
642 itr->next_clust = dir_newclust;
Donggeun Kim8f814002011-10-24 21:15:28 +0000643
Stefan Brüns751b31d2016-09-11 22:51:40 +0200644 if (flush_dirty_fat_buffer(mydata) < 0)
AKASHI Takahiro49ca96b2018-09-11 15:59:04 +0900645 return -1;
646
647 memset(itr->block, 0x00, bytesperclust);
Donggeun Kim8f814002011-10-24 21:15:28 +0000648
AKASHI Takahiro49ca96b2018-09-11 15:59:04 +0900649 itr->dent = (dir_entry *)itr->block;
650 itr->last_cluster = 1;
651 itr->remaining = bytesperclust / sizeof(dir_entry) - 1;
Donggeun Kim8f814002011-10-24 21:15:28 +0000652
AKASHI Takahiro49ca96b2018-09-11 15:59:04 +0900653 return 0;
Donggeun Kim8f814002011-10-24 21:15:28 +0000654}
655
656/*
657 * Set empty cluster from 'entry' to the end of a file
658 */
659static int clear_fatent(fsdata *mydata, __u32 entry)
660{
661 __u32 fat_val;
662
Philipp Skadorov16f553d2016-12-15 15:52:53 -0500663 while (!CHECK_CLUST(entry, mydata->fatsize)) {
Stefan Brüns9f95d812016-12-17 00:27:51 +0100664 fat_val = get_fatent(mydata, entry);
Donggeun Kim8f814002011-10-24 21:15:28 +0000665 if (fat_val != 0)
666 set_fatent_value(mydata, entry, 0);
667 else
668 break;
669
Donggeun Kim8f814002011-10-24 21:15:28 +0000670 entry = fat_val;
671 }
672
673 /* Flush fat buffer */
Stefan Brüns751b31d2016-09-11 22:51:40 +0200674 if (flush_dirty_fat_buffer(mydata) < 0)
Donggeun Kim8f814002011-10-24 21:15:28 +0000675 return -1;
676
677 return 0;
678}
679
680/*
AKASHI Takahiroed8b1e42018-09-11 15:59:05 +0900681 * Set start cluster in directory entry
682 */
683static void set_start_cluster(const fsdata *mydata, dir_entry *dentptr,
684 __u32 start_cluster)
685{
686 if (mydata->fatsize == 32)
687 dentptr->starthi =
688 cpu_to_le16((start_cluster & 0xffff0000) >> 16);
689 dentptr->start = cpu_to_le16(start_cluster & 0xffff);
690}
691
692/*
693 * Check whether adding a file makes the file system to
694 * exceed the size of the block device
695 * Return -1 when overflow occurs, otherwise return 0
696 */
697static int check_overflow(fsdata *mydata, __u32 clustnum, loff_t size)
698{
699 __u32 startsect, sect_num, offset;
700
701 if (clustnum > 0)
702 startsect = clust_to_sect(mydata, clustnum);
703 else
704 startsect = mydata->rootdir_sect;
705
706 sect_num = div_u64_rem(size, mydata->sect_size, &offset);
707
708 if (offset != 0)
709 sect_num++;
710
711 if (startsect + sect_num > total_sector)
712 return -1;
713 return 0;
714}
715
716/*
Donggeun Kim8f814002011-10-24 21:15:28 +0000717 * Write at most 'maxsize' bytes from 'buffer' into
718 * the file associated with 'dentptr'
Suriyan Ramasami441c2232014-11-17 14:39:35 -0800719 * Update the number of bytes written in *gotsize and return 0
720 * or return -1 on fatal errors.
Donggeun Kim8f814002011-10-24 21:15:28 +0000721 */
722static int
AKASHI Takahiroed8b1e42018-09-11 15:59:05 +0900723set_contents(fsdata *mydata, dir_entry *dentptr, loff_t pos, __u8 *buffer,
724 loff_t maxsize, loff_t *gotsize)
Donggeun Kim8f814002011-10-24 21:15:28 +0000725{
Donggeun Kim8f814002011-10-24 21:15:28 +0000726 unsigned int bytesperclust = mydata->clust_size * mydata->sect_size;
727 __u32 curclust = START(dentptr);
728 __u32 endclust = 0, newclust = 0;
Heinrich Schuchardtdb538a92019-02-25 19:42:48 +0100729 u64 cur_pos, filesize;
730 loff_t offset, actsize, wsize;
Donggeun Kim8f814002011-10-24 21:15:28 +0000731
Suriyan Ramasami441c2232014-11-17 14:39:35 -0800732 *gotsize = 0;
AKASHI Takahirob07f7042018-09-11 15:59:06 +0900733 filesize = pos + maxsize;
Donggeun Kim8f814002011-10-24 21:15:28 +0000734
Suriyan Ramasami441c2232014-11-17 14:39:35 -0800735 debug("%llu bytes\n", filesize);
Donggeun Kim8f814002011-10-24 21:15:28 +0000736
AKASHI Takahirob07f7042018-09-11 15:59:06 +0900737 if (!filesize) {
738 if (!curclust)
739 return 0;
740 if (!CHECK_CLUST(curclust, mydata->fatsize) ||
741 IS_LAST_CLUST(curclust, mydata->fatsize)) {
742 clear_fatent(mydata, curclust);
743 set_start_cluster(mydata, dentptr, 0);
744 return 0;
745 }
746 debug("curclust: 0x%x\n", curclust);
747 debug("Invalid FAT entry\n");
748 return -1;
749 }
750
751 if (!curclust) {
752 assert(pos == 0);
753 goto set_clusters;
754 }
755
756 /* go to cluster at pos */
757 cur_pos = bytesperclust;
758 while (1) {
759 if (pos <= cur_pos)
760 break;
761 if (IS_LAST_CLUST(curclust, mydata->fatsize))
762 break;
763
764 newclust = get_fatent(mydata, curclust);
765 if (!IS_LAST_CLUST(newclust, mydata->fatsize) &&
766 CHECK_CLUST(newclust, mydata->fatsize)) {
767 debug("curclust: 0x%x\n", curclust);
768 debug("Invalid FAT entry\n");
Benoît Thébaudeau8fed7d32015-09-28 15:45:32 +0200769 return -1;
770 }
AKASHI Takahirob07f7042018-09-11 15:59:06 +0900771
772 cur_pos += bytesperclust;
773 curclust = newclust;
774 }
775 if (IS_LAST_CLUST(curclust, mydata->fatsize)) {
776 assert(pos == cur_pos);
777 goto set_clusters;
778 }
779
780 assert(pos < cur_pos);
781 cur_pos -= bytesperclust;
782
783 /* overwrite */
784 assert(IS_LAST_CLUST(curclust, mydata->fatsize) ||
785 !CHECK_CLUST(curclust, mydata->fatsize));
786
787 while (1) {
788 /* search for allocated consecutive clusters */
789 actsize = bytesperclust;
790 endclust = curclust;
791 while (1) {
792 if (filesize <= (cur_pos + actsize))
793 break;
794
795 newclust = get_fatent(mydata, endclust);
796
Marek Szyprowski2f241672019-12-02 12:11:13 +0100797 if (newclust != endclust + 1)
798 break;
AKASHI Takahirob07f7042018-09-11 15:59:06 +0900799 if (IS_LAST_CLUST(newclust, mydata->fatsize))
800 break;
801 if (CHECK_CLUST(newclust, mydata->fatsize)) {
802 debug("curclust: 0x%x\n", curclust);
803 debug("Invalid FAT entry\n");
804 return -1;
805 }
806
807 actsize += bytesperclust;
808 endclust = newclust;
809 }
810
811 /* overwrite to <curclust..endclust> */
812 if (pos < cur_pos)
813 offset = 0;
814 else
815 offset = pos - cur_pos;
Marek Szyprowski3a867ce2019-12-02 12:11:14 +0100816 wsize = min_t(unsigned long long, actsize, filesize - cur_pos);
817 wsize -= offset;
818
AKASHI Takahirob07f7042018-09-11 15:59:06 +0900819 if (get_set_cluster(mydata, curclust, offset,
820 buffer, wsize, &actsize)) {
821 printf("Error get-and-setting cluster\n");
822 return -1;
823 }
824 buffer += wsize;
825 *gotsize += wsize;
826 cur_pos += offset + wsize;
827
828 if (filesize <= cur_pos)
829 break;
830
AKASHI Takahirob07f7042018-09-11 15:59:06 +0900831 if (IS_LAST_CLUST(newclust, mydata->fatsize))
832 /* no more clusters */
833 break;
834
835 curclust = newclust;
836 }
837
838 if (filesize <= cur_pos) {
839 /* no more write */
840 newclust = get_fatent(mydata, endclust);
841 if (!IS_LAST_CLUST(newclust, mydata->fatsize)) {
842 /* truncate the rest */
843 clear_fatent(mydata, newclust);
844
845 /* Mark end of file in FAT */
846 if (mydata->fatsize == 12)
847 newclust = 0xfff;
848 else if (mydata->fatsize == 16)
849 newclust = 0xffff;
850 else if (mydata->fatsize == 32)
851 newclust = 0xfffffff;
852 set_fatent_value(mydata, endclust, newclust);
853 }
854
855 return 0;
AKASHI Takahiroed8b1e42018-09-11 15:59:05 +0900856 }
857
AKASHI Takahirob07f7042018-09-11 15:59:06 +0900858 curclust = endclust;
859 filesize -= cur_pos;
Heinrich Schuchardtdb538a92019-02-25 19:42:48 +0100860 assert(!do_div(cur_pos, bytesperclust));
AKASHI Takahiroed8b1e42018-09-11 15:59:05 +0900861
AKASHI Takahirob07f7042018-09-11 15:59:06 +0900862set_clusters:
863 /* allocate and write */
864 assert(!pos);
865
866 /* Assure that curclust is valid */
867 if (!curclust) {
868 curclust = find_empty_cluster(mydata);
869 set_start_cluster(mydata, dentptr, curclust);
870 } else {
871 newclust = get_fatent(mydata, curclust);
872
873 if (IS_LAST_CLUST(newclust, mydata->fatsize)) {
874 newclust = determine_fatent(mydata, curclust);
875 set_fatent_value(mydata, curclust, newclust);
876 curclust = newclust;
877 } else {
878 debug("error: something wrong\n");
879 return -1;
880 }
881 }
882
883 /* TODO: already partially written */
AKASHI Takahiroed8b1e42018-09-11 15:59:05 +0900884 if (check_overflow(mydata, curclust, filesize)) {
885 printf("Error: no space left: %llu\n", filesize);
886 return -1;
Benoît Thébaudeau8fed7d32015-09-28 15:45:32 +0200887 }
888
Donggeun Kim8f814002011-10-24 21:15:28 +0000889 actsize = bytesperclust;
890 endclust = curclust;
891 do {
892 /* search for consecutive clusters */
893 while (actsize < filesize) {
894 newclust = determine_fatent(mydata, endclust);
895
896 if ((newclust - 1) != endclust)
AKASHI Takahiroed8b1e42018-09-11 15:59:05 +0900897 /* write to <curclust..endclust> */
Donggeun Kim8f814002011-10-24 21:15:28 +0000898 goto getit;
899
900 if (CHECK_CLUST(newclust, mydata->fatsize)) {
Benoît Thébaudeaue0b86942015-09-28 15:45:30 +0200901 debug("newclust: 0x%x\n", newclust);
Donggeun Kim8f814002011-10-24 21:15:28 +0000902 debug("Invalid FAT entry\n");
Suriyan Ramasami441c2232014-11-17 14:39:35 -0800903 return 0;
Donggeun Kim8f814002011-10-24 21:15:28 +0000904 }
905 endclust = newclust;
906 actsize += bytesperclust;
907 }
Donggeun Kim8f814002011-10-24 21:15:28 +0000908
909 /* set remaining bytes */
Donggeun Kim8f814002011-10-24 21:15:28 +0000910 actsize = filesize;
Heinrich Schuchardt9fb8db42018-10-02 09:30:45 +0200911 if (set_cluster(mydata, curclust, buffer, (u32)actsize) != 0) {
Donggeun Kim8f814002011-10-24 21:15:28 +0000912 debug("error: writing cluster\n");
913 return -1;
914 }
Suriyan Ramasami441c2232014-11-17 14:39:35 -0800915 *gotsize += actsize;
Donggeun Kim8f814002011-10-24 21:15:28 +0000916
917 /* Mark end of file in FAT */
Philipp Skadorov16f553d2016-12-15 15:52:53 -0500918 if (mydata->fatsize == 12)
919 newclust = 0xfff;
920 else if (mydata->fatsize == 16)
Donggeun Kim8f814002011-10-24 21:15:28 +0000921 newclust = 0xffff;
922 else if (mydata->fatsize == 32)
923 newclust = 0xfffffff;
924 set_fatent_value(mydata, endclust, newclust);
925
Suriyan Ramasami441c2232014-11-17 14:39:35 -0800926 return 0;
Donggeun Kim8f814002011-10-24 21:15:28 +0000927getit:
Heinrich Schuchardt9fb8db42018-10-02 09:30:45 +0200928 if (set_cluster(mydata, curclust, buffer, (u32)actsize) != 0) {
Donggeun Kim8f814002011-10-24 21:15:28 +0000929 debug("error: writing cluster\n");
930 return -1;
931 }
Suriyan Ramasami441c2232014-11-17 14:39:35 -0800932 *gotsize += actsize;
Donggeun Kim8f814002011-10-24 21:15:28 +0000933 filesize -= actsize;
934 buffer += actsize;
935
Benoît Thébaudeaue0b86942015-09-28 15:45:30 +0200936 if (CHECK_CLUST(newclust, mydata->fatsize)) {
937 debug("newclust: 0x%x\n", newclust);
Donggeun Kim8f814002011-10-24 21:15:28 +0000938 debug("Invalid FAT entry\n");
Suriyan Ramasami441c2232014-11-17 14:39:35 -0800939 return 0;
Donggeun Kim8f814002011-10-24 21:15:28 +0000940 }
941 actsize = bytesperclust;
942 curclust = endclust = newclust;
943 } while (1);
Donggeun Kim8f814002011-10-24 21:15:28 +0000944
AKASHI Takahiroed8b1e42018-09-11 15:59:05 +0900945 return 0;
Benoît Thébaudeau8fed7d32015-09-28 15:45:32 +0200946}
947
948/*
949 * Fill dir_entry
950 */
951static void fill_dentry(fsdata *mydata, dir_entry *dentptr,
952 const char *filename, __u32 start_cluster, __u32 size, __u8 attr)
953{
954 set_start_cluster(mydata, dentptr, start_cluster);
Donggeun Kim8f814002011-10-24 21:15:28 +0000955 dentptr->size = cpu_to_le32(size);
956
957 dentptr->attr = attr;
958
959 set_name(dentptr, filename);
960}
961
962/*
Donggeun Kim8f814002011-10-24 21:15:28 +0000963 * Find a directory entry based on filename or start cluster number
964 * If the directory entry is not found,
965 * the new position for writing a directory entry will be returned
966 */
AKASHI Takahiro49ca96b2018-09-11 15:59:04 +0900967static dir_entry *find_directory_entry(fat_itr *itr, char *filename)
Donggeun Kim8f814002011-10-24 21:15:28 +0000968{
AKASHI Takahiro49ca96b2018-09-11 15:59:04 +0900969 int match = 0;
Donggeun Kim8f814002011-10-24 21:15:28 +0000970
AKASHI Takahiro49ca96b2018-09-11 15:59:04 +0900971 while (fat_itr_next(itr)) {
972 /* check both long and short name: */
973 if (!strcasecmp(filename, itr->name))
974 match = 1;
975 else if (itr->name != itr->s_name &&
976 !strcasecmp(filename, itr->s_name))
977 match = 1;
Donggeun Kim8f814002011-10-24 21:15:28 +0000978
AKASHI Takahiro49ca96b2018-09-11 15:59:04 +0900979 if (!match)
980 continue;
Donggeun Kim8f814002011-10-24 21:15:28 +0000981
AKASHI Takahiro49ca96b2018-09-11 15:59:04 +0900982 if (itr->dent->name[0] == '\0')
Donggeun Kim8f814002011-10-24 21:15:28 +0000983 return NULL;
AKASHI Takahiro49ca96b2018-09-11 15:59:04 +0900984 else
985 return itr->dent;
986 }
Donggeun Kim8f814002011-10-24 21:15:28 +0000987
AKASHI Takahiroc3269332019-05-24 14:10:37 +0900988 /* allocate a cluster for more entries */
989 if (!itr->dent &&
990 (!itr->is_root || itr->fsdata->fatsize == 32) &&
991 new_dir_table(itr))
AKASHI Takahiro49ca96b2018-09-11 15:59:04 +0900992 /* indicate that allocating dent failed */
993 itr->dent = NULL;
Donggeun Kim8f814002011-10-24 21:15:28 +0000994
AKASHI Takahiro49ca96b2018-09-11 15:59:04 +0900995 return NULL;
996}
Donggeun Kim8f814002011-10-24 21:15:28 +0000997
AKASHI Takahiro49ca96b2018-09-11 15:59:04 +0900998static int split_filename(char *filename, char **dirname, char **basename)
999{
1000 char *p, *last_slash, *last_slash_cont;
Donggeun Kim8f814002011-10-24 21:15:28 +00001001
AKASHI Takahiro49ca96b2018-09-11 15:59:04 +09001002again:
1003 p = filename;
1004 last_slash = NULL;
1005 last_slash_cont = NULL;
1006 while (*p) {
1007 if (ISDIRDELIM(*p)) {
1008 last_slash = p;
1009 last_slash_cont = p;
1010 /* continuous slashes */
1011 while (ISDIRDELIM(*p))
1012 last_slash_cont = p++;
1013 if (!*p)
1014 break;
Donggeun Kim8f814002011-10-24 21:15:28 +00001015 }
AKASHI Takahiro49ca96b2018-09-11 15:59:04 +09001016 p++;
1017 }
Wu, Josh675b23c2014-05-08 16:14:07 +08001018
AKASHI Takahiro49ca96b2018-09-11 15:59:04 +09001019 if (last_slash) {
1020 if (last_slash_cont == (filename + strlen(filename) - 1)) {
1021 /* remove trailing slashes */
1022 *last_slash = '\0';
1023 goto again;
Wu, Josh675b23c2014-05-08 16:14:07 +08001024 }
1025
AKASHI Takahiro49ca96b2018-09-11 15:59:04 +09001026 if (last_slash == filename) {
1027 /* avoid ""(null) directory */
1028 *dirname = "/";
1029 } else {
1030 *last_slash = '\0';
1031 *dirname = filename;
Donggeun Kim8f814002011-10-24 21:15:28 +00001032 }
AKASHI Takahiro49ca96b2018-09-11 15:59:04 +09001033
1034 *last_slash_cont = '\0';
1035 *basename = last_slash_cont + 1;
1036 } else {
1037 *dirname = "/"; /* root by default */
1038 *basename = filename;
Donggeun Kim8f814002011-10-24 21:15:28 +00001039 }
1040
AKASHI Takahiro49ca96b2018-09-11 15:59:04 +09001041 return 0;
Donggeun Kim8f814002011-10-24 21:15:28 +00001042}
1043
Heinrich Schuchardt58587212019-05-12 09:59:18 +02001044/**
1045 * normalize_longname() - check long file name and convert to lower case
1046 *
1047 * We assume here that the FAT file system is using an 8bit code page.
1048 * Linux typically uses CP437, EDK2 assumes CP1250.
1049 *
1050 * @l_filename: preallocated buffer receiving the normalized name
1051 * @filename: filename to normalize
1052 * Return: 0 on success, -1 on failure
1053 */
AKASHI Takahiroc83df1a2018-09-11 15:59:02 +09001054static int normalize_longname(char *l_filename, const char *filename)
1055{
Heinrich Schuchardt58587212019-05-12 09:59:18 +02001056 const char *p, illegal[] = "<>:\"/\\|?*";
AKASHI Takahiroc83df1a2018-09-11 15:59:02 +09001057
Heinrich Schuchardt58587212019-05-12 09:59:18 +02001058 if (strlen(filename) >= VFAT_MAXLEN_BYTES)
AKASHI Takahiroc83df1a2018-09-11 15:59:02 +09001059 return -1;
AKASHI Takahiroc83df1a2018-09-11 15:59:02 +09001060
Heinrich Schuchardt58587212019-05-12 09:59:18 +02001061 for (p = filename; *p; ++p) {
1062 if ((unsigned char)*p < 0x20)
1063 return -1;
1064 if (strchr(illegal, *p))
1065 return -1;
1066 }
AKASHI Takahiroc83df1a2018-09-11 15:59:02 +09001067
Heinrich Schuchardt58587212019-05-12 09:59:18 +02001068 strcpy(l_filename, filename);
1069 downcase(l_filename, VFAT_MAXLEN_BYTES);
AKASHI Takahiroc83df1a2018-09-11 15:59:02 +09001070
1071 return 0;
1072}
1073
AKASHI Takahiroed8b1e42018-09-11 15:59:05 +09001074int file_fat_write_at(const char *filename, loff_t pos, void *buffer,
1075 loff_t size, loff_t *actwrite)
Donggeun Kim8f814002011-10-24 21:15:28 +00001076{
AKASHI Takahiro49ca96b2018-09-11 15:59:04 +09001077 dir_entry *retdent;
AKASHI Takahiro49ca96b2018-09-11 15:59:04 +09001078 fsdata datablock = { .fatbuf = NULL, };
Donggeun Kim8f814002011-10-24 21:15:28 +00001079 fsdata *mydata = &datablock;
AKASHI Takahiro49ca96b2018-09-11 15:59:04 +09001080 fat_itr *itr = NULL;
AKASHI Takahiroc83df1a2018-09-11 15:59:02 +09001081 int ret = -1;
AKASHI Takahiro49ca96b2018-09-11 15:59:04 +09001082 char *filename_copy, *parent, *basename;
Donggeun Kim8f814002011-10-24 21:15:28 +00001083 char l_filename[VFAT_MAXLEN_BYTES];
1084
AKASHI Takahiroed8b1e42018-09-11 15:59:05 +09001085 debug("writing %s\n", filename);
1086
AKASHI Takahiro49ca96b2018-09-11 15:59:04 +09001087 filename_copy = strdup(filename);
1088 if (!filename_copy)
1089 return -ENOMEM;
Donggeun Kim8f814002011-10-24 21:15:28 +00001090
AKASHI Takahiro49ca96b2018-09-11 15:59:04 +09001091 split_filename(filename_copy, &parent, &basename);
1092 if (!strlen(basename)) {
1093 ret = -EINVAL;
1094 goto exit;
Donggeun Kim8f814002011-10-24 21:15:28 +00001095 }
1096
AKASHI Takahiro49ca96b2018-09-11 15:59:04 +09001097 filename = basename;
1098 if (normalize_longname(l_filename, filename)) {
1099 printf("FAT: illegal filename (%s)\n", filename);
1100 ret = -EINVAL;
1101 goto exit;
Donggeun Kim8f814002011-10-24 21:15:28 +00001102 }
1103
AKASHI Takahiro49ca96b2018-09-11 15:59:04 +09001104 itr = malloc_cache_aligned(sizeof(fat_itr));
1105 if (!itr) {
1106 ret = -ENOMEM;
1107 goto exit;
Donggeun Kim8f814002011-10-24 21:15:28 +00001108 }
1109
AKASHI Takahiro49ca96b2018-09-11 15:59:04 +09001110 ret = fat_itr_root(itr, &datablock);
1111 if (ret)
Donggeun Kim8f814002011-10-24 21:15:28 +00001112 goto exit;
Donggeun Kim8f814002011-10-24 21:15:28 +00001113
AKASHI Takahiro49ca96b2018-09-11 15:59:04 +09001114 total_sector = datablock.total_sect;
1115
1116 ret = fat_itr_resolve(itr, parent, TYPE_DIR);
1117 if (ret) {
1118 printf("%s: doesn't exist (%d)\n", parent, ret);
AKASHI Takahiroc83df1a2018-09-11 15:59:02 +09001119 goto exit;
1120 }
Donggeun Kim8f814002011-10-24 21:15:28 +00001121
AKASHI Takahiro49ca96b2018-09-11 15:59:04 +09001122 retdent = find_directory_entry(itr, l_filename);
1123
Donggeun Kim8f814002011-10-24 21:15:28 +00001124 if (retdent) {
AKASHI Takahiro49ca96b2018-09-11 15:59:04 +09001125 if (fat_itr_isdir(itr)) {
1126 ret = -EISDIR;
1127 goto exit;
1128 }
1129
AKASHI Takahirob07f7042018-09-11 15:59:06 +09001130 /* A file exists */
1131 if (pos == -1)
1132 /* Append to the end */
1133 pos = FAT2CPU32(retdent->size);
1134 if (pos > retdent->size) {
1135 /* No hole allowed */
1136 ret = -EINVAL;
1137 goto exit;
1138 }
1139
AKASHI Takahiroed8b1e42018-09-11 15:59:05 +09001140 /* Update file size in a directory entry */
1141 retdent->size = cpu_to_le32(pos + size);
Donggeun Kim8f814002011-10-24 21:15:28 +00001142 } else {
AKASHI Takahiro49ca96b2018-09-11 15:59:04 +09001143 /* Create a new file */
1144
1145 if (itr->is_root) {
1146 /* root dir cannot have "." or ".." */
1147 if (!strcmp(l_filename, ".") ||
1148 !strcmp(l_filename, "..")) {
1149 ret = -EINVAL;
1150 goto exit;
1151 }
1152 }
1153
1154 if (!itr->dent) {
1155 printf("Error: allocating new dir entry\n");
1156 ret = -EIO;
1157 goto exit;
1158 }
1159
AKASHI Takahirob07f7042018-09-11 15:59:06 +09001160 if (pos) {
1161 /* No hole allowed */
1162 ret = -EINVAL;
1163 goto exit;
1164 }
1165
AKASHI Takahiro49ca96b2018-09-11 15:59:04 +09001166 memset(itr->dent, 0, sizeof(*itr->dent));
1167
AKASHI Takahiroa2c0bd02019-05-24 14:10:36 +09001168 /* Calculate checksum for short name */
AKASHI Takahiro49ca96b2018-09-11 15:59:04 +09001169 set_name(itr->dent, filename);
AKASHI Takahiroa2c0bd02019-05-24 14:10:36 +09001170
1171 /* Set long name entries */
AKASHI Takahiro49ca96b2018-09-11 15:59:04 +09001172 if (fill_dir_slot(itr, filename)) {
1173 ret = -EIO;
1174 goto exit;
1175 }
Donggeun Kim8f814002011-10-24 21:15:28 +00001176
AKASHI Takahiroa2c0bd02019-05-24 14:10:36 +09001177 /* Set short name entry */
AKASHI Takahiroed8b1e42018-09-11 15:59:05 +09001178 fill_dentry(itr->fsdata, itr->dent, filename, 0, size, 0x20);
Donggeun Kim8f814002011-10-24 21:15:28 +00001179
AKASHI Takahiro49ca96b2018-09-11 15:59:04 +09001180 retdent = itr->dent;
Benoît Thébaudeaud1d390a2015-09-28 15:45:31 +02001181 }
Donggeun Kim8f814002011-10-24 21:15:28 +00001182
AKASHI Takahiroed8b1e42018-09-11 15:59:05 +09001183 ret = set_contents(mydata, retdent, pos, buffer, size, actwrite);
Benoît Thébaudeaud1d390a2015-09-28 15:45:31 +02001184 if (ret < 0) {
1185 printf("Error: writing contents\n");
AKASHI Takahiro6aa77692018-09-11 15:59:03 +09001186 ret = -EIO;
Benoît Thébaudeaud1d390a2015-09-28 15:45:31 +02001187 goto exit;
1188 }
1189 debug("attempt to write 0x%llx bytes\n", *actwrite);
Donggeun Kim8f814002011-10-24 21:15:28 +00001190
Benoît Thébaudeaud1d390a2015-09-28 15:45:31 +02001191 /* Flush fat buffer */
Stefan Brüns751b31d2016-09-11 22:51:40 +02001192 ret = flush_dirty_fat_buffer(mydata);
Benoît Thébaudeaud1d390a2015-09-28 15:45:31 +02001193 if (ret) {
1194 printf("Error: flush fat buffer\n");
AKASHI Takahiro6aa77692018-09-11 15:59:03 +09001195 ret = -EIO;
Benoît Thébaudeaud1d390a2015-09-28 15:45:31 +02001196 goto exit;
Donggeun Kim8f814002011-10-24 21:15:28 +00001197 }
1198
Benoît Thébaudeaud1d390a2015-09-28 15:45:31 +02001199 /* Write directory table to device */
AKASHI Takahirod98c6742019-05-24 14:10:35 +09001200 ret = flush_dir(itr);
AKASHI Takahiro6aa77692018-09-11 15:59:03 +09001201 if (ret) {
Benoît Thébaudeaud1d390a2015-09-28 15:45:31 +02001202 printf("Error: writing directory entry\n");
AKASHI Takahiro6aa77692018-09-11 15:59:03 +09001203 ret = -EIO;
1204 }
Benoît Thébaudeaud1d390a2015-09-28 15:45:31 +02001205
Donggeun Kim8f814002011-10-24 21:15:28 +00001206exit:
AKASHI Takahiro49ca96b2018-09-11 15:59:04 +09001207 free(filename_copy);
Donggeun Kim8f814002011-10-24 21:15:28 +00001208 free(mydata->fatbuf);
AKASHI Takahiro49ca96b2018-09-11 15:59:04 +09001209 free(itr);
Suriyan Ramasami441c2232014-11-17 14:39:35 -08001210 return ret;
Donggeun Kim8f814002011-10-24 21:15:28 +00001211}
1212
Suriyan Ramasami441c2232014-11-17 14:39:35 -08001213int file_fat_write(const char *filename, void *buffer, loff_t offset,
1214 loff_t maxsize, loff_t *actwrite)
Donggeun Kim8f814002011-10-24 21:15:28 +00001215{
AKASHI Takahiroed8b1e42018-09-11 15:59:05 +09001216 return file_fat_write_at(filename, offset, buffer, maxsize, actwrite);
Donggeun Kim8f814002011-10-24 21:15:28 +00001217}
AKASHI Takahiro1c24b7b2018-09-11 15:59:10 +09001218
AKASHI Takahiro73b34972018-09-11 15:59:14 +09001219static int fat_dir_entries(fat_itr *itr)
1220{
1221 fat_itr *dirs;
1222 fsdata fsdata = { .fatbuf = NULL, }, *mydata = &fsdata;
1223 /* for FATBUFSIZE */
1224 int count;
1225
1226 dirs = malloc_cache_aligned(sizeof(fat_itr));
1227 if (!dirs) {
1228 debug("Error: allocating memory\n");
1229 count = -ENOMEM;
1230 goto exit;
1231 }
1232
1233 /* duplicate fsdata */
1234 fat_itr_child(dirs, itr);
1235 fsdata = *dirs->fsdata;
1236
1237 /* allocate local fat buffer */
1238 fsdata.fatbuf = malloc_cache_aligned(FATBUFSIZE);
1239 if (!fsdata.fatbuf) {
1240 debug("Error: allocating memory\n");
1241 count = -ENOMEM;
1242 goto exit;
1243 }
1244 fsdata.fatbufnum = -1;
1245 dirs->fsdata = &fsdata;
1246
1247 for (count = 0; fat_itr_next(dirs); count++)
1248 ;
1249
1250exit:
1251 free(fsdata.fatbuf);
1252 free(dirs);
1253 return count;
1254}
1255
1256static int delete_dentry(fat_itr *itr)
1257{
1258 fsdata *mydata = itr->fsdata;
1259 dir_entry *dentptr = itr->dent;
1260
1261 /* free cluster blocks */
1262 clear_fatent(mydata, START(dentptr));
1263 if (flush_dirty_fat_buffer(mydata) < 0) {
1264 printf("Error: flush fat buffer\n");
1265 return -EIO;
1266 }
1267
1268 /*
1269 * update a directory entry
1270 * TODO:
1271 * - long file name support
1272 * - find and mark the "new" first invalid entry as name[0]=0x00
1273 */
1274 memset(dentptr, 0, sizeof(*dentptr));
1275 dentptr->name[0] = 0xe5;
1276
AKASHI Takahirod98c6742019-05-24 14:10:35 +09001277 if (flush_dir(itr)) {
AKASHI Takahiro73b34972018-09-11 15:59:14 +09001278 printf("error: writing directory entry\n");
1279 return -EIO;
1280 }
1281
1282 return 0;
1283}
1284
1285int fat_unlink(const char *filename)
1286{
1287 fsdata fsdata = { .fatbuf = NULL, };
1288 fat_itr *itr = NULL;
1289 int n_entries, ret;
1290 char *filename_copy, *dirname, *basename;
1291
1292 filename_copy = strdup(filename);
Heinrich Schuchardtb2242f62018-10-02 06:58:00 +02001293 if (!filename_copy) {
1294 printf("Error: allocating memory\n");
1295 ret = -ENOMEM;
1296 goto exit;
1297 }
AKASHI Takahiro73b34972018-09-11 15:59:14 +09001298 split_filename(filename_copy, &dirname, &basename);
1299
1300 if (!strcmp(dirname, "/") && !strcmp(basename, "")) {
1301 printf("Error: cannot remove root\n");
1302 ret = -EINVAL;
1303 goto exit;
1304 }
1305
1306 itr = malloc_cache_aligned(sizeof(fat_itr));
1307 if (!itr) {
1308 printf("Error: allocating memory\n");
Heinrich Schuchardtb2242f62018-10-02 06:58:00 +02001309 ret = -ENOMEM;
1310 goto exit;
AKASHI Takahiro73b34972018-09-11 15:59:14 +09001311 }
1312
1313 ret = fat_itr_root(itr, &fsdata);
1314 if (ret)
1315 goto exit;
1316
1317 total_sector = fsdata.total_sect;
1318
1319 ret = fat_itr_resolve(itr, dirname, TYPE_DIR);
1320 if (ret) {
1321 printf("%s: doesn't exist (%d)\n", dirname, ret);
1322 ret = -ENOENT;
1323 goto exit;
1324 }
1325
1326 if (!find_directory_entry(itr, basename)) {
1327 printf("%s: doesn't exist\n", basename);
1328 ret = -ENOENT;
1329 goto exit;
1330 }
1331
1332 if (fat_itr_isdir(itr)) {
1333 n_entries = fat_dir_entries(itr);
1334 if (n_entries < 0) {
1335 ret = n_entries;
1336 goto exit;
1337 }
1338 if (n_entries > 2) {
1339 printf("Error: directory is not empty: %d\n",
1340 n_entries);
1341 ret = -EINVAL;
1342 goto exit;
1343 }
1344 }
1345
1346 ret = delete_dentry(itr);
1347
1348exit:
1349 free(fsdata.fatbuf);
1350 free(itr);
1351 free(filename_copy);
1352
1353 return ret;
1354}
1355
AKASHI Takahiro1c24b7b2018-09-11 15:59:10 +09001356int fat_mkdir(const char *new_dirname)
1357{
1358 dir_entry *retdent;
1359 fsdata datablock = { .fatbuf = NULL, };
1360 fsdata *mydata = &datablock;
1361 fat_itr *itr = NULL;
1362 char *dirname_copy, *parent, *dirname;
1363 char l_dirname[VFAT_MAXLEN_BYTES];
1364 int ret = -1;
1365 loff_t actwrite;
1366 unsigned int bytesperclust;
1367 dir_entry *dotdent = NULL;
1368
1369 dirname_copy = strdup(new_dirname);
1370 if (!dirname_copy)
1371 goto exit;
1372
1373 split_filename(dirname_copy, &parent, &dirname);
1374 if (!strlen(dirname)) {
1375 ret = -EINVAL;
1376 goto exit;
1377 }
1378
1379 if (normalize_longname(l_dirname, dirname)) {
1380 printf("FAT: illegal filename (%s)\n", dirname);
1381 ret = -EINVAL;
1382 goto exit;
1383 }
1384
1385 itr = malloc_cache_aligned(sizeof(fat_itr));
1386 if (!itr) {
1387 ret = -ENOMEM;
1388 goto exit;
1389 }
1390
1391 ret = fat_itr_root(itr, &datablock);
1392 if (ret)
1393 goto exit;
1394
1395 total_sector = datablock.total_sect;
1396
1397 ret = fat_itr_resolve(itr, parent, TYPE_DIR);
1398 if (ret) {
1399 printf("%s: doesn't exist (%d)\n", parent, ret);
1400 goto exit;
1401 }
1402
1403 retdent = find_directory_entry(itr, l_dirname);
1404
1405 if (retdent) {
1406 printf("%s: already exists\n", l_dirname);
1407 ret = -EEXIST;
1408 goto exit;
1409 } else {
1410 if (itr->is_root) {
1411 /* root dir cannot have "." or ".." */
1412 if (!strcmp(l_dirname, ".") ||
1413 !strcmp(l_dirname, "..")) {
1414 ret = -EINVAL;
1415 goto exit;
1416 }
1417 }
1418
1419 if (!itr->dent) {
1420 printf("Error: allocating new dir entry\n");
1421 ret = -EIO;
1422 goto exit;
1423 }
1424
1425 memset(itr->dent, 0, sizeof(*itr->dent));
1426
1427 /* Set short name to set alias checksum field in dir_slot */
1428 set_name(itr->dent, dirname);
1429 fill_dir_slot(itr, dirname);
1430
1431 /* Set attribute as archive for regular file */
1432 fill_dentry(itr->fsdata, itr->dent, dirname, 0, 0,
1433 ATTR_DIR | ATTR_ARCH);
1434
1435 retdent = itr->dent;
1436 }
1437
1438 /* Default entries */
1439 bytesperclust = mydata->clust_size * mydata->sect_size;
1440 dotdent = malloc_cache_aligned(bytesperclust);
1441 if (!dotdent) {
1442 ret = -ENOMEM;
1443 goto exit;
1444 }
1445 memset(dotdent, 0, bytesperclust);
1446
1447 memcpy(dotdent[0].name, ". ", 8);
1448 memcpy(dotdent[0].ext, " ", 3);
1449 dotdent[0].attr = ATTR_DIR | ATTR_ARCH;
1450
1451 memcpy(dotdent[1].name, ".. ", 8);
1452 memcpy(dotdent[1].ext, " ", 3);
1453 dotdent[1].attr = ATTR_DIR | ATTR_ARCH;
1454 set_start_cluster(mydata, &dotdent[1], itr->start_clust);
1455
1456 ret = set_contents(mydata, retdent, 0, (__u8 *)dotdent,
1457 bytesperclust, &actwrite);
1458 if (ret < 0) {
1459 printf("Error: writing contents\n");
1460 goto exit;
1461 }
1462 /* Write twice for "." */
1463 set_start_cluster(mydata, &dotdent[0], START(retdent));
1464 ret = set_contents(mydata, retdent, 0, (__u8 *)dotdent,
1465 bytesperclust, &actwrite);
1466 if (ret < 0) {
1467 printf("Error: writing contents\n");
1468 goto exit;
1469 }
1470
1471 /* Flush fat buffer */
1472 ret = flush_dirty_fat_buffer(mydata);
1473 if (ret) {
1474 printf("Error: flush fat buffer\n");
1475 goto exit;
1476 }
1477
1478 /* Write directory table to device */
AKASHI Takahirod98c6742019-05-24 14:10:35 +09001479 ret = flush_dir(itr);
AKASHI Takahiro1c24b7b2018-09-11 15:59:10 +09001480 if (ret)
1481 printf("Error: writing directory entry\n");
1482
1483exit:
1484 free(dirname_copy);
1485 free(mydata->fatbuf);
1486 free(itr);
1487 free(dotdent);
1488 return ret;
1489}