source: mainline/uspace/srv/fs/fat/fat_fat.c

Last change on this file was 09ab0a9a, checked in by Jiri Svoboda <jiri@…>, 7 years ago

Fix vertical spacing with new Ccheck revision.

  • Property mode set to 100644
File size: 25.5 KB
Line 
1/*
2 * Copyright (c) 2008 Jakub Jermar
3 * Copyright (c) 2011 Oleg Romanenko
4 * All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
8 * are met:
9 *
10 * - Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
12 * - Redistributions in binary form must reproduce the above copyright
13 * notice, this list of conditions and the following disclaimer in the
14 * documentation and/or other materials provided with the distribution.
15 * - The name of the author may not be used to endorse or promote products
16 * derived from this software without specific prior written permission.
17 *
18 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
19 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
20 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
21 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
22 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
23 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
24 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
25 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
26 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
27 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28 */
29
30/** @addtogroup fat
31 * @{
32 */
33
34/**
35 * @file fat_fat.c
36 * @brief Functions that manipulate the File Allocation Tables.
37 */
38
39#include "fat_fat.h"
40#include "fat_dentry.h"
41#include "fat.h"
42#include "../../vfs/vfs.h"
43#include <libfs.h>
44#include <block.h>
45#include <errno.h>
46#include <byteorder.h>
47#include <align.h>
48#include <assert.h>
49#include <fibril_synch.h>
50#include <mem.h>
51#include <stdlib.h>
52
53#define IS_ODD(number) (number & 0x1)
54
55/**
56 * The fat_alloc_lock mutex protects all copies of the File Allocation Table
57 * during allocation of clusters. The lock does not have to be held durring
58 * deallocation of clusters.
59 */
60static FIBRIL_MUTEX_INITIALIZE(fat_alloc_lock);
61
62/** Walk the cluster chain.
63 *
64 * @param bs Buffer holding the boot sector for the file.
65 * @param service_id Service ID of the device with the file.
66 * @param firstc First cluster to start the walk with.
67 * @param lastc If non-NULL, output argument hodling the last cluster
68 * number visited.
69 * @param numc If non-NULL, output argument holding the number of
70 * clusters seen during the walk.
71 * @param max_clusters Maximum number of clusters to visit.
72 *
73 * @return EOK on success or an error code.
74 */
75errno_t
76fat_cluster_walk(fat_bs_t *bs, service_id_t service_id, fat_cluster_t firstc,
77 fat_cluster_t *lastc, uint32_t *numc, uint32_t max_clusters)
78{
79 uint32_t clusters = 0;
80 fat_cluster_t clst = firstc, clst_last1 = FAT_CLST_LAST1(bs);
81 fat_cluster_t clst_bad = FAT_CLST_BAD(bs);
82 errno_t rc;
83
84 if (firstc == FAT_CLST_RES0) {
85 /* No space allocated to the file. */
86 if (lastc)
87 *lastc = firstc;
88 if (numc)
89 *numc = 0;
90 return EOK;
91 }
92
93 while (clst < clst_last1 && clusters < max_clusters) {
94 assert(clst >= FAT_CLST_FIRST);
95 if (lastc)
96 *lastc = clst; /* remember the last cluster number */
97
98 /* read FAT1 */
99 rc = fat_get_cluster(bs, service_id, FAT1, clst, &clst);
100 if (rc != EOK)
101 return rc;
102
103 assert(clst != clst_bad);
104 clusters++;
105 }
106
107 if (lastc && clst < clst_last1)
108 *lastc = clst;
109 if (numc)
110 *numc = clusters;
111
112 return EOK;
113}
114
115/** Read block from file located on a FAT file system.
116 *
117 * @param block Pointer to a block pointer for storing result.
118 * @param bs Buffer holding the boot sector of the file system.
119 * @param nodep FAT node.
120 * @param bn Block number.
121 * @param flags Flags passed to libblock.
122 *
123 * @return EOK on success or an error code.
124 */
125errno_t
126fat_block_get(block_t **block, struct fat_bs *bs, fat_node_t *nodep,
127 aoff64_t bn, int flags)
128{
129 fat_cluster_t firstc = nodep->firstc;
130 fat_cluster_t currc = 0;
131 aoff64_t relbn = bn;
132 errno_t rc;
133
134 if (!nodep->size)
135 return ELIMIT;
136
137 if (!FAT_IS_FAT32(bs) && nodep->firstc == FAT_CLST_ROOT)
138 goto fall_through;
139
140 if (((((nodep->size - 1) / BPS(bs)) / SPC(bs)) == bn / SPC(bs)) &&
141 nodep->lastc_cached_valid) {
142 /*
143 * This is a request to read a block within the last cluster
144 * when fortunately we have the last cluster number cached.
145 */
146 return block_get(block, nodep->idx->service_id,
147 CLBN2PBN(bs, nodep->lastc_cached_value, bn), flags);
148 }
149
150 if (nodep->currc_cached_valid && bn >= nodep->currc_cached_bn) {
151 /*
152 * We can start with the cluster cached by the previous call to
153 * fat_block_get().
154 */
155 firstc = nodep->currc_cached_value;
156 relbn -= (nodep->currc_cached_bn / SPC(bs)) * SPC(bs);
157 }
158
159fall_through:
160 rc = _fat_block_get(block, bs, nodep->idx->service_id, firstc,
161 &currc, relbn, flags);
162 if (rc != EOK)
163 return rc;
164
165 /*
166 * Update the "current" cluster cache.
167 */
168 nodep->currc_cached_valid = true;
169 nodep->currc_cached_bn = bn;
170 nodep->currc_cached_value = currc;
171
172 return rc;
173}
174
175/** Read block from file located on a FAT file system.
176 *
177 * @param block Pointer to a block pointer for storing result.
178 * @param bs Buffer holding the boot sector of the file system.
179 * @param service_id Service ID handle of the file system.
180 * @param fcl First cluster used by the file. Can be zero if the file
181 * is empty.
182 * @param clp If not NULL, address where the cluster containing bn
183 * will be stored.
184 * stored
185 * @param bn Block number.
186 * @param flags Flags passed to libblock.
187 *
188 * @return EOK on success or an error code.
189 */
190errno_t
191_fat_block_get(block_t **block, fat_bs_t *bs, service_id_t service_id,
192 fat_cluster_t fcl, fat_cluster_t *clp, aoff64_t bn, int flags)
193{
194 uint32_t clusters;
195 uint32_t max_clusters;
196 fat_cluster_t c = 0;
197 errno_t rc;
198
199 /*
200 * This function can only operate on non-zero length files.
201 */
202 if (fcl == FAT_CLST_RES0)
203 return ELIMIT;
204
205 if (!FAT_IS_FAT32(bs) && fcl == FAT_CLST_ROOT) {
206 /* root directory special case */
207 assert(bn < RDS(bs));
208 rc = block_get(block, service_id,
209 RSCNT(bs) + FATCNT(bs) * SF(bs) + bn, flags);
210 return rc;
211 }
212
213 max_clusters = bn / SPC(bs);
214 rc = fat_cluster_walk(bs, service_id, fcl, &c, &clusters, max_clusters);
215 if (rc != EOK)
216 return rc;
217 assert(clusters == max_clusters);
218
219 rc = block_get(block, service_id, CLBN2PBN(bs, c, bn), flags);
220
221 if (clp)
222 *clp = c;
223
224 return rc;
225}
226
227/** Fill the gap between EOF and a new file position.
228 *
229 * @param bs Buffer holding the boot sector for nodep.
230 * @param nodep FAT node with the gap.
231 * @param mcl First cluster in an independent cluster chain that will
232 * be later appended to the end of the node's own cluster
233 * chain. If pos is still in the last allocated cluster,
234 * this argument is ignored.
235 * @param pos Position in the last node block.
236 *
237 * @return EOK on success or an error code.
238 */
239errno_t
240fat_fill_gap(fat_bs_t *bs, fat_node_t *nodep, fat_cluster_t mcl, aoff64_t pos)
241{
242 block_t *b;
243 aoff64_t o, boundary;
244 errno_t rc;
245
246 boundary = ROUND_UP(nodep->size, BPS(bs) * SPC(bs));
247
248 /* zero out already allocated space */
249 for (o = nodep->size; o < pos && o < boundary;
250 o = ALIGN_DOWN(o + BPS(bs), BPS(bs))) {
251 int flags = (o % BPS(bs) == 0) ?
252 BLOCK_FLAGS_NOREAD : BLOCK_FLAGS_NONE;
253 rc = fat_block_get(&b, bs, nodep, o / BPS(bs), flags);
254 if (rc != EOK)
255 return rc;
256 memset(b->data + o % BPS(bs), 0, BPS(bs) - o % BPS(bs));
257 b->dirty = true; /* need to sync node */
258 rc = block_put(b);
259 if (rc != EOK)
260 return rc;
261 }
262
263 if (o >= pos)
264 return EOK;
265
266 /* zero out the initial part of the new cluster chain */
267 for (o = boundary; o < pos; o += BPS(bs)) {
268 rc = _fat_block_get(&b, bs, nodep->idx->service_id, mcl,
269 NULL, (o - boundary) / BPS(bs), BLOCK_FLAGS_NOREAD);
270 if (rc != EOK)
271 return rc;
272 memset(b->data, 0, min(BPS(bs), pos - o));
273 b->dirty = true; /* need to sync node */
274 rc = block_put(b);
275 if (rc != EOK)
276 return rc;
277 }
278
279 return EOK;
280}
281
282/** Get cluster from the first FAT.
283 *
284 * @param bs Buffer holding the boot sector for the file system.
285 * @param service_id Service ID for the file system.
286 * @param clst Cluster which to get.
287 * @param value Output argument holding the value of the cluster.
288 *
289 * @return EOK or an error code.
290 */
291static errno_t
292fat_get_cluster_fat12(fat_bs_t *bs, service_id_t service_id, unsigned fatno,
293 fat_cluster_t clst, fat_cluster_t *value)
294{
295 block_t *b, *b1;
296 uint16_t byte1, byte2;
297 aoff64_t offset;
298 errno_t rc;
299
300 offset = (clst + clst / 2);
301 if (offset / BPS(bs) >= SF(bs))
302 return ERANGE;
303
304 rc = block_get(&b, service_id, RSCNT(bs) + SF(bs) * fatno +
305 offset / BPS(bs), BLOCK_FLAGS_NONE);
306 if (rc != EOK)
307 return rc;
308
309 byte1 = ((uint8_t *) b->data)[offset % BPS(bs)];
310 /* This cluster access spans a sector boundary. Check only for FAT12 */
311 if ((offset % BPS(bs)) + 1 == BPS(bs)) {
312 /* Is this the last sector of FAT? */
313 if (offset / BPS(bs) < SF(bs)) {
314 /* No, read the next sector */
315 rc = block_get(&b1, service_id, 1 + RSCNT(bs) +
316 SF(bs) * fatno + offset / BPS(bs),
317 BLOCK_FLAGS_NONE);
318 if (rc != EOK) {
319 block_put(b);
320 return rc;
321 }
322 /*
323 * Combining value with last byte of current sector and
324 * first byte of next sector
325 */
326 byte2 = ((uint8_t *) b1->data)[0];
327
328 rc = block_put(b1);
329 if (rc != EOK) {
330 block_put(b);
331 return rc;
332 }
333 } else {
334 /* Yes. This is the last sector of FAT */
335 block_put(b);
336 return ERANGE;
337 }
338 } else
339 byte2 = ((uint8_t *) b->data)[(offset % BPS(bs)) + 1];
340
341 *value = (byte1 | (byte2 << 8));
342 if (IS_ODD(clst))
343 *value = (*value) >> 4;
344 else
345 *value = (*value) & FAT12_MASK;
346
347 rc = block_put(b);
348
349 return rc;
350}
351
352/** Get cluster from the first FAT.
353 *
354 * @param bs Buffer holding the boot sector for the file system.
355 * @param service_id Service ID for the file system.
356 * @param clst Cluster which to get.
357 * @param value Output argument holding the value of the cluster.
358 *
359 * @return EOK or an error code.
360 */
361static errno_t
362fat_get_cluster_fat16(fat_bs_t *bs, service_id_t service_id, unsigned fatno,
363 fat_cluster_t clst, fat_cluster_t *value)
364{
365 block_t *b;
366 aoff64_t offset;
367 errno_t rc;
368
369 offset = (clst * FAT16_CLST_SIZE);
370
371 rc = block_get(&b, service_id, RSCNT(bs) + SF(bs) * fatno +
372 offset / BPS(bs), BLOCK_FLAGS_NONE);
373 if (rc != EOK)
374 return rc;
375
376 *value = uint16_t_le2host(*(uint16_t *)(b->data + offset % BPS(bs)));
377
378 rc = block_put(b);
379
380 return rc;
381}
382
383/** Get cluster from the first FAT.
384 *
385 * @param bs Buffer holding the boot sector for the file system.
386 * @param service_id Service ID for the file system.
387 * @param clst Cluster which to get.
388 * @param value Output argument holding the value of the cluster.
389 *
390 * @return EOK or an error code.
391 */
392static errno_t
393fat_get_cluster_fat32(fat_bs_t *bs, service_id_t service_id, unsigned fatno,
394 fat_cluster_t clst, fat_cluster_t *value)
395{
396 block_t *b;
397 aoff64_t offset;
398 errno_t rc;
399
400 offset = (clst * FAT32_CLST_SIZE);
401
402 rc = block_get(&b, service_id, RSCNT(bs) + SF(bs) * fatno +
403 offset / BPS(bs), BLOCK_FLAGS_NONE);
404 if (rc != EOK)
405 return rc;
406
407 *value = uint32_t_le2host(*(uint32_t *)(b->data + offset % BPS(bs))) &
408 FAT32_MASK;
409
410 rc = block_put(b);
411
412 return rc;
413}
414
415/** Get cluster from the first FAT.
416 *
417 * @param bs Buffer holding the boot sector for the file system.
418 * @param service_id Service ID for the file system.
419 * @param clst Cluster which to get.
420 * @param value Output argument holding the value of the cluster.
421 *
422 * @return EOK or an error code.
423 */
424errno_t
425fat_get_cluster(fat_bs_t *bs, service_id_t service_id, unsigned fatno,
426 fat_cluster_t clst, fat_cluster_t *value)
427{
428 errno_t rc;
429
430 assert(fatno < FATCNT(bs));
431
432 if (FAT_IS_FAT12(bs))
433 rc = fat_get_cluster_fat12(bs, service_id, fatno, clst, value);
434 else if (FAT_IS_FAT16(bs))
435 rc = fat_get_cluster_fat16(bs, service_id, fatno, clst, value);
436 else
437 rc = fat_get_cluster_fat32(bs, service_id, fatno, clst, value);
438
439 return rc;
440}
441
442/** Set cluster in one instance of FAT.
443 *
444 * @param bs Buffer holding the boot sector for the file system.
445 * @param service_id Service ID for the file system.
446 * @param fatno Number of the FAT instance where to make the change.
447 * @param clst Cluster which is to be set.
448 * @param value Value to set the cluster with.
449 *
450 * @return EOK on success or an error code.
451 */
452static errno_t
453fat_set_cluster_fat12(fat_bs_t *bs, service_id_t service_id, unsigned fatno,
454 fat_cluster_t clst, fat_cluster_t value)
455{
456 block_t *b, *b1 = NULL;
457 aoff64_t offset;
458 uint16_t byte1, byte2;
459 errno_t rc;
460
461 offset = (clst + clst / 2);
462 if (offset / BPS(bs) >= SF(bs))
463 return ERANGE;
464
465 rc = block_get(&b, service_id, RSCNT(bs) + SF(bs) * fatno +
466 offset / BPS(bs), BLOCK_FLAGS_NONE);
467 if (rc != EOK)
468 return rc;
469
470 byte1 = ((uint8_t *) b->data)[offset % BPS(bs)];
471 bool border = false;
472 /* This cluster access spans a sector boundary. */
473 if ((offset % BPS(bs)) + 1 == BPS(bs)) {
474 /* Is it the last sector of FAT? */
475 if (offset / BPS(bs) < SF(bs)) {
476 /* No, read the next sector */
477 rc = block_get(&b1, service_id, 1 + RSCNT(bs) +
478 SF(bs) * fatno + offset / BPS(bs),
479 BLOCK_FLAGS_NONE);
480 if (rc != EOK) {
481 block_put(b);
482 return rc;
483 }
484 /*
485 * Combining value with last byte of current sector and
486 * first byte of next sector
487 */
488 byte2 = ((uint8_t *) b1->data)[0];
489 border = true;
490 } else {
491 /* Yes. This is the last sector of FAT */
492 block_put(b);
493 return ERANGE;
494 }
495 } else
496 byte2 = ((uint8_t *) b->data)[(offset % BPS(bs)) + 1];
497
498 if (IS_ODD(clst)) {
499 byte1 &= 0x0f;
500 byte2 = 0;
501 value = (value << 4);
502 } else {
503 byte1 = 0;
504 byte2 &= 0xf0;
505 value &= FAT12_MASK;
506 }
507
508 byte1 = byte1 | (value & 0xff);
509 byte2 = byte2 | (value >> 8);
510
511 ((uint8_t *) b->data)[(offset % BPS(bs))] = byte1;
512 if (border) {
513 ((uint8_t *) b1->data)[0] = byte2;
514
515 b1->dirty = true;
516 rc = block_put(b1);
517 if (rc != EOK) {
518 block_put(b);
519 return rc;
520 }
521 } else
522 ((uint8_t *) b->data)[(offset % BPS(bs)) + 1] = byte2;
523
524 b->dirty = true; /* need to sync block */
525 rc = block_put(b);
526
527 return rc;
528}
529
530/** Set cluster in one instance of FAT.
531 *
532 * @param bs Buffer holding the boot sector for the file system.
533 * @param service_id Service ID for the file system.
534 * @param fatno Number of the FAT instance where to make the change.
535 * @param clst Cluster which is to be set.
536 * @param value Value to set the cluster with.
537 *
538 * @return EOK on success or an error code.
539 */
540static errno_t
541fat_set_cluster_fat16(fat_bs_t *bs, service_id_t service_id, unsigned fatno,
542 fat_cluster_t clst, fat_cluster_t value)
543{
544 block_t *b;
545 aoff64_t offset;
546 errno_t rc;
547
548 offset = (clst * FAT16_CLST_SIZE);
549
550 rc = block_get(&b, service_id, RSCNT(bs) + SF(bs) * fatno +
551 offset / BPS(bs), BLOCK_FLAGS_NONE);
552 if (rc != EOK)
553 return rc;
554
555 *(uint16_t *)(b->data + offset % BPS(bs)) = host2uint16_t_le(value);
556
557 b->dirty = true; /* need to sync block */
558 rc = block_put(b);
559
560 return rc;
561}
562
563/** Set cluster in one instance of FAT.
564 *
565 * @param bs Buffer holding the boot sector for the file system.
566 * @param service_id Service ID for the file system.
567 * @param fatno Number of the FAT instance where to make the change.
568 * @param clst Cluster which is to be set.
569 * @param value Value to set the cluster with.
570 *
571 * @return EOK on success or an error code.
572 */
573static errno_t
574fat_set_cluster_fat32(fat_bs_t *bs, service_id_t service_id, unsigned fatno,
575 fat_cluster_t clst, fat_cluster_t value)
576{
577 block_t *b;
578 aoff64_t offset;
579 errno_t rc;
580 fat_cluster_t temp;
581
582 offset = (clst * FAT32_CLST_SIZE);
583
584 rc = block_get(&b, service_id, RSCNT(bs) + SF(bs) * fatno +
585 offset / BPS(bs), BLOCK_FLAGS_NONE);
586 if (rc != EOK)
587 return rc;
588
589 temp = uint32_t_le2host(*(uint32_t *)(b->data + offset % BPS(bs)));
590 temp &= 0xf0000000;
591 temp |= (value & FAT32_MASK);
592 *(uint32_t *)(b->data + offset % BPS(bs)) = host2uint32_t_le(temp);
593
594 b->dirty = true; /* need to sync block */
595 rc = block_put(b);
596
597 return rc;
598}
599
600/** Set cluster in one instance of FAT.
601 *
602 * @param bs Buffer holding the boot sector for the file system.
603 * @param service_id Device service ID for the file system.
604 * @param fatno Number of the FAT instance where to make the change.
605 * @param clst Cluster which is to be set.
606 * @param value Value to set the cluster with.
607 *
608 * @return EOK on success or an error code.
609 */
610errno_t
611fat_set_cluster(fat_bs_t *bs, service_id_t service_id, unsigned fatno,
612 fat_cluster_t clst, fat_cluster_t value)
613{
614 errno_t rc;
615
616 assert(fatno < FATCNT(bs));
617
618 if (FAT_IS_FAT12(bs))
619 rc = fat_set_cluster_fat12(bs, service_id, fatno, clst, value);
620 else if (FAT_IS_FAT16(bs))
621 rc = fat_set_cluster_fat16(bs, service_id, fatno, clst, value);
622 else
623 rc = fat_set_cluster_fat32(bs, service_id, fatno, clst, value);
624
625 return rc;
626}
627
628/** Replay the allocatoin of clusters in all shadow instances of FAT.
629 *
630 * @param bs Buffer holding the boot sector of the file system.
631 * @param service_id Service ID of the file system.
632 * @param lifo Chain of allocated clusters.
633 * @param nclsts Number of clusters in the lifo chain.
634 *
635 * @return EOK on success or an error code.
636 */
637errno_t fat_alloc_shadow_clusters(fat_bs_t *bs, service_id_t service_id,
638 fat_cluster_t *lifo, unsigned nclsts)
639{
640 uint8_t fatno;
641 unsigned c;
642 fat_cluster_t clst_last1 = FAT_CLST_LAST1(bs);
643 errno_t rc;
644
645 for (fatno = FAT1 + 1; fatno < FATCNT(bs); fatno++) {
646 for (c = 0; c < nclsts; c++) {
647 rc = fat_set_cluster(bs, service_id, fatno, lifo[c],
648 c == 0 ? clst_last1 : lifo[c - 1]);
649 if (rc != EOK)
650 return rc;
651 }
652 }
653
654 return EOK;
655}
656
657/** Allocate clusters in all copies of FAT.
658 *
659 * This function will attempt to allocate the requested number of clusters in
660 * all instances of the FAT. The FAT will be altered so that the allocated
661 * clusters form an independent chain (i.e. a chain which does not belong to any
662 * file yet).
663 *
664 * @param bs Buffer holding the boot sector of the file system.
665 * @param service_id Device service ID of the file system.
666 * @param nclsts Number of clusters to allocate.
667 * @param mcl Output parameter where the first cluster in the chain
668 * will be returned.
669 * @param lcl Output parameter where the last cluster in the chain
670 * will be returned.
671 *
672 * @return EOK on success, an error code otherwise.
673 */
674errno_t
675fat_alloc_clusters(fat_bs_t *bs, service_id_t service_id, unsigned nclsts,
676 fat_cluster_t *mcl, fat_cluster_t *lcl)
677{
678 fat_cluster_t *lifo; /* stack for storing free cluster numbers */
679 unsigned found = 0; /* top of the free cluster number stack */
680 fat_cluster_t clst;
681 fat_cluster_t value = 0;
682 fat_cluster_t clst_last1 = FAT_CLST_LAST1(bs);
683 errno_t rc = EOK;
684
685 lifo = (fat_cluster_t *) malloc(nclsts * sizeof(fat_cluster_t));
686 if (!lifo)
687 return ENOMEM;
688
689 /*
690 * Search FAT1 for unused clusters.
691 */
692 fibril_mutex_lock(&fat_alloc_lock);
693 for (clst = FAT_CLST_FIRST; clst < CC(bs) + 2 && found < nclsts;
694 clst++) {
695 rc = fat_get_cluster(bs, service_id, FAT1, clst, &value);
696 if (rc != EOK)
697 break;
698
699 if (value == FAT_CLST_RES0) {
700 /*
701 * The cluster is free. Put it into our stack
702 * of found clusters and mark it as non-free.
703 */
704 lifo[found] = clst;
705 rc = fat_set_cluster(bs, service_id, FAT1, clst,
706 (found == 0) ? clst_last1 : lifo[found - 1]);
707 if (rc != EOK)
708 break;
709
710 found++;
711 }
712 }
713
714 if (rc == EOK && found == nclsts) {
715 rc = fat_alloc_shadow_clusters(bs, service_id, lifo, nclsts);
716 if (rc == EOK) {
717 *mcl = lifo[found - 1];
718 *lcl = lifo[0];
719 free(lifo);
720 fibril_mutex_unlock(&fat_alloc_lock);
721 return EOK;
722 }
723 }
724
725 /* If something wrong - free the clusters */
726 while (found--) {
727 (void) fat_set_cluster(bs, service_id, FAT1, lifo[found],
728 FAT_CLST_RES0);
729 }
730
731 free(lifo);
732 fibril_mutex_unlock(&fat_alloc_lock);
733
734 return ENOSPC;
735}
736
737/** Free clusters forming a cluster chain in all copies of FAT.
738 *
739 * @param bs Buffer hodling the boot sector of the file system.
740 * @param service_id Device service ID of the file system.
741 * @param firstc First cluster in the chain which is to be freed.
742 *
743 * @return EOK on success or an error code.
744 */
745errno_t
746fat_free_clusters(fat_bs_t *bs, service_id_t service_id, fat_cluster_t firstc)
747{
748 unsigned fatno;
749 fat_cluster_t nextc = 0;
750 fat_cluster_t clst_bad = FAT_CLST_BAD(bs);
751 errno_t rc;
752
753 /* Mark all clusters in the chain as free in all copies of FAT. */
754 while (firstc < FAT_CLST_LAST1(bs)) {
755 assert(firstc >= FAT_CLST_FIRST && firstc < clst_bad);
756
757 rc = fat_get_cluster(bs, service_id, FAT1, firstc, &nextc);
758 if (rc != EOK)
759 return rc;
760
761 for (fatno = FAT1; fatno < FATCNT(bs); fatno++) {
762 rc = fat_set_cluster(bs, service_id, fatno, firstc,
763 FAT_CLST_RES0);
764 if (rc != EOK)
765 return rc;
766 }
767
768 firstc = nextc;
769 }
770
771 return EOK;
772}
773
774/** Append a cluster chain to the last file cluster in all FATs.
775 *
776 * @param bs Buffer holding the boot sector of the file system.
777 * @param nodep Node representing the file.
778 * @param mcl First cluster of the cluster chain to append.
779 * @param lcl Last cluster of the cluster chain to append.
780 *
781 * @return EOK on success or an error code.
782 */
783errno_t fat_append_clusters(fat_bs_t *bs, fat_node_t *nodep, fat_cluster_t mcl,
784 fat_cluster_t lcl)
785{
786 service_id_t service_id = nodep->idx->service_id;
787 fat_cluster_t lastc = 0;
788 uint8_t fatno;
789 errno_t rc;
790
791 if (nodep->firstc == FAT_CLST_RES0) {
792 /* No clusters allocated to the node yet. */
793 nodep->firstc = mcl;
794 nodep->dirty = true; /* need to sync node */
795 } else {
796 if (nodep->lastc_cached_valid) {
797 lastc = nodep->lastc_cached_value;
798 nodep->lastc_cached_valid = false;
799 } else {
800 rc = fat_cluster_walk(bs, service_id, nodep->firstc,
801 &lastc, NULL, (uint32_t) -1);
802 if (rc != EOK)
803 return rc;
804 }
805
806 for (fatno = FAT1; fatno < FATCNT(bs); fatno++) {
807 rc = fat_set_cluster(bs, nodep->idx->service_id,
808 fatno, lastc, mcl);
809 if (rc != EOK)
810 return rc;
811 }
812 }
813
814 nodep->lastc_cached_valid = true;
815 nodep->lastc_cached_value = lcl;
816
817 return EOK;
818}
819
820/** Chop off node clusters in all copies of FAT.
821 *
822 * @param bs Buffer holding the boot sector of the file system.
823 * @param nodep FAT node where the chopping will take place.
824 * @param lcl Last cluster which will remain in the node. If this
825 * argument is FAT_CLST_RES0, then all clusters will
826 * be chopped off.
827 *
828 * @return EOK on success or an error code.
829 */
830errno_t fat_chop_clusters(fat_bs_t *bs, fat_node_t *nodep, fat_cluster_t lcl)
831{
832 fat_cluster_t clst_last1 = FAT_CLST_LAST1(bs);
833 errno_t rc;
834 service_id_t service_id = nodep->idx->service_id;
835
836 /*
837 * Invalidate cached cluster numbers.
838 */
839 nodep->lastc_cached_valid = false;
840 if (nodep->currc_cached_value != lcl)
841 nodep->currc_cached_valid = false;
842
843 if (lcl == FAT_CLST_RES0) {
844 /* The node will have zero size and no clusters allocated. */
845 rc = fat_free_clusters(bs, service_id, nodep->firstc);
846 if (rc != EOK)
847 return rc;
848 nodep->firstc = FAT_CLST_RES0;
849 nodep->dirty = true; /* need to sync node */
850 } else {
851 fat_cluster_t nextc;
852 unsigned fatno;
853
854 rc = fat_get_cluster(bs, service_id, FAT1, lcl, &nextc);
855 if (rc != EOK)
856 return rc;
857
858 /* Terminate the cluster chain in all copies of FAT. */
859 for (fatno = FAT1; fatno < FATCNT(bs); fatno++) {
860 rc = fat_set_cluster(bs, service_id, fatno, lcl,
861 clst_last1);
862 if (rc != EOK)
863 return rc;
864 }
865
866 /* Free all following clusters. */
867 rc = fat_free_clusters(bs, service_id, nextc);
868 if (rc != EOK)
869 return rc;
870 }
871
872 /*
873 * Update and re-enable the last cluster cache.
874 */
875 nodep->lastc_cached_valid = true;
876 nodep->lastc_cached_value = lcl;
877
878 return EOK;
879}
880
881errno_t
882fat_zero_cluster(struct fat_bs *bs, service_id_t service_id, fat_cluster_t c)
883{
884 int i;
885 block_t *b;
886 errno_t rc;
887
888 for (i = 0; i < SPC(bs); i++) {
889 rc = _fat_block_get(&b, bs, service_id, c, NULL, i,
890 BLOCK_FLAGS_NOREAD);
891 if (rc != EOK)
892 return rc;
893 memset(b->data, 0, BPS(bs));
894 b->dirty = true;
895 rc = block_put(b);
896 if (rc != EOK)
897 return rc;
898 }
899
900 return EOK;
901}
902
903/** Perform basic sanity checks on the file system.
904 *
905 * Verify if values of boot sector fields are sane. Also verify media
906 * descriptor. This is used to rule out cases when a device obviously
907 * does not contain a fat file system.
908 */
909errno_t fat_sanity_check(fat_bs_t *bs, service_id_t service_id)
910{
911 fat_cluster_t e0 = 0;
912 fat_cluster_t e1 = 0;
913 unsigned fat_no;
914 errno_t rc;
915
916 /* Check number of FATs. */
917 if (FATCNT(bs) == 0)
918 return ENOTSUP;
919
920 /* Check total number of sectors. */
921 if (TS(bs) == 0)
922 return ENOTSUP;
923
924 if (bs->totsec16 != 0 && bs->totsec32 != 0 &&
925 bs->totsec16 != bs->totsec32)
926 return ENOTSUP;
927
928 /* Check media descriptor. Must be between 0xf0 and 0xff. */
929 if ((bs->mdesc & 0xf0) != 0xf0)
930 return ENOTSUP;
931
932 /* Check number of sectors per FAT. */
933 if (SF(bs) == 0)
934 return ENOTSUP;
935
936 /*
937 * Check that the root directory entries take up whole blocks.
938 * This check is rather strict, but it allows us to treat the root
939 * directory and non-root directories uniformly in some places.
940 * It can be removed provided that functions such as fat_read() are
941 * sanitized to support file systems with this property.
942 */
943 if (!FAT_IS_FAT32(bs) &&
944 (RDE(bs) * sizeof(fat_dentry_t)) % BPS(bs) != 0)
945 return ENOTSUP;
946
947 /* Check signature of each FAT. */
948 for (fat_no = 0; fat_no < FATCNT(bs); fat_no++) {
949 rc = fat_get_cluster(bs, service_id, fat_no, 0, &e0);
950 if (rc != EOK)
951 return EIO;
952
953 rc = fat_get_cluster(bs, service_id, fat_no, 1, &e1);
954 if (rc != EOK)
955 return EIO;
956
957 /*
958 * Check that first byte of FAT contains the media descriptor.
959 */
960 if ((e0 & 0xff) != bs->mdesc)
961 return ENOTSUP;
962
963 /*
964 * Check that remaining bits of the first two entries are
965 * set to one.
966 */
967 if (!FAT_IS_FAT12(bs) &&
968 ((e0 >> 8) != ((fat_cluster_t) FAT_MASK(bs) >> 8) || e1 != FAT_MASK(bs)))
969 return ENOTSUP;
970 }
971
972 return EOK;
973}
974
975/**
976 * @}
977 */
Note: See TracBrowser for help on using the repository browser.