[6ebaff9] | 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
|
---|
[0ec862d] | 35 | * @brief Functions that manipulate the File Allocation Tables.
|
---|
[6ebaff9] | 36 | */
|
---|
| 37 |
|
---|
[0f57d0e] | 38 | #include "fat_fat.h"
|
---|
| 39 | #include "fat_dentry.h"
|
---|
| 40 | #include "fat.h"
|
---|
| 41 | #include "../../vfs/vfs.h"
|
---|
| 42 | #include <libfs.h>
|
---|
[fc840d9] | 43 | #include <libblock.h>
|
---|
[0f57d0e] | 44 | #include <errno.h>
|
---|
| 45 | #include <byteorder.h>
|
---|
| 46 | #include <align.h>
|
---|
| 47 | #include <assert.h>
|
---|
[1e4cada] | 48 | #include <fibril_synch.h>
|
---|
[c20aa06] | 49 | #include <mem.h>
|
---|
[0ec862d] | 50 |
|
---|
| 51 | /**
|
---|
[6ebe721] | 52 | * The fat_alloc_lock mutex protects all copies of the File Allocation Table
|
---|
[0ec862d] | 53 | * during allocation of clusters. The lock does not have to be held durring
|
---|
| 54 | * deallocation of clusters.
|
---|
| 55 | */
|
---|
[6ebe721] | 56 | static FIBRIL_MUTEX_INITIALIZE(fat_alloc_lock);
|
---|
[0f57d0e] | 57 |
|
---|
[4f1c0b4] | 58 | /** Walk the cluster chain.
|
---|
[9f95a80] | 59 | *
|
---|
[4f1c0b4] | 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.
|
---|
[e402382] | 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.
|
---|
[4f1c0b4] | 67 | * @param max_clusters Maximum number of clusters to visit.
|
---|
[9f95a80] | 68 | *
|
---|
[e402382] | 69 | * @return EOK on success or a negative error code.
|
---|
[9f95a80] | 70 | */
|
---|
[e402382] | 71 | int
|
---|
[4f1c0b4] | 72 | fat_cluster_walk(fat_bs_t *bs, dev_handle_t dev_handle, fat_cluster_t firstc,
|
---|
[e402382] | 73 | fat_cluster_t *lastc, uint16_t *numc, uint16_t max_clusters)
|
---|
[0f57d0e] | 74 | {
|
---|
| 75 | block_t *b;
|
---|
| 76 | unsigned bps;
|
---|
| 77 | unsigned rscnt; /* block address of the first FAT */
|
---|
[4f1c0b4] | 78 | uint16_t clusters = 0;
|
---|
[0f57d0e] | 79 | fat_cluster_t clst = firstc;
|
---|
[c91f2d1b] | 80 | int rc;
|
---|
[0f57d0e] | 81 |
|
---|
[cb682eb] | 82 | bps = uint16_t_le2host(bs->bps);
|
---|
| 83 | rscnt = uint16_t_le2host(bs->rscnt);
|
---|
[0f57d0e] | 84 |
|
---|
[4f1c0b4] | 85 | if (firstc == FAT_CLST_RES0) {
|
---|
| 86 | /* No space allocated to the file. */
|
---|
[6c8d267] | 87 | if (lastc)
|
---|
| 88 | *lastc = firstc;
|
---|
[e402382] | 89 | if (numc)
|
---|
| 90 | *numc = 0;
|
---|
| 91 | return EOK;
|
---|
[0f57d0e] | 92 | }
|
---|
| 93 |
|
---|
[4f1c0b4] | 94 | while (clst < FAT_CLST_LAST1 && clusters < max_clusters) {
|
---|
[6c8d267] | 95 | bn_t fsec; /* sector offset relative to FAT1 */
|
---|
[0f57d0e] | 96 | unsigned fidx; /* FAT1 entry index */
|
---|
| 97 |
|
---|
[4f1c0b4] | 98 | assert(clst >= FAT_CLST_FIRST);
|
---|
[6c8d267] | 99 | if (lastc)
|
---|
| 100 | *lastc = clst; /* remember the last cluster number */
|
---|
[0f57d0e] | 101 | fsec = (clst * sizeof(fat_cluster_t)) / bps;
|
---|
| 102 | fidx = clst % (bps / sizeof(fat_cluster_t));
|
---|
| 103 | /* read FAT1 */
|
---|
[c91f2d1b] | 104 | rc = block_get(&b, dev_handle, rscnt + fsec, BLOCK_FLAGS_NONE);
|
---|
[e402382] | 105 | if (rc != EOK)
|
---|
| 106 | return rc;
|
---|
[0f57d0e] | 107 | clst = uint16_t_le2host(((fat_cluster_t *)b->data)[fidx]);
|
---|
| 108 | assert(clst != FAT_CLST_BAD);
|
---|
[c91f2d1b] | 109 | rc = block_put(b);
|
---|
[e402382] | 110 | if (rc != EOK)
|
---|
| 111 | return rc;
|
---|
[4f1c0b4] | 112 | clusters++;
|
---|
[0f57d0e] | 113 | }
|
---|
| 114 |
|
---|
[6c8d267] | 115 | if (lastc && clst < FAT_CLST_LAST1)
|
---|
| 116 | *lastc = clst;
|
---|
[e402382] | 117 | if (numc)
|
---|
| 118 | *numc = clusters;
|
---|
[0f57d0e] | 119 |
|
---|
[e402382] | 120 | return EOK;
|
---|
[0f57d0e] | 121 | }
|
---|
| 122 |
|
---|
[4f1c0b4] | 123 | /** Read block from file located on a FAT file system.
|
---|
[0f57d0e] | 124 | *
|
---|
[684b655] | 125 | * @param block Pointer to a block pointer for storing result.
|
---|
[4f1c0b4] | 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.
|
---|
[6c8d267] | 130 | * @param bn Block number.
|
---|
[1d8cdb1] | 131 | * @param flags Flags passed to libblock.
|
---|
[0f57d0e] | 132 | *
|
---|
[684b655] | 133 | * @return EOK on success or a negative error code.
|
---|
[0f57d0e] | 134 | */
|
---|
[684b655] | 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)
|
---|
[0f57d0e] | 138 | {
|
---|
| 139 | unsigned bps;
|
---|
| 140 | unsigned rscnt; /* block address of the first FAT */
|
---|
[4f1c0b4] | 141 | unsigned rde;
|
---|
| 142 | unsigned rds; /* root directory size */
|
---|
| 143 | unsigned sf;
|
---|
| 144 | unsigned ssa; /* size of the system area */
|
---|
[e402382] | 145 | uint16_t clusters;
|
---|
| 146 | unsigned max_clusters;
|
---|
[913a821c] | 147 | fat_cluster_t lastc;
|
---|
[c91f2d1b] | 148 | int rc;
|
---|
[0f57d0e] | 149 |
|
---|
[cb682eb] | 150 | bps = uint16_t_le2host(bs->bps);
|
---|
| 151 | rscnt = uint16_t_le2host(bs->rscnt);
|
---|
[4f1c0b4] | 152 | rde = uint16_t_le2host(bs->root_ent_max);
|
---|
| 153 | sf = uint16_t_le2host(bs->sec_per_fat);
|
---|
[0f57d0e] | 154 |
|
---|
[4f1c0b4] | 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 */
|
---|
[6c8d267] | 161 | assert(bn < rds);
|
---|
[684b655] | 162 | rc = block_get(block, dev_handle, rscnt + bs->fatcnt * sf + bn,
|
---|
[c91f2d1b] | 163 | flags);
|
---|
[684b655] | 164 | return rc;
|
---|
[0f57d0e] | 165 | }
|
---|
| 166 |
|
---|
[6c8d267] | 167 | max_clusters = bn / bs->spc;
|
---|
[e402382] | 168 | rc = fat_cluster_walk(bs, dev_handle, firstc, &lastc, &clusters,
|
---|
[4f1c0b4] | 169 | max_clusters);
|
---|
[e402382] | 170 | if (rc != EOK)
|
---|
| 171 | return rc;
|
---|
[4f1c0b4] | 172 | assert(clusters == max_clusters);
|
---|
[0f57d0e] | 173 |
|
---|
[684b655] | 174 | rc = block_get(block, dev_handle,
|
---|
| 175 | ssa + (lastc - FAT_CLST_FIRST) * bs->spc + bn % bs->spc, flags);
|
---|
[0f57d0e] | 176 |
|
---|
[684b655] | 177 | return rc;
|
---|
[0f57d0e] | 178 | }
|
---|
| 179 |
|
---|
| 180 | /** Fill the gap between EOF and a new file position.
|
---|
| 181 | *
|
---|
[cb682eb] | 182 | * @param bs Buffer holding the boot sector for nodep.
|
---|
[0f57d0e] | 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.
|
---|
[cca29e3c] | 189 | *
|
---|
| 190 | * @return EOK on success or a negative error code.
|
---|
[0f57d0e] | 191 | */
|
---|
[cca29e3c] | 192 | int fat_fill_gap(fat_bs_t *bs, fat_node_t *nodep, fat_cluster_t mcl, off_t pos)
|
---|
[0f57d0e] | 193 | {
|
---|
| 194 | uint16_t bps;
|
---|
| 195 | unsigned spc;
|
---|
[cb682eb] | 196 | block_t *b;
|
---|
[0f57d0e] | 197 | off_t o, boundary;
|
---|
[c91f2d1b] | 198 | int rc;
|
---|
[0f57d0e] | 199 |
|
---|
[cb682eb] | 200 | bps = uint16_t_le2host(bs->bps);
|
---|
| 201 | spc = bs->spc;
|
---|
[0f57d0e] | 202 |
|
---|
| 203 | boundary = ROUND_UP(nodep->size, bps * spc);
|
---|
| 204 |
|
---|
| 205 | /* zero out already allocated space */
|
---|
[abd36f7] | 206 | for (o = nodep->size; o < pos && o < boundary;
|
---|
[0f57d0e] | 207 | o = ALIGN_DOWN(o + bps, bps)) {
|
---|
[1d8cdb1] | 208 | int flags = (o % bps == 0) ?
|
---|
| 209 | BLOCK_FLAGS_NOREAD : BLOCK_FLAGS_NONE;
|
---|
[684b655] | 210 | rc = fat_block_get(&b, bs, nodep, o / bps, flags);
|
---|
[cca29e3c] | 211 | if (rc != EOK)
|
---|
| 212 | return rc;
|
---|
[0f57d0e] | 213 | memset(b->data + o % bps, 0, bps - o % bps);
|
---|
| 214 | b->dirty = true; /* need to sync node */
|
---|
[c91f2d1b] | 215 | rc = block_put(b);
|
---|
[cca29e3c] | 216 | if (rc != EOK)
|
---|
| 217 | return rc;
|
---|
[0f57d0e] | 218 | }
|
---|
| 219 |
|
---|
| 220 | if (o >= pos)
|
---|
[cca29e3c] | 221 | return EOK;
|
---|
[0f57d0e] | 222 |
|
---|
| 223 | /* zero out the initial part of the new cluster chain */
|
---|
| 224 | for (o = boundary; o < pos; o += bps) {
|
---|
[684b655] | 225 | rc = _fat_block_get(&b, bs, nodep->idx->dev_handle, mcl,
|
---|
[1d8cdb1] | 226 | (o - boundary) / bps, BLOCK_FLAGS_NOREAD);
|
---|
[cca29e3c] | 227 | if (rc != EOK)
|
---|
| 228 | return rc;
|
---|
[0f57d0e] | 229 | memset(b->data, 0, min(bps, pos - o));
|
---|
| 230 | b->dirty = true; /* need to sync node */
|
---|
[c91f2d1b] | 231 | rc = block_put(b);
|
---|
[cca29e3c] | 232 | if (rc != EOK)
|
---|
| 233 | return rc;
|
---|
[0f57d0e] | 234 | }
|
---|
[cca29e3c] | 235 |
|
---|
| 236 | return EOK;
|
---|
[0f57d0e] | 237 | }
|
---|
| 238 |
|
---|
[913a821c] | 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.
|
---|
[dc87ad11] | 244 | * @param value Output argument holding the value of the cluster.
|
---|
[913a821c] | 245 | *
|
---|
[dc87ad11] | 246 | * @return EOK or a negative error code.
|
---|
[913a821c] | 247 | */
|
---|
[dc87ad11] | 248 | int
|
---|
[711e1f32] | 249 | fat_get_cluster(fat_bs_t *bs, dev_handle_t dev_handle, unsigned fatno,
|
---|
| 250 | fat_cluster_t clst, fat_cluster_t *value)
|
---|
[913a821c] | 251 | {
|
---|
| 252 | block_t *b;
|
---|
| 253 | uint16_t bps;
|
---|
| 254 | uint16_t rscnt;
|
---|
[711e1f32] | 255 | uint16_t sf;
|
---|
[dc87ad11] | 256 | fat_cluster_t *cp;
|
---|
[c91f2d1b] | 257 | int rc;
|
---|
[913a821c] | 258 |
|
---|
| 259 | bps = uint16_t_le2host(bs->bps);
|
---|
| 260 | rscnt = uint16_t_le2host(bs->rscnt);
|
---|
[711e1f32] | 261 | sf = uint16_t_le2host(bs->sec_per_fat);
|
---|
[913a821c] | 262 |
|
---|
[711e1f32] | 263 | rc = block_get(&b, dev_handle, rscnt + sf * fatno +
|
---|
[c91f2d1b] | 264 | (clst * sizeof(fat_cluster_t)) / bps, BLOCK_FLAGS_NONE);
|
---|
[dc87ad11] | 265 | if (rc != EOK)
|
---|
| 266 | return rc;
|
---|
[913a821c] | 267 | cp = (fat_cluster_t *)b->data + clst % (bps / sizeof(fat_cluster_t));
|
---|
[dc87ad11] | 268 | *value = uint16_t_le2host(*cp);
|
---|
[c91f2d1b] | 269 | rc = block_put(b);
|
---|
[913a821c] | 270 |
|
---|
[dc87ad11] | 271 | return rc;
|
---|
[913a821c] | 272 | }
|
---|
| 273 |
|
---|
| 274 | /** Set cluster in one instance of FAT.
|
---|
[9f95a80] | 275 | *
|
---|
| 276 | * @param bs Buffer holding the boot sector for the file system.
|
---|
| 277 | * @param dev_handle Device handle for the file system.
|
---|
| 278 | * @param fatno Number of the FAT instance where to make the change.
|
---|
[913a821c] | 279 | * @param clst Cluster which is to be set.
|
---|
| 280 | * @param value Value to set the cluster with.
|
---|
[cca29e3c] | 281 | *
|
---|
| 282 | * @return EOK on success or a negative error code.
|
---|
[9f95a80] | 283 | */
|
---|
[cca29e3c] | 284 | int
|
---|
[913a821c] | 285 | fat_set_cluster(fat_bs_t *bs, dev_handle_t dev_handle, unsigned fatno,
|
---|
[cb682eb] | 286 | fat_cluster_t clst, fat_cluster_t value)
|
---|
[0f57d0e] | 287 | {
|
---|
[cb682eb] | 288 | block_t *b;
|
---|
[23b56ca] | 289 | uint16_t bps;
|
---|
| 290 | uint16_t rscnt;
|
---|
| 291 | uint16_t sf;
|
---|
| 292 | fat_cluster_t *cp;
|
---|
[c91f2d1b] | 293 | int rc;
|
---|
[23b56ca] | 294 |
|
---|
[cb682eb] | 295 | bps = uint16_t_le2host(bs->bps);
|
---|
| 296 | rscnt = uint16_t_le2host(bs->rscnt);
|
---|
| 297 | sf = uint16_t_le2host(bs->sec_per_fat);
|
---|
[23b56ca] | 298 |
|
---|
[cb682eb] | 299 | assert(fatno < bs->fatcnt);
|
---|
[c91f2d1b] | 300 | rc = block_get(&b, dev_handle, rscnt + sf * fatno +
|
---|
[1d8cdb1] | 301 | (clst * sizeof(fat_cluster_t)) / bps, BLOCK_FLAGS_NONE);
|
---|
[cca29e3c] | 302 | if (rc != EOK)
|
---|
| 303 | return rc;
|
---|
[cb682eb] | 304 | cp = (fat_cluster_t *)b->data + clst % (bps / sizeof(fat_cluster_t));
|
---|
[23b56ca] | 305 | *cp = host2uint16_t_le(value);
|
---|
[cb682eb] | 306 | b->dirty = true; /* need to sync block */
|
---|
[c91f2d1b] | 307 | rc = block_put(b);
|
---|
[cca29e3c] | 308 | return rc;
|
---|
[0f57d0e] | 309 | }
|
---|
| 310 |
|
---|
[9f95a80] | 311 | /** Replay the allocatoin of clusters in all shadow instances of FAT.
|
---|
| 312 | *
|
---|
| 313 | * @param bs Buffer holding the boot sector of the file system.
|
---|
| 314 | * @param dev_handle Device handle of the file system.
|
---|
| 315 | * @param lifo Chain of allocated clusters.
|
---|
| 316 | * @param nclsts Number of clusters in the lifo chain.
|
---|
[cca29e3c] | 317 | *
|
---|
| 318 | * @return EOK on success or a negative error code.
|
---|
[9f95a80] | 319 | */
|
---|
[cca29e3c] | 320 | int fat_alloc_shadow_clusters(fat_bs_t *bs, dev_handle_t dev_handle,
|
---|
[cb682eb] | 321 | fat_cluster_t *lifo, unsigned nclsts)
|
---|
[0f57d0e] | 322 | {
|
---|
[b1178d0] | 323 | uint8_t fatno;
|
---|
| 324 | unsigned c;
|
---|
[cca29e3c] | 325 | int rc;
|
---|
[b1178d0] | 326 |
|
---|
[cb682eb] | 327 | for (fatno = FAT1 + 1; fatno < bs->fatcnt; fatno++) {
|
---|
[b1178d0] | 328 | for (c = 0; c < nclsts; c++) {
|
---|
[cca29e3c] | 329 | rc = fat_set_cluster(bs, dev_handle, fatno, lifo[c],
|
---|
[b1178d0] | 330 | c == 0 ? FAT_CLST_LAST1 : lifo[c - 1]);
|
---|
[cca29e3c] | 331 | if (rc != EOK)
|
---|
| 332 | return rc;
|
---|
[b1178d0] | 333 | }
|
---|
| 334 | }
|
---|
[cca29e3c] | 335 |
|
---|
| 336 | return EOK;
|
---|
[0f57d0e] | 337 | }
|
---|
| 338 |
|
---|
[e478b2a4] | 339 | /** Allocate clusters in all copies of FAT.
|
---|
[9f95a80] | 340 | *
|
---|
| 341 | * This function will attempt to allocate the requested number of clusters in
|
---|
[e478b2a4] | 342 | * all instances of the FAT. The FAT will be altered so that the allocated
|
---|
[9f95a80] | 343 | * clusters form an independent chain (i.e. a chain which does not belong to any
|
---|
| 344 | * file yet).
|
---|
| 345 | *
|
---|
| 346 | * @param bs Buffer holding the boot sector of the file system.
|
---|
| 347 | * @param dev_handle Device handle of the file system.
|
---|
| 348 | * @param nclsts Number of clusters to allocate.
|
---|
| 349 | * @param mcl Output parameter where the first cluster in the chain
|
---|
| 350 | * will be returned.
|
---|
| 351 | * @param lcl Output parameter where the last cluster in the chain
|
---|
| 352 | * will be returned.
|
---|
| 353 | *
|
---|
| 354 | * @return EOK on success, a negative error code otherwise.
|
---|
| 355 | */
|
---|
[0f57d0e] | 356 | int
|
---|
[cb682eb] | 357 | fat_alloc_clusters(fat_bs_t *bs, dev_handle_t dev_handle, unsigned nclsts,
|
---|
| 358 | fat_cluster_t *mcl, fat_cluster_t *lcl)
|
---|
[0f57d0e] | 359 | {
|
---|
| 360 | uint16_t bps;
|
---|
| 361 | uint16_t rscnt;
|
---|
| 362 | uint16_t sf;
|
---|
[3a8faba] | 363 | uint16_t ts;
|
---|
| 364 | unsigned rde;
|
---|
| 365 | unsigned rds;
|
---|
| 366 | unsigned ssa;
|
---|
[cb682eb] | 367 | block_t *blk;
|
---|
[0f57d0e] | 368 | fat_cluster_t *lifo; /* stack for storing free cluster numbers */
|
---|
| 369 | unsigned found = 0; /* top of the free cluster number stack */
|
---|
| 370 | unsigned b, c, cl;
|
---|
[c91f2d1b] | 371 | int rc;
|
---|
[0f57d0e] | 372 |
|
---|
| 373 | lifo = (fat_cluster_t *) malloc(nclsts * sizeof(fat_cluster_t));
|
---|
[e478b2a4] | 374 | if (!lifo)
|
---|
[0f57d0e] | 375 | return ENOMEM;
|
---|
| 376 |
|
---|
[cb682eb] | 377 | bps = uint16_t_le2host(bs->bps);
|
---|
| 378 | rscnt = uint16_t_le2host(bs->rscnt);
|
---|
| 379 | sf = uint16_t_le2host(bs->sec_per_fat);
|
---|
[3a8faba] | 380 | rde = uint16_t_le2host(bs->root_ent_max);
|
---|
| 381 | ts = uint16_t_le2host(bs->totsec16);
|
---|
| 382 |
|
---|
| 383 | rds = (sizeof(fat_dentry_t) * rde) / bps;
|
---|
| 384 | rds += ((sizeof(fat_dentry_t) * rde) % bps != 0);
|
---|
| 385 | ssa = rscnt + bs->fatcnt * sf + rds;
|
---|
[0f57d0e] | 386 |
|
---|
| 387 | /*
|
---|
| 388 | * Search FAT1 for unused clusters.
|
---|
| 389 | */
|
---|
[6ebe721] | 390 | fibril_mutex_lock(&fat_alloc_lock);
|
---|
[e478b2a4] | 391 | for (b = 0, cl = 0; b < sf; b++) {
|
---|
[c91f2d1b] | 392 | rc = block_get(&blk, dev_handle, rscnt + b, BLOCK_FLAGS_NONE);
|
---|
[2f636b6] | 393 | if (rc != EOK)
|
---|
| 394 | goto error;
|
---|
[0f57d0e] | 395 | for (c = 0; c < bps / sizeof(fat_cluster_t); c++, cl++) {
|
---|
[3a8faba] | 396 | /*
|
---|
| 397 | * Check if the cluster is physically there. This check
|
---|
| 398 | * becomes necessary when the file system is created
|
---|
| 399 | * with fewer total sectors than how many is inferred
|
---|
| 400 | * from the size of the file allocation table.
|
---|
| 401 | */
|
---|
[50f9c3a] | 402 | if ((cl >= 2) && ((cl - 2) * bs->spc + ssa >= ts)) {
|
---|
[3a8faba] | 403 | rc = block_put(blk);
|
---|
| 404 | if (rc != EOK)
|
---|
| 405 | goto error;
|
---|
| 406 | goto out;
|
---|
| 407 | }
|
---|
| 408 |
|
---|
[0f57d0e] | 409 | fat_cluster_t *clst = (fat_cluster_t *)blk->data + c;
|
---|
[a429bfb] | 410 | if (uint16_t_le2host(*clst) == FAT_CLST_RES0) {
|
---|
[0f57d0e] | 411 | /*
|
---|
| 412 | * The cluster is free. Put it into our stack
|
---|
| 413 | * of found clusters and mark it as non-free.
|
---|
| 414 | */
|
---|
| 415 | lifo[found] = cl;
|
---|
[a429bfb] | 416 | *clst = (found == 0) ?
|
---|
| 417 | host2uint16_t_le(FAT_CLST_LAST1) :
|
---|
| 418 | host2uint16_t_le(lifo[found - 1]);
|
---|
[0f57d0e] | 419 | blk->dirty = true; /* need to sync block */
|
---|
| 420 | if (++found == nclsts) {
|
---|
| 421 | /* we are almost done */
|
---|
[c91f2d1b] | 422 | rc = block_put(blk);
|
---|
[2f636b6] | 423 | if (rc != EOK)
|
---|
| 424 | goto error;
|
---|
[0f57d0e] | 425 | /* update the shadow copies of FAT */
|
---|
[cca29e3c] | 426 | rc = fat_alloc_shadow_clusters(bs,
|
---|
[cb682eb] | 427 | dev_handle, lifo, nclsts);
|
---|
[2f636b6] | 428 | if (rc != EOK)
|
---|
| 429 | goto error;
|
---|
[0f57d0e] | 430 | *mcl = lifo[found - 1];
|
---|
| 431 | *lcl = lifo[0];
|
---|
| 432 | free(lifo);
|
---|
[6ebe721] | 433 | fibril_mutex_unlock(&fat_alloc_lock);
|
---|
[0f57d0e] | 434 | return EOK;
|
---|
| 435 | }
|
---|
| 436 | }
|
---|
| 437 | }
|
---|
[c91f2d1b] | 438 | rc = block_put(blk);
|
---|
[2f636b6] | 439 | if (rc != EOK) {
|
---|
| 440 | error:
|
---|
| 441 | fibril_mutex_unlock(&fat_alloc_lock);
|
---|
| 442 | free(lifo);
|
---|
| 443 | return rc;
|
---|
| 444 | }
|
---|
[0f57d0e] | 445 | }
|
---|
[3a8faba] | 446 | out:
|
---|
[6ebe721] | 447 | fibril_mutex_unlock(&fat_alloc_lock);
|
---|
[0f57d0e] | 448 |
|
---|
| 449 | /*
|
---|
| 450 | * We could not find enough clusters. Now we need to free the clusters
|
---|
| 451 | * we have allocated so far.
|
---|
| 452 | */
|
---|
[cb682eb] | 453 | while (found--) {
|
---|
[cca29e3c] | 454 | rc = fat_set_cluster(bs, dev_handle, FAT1, lifo[found],
|
---|
[cb682eb] | 455 | FAT_CLST_RES0);
|
---|
[cca29e3c] | 456 | if (rc != EOK) {
|
---|
| 457 | free(lifo);
|
---|
| 458 | return rc;
|
---|
| 459 | }
|
---|
[cb682eb] | 460 | }
|
---|
[0f57d0e] | 461 |
|
---|
| 462 | free(lifo);
|
---|
| 463 | return ENOSPC;
|
---|
| 464 | }
|
---|
| 465 |
|
---|
[913a821c] | 466 | /** Free clusters forming a cluster chain in all copies of FAT.
|
---|
| 467 | *
|
---|
| 468 | * @param bs Buffer hodling the boot sector of the file system.
|
---|
| 469 | * @param dev_handle Device handle of the file system.
|
---|
| 470 | * @param firstc First cluster in the chain which is to be freed.
|
---|
[cca29e3c] | 471 | *
|
---|
| 472 | * @return EOK on success or a negative return code.
|
---|
[913a821c] | 473 | */
|
---|
[cca29e3c] | 474 | int
|
---|
[913a821c] | 475 | fat_free_clusters(fat_bs_t *bs, dev_handle_t dev_handle, fat_cluster_t firstc)
|
---|
| 476 | {
|
---|
| 477 | unsigned fatno;
|
---|
| 478 | fat_cluster_t nextc;
|
---|
[dc87ad11] | 479 | int rc;
|
---|
[913a821c] | 480 |
|
---|
| 481 | /* Mark all clusters in the chain as free in all copies of FAT. */
|
---|
| 482 | while (firstc < FAT_CLST_LAST1) {
|
---|
[d1b625b] | 483 | assert(firstc >= FAT_CLST_FIRST && firstc < FAT_CLST_BAD);
|
---|
[711e1f32] | 484 | rc = fat_get_cluster(bs, dev_handle, FAT1, firstc, &nextc);
|
---|
[cca29e3c] | 485 | if (rc != EOK)
|
---|
| 486 | return rc;
|
---|
| 487 | for (fatno = FAT1; fatno < bs->fatcnt; fatno++) {
|
---|
| 488 | rc = fat_set_cluster(bs, dev_handle, fatno, firstc,
|
---|
[913a821c] | 489 | FAT_CLST_RES0);
|
---|
[cca29e3c] | 490 | if (rc != EOK)
|
---|
| 491 | return rc;
|
---|
| 492 | }
|
---|
| 493 |
|
---|
[913a821c] | 494 | firstc = nextc;
|
---|
| 495 | }
|
---|
[cca29e3c] | 496 |
|
---|
| 497 | return EOK;
|
---|
[913a821c] | 498 | }
|
---|
| 499 |
|
---|
[9f95a80] | 500 | /** Append a cluster chain to the last file cluster in all FATs.
|
---|
| 501 | *
|
---|
[913a821c] | 502 | * @param bs Buffer holding the boot sector of the file system.
|
---|
[9f95a80] | 503 | * @param nodep Node representing the file.
|
---|
| 504 | * @param mcl First cluster of the cluster chain to append.
|
---|
[cca29e3c] | 505 | *
|
---|
| 506 | * @return EOK on success or a negative error code.
|
---|
[9f95a80] | 507 | */
|
---|
[cca29e3c] | 508 | int fat_append_clusters(fat_bs_t *bs, fat_node_t *nodep, fat_cluster_t mcl)
|
---|
[0f57d0e] | 509 | {
|
---|
[cb682eb] | 510 | dev_handle_t dev_handle = nodep->idx->dev_handle;
|
---|
[e17d986] | 511 | fat_cluster_t lcl;
|
---|
[e402382] | 512 | uint16_t numc;
|
---|
[cb682eb] | 513 | uint8_t fatno;
|
---|
[e402382] | 514 | int rc;
|
---|
| 515 |
|
---|
| 516 | rc = fat_cluster_walk(bs, dev_handle, nodep->firstc, &lcl, &numc,
|
---|
| 517 | (uint16_t) -1);
|
---|
[cca29e3c] | 518 | if (rc != EOK)
|
---|
| 519 | return rc;
|
---|
[e17d986] | 520 |
|
---|
[e402382] | 521 | if (numc == 0) {
|
---|
[4f1c0b4] | 522 | /* No clusters allocated to the node yet. */
|
---|
[57e76cb] | 523 | nodep->firstc = mcl;
|
---|
[e17d986] | 524 | nodep->dirty = true; /* need to sync node */
|
---|
[cca29e3c] | 525 | return EOK;
|
---|
| 526 | }
|
---|
| 527 |
|
---|
| 528 | for (fatno = FAT1; fatno < bs->fatcnt; fatno++) {
|
---|
| 529 | rc = fat_set_cluster(bs, nodep->idx->dev_handle, fatno, lcl,
|
---|
| 530 | mcl);
|
---|
| 531 | if (rc != EOK)
|
---|
| 532 | return rc;
|
---|
[e17d986] | 533 | }
|
---|
| 534 |
|
---|
[cca29e3c] | 535 | return EOK;
|
---|
[913a821c] | 536 | }
|
---|
| 537 |
|
---|
| 538 | /** Chop off node clusters in all copies of FAT.
|
---|
| 539 | *
|
---|
| 540 | * @param bs Buffer holding the boot sector of the file system.
|
---|
| 541 | * @param nodep FAT node where the chopping will take place.
|
---|
| 542 | * @param lastc Last cluster which will remain in the node. If this
|
---|
| 543 | * argument is FAT_CLST_RES0, then all clusters will
|
---|
[ac49f5d1] | 544 | * be chopped off.
|
---|
[cca29e3c] | 545 | *
|
---|
| 546 | * @return EOK on success or a negative return code.
|
---|
[913a821c] | 547 | */
|
---|
[cca29e3c] | 548 | int fat_chop_clusters(fat_bs_t *bs, fat_node_t *nodep, fat_cluster_t lastc)
|
---|
[913a821c] | 549 | {
|
---|
[dc87ad11] | 550 | int rc;
|
---|
| 551 |
|
---|
[913a821c] | 552 | dev_handle_t dev_handle = nodep->idx->dev_handle;
|
---|
| 553 | if (lastc == FAT_CLST_RES0) {
|
---|
| 554 | /* The node will have zero size and no clusters allocated. */
|
---|
[cca29e3c] | 555 | rc = fat_free_clusters(bs, dev_handle, nodep->firstc);
|
---|
| 556 | if (rc != EOK)
|
---|
| 557 | return rc;
|
---|
[913a821c] | 558 | nodep->firstc = FAT_CLST_RES0;
|
---|
| 559 | nodep->dirty = true; /* need to sync node */
|
---|
| 560 | } else {
|
---|
| 561 | fat_cluster_t nextc;
|
---|
| 562 | unsigned fatno;
|
---|
| 563 |
|
---|
[711e1f32] | 564 | rc = fat_get_cluster(bs, dev_handle, FAT1, lastc, &nextc);
|
---|
[cca29e3c] | 565 | if (rc != EOK)
|
---|
| 566 | return rc;
|
---|
[913a821c] | 567 |
|
---|
| 568 | /* Terminate the cluster chain in all copies of FAT. */
|
---|
[cca29e3c] | 569 | for (fatno = FAT1; fatno < bs->fatcnt; fatno++) {
|
---|
| 570 | rc = fat_set_cluster(bs, dev_handle, fatno, lastc,
|
---|
| 571 | FAT_CLST_LAST1);
|
---|
| 572 | if (rc != EOK)
|
---|
| 573 | return rc;
|
---|
| 574 | }
|
---|
[913a821c] | 575 |
|
---|
| 576 | /* Free all following clusters. */
|
---|
[cca29e3c] | 577 | rc = fat_free_clusters(bs, dev_handle, nextc);
|
---|
| 578 | if (rc != EOK)
|
---|
| 579 | return rc;
|
---|
[913a821c] | 580 | }
|
---|
[cca29e3c] | 581 |
|
---|
| 582 | return EOK;
|
---|
[0f57d0e] | 583 | }
|
---|
[6ebaff9] | 584 |
|
---|
[cca29e3c] | 585 | int
|
---|
[5f116e7] | 586 | fat_zero_cluster(struct fat_bs *bs, dev_handle_t dev_handle, fat_cluster_t c)
|
---|
| 587 | {
|
---|
| 588 | int i;
|
---|
| 589 | block_t *b;
|
---|
| 590 | unsigned bps;
|
---|
[c91f2d1b] | 591 | int rc;
|
---|
[5f116e7] | 592 |
|
---|
| 593 | bps = uint16_t_le2host(bs->bps);
|
---|
| 594 |
|
---|
| 595 | for (i = 0; i < bs->spc; i++) {
|
---|
[684b655] | 596 | rc = _fat_block_get(&b, bs, dev_handle, c, i,
|
---|
| 597 | BLOCK_FLAGS_NOREAD);
|
---|
[cca29e3c] | 598 | if (rc != EOK)
|
---|
| 599 | return rc;
|
---|
[5f116e7] | 600 | memset(b->data, 0, bps);
|
---|
| 601 | b->dirty = true;
|
---|
[c91f2d1b] | 602 | rc = block_put(b);
|
---|
[cca29e3c] | 603 | if (rc != EOK)
|
---|
| 604 | return rc;
|
---|
[5f116e7] | 605 | }
|
---|
[cca29e3c] | 606 |
|
---|
| 607 | return EOK;
|
---|
[5f116e7] | 608 | }
|
---|
| 609 |
|
---|
[7efc517] | 610 | /** Perform basic sanity checks on the file system.
|
---|
| 611 | *
|
---|
| 612 | * Verify if values of boot sector fields are sane. Also verify media
|
---|
| 613 | * descriptor. This is used to rule out cases when a device obviously
|
---|
| 614 | * does not contain a fat file system.
|
---|
| 615 | */
|
---|
| 616 | int fat_sanity_check(fat_bs_t *bs, dev_handle_t dev_handle)
|
---|
| 617 | {
|
---|
| 618 | fat_cluster_t e0, e1;
|
---|
| 619 | unsigned fat_no;
|
---|
| 620 | int rc;
|
---|
| 621 |
|
---|
| 622 | /* Check number of FATs. */
|
---|
| 623 | if (bs->fatcnt == 0)
|
---|
| 624 | return ENOTSUP;
|
---|
| 625 |
|
---|
| 626 | /* Check total number of sectors. */
|
---|
| 627 |
|
---|
| 628 | if (bs->totsec16 == 0 && bs->totsec32 == 0)
|
---|
| 629 | return ENOTSUP;
|
---|
| 630 |
|
---|
| 631 | if (bs->totsec16 != 0 && bs->totsec32 != 0 &&
|
---|
| 632 | bs->totsec16 != bs->totsec32)
|
---|
| 633 | return ENOTSUP;
|
---|
| 634 |
|
---|
| 635 | /* Check media descriptor. Must be between 0xf0 and 0xff. */
|
---|
| 636 | if ((bs->mdesc & 0xf0) != 0xf0)
|
---|
| 637 | return ENOTSUP;
|
---|
| 638 |
|
---|
| 639 | /* Check number of sectors per FAT. */
|
---|
| 640 | if (bs->sec_per_fat == 0)
|
---|
| 641 | return ENOTSUP;
|
---|
| 642 |
|
---|
| 643 | /*
|
---|
| 644 | * Check that the root directory entries take up whole blocks.
|
---|
| 645 | * This check is rather strict, but it allows us to treat the root
|
---|
| 646 | * directory and non-root directories uniformly in some places.
|
---|
| 647 | * It can be removed provided that functions such as fat_read() are
|
---|
| 648 | * sanitized to support file systems with this property.
|
---|
| 649 | */
|
---|
| 650 | if ((uint16_t_le2host(bs->root_ent_max) * sizeof(fat_dentry_t)) %
|
---|
| 651 | uint16_t_le2host(bs->bps) != 0)
|
---|
| 652 | return ENOTSUP;
|
---|
| 653 |
|
---|
| 654 | /* Check signature of each FAT. */
|
---|
| 655 |
|
---|
| 656 | for (fat_no = 0; fat_no < bs->fatcnt; fat_no++) {
|
---|
| 657 | rc = fat_get_cluster(bs, dev_handle, fat_no, 0, &e0);
|
---|
| 658 | if (rc != EOK)
|
---|
| 659 | return EIO;
|
---|
| 660 |
|
---|
| 661 | rc = fat_get_cluster(bs, dev_handle, fat_no, 1, &e1);
|
---|
| 662 | if (rc != EOK)
|
---|
| 663 | return EIO;
|
---|
| 664 |
|
---|
| 665 | /* Check that first byte of FAT contains the media descriptor. */
|
---|
| 666 | if ((e0 & 0xff) != bs->mdesc)
|
---|
| 667 | return ENOTSUP;
|
---|
| 668 |
|
---|
| 669 | /*
|
---|
| 670 | * Check that remaining bits of the first two entries are
|
---|
| 671 | * set to one.
|
---|
| 672 | */
|
---|
| 673 | if ((e0 >> 8) != 0xff || e1 != 0xffff)
|
---|
| 674 | return ENOTSUP;
|
---|
| 675 | }
|
---|
| 676 |
|
---|
| 677 | return EOK;
|
---|
| 678 | }
|
---|
| 679 |
|
---|
[6ebaff9] | 680 | /**
|
---|
| 681 | * @}
|
---|
| 682 | */
|
---|