[be815bc] | 1 | /*
|
---|
[a2aa1dec] | 2 | * Copyright (c) 2008 Jakub Jermar
|
---|
[be815bc] | 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_ops.c
|
---|
| 35 | * @brief Implementation of VFS operations for the FAT file system server.
|
---|
| 36 | */
|
---|
| 37 |
|
---|
| 38 | #include "fat.h"
|
---|
[033ef7d3] | 39 | #include "fat_dentry.h"
|
---|
| 40 | #include "fat_fat.h"
|
---|
[6364d3c] | 41 | #include "../../vfs/vfs.h"
|
---|
[a2aa1dec] | 42 | #include <libfs.h>
|
---|
[fc840d9] | 43 | #include <libblock.h>
|
---|
[be815bc] | 44 | #include <ipc/ipc.h>
|
---|
[7a35204a] | 45 | #include <ipc/services.h>
|
---|
| 46 | #include <ipc/devmap.h>
|
---|
[be815bc] | 47 | #include <async.h>
|
---|
| 48 | #include <errno.h>
|
---|
[a2aa1dec] | 49 | #include <string.h>
|
---|
[776f2e6] | 50 | #include <byteorder.h>
|
---|
[d9c8c81] | 51 | #include <adt/hash_table.h>
|
---|
| 52 | #include <adt/list.h>
|
---|
[e1e3b26] | 53 | #include <assert.h>
|
---|
[6ebe721] | 54 | #include <fibril_sync.h>
|
---|
[7a35204a] | 55 | #include <sys/mman.h>
|
---|
[8d32152] | 56 | #include <align.h>
|
---|
[e1e3b26] | 57 |
|
---|
[b6035ba] | 58 | #define FAT_NODE(node) ((node) ? (fat_node_t *) (node)->data : NULL)
|
---|
| 59 | #define FS_NODE(node) ((node) ? (node)->bp : NULL)
|
---|
| 60 |
|
---|
[6ebe721] | 61 | /** Mutex protecting the list of cached free FAT nodes. */
|
---|
| 62 | static FIBRIL_MUTEX_INITIALIZE(ffn_mutex);
|
---|
[add5835] | 63 |
|
---|
| 64 | /** List of cached free FAT nodes. */
|
---|
| 65 | static LIST_INITIALIZE(ffn_head);
|
---|
[6364d3c] | 66 |
|
---|
[0fc1e5d] | 67 | /*
|
---|
| 68 | * Forward declarations of FAT libfs operations.
|
---|
| 69 | */
|
---|
| 70 | static int fat_root_get(fs_node_t **, dev_handle_t);
|
---|
| 71 | static int fat_match(fs_node_t **, fs_node_t *, const char *);
|
---|
| 72 | static int fat_node_get(fs_node_t **, dev_handle_t, fs_index_t);
|
---|
| 73 | static int fat_node_put(fs_node_t *);
|
---|
| 74 | static int fat_create_node(fs_node_t **, dev_handle_t, int);
|
---|
| 75 | static int fat_destroy_node(fs_node_t *);
|
---|
| 76 | static int fat_link(fs_node_t *, fs_node_t *, const char *);
|
---|
| 77 | static int fat_unlink(fs_node_t *, fs_node_t *, const char *);
|
---|
| 78 | static int fat_has_children(bool *, fs_node_t *);
|
---|
| 79 | static fs_index_t fat_index_get(fs_node_t *);
|
---|
| 80 | static size_t fat_size_get(fs_node_t *);
|
---|
| 81 | static unsigned fat_lnkcnt_get(fs_node_t *);
|
---|
| 82 | static char fat_plb_get_char(unsigned);
|
---|
| 83 | static bool fat_is_directory(fs_node_t *);
|
---|
| 84 | static bool fat_is_file(fs_node_t *node);
|
---|
| 85 |
|
---|
| 86 | /*
|
---|
| 87 | * Helper functions.
|
---|
| 88 | */
|
---|
[e1e3b26] | 89 | static void fat_node_initialize(fat_node_t *node)
|
---|
[a2aa1dec] | 90 | {
|
---|
[6ebe721] | 91 | fibril_mutex_initialize(&node->lock);
|
---|
[b6035ba] | 92 | node->bp = NULL;
|
---|
[869e546] | 93 | node->idx = NULL;
|
---|
[e1e3b26] | 94 | node->type = 0;
|
---|
| 95 | link_initialize(&node->ffn_link);
|
---|
| 96 | node->size = 0;
|
---|
| 97 | node->lnkcnt = 0;
|
---|
| 98 | node->refcnt = 0;
|
---|
| 99 | node->dirty = false;
|
---|
| 100 | }
|
---|
| 101 |
|
---|
[4098e38] | 102 | static int fat_node_sync(fat_node_t *node)
|
---|
[e1e3b26] | 103 | {
|
---|
[7858bc5f] | 104 | block_t *b;
|
---|
| 105 | fat_bs_t *bs;
|
---|
[beb17734] | 106 | fat_dentry_t *d;
|
---|
| 107 | uint16_t bps;
|
---|
| 108 | unsigned dps;
|
---|
[c91f2d1b] | 109 | int rc;
|
---|
[beb17734] | 110 |
|
---|
| 111 | assert(node->dirty);
|
---|
| 112 |
|
---|
[7858bc5f] | 113 | bs = block_bb_get(node->idx->dev_handle);
|
---|
| 114 | bps = uint16_t_le2host(bs->bps);
|
---|
[beb17734] | 115 | dps = bps / sizeof(fat_dentry_t);
|
---|
| 116 |
|
---|
| 117 | /* Read the block that contains the dentry of interest. */
|
---|
[684b655] | 118 | rc = _fat_block_get(&b, bs, node->idx->dev_handle, node->idx->pfc,
|
---|
[1d8cdb1] | 119 | (node->idx->pdi * sizeof(fat_dentry_t)) / bps, BLOCK_FLAGS_NONE);
|
---|
[4098e38] | 120 | if (rc != EOK)
|
---|
| 121 | return rc;
|
---|
[beb17734] | 122 |
|
---|
| 123 | d = ((fat_dentry_t *)b->data) + (node->idx->pdi % dps);
|
---|
| 124 |
|
---|
| 125 | d->firstc = host2uint16_t_le(node->firstc);
|
---|
[a5da446] | 126 | if (node->type == FAT_FILE) {
|
---|
[beb17734] | 127 | d->size = host2uint32_t_le(node->size);
|
---|
[a5da446] | 128 | } else if (node->type == FAT_DIRECTORY) {
|
---|
| 129 | d->attr = FAT_ATTR_SUBDIR;
|
---|
| 130 | }
|
---|
| 131 |
|
---|
| 132 | /* TODO: update other fields? (e.g time fields) */
|
---|
[beb17734] | 133 |
|
---|
| 134 | b->dirty = true; /* need to sync block */
|
---|
[c91f2d1b] | 135 | rc = block_put(b);
|
---|
[4098e38] | 136 | return rc;
|
---|
[e1e3b26] | 137 | }
|
---|
| 138 |
|
---|
[17bf658] | 139 | static int fat_node_get_new(fat_node_t **nodepp)
|
---|
[9a3d5f0] | 140 | {
|
---|
[b6035ba] | 141 | fs_node_t *fn;
|
---|
[9a3d5f0] | 142 | fat_node_t *nodep;
|
---|
[4098e38] | 143 | int rc;
|
---|
[9a3d5f0] | 144 |
|
---|
[6ebe721] | 145 | fibril_mutex_lock(&ffn_mutex);
|
---|
[9a3d5f0] | 146 | if (!list_empty(&ffn_head)) {
|
---|
| 147 | /* Try to use a cached free node structure. */
|
---|
| 148 | fat_idx_t *idxp_tmp;
|
---|
| 149 | nodep = list_get_instance(ffn_head.next, fat_node_t, ffn_link);
|
---|
[6ebe721] | 150 | if (!fibril_mutex_trylock(&nodep->lock))
|
---|
[9a3d5f0] | 151 | goto skip_cache;
|
---|
| 152 | idxp_tmp = nodep->idx;
|
---|
[6ebe721] | 153 | if (!fibril_mutex_trylock(&idxp_tmp->lock)) {
|
---|
| 154 | fibril_mutex_unlock(&nodep->lock);
|
---|
[9a3d5f0] | 155 | goto skip_cache;
|
---|
| 156 | }
|
---|
| 157 | list_remove(&nodep->ffn_link);
|
---|
[6ebe721] | 158 | fibril_mutex_unlock(&ffn_mutex);
|
---|
[4098e38] | 159 | if (nodep->dirty) {
|
---|
| 160 | rc = fat_node_sync(nodep);
|
---|
[17bf658] | 161 | if (rc != EOK) {
|
---|
| 162 | idxp_tmp->nodep = NULL;
|
---|
| 163 | fibril_mutex_unlock(&nodep->lock);
|
---|
| 164 | fibril_mutex_unlock(&idxp_tmp->lock);
|
---|
| 165 | free(nodep->bp);
|
---|
| 166 | free(nodep);
|
---|
| 167 | return rc;
|
---|
| 168 | }
|
---|
[4098e38] | 169 | }
|
---|
[9a3d5f0] | 170 | idxp_tmp->nodep = NULL;
|
---|
[6ebe721] | 171 | fibril_mutex_unlock(&nodep->lock);
|
---|
| 172 | fibril_mutex_unlock(&idxp_tmp->lock);
|
---|
[b6035ba] | 173 | fn = FS_NODE(nodep);
|
---|
[9a3d5f0] | 174 | } else {
|
---|
| 175 | skip_cache:
|
---|
| 176 | /* Try to allocate a new node structure. */
|
---|
[6ebe721] | 177 | fibril_mutex_unlock(&ffn_mutex);
|
---|
[b6035ba] | 178 | fn = (fs_node_t *)malloc(sizeof(fs_node_t));
|
---|
| 179 | if (!fn)
|
---|
[17bf658] | 180 | return ENOMEM;
|
---|
[9a3d5f0] | 181 | nodep = (fat_node_t *)malloc(sizeof(fat_node_t));
|
---|
[b6035ba] | 182 | if (!nodep) {
|
---|
| 183 | free(fn);
|
---|
[17bf658] | 184 | return ENOMEM;
|
---|
[b6035ba] | 185 | }
|
---|
[9a3d5f0] | 186 | }
|
---|
| 187 | fat_node_initialize(nodep);
|
---|
[83937ccd] | 188 | fs_node_initialize(fn);
|
---|
[b6035ba] | 189 | fn->data = nodep;
|
---|
| 190 | nodep->bp = fn;
|
---|
[9a3d5f0] | 191 |
|
---|
[17bf658] | 192 | *nodepp = nodep;
|
---|
| 193 | return EOK;
|
---|
[9a3d5f0] | 194 | }
|
---|
| 195 |
|
---|
[add5835] | 196 | /** Internal version of fat_node_get().
|
---|
| 197 | *
|
---|
| 198 | * @param idxp Locked index structure.
|
---|
| 199 | */
|
---|
[0fc1e5d] | 200 | static int fat_node_get_core(fat_node_t **nodepp, fat_idx_t *idxp)
|
---|
[e1e3b26] | 201 | {
|
---|
[7858bc5f] | 202 | block_t *b;
|
---|
| 203 | fat_bs_t *bs;
|
---|
[4573a79] | 204 | fat_dentry_t *d;
|
---|
[c06dbf9] | 205 | fat_node_t *nodep = NULL;
|
---|
[4573a79] | 206 | unsigned bps;
|
---|
[4f1c0b4] | 207 | unsigned spc;
|
---|
[4573a79] | 208 | unsigned dps;
|
---|
[c91f2d1b] | 209 | int rc;
|
---|
[4573a79] | 210 |
|
---|
[add5835] | 211 | if (idxp->nodep) {
|
---|
[4573a79] | 212 | /*
|
---|
| 213 | * We are lucky.
|
---|
| 214 | * The node is already instantiated in memory.
|
---|
| 215 | */
|
---|
[6ebe721] | 216 | fibril_mutex_lock(&idxp->nodep->lock);
|
---|
[e6bc3a5] | 217 | if (!idxp->nodep->refcnt++) {
|
---|
| 218 | fibril_mutex_lock(&ffn_mutex);
|
---|
[c06dbf9] | 219 | list_remove(&idxp->nodep->ffn_link);
|
---|
[e6bc3a5] | 220 | fibril_mutex_unlock(&ffn_mutex);
|
---|
| 221 | }
|
---|
[6ebe721] | 222 | fibril_mutex_unlock(&idxp->nodep->lock);
|
---|
[0fc1e5d] | 223 | *nodepp = idxp->nodep;
|
---|
| 224 | return EOK;
|
---|
[4573a79] | 225 | }
|
---|
| 226 |
|
---|
| 227 | /*
|
---|
| 228 | * We must instantiate the node from the file system.
|
---|
| 229 | */
|
---|
| 230 |
|
---|
[add5835] | 231 | assert(idxp->pfc);
|
---|
[4573a79] | 232 |
|
---|
[17bf658] | 233 | rc = fat_node_get_new(&nodep);
|
---|
| 234 | if (rc != EOK)
|
---|
[0fc1e5d] | 235 | return rc;
|
---|
[4573a79] | 236 |
|
---|
[7858bc5f] | 237 | bs = block_bb_get(idxp->dev_handle);
|
---|
| 238 | bps = uint16_t_le2host(bs->bps);
|
---|
[4f1c0b4] | 239 | spc = bs->spc;
|
---|
[4573a79] | 240 | dps = bps / sizeof(fat_dentry_t);
|
---|
| 241 |
|
---|
[2c4bbcde] | 242 | /* Read the block that contains the dentry of interest. */
|
---|
[684b655] | 243 | rc = _fat_block_get(&b, bs, idxp->dev_handle, idxp->pfc,
|
---|
[1d8cdb1] | 244 | (idxp->pdi * sizeof(fat_dentry_t)) / bps, BLOCK_FLAGS_NONE);
|
---|
[0fc1e5d] | 245 | if (rc != EOK) {
|
---|
| 246 | (void) fat_node_put(FS_NODE(nodep));
|
---|
| 247 | return rc;
|
---|
| 248 | }
|
---|
[4573a79] | 249 |
|
---|
[add5835] | 250 | d = ((fat_dentry_t *)b->data) + (idxp->pdi % dps);
|
---|
[2c4bbcde] | 251 | if (d->attr & FAT_ATTR_SUBDIR) {
|
---|
| 252 | /*
|
---|
| 253 | * The only directory which does not have this bit set is the
|
---|
| 254 | * root directory itself. The root directory node is handled
|
---|
| 255 | * and initialized elsewhere.
|
---|
| 256 | */
|
---|
| 257 | nodep->type = FAT_DIRECTORY;
|
---|
[2ab1023] | 258 | /*
|
---|
[e2115311] | 259 | * Unfortunately, the 'size' field of the FAT dentry is not
|
---|
| 260 | * defined for the directory entry type. We must determine the
|
---|
| 261 | * size of the directory by walking the FAT.
|
---|
[2ab1023] | 262 | */
|
---|
[e402382] | 263 | uint16_t clusters;
|
---|
| 264 | rc = fat_clusters_get(&clusters, bs, idxp->dev_handle,
|
---|
[4f1c0b4] | 265 | uint16_t_le2host(d->firstc));
|
---|
[0fc1e5d] | 266 | if (rc != EOK) {
|
---|
| 267 | (void) fat_node_put(FS_NODE(nodep));
|
---|
| 268 | return rc;
|
---|
| 269 | }
|
---|
[e402382] | 270 | nodep->size = bps * spc * clusters;
|
---|
[2c4bbcde] | 271 | } else {
|
---|
| 272 | nodep->type = FAT_FILE;
|
---|
[2ab1023] | 273 | nodep->size = uint32_t_le2host(d->size);
|
---|
[2c4bbcde] | 274 | }
|
---|
| 275 | nodep->firstc = uint16_t_le2host(d->firstc);
|
---|
| 276 | nodep->lnkcnt = 1;
|
---|
| 277 | nodep->refcnt = 1;
|
---|
| 278 |
|
---|
[c91f2d1b] | 279 | rc = block_put(b);
|
---|
[0fc1e5d] | 280 | if (rc != EOK) {
|
---|
| 281 | (void) fat_node_put(FS_NODE(nodep));
|
---|
| 282 | return rc;
|
---|
| 283 | }
|
---|
[2c4bbcde] | 284 |
|
---|
| 285 | /* Link the idx structure with the node structure. */
|
---|
[add5835] | 286 | nodep->idx = idxp;
|
---|
| 287 | idxp->nodep = nodep;
|
---|
[2c4bbcde] | 288 |
|
---|
[0fc1e5d] | 289 | *nodepp = nodep;
|
---|
| 290 | return EOK;
|
---|
[a2aa1dec] | 291 | }
|
---|
| 292 |
|
---|
[50e5b25] | 293 | /*
|
---|
| 294 | * FAT libfs operations.
|
---|
| 295 | */
|
---|
| 296 |
|
---|
[073f550] | 297 | int fat_root_get(fs_node_t **rfn, dev_handle_t dev_handle)
|
---|
| 298 | {
|
---|
| 299 | return fat_node_get(rfn, dev_handle, 0);
|
---|
| 300 | }
|
---|
| 301 |
|
---|
| 302 | int fat_match(fs_node_t **rfn, fs_node_t *pfn, const char *component)
|
---|
| 303 | {
|
---|
| 304 | fat_bs_t *bs;
|
---|
| 305 | fat_node_t *parentp = FAT_NODE(pfn);
|
---|
| 306 | char name[FAT_NAME_LEN + 1 + FAT_EXT_LEN + 1];
|
---|
| 307 | unsigned i, j;
|
---|
| 308 | unsigned bps; /* bytes per sector */
|
---|
| 309 | unsigned dps; /* dentries per sector */
|
---|
| 310 | unsigned blocks;
|
---|
| 311 | fat_dentry_t *d;
|
---|
| 312 | block_t *b;
|
---|
| 313 | int rc;
|
---|
| 314 |
|
---|
| 315 | fibril_mutex_lock(&parentp->idx->lock);
|
---|
| 316 | bs = block_bb_get(parentp->idx->dev_handle);
|
---|
| 317 | bps = uint16_t_le2host(bs->bps);
|
---|
| 318 | dps = bps / sizeof(fat_dentry_t);
|
---|
| 319 | blocks = parentp->size / bps;
|
---|
| 320 | for (i = 0; i < blocks; i++) {
|
---|
| 321 | rc = fat_block_get(&b, bs, parentp, i, BLOCK_FLAGS_NONE);
|
---|
| 322 | if (rc != EOK) {
|
---|
| 323 | fibril_mutex_unlock(&parentp->idx->lock);
|
---|
| 324 | return rc;
|
---|
| 325 | }
|
---|
| 326 | for (j = 0; j < dps; j++) {
|
---|
| 327 | d = ((fat_dentry_t *)b->data) + j;
|
---|
| 328 | switch (fat_classify_dentry(d)) {
|
---|
| 329 | case FAT_DENTRY_SKIP:
|
---|
| 330 | case FAT_DENTRY_FREE:
|
---|
| 331 | continue;
|
---|
| 332 | case FAT_DENTRY_LAST:
|
---|
| 333 | rc = block_put(b);
|
---|
| 334 | /* expect EOK as b was not dirty */
|
---|
| 335 | assert(rc == EOK);
|
---|
| 336 | fibril_mutex_unlock(&parentp->idx->lock);
|
---|
| 337 | *rfn = NULL;
|
---|
| 338 | return EOK;
|
---|
| 339 | default:
|
---|
| 340 | case FAT_DENTRY_VALID:
|
---|
| 341 | fat_dentry_name_get(d, name);
|
---|
| 342 | break;
|
---|
| 343 | }
|
---|
| 344 | if (fat_dentry_namecmp(name, component) == 0) {
|
---|
| 345 | /* hit */
|
---|
| 346 | fat_node_t *nodep;
|
---|
| 347 | /*
|
---|
| 348 | * Assume tree hierarchy for locking. We
|
---|
| 349 | * already have the parent and now we are going
|
---|
| 350 | * to lock the child. Never lock in the oposite
|
---|
| 351 | * order.
|
---|
| 352 | */
|
---|
| 353 | fat_idx_t *idx = fat_idx_get_by_pos(
|
---|
| 354 | parentp->idx->dev_handle, parentp->firstc,
|
---|
| 355 | i * dps + j);
|
---|
| 356 | fibril_mutex_unlock(&parentp->idx->lock);
|
---|
| 357 | if (!idx) {
|
---|
| 358 | /*
|
---|
| 359 | * Can happen if memory is low or if we
|
---|
| 360 | * run out of 32-bit indices.
|
---|
| 361 | */
|
---|
| 362 | rc = block_put(b);
|
---|
| 363 | /* expect EOK as b was not dirty */
|
---|
| 364 | assert(rc == EOK);
|
---|
| 365 | return ENOMEM;
|
---|
| 366 | }
|
---|
[0fc1e5d] | 367 | rc = fat_node_get_core(&nodep, idx);
|
---|
| 368 | assert(rc == EOK);
|
---|
[073f550] | 369 | fibril_mutex_unlock(&idx->lock);
|
---|
| 370 | rc = block_put(b);
|
---|
| 371 | /* expect EOK as b was not dirty */
|
---|
| 372 | assert(rc == EOK);
|
---|
| 373 | *rfn = FS_NODE(nodep);
|
---|
| 374 | return EOK;
|
---|
| 375 | }
|
---|
| 376 | }
|
---|
| 377 | rc = block_put(b);
|
---|
| 378 | assert(rc == EOK); /* expect EOK as b was not dirty */
|
---|
| 379 | }
|
---|
| 380 |
|
---|
| 381 | fibril_mutex_unlock(&parentp->idx->lock);
|
---|
| 382 | *rfn = NULL;
|
---|
| 383 | return EOK;
|
---|
| 384 | }
|
---|
| 385 |
|
---|
[add5835] | 386 | /** Instantiate a FAT in-core node. */
|
---|
[073f550] | 387 | int fat_node_get(fs_node_t **rfn, dev_handle_t dev_handle, fs_index_t index)
|
---|
[add5835] | 388 | {
|
---|
[b6035ba] | 389 | fat_node_t *nodep;
|
---|
[add5835] | 390 | fat_idx_t *idxp;
|
---|
[0fc1e5d] | 391 | int rc;
|
---|
[add5835] | 392 |
|
---|
| 393 | idxp = fat_idx_get_by_index(dev_handle, index);
|
---|
[073f550] | 394 | if (!idxp) {
|
---|
| 395 | *rfn = NULL;
|
---|
| 396 | return EOK;
|
---|
| 397 | }
|
---|
[add5835] | 398 | /* idxp->lock held */
|
---|
[0fc1e5d] | 399 | rc = fat_node_get_core(&nodep, idxp);
|
---|
[6ebe721] | 400 | fibril_mutex_unlock(&idxp->lock);
|
---|
[0fc1e5d] | 401 | if (rc == EOK)
|
---|
| 402 | *rfn = FS_NODE(nodep);
|
---|
| 403 | return rc;
|
---|
[add5835] | 404 | }
|
---|
| 405 |
|
---|
[073f550] | 406 | int fat_node_put(fs_node_t *fn)
|
---|
[06901c6b] | 407 | {
|
---|
[b6035ba] | 408 | fat_node_t *nodep = FAT_NODE(fn);
|
---|
[6571b78] | 409 | bool destroy = false;
|
---|
[34b3ce3] | 410 |
|
---|
[6ebe721] | 411 | fibril_mutex_lock(&nodep->lock);
|
---|
[34b3ce3] | 412 | if (!--nodep->refcnt) {
|
---|
[6571b78] | 413 | if (nodep->idx) {
|
---|
[6ebe721] | 414 | fibril_mutex_lock(&ffn_mutex);
|
---|
[6571b78] | 415 | list_append(&nodep->ffn_link, &ffn_head);
|
---|
[6ebe721] | 416 | fibril_mutex_unlock(&ffn_mutex);
|
---|
[6571b78] | 417 | } else {
|
---|
| 418 | /*
|
---|
| 419 | * The node does not have any index structure associated
|
---|
| 420 | * with itself. This can only mean that we are releasing
|
---|
| 421 | * the node after a failed attempt to allocate the index
|
---|
| 422 | * structure for it.
|
---|
| 423 | */
|
---|
| 424 | destroy = true;
|
---|
| 425 | }
|
---|
[34b3ce3] | 426 | }
|
---|
[6ebe721] | 427 | fibril_mutex_unlock(&nodep->lock);
|
---|
[b6035ba] | 428 | if (destroy) {
|
---|
| 429 | free(nodep->bp);
|
---|
| 430 | free(nodep);
|
---|
| 431 | }
|
---|
[073f550] | 432 | return EOK;
|
---|
[06901c6b] | 433 | }
|
---|
| 434 |
|
---|
[073f550] | 435 | int fat_create_node(fs_node_t **rfn, dev_handle_t dev_handle, int flags)
|
---|
[80e8482] | 436 | {
|
---|
[6571b78] | 437 | fat_idx_t *idxp;
|
---|
| 438 | fat_node_t *nodep;
|
---|
[49df572] | 439 | fat_bs_t *bs;
|
---|
| 440 | fat_cluster_t mcl, lcl;
|
---|
| 441 | uint16_t bps;
|
---|
| 442 | int rc;
|
---|
| 443 |
|
---|
| 444 | bs = block_bb_get(dev_handle);
|
---|
| 445 | bps = uint16_t_le2host(bs->bps);
|
---|
| 446 | if (flags & L_DIRECTORY) {
|
---|
| 447 | /* allocate a cluster */
|
---|
| 448 | rc = fat_alloc_clusters(bs, dev_handle, 1, &mcl, &lcl);
|
---|
[073f550] | 449 | if (rc != EOK)
|
---|
| 450 | return rc;
|
---|
| 451 | /* populate the new cluster with unused dentries */
|
---|
| 452 | rc = fat_zero_cluster(bs, dev_handle, mcl);
|
---|
| 453 | if (rc != EOK) {
|
---|
| 454 | (void) fat_free_clusters(bs, dev_handle, mcl);
|
---|
| 455 | return rc;
|
---|
| 456 | }
|
---|
[49df572] | 457 | }
|
---|
[6571b78] | 458 |
|
---|
[17bf658] | 459 | rc = fat_node_get_new(&nodep);
|
---|
| 460 | if (rc != EOK) {
|
---|
[cca29e3c] | 461 | (void) fat_free_clusters(bs, dev_handle, mcl);
|
---|
[17bf658] | 462 | return rc;
|
---|
[49df572] | 463 | }
|
---|
[6571b78] | 464 | idxp = fat_idx_get_new(dev_handle);
|
---|
| 465 | if (!idxp) {
|
---|
[cca29e3c] | 466 | (void) fat_free_clusters(bs, dev_handle, mcl);
|
---|
[073f550] | 467 | (void) fat_node_put(FS_NODE(nodep));
|
---|
| 468 | return ENOMEM; /* FIXME: determine the true error code */
|
---|
[6571b78] | 469 | }
|
---|
| 470 | /* idxp->lock held */
|
---|
| 471 | if (flags & L_DIRECTORY) {
|
---|
| 472 | nodep->type = FAT_DIRECTORY;
|
---|
[49df572] | 473 | nodep->firstc = mcl;
|
---|
| 474 | nodep->size = bps * bs->spc;
|
---|
[6571b78] | 475 | } else {
|
---|
| 476 | nodep->type = FAT_FILE;
|
---|
[49df572] | 477 | nodep->firstc = FAT_CLST_RES0;
|
---|
| 478 | nodep->size = 0;
|
---|
[6571b78] | 479 | }
|
---|
| 480 | nodep->lnkcnt = 0; /* not linked anywhere */
|
---|
| 481 | nodep->refcnt = 1;
|
---|
[49df572] | 482 | nodep->dirty = true;
|
---|
[6571b78] | 483 |
|
---|
| 484 | nodep->idx = idxp;
|
---|
| 485 | idxp->nodep = nodep;
|
---|
| 486 |
|
---|
[6ebe721] | 487 | fibril_mutex_unlock(&idxp->lock);
|
---|
[073f550] | 488 | *rfn = FS_NODE(nodep);
|
---|
| 489 | return EOK;
|
---|
[80e8482] | 490 | }
|
---|
| 491 |
|
---|
[b6035ba] | 492 | int fat_destroy_node(fs_node_t *fn)
|
---|
[80e8482] | 493 | {
|
---|
[b6035ba] | 494 | fat_node_t *nodep = FAT_NODE(fn);
|
---|
[50e5b25] | 495 | fat_bs_t *bs;
|
---|
[073f550] | 496 | bool has_children;
|
---|
| 497 | int rc;
|
---|
[50e5b25] | 498 |
|
---|
| 499 | /*
|
---|
| 500 | * The node is not reachable from the file system. This means that the
|
---|
| 501 | * link count should be zero and that the index structure cannot be
|
---|
| 502 | * found in the position hash. Obviously, we don't need to lock the node
|
---|
| 503 | * nor its index structure.
|
---|
| 504 | */
|
---|
| 505 | assert(nodep->lnkcnt == 0);
|
---|
| 506 |
|
---|
| 507 | /*
|
---|
| 508 | * The node may not have any children.
|
---|
| 509 | */
|
---|
[073f550] | 510 | rc = fat_has_children(&has_children, fn);
|
---|
| 511 | if (rc != EOK)
|
---|
| 512 | return rc;
|
---|
| 513 | assert(!has_children);
|
---|
[50e5b25] | 514 |
|
---|
| 515 | bs = block_bb_get(nodep->idx->dev_handle);
|
---|
| 516 | if (nodep->firstc != FAT_CLST_RES0) {
|
---|
| 517 | assert(nodep->size);
|
---|
| 518 | /* Free all clusters allocated to the node. */
|
---|
[cca29e3c] | 519 | rc = fat_free_clusters(bs, nodep->idx->dev_handle,
|
---|
| 520 | nodep->firstc);
|
---|
[50e5b25] | 521 | }
|
---|
| 522 |
|
---|
| 523 | fat_idx_destroy(nodep->idx);
|
---|
[b6035ba] | 524 | free(nodep->bp);
|
---|
[50e5b25] | 525 | free(nodep);
|
---|
[cca29e3c] | 526 | return rc;
|
---|
[80e8482] | 527 | }
|
---|
| 528 |
|
---|
[b6035ba] | 529 | int fat_link(fs_node_t *pfn, fs_node_t *cfn, const char *name)
|
---|
[80e8482] | 530 | {
|
---|
[b6035ba] | 531 | fat_node_t *parentp = FAT_NODE(pfn);
|
---|
| 532 | fat_node_t *childp = FAT_NODE(cfn);
|
---|
[0fdd6bb] | 533 | fat_dentry_t *d;
|
---|
| 534 | fat_bs_t *bs;
|
---|
| 535 | block_t *b;
|
---|
[a405563] | 536 | unsigned i, j;
|
---|
[0fdd6bb] | 537 | uint16_t bps;
|
---|
| 538 | unsigned dps;
|
---|
| 539 | unsigned blocks;
|
---|
[e32b65a] | 540 | fat_cluster_t mcl, lcl;
|
---|
| 541 | int rc;
|
---|
[0fdd6bb] | 542 |
|
---|
[6ebe721] | 543 | fibril_mutex_lock(&childp->lock);
|
---|
[0fdd6bb] | 544 | if (childp->lnkcnt == 1) {
|
---|
| 545 | /*
|
---|
| 546 | * On FAT, we don't support multiple hard links.
|
---|
| 547 | */
|
---|
[6ebe721] | 548 | fibril_mutex_unlock(&childp->lock);
|
---|
[0fdd6bb] | 549 | return EMLINK;
|
---|
| 550 | }
|
---|
| 551 | assert(childp->lnkcnt == 0);
|
---|
[6ebe721] | 552 | fibril_mutex_unlock(&childp->lock);
|
---|
[0fdd6bb] | 553 |
|
---|
| 554 | if (!fat_dentry_name_verify(name)) {
|
---|
| 555 | /*
|
---|
| 556 | * Attempt to create unsupported name.
|
---|
| 557 | */
|
---|
| 558 | return ENOTSUP;
|
---|
| 559 | }
|
---|
| 560 |
|
---|
| 561 | /*
|
---|
| 562 | * Get us an unused parent node's dentry or grow the parent and allocate
|
---|
| 563 | * a new one.
|
---|
| 564 | */
|
---|
| 565 |
|
---|
[6ebe721] | 566 | fibril_mutex_lock(&parentp->idx->lock);
|
---|
[0fdd6bb] | 567 | bs = block_bb_get(parentp->idx->dev_handle);
|
---|
| 568 | bps = uint16_t_le2host(bs->bps);
|
---|
| 569 | dps = bps / sizeof(fat_dentry_t);
|
---|
| 570 |
|
---|
| 571 | blocks = parentp->size / bps;
|
---|
| 572 |
|
---|
| 573 | for (i = 0; i < blocks; i++) {
|
---|
[684b655] | 574 | rc = fat_block_get(&b, bs, parentp, i, BLOCK_FLAGS_NONE);
|
---|
[4b4668e] | 575 | if (rc != EOK) {
|
---|
| 576 | fibril_mutex_unlock(&parentp->idx->lock);
|
---|
| 577 | return rc;
|
---|
| 578 | }
|
---|
[0fdd6bb] | 579 | for (j = 0; j < dps; j++) {
|
---|
| 580 | d = ((fat_dentry_t *)b->data) + j;
|
---|
| 581 | switch (fat_classify_dentry(d)) {
|
---|
| 582 | case FAT_DENTRY_SKIP:
|
---|
| 583 | case FAT_DENTRY_VALID:
|
---|
| 584 | /* skipping used and meta entries */
|
---|
| 585 | continue;
|
---|
| 586 | case FAT_DENTRY_FREE:
|
---|
| 587 | case FAT_DENTRY_LAST:
|
---|
| 588 | /* found an empty slot */
|
---|
| 589 | goto hit;
|
---|
| 590 | }
|
---|
| 591 | }
|
---|
[c91f2d1b] | 592 | rc = block_put(b);
|
---|
[4b4668e] | 593 | if (rc != EOK) {
|
---|
| 594 | fibril_mutex_unlock(&parentp->idx->lock);
|
---|
| 595 | return rc;
|
---|
| 596 | }
|
---|
[0fdd6bb] | 597 | }
|
---|
[699743c] | 598 | j = 0;
|
---|
[0fdd6bb] | 599 |
|
---|
| 600 | /*
|
---|
| 601 | * We need to grow the parent in order to create a new unused dentry.
|
---|
| 602 | */
|
---|
[b713492b] | 603 | if (parentp->firstc == FAT_CLST_ROOT) {
|
---|
[e32b65a] | 604 | /* Can't grow the root directory. */
|
---|
[6ebe721] | 605 | fibril_mutex_unlock(&parentp->idx->lock);
|
---|
[e32b65a] | 606 | return ENOSPC;
|
---|
| 607 | }
|
---|
| 608 | rc = fat_alloc_clusters(bs, parentp->idx->dev_handle, 1, &mcl, &lcl);
|
---|
| 609 | if (rc != EOK) {
|
---|
[6ebe721] | 610 | fibril_mutex_unlock(&parentp->idx->lock);
|
---|
[e32b65a] | 611 | return rc;
|
---|
| 612 | }
|
---|
[cca29e3c] | 613 | rc = fat_zero_cluster(bs, parentp->idx->dev_handle, mcl);
|
---|
[4b4668e] | 614 | if (rc != EOK) {
|
---|
[073f550] | 615 | (void) fat_free_clusters(bs, parentp->idx->dev_handle, mcl);
|
---|
[4b4668e] | 616 | fibril_mutex_unlock(&parentp->idx->lock);
|
---|
| 617 | return rc;
|
---|
| 618 | }
|
---|
[cca29e3c] | 619 | rc = fat_append_clusters(bs, parentp, mcl);
|
---|
[4b4668e] | 620 | if (rc != EOK) {
|
---|
[073f550] | 621 | (void) fat_free_clusters(bs, parentp->idx->dev_handle, mcl);
|
---|
[4b4668e] | 622 | fibril_mutex_unlock(&parentp->idx->lock);
|
---|
| 623 | return rc;
|
---|
| 624 | }
|
---|
[d44aabd] | 625 | parentp->size += bps * bs->spc;
|
---|
| 626 | parentp->dirty = true; /* need to sync node */
|
---|
[684b655] | 627 | rc = fat_block_get(&b, bs, parentp, i, BLOCK_FLAGS_NONE);
|
---|
[4b4668e] | 628 | if (rc != EOK) {
|
---|
| 629 | fibril_mutex_unlock(&parentp->idx->lock);
|
---|
| 630 | return rc;
|
---|
| 631 | }
|
---|
[e32b65a] | 632 | d = (fat_dentry_t *)b->data;
|
---|
[0fdd6bb] | 633 |
|
---|
| 634 | hit:
|
---|
| 635 | /*
|
---|
| 636 | * At this point we only establish the link between the parent and the
|
---|
| 637 | * child. The dentry, except of the name and the extension, will remain
|
---|
[e32b65a] | 638 | * uninitialized until the corresponding node is synced. Thus the valid
|
---|
| 639 | * dentry data is kept in the child node structure.
|
---|
[0fdd6bb] | 640 | */
|
---|
| 641 | memset(d, 0, sizeof(fat_dentry_t));
|
---|
| 642 | fat_dentry_name_set(d, name);
|
---|
| 643 | b->dirty = true; /* need to sync block */
|
---|
[c91f2d1b] | 644 | rc = block_put(b);
|
---|
[6ebe721] | 645 | fibril_mutex_unlock(&parentp->idx->lock);
|
---|
[4b4668e] | 646 | if (rc != EOK)
|
---|
| 647 | return rc;
|
---|
[0fdd6bb] | 648 |
|
---|
[6ebe721] | 649 | fibril_mutex_lock(&childp->idx->lock);
|
---|
[1baec4b] | 650 |
|
---|
| 651 | /*
|
---|
| 652 | * If possible, create the Sub-directory Identifier Entry and the
|
---|
| 653 | * Sub-directory Parent Pointer Entry (i.e. "." and ".."). These entries
|
---|
| 654 | * are not mandatory according to Standard ECMA-107 and HelenOS VFS does
|
---|
| 655 | * not use them anyway, so this is rather a sign of our good will.
|
---|
| 656 | */
|
---|
[684b655] | 657 | rc = fat_block_get(&b, bs, childp, 0, BLOCK_FLAGS_NONE);
|
---|
[4b4668e] | 658 | if (rc != EOK) {
|
---|
| 659 | /*
|
---|
| 660 | * Rather than returning an error, simply skip the creation of
|
---|
| 661 | * these two entries.
|
---|
| 662 | */
|
---|
| 663 | goto skip_dots;
|
---|
| 664 | }
|
---|
[1baec4b] | 665 | d = (fat_dentry_t *)b->data;
|
---|
| 666 | if (fat_classify_dentry(d) == FAT_DENTRY_LAST ||
|
---|
[92fd52d7] | 667 | str_cmp(d->name, FAT_NAME_DOT) == 0) {
|
---|
[1baec4b] | 668 | memset(d, 0, sizeof(fat_dentry_t));
|
---|
[6eb2e96] | 669 | str_cpy(d->name, 8, FAT_NAME_DOT);
|
---|
| 670 | str_cpy(d->ext, 3, FAT_EXT_PAD);
|
---|
[1baec4b] | 671 | d->attr = FAT_ATTR_SUBDIR;
|
---|
| 672 | d->firstc = host2uint16_t_le(childp->firstc);
|
---|
| 673 | /* TODO: initialize also the date/time members. */
|
---|
| 674 | }
|
---|
| 675 | d++;
|
---|
| 676 | if (fat_classify_dentry(d) == FAT_DENTRY_LAST ||
|
---|
[92fd52d7] | 677 | str_cmp(d->name, FAT_NAME_DOT_DOT) == 0) {
|
---|
[1baec4b] | 678 | memset(d, 0, sizeof(fat_dentry_t));
|
---|
[6eb2e96] | 679 | str_cpy(d->name, 8, FAT_NAME_DOT_DOT);
|
---|
| 680 | str_cpy(d->ext, 3, FAT_EXT_PAD);
|
---|
[1baec4b] | 681 | d->attr = FAT_ATTR_SUBDIR;
|
---|
| 682 | d->firstc = (parentp->firstc == FAT_CLST_ROOT) ?
|
---|
| 683 | host2uint16_t_le(FAT_CLST_RES0) :
|
---|
| 684 | host2uint16_t_le(parentp->firstc);
|
---|
| 685 | /* TODO: initialize also the date/time members. */
|
---|
| 686 | }
|
---|
| 687 | b->dirty = true; /* need to sync block */
|
---|
[4b4668e] | 688 | /*
|
---|
| 689 | * Ignore the return value as we would have fallen through on error
|
---|
| 690 | * anyway.
|
---|
| 691 | */
|
---|
| 692 | (void) block_put(b);
|
---|
| 693 | skip_dots:
|
---|
[1baec4b] | 694 |
|
---|
[0fdd6bb] | 695 | childp->idx->pfc = parentp->firstc;
|
---|
| 696 | childp->idx->pdi = i * dps + j;
|
---|
[6ebe721] | 697 | fibril_mutex_unlock(&childp->idx->lock);
|
---|
[0fdd6bb] | 698 |
|
---|
[6ebe721] | 699 | fibril_mutex_lock(&childp->lock);
|
---|
[0fdd6bb] | 700 | childp->lnkcnt = 1;
|
---|
| 701 | childp->dirty = true; /* need to sync node */
|
---|
[6ebe721] | 702 | fibril_mutex_unlock(&childp->lock);
|
---|
[0fdd6bb] | 703 |
|
---|
| 704 | /*
|
---|
| 705 | * Hash in the index structure into the position hash.
|
---|
| 706 | */
|
---|
| 707 | fat_idx_hashin(childp->idx);
|
---|
| 708 |
|
---|
| 709 | return EOK;
|
---|
[80e8482] | 710 | }
|
---|
| 711 |
|
---|
[cf95bc0] | 712 | int fat_unlink(fs_node_t *pfn, fs_node_t *cfn, const char *nm)
|
---|
[80e8482] | 713 | {
|
---|
[b6035ba] | 714 | fat_node_t *parentp = FAT_NODE(pfn);
|
---|
| 715 | fat_node_t *childp = FAT_NODE(cfn);
|
---|
[a31c1ccf] | 716 | fat_bs_t *bs;
|
---|
| 717 | fat_dentry_t *d;
|
---|
| 718 | uint16_t bps;
|
---|
| 719 | block_t *b;
|
---|
[073f550] | 720 | bool has_children;
|
---|
[c91f2d1b] | 721 | int rc;
|
---|
[a31c1ccf] | 722 |
|
---|
[770d281] | 723 | if (!parentp)
|
---|
| 724 | return EBUSY;
|
---|
[0be3e8b] | 725 |
|
---|
[073f550] | 726 | rc = fat_has_children(&has_children, cfn);
|
---|
| 727 | if (rc != EOK)
|
---|
| 728 | return rc;
|
---|
| 729 | if (has_children)
|
---|
[0be3e8b] | 730 | return ENOTEMPTY;
|
---|
[770d281] | 731 |
|
---|
[6ebe721] | 732 | fibril_mutex_lock(&parentp->lock);
|
---|
| 733 | fibril_mutex_lock(&childp->lock);
|
---|
[a31c1ccf] | 734 | assert(childp->lnkcnt == 1);
|
---|
[6ebe721] | 735 | fibril_mutex_lock(&childp->idx->lock);
|
---|
[a31c1ccf] | 736 | bs = block_bb_get(childp->idx->dev_handle);
|
---|
| 737 | bps = uint16_t_le2host(bs->bps);
|
---|
| 738 |
|
---|
[684b655] | 739 | rc = _fat_block_get(&b, bs, childp->idx->dev_handle, childp->idx->pfc,
|
---|
[a31c1ccf] | 740 | (childp->idx->pdi * sizeof(fat_dentry_t)) / bps,
|
---|
| 741 | BLOCK_FLAGS_NONE);
|
---|
[46c0498] | 742 | if (rc != EOK)
|
---|
| 743 | goto error;
|
---|
[a31c1ccf] | 744 | d = (fat_dentry_t *)b->data +
|
---|
| 745 | (childp->idx->pdi % (bps / sizeof(fat_dentry_t)));
|
---|
| 746 | /* mark the dentry as not-currently-used */
|
---|
| 747 | d->name[0] = FAT_DENTRY_ERASED;
|
---|
| 748 | b->dirty = true; /* need to sync block */
|
---|
[c91f2d1b] | 749 | rc = block_put(b);
|
---|
[46c0498] | 750 | if (rc != EOK)
|
---|
| 751 | goto error;
|
---|
[a31c1ccf] | 752 |
|
---|
| 753 | /* remove the index structure from the position hash */
|
---|
| 754 | fat_idx_hashout(childp->idx);
|
---|
| 755 | /* clear position information */
|
---|
| 756 | childp->idx->pfc = FAT_CLST_RES0;
|
---|
| 757 | childp->idx->pdi = 0;
|
---|
[6ebe721] | 758 | fibril_mutex_unlock(&childp->idx->lock);
|
---|
[a31c1ccf] | 759 | childp->lnkcnt = 0;
|
---|
| 760 | childp->dirty = true;
|
---|
[6ebe721] | 761 | fibril_mutex_unlock(&childp->lock);
|
---|
| 762 | fibril_mutex_unlock(&parentp->lock);
|
---|
[a31c1ccf] | 763 |
|
---|
| 764 | return EOK;
|
---|
[46c0498] | 765 |
|
---|
| 766 | error:
|
---|
| 767 | fibril_mutex_unlock(&parentp->idx->lock);
|
---|
| 768 | fibril_mutex_unlock(&childp->lock);
|
---|
| 769 | fibril_mutex_unlock(&childp->idx->lock);
|
---|
| 770 | return rc;
|
---|
[80e8482] | 771 | }
|
---|
| 772 |
|
---|
[073f550] | 773 | int fat_has_children(bool *has_children, fs_node_t *fn)
|
---|
[32fb10ed] | 774 | {
|
---|
[7858bc5f] | 775 | fat_bs_t *bs;
|
---|
[b6035ba] | 776 | fat_node_t *nodep = FAT_NODE(fn);
|
---|
[32fb10ed] | 777 | unsigned bps;
|
---|
| 778 | unsigned dps;
|
---|
| 779 | unsigned blocks;
|
---|
[7858bc5f] | 780 | block_t *b;
|
---|
[32fb10ed] | 781 | unsigned i, j;
|
---|
[c91f2d1b] | 782 | int rc;
|
---|
[32fb10ed] | 783 |
|
---|
[073f550] | 784 | if (nodep->type != FAT_DIRECTORY) {
|
---|
| 785 | *has_children = false;
|
---|
| 786 | return EOK;
|
---|
| 787 | }
|
---|
[b0247bac] | 788 |
|
---|
[6ebe721] | 789 | fibril_mutex_lock(&nodep->idx->lock);
|
---|
[7858bc5f] | 790 | bs = block_bb_get(nodep->idx->dev_handle);
|
---|
| 791 | bps = uint16_t_le2host(bs->bps);
|
---|
[32fb10ed] | 792 | dps = bps / sizeof(fat_dentry_t);
|
---|
| 793 |
|
---|
[b0247bac] | 794 | blocks = nodep->size / bps;
|
---|
[32fb10ed] | 795 |
|
---|
| 796 | for (i = 0; i < blocks; i++) {
|
---|
| 797 | fat_dentry_t *d;
|
---|
| 798 |
|
---|
[684b655] | 799 | rc = fat_block_get(&b, bs, nodep, i, BLOCK_FLAGS_NONE);
|
---|
[073f550] | 800 | if (rc != EOK) {
|
---|
| 801 | fibril_mutex_unlock(&nodep->idx->lock);
|
---|
| 802 | return rc;
|
---|
| 803 | }
|
---|
[b0247bac] | 804 | for (j = 0; j < dps; j++) {
|
---|
[32fb10ed] | 805 | d = ((fat_dentry_t *)b->data) + j;
|
---|
| 806 | switch (fat_classify_dentry(d)) {
|
---|
| 807 | case FAT_DENTRY_SKIP:
|
---|
[0fdd6bb] | 808 | case FAT_DENTRY_FREE:
|
---|
[32fb10ed] | 809 | continue;
|
---|
| 810 | case FAT_DENTRY_LAST:
|
---|
[c91f2d1b] | 811 | rc = block_put(b);
|
---|
[073f550] | 812 | /* expect EOK as b was not dirty */
|
---|
[c91f2d1b] | 813 | assert(rc == EOK);
|
---|
[6ebe721] | 814 | fibril_mutex_unlock(&nodep->idx->lock);
|
---|
[073f550] | 815 | *has_children = false;
|
---|
| 816 | return EOK;
|
---|
[32fb10ed] | 817 | default:
|
---|
| 818 | case FAT_DENTRY_VALID:
|
---|
[c91f2d1b] | 819 | rc = block_put(b);
|
---|
[073f550] | 820 | /* expect EOK as b was not dirty */
|
---|
[c91f2d1b] | 821 | assert(rc == EOK);
|
---|
[6ebe721] | 822 | fibril_mutex_unlock(&nodep->idx->lock);
|
---|
[073f550] | 823 | *has_children = true;
|
---|
| 824 | return EOK;
|
---|
[32fb10ed] | 825 | }
|
---|
| 826 | }
|
---|
[c91f2d1b] | 827 | rc = block_put(b);
|
---|
[073f550] | 828 | assert(rc == EOK); /* expect EOK as b was not dirty */
|
---|
[32fb10ed] | 829 | }
|
---|
| 830 |
|
---|
[6ebe721] | 831 | fibril_mutex_unlock(&nodep->idx->lock);
|
---|
[073f550] | 832 | *has_children = false;
|
---|
| 833 | return EOK;
|
---|
| 834 | }
|
---|
| 835 |
|
---|
| 836 |
|
---|
| 837 | fs_index_t fat_index_get(fs_node_t *fn)
|
---|
| 838 | {
|
---|
| 839 | return FAT_NODE(fn)->idx->index;
|
---|
| 840 | }
|
---|
| 841 |
|
---|
| 842 | size_t fat_size_get(fs_node_t *fn)
|
---|
| 843 | {
|
---|
| 844 | return FAT_NODE(fn)->size;
|
---|
[32fb10ed] | 845 | }
|
---|
| 846 |
|
---|
[073f550] | 847 | unsigned fat_lnkcnt_get(fs_node_t *fn)
|
---|
[74ea3c6] | 848 | {
|
---|
[073f550] | 849 | return FAT_NODE(fn)->lnkcnt;
|
---|
[74ea3c6] | 850 | }
|
---|
| 851 |
|
---|
[50e5b25] | 852 | char fat_plb_get_char(unsigned pos)
|
---|
[74ea3c6] | 853 | {
|
---|
| 854 | return fat_reg.plb_ro[pos % PLB_SIZE];
|
---|
| 855 | }
|
---|
| 856 |
|
---|
[b6035ba] | 857 | bool fat_is_directory(fs_node_t *fn)
|
---|
[e1e3b26] | 858 | {
|
---|
[b6035ba] | 859 | return FAT_NODE(fn)->type == FAT_DIRECTORY;
|
---|
[e1e3b26] | 860 | }
|
---|
| 861 |
|
---|
[b6035ba] | 862 | bool fat_is_file(fs_node_t *fn)
|
---|
[e1e3b26] | 863 | {
|
---|
[b6035ba] | 864 | return FAT_NODE(fn)->type == FAT_FILE;
|
---|
[e1e3b26] | 865 | }
|
---|
| 866 |
|
---|
[a2aa1dec] | 867 | /** libfs operations */
|
---|
| 868 | libfs_ops_t fat_libfs_ops = {
|
---|
[073f550] | 869 | .root_get = fat_root_get,
|
---|
[a2aa1dec] | 870 | .match = fat_match,
|
---|
| 871 | .node_get = fat_node_get,
|
---|
[06901c6b] | 872 | .node_put = fat_node_put,
|
---|
[6571b78] | 873 | .create = fat_create_node,
|
---|
| 874 | .destroy = fat_destroy_node,
|
---|
[80e8482] | 875 | .link = fat_link,
|
---|
| 876 | .unlink = fat_unlink,
|
---|
[073f550] | 877 | .has_children = fat_has_children,
|
---|
[e1e3b26] | 878 | .index_get = fat_index_get,
|
---|
| 879 | .size_get = fat_size_get,
|
---|
| 880 | .lnkcnt_get = fat_lnkcnt_get,
|
---|
[74ea3c6] | 881 | .plb_get_char = fat_plb_get_char,
|
---|
[e1e3b26] | 882 | .is_directory = fat_is_directory,
|
---|
| 883 | .is_file = fat_is_file
|
---|
[a2aa1dec] | 884 | };
|
---|
| 885 |
|
---|
[0013b9ce] | 886 | /*
|
---|
| 887 | * VFS operations.
|
---|
| 888 | */
|
---|
| 889 |
|
---|
[cde485d] | 890 | void fat_mounted(ipc_callid_t rid, ipc_call_t *request)
|
---|
| 891 | {
|
---|
| 892 | dev_handle_t dev_handle = (dev_handle_t) IPC_GET_ARG1(*request);
|
---|
[1fbe064b] | 893 | enum cache_mode cmode;
|
---|
[7858bc5f] | 894 | fat_bs_t *bs;
|
---|
[7a35204a] | 895 | uint16_t bps;
|
---|
[689f036] | 896 | uint16_t rde;
|
---|
[cde485d] | 897 | int rc;
|
---|
| 898 |
|
---|
[594303b] | 899 | /* accept the mount options */
|
---|
| 900 | ipc_callid_t callid;
|
---|
| 901 | size_t size;
|
---|
| 902 | if (!ipc_data_write_receive(&callid, &size)) {
|
---|
| 903 | ipc_answer_0(callid, EINVAL);
|
---|
| 904 | ipc_answer_0(rid, EINVAL);
|
---|
| 905 | return;
|
---|
| 906 | }
|
---|
| 907 | char *opts = malloc(size + 1);
|
---|
| 908 | if (!opts) {
|
---|
| 909 | ipc_answer_0(callid, ENOMEM);
|
---|
| 910 | ipc_answer_0(rid, ENOMEM);
|
---|
| 911 | return;
|
---|
| 912 | }
|
---|
| 913 | ipcarg_t retval = ipc_data_write_finalize(callid, opts, size);
|
---|
| 914 | if (retval != EOK) {
|
---|
| 915 | ipc_answer_0(rid, retval);
|
---|
| 916 | free(opts);
|
---|
| 917 | return;
|
---|
| 918 | }
|
---|
| 919 | opts[size] = '\0';
|
---|
| 920 |
|
---|
[1fbe064b] | 921 | /* Check for option enabling write through. */
|
---|
| 922 | if (str_cmp(opts, "wtcache") == 0)
|
---|
| 923 | cmode = CACHE_MODE_WT;
|
---|
| 924 | else
|
---|
| 925 | cmode = CACHE_MODE_WB;
|
---|
| 926 |
|
---|
[7858bc5f] | 927 | /* initialize libblock */
|
---|
[6284978] | 928 | rc = block_init(dev_handle, BS_SIZE);
|
---|
[7a35204a] | 929 | if (rc != EOK) {
|
---|
[6284978] | 930 | ipc_answer_0(rid, rc);
|
---|
| 931 | return;
|
---|
| 932 | }
|
---|
| 933 |
|
---|
| 934 | /* prepare the boot block */
|
---|
[1ee00b7] | 935 | rc = block_bb_read(dev_handle, BS_BLOCK);
|
---|
[6284978] | 936 | if (rc != EOK) {
|
---|
| 937 | block_fini(dev_handle);
|
---|
| 938 | ipc_answer_0(rid, rc);
|
---|
[7a35204a] | 939 | return;
|
---|
| 940 | }
|
---|
| 941 |
|
---|
[7858bc5f] | 942 | /* get the buffer with the boot sector */
|
---|
| 943 | bs = block_bb_get(dev_handle);
|
---|
| 944 |
|
---|
[689f036] | 945 | /* Read the number of root directory entries. */
|
---|
[7858bc5f] | 946 | bps = uint16_t_le2host(bs->bps);
|
---|
| 947 | rde = uint16_t_le2host(bs->root_ent_max);
|
---|
[689f036] | 948 |
|
---|
[7a35204a] | 949 | if (bps != BS_SIZE) {
|
---|
[7858bc5f] | 950 | block_fini(dev_handle);
|
---|
[7a35204a] | 951 | ipc_answer_0(rid, ENOTSUP);
|
---|
| 952 | return;
|
---|
| 953 | }
|
---|
| 954 |
|
---|
[f1ba5d6] | 955 | /* Initialize the block cache */
|
---|
[1fbe064b] | 956 | rc = block_cache_init(dev_handle, bps, 0 /* XXX */, cmode);
|
---|
[f1ba5d6] | 957 | if (rc != EOK) {
|
---|
| 958 | block_fini(dev_handle);
|
---|
| 959 | ipc_answer_0(rid, rc);
|
---|
| 960 | return;
|
---|
| 961 | }
|
---|
| 962 |
|
---|
[cde485d] | 963 | rc = fat_idx_init_by_dev_handle(dev_handle);
|
---|
| 964 | if (rc != EOK) {
|
---|
[7858bc5f] | 965 | block_fini(dev_handle);
|
---|
[cde485d] | 966 | ipc_answer_0(rid, rc);
|
---|
| 967 | return;
|
---|
| 968 | }
|
---|
| 969 |
|
---|
[689f036] | 970 | /* Initialize the root node. */
|
---|
[b6035ba] | 971 | fs_node_t *rfn = (fs_node_t *)malloc(sizeof(fs_node_t));
|
---|
| 972 | if (!rfn) {
|
---|
| 973 | block_fini(dev_handle);
|
---|
| 974 | fat_idx_fini_by_dev_handle(dev_handle);
|
---|
| 975 | ipc_answer_0(rid, ENOMEM);
|
---|
| 976 | return;
|
---|
| 977 | }
|
---|
[83937ccd] | 978 | fs_node_initialize(rfn);
|
---|
[689f036] | 979 | fat_node_t *rootp = (fat_node_t *)malloc(sizeof(fat_node_t));
|
---|
| 980 | if (!rootp) {
|
---|
[b6035ba] | 981 | free(rfn);
|
---|
[7858bc5f] | 982 | block_fini(dev_handle);
|
---|
[689f036] | 983 | fat_idx_fini_by_dev_handle(dev_handle);
|
---|
| 984 | ipc_answer_0(rid, ENOMEM);
|
---|
| 985 | return;
|
---|
| 986 | }
|
---|
| 987 | fat_node_initialize(rootp);
|
---|
| 988 |
|
---|
| 989 | fat_idx_t *ridxp = fat_idx_get_by_pos(dev_handle, FAT_CLST_ROOTPAR, 0);
|
---|
| 990 | if (!ridxp) {
|
---|
[b6035ba] | 991 | free(rfn);
|
---|
[689f036] | 992 | free(rootp);
|
---|
[b6035ba] | 993 | block_fini(dev_handle);
|
---|
[689f036] | 994 | fat_idx_fini_by_dev_handle(dev_handle);
|
---|
| 995 | ipc_answer_0(rid, ENOMEM);
|
---|
| 996 | return;
|
---|
| 997 | }
|
---|
| 998 | assert(ridxp->index == 0);
|
---|
| 999 | /* ridxp->lock held */
|
---|
| 1000 |
|
---|
| 1001 | rootp->type = FAT_DIRECTORY;
|
---|
| 1002 | rootp->firstc = FAT_CLST_ROOT;
|
---|
| 1003 | rootp->refcnt = 1;
|
---|
[5ab597d] | 1004 | rootp->lnkcnt = 0; /* FS root is not linked */
|
---|
[689f036] | 1005 | rootp->size = rde * sizeof(fat_dentry_t);
|
---|
| 1006 | rootp->idx = ridxp;
|
---|
| 1007 | ridxp->nodep = rootp;
|
---|
[b6035ba] | 1008 | rootp->bp = rfn;
|
---|
| 1009 | rfn->data = rootp;
|
---|
[689f036] | 1010 |
|
---|
[6ebe721] | 1011 | fibril_mutex_unlock(&ridxp->lock);
|
---|
[689f036] | 1012 |
|
---|
[5ab597d] | 1013 | ipc_answer_3(rid, EOK, ridxp->index, rootp->size, rootp->lnkcnt);
|
---|
[cde485d] | 1014 | }
|
---|
| 1015 |
|
---|
| 1016 | void fat_mount(ipc_callid_t rid, ipc_call_t *request)
|
---|
| 1017 | {
|
---|
[16d17ca] | 1018 | libfs_mount(&fat_libfs_ops, fat_reg.fs_handle, rid, request);
|
---|
[cde485d] | 1019 | }
|
---|
| 1020 |
|
---|
[be815bc] | 1021 | void fat_lookup(ipc_callid_t rid, ipc_call_t *request)
|
---|
| 1022 | {
|
---|
[a2aa1dec] | 1023 | libfs_lookup(&fat_libfs_ops, fat_reg.fs_handle, rid, request);
|
---|
[be815bc] | 1024 | }
|
---|
| 1025 |
|
---|
[4bf40f6] | 1026 | void fat_read(ipc_callid_t rid, ipc_call_t *request)
|
---|
| 1027 | {
|
---|
| 1028 | dev_handle_t dev_handle = (dev_handle_t)IPC_GET_ARG1(*request);
|
---|
| 1029 | fs_index_t index = (fs_index_t)IPC_GET_ARG2(*request);
|
---|
| 1030 | off_t pos = (off_t)IPC_GET_ARG3(*request);
|
---|
[073f550] | 1031 | fs_node_t *fn;
|
---|
[b6035ba] | 1032 | fat_node_t *nodep;
|
---|
[7858bc5f] | 1033 | fat_bs_t *bs;
|
---|
[cb682eb] | 1034 | uint16_t bps;
|
---|
[79d031b] | 1035 | size_t bytes;
|
---|
[7858bc5f] | 1036 | block_t *b;
|
---|
[c91f2d1b] | 1037 | int rc;
|
---|
[79d031b] | 1038 |
|
---|
[073f550] | 1039 | rc = fat_node_get(&fn, dev_handle, index);
|
---|
| 1040 | if (rc != EOK) {
|
---|
| 1041 | ipc_answer_0(rid, rc);
|
---|
| 1042 | return;
|
---|
| 1043 | }
|
---|
[b6035ba] | 1044 | if (!fn) {
|
---|
[4bf40f6] | 1045 | ipc_answer_0(rid, ENOENT);
|
---|
| 1046 | return;
|
---|
| 1047 | }
|
---|
[b6035ba] | 1048 | nodep = FAT_NODE(fn);
|
---|
[4bf40f6] | 1049 |
|
---|
| 1050 | ipc_callid_t callid;
|
---|
| 1051 | size_t len;
|
---|
[6808614] | 1052 | if (!ipc_data_read_receive(&callid, &len)) {
|
---|
[b6035ba] | 1053 | fat_node_put(fn);
|
---|
[4bf40f6] | 1054 | ipc_answer_0(callid, EINVAL);
|
---|
| 1055 | ipc_answer_0(rid, EINVAL);
|
---|
| 1056 | return;
|
---|
| 1057 | }
|
---|
| 1058 |
|
---|
[7858bc5f] | 1059 | bs = block_bb_get(dev_handle);
|
---|
| 1060 | bps = uint16_t_le2host(bs->bps);
|
---|
[cb682eb] | 1061 |
|
---|
[4bf40f6] | 1062 | if (nodep->type == FAT_FILE) {
|
---|
[ddd1219] | 1063 | /*
|
---|
| 1064 | * Our strategy for regular file reads is to read one block at
|
---|
| 1065 | * most and make use of the possibility to return less data than
|
---|
| 1066 | * requested. This keeps the code very simple.
|
---|
| 1067 | */
|
---|
[0d974d8] | 1068 | if (pos >= nodep->size) {
|
---|
[7d861950] | 1069 | /* reading beyond the EOF */
|
---|
| 1070 | bytes = 0;
|
---|
[0d974d8] | 1071 | (void) ipc_data_read_finalize(callid, NULL, 0);
|
---|
| 1072 | } else {
|
---|
| 1073 | bytes = min(len, bps - pos % bps);
|
---|
| 1074 | bytes = min(bytes, nodep->size - pos);
|
---|
[684b655] | 1075 | rc = fat_block_get(&b, bs, nodep, pos / bps,
|
---|
[1d8cdb1] | 1076 | BLOCK_FLAGS_NONE);
|
---|
[684b655] | 1077 | assert(rc == EOK);
|
---|
[0d974d8] | 1078 | (void) ipc_data_read_finalize(callid, b->data + pos % bps,
|
---|
| 1079 | bytes);
|
---|
[c91f2d1b] | 1080 | rc = block_put(b);
|
---|
| 1081 | assert(rc == EOK);
|
---|
[0d974d8] | 1082 | }
|
---|
[4bf40f6] | 1083 | } else {
|
---|
[ddd1219] | 1084 | unsigned bnum;
|
---|
| 1085 | off_t spos = pos;
|
---|
| 1086 | char name[FAT_NAME_LEN + 1 + FAT_EXT_LEN + 1];
|
---|
| 1087 | fat_dentry_t *d;
|
---|
| 1088 |
|
---|
[4bf40f6] | 1089 | assert(nodep->type == FAT_DIRECTORY);
|
---|
[ddd1219] | 1090 | assert(nodep->size % bps == 0);
|
---|
| 1091 | assert(bps % sizeof(fat_dentry_t) == 0);
|
---|
| 1092 |
|
---|
| 1093 | /*
|
---|
| 1094 | * Our strategy for readdir() is to use the position pointer as
|
---|
| 1095 | * an index into the array of all dentries. On entry, it points
|
---|
| 1096 | * to the first unread dentry. If we skip any dentries, we bump
|
---|
| 1097 | * the position pointer accordingly.
|
---|
| 1098 | */
|
---|
| 1099 | bnum = (pos * sizeof(fat_dentry_t)) / bps;
|
---|
| 1100 | while (bnum < nodep->size / bps) {
|
---|
| 1101 | off_t o;
|
---|
| 1102 |
|
---|
[684b655] | 1103 | rc = fat_block_get(&b, bs, nodep, bnum,
|
---|
| 1104 | BLOCK_FLAGS_NONE);
|
---|
| 1105 | assert(rc == EOK);
|
---|
[ddd1219] | 1106 | for (o = pos % (bps / sizeof(fat_dentry_t));
|
---|
| 1107 | o < bps / sizeof(fat_dentry_t);
|
---|
| 1108 | o++, pos++) {
|
---|
| 1109 | d = ((fat_dentry_t *)b->data) + o;
|
---|
| 1110 | switch (fat_classify_dentry(d)) {
|
---|
| 1111 | case FAT_DENTRY_SKIP:
|
---|
[0fdd6bb] | 1112 | case FAT_DENTRY_FREE:
|
---|
[ddd1219] | 1113 | continue;
|
---|
| 1114 | case FAT_DENTRY_LAST:
|
---|
[c91f2d1b] | 1115 | rc = block_put(b);
|
---|
| 1116 | assert(rc == EOK);
|
---|
[ddd1219] | 1117 | goto miss;
|
---|
| 1118 | default:
|
---|
| 1119 | case FAT_DENTRY_VALID:
|
---|
[0fdd6bb] | 1120 | fat_dentry_name_get(d, name);
|
---|
[073f550] | 1121 | rc = block_put(b);
|
---|
[c91f2d1b] | 1122 | assert(rc == EOK);
|
---|
[ddd1219] | 1123 | goto hit;
|
---|
| 1124 | }
|
---|
| 1125 | }
|
---|
[c91f2d1b] | 1126 | rc = block_put(b);
|
---|
| 1127 | assert(rc == EOK);
|
---|
[ddd1219] | 1128 | bnum++;
|
---|
| 1129 | }
|
---|
| 1130 | miss:
|
---|
[b6035ba] | 1131 | fat_node_put(fn);
|
---|
[ddd1219] | 1132 | ipc_answer_0(callid, ENOENT);
|
---|
| 1133 | ipc_answer_1(rid, ENOENT, 0);
|
---|
[4bf40f6] | 1134 | return;
|
---|
[ddd1219] | 1135 | hit:
|
---|
[92fd52d7] | 1136 | (void) ipc_data_read_finalize(callid, name, str_size(name) + 1);
|
---|
[ddd1219] | 1137 | bytes = (pos - spos) + 1;
|
---|
[4bf40f6] | 1138 | }
|
---|
| 1139 |
|
---|
[b6035ba] | 1140 | fat_node_put(fn);
|
---|
[79d031b] | 1141 | ipc_answer_1(rid, EOK, (ipcarg_t)bytes);
|
---|
[4bf40f6] | 1142 | }
|
---|
| 1143 |
|
---|
[c947dda] | 1144 | void fat_write(ipc_callid_t rid, ipc_call_t *request)
|
---|
| 1145 | {
|
---|
[8d32152] | 1146 | dev_handle_t dev_handle = (dev_handle_t)IPC_GET_ARG1(*request);
|
---|
| 1147 | fs_index_t index = (fs_index_t)IPC_GET_ARG2(*request);
|
---|
| 1148 | off_t pos = (off_t)IPC_GET_ARG3(*request);
|
---|
[073f550] | 1149 | fs_node_t *fn;
|
---|
[b6035ba] | 1150 | fat_node_t *nodep;
|
---|
[7858bc5f] | 1151 | fat_bs_t *bs;
|
---|
[8d32152] | 1152 | size_t bytes;
|
---|
[7858bc5f] | 1153 | block_t *b;
|
---|
[8d32152] | 1154 | uint16_t bps;
|
---|
| 1155 | unsigned spc;
|
---|
[913a821c] | 1156 | unsigned bpc; /* bytes per cluster */
|
---|
[b4b7187] | 1157 | off_t boundary;
|
---|
[1d8cdb1] | 1158 | int flags = BLOCK_FLAGS_NONE;
|
---|
[c91f2d1b] | 1159 | int rc;
|
---|
[8d32152] | 1160 |
|
---|
[073f550] | 1161 | rc = fat_node_get(&fn, dev_handle, index);
|
---|
| 1162 | if (rc != EOK) {
|
---|
| 1163 | ipc_answer_0(rid, rc);
|
---|
| 1164 | return;
|
---|
| 1165 | }
|
---|
[b6035ba] | 1166 | if (!fn) {
|
---|
[8d32152] | 1167 | ipc_answer_0(rid, ENOENT);
|
---|
| 1168 | return;
|
---|
| 1169 | }
|
---|
[b6035ba] | 1170 | nodep = FAT_NODE(fn);
|
---|
[8d32152] | 1171 |
|
---|
| 1172 | ipc_callid_t callid;
|
---|
| 1173 | size_t len;
|
---|
| 1174 | if (!ipc_data_write_receive(&callid, &len)) {
|
---|
[b6035ba] | 1175 | fat_node_put(fn);
|
---|
[8d32152] | 1176 | ipc_answer_0(callid, EINVAL);
|
---|
| 1177 | ipc_answer_0(rid, EINVAL);
|
---|
| 1178 | return;
|
---|
| 1179 | }
|
---|
| 1180 |
|
---|
[913a821c] | 1181 | bs = block_bb_get(dev_handle);
|
---|
| 1182 | bps = uint16_t_le2host(bs->bps);
|
---|
| 1183 | spc = bs->spc;
|
---|
| 1184 | bpc = bps * spc;
|
---|
| 1185 |
|
---|
[8d32152] | 1186 | /*
|
---|
| 1187 | * In all scenarios, we will attempt to write out only one block worth
|
---|
| 1188 | * of data at maximum. There might be some more efficient approaches,
|
---|
| 1189 | * but this one greatly simplifies fat_write(). Note that we can afford
|
---|
| 1190 | * to do this because the client must be ready to handle the return
|
---|
| 1191 | * value signalizing a smaller number of bytes written.
|
---|
| 1192 | */
|
---|
| 1193 | bytes = min(len, bps - pos % bps);
|
---|
[1d8cdb1] | 1194 | if (bytes == bps)
|
---|
| 1195 | flags |= BLOCK_FLAGS_NOREAD;
|
---|
[8d32152] | 1196 |
|
---|
[913a821c] | 1197 | boundary = ROUND_UP(nodep->size, bpc);
|
---|
[b4b7187] | 1198 | if (pos < boundary) {
|
---|
[8d32152] | 1199 | /*
|
---|
| 1200 | * This is the easier case - we are either overwriting already
|
---|
| 1201 | * existing contents or writing behind the EOF, but still within
|
---|
| 1202 | * the limits of the last cluster. The node size may grow to the
|
---|
| 1203 | * next block size boundary.
|
---|
| 1204 | */
|
---|
[cca29e3c] | 1205 | rc = fat_fill_gap(bs, nodep, FAT_CLST_RES0, pos);
|
---|
| 1206 | assert(rc == EOK);
|
---|
[684b655] | 1207 | rc = fat_block_get(&b, bs, nodep, pos / bps, flags);
|
---|
| 1208 | assert(rc == EOK);
|
---|
[8d32152] | 1209 | (void) ipc_data_write_finalize(callid, b->data + pos % bps,
|
---|
| 1210 | bytes);
|
---|
| 1211 | b->dirty = true; /* need to sync block */
|
---|
[c91f2d1b] | 1212 | rc = block_put(b);
|
---|
| 1213 | assert(rc == EOK);
|
---|
[8d32152] | 1214 | if (pos + bytes > nodep->size) {
|
---|
| 1215 | nodep->size = pos + bytes;
|
---|
| 1216 | nodep->dirty = true; /* need to sync node */
|
---|
| 1217 | }
|
---|
[ac49f5d1] | 1218 | ipc_answer_2(rid, EOK, bytes, nodep->size);
|
---|
[b6035ba] | 1219 | fat_node_put(fn);
|
---|
[8d32152] | 1220 | return;
|
---|
| 1221 | } else {
|
---|
| 1222 | /*
|
---|
| 1223 | * This is the more difficult case. We must allocate new
|
---|
| 1224 | * clusters for the node and zero them out.
|
---|
| 1225 | */
|
---|
[6f2dfd1] | 1226 | int status;
|
---|
[8d32152] | 1227 | unsigned nclsts;
|
---|
[8334a427] | 1228 | fat_cluster_t mcl, lcl;
|
---|
| 1229 |
|
---|
[913a821c] | 1230 | nclsts = (ROUND_UP(pos + bytes, bpc) - boundary) / bpc;
|
---|
[6f2dfd1] | 1231 | /* create an independent chain of nclsts clusters in all FATs */
|
---|
[913a821c] | 1232 | status = fat_alloc_clusters(bs, dev_handle, nclsts, &mcl, &lcl);
|
---|
[6f2dfd1] | 1233 | if (status != EOK) {
|
---|
| 1234 | /* could not allocate a chain of nclsts clusters */
|
---|
[b6035ba] | 1235 | fat_node_put(fn);
|
---|
[6f2dfd1] | 1236 | ipc_answer_0(callid, status);
|
---|
| 1237 | ipc_answer_0(rid, status);
|
---|
| 1238 | return;
|
---|
| 1239 | }
|
---|
| 1240 | /* zero fill any gaps */
|
---|
[cca29e3c] | 1241 | rc = fat_fill_gap(bs, nodep, mcl, pos);
|
---|
| 1242 | assert(rc == EOK);
|
---|
[684b655] | 1243 | rc = _fat_block_get(&b, bs, dev_handle, lcl, (pos / bps) % spc,
|
---|
[1d8cdb1] | 1244 | flags);
|
---|
[684b655] | 1245 | assert(rc == EOK);
|
---|
[6f2dfd1] | 1246 | (void) ipc_data_write_finalize(callid, b->data + pos % bps,
|
---|
| 1247 | bytes);
|
---|
[b4b7187] | 1248 | b->dirty = true; /* need to sync block */
|
---|
[c91f2d1b] | 1249 | rc = block_put(b);
|
---|
| 1250 | assert(rc == EOK);
|
---|
[6f2dfd1] | 1251 | /*
|
---|
| 1252 | * Append the cluster chain starting in mcl to the end of the
|
---|
| 1253 | * node's cluster chain.
|
---|
| 1254 | */
|
---|
[cca29e3c] | 1255 | rc = fat_append_clusters(bs, nodep, mcl);
|
---|
| 1256 | assert(rc == EOK);
|
---|
[6f2dfd1] | 1257 | nodep->size = pos + bytes;
|
---|
[b4b7187] | 1258 | nodep->dirty = true; /* need to sync node */
|
---|
[ac49f5d1] | 1259 | ipc_answer_2(rid, EOK, bytes, nodep->size);
|
---|
[b6035ba] | 1260 | fat_node_put(fn);
|
---|
[6f2dfd1] | 1261 | return;
|
---|
[8d32152] | 1262 | }
|
---|
[c947dda] | 1263 | }
|
---|
| 1264 |
|
---|
[6c71a1f] | 1265 | void fat_truncate(ipc_callid_t rid, ipc_call_t *request)
|
---|
| 1266 | {
|
---|
[8334a427] | 1267 | dev_handle_t dev_handle = (dev_handle_t)IPC_GET_ARG1(*request);
|
---|
| 1268 | fs_index_t index = (fs_index_t)IPC_GET_ARG2(*request);
|
---|
| 1269 | size_t size = (off_t)IPC_GET_ARG3(*request);
|
---|
[073f550] | 1270 | fs_node_t *fn;
|
---|
[b6035ba] | 1271 | fat_node_t *nodep;
|
---|
[913a821c] | 1272 | fat_bs_t *bs;
|
---|
| 1273 | uint16_t bps;
|
---|
| 1274 | uint8_t spc;
|
---|
| 1275 | unsigned bpc; /* bytes per cluster */
|
---|
[8334a427] | 1276 | int rc;
|
---|
| 1277 |
|
---|
[073f550] | 1278 | rc = fat_node_get(&fn, dev_handle, index);
|
---|
| 1279 | if (rc != EOK) {
|
---|
| 1280 | ipc_answer_0(rid, rc);
|
---|
| 1281 | return;
|
---|
| 1282 | }
|
---|
[b6035ba] | 1283 | if (!fn) {
|
---|
[8334a427] | 1284 | ipc_answer_0(rid, ENOENT);
|
---|
| 1285 | return;
|
---|
| 1286 | }
|
---|
[b6035ba] | 1287 | nodep = FAT_NODE(fn);
|
---|
[8334a427] | 1288 |
|
---|
[913a821c] | 1289 | bs = block_bb_get(dev_handle);
|
---|
| 1290 | bps = uint16_t_le2host(bs->bps);
|
---|
| 1291 | spc = bs->spc;
|
---|
| 1292 | bpc = bps * spc;
|
---|
| 1293 |
|
---|
[8334a427] | 1294 | if (nodep->size == size) {
|
---|
| 1295 | rc = EOK;
|
---|
| 1296 | } else if (nodep->size < size) {
|
---|
| 1297 | /*
|
---|
[913a821c] | 1298 | * The standard says we have the freedom to grow the node.
|
---|
[8334a427] | 1299 | * For now, we simply return an error.
|
---|
| 1300 | */
|
---|
| 1301 | rc = EINVAL;
|
---|
[913a821c] | 1302 | } else if (ROUND_UP(nodep->size, bpc) == ROUND_UP(size, bpc)) {
|
---|
| 1303 | /*
|
---|
| 1304 | * The node will be shrunk, but no clusters will be deallocated.
|
---|
| 1305 | */
|
---|
| 1306 | nodep->size = size;
|
---|
| 1307 | nodep->dirty = true; /* need to sync node */
|
---|
| 1308 | rc = EOK;
|
---|
[8334a427] | 1309 | } else {
|
---|
| 1310 | /*
|
---|
[913a821c] | 1311 | * The node will be shrunk, clusters will be deallocated.
|
---|
[8334a427] | 1312 | */
|
---|
[913a821c] | 1313 | if (size == 0) {
|
---|
[cca29e3c] | 1314 | rc = fat_chop_clusters(bs, nodep, FAT_CLST_RES0);
|
---|
| 1315 | if (rc != EOK)
|
---|
| 1316 | goto out;
|
---|
[913a821c] | 1317 | } else {
|
---|
| 1318 | fat_cluster_t lastc;
|
---|
[e402382] | 1319 | rc = fat_cluster_walk(bs, dev_handle, nodep->firstc,
|
---|
| 1320 | &lastc, NULL, (size - 1) / bpc);
|
---|
| 1321 | if (rc != EOK)
|
---|
| 1322 | goto out;
|
---|
[cca29e3c] | 1323 | rc = fat_chop_clusters(bs, nodep, lastc);
|
---|
| 1324 | if (rc != EOK)
|
---|
| 1325 | goto out;
|
---|
[913a821c] | 1326 | }
|
---|
| 1327 | nodep->size = size;
|
---|
| 1328 | nodep->dirty = true; /* need to sync node */
|
---|
| 1329 | rc = EOK;
|
---|
[8334a427] | 1330 | }
|
---|
[e402382] | 1331 | out:
|
---|
[b6035ba] | 1332 | fat_node_put(fn);
|
---|
[8334a427] | 1333 | ipc_answer_0(rid, rc);
|
---|
| 1334 | return;
|
---|
[6c71a1f] | 1335 | }
|
---|
| 1336 |
|
---|
[c20aa06] | 1337 | void fat_close(ipc_callid_t rid, ipc_call_t *request)
|
---|
| 1338 | {
|
---|
| 1339 | ipc_answer_0(rid, EOK);
|
---|
| 1340 | }
|
---|
| 1341 |
|
---|
[50e5b25] | 1342 | void fat_destroy(ipc_callid_t rid, ipc_call_t *request)
|
---|
| 1343 | {
|
---|
| 1344 | dev_handle_t dev_handle = (dev_handle_t)IPC_GET_ARG1(*request);
|
---|
| 1345 | fs_index_t index = (fs_index_t)IPC_GET_ARG2(*request);
|
---|
[073f550] | 1346 | fs_node_t *fn;
|
---|
[50e5b25] | 1347 | int rc;
|
---|
| 1348 |
|
---|
[073f550] | 1349 | rc = fat_node_get(&fn, dev_handle, index);
|
---|
| 1350 | if (rc != EOK) {
|
---|
| 1351 | ipc_answer_0(rid, rc);
|
---|
| 1352 | return;
|
---|
| 1353 | }
|
---|
[b6035ba] | 1354 | if (!fn) {
|
---|
[50e5b25] | 1355 | ipc_answer_0(rid, ENOENT);
|
---|
| 1356 | return;
|
---|
| 1357 | }
|
---|
| 1358 |
|
---|
[b6035ba] | 1359 | rc = fat_destroy_node(fn);
|
---|
[50e5b25] | 1360 | ipc_answer_0(rid, rc);
|
---|
| 1361 | }
|
---|
| 1362 |
|
---|
[c20aa06] | 1363 | void fat_open_node(ipc_callid_t rid, ipc_call_t *request)
|
---|
| 1364 | {
|
---|
| 1365 | libfs_open_node(&fat_libfs_ops, fat_reg.fs_handle, rid, request);
|
---|
| 1366 | }
|
---|
| 1367 |
|
---|
[852b801] | 1368 | void fat_stat(ipc_callid_t rid, ipc_call_t *request)
|
---|
[c20aa06] | 1369 | {
|
---|
[75160a6] | 1370 | libfs_stat(&fat_libfs_ops, fat_reg.fs_handle, rid, request);
|
---|
[c20aa06] | 1371 | }
|
---|
| 1372 |
|
---|
| 1373 | void fat_sync(ipc_callid_t rid, ipc_call_t *request)
|
---|
| 1374 | {
|
---|
| 1375 | /* Dummy implementation */
|
---|
| 1376 | ipc_answer_0(rid, EOK);
|
---|
| 1377 | }
|
---|
| 1378 |
|
---|
[be815bc] | 1379 | /**
|
---|
| 1380 | * @}
|
---|
[c20aa06] | 1381 | */
|
---|