blob: 8ff2f6def083809b54cd4000b44d474355fd4c3f [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Donggeun Kimc30a15e2011-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 Kimc30a15e2011-10-24 21:15:28 +00006 */
7
8#include <common.h>
9#include <command.h>
10#include <config.h>
Heinrich Schuchardt28cef9c2020-11-20 12:55:22 +010011#include <div64.h>
Donggeun Kimc30a15e2011-10-24 21:15:28 +000012#include <fat.h>
Simon Glassf7ae49f2020-05-10 11:40:05 -060013#include <log.h>
Simon Glass336d4612020-02-03 07:36:16 -070014#include <malloc.h>
Donggeun Kimc30a15e2011-10-24 21:15:28 +000015#include <part.h>
Heinrich Schuchardt28cef9c2020-11-20 12:55:22 +010016#include <rand.h>
17#include <asm/byteorder.h>
Simon Glass90526e92020-05-10 11:39:56 -060018#include <asm/cache.h>
Richard Genoudfb7e16c2012-12-13 00:47:36 +000019#include <linux/ctype.h>
Tom Rini9e374e72014-11-24 11:50:46 -050020#include <linux/math64.h>
Donggeun Kimc30a15e2011-10-24 21:15:28 +000021#include "fat.c"
22
Heinrich Schuchardt3a331ae2020-11-25 16:33:55 +010023static dir_entry *find_directory_entry(fat_itr *itr, char *filename);
Heinrich Schuchardt32a5f882020-11-22 09:58:44 +010024static int new_dir_table(fat_itr *itr);
Heinrich Schuchardt3a331ae2020-11-25 16:33:55 +010025
Heinrich Schuchardt28cef9c2020-11-20 12:55:22 +010026/* Characters that may only be used in long file names */
27static const char LONG_ONLY_CHARS[] = "+,;=[]";
28
Heinrich Schuchardt57b745e2020-11-22 19:19:39 +010029/* Combined size of the name and ext fields in the directory entry */
30#define SHORT_NAME_SIZE 11
31
Heinrich Schuchardt28cef9c2020-11-20 12:55:22 +010032/**
33 * str2fat() - convert string to valid FAT name characters
34 *
35 * Stop when reaching end of @src or a period.
36 * Ignore spaces.
37 * Replace characters that may only be used in long names by underscores.
38 * Convert lower case characters to upper case.
39 *
40 * To avoid assumptions about the code page we do not use characters
41 * above 0x7f for the short name.
42 *
43 * @dest: destination buffer
44 * @src: source buffer
45 * @length: size of destination buffer
46 * Return: number of bytes in destination buffer
47 */
48static int str2fat(char *dest, char *src, int length)
Donggeun Kimc30a15e2011-10-24 21:15:28 +000049{
50 int i;
51
Heinrich Schuchardt28cef9c2020-11-20 12:55:22 +010052 for (i = 0; i < length; ++src) {
53 char c = *src;
54
55 if (!c || c == '.')
56 break;
57 if (c == ' ')
58 continue;
59 if (strchr(LONG_ONLY_CHARS, c) || c > 0x7f)
60 c = '_';
61 else if (c >= 'a' && c <= 'z')
62 c &= 0xdf;
63 dest[i] = c;
64 ++i;
Donggeun Kimc30a15e2011-10-24 21:15:28 +000065 }
Heinrich Schuchardt28cef9c2020-11-20 12:55:22 +010066 return i;
67}
68
69/**
Heinrich Schuchardt3a331ae2020-11-25 16:33:55 +010070 * fat_move_to_cluster() - position to first directory entry in cluster
71 *
72 * @itr: directory iterator
73 * @cluster cluster
74 * Return: 0 for success, -EIO on error
75 */
76static int fat_move_to_cluster(fat_itr *itr, unsigned int cluster)
77{
78 unsigned int nbytes;
79
80 /* position to the start of the directory */
81 itr->next_clust = cluster;
82 itr->last_cluster = 0;
83 if (!fat_next_cluster(itr, &nbytes))
84 return -EIO;
85 itr->dent = (dir_entry *)itr->block;
86 itr->remaining = nbytes / sizeof(dir_entry) - 1;
87 return 0;
88}
89
90/**
Heinrich Schuchardt28cef9c2020-11-20 12:55:22 +010091 * set_name() - set short name in directory entry
92 *
93 * The function determines if the @filename is a valid short name.
94 * In this case no long name is needed.
95 *
96 * If a long name is needed, a short name is constructed.
97 *
Heinrich Schuchardt3a331ae2020-11-25 16:33:55 +010098 * @itr: directory iterator
Heinrich Schuchardt28cef9c2020-11-20 12:55:22 +010099 * @filename: long file name
Heinrich Schuchardt57b745e2020-11-22 19:19:39 +0100100 * @shortname: buffer of 11 bytes to receive chosen short name and extension
Heinrich Schuchardt28cef9c2020-11-20 12:55:22 +0100101 * Return: number of directory entries needed, negative on error
102 */
Heinrich Schuchardt3a331ae2020-11-25 16:33:55 +0100103static int set_name(fat_itr *itr, const char *filename, char *shortname)
Heinrich Schuchardt28cef9c2020-11-20 12:55:22 +0100104{
105 char *period;
106 char *pos;
107 int period_location;
108 char buf[13];
109 int i;
Heinrich Schuchardt57b745e2020-11-22 19:19:39 +0100110 int ret;
Heinrich Schuchardt41ac28c2021-01-26 00:04:19 +0100111 struct nameext dirent;
Heinrich Schuchardt28cef9c2020-11-20 12:55:22 +0100112
113 if (!filename)
114 return -EIO;
115
Heinrich Schuchardt57b745e2020-11-22 19:19:39 +0100116 /* Initialize buffer */
117 memset(&dirent, ' ', sizeof(dirent));
Heinrich Schuchardt28cef9c2020-11-20 12:55:22 +0100118
119 /* Convert filename to upper case short name */
120 period = strrchr(filename, '.');
121 pos = (char *)filename;
122 if (*pos == '.') {
123 pos = period + 1;
124 period = 0;
125 }
126 if (period)
Heinrich Schuchardt57b745e2020-11-22 19:19:39 +0100127 str2fat(dirent.ext, period + 1, sizeof(dirent.ext));
128 period_location = str2fat(dirent.name, pos, sizeof(dirent.name));
Heinrich Schuchardt28cef9c2020-11-20 12:55:22 +0100129 if (period_location < 0)
130 return period_location;
Heinrich Schuchardt57b745e2020-11-22 19:19:39 +0100131 if (*dirent.name == ' ')
132 *dirent.name = '_';
Heinrich Schuchardt28cef9c2020-11-20 12:55:22 +0100133 /* 0xe5 signals a deleted directory entry. Replace it by 0x05. */
Heinrich Schuchardt57b745e2020-11-22 19:19:39 +0100134 if (*dirent.name == 0xe5)
135 *dirent.name = 0x05;
Heinrich Schuchardt28cef9c2020-11-20 12:55:22 +0100136
137 /* If filename and short name are the same, quit. */
Heinrich Schuchardt57b745e2020-11-22 19:19:39 +0100138 sprintf(buf, "%.*s.%.3s", period_location, dirent.name, dirent.ext);
139 if (!strcmp(buf, filename)) {
140 ret = 1;
141 goto out;
142 }
Heinrich Schuchardt28cef9c2020-11-20 12:55:22 +0100143
144 /* Construct an indexed short name */
145 for (i = 1; i < 0x200000; ++i) {
146 int suffix_len;
147 int suffix_start;
148 int j;
149
150 /* To speed up the search use random numbers */
151 if (i < 10) {
152 j = i;
153 } else {
154 j = 30 - fls(i);
155 j = 10 + (rand() >> j);
156 }
157 sprintf(buf, "~%d", j);
158 suffix_len = strlen(buf);
159 suffix_start = 8 - suffix_len;
160 if (suffix_start > period_location)
161 suffix_start = period_location;
Heinrich Schuchardt57b745e2020-11-22 19:19:39 +0100162 memcpy(dirent.name + suffix_start, buf, suffix_len);
163 if (*dirent.ext != ' ')
Heinrich Schuchardt28cef9c2020-11-20 12:55:22 +0100164 sprintf(buf, "%.*s.%.3s", suffix_start + suffix_len,
Heinrich Schuchardt57b745e2020-11-22 19:19:39 +0100165 dirent.name, dirent.ext);
Heinrich Schuchardt28cef9c2020-11-20 12:55:22 +0100166 else
167 sprintf(buf, "%.*s", suffix_start + suffix_len,
Heinrich Schuchardt57b745e2020-11-22 19:19:39 +0100168 dirent.name);
Heinrich Schuchardt3a331ae2020-11-25 16:33:55 +0100169 debug("generated short name: %s\n", buf);
Heinrich Schuchardt28cef9c2020-11-20 12:55:22 +0100170
Heinrich Schuchardt3a331ae2020-11-25 16:33:55 +0100171 /* Check that the short name does not exist yet. */
172 ret = fat_move_to_cluster(itr, itr->start_clust);
173 if (ret)
174 return ret;
175 if (find_directory_entry(itr, buf))
176 continue;
177
178 debug("chosen short name: %s\n", buf);
Heinrich Schuchardt28cef9c2020-11-20 12:55:22 +0100179 /* Each long name directory entry takes 13 characters. */
Heinrich Schuchardt57b745e2020-11-22 19:19:39 +0100180 ret = (strlen(filename) + 25) / 13;
181 goto out;
Heinrich Schuchardt28cef9c2020-11-20 12:55:22 +0100182 }
183 return -EIO;
Heinrich Schuchardt57b745e2020-11-22 19:19:39 +0100184out:
Heinrich Schuchardt41ac28c2021-01-26 00:04:19 +0100185 memcpy(shortname, &dirent, SHORT_NAME_SIZE);
Heinrich Schuchardt57b745e2020-11-22 19:19:39 +0100186 return ret;
Donggeun Kimc30a15e2011-10-24 21:15:28 +0000187}
188
189static int total_sector;
Donggeun Kim079df722012-03-22 04:38:55 +0000190static int disk_write(__u32 block, __u32 nr_blocks, void *buf)
Donggeun Kimc30a15e2011-10-24 21:15:28 +0000191{
Łukasz Majewski0a04ed82015-09-03 14:21:39 +0200192 ulong ret;
193
Simon Glass2a981dc2016-02-29 15:25:52 -0700194 if (!cur_dev)
Donggeun Kimc30a15e2011-10-24 21:15:28 +0000195 return -1;
196
Donggeun Kim079df722012-03-22 04:38:55 +0000197 if (cur_part_info.start + block + nr_blocks >
198 cur_part_info.start + total_sector) {
Donggeun Kimc30a15e2011-10-24 21:15:28 +0000199 printf("error: overflow occurs\n");
200 return -1;
201 }
202
Simon Glass2a981dc2016-02-29 15:25:52 -0700203 ret = blk_dwrite(cur_dev, cur_part_info.start + block, nr_blocks, buf);
Łukasz Majewski0a04ed82015-09-03 14:21:39 +0200204 if (nr_blocks && ret == 0)
205 return -1;
206
207 return ret;
Donggeun Kimc30a15e2011-10-24 21:15:28 +0000208}
209
Donggeun Kimc30a15e2011-10-24 21:15:28 +0000210/*
211 * Write fat buffer into block device
212 */
Stefan Brüns3c0ed9c2016-09-11 22:51:40 +0200213static int flush_dirty_fat_buffer(fsdata *mydata)
Donggeun Kimc30a15e2011-10-24 21:15:28 +0000214{
215 int getsize = FATBUFBLOCKS;
216 __u32 fatlength = mydata->fatlength;
217 __u8 *bufptr = mydata->fatbuf;
218 __u32 startblock = mydata->fatbufnum * FATBUFBLOCKS;
219
Stefan Brüns3c0ed9c2016-09-11 22:51:40 +0200220 debug("debug: evicting %d, dirty: %d\n", mydata->fatbufnum,
221 (int)mydata->fat_dirty);
222
223 if ((!mydata->fat_dirty) || (mydata->fatbufnum == -1))
224 return 0;
225
Stefan Brüns6c1a8082016-12-17 00:27:50 +0100226 /* Cap length if fatlength is not a multiple of FATBUFBLOCKS */
227 if (startblock + getsize > fatlength)
228 getsize = fatlength - startblock;
Donggeun Kimc30a15e2011-10-24 21:15:28 +0000229
Stefan Brüns6c1a8082016-12-17 00:27:50 +0100230 startblock += mydata->fat_sect;
Donggeun Kimc30a15e2011-10-24 21:15:28 +0000231
232 /* Write FAT buf */
233 if (disk_write(startblock, getsize, bufptr) < 0) {
234 debug("error: writing FAT blocks\n");
235 return -1;
236 }
237
AKASHI Takahiro4ced2032018-09-11 15:59:04 +0900238 if (mydata->fats == 2) {
Donggeun Kim627182e2011-12-20 18:34:27 +0000239 /* Update corresponding second FAT blocks */
240 startblock += mydata->fatlength;
241 if (disk_write(startblock, getsize, bufptr) < 0) {
242 debug("error: writing second FAT blocks\n");
243 return -1;
244 }
245 }
Stefan Brüns3c0ed9c2016-09-11 22:51:40 +0200246 mydata->fat_dirty = 0;
Donggeun Kim627182e2011-12-20 18:34:27 +0000247
Donggeun Kimc30a15e2011-10-24 21:15:28 +0000248 return 0;
249}
250
Heinrich Schuchardt32a5f882020-11-22 09:58:44 +0100251/**
252 * fat_find_empty_dentries() - find a sequence of available directory entries
253 *
254 * @itr: directory iterator
255 * @count: number of directory entries to find
256 * Return: 0 on success or negative error number
257 */
Heinrich Schuchardt3049a512020-11-22 11:54:22 +0100258static int fat_find_empty_dentries(fat_itr *itr, int count)
Heinrich Schuchardt32a5f882020-11-22 09:58:44 +0100259{
260 unsigned int cluster;
261 dir_entry *dent;
262 int remaining;
263 unsigned int n = 0;
264 int ret;
265
266 ret = fat_move_to_cluster(itr, itr->start_clust);
267 if (ret)
268 return ret;
269
270 for (;;) {
271 if (!itr->dent) {
272 log_debug("Not enough directory entries available\n");
273 return -ENOSPC;
274 }
Heinrich Schuchardt041f0af2021-01-21 00:23:33 +0100275 switch (itr->dent->nameext.name[0]) {
Heinrich Schuchardt32a5f882020-11-22 09:58:44 +0100276 case 0x00:
277 case DELETED_FLAG:
278 if (!n) {
279 /* Remember first deleted directory entry */
280 cluster = itr->clust;
281 dent = itr->dent;
282 remaining = itr->remaining;
283 }
284 ++n;
285 if (n == count)
286 goto out;
287 break;
288 default:
289 n = 0;
290 break;
291 }
292
293 next_dent(itr);
294 if (!itr->dent &&
295 (!itr->is_root || itr->fsdata->fatsize == 32) &&
296 new_dir_table(itr))
297 return -ENOSPC;
298 }
299out:
300 /* Position back to first directory entry */
301 if (itr->clust != cluster) {
302 ret = fat_move_to_cluster(itr, cluster);
303 if (ret)
304 return ret;
305 }
306 itr->dent = dent;
307 itr->remaining = remaining;
308 return 0;
309}
310
Donggeun Kimc30a15e2011-10-24 21:15:28 +0000311/*
Donggeun Kimc30a15e2011-10-24 21:15:28 +0000312 * Set the file name information from 'name' into 'slotptr',
313 */
314static int str2slot(dir_slot *slotptr, const char *name, int *idx)
315{
316 int j, end_idx = 0;
317
318 for (j = 0; j <= 8; j += 2) {
319 if (name[*idx] == 0x00) {
320 slotptr->name0_4[j] = 0;
321 slotptr->name0_4[j + 1] = 0;
322 end_idx++;
323 goto name0_4;
324 }
325 slotptr->name0_4[j] = name[*idx];
326 (*idx)++;
327 end_idx++;
328 }
329 for (j = 0; j <= 10; j += 2) {
330 if (name[*idx] == 0x00) {
331 slotptr->name5_10[j] = 0;
332 slotptr->name5_10[j + 1] = 0;
333 end_idx++;
334 goto name5_10;
335 }
336 slotptr->name5_10[j] = name[*idx];
337 (*idx)++;
338 end_idx++;
339 }
340 for (j = 0; j <= 2; j += 2) {
341 if (name[*idx] == 0x00) {
342 slotptr->name11_12[j] = 0;
343 slotptr->name11_12[j + 1] = 0;
344 end_idx++;
345 goto name11_12;
346 }
347 slotptr->name11_12[j] = name[*idx];
348 (*idx)++;
349 end_idx++;
350 }
351
352 if (name[*idx] == 0x00)
353 return 1;
354
355 return 0;
356/* Not used characters are filled with 0xff 0xff */
357name0_4:
358 for (; end_idx < 5; end_idx++) {
359 slotptr->name0_4[end_idx * 2] = 0xff;
360 slotptr->name0_4[end_idx * 2 + 1] = 0xff;
361 }
362 end_idx = 5;
363name5_10:
364 end_idx -= 5;
365 for (; end_idx < 6; end_idx++) {
366 slotptr->name5_10[end_idx * 2] = 0xff;
367 slotptr->name5_10[end_idx * 2 + 1] = 0xff;
368 }
369 end_idx = 11;
370name11_12:
371 end_idx -= 11;
372 for (; end_idx < 2; end_idx++) {
373 slotptr->name11_12[end_idx * 2] = 0xff;
374 slotptr->name11_12[end_idx * 2 + 1] = 0xff;
375 }
376
377 return 1;
378}
379
AKASHI Takahiro9c709c72019-05-24 14:10:36 +0900380static int flush_dir(fat_itr *itr);
Donggeun Kimc30a15e2011-10-24 21:15:28 +0000381
Heinrich Schuchardta3432492020-11-21 08:32:50 +0100382/**
383 * fill_dir_slot() - fill directory entries for long name
384 *
385 * @itr: directory iterator
386 * @l_name: long name
387 * @shortname: short name
388 * Return: 0 for success, -errno otherwise
Donggeun Kimc30a15e2011-10-24 21:15:28 +0000389 */
AKASHI Takahiro4ced2032018-09-11 15:59:04 +0900390static int
Heinrich Schuchardta3432492020-11-21 08:32:50 +0100391fill_dir_slot(fat_itr *itr, const char *l_name, const char *shortname)
Donggeun Kimc30a15e2011-10-24 21:15:28 +0000392{
Tien Fong Chee7aa1a6b2016-07-27 23:08:56 -0700393 __u8 temp_dir_slot_buffer[MAX_LFN_SLOT * sizeof(dir_slot)];
394 dir_slot *slotptr = (dir_slot *)temp_dir_slot_buffer;
Anatolij Gustschin8506eb82011-12-15 03:12:14 +0000395 __u8 counter = 0, checksum;
Donggeun Kimc30a15e2011-10-24 21:15:28 +0000396 int idx = 0, ret;
Donggeun Kimc30a15e2011-10-24 21:15:28 +0000397
Stefan Brünsed76f912016-09-11 22:51:39 +0200398 /* Get short file name checksum value */
Heinrich Schuchardt041f0af2021-01-21 00:23:33 +0100399 checksum = mkcksum((void *)shortname);
Donggeun Kimc30a15e2011-10-24 21:15:28 +0000400
401 do {
402 memset(slotptr, 0x00, sizeof(dir_slot));
403 ret = str2slot(slotptr, l_name, &idx);
404 slotptr->id = ++counter;
405 slotptr->attr = ATTR_VFAT;
406 slotptr->alias_checksum = checksum;
407 slotptr++;
408 } while (ret == 0);
409
410 slotptr--;
411 slotptr->id |= LAST_LONG_ENTRY_MASK;
412
413 while (counter >= 1) {
AKASHI Takahiro4ced2032018-09-11 15:59:04 +0900414 memcpy(itr->dent, slotptr, sizeof(dir_slot));
Donggeun Kimc30a15e2011-10-24 21:15:28 +0000415 slotptr--;
416 counter--;
AKASHI Takahiro9c709c72019-05-24 14:10:36 +0900417
Heinrich Schuchardte97eb632021-01-20 22:21:53 +0100418 if (!itr->remaining) {
419 /* Write directory table to device */
420 ret = flush_dir(itr);
421 if (ret)
422 return ret;
423 }
AKASHI Takahiro9c709c72019-05-24 14:10:36 +0900424
Heinrich Schuchardt3049a512020-11-22 11:54:22 +0100425 next_dent(itr);
426 if (!itr->dent)
427 return -EIO;
Donggeun Kimc30a15e2011-10-24 21:15:28 +0000428 }
429
Donggeun Kimc30a15e2011-10-24 21:15:28 +0000430 return 0;
431}
432
Donggeun Kimc30a15e2011-10-24 21:15:28 +0000433/*
Philipp Skadorov49abbd92016-12-15 15:52:53 -0500434 * Set the entry at index 'entry' in a FAT (12/16/32) table.
Donggeun Kimc30a15e2011-10-24 21:15:28 +0000435 */
436static int set_fatent_value(fsdata *mydata, __u32 entry, __u32 entry_value)
437{
Philipp Skadorov49abbd92016-12-15 15:52:53 -0500438 __u32 bufnum, offset, off16;
439 __u16 val1, val2;
Donggeun Kimc30a15e2011-10-24 21:15:28 +0000440
441 switch (mydata->fatsize) {
442 case 32:
443 bufnum = entry / FAT32BUFSIZE;
444 offset = entry - bufnum * FAT32BUFSIZE;
445 break;
446 case 16:
447 bufnum = entry / FAT16BUFSIZE;
448 offset = entry - bufnum * FAT16BUFSIZE;
449 break;
Philipp Skadorov49abbd92016-12-15 15:52:53 -0500450 case 12:
451 bufnum = entry / FAT12BUFSIZE;
452 offset = entry - bufnum * FAT12BUFSIZE;
453 break;
Donggeun Kimc30a15e2011-10-24 21:15:28 +0000454 default:
455 /* Unsupported FAT size */
456 return -1;
457 }
458
459 /* Read a new block of FAT entries into the cache. */
460 if (bufnum != mydata->fatbufnum) {
461 int getsize = FATBUFBLOCKS;
462 __u8 *bufptr = mydata->fatbuf;
463 __u32 fatlength = mydata->fatlength;
464 __u32 startblock = bufnum * FATBUFBLOCKS;
465
Stefan Brüns6c1a8082016-12-17 00:27:50 +0100466 /* Cap length if fatlength is not a multiple of FATBUFBLOCKS */
467 if (startblock + getsize > fatlength)
468 getsize = fatlength - startblock;
Donggeun Kimc30a15e2011-10-24 21:15:28 +0000469
Stefan Brüns3c0ed9c2016-09-11 22:51:40 +0200470 if (flush_dirty_fat_buffer(mydata) < 0)
471 return -1;
Donggeun Kimc30a15e2011-10-24 21:15:28 +0000472
Stefan Brüns6c1a8082016-12-17 00:27:50 +0100473 startblock += mydata->fat_sect;
474
Donggeun Kimc30a15e2011-10-24 21:15:28 +0000475 if (disk_read(startblock, getsize, bufptr) < 0) {
476 debug("Error reading FAT blocks\n");
477 return -1;
478 }
479 mydata->fatbufnum = bufnum;
480 }
481
Stefan Brüns3c0ed9c2016-09-11 22:51:40 +0200482 /* Mark as dirty */
483 mydata->fat_dirty = 1;
484
Donggeun Kimc30a15e2011-10-24 21:15:28 +0000485 /* Set the actual entry */
486 switch (mydata->fatsize) {
487 case 32:
488 ((__u32 *) mydata->fatbuf)[offset] = cpu_to_le32(entry_value);
489 break;
490 case 16:
491 ((__u16 *) mydata->fatbuf)[offset] = cpu_to_le16(entry_value);
492 break;
Philipp Skadorov49abbd92016-12-15 15:52:53 -0500493 case 12:
494 off16 = (offset * 3) / 4;
495
496 switch (offset & 0x3) {
497 case 0:
498 val1 = cpu_to_le16(entry_value) & 0xfff;
499 ((__u16 *)mydata->fatbuf)[off16] &= ~0xfff;
500 ((__u16 *)mydata->fatbuf)[off16] |= val1;
501 break;
502 case 1:
503 val1 = cpu_to_le16(entry_value) & 0xf;
504 val2 = (cpu_to_le16(entry_value) >> 4) & 0xff;
505
506 ((__u16 *)mydata->fatbuf)[off16] &= ~0xf000;
507 ((__u16 *)mydata->fatbuf)[off16] |= (val1 << 12);
508
509 ((__u16 *)mydata->fatbuf)[off16 + 1] &= ~0xff;
510 ((__u16 *)mydata->fatbuf)[off16 + 1] |= val2;
511 break;
512 case 2:
513 val1 = cpu_to_le16(entry_value) & 0xff;
514 val2 = (cpu_to_le16(entry_value) >> 8) & 0xf;
515
516 ((__u16 *)mydata->fatbuf)[off16] &= ~0xff00;
517 ((__u16 *)mydata->fatbuf)[off16] |= (val1 << 8);
518
519 ((__u16 *)mydata->fatbuf)[off16 + 1] &= ~0xf;
520 ((__u16 *)mydata->fatbuf)[off16 + 1] |= val2;
521 break;
522 case 3:
523 val1 = cpu_to_le16(entry_value) & 0xfff;
524 ((__u16 *)mydata->fatbuf)[off16] &= ~0xfff0;
525 ((__u16 *)mydata->fatbuf)[off16] |= (val1 << 4);
526 break;
527 default:
528 break;
529 }
530
531 break;
Donggeun Kimc30a15e2011-10-24 21:15:28 +0000532 default:
533 return -1;
534 }
535
536 return 0;
537}
538
539/*
Philipp Skadorov49abbd92016-12-15 15:52:53 -0500540 * Determine the next free cluster after 'entry' in a FAT (12/16/32) table
Stefan Brünsae1755b2016-09-11 22:51:41 +0200541 * and link it to 'entry'. EOC marker is not set on returned entry.
Donggeun Kimc30a15e2011-10-24 21:15:28 +0000542 */
543static __u32 determine_fatent(fsdata *mydata, __u32 entry)
544{
545 __u32 next_fat, next_entry = entry + 1;
546
547 while (1) {
Stefan Brünsb8948d22016-12-17 00:27:51 +0100548 next_fat = get_fatent(mydata, next_entry);
Donggeun Kimc30a15e2011-10-24 21:15:28 +0000549 if (next_fat == 0) {
Stefan Brünsae1755b2016-09-11 22:51:41 +0200550 /* found free entry, link to entry */
Donggeun Kimc30a15e2011-10-24 21:15:28 +0000551 set_fatent_value(mydata, entry, next_entry);
552 break;
553 }
554 next_entry++;
555 }
556 debug("FAT%d: entry: %08x, entry_value: %04x\n",
557 mydata->fatsize, entry, next_entry);
558
559 return next_entry;
560}
561
Heinrich Schuchardtf105fe72018-10-02 09:30:45 +0200562/**
AKASHI Takahiroa9f67062019-05-24 14:10:35 +0900563 * set_sectors() - write data to sectors
Heinrich Schuchardtf105fe72018-10-02 09:30:45 +0200564 *
AKASHI Takahiroa9f67062019-05-24 14:10:35 +0900565 * Write 'size' bytes from 'buffer' into the specified sector.
Heinrich Schuchardtf105fe72018-10-02 09:30:45 +0200566 *
567 * @mydata: data to be written
AKASHI Takahiroa9f67062019-05-24 14:10:35 +0900568 * @startsect: sector to be written to
Heinrich Schuchardtf105fe72018-10-02 09:30:45 +0200569 * @buffer: data to be written
570 * @size: bytes to be written (but not more than the size of a cluster)
571 * Return: 0 on success, -1 otherwise
Donggeun Kimc30a15e2011-10-24 21:15:28 +0000572 */
573static int
AKASHI Takahiroa9f67062019-05-24 14:10:35 +0900574set_sectors(fsdata *mydata, u32 startsect, u8 *buffer, u32 size)
Donggeun Kimc30a15e2011-10-24 21:15:28 +0000575{
Benoît Thébaudeau8133f432015-09-28 15:45:28 +0200576 int ret;
Donggeun Kimc30a15e2011-10-24 21:15:28 +0000577
AKASHI Takahiroa9f67062019-05-24 14:10:35 +0900578 debug("startsect: %d\n", startsect);
Donggeun Kimc30a15e2011-10-24 21:15:28 +0000579
Benoît Thébaudeau8133f432015-09-28 15:45:28 +0200580 if ((unsigned long)buffer & (ARCH_DMA_MINALIGN - 1)) {
581 ALLOC_CACHE_ALIGN_BUFFER(__u8, tmpbuf, mydata->sect_size);
582
Heinrich Schuchardt1c381ce2018-09-13 19:42:47 +0200583 debug("FAT: Misaligned buffer address (%p)\n", buffer);
Benoît Thébaudeau8133f432015-09-28 15:45:28 +0200584
585 while (size >= mydata->sect_size) {
586 memcpy(tmpbuf, buffer, mydata->sect_size);
587 ret = disk_write(startsect++, 1, tmpbuf);
588 if (ret != 1) {
589 debug("Error writing data (got %d)\n", ret);
590 return -1;
591 }
592
593 buffer += mydata->sect_size;
594 size -= mydata->sect_size;
595 }
596 } else if (size >= mydata->sect_size) {
Heinrich Schuchardt84ca3052021-01-26 00:14:14 +0100597 u32 nsects;
598
AKASHI Takahiroa9f67062019-05-24 14:10:35 +0900599 nsects = size / mydata->sect_size;
600 ret = disk_write(startsect, nsects, buffer);
601 if (ret != nsects) {
Benoît Thébaudeau8133f432015-09-28 15:45:28 +0200602 debug("Error writing data (got %d)\n", ret);
Wu, Josh6b8f1852013-07-24 17:55:30 +0800603 return -1;
604 }
Benoît Thébaudeau8133f432015-09-28 15:45:28 +0200605
AKASHI Takahiroa9f67062019-05-24 14:10:35 +0900606 startsect += nsects;
607 buffer += nsects * mydata->sect_size;
608 size -= nsects * mydata->sect_size;
Donggeun Kimc30a15e2011-10-24 21:15:28 +0000609 }
610
Benoît Thébaudeau8133f432015-09-28 15:45:28 +0200611 if (size) {
612 ALLOC_CACHE_ALIGN_BUFFER(__u8, tmpbuf, mydata->sect_size);
Heinrich Schuchardtf105fe72018-10-02 09:30:45 +0200613 /* Do not leak content of stack */
614 memset(tmpbuf, 0, mydata->sect_size);
Benoît Thébaudeau8133f432015-09-28 15:45:28 +0200615 memcpy(tmpbuf, buffer, size);
616 ret = disk_write(startsect, 1, tmpbuf);
617 if (ret != 1) {
618 debug("Error writing data (got %d)\n", ret);
Donggeun Kimc30a15e2011-10-24 21:15:28 +0000619 return -1;
620 }
Donggeun Kimc30a15e2011-10-24 21:15:28 +0000621 }
622
623 return 0;
624}
625
AKASHI Takahiroa9f67062019-05-24 14:10:35 +0900626/**
627 * set_cluster() - write data to cluster
628 *
629 * Write 'size' bytes from 'buffer' into the specified cluster.
630 *
631 * @mydata: data to be written
632 * @clustnum: cluster to be written to
633 * @buffer: data to be written
634 * @size: bytes to be written (but not more than the size of a cluster)
635 * Return: 0 on success, -1 otherwise
636 */
637static int
638set_cluster(fsdata *mydata, u32 clustnum, u8 *buffer, u32 size)
639{
640 return set_sectors(mydata, clust_to_sect(mydata, clustnum),
641 buffer, size);
642}
643
Heinrich Schuchardte97eb632021-01-20 22:21:53 +0100644/**
645 * flush_dir() - flush directory
646 *
647 * @itr: directory iterator
648 * Return: 0 for success, -EIO on error
649 */
650static int flush_dir(fat_itr *itr)
AKASHI Takahiroa9f67062019-05-24 14:10:35 +0900651{
652 fsdata *mydata = itr->fsdata;
653 u32 startsect, sect_offset, nsects;
Heinrich Schuchardte97eb632021-01-20 22:21:53 +0100654 int ret;
AKASHI Takahiroa9f67062019-05-24 14:10:35 +0900655
Heinrich Schuchardte97eb632021-01-20 22:21:53 +0100656 if (!itr->is_root || mydata->fatsize == 32) {
657 ret = set_cluster(mydata, itr->clust, itr->block,
658 mydata->clust_size * mydata->sect_size);
659 goto out;
660 }
AKASHI Takahiroa9f67062019-05-24 14:10:35 +0900661
662 sect_offset = itr->clust * mydata->clust_size;
663 startsect = mydata->rootdir_sect + sect_offset;
664 /* do not write past the end of rootdir */
665 nsects = min_t(u32, mydata->clust_size,
666 mydata->rootdir_size - sect_offset);
667
Heinrich Schuchardte97eb632021-01-20 22:21:53 +0100668 ret = set_sectors(mydata, startsect, itr->block,
669 nsects * mydata->sect_size);
670out:
671 if (ret) {
672 log_err("Error: writing directory entry\n");
673 return -EIO;
674 }
675 return 0;
AKASHI Takahiroa9f67062019-05-24 14:10:35 +0900676}
677
AKASHI Takahirocb8af8a2018-09-11 15:59:06 +0900678/*
679 * Read and modify data on existing and consecutive cluster blocks
680 */
681static int
682get_set_cluster(fsdata *mydata, __u32 clustnum, loff_t pos, __u8 *buffer,
683 loff_t size, loff_t *gotsize)
684{
Heinrich Schuchardt5a8d1f62020-07-06 07:48:14 +0200685 static u8 *tmpbuf_cluster;
AKASHI Takahirocb8af8a2018-09-11 15:59:06 +0900686 unsigned int bytesperclust = mydata->clust_size * mydata->sect_size;
687 __u32 startsect;
688 loff_t wsize;
689 int clustcount, i, ret;
690
691 *gotsize = 0;
692 if (!size)
693 return 0;
694
Heinrich Schuchardt5a8d1f62020-07-06 07:48:14 +0200695 if (!tmpbuf_cluster) {
696 tmpbuf_cluster = memalign(ARCH_DMA_MINALIGN, MAX_CLUSTSIZE);
697 if (!tmpbuf_cluster)
698 return -1;
699 }
700
AKASHI Takahirocb8af8a2018-09-11 15:59:06 +0900701 assert(pos < bytesperclust);
702 startsect = clust_to_sect(mydata, clustnum);
703
704 debug("clustnum: %d, startsect: %d, pos: %lld\n",
705 clustnum, startsect, pos);
706
707 /* partial write at beginning */
708 if (pos) {
709 wsize = min(bytesperclust - pos, size);
710 ret = disk_read(startsect, mydata->clust_size, tmpbuf_cluster);
711 if (ret != mydata->clust_size) {
712 debug("Error reading data (got %d)\n", ret);
713 return -1;
714 }
715
716 memcpy(tmpbuf_cluster + pos, buffer, wsize);
717 ret = disk_write(startsect, mydata->clust_size, tmpbuf_cluster);
718 if (ret != mydata->clust_size) {
719 debug("Error writing data (got %d)\n", ret);
720 return -1;
721 }
722
723 size -= wsize;
724 buffer += wsize;
725 *gotsize += wsize;
726
727 startsect += mydata->clust_size;
728
729 if (!size)
730 return 0;
731 }
732
733 /* full-cluster write */
734 if (size >= bytesperclust) {
735 clustcount = lldiv(size, bytesperclust);
736
737 if (!((unsigned long)buffer & (ARCH_DMA_MINALIGN - 1))) {
738 wsize = clustcount * bytesperclust;
739 ret = disk_write(startsect,
740 clustcount * mydata->clust_size,
741 buffer);
742 if (ret != clustcount * mydata->clust_size) {
743 debug("Error writing data (got %d)\n", ret);
744 return -1;
745 }
746
747 size -= wsize;
748 buffer += wsize;
749 *gotsize += wsize;
750
751 startsect += clustcount * mydata->clust_size;
752 } else {
753 for (i = 0; i < clustcount; i++) {
754 memcpy(tmpbuf_cluster, buffer, bytesperclust);
755 ret = disk_write(startsect,
756 mydata->clust_size,
757 tmpbuf_cluster);
758 if (ret != mydata->clust_size) {
759 debug("Error writing data (got %d)\n",
760 ret);
761 return -1;
762 }
763
764 size -= bytesperclust;
765 buffer += bytesperclust;
766 *gotsize += bytesperclust;
767
768 startsect += mydata->clust_size;
769 }
770 }
771 }
772
773 /* partial write at end */
774 if (size) {
775 wsize = size;
776 ret = disk_read(startsect, mydata->clust_size, tmpbuf_cluster);
777 if (ret != mydata->clust_size) {
778 debug("Error reading data (got %d)\n", ret);
779 return -1;
780 }
781 memcpy(tmpbuf_cluster, buffer, wsize);
782 ret = disk_write(startsect, mydata->clust_size, tmpbuf_cluster);
783 if (ret != mydata->clust_size) {
784 debug("Error writing data (got %d)\n", ret);
785 return -1;
786 }
787
788 size -= wsize;
AKASHI Takahirocb8af8a2018-09-11 15:59:06 +0900789 *gotsize += wsize;
790 }
791
792 assert(!size);
793
794 return 0;
795}
796
Donggeun Kimc30a15e2011-10-24 21:15:28 +0000797/*
798 * Find the first empty cluster
799 */
800static int find_empty_cluster(fsdata *mydata)
801{
802 __u32 fat_val, entry = 3;
803
804 while (1) {
Stefan Brünsb8948d22016-12-17 00:27:51 +0100805 fat_val = get_fatent(mydata, entry);
Donggeun Kimc30a15e2011-10-24 21:15:28 +0000806 if (fat_val == 0)
807 break;
808 entry++;
809 }
810
811 return entry;
812}
813
Heinrich Schuchardt569b0e12020-11-26 19:06:55 +0100814/**
815 * new_dir_table() - allocate a cluster for additional directory entries
816 *
817 * @itr: directory iterator
818 * Return: 0 on success, -EIO otherwise
Donggeun Kimc30a15e2011-10-24 21:15:28 +0000819 */
AKASHI Takahiro9c709c72019-05-24 14:10:36 +0900820static int new_dir_table(fat_itr *itr)
Donggeun Kimc30a15e2011-10-24 21:15:28 +0000821{
AKASHI Takahiro4ced2032018-09-11 15:59:04 +0900822 fsdata *mydata = itr->fsdata;
Donggeun Kimc30a15e2011-10-24 21:15:28 +0000823 int dir_newclust = 0;
Heinrich Schuchardt569b0e12020-11-26 19:06:55 +0100824 int dir_oldclust = itr->clust;
AKASHI Takahiro4ced2032018-09-11 15:59:04 +0900825 unsigned int bytesperclust = mydata->clust_size * mydata->sect_size;
Donggeun Kimc30a15e2011-10-24 21:15:28 +0000826
Donggeun Kimc30a15e2011-10-24 21:15:28 +0000827 dir_newclust = find_empty_cluster(mydata);
Heinrich Schuchardt569b0e12020-11-26 19:06:55 +0100828
829 /*
830 * Flush before updating FAT to ensure valid directory structure
831 * in case of failure.
832 */
833 itr->clust = dir_newclust;
834 itr->next_clust = dir_newclust;
835 memset(itr->block, 0x00, bytesperclust);
836 if (flush_dir(itr))
837 return -EIO;
838
839 set_fatent_value(mydata, dir_oldclust, dir_newclust);
Donggeun Kimc30a15e2011-10-24 21:15:28 +0000840 if (mydata->fatsize == 32)
841 set_fatent_value(mydata, dir_newclust, 0xffffff8);
842 else if (mydata->fatsize == 16)
843 set_fatent_value(mydata, dir_newclust, 0xfff8);
Philipp Skadorov49abbd92016-12-15 15:52:53 -0500844 else if (mydata->fatsize == 12)
845 set_fatent_value(mydata, dir_newclust, 0xff8);
Donggeun Kimc30a15e2011-10-24 21:15:28 +0000846
Stefan Brüns3c0ed9c2016-09-11 22:51:40 +0200847 if (flush_dirty_fat_buffer(mydata) < 0)
Heinrich Schuchardt569b0e12020-11-26 19:06:55 +0100848 return -EIO;
Donggeun Kimc30a15e2011-10-24 21:15:28 +0000849
AKASHI Takahiro4ced2032018-09-11 15:59:04 +0900850 itr->dent = (dir_entry *)itr->block;
851 itr->last_cluster = 1;
852 itr->remaining = bytesperclust / sizeof(dir_entry) - 1;
853
854 return 0;
Donggeun Kimc30a15e2011-10-24 21:15:28 +0000855}
856
857/*
858 * Set empty cluster from 'entry' to the end of a file
859 */
860static int clear_fatent(fsdata *mydata, __u32 entry)
861{
862 __u32 fat_val;
863
Philipp Skadorov49abbd92016-12-15 15:52:53 -0500864 while (!CHECK_CLUST(entry, mydata->fatsize)) {
Stefan Brünsb8948d22016-12-17 00:27:51 +0100865 fat_val = get_fatent(mydata, entry);
Donggeun Kimc30a15e2011-10-24 21:15:28 +0000866 if (fat_val != 0)
867 set_fatent_value(mydata, entry, 0);
868 else
869 break;
870
Donggeun Kimc30a15e2011-10-24 21:15:28 +0000871 entry = fat_val;
872 }
873
874 /* Flush fat buffer */
Stefan Brüns3c0ed9c2016-09-11 22:51:40 +0200875 if (flush_dirty_fat_buffer(mydata) < 0)
Donggeun Kimc30a15e2011-10-24 21:15:28 +0000876 return -1;
877
878 return 0;
879}
880
881/*
AKASHI Takahiro704df6a2018-09-11 15:59:05 +0900882 * Set start cluster in directory entry
883 */
884static void set_start_cluster(const fsdata *mydata, dir_entry *dentptr,
885 __u32 start_cluster)
886{
887 if (mydata->fatsize == 32)
888 dentptr->starthi =
889 cpu_to_le16((start_cluster & 0xffff0000) >> 16);
890 dentptr->start = cpu_to_le16(start_cluster & 0xffff);
891}
892
893/*
894 * Check whether adding a file makes the file system to
895 * exceed the size of the block device
896 * Return -1 when overflow occurs, otherwise return 0
897 */
898static int check_overflow(fsdata *mydata, __u32 clustnum, loff_t size)
899{
900 __u32 startsect, sect_num, offset;
901
902 if (clustnum > 0)
903 startsect = clust_to_sect(mydata, clustnum);
904 else
905 startsect = mydata->rootdir_sect;
906
907 sect_num = div_u64_rem(size, mydata->sect_size, &offset);
908
909 if (offset != 0)
910 sect_num++;
911
912 if (startsect + sect_num > total_sector)
913 return -1;
914 return 0;
915}
916
917/*
Donggeun Kimc30a15e2011-10-24 21:15:28 +0000918 * Write at most 'maxsize' bytes from 'buffer' into
919 * the file associated with 'dentptr'
Suriyan Ramasami1ad0b982014-11-17 14:39:35 -0800920 * Update the number of bytes written in *gotsize and return 0
921 * or return -1 on fatal errors.
Donggeun Kimc30a15e2011-10-24 21:15:28 +0000922 */
923static int
AKASHI Takahiro704df6a2018-09-11 15:59:05 +0900924set_contents(fsdata *mydata, dir_entry *dentptr, loff_t pos, __u8 *buffer,
925 loff_t maxsize, loff_t *gotsize)
Donggeun Kimc30a15e2011-10-24 21:15:28 +0000926{
Donggeun Kimc30a15e2011-10-24 21:15:28 +0000927 unsigned int bytesperclust = mydata->clust_size * mydata->sect_size;
928 __u32 curclust = START(dentptr);
929 __u32 endclust = 0, newclust = 0;
Heinrich Schuchardt7274b762019-02-25 19:42:48 +0100930 u64 cur_pos, filesize;
931 loff_t offset, actsize, wsize;
Donggeun Kimc30a15e2011-10-24 21:15:28 +0000932
Suriyan Ramasami1ad0b982014-11-17 14:39:35 -0800933 *gotsize = 0;
AKASHI Takahirocb8af8a2018-09-11 15:59:06 +0900934 filesize = pos + maxsize;
Donggeun Kimc30a15e2011-10-24 21:15:28 +0000935
Suriyan Ramasami1ad0b982014-11-17 14:39:35 -0800936 debug("%llu bytes\n", filesize);
Donggeun Kimc30a15e2011-10-24 21:15:28 +0000937
AKASHI Takahirocb8af8a2018-09-11 15:59:06 +0900938 if (!filesize) {
939 if (!curclust)
940 return 0;
941 if (!CHECK_CLUST(curclust, mydata->fatsize) ||
942 IS_LAST_CLUST(curclust, mydata->fatsize)) {
943 clear_fatent(mydata, curclust);
944 set_start_cluster(mydata, dentptr, 0);
945 return 0;
946 }
947 debug("curclust: 0x%x\n", curclust);
948 debug("Invalid FAT entry\n");
949 return -1;
950 }
951
952 if (!curclust) {
953 assert(pos == 0);
954 goto set_clusters;
955 }
956
957 /* go to cluster at pos */
958 cur_pos = bytesperclust;
959 while (1) {
960 if (pos <= cur_pos)
961 break;
962 if (IS_LAST_CLUST(curclust, mydata->fatsize))
963 break;
964
965 newclust = get_fatent(mydata, curclust);
966 if (!IS_LAST_CLUST(newclust, mydata->fatsize) &&
967 CHECK_CLUST(newclust, mydata->fatsize)) {
968 debug("curclust: 0x%x\n", curclust);
969 debug("Invalid FAT entry\n");
970 return -1;
971 }
972
973 cur_pos += bytesperclust;
974 curclust = newclust;
975 }
976 if (IS_LAST_CLUST(curclust, mydata->fatsize)) {
977 assert(pos == cur_pos);
978 goto set_clusters;
979 }
980
981 assert(pos < cur_pos);
982 cur_pos -= bytesperclust;
983
984 /* overwrite */
985 assert(IS_LAST_CLUST(curclust, mydata->fatsize) ||
986 !CHECK_CLUST(curclust, mydata->fatsize));
987
988 while (1) {
989 /* search for allocated consecutive clusters */
990 actsize = bytesperclust;
991 endclust = curclust;
992 while (1) {
993 if (filesize <= (cur_pos + actsize))
994 break;
995
996 newclust = get_fatent(mydata, endclust);
997
Marek Szyprowski5e615b72019-12-02 12:11:13 +0100998 if (newclust != endclust + 1)
999 break;
AKASHI Takahirocb8af8a2018-09-11 15:59:06 +09001000 if (IS_LAST_CLUST(newclust, mydata->fatsize))
1001 break;
1002 if (CHECK_CLUST(newclust, mydata->fatsize)) {
1003 debug("curclust: 0x%x\n", curclust);
1004 debug("Invalid FAT entry\n");
1005 return -1;
1006 }
1007
1008 actsize += bytesperclust;
1009 endclust = newclust;
1010 }
1011
1012 /* overwrite to <curclust..endclust> */
1013 if (pos < cur_pos)
1014 offset = 0;
1015 else
1016 offset = pos - cur_pos;
Marek Szyprowskia54ece42019-12-02 12:11:14 +01001017 wsize = min_t(unsigned long long, actsize, filesize - cur_pos);
1018 wsize -= offset;
1019
AKASHI Takahirocb8af8a2018-09-11 15:59:06 +09001020 if (get_set_cluster(mydata, curclust, offset,
1021 buffer, wsize, &actsize)) {
1022 printf("Error get-and-setting cluster\n");
1023 return -1;
1024 }
1025 buffer += wsize;
1026 *gotsize += wsize;
1027 cur_pos += offset + wsize;
1028
1029 if (filesize <= cur_pos)
1030 break;
1031
AKASHI Takahirocb8af8a2018-09-11 15:59:06 +09001032 if (IS_LAST_CLUST(newclust, mydata->fatsize))
1033 /* no more clusters */
1034 break;
1035
1036 curclust = newclust;
1037 }
1038
1039 if (filesize <= cur_pos) {
1040 /* no more write */
1041 newclust = get_fatent(mydata, endclust);
1042 if (!IS_LAST_CLUST(newclust, mydata->fatsize)) {
1043 /* truncate the rest */
1044 clear_fatent(mydata, newclust);
1045
1046 /* Mark end of file in FAT */
1047 if (mydata->fatsize == 12)
1048 newclust = 0xfff;
1049 else if (mydata->fatsize == 16)
1050 newclust = 0xffff;
1051 else if (mydata->fatsize == 32)
1052 newclust = 0xfffffff;
1053 set_fatent_value(mydata, endclust, newclust);
1054 }
1055
1056 return 0;
1057 }
1058
1059 curclust = endclust;
1060 filesize -= cur_pos;
Heinrich Schuchardt7274b762019-02-25 19:42:48 +01001061 assert(!do_div(cur_pos, bytesperclust));
AKASHI Takahirocb8af8a2018-09-11 15:59:06 +09001062
1063set_clusters:
1064 /* allocate and write */
1065 assert(!pos);
1066
1067 /* Assure that curclust is valid */
1068 if (!curclust) {
1069 curclust = find_empty_cluster(mydata);
1070 set_start_cluster(mydata, dentptr, curclust);
1071 } else {
1072 newclust = get_fatent(mydata, curclust);
1073
1074 if (IS_LAST_CLUST(newclust, mydata->fatsize)) {
1075 newclust = determine_fatent(mydata, curclust);
1076 set_fatent_value(mydata, curclust, newclust);
1077 curclust = newclust;
1078 } else {
1079 debug("error: something wrong\n");
Benoît Thébaudeau1254b442015-09-28 15:45:32 +02001080 return -1;
1081 }
AKASHI Takahiro704df6a2018-09-11 15:59:05 +09001082 }
1083
AKASHI Takahirocb8af8a2018-09-11 15:59:06 +09001084 /* TODO: already partially written */
AKASHI Takahiro704df6a2018-09-11 15:59:05 +09001085 if (check_overflow(mydata, curclust, filesize)) {
1086 printf("Error: no space left: %llu\n", filesize);
1087 return -1;
Benoît Thébaudeau1254b442015-09-28 15:45:32 +02001088 }
1089
Donggeun Kimc30a15e2011-10-24 21:15:28 +00001090 actsize = bytesperclust;
1091 endclust = curclust;
1092 do {
1093 /* search for consecutive clusters */
1094 while (actsize < filesize) {
1095 newclust = determine_fatent(mydata, endclust);
1096
1097 if ((newclust - 1) != endclust)
AKASHI Takahiro704df6a2018-09-11 15:59:05 +09001098 /* write to <curclust..endclust> */
Donggeun Kimc30a15e2011-10-24 21:15:28 +00001099 goto getit;
1100
1101 if (CHECK_CLUST(newclust, mydata->fatsize)) {
Benoît Thébaudeau5e1a8602015-09-28 15:45:30 +02001102 debug("newclust: 0x%x\n", newclust);
Donggeun Kimc30a15e2011-10-24 21:15:28 +00001103 debug("Invalid FAT entry\n");
Suriyan Ramasami1ad0b982014-11-17 14:39:35 -08001104 return 0;
Donggeun Kimc30a15e2011-10-24 21:15:28 +00001105 }
1106 endclust = newclust;
1107 actsize += bytesperclust;
1108 }
Donggeun Kimc30a15e2011-10-24 21:15:28 +00001109
1110 /* set remaining bytes */
Donggeun Kimc30a15e2011-10-24 21:15:28 +00001111 actsize = filesize;
Heinrich Schuchardtf105fe72018-10-02 09:30:45 +02001112 if (set_cluster(mydata, curclust, buffer, (u32)actsize) != 0) {
Donggeun Kimc30a15e2011-10-24 21:15:28 +00001113 debug("error: writing cluster\n");
1114 return -1;
1115 }
Suriyan Ramasami1ad0b982014-11-17 14:39:35 -08001116 *gotsize += actsize;
Donggeun Kimc30a15e2011-10-24 21:15:28 +00001117
1118 /* Mark end of file in FAT */
Philipp Skadorov49abbd92016-12-15 15:52:53 -05001119 if (mydata->fatsize == 12)
1120 newclust = 0xfff;
1121 else if (mydata->fatsize == 16)
Donggeun Kimc30a15e2011-10-24 21:15:28 +00001122 newclust = 0xffff;
1123 else if (mydata->fatsize == 32)
1124 newclust = 0xfffffff;
1125 set_fatent_value(mydata, endclust, newclust);
1126
Suriyan Ramasami1ad0b982014-11-17 14:39:35 -08001127 return 0;
Donggeun Kimc30a15e2011-10-24 21:15:28 +00001128getit:
Heinrich Schuchardtf105fe72018-10-02 09:30:45 +02001129 if (set_cluster(mydata, curclust, buffer, (u32)actsize) != 0) {
Donggeun Kimc30a15e2011-10-24 21:15:28 +00001130 debug("error: writing cluster\n");
1131 return -1;
1132 }
Suriyan Ramasami1ad0b982014-11-17 14:39:35 -08001133 *gotsize += actsize;
Donggeun Kimc30a15e2011-10-24 21:15:28 +00001134 filesize -= actsize;
1135 buffer += actsize;
1136
Benoît Thébaudeau5e1a8602015-09-28 15:45:30 +02001137 if (CHECK_CLUST(newclust, mydata->fatsize)) {
1138 debug("newclust: 0x%x\n", newclust);
Donggeun Kimc30a15e2011-10-24 21:15:28 +00001139 debug("Invalid FAT entry\n");
Suriyan Ramasami1ad0b982014-11-17 14:39:35 -08001140 return 0;
Donggeun Kimc30a15e2011-10-24 21:15:28 +00001141 }
1142 actsize = bytesperclust;
1143 curclust = endclust = newclust;
1144 } while (1);
Donggeun Kimc30a15e2011-10-24 21:15:28 +00001145
AKASHI Takahiro704df6a2018-09-11 15:59:05 +09001146 return 0;
Benoît Thébaudeau1254b442015-09-28 15:45:32 +02001147}
1148
Heinrich Schuchardt57b745e2020-11-22 19:19:39 +01001149/**
1150 * fill_dentry() - fill directory entry with shortname
1151 *
1152 * @mydata: private filesystem parameters
1153 * @dentptr: directory entry
1154 * @shortname: chosen short name
1155 * @start_cluster: first cluster of file
1156 * @size: file size
1157 * @attr: file attributes
Benoît Thébaudeau1254b442015-09-28 15:45:32 +02001158 */
1159static void fill_dentry(fsdata *mydata, dir_entry *dentptr,
Heinrich Schuchardt57b745e2020-11-22 19:19:39 +01001160 const char *shortname, __u32 start_cluster, __u32 size, __u8 attr)
Benoît Thébaudeau1254b442015-09-28 15:45:32 +02001161{
Heinrich Schuchardt57b745e2020-11-22 19:19:39 +01001162 memset(dentptr, 0, sizeof(*dentptr));
1163
Benoît Thébaudeau1254b442015-09-28 15:45:32 +02001164 set_start_cluster(mydata, dentptr, start_cluster);
Donggeun Kimc30a15e2011-10-24 21:15:28 +00001165 dentptr->size = cpu_to_le32(size);
1166
1167 dentptr->attr = attr;
1168
Heinrich Schuchardt041f0af2021-01-21 00:23:33 +01001169 memcpy(&dentptr->nameext, shortname, SHORT_NAME_SIZE);
Donggeun Kimc30a15e2011-10-24 21:15:28 +00001170}
1171
Heinrich Schuchardt1e51c8d2020-11-26 16:10:01 +01001172/**
1173 * find_directory_entry() - find a directory entry by filename
1174 *
1175 * @itr: directory iterator
1176 * @filename: name of file to find
1177 * Return: directory entry or NULL
Donggeun Kimc30a15e2011-10-24 21:15:28 +00001178 */
AKASHI Takahiro4ced2032018-09-11 15:59:04 +09001179static dir_entry *find_directory_entry(fat_itr *itr, char *filename)
Donggeun Kimc30a15e2011-10-24 21:15:28 +00001180{
AKASHI Takahiro4ced2032018-09-11 15:59:04 +09001181 int match = 0;
Donggeun Kimc30a15e2011-10-24 21:15:28 +00001182
AKASHI Takahiro4ced2032018-09-11 15:59:04 +09001183 while (fat_itr_next(itr)) {
1184 /* check both long and short name: */
1185 if (!strcasecmp(filename, itr->name))
1186 match = 1;
1187 else if (itr->name != itr->s_name &&
1188 !strcasecmp(filename, itr->s_name))
1189 match = 1;
Donggeun Kimc30a15e2011-10-24 21:15:28 +00001190
AKASHI Takahiro4ced2032018-09-11 15:59:04 +09001191 if (!match)
1192 continue;
Donggeun Kimc30a15e2011-10-24 21:15:28 +00001193
Heinrich Schuchardt041f0af2021-01-21 00:23:33 +01001194 if (itr->dent->nameext.name[0] == '\0')
Donggeun Kimc30a15e2011-10-24 21:15:28 +00001195 return NULL;
AKASHI Takahiro4ced2032018-09-11 15:59:04 +09001196 else
1197 return itr->dent;
Donggeun Kimc30a15e2011-10-24 21:15:28 +00001198 }
1199
1200 return NULL;
1201}
1202
AKASHI Takahiro4ced2032018-09-11 15:59:04 +09001203static int split_filename(char *filename, char **dirname, char **basename)
1204{
1205 char *p, *last_slash, *last_slash_cont;
1206
1207again:
1208 p = filename;
1209 last_slash = NULL;
1210 last_slash_cont = NULL;
1211 while (*p) {
1212 if (ISDIRDELIM(*p)) {
1213 last_slash = p;
1214 last_slash_cont = p;
1215 /* continuous slashes */
1216 while (ISDIRDELIM(*p))
1217 last_slash_cont = p++;
1218 if (!*p)
1219 break;
1220 }
1221 p++;
1222 }
1223
1224 if (last_slash) {
1225 if (last_slash_cont == (filename + strlen(filename) - 1)) {
1226 /* remove trailing slashes */
1227 *last_slash = '\0';
1228 goto again;
1229 }
1230
1231 if (last_slash == filename) {
1232 /* avoid ""(null) directory */
1233 *dirname = "/";
1234 } else {
1235 *last_slash = '\0';
1236 *dirname = filename;
1237 }
1238
1239 *last_slash_cont = '\0';
Heinrich Schuchardt3ecc5272021-01-30 14:12:10 +01001240 filename = last_slash_cont + 1;
AKASHI Takahiro4ced2032018-09-11 15:59:04 +09001241 } else {
1242 *dirname = "/"; /* root by default */
AKASHI Takahiro4ced2032018-09-11 15:59:04 +09001243 }
1244
Heinrich Schuchardt3ecc5272021-01-30 14:12:10 +01001245 /*
1246 * The FAT32 File System Specification v1.03 requires leading and
1247 * trailing spaces as well as trailing periods to be ignored.
1248 */
1249 for (; *filename == ' '; ++filename)
1250 ;
1251
1252 /* Keep special entries '.' and '..' */
1253 if (filename[0] == '.' &&
1254 (!filename[1] || (filename[1] == '.' && !filename[2])))
1255 goto done;
1256
1257 /* Remove trailing periods and spaces */
1258 for (p = filename + strlen(filename) - 1; p >= filename; --p) {
1259 switch (*p) {
1260 case ' ':
1261 case '.':
1262 *p = 0;
1263 break;
1264 default:
1265 goto done;
1266 }
1267 }
1268
1269done:
1270 *basename = filename;
1271
AKASHI Takahiro4ced2032018-09-11 15:59:04 +09001272 return 0;
1273}
1274
Heinrich Schuchardt7b437802019-05-12 09:59:18 +02001275/**
1276 * normalize_longname() - check long file name and convert to lower case
1277 *
1278 * We assume here that the FAT file system is using an 8bit code page.
1279 * Linux typically uses CP437, EDK2 assumes CP1250.
1280 *
1281 * @l_filename: preallocated buffer receiving the normalized name
1282 * @filename: filename to normalize
1283 * Return: 0 on success, -1 on failure
1284 */
AKASHI Takahiro25bb9da2018-09-11 15:59:02 +09001285static int normalize_longname(char *l_filename, const char *filename)
1286{
Heinrich Schuchardt7b437802019-05-12 09:59:18 +02001287 const char *p, illegal[] = "<>:\"/\\|?*";
Heinrich Schuchardt0be286c2021-01-30 11:08:21 +01001288 size_t len;
AKASHI Takahiro25bb9da2018-09-11 15:59:02 +09001289
Heinrich Schuchardt0be286c2021-01-30 11:08:21 +01001290 len = strlen(filename);
1291 if (!len || len >= VFAT_MAXLEN_BYTES || filename[len - 1] == '.')
AKASHI Takahiro25bb9da2018-09-11 15:59:02 +09001292 return -1;
Heinrich Schuchardt7b437802019-05-12 09:59:18 +02001293
1294 for (p = filename; *p; ++p) {
1295 if ((unsigned char)*p < 0x20)
1296 return -1;
1297 if (strchr(illegal, *p))
1298 return -1;
AKASHI Takahiro25bb9da2018-09-11 15:59:02 +09001299 }
1300
Heinrich Schuchardt7b437802019-05-12 09:59:18 +02001301 strcpy(l_filename, filename);
1302 downcase(l_filename, VFAT_MAXLEN_BYTES);
AKASHI Takahiro25bb9da2018-09-11 15:59:02 +09001303
1304 return 0;
1305}
1306
AKASHI Takahiro704df6a2018-09-11 15:59:05 +09001307int file_fat_write_at(const char *filename, loff_t pos, void *buffer,
1308 loff_t size, loff_t *actwrite)
Donggeun Kimc30a15e2011-10-24 21:15:28 +00001309{
AKASHI Takahiro4ced2032018-09-11 15:59:04 +09001310 dir_entry *retdent;
AKASHI Takahiro4ced2032018-09-11 15:59:04 +09001311 fsdata datablock = { .fatbuf = NULL, };
Donggeun Kimc30a15e2011-10-24 21:15:28 +00001312 fsdata *mydata = &datablock;
AKASHI Takahiro4ced2032018-09-11 15:59:04 +09001313 fat_itr *itr = NULL;
AKASHI Takahiro25bb9da2018-09-11 15:59:02 +09001314 int ret = -1;
AKASHI Takahiro4ced2032018-09-11 15:59:04 +09001315 char *filename_copy, *parent, *basename;
Donggeun Kimc30a15e2011-10-24 21:15:28 +00001316 char l_filename[VFAT_MAXLEN_BYTES];
1317
AKASHI Takahiro704df6a2018-09-11 15:59:05 +09001318 debug("writing %s\n", filename);
1319
AKASHI Takahiro4ced2032018-09-11 15:59:04 +09001320 filename_copy = strdup(filename);
1321 if (!filename_copy)
AKASHI Takahirof1149ce2018-09-11 15:59:03 +09001322 return -ENOMEM;
Donggeun Kimc30a15e2011-10-24 21:15:28 +00001323
AKASHI Takahiro4ced2032018-09-11 15:59:04 +09001324 split_filename(filename_copy, &parent, &basename);
1325 if (!strlen(basename)) {
1326 ret = -EINVAL;
Donggeun Kimc30a15e2011-10-24 21:15:28 +00001327 goto exit;
1328 }
Donggeun Kimc30a15e2011-10-24 21:15:28 +00001329
Heinrich Schuchardt4c4006b2021-01-30 10:01:08 +01001330 if (normalize_longname(l_filename, basename)) {
1331 printf("FAT: illegal filename (%s)\n", basename);
AKASHI Takahiro25bb9da2018-09-11 15:59:02 +09001332 ret = -EINVAL;
1333 goto exit;
1334 }
Donggeun Kimc30a15e2011-10-24 21:15:28 +00001335
AKASHI Takahiro4ced2032018-09-11 15:59:04 +09001336 itr = malloc_cache_aligned(sizeof(fat_itr));
1337 if (!itr) {
1338 ret = -ENOMEM;
1339 goto exit;
1340 }
1341
1342 ret = fat_itr_root(itr, &datablock);
1343 if (ret)
1344 goto exit;
1345
1346 total_sector = datablock.total_sect;
1347
1348 ret = fat_itr_resolve(itr, parent, TYPE_DIR);
1349 if (ret) {
1350 printf("%s: doesn't exist (%d)\n", parent, ret);
1351 goto exit;
1352 }
1353
1354 retdent = find_directory_entry(itr, l_filename);
1355
Donggeun Kimc30a15e2011-10-24 21:15:28 +00001356 if (retdent) {
AKASHI Takahiro4ced2032018-09-11 15:59:04 +09001357 if (fat_itr_isdir(itr)) {
1358 ret = -EISDIR;
1359 goto exit;
1360 }
1361
AKASHI Takahirocb8af8a2018-09-11 15:59:06 +09001362 /* A file exists */
1363 if (pos == -1)
1364 /* Append to the end */
1365 pos = FAT2CPU32(retdent->size);
1366 if (pos > retdent->size) {
1367 /* No hole allowed */
1368 ret = -EINVAL;
1369 goto exit;
1370 }
1371
AKASHI Takahiro704df6a2018-09-11 15:59:05 +09001372 /* Update file size in a directory entry */
1373 retdent->size = cpu_to_le32(pos + size);
Donggeun Kimc30a15e2011-10-24 21:15:28 +00001374 } else {
AKASHI Takahiro4ced2032018-09-11 15:59:04 +09001375 /* Create a new file */
Heinrich Schuchardt57b745e2020-11-22 19:19:39 +01001376 char shortname[SHORT_NAME_SIZE];
Heinrich Schuchardt3049a512020-11-22 11:54:22 +01001377 int ndent;
AKASHI Takahiro4ced2032018-09-11 15:59:04 +09001378
AKASHI Takahirocb8af8a2018-09-11 15:59:06 +09001379 if (pos) {
1380 /* No hole allowed */
1381 ret = -EINVAL;
1382 goto exit;
1383 }
1384
Heinrich Schuchardt28cef9c2020-11-20 12:55:22 +01001385 /* Check if long name is needed */
Heinrich Schuchardt4c4006b2021-01-30 10:01:08 +01001386 ndent = set_name(itr, basename, shortname);
Heinrich Schuchardt3049a512020-11-22 11:54:22 +01001387 if (ndent < 0) {
1388 ret = ndent;
AKASHI Takahiro4ced2032018-09-11 15:59:04 +09001389 goto exit;
Heinrich Schuchardt3049a512020-11-22 11:54:22 +01001390 }
1391 ret = fat_find_empty_dentries(itr, ndent);
1392 if (ret)
1393 goto exit;
1394 if (ndent > 1) {
Heinrich Schuchardt28cef9c2020-11-20 12:55:22 +01001395 /* Set long name entries */
Heinrich Schuchardt4c4006b2021-01-30 10:01:08 +01001396 ret = fill_dir_slot(itr, basename, shortname);
Heinrich Schuchardt28cef9c2020-11-20 12:55:22 +01001397 if (ret)
1398 goto exit;
AKASHI Takahiro4ced2032018-09-11 15:59:04 +09001399 }
Donggeun Kimc30a15e2011-10-24 21:15:28 +00001400
AKASHI Takahiro9c709c72019-05-24 14:10:36 +09001401 /* Set short name entry */
Heinrich Schuchardt57b745e2020-11-22 19:19:39 +01001402 fill_dentry(itr->fsdata, itr->dent, shortname, 0, size,
Heinrich Schuchardt1ec29aa2020-11-22 11:13:33 +01001403 ATTR_ARCH);
Donggeun Kimc30a15e2011-10-24 21:15:28 +00001404
AKASHI Takahiro4ced2032018-09-11 15:59:04 +09001405 retdent = itr->dent;
Donggeun Kimc30a15e2011-10-24 21:15:28 +00001406 }
1407
AKASHI Takahiro704df6a2018-09-11 15:59:05 +09001408 ret = set_contents(mydata, retdent, pos, buffer, size, actwrite);
Benoît Thébaudeaue876be42015-09-28 15:45:31 +02001409 if (ret < 0) {
1410 printf("Error: writing contents\n");
AKASHI Takahirof1149ce2018-09-11 15:59:03 +09001411 ret = -EIO;
Benoît Thébaudeaue876be42015-09-28 15:45:31 +02001412 goto exit;
1413 }
1414 debug("attempt to write 0x%llx bytes\n", *actwrite);
1415
1416 /* Flush fat buffer */
Stefan Brüns3c0ed9c2016-09-11 22:51:40 +02001417 ret = flush_dirty_fat_buffer(mydata);
Benoît Thébaudeaue876be42015-09-28 15:45:31 +02001418 if (ret) {
1419 printf("Error: flush fat buffer\n");
AKASHI Takahirof1149ce2018-09-11 15:59:03 +09001420 ret = -EIO;
Benoît Thébaudeaue876be42015-09-28 15:45:31 +02001421 goto exit;
1422 }
1423
1424 /* Write directory table to device */
AKASHI Takahiroa9f67062019-05-24 14:10:35 +09001425 ret = flush_dir(itr);
Benoît Thébaudeaue876be42015-09-28 15:45:31 +02001426
Donggeun Kimc30a15e2011-10-24 21:15:28 +00001427exit:
AKASHI Takahiro4ced2032018-09-11 15:59:04 +09001428 free(filename_copy);
Donggeun Kimc30a15e2011-10-24 21:15:28 +00001429 free(mydata->fatbuf);
AKASHI Takahiro4ced2032018-09-11 15:59:04 +09001430 free(itr);
Suriyan Ramasami1ad0b982014-11-17 14:39:35 -08001431 return ret;
Donggeun Kimc30a15e2011-10-24 21:15:28 +00001432}
1433
Suriyan Ramasami1ad0b982014-11-17 14:39:35 -08001434int file_fat_write(const char *filename, void *buffer, loff_t offset,
1435 loff_t maxsize, loff_t *actwrite)
Donggeun Kimc30a15e2011-10-24 21:15:28 +00001436{
AKASHI Takahiro704df6a2018-09-11 15:59:05 +09001437 return file_fat_write_at(filename, offset, buffer, maxsize, actwrite);
Donggeun Kimc30a15e2011-10-24 21:15:28 +00001438}
AKASHI Takahiro31a18d52018-09-11 15:59:10 +09001439
AKASHI Takahirof8240ce2018-09-11 15:59:14 +09001440static int fat_dir_entries(fat_itr *itr)
1441{
1442 fat_itr *dirs;
1443 fsdata fsdata = { .fatbuf = NULL, }, *mydata = &fsdata;
1444 /* for FATBUFSIZE */
1445 int count;
1446
1447 dirs = malloc_cache_aligned(sizeof(fat_itr));
1448 if (!dirs) {
1449 debug("Error: allocating memory\n");
1450 count = -ENOMEM;
1451 goto exit;
1452 }
1453
1454 /* duplicate fsdata */
1455 fat_itr_child(dirs, itr);
1456 fsdata = *dirs->fsdata;
1457
1458 /* allocate local fat buffer */
1459 fsdata.fatbuf = malloc_cache_aligned(FATBUFSIZE);
1460 if (!fsdata.fatbuf) {
1461 debug("Error: allocating memory\n");
1462 count = -ENOMEM;
1463 goto exit;
1464 }
1465 fsdata.fatbufnum = -1;
1466 dirs->fsdata = &fsdata;
1467
1468 for (count = 0; fat_itr_next(dirs); count++)
1469 ;
1470
1471exit:
1472 free(fsdata.fatbuf);
1473 free(dirs);
1474 return count;
1475}
1476
Heinrich Schuchardt3d20d212020-11-19 07:31:18 +01001477/**
1478 * delete_single_dentry() - delete a single directory entry
1479 *
1480 * @itr: directory iterator
1481 * Return: 0 for success
1482 */
1483static int delete_single_dentry(fat_itr *itr)
1484{
1485 struct dir_entry *dent = itr->dent;
1486
1487 memset(dent, 0, sizeof(*dent));
Heinrich Schuchardt041f0af2021-01-21 00:23:33 +01001488 dent->nameext.name[0] = DELETED_FLAG;
Heinrich Schuchardt3d20d212020-11-19 07:31:18 +01001489
Heinrich Schuchardte97eb632021-01-20 22:21:53 +01001490 if (!itr->remaining)
1491 return flush_dir(itr);
Heinrich Schuchardt3d20d212020-11-19 07:31:18 +01001492 return 0;
1493}
1494
1495/**
1496 * delete_long_name() - delete long name directory entries
1497 *
1498 * @itr: directory iterator
1499 * Return: 0 for success
1500 */
1501static int delete_long_name(fat_itr *itr)
1502{
Heinrich Schuchardt041f0af2021-01-21 00:23:33 +01001503 int seqn = itr->dent->nameext.name[0] & ~LAST_LONG_ENTRY_MASK;
Heinrich Schuchardt3d20d212020-11-19 07:31:18 +01001504
1505 while (seqn--) {
Heinrich Schuchardt84ca3052021-01-26 00:14:14 +01001506 struct dir_entry *dent;
Heinrich Schuchardt3d20d212020-11-19 07:31:18 +01001507 int ret;
1508
1509 ret = delete_single_dentry(itr);
1510 if (ret)
1511 return ret;
1512 dent = next_dent(itr);
1513 if (!dent)
1514 return -EIO;
1515 }
1516 return 0;
1517}
1518
1519/**
1520 * delete_dentry_long() - remove directory entry
1521 *
1522 * @itr: directory iterator
1523 * Return: 0 for success
1524 */
1525static int delete_dentry_long(fat_itr *itr)
AKASHI Takahirof8240ce2018-09-11 15:59:14 +09001526{
1527 fsdata *mydata = itr->fsdata;
Heinrich Schuchardt3d20d212020-11-19 07:31:18 +01001528 dir_entry *dent = itr->dent;
AKASHI Takahirof8240ce2018-09-11 15:59:14 +09001529
1530 /* free cluster blocks */
Heinrich Schuchardt3d20d212020-11-19 07:31:18 +01001531 clear_fatent(mydata, START(dent));
AKASHI Takahirof8240ce2018-09-11 15:59:14 +09001532 if (flush_dirty_fat_buffer(mydata) < 0) {
1533 printf("Error: flush fat buffer\n");
1534 return -EIO;
1535 }
Heinrich Schuchardt3d20d212020-11-19 07:31:18 +01001536 /* Position to first directory entry for long name */
1537 if (itr->clust != itr->dent_clust) {
1538 int ret;
AKASHI Takahirof8240ce2018-09-11 15:59:14 +09001539
Heinrich Schuchardt3d20d212020-11-19 07:31:18 +01001540 ret = fat_move_to_cluster(itr, itr->dent_clust);
1541 if (ret)
1542 return ret;
1543 }
1544 itr->dent = itr->dent_start;
1545 itr->remaining = itr->dent_rem;
1546 dent = itr->dent_start;
1547 /* Delete long name */
1548 if ((dent->attr & ATTR_VFAT) == ATTR_VFAT &&
Heinrich Schuchardt041f0af2021-01-21 00:23:33 +01001549 (dent->nameext.name[0] & LAST_LONG_ENTRY_MASK)) {
Heinrich Schuchardt3d20d212020-11-19 07:31:18 +01001550 int ret;
AKASHI Takahirof8240ce2018-09-11 15:59:14 +09001551
Heinrich Schuchardt3d20d212020-11-19 07:31:18 +01001552 ret = delete_long_name(itr);
1553 if (ret)
1554 return ret;
1555 }
1556 /* Delete short name */
1557 delete_single_dentry(itr);
Heinrich Schuchardte97eb632021-01-20 22:21:53 +01001558 return flush_dir(itr);
AKASHI Takahirof8240ce2018-09-11 15:59:14 +09001559}
1560
1561int fat_unlink(const char *filename)
1562{
1563 fsdata fsdata = { .fatbuf = NULL, };
1564 fat_itr *itr = NULL;
1565 int n_entries, ret;
1566 char *filename_copy, *dirname, *basename;
1567
1568 filename_copy = strdup(filename);
Heinrich Schuchardt0d532e92018-10-02 06:58:00 +02001569 if (!filename_copy) {
1570 printf("Error: allocating memory\n");
1571 ret = -ENOMEM;
1572 goto exit;
1573 }
AKASHI Takahirof8240ce2018-09-11 15:59:14 +09001574 split_filename(filename_copy, &dirname, &basename);
1575
1576 if (!strcmp(dirname, "/") && !strcmp(basename, "")) {
1577 printf("Error: cannot remove root\n");
1578 ret = -EINVAL;
1579 goto exit;
1580 }
1581
1582 itr = malloc_cache_aligned(sizeof(fat_itr));
1583 if (!itr) {
1584 printf("Error: allocating memory\n");
Heinrich Schuchardt0d532e92018-10-02 06:58:00 +02001585 ret = -ENOMEM;
1586 goto exit;
AKASHI Takahirof8240ce2018-09-11 15:59:14 +09001587 }
1588
1589 ret = fat_itr_root(itr, &fsdata);
1590 if (ret)
1591 goto exit;
1592
1593 total_sector = fsdata.total_sect;
1594
1595 ret = fat_itr_resolve(itr, dirname, TYPE_DIR);
1596 if (ret) {
1597 printf("%s: doesn't exist (%d)\n", dirname, ret);
1598 ret = -ENOENT;
1599 goto exit;
1600 }
1601
1602 if (!find_directory_entry(itr, basename)) {
1603 printf("%s: doesn't exist\n", basename);
1604 ret = -ENOENT;
1605 goto exit;
1606 }
1607
1608 if (fat_itr_isdir(itr)) {
1609 n_entries = fat_dir_entries(itr);
1610 if (n_entries < 0) {
1611 ret = n_entries;
1612 goto exit;
1613 }
1614 if (n_entries > 2) {
1615 printf("Error: directory is not empty: %d\n",
1616 n_entries);
1617 ret = -EINVAL;
1618 goto exit;
1619 }
1620 }
1621
Heinrich Schuchardt3d20d212020-11-19 07:31:18 +01001622 ret = delete_dentry_long(itr);
AKASHI Takahirof8240ce2018-09-11 15:59:14 +09001623
1624exit:
1625 free(fsdata.fatbuf);
1626 free(itr);
1627 free(filename_copy);
1628
1629 return ret;
1630}
1631
Heinrich Schuchardt4c4006b2021-01-30 10:01:08 +01001632int fat_mkdir(const char *dirname)
AKASHI Takahiro31a18d52018-09-11 15:59:10 +09001633{
1634 dir_entry *retdent;
1635 fsdata datablock = { .fatbuf = NULL, };
1636 fsdata *mydata = &datablock;
1637 fat_itr *itr = NULL;
Heinrich Schuchardt4c4006b2021-01-30 10:01:08 +01001638 char *dirname_copy, *parent, *basename;
AKASHI Takahiro31a18d52018-09-11 15:59:10 +09001639 char l_dirname[VFAT_MAXLEN_BYTES];
1640 int ret = -1;
1641 loff_t actwrite;
1642 unsigned int bytesperclust;
1643 dir_entry *dotdent = NULL;
1644
Heinrich Schuchardt4c4006b2021-01-30 10:01:08 +01001645 dirname_copy = strdup(dirname);
AKASHI Takahiro31a18d52018-09-11 15:59:10 +09001646 if (!dirname_copy)
1647 goto exit;
1648
Heinrich Schuchardt4c4006b2021-01-30 10:01:08 +01001649 split_filename(dirname_copy, &parent, &basename);
1650 if (!strlen(basename)) {
AKASHI Takahiro31a18d52018-09-11 15:59:10 +09001651 ret = -EINVAL;
1652 goto exit;
1653 }
1654
Heinrich Schuchardt4c4006b2021-01-30 10:01:08 +01001655 if (normalize_longname(l_dirname, basename)) {
1656 printf("FAT: illegal filename (%s)\n", basename);
AKASHI Takahiro31a18d52018-09-11 15:59:10 +09001657 ret = -EINVAL;
1658 goto exit;
1659 }
1660
1661 itr = malloc_cache_aligned(sizeof(fat_itr));
1662 if (!itr) {
1663 ret = -ENOMEM;
1664 goto exit;
1665 }
1666
1667 ret = fat_itr_root(itr, &datablock);
1668 if (ret)
1669 goto exit;
1670
1671 total_sector = datablock.total_sect;
1672
1673 ret = fat_itr_resolve(itr, parent, TYPE_DIR);
1674 if (ret) {
1675 printf("%s: doesn't exist (%d)\n", parent, ret);
1676 goto exit;
1677 }
1678
1679 retdent = find_directory_entry(itr, l_dirname);
1680
1681 if (retdent) {
1682 printf("%s: already exists\n", l_dirname);
1683 ret = -EEXIST;
1684 goto exit;
1685 } else {
Heinrich Schuchardt57b745e2020-11-22 19:19:39 +01001686 char shortname[SHORT_NAME_SIZE];
Heinrich Schuchardt3049a512020-11-22 11:54:22 +01001687 int ndent;
Heinrich Schuchardt57b745e2020-11-22 19:19:39 +01001688
AKASHI Takahiro31a18d52018-09-11 15:59:10 +09001689 if (itr->is_root) {
1690 /* root dir cannot have "." or ".." */
1691 if (!strcmp(l_dirname, ".") ||
1692 !strcmp(l_dirname, "..")) {
1693 ret = -EINVAL;
1694 goto exit;
1695 }
1696 }
1697
Heinrich Schuchardt28cef9c2020-11-20 12:55:22 +01001698 /* Check if long name is needed */
Heinrich Schuchardt4c4006b2021-01-30 10:01:08 +01001699 ndent = set_name(itr, basename, shortname);
Heinrich Schuchardt3049a512020-11-22 11:54:22 +01001700 if (ndent < 0) {
1701 ret = ndent;
Heinrich Schuchardt28cef9c2020-11-20 12:55:22 +01001702 goto exit;
Heinrich Schuchardt3049a512020-11-22 11:54:22 +01001703 }
1704 ret = fat_find_empty_dentries(itr, ndent);
1705 if (ret)
1706 goto exit;
1707 if (ndent > 1) {
Heinrich Schuchardt28cef9c2020-11-20 12:55:22 +01001708 /* Set long name entries */
Heinrich Schuchardt4c4006b2021-01-30 10:01:08 +01001709 ret = fill_dir_slot(itr, basename, shortname);
Heinrich Schuchardt28cef9c2020-11-20 12:55:22 +01001710 if (ret)
1711 goto exit;
1712 }
AKASHI Takahiro31a18d52018-09-11 15:59:10 +09001713
1714 /* Set attribute as archive for regular file */
Heinrich Schuchardt57b745e2020-11-22 19:19:39 +01001715 fill_dentry(itr->fsdata, itr->dent, shortname, 0, 0,
AKASHI Takahiro31a18d52018-09-11 15:59:10 +09001716 ATTR_DIR | ATTR_ARCH);
1717
1718 retdent = itr->dent;
1719 }
1720
1721 /* Default entries */
1722 bytesperclust = mydata->clust_size * mydata->sect_size;
1723 dotdent = malloc_cache_aligned(bytesperclust);
1724 if (!dotdent) {
1725 ret = -ENOMEM;
1726 goto exit;
1727 }
1728 memset(dotdent, 0, bytesperclust);
1729
Heinrich Schuchardt041f0af2021-01-21 00:23:33 +01001730 memcpy(&dotdent[0].nameext, ". ", 11);
AKASHI Takahiro31a18d52018-09-11 15:59:10 +09001731 dotdent[0].attr = ATTR_DIR | ATTR_ARCH;
1732
Heinrich Schuchardt041f0af2021-01-21 00:23:33 +01001733 memcpy(&dotdent[1].nameext, ".. ", 11);
AKASHI Takahiro31a18d52018-09-11 15:59:10 +09001734 dotdent[1].attr = ATTR_DIR | ATTR_ARCH;
Heinrich Schuchardtc5924112020-11-24 21:04:07 +01001735
1736 if (itr->is_root)
1737 set_start_cluster(mydata, &dotdent[1], 0);
1738 else
1739 set_start_cluster(mydata, &dotdent[1], itr->start_clust);
AKASHI Takahiro31a18d52018-09-11 15:59:10 +09001740
1741 ret = set_contents(mydata, retdent, 0, (__u8 *)dotdent,
1742 bytesperclust, &actwrite);
1743 if (ret < 0) {
1744 printf("Error: writing contents\n");
1745 goto exit;
1746 }
1747 /* Write twice for "." */
1748 set_start_cluster(mydata, &dotdent[0], START(retdent));
1749 ret = set_contents(mydata, retdent, 0, (__u8 *)dotdent,
1750 bytesperclust, &actwrite);
1751 if (ret < 0) {
1752 printf("Error: writing contents\n");
1753 goto exit;
1754 }
1755
1756 /* Flush fat buffer */
1757 ret = flush_dirty_fat_buffer(mydata);
1758 if (ret) {
1759 printf("Error: flush fat buffer\n");
Heinrich Schuchardte97eb632021-01-20 22:21:53 +01001760 ret = -EIO;
AKASHI Takahiro31a18d52018-09-11 15:59:10 +09001761 goto exit;
1762 }
1763
1764 /* Write directory table to device */
AKASHI Takahiroa9f67062019-05-24 14:10:35 +09001765 ret = flush_dir(itr);
AKASHI Takahiro31a18d52018-09-11 15:59:10 +09001766
1767exit:
1768 free(dirname_copy);
1769 free(mydata->fatbuf);
1770 free(itr);
1771 free(dotdent);
1772 return ret;
1773}