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

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since e402382 was e402382, checked in by Jakub Jermar <jakub@…>, 16 years ago

Make fat_cluster_walk() return an error code.

  • Property mode set to 100644
File size: 14.7 KB
Line 
1/*
2 * Copyright (c) 2008 Jakub Jermar
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 *
9 * - Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
11 * - Redistributions in binary form must reproduce the above copyright
12 * notice, this list of conditions and the following disclaimer in the
13 * documentation and/or other materials provided with the distribution.
14 * - The name of the author may not be used to endorse or promote products
15 * derived from this software without specific prior written permission.
16 *
17 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
18 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
19 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
20 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
21 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
22 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 */
28
29/** @addtogroup fs
30 * @{
31 */
32
33/**
34 * @file fat_fat.c
35 * @brief Functions that manipulate the File Allocation Tables.
36 */
37
38#include "fat_fat.h"
39#include "fat_dentry.h"
40#include "fat.h"
41#include "../../vfs/vfs.h"
42#include <libfs.h>
43#include <libblock.h>
44#include <errno.h>
45#include <byteorder.h>
46#include <align.h>
47#include <assert.h>
48#include <fibril_sync.h>
49#include <mem.h>
50
51/**
52 * The fat_alloc_lock mutex protects all copies of the File Allocation Table
53 * during allocation of clusters. The lock does not have to be held durring
54 * deallocation of clusters.
55 */
56static FIBRIL_MUTEX_INITIALIZE(fat_alloc_lock);
57
58/** Walk the cluster chain.
59 *
60 * @param bs Buffer holding the boot sector for the file.
61 * @param dev_handle Device handle of the device with the file.
62 * @param firstc First cluster to start the walk with.
63 * @param lastc If non-NULL, output argument hodling the last cluster
64 * number visited.
65 * @param numc If non-NULL, output argument holding the number of
66 * clusters seen during the walk.
67 * @param max_clusters Maximum number of clusters to visit.
68 *
69 * @return EOK on success or a negative error code.
70 */
71int
72fat_cluster_walk(fat_bs_t *bs, dev_handle_t dev_handle, fat_cluster_t firstc,
73 fat_cluster_t *lastc, uint16_t *numc, uint16_t max_clusters)
74{
75 block_t *b;
76 unsigned bps;
77 unsigned rscnt; /* block address of the first FAT */
78 uint16_t clusters = 0;
79 fat_cluster_t clst = firstc;
80 int rc;
81
82 bps = uint16_t_le2host(bs->bps);
83 rscnt = uint16_t_le2host(bs->rscnt);
84
85 if (firstc == FAT_CLST_RES0) {
86 /* No space allocated to the file. */
87 if (lastc)
88 *lastc = firstc;
89 if (numc)
90 *numc = 0;
91 return EOK;
92 }
93
94 while (clst < FAT_CLST_LAST1 && clusters < max_clusters) {
95 bn_t fsec; /* sector offset relative to FAT1 */
96 unsigned fidx; /* FAT1 entry index */
97
98 assert(clst >= FAT_CLST_FIRST);
99 if (lastc)
100 *lastc = clst; /* remember the last cluster number */
101 fsec = (clst * sizeof(fat_cluster_t)) / bps;
102 fidx = clst % (bps / sizeof(fat_cluster_t));
103 /* read FAT1 */
104 rc = block_get(&b, dev_handle, rscnt + fsec, BLOCK_FLAGS_NONE);
105 if (rc != EOK)
106 return rc;
107 clst = uint16_t_le2host(((fat_cluster_t *)b->data)[fidx]);
108 assert(clst != FAT_CLST_BAD);
109 rc = block_put(b);
110 if (rc != EOK)
111 return rc;
112 clusters++;
113 }
114
115 if (lastc && clst < FAT_CLST_LAST1)
116 *lastc = clst;
117 if (numc)
118 *numc = clusters;
119
120 return EOK;
121}
122
123/** Read block from file located on a FAT file system.
124 *
125 * @param block Pointer to a block pointer for storing result.
126 * @param bs Buffer holding the boot sector of the file system.
127 * @param dev_handle Device handle of the file system.
128 * @param firstc First cluster used by the file. Can be zero if the file
129 * is empty.
130 * @param bn Block number.
131 * @param flags Flags passed to libblock.
132 *
133 * @return EOK on success or a negative error code.
134 */
135int
136_fat_block_get(block_t **block, fat_bs_t *bs, dev_handle_t dev_handle,
137 fat_cluster_t firstc, bn_t bn, int flags)
138{
139 unsigned bps;
140 unsigned rscnt; /* block address of the first FAT */
141 unsigned rde;
142 unsigned rds; /* root directory size */
143 unsigned sf;
144 unsigned ssa; /* size of the system area */
145 uint16_t clusters;
146 unsigned max_clusters;
147 fat_cluster_t lastc;
148 int rc;
149
150 bps = uint16_t_le2host(bs->bps);
151 rscnt = uint16_t_le2host(bs->rscnt);
152 rde = uint16_t_le2host(bs->root_ent_max);
153 sf = uint16_t_le2host(bs->sec_per_fat);
154
155 rds = (sizeof(fat_dentry_t) * rde) / bps;
156 rds += ((sizeof(fat_dentry_t) * rde) % bps != 0);
157 ssa = rscnt + bs->fatcnt * sf + rds;
158
159 if (firstc == FAT_CLST_ROOT) {
160 /* root directory special case */
161 assert(bn < rds);
162 rc = block_get(block, dev_handle, rscnt + bs->fatcnt * sf + bn,
163 flags);
164 return rc;
165 }
166
167 max_clusters = bn / bs->spc;
168 rc = fat_cluster_walk(bs, dev_handle, firstc, &lastc, &clusters,
169 max_clusters);
170 if (rc != EOK)
171 return rc;
172 assert(clusters == max_clusters);
173
174 rc = block_get(block, dev_handle,
175 ssa + (lastc - FAT_CLST_FIRST) * bs->spc + bn % bs->spc, flags);
176
177 return rc;
178}
179
180/** Fill the gap between EOF and a new file position.
181 *
182 * @param bs Buffer holding the boot sector for nodep.
183 * @param nodep FAT node with the gap.
184 * @param mcl First cluster in an independent cluster chain that will
185 * be later appended to the end of the node's own cluster
186 * chain. If pos is still in the last allocated cluster,
187 * this argument is ignored.
188 * @param pos Position in the last node block.
189 */
190void fat_fill_gap(fat_bs_t *bs, fat_node_t *nodep, fat_cluster_t mcl, off_t pos)
191{
192 uint16_t bps;
193 unsigned spc;
194 block_t *b;
195 off_t o, boundary;
196 int rc;
197
198 bps = uint16_t_le2host(bs->bps);
199 spc = bs->spc;
200
201 boundary = ROUND_UP(nodep->size, bps * spc);
202
203 /* zero out already allocated space */
204 for (o = nodep->size; o < pos && o < boundary;
205 o = ALIGN_DOWN(o + bps, bps)) {
206 int flags = (o % bps == 0) ?
207 BLOCK_FLAGS_NOREAD : BLOCK_FLAGS_NONE;
208 rc = fat_block_get(&b, bs, nodep, o / bps, flags);
209 assert(rc == EOK);
210 memset(b->data + o % bps, 0, bps - o % bps);
211 b->dirty = true; /* need to sync node */
212 rc = block_put(b);
213 assert(rc == EOK);
214 }
215
216 if (o >= pos)
217 return;
218
219 /* zero out the initial part of the new cluster chain */
220 for (o = boundary; o < pos; o += bps) {
221 rc = _fat_block_get(&b, bs, nodep->idx->dev_handle, mcl,
222 (o - boundary) / bps, BLOCK_FLAGS_NOREAD);
223 assert(rc == EOK);
224 memset(b->data, 0, min(bps, pos - o));
225 b->dirty = true; /* need to sync node */
226 rc = block_put(b);
227 assert(rc == EOK);
228 }
229}
230
231/** Get cluster from the first FAT.
232 *
233 * @param bs Buffer holding the boot sector for the file system.
234 * @param dev_handle Device handle for the file system.
235 * @param clst Cluster which to get.
236 *
237 * @return Value found in the cluster.
238 */
239fat_cluster_t
240fat_get_cluster(fat_bs_t *bs, dev_handle_t dev_handle, fat_cluster_t clst)
241{
242 block_t *b;
243 uint16_t bps;
244 uint16_t rscnt;
245 fat_cluster_t *cp, value;
246 int rc;
247
248 bps = uint16_t_le2host(bs->bps);
249 rscnt = uint16_t_le2host(bs->rscnt);
250
251 rc = block_get(&b, dev_handle, rscnt +
252 (clst * sizeof(fat_cluster_t)) / bps, BLOCK_FLAGS_NONE);
253 assert(rc == EOK);
254 cp = (fat_cluster_t *)b->data + clst % (bps / sizeof(fat_cluster_t));
255 value = uint16_t_le2host(*cp);
256 rc = block_put(b);
257 assert(rc == EOK);
258
259 return value;
260}
261
262/** Set cluster in one instance of FAT.
263 *
264 * @param bs Buffer holding the boot sector for the file system.
265 * @param dev_handle Device handle for the file system.
266 * @param fatno Number of the FAT instance where to make the change.
267 * @param clst Cluster which is to be set.
268 * @param value Value to set the cluster with.
269 */
270void
271fat_set_cluster(fat_bs_t *bs, dev_handle_t dev_handle, unsigned fatno,
272 fat_cluster_t clst, fat_cluster_t value)
273{
274 block_t *b;
275 uint16_t bps;
276 uint16_t rscnt;
277 uint16_t sf;
278 fat_cluster_t *cp;
279 int rc;
280
281 bps = uint16_t_le2host(bs->bps);
282 rscnt = uint16_t_le2host(bs->rscnt);
283 sf = uint16_t_le2host(bs->sec_per_fat);
284
285 assert(fatno < bs->fatcnt);
286 rc = block_get(&b, dev_handle, rscnt + sf * fatno +
287 (clst * sizeof(fat_cluster_t)) / bps, BLOCK_FLAGS_NONE);
288 assert(rc == EOK);
289 cp = (fat_cluster_t *)b->data + clst % (bps / sizeof(fat_cluster_t));
290 *cp = host2uint16_t_le(value);
291 b->dirty = true; /* need to sync block */
292 rc = block_put(b);
293 assert(rc == EOK);
294}
295
296/** Replay the allocatoin of clusters in all shadow instances of FAT.
297 *
298 * @param bs Buffer holding the boot sector of the file system.
299 * @param dev_handle Device handle of the file system.
300 * @param lifo Chain of allocated clusters.
301 * @param nclsts Number of clusters in the lifo chain.
302 */
303void fat_alloc_shadow_clusters(fat_bs_t *bs, dev_handle_t dev_handle,
304 fat_cluster_t *lifo, unsigned nclsts)
305{
306 uint8_t fatno;
307 unsigned c;
308
309 for (fatno = FAT1 + 1; fatno < bs->fatcnt; fatno++) {
310 for (c = 0; c < nclsts; c++) {
311 fat_set_cluster(bs, dev_handle, fatno, lifo[c],
312 c == 0 ? FAT_CLST_LAST1 : lifo[c - 1]);
313 }
314 }
315}
316
317/** Allocate clusters in all copies of FAT.
318 *
319 * This function will attempt to allocate the requested number of clusters in
320 * all instances of the FAT. The FAT will be altered so that the allocated
321 * clusters form an independent chain (i.e. a chain which does not belong to any
322 * file yet).
323 *
324 * @param bs Buffer holding the boot sector of the file system.
325 * @param dev_handle Device handle of the file system.
326 * @param nclsts Number of clusters to allocate.
327 * @param mcl Output parameter where the first cluster in the chain
328 * will be returned.
329 * @param lcl Output parameter where the last cluster in the chain
330 * will be returned.
331 *
332 * @return EOK on success, a negative error code otherwise.
333 */
334int
335fat_alloc_clusters(fat_bs_t *bs, dev_handle_t dev_handle, unsigned nclsts,
336 fat_cluster_t *mcl, fat_cluster_t *lcl)
337{
338 uint16_t bps;
339 uint16_t rscnt;
340 uint16_t sf;
341 block_t *blk;
342 fat_cluster_t *lifo; /* stack for storing free cluster numbers */
343 unsigned found = 0; /* top of the free cluster number stack */
344 unsigned b, c, cl;
345 int rc;
346
347 lifo = (fat_cluster_t *) malloc(nclsts * sizeof(fat_cluster_t));
348 if (!lifo)
349 return ENOMEM;
350
351 bps = uint16_t_le2host(bs->bps);
352 rscnt = uint16_t_le2host(bs->rscnt);
353 sf = uint16_t_le2host(bs->sec_per_fat);
354
355 /*
356 * Search FAT1 for unused clusters.
357 */
358 fibril_mutex_lock(&fat_alloc_lock);
359 for (b = 0, cl = 0; b < sf; b++) {
360 rc = block_get(&blk, dev_handle, rscnt + b, BLOCK_FLAGS_NONE);
361 for (c = 0; c < bps / sizeof(fat_cluster_t); c++, cl++) {
362 fat_cluster_t *clst = (fat_cluster_t *)blk->data + c;
363 if (uint16_t_le2host(*clst) == FAT_CLST_RES0) {
364 /*
365 * The cluster is free. Put it into our stack
366 * of found clusters and mark it as non-free.
367 */
368 lifo[found] = cl;
369 *clst = (found == 0) ?
370 host2uint16_t_le(FAT_CLST_LAST1) :
371 host2uint16_t_le(lifo[found - 1]);
372 blk->dirty = true; /* need to sync block */
373 if (++found == nclsts) {
374 /* we are almost done */
375 rc = block_put(blk);
376 assert(rc == EOK);
377 /* update the shadow copies of FAT */
378 fat_alloc_shadow_clusters(bs,
379 dev_handle, lifo, nclsts);
380 *mcl = lifo[found - 1];
381 *lcl = lifo[0];
382 free(lifo);
383 fibril_mutex_unlock(&fat_alloc_lock);
384 return EOK;
385 }
386 }
387 }
388 rc = block_put(blk);
389 assert(rc == EOK);
390 }
391 fibril_mutex_unlock(&fat_alloc_lock);
392
393 /*
394 * We could not find enough clusters. Now we need to free the clusters
395 * we have allocated so far.
396 */
397 while (found--) {
398 fat_set_cluster(bs, dev_handle, FAT1, lifo[found],
399 FAT_CLST_RES0);
400 }
401
402 free(lifo);
403 return ENOSPC;
404}
405
406/** Free clusters forming a cluster chain in all copies of FAT.
407 *
408 * @param bs Buffer hodling the boot sector of the file system.
409 * @param dev_handle Device handle of the file system.
410 * @param firstc First cluster in the chain which is to be freed.
411 */
412void
413fat_free_clusters(fat_bs_t *bs, dev_handle_t dev_handle, fat_cluster_t firstc)
414{
415 unsigned fatno;
416 fat_cluster_t nextc;
417
418 /* Mark all clusters in the chain as free in all copies of FAT. */
419 while (firstc < FAT_CLST_LAST1) {
420 assert(firstc >= FAT_CLST_FIRST && firstc < FAT_CLST_BAD);
421 nextc = fat_get_cluster(bs, dev_handle, firstc);
422 for (fatno = FAT1; fatno < bs->fatcnt; fatno++)
423 fat_set_cluster(bs, dev_handle, fatno, firstc,
424 FAT_CLST_RES0);
425 firstc = nextc;
426 }
427}
428
429/** Append a cluster chain to the last file cluster in all FATs.
430 *
431 * @param bs Buffer holding the boot sector of the file system.
432 * @param nodep Node representing the file.
433 * @param mcl First cluster of the cluster chain to append.
434 */
435void fat_append_clusters(fat_bs_t *bs, fat_node_t *nodep, fat_cluster_t mcl)
436{
437 dev_handle_t dev_handle = nodep->idx->dev_handle;
438 fat_cluster_t lcl;
439 uint16_t numc;
440 uint8_t fatno;
441 int rc;
442
443 rc = fat_cluster_walk(bs, dev_handle, nodep->firstc, &lcl, &numc,
444 (uint16_t) -1);
445 assert(rc == EOK);
446
447 if (numc == 0) {
448 /* No clusters allocated to the node yet. */
449 nodep->firstc = mcl;
450 nodep->dirty = true; /* need to sync node */
451 return;
452 }
453
454 for (fatno = FAT1; fatno < bs->fatcnt; fatno++)
455 fat_set_cluster(bs, nodep->idx->dev_handle, fatno, lcl, mcl);
456}
457
458/** Chop off node clusters in all copies of FAT.
459 *
460 * @param bs Buffer holding the boot sector of the file system.
461 * @param nodep FAT node where the chopping will take place.
462 * @param lastc Last cluster which will remain in the node. If this
463 * argument is FAT_CLST_RES0, then all clusters will
464 * be chopped off.
465 */
466void fat_chop_clusters(fat_bs_t *bs, fat_node_t *nodep, fat_cluster_t lastc)
467{
468 dev_handle_t dev_handle = nodep->idx->dev_handle;
469 if (lastc == FAT_CLST_RES0) {
470 /* The node will have zero size and no clusters allocated. */
471 fat_free_clusters(bs, dev_handle, nodep->firstc);
472 nodep->firstc = FAT_CLST_RES0;
473 nodep->dirty = true; /* need to sync node */
474 } else {
475 fat_cluster_t nextc;
476 unsigned fatno;
477
478 nextc = fat_get_cluster(bs, dev_handle, lastc);
479
480 /* Terminate the cluster chain in all copies of FAT. */
481 for (fatno = FAT1; fatno < bs->fatcnt; fatno++)
482 fat_set_cluster(bs, dev_handle, fatno, lastc, FAT_CLST_LAST1);
483
484 /* Free all following clusters. */
485 fat_free_clusters(bs, dev_handle, nextc);
486 }
487}
488
489void
490fat_zero_cluster(struct fat_bs *bs, dev_handle_t dev_handle, fat_cluster_t c)
491{
492 int i;
493 block_t *b;
494 unsigned bps;
495 int rc;
496
497 bps = uint16_t_le2host(bs->bps);
498
499 for (i = 0; i < bs->spc; i++) {
500 rc = _fat_block_get(&b, bs, dev_handle, c, i,
501 BLOCK_FLAGS_NOREAD);
502 assert(rc == EOK);
503 memset(b->data, 0, bps);
504 b->dirty = true;
505 rc = block_put(b);
506 assert(rc == EOK);
507 }
508}
509
510/**
511 * @}
512 */
Note: See TracBrowser for help on using the repository browser.