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 | */
|
---|
56 | static 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 | */
|
---|
71 | int
|
---|
72 | fat_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 | */
|
---|
135 | int
|
---|
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 | *
|
---|
190 | * @return EOK on success or a negative error code.
|
---|
191 | */
|
---|
192 | int fat_fill_gap(fat_bs_t *bs, fat_node_t *nodep, fat_cluster_t mcl, off_t pos)
|
---|
193 | {
|
---|
194 | uint16_t bps;
|
---|
195 | unsigned spc;
|
---|
196 | block_t *b;
|
---|
197 | off_t o, boundary;
|
---|
198 | int rc;
|
---|
199 |
|
---|
200 | bps = uint16_t_le2host(bs->bps);
|
---|
201 | spc = bs->spc;
|
---|
202 |
|
---|
203 | boundary = ROUND_UP(nodep->size, bps * spc);
|
---|
204 |
|
---|
205 | /* zero out already allocated space */
|
---|
206 | for (o = nodep->size; o < pos && o < boundary;
|
---|
207 | o = ALIGN_DOWN(o + bps, bps)) {
|
---|
208 | int flags = (o % bps == 0) ?
|
---|
209 | BLOCK_FLAGS_NOREAD : BLOCK_FLAGS_NONE;
|
---|
210 | rc = fat_block_get(&b, bs, nodep, o / bps, flags);
|
---|
211 | if (rc != EOK)
|
---|
212 | return rc;
|
---|
213 | memset(b->data + o % bps, 0, bps - o % bps);
|
---|
214 | b->dirty = true; /* need to sync node */
|
---|
215 | rc = block_put(b);
|
---|
216 | if (rc != EOK)
|
---|
217 | return rc;
|
---|
218 | }
|
---|
219 |
|
---|
220 | if (o >= pos)
|
---|
221 | return EOK;
|
---|
222 |
|
---|
223 | /* zero out the initial part of the new cluster chain */
|
---|
224 | for (o = boundary; o < pos; o += bps) {
|
---|
225 | rc = _fat_block_get(&b, bs, nodep->idx->dev_handle, mcl,
|
---|
226 | (o - boundary) / bps, BLOCK_FLAGS_NOREAD);
|
---|
227 | if (rc != EOK)
|
---|
228 | return rc;
|
---|
229 | memset(b->data, 0, min(bps, pos - o));
|
---|
230 | b->dirty = true; /* need to sync node */
|
---|
231 | rc = block_put(b);
|
---|
232 | if (rc != EOK)
|
---|
233 | return rc;
|
---|
234 | }
|
---|
235 |
|
---|
236 | return EOK;
|
---|
237 | }
|
---|
238 |
|
---|
239 | /** Get cluster from the first FAT.
|
---|
240 | *
|
---|
241 | * @param bs Buffer holding the boot sector for the file system.
|
---|
242 | * @param dev_handle Device handle for the file system.
|
---|
243 | * @param clst Cluster which to get.
|
---|
244 | * @param value Output argument holding the value of the cluster.
|
---|
245 | *
|
---|
246 | * @return EOK or a negative error code.
|
---|
247 | */
|
---|
248 | int
|
---|
249 | fat_get_cluster(fat_bs_t *bs, dev_handle_t dev_handle, fat_cluster_t clst,
|
---|
250 | fat_cluster_t *value)
|
---|
251 | {
|
---|
252 | block_t *b;
|
---|
253 | uint16_t bps;
|
---|
254 | uint16_t rscnt;
|
---|
255 | fat_cluster_t *cp;
|
---|
256 | int rc;
|
---|
257 |
|
---|
258 | bps = uint16_t_le2host(bs->bps);
|
---|
259 | rscnt = uint16_t_le2host(bs->rscnt);
|
---|
260 |
|
---|
261 | rc = block_get(&b, dev_handle, rscnt +
|
---|
262 | (clst * sizeof(fat_cluster_t)) / bps, BLOCK_FLAGS_NONE);
|
---|
263 | if (rc != EOK)
|
---|
264 | return rc;
|
---|
265 | cp = (fat_cluster_t *)b->data + clst % (bps / sizeof(fat_cluster_t));
|
---|
266 | *value = uint16_t_le2host(*cp);
|
---|
267 | rc = block_put(b);
|
---|
268 |
|
---|
269 | return rc;
|
---|
270 | }
|
---|
271 |
|
---|
272 | /** Set cluster in one instance of FAT.
|
---|
273 | *
|
---|
274 | * @param bs Buffer holding the boot sector for the file system.
|
---|
275 | * @param dev_handle Device handle for the file system.
|
---|
276 | * @param fatno Number of the FAT instance where to make the change.
|
---|
277 | * @param clst Cluster which is to be set.
|
---|
278 | * @param value Value to set the cluster with.
|
---|
279 | *
|
---|
280 | * @return EOK on success or a negative error code.
|
---|
281 | */
|
---|
282 | int
|
---|
283 | fat_set_cluster(fat_bs_t *bs, dev_handle_t dev_handle, unsigned fatno,
|
---|
284 | fat_cluster_t clst, fat_cluster_t value)
|
---|
285 | {
|
---|
286 | block_t *b;
|
---|
287 | uint16_t bps;
|
---|
288 | uint16_t rscnt;
|
---|
289 | uint16_t sf;
|
---|
290 | fat_cluster_t *cp;
|
---|
291 | int rc;
|
---|
292 |
|
---|
293 | bps = uint16_t_le2host(bs->bps);
|
---|
294 | rscnt = uint16_t_le2host(bs->rscnt);
|
---|
295 | sf = uint16_t_le2host(bs->sec_per_fat);
|
---|
296 |
|
---|
297 | assert(fatno < bs->fatcnt);
|
---|
298 | rc = block_get(&b, dev_handle, rscnt + sf * fatno +
|
---|
299 | (clst * sizeof(fat_cluster_t)) / bps, BLOCK_FLAGS_NONE);
|
---|
300 | if (rc != EOK)
|
---|
301 | return rc;
|
---|
302 | cp = (fat_cluster_t *)b->data + clst % (bps / sizeof(fat_cluster_t));
|
---|
303 | *cp = host2uint16_t_le(value);
|
---|
304 | b->dirty = true; /* need to sync block */
|
---|
305 | rc = block_put(b);
|
---|
306 | return rc;
|
---|
307 | }
|
---|
308 |
|
---|
309 | /** Replay the allocatoin of clusters in all shadow instances of FAT.
|
---|
310 | *
|
---|
311 | * @param bs Buffer holding the boot sector of the file system.
|
---|
312 | * @param dev_handle Device handle of the file system.
|
---|
313 | * @param lifo Chain of allocated clusters.
|
---|
314 | * @param nclsts Number of clusters in the lifo chain.
|
---|
315 | *
|
---|
316 | * @return EOK on success or a negative error code.
|
---|
317 | */
|
---|
318 | int fat_alloc_shadow_clusters(fat_bs_t *bs, dev_handle_t dev_handle,
|
---|
319 | fat_cluster_t *lifo, unsigned nclsts)
|
---|
320 | {
|
---|
321 | uint8_t fatno;
|
---|
322 | unsigned c;
|
---|
323 | int rc;
|
---|
324 |
|
---|
325 | for (fatno = FAT1 + 1; fatno < bs->fatcnt; fatno++) {
|
---|
326 | for (c = 0; c < nclsts; c++) {
|
---|
327 | rc = fat_set_cluster(bs, dev_handle, fatno, lifo[c],
|
---|
328 | c == 0 ? FAT_CLST_LAST1 : lifo[c - 1]);
|
---|
329 | if (rc != EOK)
|
---|
330 | return rc;
|
---|
331 | }
|
---|
332 | }
|
---|
333 |
|
---|
334 | return EOK;
|
---|
335 | }
|
---|
336 |
|
---|
337 | /** Allocate clusters in all copies of FAT.
|
---|
338 | *
|
---|
339 | * This function will attempt to allocate the requested number of clusters in
|
---|
340 | * all instances of the FAT. The FAT will be altered so that the allocated
|
---|
341 | * clusters form an independent chain (i.e. a chain which does not belong to any
|
---|
342 | * file yet).
|
---|
343 | *
|
---|
344 | * @param bs Buffer holding the boot sector of the file system.
|
---|
345 | * @param dev_handle Device handle of the file system.
|
---|
346 | * @param nclsts Number of clusters to allocate.
|
---|
347 | * @param mcl Output parameter where the first cluster in the chain
|
---|
348 | * will be returned.
|
---|
349 | * @param lcl Output parameter where the last cluster in the chain
|
---|
350 | * will be returned.
|
---|
351 | *
|
---|
352 | * @return EOK on success, a negative error code otherwise.
|
---|
353 | */
|
---|
354 | int
|
---|
355 | fat_alloc_clusters(fat_bs_t *bs, dev_handle_t dev_handle, unsigned nclsts,
|
---|
356 | fat_cluster_t *mcl, fat_cluster_t *lcl)
|
---|
357 | {
|
---|
358 | uint16_t bps;
|
---|
359 | uint16_t rscnt;
|
---|
360 | uint16_t sf;
|
---|
361 | uint16_t ts;
|
---|
362 | unsigned rde;
|
---|
363 | unsigned rds;
|
---|
364 | unsigned ssa;
|
---|
365 | block_t *blk;
|
---|
366 | fat_cluster_t *lifo; /* stack for storing free cluster numbers */
|
---|
367 | unsigned found = 0; /* top of the free cluster number stack */
|
---|
368 | unsigned b, c, cl;
|
---|
369 | int rc;
|
---|
370 |
|
---|
371 | lifo = (fat_cluster_t *) malloc(nclsts * sizeof(fat_cluster_t));
|
---|
372 | if (!lifo)
|
---|
373 | return ENOMEM;
|
---|
374 |
|
---|
375 | bps = uint16_t_le2host(bs->bps);
|
---|
376 | rscnt = uint16_t_le2host(bs->rscnt);
|
---|
377 | sf = uint16_t_le2host(bs->sec_per_fat);
|
---|
378 | rde = uint16_t_le2host(bs->root_ent_max);
|
---|
379 | ts = uint16_t_le2host(bs->totsec16);
|
---|
380 |
|
---|
381 | rds = (sizeof(fat_dentry_t) * rde) / bps;
|
---|
382 | rds += ((sizeof(fat_dentry_t) * rde) % bps != 0);
|
---|
383 | ssa = rscnt + bs->fatcnt * sf + rds;
|
---|
384 |
|
---|
385 | /*
|
---|
386 | * Search FAT1 for unused clusters.
|
---|
387 | */
|
---|
388 | fibril_mutex_lock(&fat_alloc_lock);
|
---|
389 | for (b = 0, cl = 0; b < sf; b++) {
|
---|
390 | rc = block_get(&blk, dev_handle, rscnt + b, BLOCK_FLAGS_NONE);
|
---|
391 | if (rc != EOK)
|
---|
392 | goto error;
|
---|
393 | for (c = 0; c < bps / sizeof(fat_cluster_t); c++, cl++) {
|
---|
394 | /*
|
---|
395 | * Check if the cluster is physically there. This check
|
---|
396 | * becomes necessary when the file system is created
|
---|
397 | * with fewer total sectors than how many is inferred
|
---|
398 | * from the size of the file allocation table.
|
---|
399 | */
|
---|
400 | if ((cl - 2) * bs->spc + ssa >= ts) {
|
---|
401 | rc = block_put(blk);
|
---|
402 | if (rc != EOK)
|
---|
403 | goto error;
|
---|
404 | goto out;
|
---|
405 | }
|
---|
406 |
|
---|
407 | fat_cluster_t *clst = (fat_cluster_t *)blk->data + c;
|
---|
408 | if (uint16_t_le2host(*clst) == FAT_CLST_RES0) {
|
---|
409 | /*
|
---|
410 | * The cluster is free. Put it into our stack
|
---|
411 | * of found clusters and mark it as non-free.
|
---|
412 | */
|
---|
413 | lifo[found] = cl;
|
---|
414 | *clst = (found == 0) ?
|
---|
415 | host2uint16_t_le(FAT_CLST_LAST1) :
|
---|
416 | host2uint16_t_le(lifo[found - 1]);
|
---|
417 | blk->dirty = true; /* need to sync block */
|
---|
418 | if (++found == nclsts) {
|
---|
419 | /* we are almost done */
|
---|
420 | rc = block_put(blk);
|
---|
421 | if (rc != EOK)
|
---|
422 | goto error;
|
---|
423 | /* update the shadow copies of FAT */
|
---|
424 | rc = fat_alloc_shadow_clusters(bs,
|
---|
425 | dev_handle, lifo, nclsts);
|
---|
426 | if (rc != EOK)
|
---|
427 | goto error;
|
---|
428 | *mcl = lifo[found - 1];
|
---|
429 | *lcl = lifo[0];
|
---|
430 | free(lifo);
|
---|
431 | fibril_mutex_unlock(&fat_alloc_lock);
|
---|
432 | return EOK;
|
---|
433 | }
|
---|
434 | }
|
---|
435 | }
|
---|
436 | rc = block_put(blk);
|
---|
437 | if (rc != EOK) {
|
---|
438 | error:
|
---|
439 | fibril_mutex_unlock(&fat_alloc_lock);
|
---|
440 | free(lifo);
|
---|
441 | return rc;
|
---|
442 | }
|
---|
443 | }
|
---|
444 | out:
|
---|
445 | fibril_mutex_unlock(&fat_alloc_lock);
|
---|
446 |
|
---|
447 | /*
|
---|
448 | * We could not find enough clusters. Now we need to free the clusters
|
---|
449 | * we have allocated so far.
|
---|
450 | */
|
---|
451 | while (found--) {
|
---|
452 | rc = fat_set_cluster(bs, dev_handle, FAT1, lifo[found],
|
---|
453 | FAT_CLST_RES0);
|
---|
454 | if (rc != EOK) {
|
---|
455 | free(lifo);
|
---|
456 | return rc;
|
---|
457 | }
|
---|
458 | }
|
---|
459 |
|
---|
460 | free(lifo);
|
---|
461 | return ENOSPC;
|
---|
462 | }
|
---|
463 |
|
---|
464 | /** Free clusters forming a cluster chain in all copies of FAT.
|
---|
465 | *
|
---|
466 | * @param bs Buffer hodling the boot sector of the file system.
|
---|
467 | * @param dev_handle Device handle of the file system.
|
---|
468 | * @param firstc First cluster in the chain which is to be freed.
|
---|
469 | *
|
---|
470 | * @return EOK on success or a negative return code.
|
---|
471 | */
|
---|
472 | int
|
---|
473 | fat_free_clusters(fat_bs_t *bs, dev_handle_t dev_handle, fat_cluster_t firstc)
|
---|
474 | {
|
---|
475 | unsigned fatno;
|
---|
476 | fat_cluster_t nextc;
|
---|
477 | int rc;
|
---|
478 |
|
---|
479 | /* Mark all clusters in the chain as free in all copies of FAT. */
|
---|
480 | while (firstc < FAT_CLST_LAST1) {
|
---|
481 | assert(firstc >= FAT_CLST_FIRST && firstc < FAT_CLST_BAD);
|
---|
482 | rc = fat_get_cluster(bs, dev_handle, firstc, &nextc);
|
---|
483 | if (rc != EOK)
|
---|
484 | return rc;
|
---|
485 | for (fatno = FAT1; fatno < bs->fatcnt; fatno++) {
|
---|
486 | rc = fat_set_cluster(bs, dev_handle, fatno, firstc,
|
---|
487 | FAT_CLST_RES0);
|
---|
488 | if (rc != EOK)
|
---|
489 | return rc;
|
---|
490 | }
|
---|
491 |
|
---|
492 | firstc = nextc;
|
---|
493 | }
|
---|
494 |
|
---|
495 | return EOK;
|
---|
496 | }
|
---|
497 |
|
---|
498 | /** Append a cluster chain to the last file cluster in all FATs.
|
---|
499 | *
|
---|
500 | * @param bs Buffer holding the boot sector of the file system.
|
---|
501 | * @param nodep Node representing the file.
|
---|
502 | * @param mcl First cluster of the cluster chain to append.
|
---|
503 | *
|
---|
504 | * @return EOK on success or a negative error code.
|
---|
505 | */
|
---|
506 | int fat_append_clusters(fat_bs_t *bs, fat_node_t *nodep, fat_cluster_t mcl)
|
---|
507 | {
|
---|
508 | dev_handle_t dev_handle = nodep->idx->dev_handle;
|
---|
509 | fat_cluster_t lcl;
|
---|
510 | uint16_t numc;
|
---|
511 | uint8_t fatno;
|
---|
512 | int rc;
|
---|
513 |
|
---|
514 | rc = fat_cluster_walk(bs, dev_handle, nodep->firstc, &lcl, &numc,
|
---|
515 | (uint16_t) -1);
|
---|
516 | if (rc != EOK)
|
---|
517 | return rc;
|
---|
518 |
|
---|
519 | if (numc == 0) {
|
---|
520 | /* No clusters allocated to the node yet. */
|
---|
521 | nodep->firstc = mcl;
|
---|
522 | nodep->dirty = true; /* need to sync node */
|
---|
523 | return EOK;
|
---|
524 | }
|
---|
525 |
|
---|
526 | for (fatno = FAT1; fatno < bs->fatcnt; fatno++) {
|
---|
527 | rc = fat_set_cluster(bs, nodep->idx->dev_handle, fatno, lcl,
|
---|
528 | mcl);
|
---|
529 | if (rc != EOK)
|
---|
530 | return rc;
|
---|
531 | }
|
---|
532 |
|
---|
533 | return EOK;
|
---|
534 | }
|
---|
535 |
|
---|
536 | /** Chop off node clusters in all copies of FAT.
|
---|
537 | *
|
---|
538 | * @param bs Buffer holding the boot sector of the file system.
|
---|
539 | * @param nodep FAT node where the chopping will take place.
|
---|
540 | * @param lastc Last cluster which will remain in the node. If this
|
---|
541 | * argument is FAT_CLST_RES0, then all clusters will
|
---|
542 | * be chopped off.
|
---|
543 | *
|
---|
544 | * @return EOK on success or a negative return code.
|
---|
545 | */
|
---|
546 | int fat_chop_clusters(fat_bs_t *bs, fat_node_t *nodep, fat_cluster_t lastc)
|
---|
547 | {
|
---|
548 | int rc;
|
---|
549 |
|
---|
550 | dev_handle_t dev_handle = nodep->idx->dev_handle;
|
---|
551 | if (lastc == FAT_CLST_RES0) {
|
---|
552 | /* The node will have zero size and no clusters allocated. */
|
---|
553 | rc = fat_free_clusters(bs, dev_handle, nodep->firstc);
|
---|
554 | if (rc != EOK)
|
---|
555 | return rc;
|
---|
556 | nodep->firstc = FAT_CLST_RES0;
|
---|
557 | nodep->dirty = true; /* need to sync node */
|
---|
558 | } else {
|
---|
559 | fat_cluster_t nextc;
|
---|
560 | unsigned fatno;
|
---|
561 |
|
---|
562 | rc = fat_get_cluster(bs, dev_handle, lastc, &nextc);
|
---|
563 | if (rc != EOK)
|
---|
564 | return rc;
|
---|
565 |
|
---|
566 | /* Terminate the cluster chain in all copies of FAT. */
|
---|
567 | for (fatno = FAT1; fatno < bs->fatcnt; fatno++) {
|
---|
568 | rc = fat_set_cluster(bs, dev_handle, fatno, lastc,
|
---|
569 | FAT_CLST_LAST1);
|
---|
570 | if (rc != EOK)
|
---|
571 | return rc;
|
---|
572 | }
|
---|
573 |
|
---|
574 | /* Free all following clusters. */
|
---|
575 | rc = fat_free_clusters(bs, dev_handle, nextc);
|
---|
576 | if (rc != EOK)
|
---|
577 | return rc;
|
---|
578 | }
|
---|
579 |
|
---|
580 | return EOK;
|
---|
581 | }
|
---|
582 |
|
---|
583 | int
|
---|
584 | fat_zero_cluster(struct fat_bs *bs, dev_handle_t dev_handle, fat_cluster_t c)
|
---|
585 | {
|
---|
586 | int i;
|
---|
587 | block_t *b;
|
---|
588 | unsigned bps;
|
---|
589 | int rc;
|
---|
590 |
|
---|
591 | bps = uint16_t_le2host(bs->bps);
|
---|
592 |
|
---|
593 | for (i = 0; i < bs->spc; i++) {
|
---|
594 | rc = _fat_block_get(&b, bs, dev_handle, c, i,
|
---|
595 | BLOCK_FLAGS_NOREAD);
|
---|
596 | if (rc != EOK)
|
---|
597 | return rc;
|
---|
598 | memset(b->data, 0, bps);
|
---|
599 | b->dirty = true;
|
---|
600 | rc = block_put(b);
|
---|
601 | if (rc != EOK)
|
---|
602 | return rc;
|
---|
603 | }
|
---|
604 |
|
---|
605 | return EOK;
|
---|
606 | }
|
---|
607 |
|
---|
608 | /**
|
---|
609 | * @}
|
---|
610 | */
|
---|