source: mainline/uspace/srv/fs/ext4fs/ext4fs_ops.c@ 532f53d

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since 532f53d was 532f53d, checked in by Maurizio Lombardi <m.lombardi85@…>, 12 years ago

ext4: return the error code to the caller in case something fails.

  • Property mode set to 100644
File size: 36.0 KB
RevLine 
[d3a9ae74]1/*
[d1538a1]2 * Copyright (c) 2011 Martin Sucha
[f22d5ef0]3 * Copyright (c) 2012 Frantisek Princ
[d3a9ae74]4 * All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
8 * are met:
9 *
10 * - Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
12 * - Redistributions in binary form must reproduce the above copyright
13 * notice, this list of conditions and the following disclaimer in the
14 * documentation and/or other materials provided with the distribution.
15 * - The name of the author may not be used to endorse or promote products
16 * derived from this software without specific prior written permission.
17 *
18 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
19 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
20 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
21 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
22 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
23 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
24 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
25 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
26 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
27 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28 */
29
30/** @addtogroup fs
31 * @{
[38542dc]32 */
[d3a9ae74]33/**
[38542dc]34 * @file ext4fs_ops.c
35 * @brief VFS operations for ext4 filesystem.
[d3a9ae74]36 */
37
38#include <errno.h>
[6c501f8]39#include <fibril_synch.h>
40#include <libext4.h>
[d3a9ae74]41#include <libfs.h>
[9b9d37bb]42#include <macros.h>
[6c501f8]43#include <malloc.h>
[3711e7e]44#include <adt/hash_table.h>
[062d900]45#include <adt/hash.h>
[d3a9ae74]46#include <ipc/loc.h>
47#include "ext4fs.h"
48#include "../../vfs/vfs.h"
49
[38542dc]50#define EXT4FS_NODE(node) \
51 ((node) ? (ext4fs_node_t *) (node)->data : NULL)
52
[1fff583]53/**
54 * Type for holding an instance of mounted partition.
55 */
[6c501f8]56typedef struct ext4fs_instance {
57 link_t link;
58 service_id_t service_id;
59 ext4_filesystem_t *filesystem;
60 unsigned int open_nodes_count;
61} ext4fs_instance_t;
62
[1fff583]63/**
64 * Type for wrapping common fs_node and add some useful pointers.
65 */
[6c501f8]66typedef struct ext4fs_node {
67 ext4fs_instance_t *instance;
68 ext4_inode_ref_t *inode_ref;
69 fs_node_t *fs_node;
[062d900]70 ht_link_t link;
[6c501f8]71 unsigned int references;
72} ext4fs_node_t;
73
[06d85e5]74/* Forward declarations of auxiliary functions */
[9b9d37bb]75
76static int ext4fs_read_directory(ipc_callid_t, aoff64_t, size_t,
77 ext4fs_instance_t *, ext4_inode_ref_t *, size_t *);
78static int ext4fs_read_file(ipc_callid_t, aoff64_t, size_t, ext4fs_instance_t *,
79 ext4_inode_ref_t *, size_t *);
80static bool ext4fs_is_dots(const uint8_t *, size_t);
[6c501f8]81static int ext4fs_instance_get(service_id_t, ext4fs_instance_t **);
82static int ext4fs_node_get_core(fs_node_t **, ext4fs_instance_t *, fs_index_t);
[9c0c0e1]83static int ext4fs_node_put_core(ext4fs_node_t *);
[d3a9ae74]84
[38542dc]85/* Forward declarations of ext4 libfs operations. */
[1fff583]86
[d3a9ae74]87static int ext4fs_root_get(fs_node_t **, service_id_t);
88static int ext4fs_match(fs_node_t **, fs_node_t *, const char *);
89static int ext4fs_node_get(fs_node_t **, service_id_t, fs_index_t);
90static int ext4fs_node_open(fs_node_t *);
91static int ext4fs_node_put(fs_node_t *);
92static int ext4fs_create_node(fs_node_t **, service_id_t, int);
93static int ext4fs_destroy_node(fs_node_t *);
94static int ext4fs_link(fs_node_t *, fs_node_t *, const char *);
95static int ext4fs_unlink(fs_node_t *, fs_node_t *, const char *);
96static int ext4fs_has_children(bool *, fs_node_t *);
97static fs_index_t ext4fs_index_get(fs_node_t *);
98static aoff64_t ext4fs_size_get(fs_node_t *);
99static unsigned ext4fs_lnkcnt_get(fs_node_t *);
100static bool ext4fs_is_directory(fs_node_t *);
101static bool ext4fs_is_file(fs_node_t *node);
102static service_id_t ext4fs_service_get(fs_node_t *node);
[3dd148d]103static int ext4fs_size_block(service_id_t, uint32_t *);
104static int ext4fs_total_block_count(service_id_t, uint64_t *);
105static int ext4fs_free_block_count(service_id_t, uint64_t *);
[d3a9ae74]106
[06d85e5]107/* Static variables */
[1fff583]108
[6c501f8]109static LIST_INITIALIZE(instance_list);
110static FIBRIL_MUTEX_INITIALIZE(instance_list_mutex);
[3711e7e]111static hash_table_t open_nodes;
[6c501f8]112static FIBRIL_MUTEX_INITIALIZE(open_nodes_lock);
113
[3711e7e]114/* Hash table interface for open nodes hash table */
[062d900]115
116typedef struct {
117 service_id_t service_id;
118 fs_index_t index;
119} node_key_t;
120
121static size_t open_nodes_key_hash(void *key_arg)
[3711e7e]122{
[062d900]123 node_key_t *key = (node_key_t *)key_arg;
124 return hash_combine(key->service_id, key->index);
[3711e7e]125}
126
[062d900]127static size_t open_nodes_hash(const ht_link_t *item)
[3711e7e]128{
[062d900]129 ext4fs_node_t *enode = hash_table_get_inst(item, ext4fs_node_t, link);
130 return hash_combine(enode->instance->service_id, enode->inode_ref->index);
[3711e7e]131}
132
[062d900]133static bool open_nodes_key_equal(void *key_arg, const ht_link_t *item)
[3711e7e]134{
[062d900]135 node_key_t *key = (node_key_t *)key_arg;
136 ext4fs_node_t *enode = hash_table_get_inst(item, ext4fs_node_t, link);
137
138 return key->service_id == enode->instance->service_id
139 && key->index == enode->inode_ref->index;
[3711e7e]140}
141
[062d900]142static hash_table_ops_t open_nodes_ops = {
[3711e7e]143 .hash = open_nodes_hash,
[062d900]144 .key_hash = open_nodes_key_hash,
145 .key_equal = open_nodes_key_equal,
146 .equal = NULL,
147 .remove_callback = NULL,
[3711e7e]148};
149
[1fff583]150/** Basic initialization of the driver.
151 *
[38542dc]152 * This is only needed to create the hash table
153 * for storing open nodes.
154 *
155 * @return Error code
[1fff583]156 *
157 */
[d3a9ae74]158int ext4fs_global_init(void)
159{
[062d900]160 if (!hash_table_create(&open_nodes, 0, 0, &open_nodes_ops))
[3711e7e]161 return ENOMEM;
[38542dc]162
[d3a9ae74]163 return EOK;
164}
165
[1fff583]166/* Finalization of the driver.
167 *
[38542dc]168 * This is only needed to destroy the hash table.
[1fff583]169 *
[38542dc]170 * @return Error code
[1fff583]171 */
[d3a9ae74]172int ext4fs_global_fini(void)
173{
[3711e7e]174 hash_table_destroy(&open_nodes);
[d3a9ae74]175 return EOK;
176}
177
178/*
[38542dc]179 * Ext4 libfs operations.
[d3a9ae74]180 */
181
[1fff583]182/** Get instance from internal table by service_id.
183 *
[38542dc]184 * @param service_id Device identifier
185 * @param inst Output instance if successful operation
186 *
187 * @return Error code
188 *
[1fff583]189 */
[6c501f8]190int ext4fs_instance_get(service_id_t service_id, ext4fs_instance_t **inst)
191{
192 fibril_mutex_lock(&instance_list_mutex);
[38542dc]193
[6c501f8]194 if (list_empty(&instance_list)) {
195 fibril_mutex_unlock(&instance_list_mutex);
196 return EINVAL;
197 }
[38542dc]198
[feeac0d]199 list_foreach(instance_list, link, ext4fs_instance_t, tmp) {
[6c501f8]200 if (tmp->service_id == service_id) {
201 *inst = tmp;
202 fibril_mutex_unlock(&instance_list_mutex);
203 return EOK;
204 }
205 }
[38542dc]206
[6c501f8]207 fibril_mutex_unlock(&instance_list_mutex);
208 return EINVAL;
209}
210
[1fff583]211/** Get root node of filesystem specified by service_id.
212 *
[38542dc]213 * @param rfn Output pointer to loaded node
214 * @param service_id Device to load root node from
215 *
216 * @return Error code
217 *
[1fff583]218 */
[d3a9ae74]219int ext4fs_root_get(fs_node_t **rfn, service_id_t service_id)
220{
[01ab41b]221 return ext4fs_node_get(rfn, service_id, EXT4_INODE_ROOT_INDEX);
[d3a9ae74]222}
223
[1fff583]224/** Check if specified name (component) matches with any directory entry.
225 *
226 * If match is found, load and return matching node.
227 *
[38542dc]228 * @param rfn Output pointer to node if operation successful
229 * @param pfn Parent directory node
230 * @param component Name to check directory for
231 *
232 * @return Error code
233 *
[1fff583]234 */
[d3a9ae74]235int ext4fs_match(fs_node_t **rfn, fs_node_t *pfn, const char *component)
236{
[5614c7f]237 ext4fs_node_t *eparent = EXT4FS_NODE(pfn);
238 ext4_filesystem_t *fs = eparent->instance->filesystem;
[38542dc]239
[9b9d37bb]240 if (!ext4_inode_is_type(fs->superblock, eparent->inode_ref->inode,
[38542dc]241 EXT4_INODE_MODE_DIRECTORY))
[9b9d37bb]242 return ENOTDIR;
[38542dc]243
[06d85e5]244 /* Try to find entry */
[7689590]245 ext4_directory_search_result_t result;
[38542dc]246 int rc = ext4_directory_find_entry(&result, eparent->inode_ref,
247 component);
[8be96a0]248 if (rc != EOK) {
[ea75ceb]249 if (rc == ENOENT) {
250 *rfn = NULL;
251 return EOK;
252 }
[38542dc]253
[8be96a0]254 return rc;
[9b9d37bb]255 }
[38542dc]256
[06d85e5]257 /* Load node from search result */
[7689590]258 uint32_t inode = ext4_directory_entry_ll_get_inode(result.dentry);
[8be96a0]259 rc = ext4fs_node_get_core(rfn, eparent->instance, inode);
[38542dc]260 if (rc != EOK)
[532f53d]261 goto exit;
262
263exit:
264 ;
265
[06d85e5]266 /* Destroy search result structure */
[532f53d]267 int const rc2 = ext4_directory_destroy_result(&result);
268 return rc == EOK ? rc2 : rc;
[d3a9ae74]269}
270
[1fff583]271/** Get node specified by index
272 *
273 * It's wrapper for node_put_core operation
274 *
[38542dc]275 * @param rfn Output pointer to loaded node if operation successful
276 * @param service_id Device identifier
277 * @param index Node index (here i-node number)
278 *
279 * @return Error code
280 *
[1fff583]281 */
[d3a9ae74]282int ext4fs_node_get(fs_node_t **rfn, service_id_t service_id, fs_index_t index)
283{
[5614c7f]284 ext4fs_instance_t *inst;
[38542dc]285 int rc = ext4fs_instance_get(service_id, &inst);
286 if (rc != EOK)
[9c0c0e1]287 return rc;
[38542dc]288
[9c0c0e1]289 return ext4fs_node_get_core(rfn, inst, index);
[d3a9ae74]290}
291
[1fff583]292/** Main function for getting node from the filesystem.
293 *
[38542dc]294 * @param rfn Output point to loaded node if operation successful
295 * @param inst Instance of filesystem
296 * @param index Index of node (i-node number)
297 *
298 * @return Error code
299 *
[1fff583]300 */
[6c501f8]301int ext4fs_node_get_core(fs_node_t **rfn, ext4fs_instance_t *inst,
[38542dc]302 fs_index_t index)
[6c501f8]303{
[3711e7e]304 fibril_mutex_lock(&open_nodes_lock);
[38542dc]305
[3711e7e]306 /* Check if the node is not already open */
[062d900]307 node_key_t key = {
308 .service_id = inst->service_id,
309 .index = index
[3711e7e]310 };
[38542dc]311
[062d900]312 ht_link_t *already_open = hash_table_find(&open_nodes, &key);
[5614c7f]313 ext4fs_node_t *enode = NULL;
[3711e7e]314 if (already_open) {
[062d900]315 enode = hash_table_get_inst(already_open, ext4fs_node_t, link);
[3711e7e]316 *rfn = enode->fs_node;
317 enode->references++;
[38542dc]318
[3711e7e]319 fibril_mutex_unlock(&open_nodes_lock);
320 return EOK;
321 }
[38542dc]322
[06d85e5]323 /* Prepare new enode */
[3711e7e]324 enode = malloc(sizeof(ext4fs_node_t));
325 if (enode == NULL) {
326 fibril_mutex_unlock(&open_nodes_lock);
327 return ENOMEM;
328 }
[38542dc]329
[06d85e5]330 /* Prepare new fs_node and initialize */
[5614c7f]331 fs_node_t *fs_node = malloc(sizeof(fs_node_t));
332 if (fs_node == NULL) {
[3711e7e]333 free(enode);
334 fibril_mutex_unlock(&open_nodes_lock);
335 return ENOMEM;
336 }
[38542dc]337
[5614c7f]338 fs_node_initialize(fs_node);
[38542dc]339
[06d85e5]340 /* Load i-node from filesystem */
[5614c7f]341 ext4_inode_ref_t *inode_ref;
[38542dc]342 int rc = ext4_filesystem_get_inode_ref(inst->filesystem, index,
343 &inode_ref);
[3711e7e]344 if (rc != EOK) {
345 free(enode);
[5614c7f]346 free(fs_node);
[3711e7e]347 fibril_mutex_unlock(&open_nodes_lock);
348 return rc;
349 }
[38542dc]350
[06d85e5]351 /* Initialize enode */
[3711e7e]352 enode->inode_ref = inode_ref;
353 enode->instance = inst;
354 enode->references = 1;
[5614c7f]355 enode->fs_node = fs_node;
[38542dc]356
[5614c7f]357 fs_node->data = enode;
358 *rfn = fs_node;
[38542dc]359
[062d900]360 hash_table_insert(&open_nodes, &enode->link);
[3711e7e]361 inst->open_nodes_count++;
[38542dc]362
[3711e7e]363 fibril_mutex_unlock(&open_nodes_lock);
[38542dc]364
[6c501f8]365 return EOK;
366}
367
[1fff583]368/** Put previously loaded node.
369 *
[38542dc]370 * @param enode Node to put back
371 *
372 * @return Error code
373 *
[1fff583]374 */
[9b9d37bb]375int ext4fs_node_put_core(ext4fs_node_t *enode)
376{
[062d900]377 hash_table_remove_item(&open_nodes, &enode->link);
[9b9d37bb]378 assert(enode->instance->open_nodes_count > 0);
379 enode->instance->open_nodes_count--;
[38542dc]380
[06d85e5]381 /* Put inode back in filesystem */
[38542dc]382 int rc = ext4_filesystem_put_inode_ref(enode->inode_ref);
383 if (rc != EOK)
[9b9d37bb]384 return rc;
[38542dc]385
[06d85e5]386 /* Destroy data structure */
[9b9d37bb]387 free(enode->fs_node);
388 free(enode);
[38542dc]389
[9c0c0e1]390 return EOK;
391}
392
[1fff583]393/** Open node.
394 *
395 * This operation is stateless in this driver.
396 *
[38542dc]397 * @param fn Node to open
398 *
399 * @return EOK
400 *
[1fff583]401 */
[d3a9ae74]402int ext4fs_node_open(fs_node_t *fn)
403{
[06d85e5]404 /* Stateless operation */
[d3a9ae74]405 return EOK;
406}
407
[1fff583]408/** Put previously loaded node.
409 *
[38542dc]410 * A wrapper for node_put_core operation
411 *
412 * @param fn Node to put back
413 * @return Error code
[1fff583]414 *
415 */
[d3a9ae74]416int ext4fs_node_put(fs_node_t *fn)
417{
[9c0c0e1]418 fibril_mutex_lock(&open_nodes_lock);
[38542dc]419
[5614c7f]420 ext4fs_node_t *enode = EXT4FS_NODE(fn);
[9c0c0e1]421 assert(enode->references > 0);
422 enode->references--;
423 if (enode->references == 0) {
[38542dc]424 int rc = ext4fs_node_put_core(enode);
[9c0c0e1]425 if (rc != EOK) {
426 fibril_mutex_unlock(&open_nodes_lock);
427 return rc;
428 }
429 }
[38542dc]430
[9c0c0e1]431 fibril_mutex_unlock(&open_nodes_lock);
[38542dc]432
[d3a9ae74]433 return EOK;
434}
435
[1fff583]436/** Create new node in filesystem.
437 *
[38542dc]438 * @param rfn Output pointer to newly created node if successful
439 * @param service_id Device identifier, where the filesystem is
440 * @param flags Flags for specification of new node parameters
441 *
442 * @return Error code
443 *
[1fff583]444 */
[d3a9ae74]445int ext4fs_create_node(fs_node_t **rfn, service_id_t service_id, int flags)
446{
[06d85e5]447 /* Allocate enode */
[47a89fe]448 ext4fs_node_t *enode;
449 enode = malloc(sizeof(ext4fs_node_t));
[38542dc]450 if (enode == NULL)
[47a89fe]451 return ENOMEM;
[38542dc]452
[06d85e5]453 /* Allocate fs_node */
[47a89fe]454 fs_node_t *fs_node;
455 fs_node = malloc(sizeof(fs_node_t));
456 if (fs_node == NULL) {
457 free(enode);
458 return ENOMEM;
459 }
[38542dc]460
[06d85e5]461 /* Load instance */
[47a89fe]462 ext4fs_instance_t *inst;
[38542dc]463 int rc = ext4fs_instance_get(service_id, &inst);
[47a89fe]464 if (rc != EOK) {
465 free(enode);
466 free(fs_node);
467 return rc;
468 }
[38542dc]469
[06d85e5]470 /* Allocate new i-node in filesystem */
[47a89fe]471 ext4_inode_ref_t *inode_ref;
[304faab]472 rc = ext4_filesystem_alloc_inode(inst->filesystem, &inode_ref, flags);
[47a89fe]473 if (rc != EOK) {
474 free(enode);
475 free(fs_node);
476 return rc;
477 }
[38542dc]478
[06d85e5]479 /* Do some interconnections in references */
[47a89fe]480 enode->inode_ref = inode_ref;
481 enode->instance = inst;
482 enode->references = 1;
[38542dc]483
[47a89fe]484 fibril_mutex_lock(&open_nodes_lock);
[062d900]485 hash_table_insert(&open_nodes, &enode->link);
[47a89fe]486 fibril_mutex_unlock(&open_nodes_lock);
487 inst->open_nodes_count++;
[38542dc]488
[47a89fe]489 enode->inode_ref->dirty = true;
[38542dc]490
[47a89fe]491 fs_node_initialize(fs_node);
492 fs_node->data = enode;
493 enode->fs_node = fs_node;
494 *rfn = fs_node;
[38542dc]495
[47a89fe]496 return EOK;
[d3a9ae74]497}
498
[1fff583]499/** Destroy existing node.
500 *
[38542dc]501 * @param fs Node to destroy
502 *
503 * @return Error code
504 *
[1fff583]505 */
[d3a9ae74]506int ext4fs_destroy_node(fs_node_t *fn)
507{
[06d85e5]508 /* If directory, check for children */
[3d4fd2c]509 bool has_children;
[38542dc]510 int rc = ext4fs_has_children(&has_children, fn);
[3d4fd2c]511 if (rc != EOK) {
512 ext4fs_node_put(fn);
513 return rc;
514 }
[38542dc]515
[3d4fd2c]516 if (has_children) {
517 ext4fs_node_put(fn);
518 return EINVAL;
519 }
[38542dc]520
[3d4fd2c]521 ext4fs_node_t *enode = EXT4FS_NODE(fn);
522 ext4_inode_ref_t *inode_ref = enode->inode_ref;
[38542dc]523
[06d85e5]524 /* Release data blocks */
[1ac1ab4]525 rc = ext4_filesystem_truncate_inode(inode_ref, 0);
[3d4fd2c]526 if (rc != EOK) {
527 ext4fs_node_put(fn);
528 return rc;
529 }
[38542dc]530
531 /*
532 * TODO: Sset real deletion time when it will be supported.
533 * Temporary set fake deletion time.
534 */
[ca47f656]535 ext4_inode_set_deletion_time(inode_ref->inode, 0xdeadbeef);
[07fd4cd1]536 inode_ref->dirty = true;
[38542dc]537
[06d85e5]538 /* Free inode */
[1ac1ab4]539 rc = ext4_filesystem_free_inode(inode_ref);
[3d4fd2c]540 if (rc != EOK) {
541 ext4fs_node_put(fn);
542 return rc;
543 }
[38542dc]544
[ca47f656]545 return ext4fs_node_put(fn);
[d3a9ae74]546}
547
[1fff583]548/** Link the specfied node to directory.
549 *
[38542dc]550 * @param pfn Parent node to link in
551 * @param cfn Node to be linked
552 * @param name Name which will be assigned to directory entry
553 *
554 * @return Error code
555 *
[1fff583]556 */
[d3a9ae74]557int ext4fs_link(fs_node_t *pfn, fs_node_t *cfn, const char *name)
558{
[06d85e5]559 /* Check maximum name length */
[38542dc]560 if (str_size(name) > EXT4_DIRECTORY_FILENAME_LEN)
[47a89fe]561 return ENAMETOOLONG;
[38542dc]562
[47a89fe]563 ext4fs_node_t *parent = EXT4FS_NODE(pfn);
564 ext4fs_node_t *child = EXT4FS_NODE(cfn);
565 ext4_filesystem_t *fs = parent->instance->filesystem;
[38542dc]566
[06d85e5]567 /* Add entry to parent directory */
[38542dc]568 int rc = ext4_directory_add_entry(parent->inode_ref, name,
569 child->inode_ref);
570 if (rc != EOK)
[47a89fe]571 return rc;
[38542dc]572
[06d85e5]573 /* Fill new dir -> add '.' and '..' entries */
[38542dc]574 if (ext4_inode_is_type(fs->superblock, child->inode_ref->inode,
575 EXT4_INODE_MODE_DIRECTORY)) {
576 rc = ext4_directory_add_entry(child->inode_ref, ".",
577 child->inode_ref);
[47a89fe]578 if (rc != EOK) {
[1ac1ab4]579 ext4_directory_remove_entry(parent->inode_ref, name);
[47a89fe]580 return rc;
581 }
[38542dc]582
583 rc = ext4_directory_add_entry(child->inode_ref, "..",
584 parent->inode_ref);
[47a89fe]585 if (rc != EOK) {
[1ac1ab4]586 ext4_directory_remove_entry(parent->inode_ref, name);
587 ext4_directory_remove_entry(child->inode_ref, ".");
[47a89fe]588 return rc;
589 }
[38542dc]590
[06d85e5]591 /* Initialize directory index if supported */
[38542dc]592 if (ext4_superblock_has_feature_compatible(fs->superblock,
593 EXT4_FEATURE_COMPAT_DIR_INDEX)) {
[b6d7b7c]594 rc = ext4_directory_dx_init(child->inode_ref);
[38542dc]595 if (rc != EOK)
[b6d7b7c]596 return rc;
[38542dc]597
598 ext4_inode_set_flag(child->inode_ref->inode,
599 EXT4_INODE_FLAG_INDEX);
[b6d7b7c]600 child->inode_ref->dirty = true;
601 }
[38542dc]602
603 uint16_t parent_links =
604 ext4_inode_get_links_count(parent->inode_ref->inode);
[47a89fe]605 parent_links++;
606 ext4_inode_set_links_count(parent->inode_ref->inode, parent_links);
[38542dc]607
[47a89fe]608 parent->inode_ref->dirty = true;
609 }
[38542dc]610
611 uint16_t child_links =
612 ext4_inode_get_links_count(child->inode_ref->inode);
[47a89fe]613 child_links++;
614 ext4_inode_set_links_count(child->inode_ref->inode, child_links);
[38542dc]615
[47a89fe]616 child->inode_ref->dirty = true;
[38542dc]617
[47a89fe]618 return EOK;
[d3a9ae74]619}
620
[1fff583]621/** Unlink node from specified directory.
622 *
[38542dc]623 * @param pfn Parent node to delete node from
624 * @param cfn Child node to be unlinked from directory
625 * @param name Name of entry that will be removed
626 *
627 * @return Error code
628 *
[1fff583]629 */
[ebeaaa06]630int ext4fs_unlink(fs_node_t *pfn, fs_node_t *cfn, const char *name)
[d3a9ae74]631{
[ebeaaa06]632 bool has_children;
[38542dc]633 int rc = ext4fs_has_children(&has_children, cfn);
634 if (rc != EOK)
[ebeaaa06]635 return rc;
[38542dc]636
[06d85e5]637 /* Cannot unlink non-empty node */
[38542dc]638 if (has_children)
[ebeaaa06]639 return ENOTEMPTY;
[38542dc]640
[06d85e5]641 /* Remove entry from parent directory */
[f49638e]642 ext4_inode_ref_t *parent = EXT4FS_NODE(pfn)->inode_ref;
[1ac1ab4]643 rc = ext4_directory_remove_entry(parent, name);
[38542dc]644 if (rc != EOK)
[f49638e]645 return rc;
[38542dc]646
[06d85e5]647 /* Decrement links count */
[38542dc]648 ext4_inode_ref_t *child_inode_ref = EXT4FS_NODE(cfn)->inode_ref;
649
650 uint32_t lnk_count =
651 ext4_inode_get_links_count(child_inode_ref->inode);
[ebeaaa06]652 lnk_count--;
[38542dc]653
[06d85e5]654 /* If directory - handle links from parent */
[38542dc]655 if ((lnk_count <= 1) && (ext4fs_is_directory(cfn))) {
[1e48a07e]656 assert(lnk_count == 1);
[38542dc]657
[1e48a07e]658 lnk_count--;
[38542dc]659
[82d7816]660 ext4_inode_ref_t *parent_inode_ref = EXT4FS_NODE(pfn)->inode_ref;
[38542dc]661
[82d7816]662 uint32_t parent_lnk_count = ext4_inode_get_links_count(
[38542dc]663 parent_inode_ref->inode);
664
[82d7816]665 parent_lnk_count--;
666 ext4_inode_set_links_count(parent_inode_ref->inode, parent_lnk_count);
[38542dc]667
[07fd4cd1]668 parent->dirty = true;
669 }
670
[38542dc]671 /*
672 * TODO: Update timestamps of the parent
673 * (when we have wall-clock time).
674 *
675 * ext4_inode_set_change_inode_time(parent->inode, (uint32_t) now);
676 * ext4_inode_set_modification_time(parent->inode, (uint32_t) now);
677 * parent->dirty = true;
678 */
679
680 /*
681 * TODO: Update timestamp for inode.
682 *
683 * ext4_inode_set_change_inode_time(child_inode_ref->inode,
684 * (uint32_t) now);
685 */
686
[82d7816]687 ext4_inode_set_links_count(child_inode_ref->inode, lnk_count);
688 child_inode_ref->dirty = true;
[38542dc]689
[ebeaaa06]690 return EOK;
[d3a9ae74]691}
692
[1fff583]693/** Check if specified node has children.
[38542dc]694 *
[1fff583]695 * For files is response allways false and check is executed only for directories.
696 *
[38542dc]697 * @param has_children Output value for response
698 * @param fn Node to check
699 *
700 * @return Error code
701 *
[1fff583]702 */
[d3a9ae74]703int ext4fs_has_children(bool *has_children, fs_node_t *fn)
704{
[5614c7f]705 ext4fs_node_t *enode = EXT4FS_NODE(fn);
706 ext4_filesystem_t *fs = enode->instance->filesystem;
[38542dc]707
[06d85e5]708 /* Check if node is directory */
[e68c834]709 if (!ext4_inode_is_type(fs->superblock, enode->inode_ref->inode,
710 EXT4_INODE_MODE_DIRECTORY)) {
711 *has_children = false;
712 return EOK;
713 }
[38542dc]714
[5614c7f]715 ext4_directory_iterator_t it;
[38542dc]716 int rc = ext4_directory_iterator_init(&it, enode->inode_ref, 0);
717 if (rc != EOK)
[e68c834]718 return rc;
[38542dc]719
[e68c834]720 /* Find a non-empty directory entry */
[5614c7f]721 bool found = false;
[e68c834]722 while (it.current != NULL) {
723 if (it.current->inode != 0) {
[38542dc]724 uint16_t name_size =
725 ext4_directory_entry_ll_get_name_length(fs->superblock,
726 it.current);
[2ea6392]727 if (!ext4fs_is_dots(it.current->name, name_size)) {
[e68c834]728 found = true;
729 break;
730 }
731 }
[38542dc]732
[e68c834]733 rc = ext4_directory_iterator_next(&it);
734 if (rc != EOK) {
735 ext4_directory_iterator_fini(&it);
736 return rc;
737 }
738 }
[38542dc]739
[e68c834]740 rc = ext4_directory_iterator_fini(&it);
[38542dc]741 if (rc != EOK)
[e68c834]742 return rc;
[38542dc]743
[e68c834]744 *has_children = found;
[38542dc]745
[d3a9ae74]746 return EOK;
747}
748
[1fff583]749/** Unpack index number from node.
[38542dc]750 *
751 * @param fn Node to load index from
752 *
753 * @return Index number of i-node
754 *
[1fff583]755 */
[d3a9ae74]756fs_index_t ext4fs_index_get(fs_node_t *fn)
757{
[9b9d37bb]758 ext4fs_node_t *enode = EXT4FS_NODE(fn);
759 return enode->inode_ref->index;
[d3a9ae74]760}
761
[1fff583]762/** Get real size of file / directory.
763 *
[38542dc]764 * @param fn Node to get size of
765 *
766 * @return Real size of node
767 *
[1fff583]768 */
[d3a9ae74]769aoff64_t ext4fs_size_get(fs_node_t *fn)
770{
[9b9d37bb]771 ext4fs_node_t *enode = EXT4FS_NODE(fn);
[5614c7f]772 ext4_superblock_t *sb = enode->instance->filesystem->superblock;
773 return ext4_inode_get_size(sb, enode->inode_ref->inode);
[d3a9ae74]774}
775
[1fff583]776/** Get number of links to specified node.
777 *
[38542dc]778 * @param fn Node to get links to
779 *
780 * @return Number of links
781 *
[1fff583]782 */
[d3a9ae74]783unsigned ext4fs_lnkcnt_get(fs_node_t *fn)
784{
[d4d2954]785 ext4fs_node_t *enode = EXT4FS_NODE(fn);
786 uint32_t lnkcnt = ext4_inode_get_links_count(enode->inode_ref->inode);
[38542dc]787
[e5f8762]788 if (ext4fs_is_directory(fn)) {
[38542dc]789 if (lnkcnt > 1)
[e5f8762]790 return 1;
[38542dc]791 else
[e5f8762]792 return 0;
793 }
[38542dc]794
[06d85e5]795 /* For regular files return real links count */
[d4d2954]796 return lnkcnt;
[d3a9ae74]797}
798
[1fff583]799/** Check if node is directory.
800 *
[38542dc]801 * @param fn Node to check
802 *
803 * @return Result of check
804 *
[1fff583]805 */
[d3a9ae74]806bool ext4fs_is_directory(fs_node_t *fn)
807{
[e68c834]808 ext4fs_node_t *enode = EXT4FS_NODE(fn);
[5614c7f]809 ext4_superblock_t *sb = enode->instance->filesystem->superblock;
[38542dc]810
811 return ext4_inode_is_type(sb, enode->inode_ref->inode,
812 EXT4_INODE_MODE_DIRECTORY);
[d3a9ae74]813}
814
[1fff583]815/** Check if node is regular file.
816 *
[38542dc]817 * @param fn Node to check
818 *
819 * @return Result of check
820 *
[1fff583]821 */
[d3a9ae74]822bool ext4fs_is_file(fs_node_t *fn)
823{
[9b9d37bb]824 ext4fs_node_t *enode = EXT4FS_NODE(fn);
[5614c7f]825 ext4_superblock_t *sb = enode->instance->filesystem->superblock;
[38542dc]826
827 return ext4_inode_is_type(sb, enode->inode_ref->inode,
828 EXT4_INODE_MODE_FILE);
[d3a9ae74]829}
830
[1fff583]831/** Extract device identifier from node.
832 *
[38542dc]833 * @param node Node to extract id from
834 *
835 * @return id of device, where is the filesystem
836 *
[1fff583]837 */
[d3a9ae74]838service_id_t ext4fs_service_get(fs_node_t *fn)
839{
[e68c834]840 ext4fs_node_t *enode = EXT4FS_NODE(fn);
841 return enode->instance->service_id;
[d3a9ae74]842}
843
[3dd148d]844int ext4fs_size_block(service_id_t service_id, uint32_t *size)
[5930e3f]845{
846 ext4fs_instance_t *inst;
847 int rc = ext4fs_instance_get(service_id, &inst);
848 if (rc != EOK)
849 return rc;
[3dd148d]850
[5930e3f]851 if (NULL == inst)
852 return ENOENT;
[e8f0158]853
[5930e3f]854 ext4_superblock_t *sb = inst->filesystem->superblock;
[3dd148d]855 *size = ext4_superblock_get_block_size(sb);
[e8f0158]856
[3dd148d]857 return EOK;
[5930e3f]858}
859
[3dd148d]860int ext4fs_total_block_count(service_id_t service_id, uint64_t *count)
[e8f0158]861{
862 ext4fs_instance_t *inst;
863 int rc = ext4fs_instance_get(service_id, &inst);
864 if (rc != EOK)
865 return rc;
[3dd148d]866
[e8f0158]867 if (NULL == inst)
868 return ENOENT;
869
870 ext4_superblock_t *sb = inst->filesystem->superblock;
[3dd148d]871 *count = ext4_superblock_get_blocks_count(sb);
[e8f0158]872
[3dd148d]873 return EOK;
[e8f0158]874}
875
[3dd148d]876int ext4fs_free_block_count(service_id_t service_id, uint64_t *count)
[e8f0158]877{
878 ext4fs_instance_t *inst;
879 int rc = ext4fs_instance_get(service_id, &inst);
880 if (rc != EOK)
881 return rc;
882
883 ext4_superblock_t *sb = inst->filesystem->superblock;
[3dd148d]884 *count = ext4_superblock_get_free_blocks_count(sb);
[e8f0158]885
[3dd148d]886 return EOK;
[e8f0158]887}
888
[d3a9ae74]889/*
890 * libfs operations.
891 */
892libfs_ops_t ext4fs_libfs_ops = {
893 .root_get = ext4fs_root_get,
894 .match = ext4fs_match,
895 .node_get = ext4fs_node_get,
896 .node_open = ext4fs_node_open,
897 .node_put = ext4fs_node_put,
898 .create = ext4fs_create_node,
899 .destroy = ext4fs_destroy_node,
900 .link = ext4fs_link,
901 .unlink = ext4fs_unlink,
902 .has_children = ext4fs_has_children,
903 .index_get = ext4fs_index_get,
904 .size_get = ext4fs_size_get,
905 .lnkcnt_get = ext4fs_lnkcnt_get,
906 .is_directory = ext4fs_is_directory,
907 .is_file = ext4fs_is_file,
[5930e3f]908 .service_get = ext4fs_service_get,
[e8f0158]909 .size_block = ext4fs_size_block,
[c84146d3]910 .total_block_count = ext4fs_total_block_count,
911 .free_block_count = ext4fs_free_block_count
[d3a9ae74]912};
913
914/*
915 * VFS operations.
916 */
917
[38542dc]918/** Mount operation.
[1fff583]919 *
920 * Try to mount specified filesystem from device.
[38542dc]921 *
922 * @param service_id Identifier of device
923 * @param opts Mount options
924 * @param index Output value - index of root node
925 * @param size Output value - size of root node
926 * @param lnkcnt Output value - link count of root node
927 *
928 * @return Error code
929 *
[1fff583]930 */
[d3a9ae74]931static int ext4fs_mounted(service_id_t service_id, const char *opts,
[38542dc]932 fs_index_t *index, aoff64_t *size, unsigned *lnkcnt)
[d3a9ae74]933{
[6c501f8]934 /* Allocate libext4 filesystem structure */
[38542dc]935 ext4_filesystem_t *fs = (ext4_filesystem_t *)
936 malloc(sizeof(ext4_filesystem_t));
937 if (fs == NULL)
[6c501f8]938 return ENOMEM;
[38542dc]939
[6c501f8]940 /* Allocate instance structure */
[38542dc]941 ext4fs_instance_t *inst = (ext4fs_instance_t *)
942 malloc(sizeof(ext4fs_instance_t));
[6c501f8]943 if (inst == NULL) {
944 free(fs);
945 return ENOMEM;
946 }
[38542dc]947
[0b293a6]948 enum cache_mode cmode;
[38542dc]949 if (str_cmp(opts, "wtcache") == 0)
[0b293a6]950 cmode = CACHE_MODE_WT;
[38542dc]951 else
[0b293a6]952 cmode = CACHE_MODE_WB;
[38542dc]953
[9c0c0e1]954 /* Initialize the filesystem */
[38542dc]955 int rc = ext4_filesystem_init(fs, service_id, cmode);
[6c501f8]956 if (rc != EOK) {
957 free(fs);
958 free(inst);
959 return rc;
960 }
[38542dc]961
[6c501f8]962 /* Do some sanity checking */
963 rc = ext4_filesystem_check_sanity(fs);
964 if (rc != EOK) {
[fb04cd90]965 ext4_filesystem_fini(fs);
[6c501f8]966 free(fs);
967 free(inst);
968 return rc;
969 }
[38542dc]970
[6c501f8]971 /* Check flags */
[5614c7f]972 bool read_only;
[9c0c0e1]973 rc = ext4_filesystem_check_features(fs, &read_only);
[6c501f8]974 if (rc != EOK) {
[fb04cd90]975 ext4_filesystem_fini(fs);
[6c501f8]976 free(fs);
977 free(inst);
978 return rc;
979 }
[38542dc]980
[6c501f8]981 /* Initialize instance */
982 link_initialize(&inst->link);
983 inst->service_id = service_id;
984 inst->filesystem = fs;
985 inst->open_nodes_count = 0;
[38542dc]986
[6c501f8]987 /* Read root node */
988 fs_node_t *root_node;
[3711e7e]989 rc = ext4fs_node_get_core(&root_node, inst, EXT4_INODE_ROOT_INDEX);
[6c501f8]990 if (rc != EOK) {
[fb04cd90]991 ext4_filesystem_fini(fs);
[6c501f8]992 free(fs);
993 free(inst);
994 return rc;
995 }
[38542dc]996
[6c501f8]997 /* Add instance to the list */
998 fibril_mutex_lock(&instance_list_mutex);
999 list_append(&inst->link, &instance_list);
1000 fibril_mutex_unlock(&instance_list_mutex);
[38542dc]1001
[1df3f57a]1002 ext4fs_node_t *enode = EXT4FS_NODE(root_node);
[38542dc]1003
[6c501f8]1004 *index = EXT4_INODE_ROOT_INDEX;
[1df3f57a]1005 *size = ext4_inode_get_size(fs->superblock, enode->inode_ref->inode);
[e5f8762]1006 *lnkcnt = 1;
[38542dc]1007
[532f53d]1008 return ext4fs_node_put(root_node);
[d3a9ae74]1009}
1010
[1fff583]1011/** Unmount operation.
1012 *
1013 * Correctly release the filesystem.
1014 *
[38542dc]1015 * @param service_id Device to be unmounted
1016 *
1017 * @return Error code
1018 *
[1fff583]1019 */
[d3a9ae74]1020static int ext4fs_unmounted(service_id_t service_id)
1021{
[5614c7f]1022 ext4fs_instance_t *inst;
[38542dc]1023 int rc = ext4fs_instance_get(service_id, &inst);
1024 if (rc != EOK)
[6c501f8]1025 return rc;
[38542dc]1026
[6c501f8]1027 fibril_mutex_lock(&open_nodes_lock);
[38542dc]1028
[6c501f8]1029 if (inst->open_nodes_count != 0) {
1030 fibril_mutex_unlock(&open_nodes_lock);
1031 return EBUSY;
1032 }
[38542dc]1033
[6c501f8]1034 /* Remove the instance from the list */
1035 fibril_mutex_lock(&instance_list_mutex);
1036 list_remove(&inst->link);
1037 fibril_mutex_unlock(&instance_list_mutex);
[38542dc]1038
[6c501f8]1039 fibril_mutex_unlock(&open_nodes_lock);
[38542dc]1040
[fb04cd90]1041 return ext4_filesystem_fini(inst->filesystem);
[d3a9ae74]1042}
1043
[1fff583]1044/** Read bytes from node.
1045 *
[38542dc]1046 * @param service_id Device to read data from
1047 * @param index Number of node to read from
1048 * @param pos Position where the read should be started
1049 * @param rbytes Output value, where the real size was returned
1050 *
1051 * @return Error code
1052 *
[1fff583]1053 */
[38542dc]1054static int ext4fs_read(service_id_t service_id, fs_index_t index, aoff64_t pos,
1055 size_t *rbytes)
[d3a9ae74]1056{
[9b9d37bb]1057 /*
1058 * Receive the read request.
1059 */
1060 ipc_callid_t callid;
1061 size_t size;
1062 if (!async_data_read_receive(&callid, &size)) {
1063 async_answer_0(callid, EINVAL);
1064 return EINVAL;
1065 }
[38542dc]1066
[5614c7f]1067 ext4fs_instance_t *inst;
[38542dc]1068 int rc = ext4fs_instance_get(service_id, &inst);
[9b9d37bb]1069 if (rc != EOK) {
1070 async_answer_0(callid, rc);
1071 return rc;
1072 }
[38542dc]1073
[06d85e5]1074 /* Load i-node */
[5614c7f]1075 ext4_inode_ref_t *inode_ref;
[9b9d37bb]1076 rc = ext4_filesystem_get_inode_ref(inst->filesystem, index, &inode_ref);
1077 if (rc != EOK) {
1078 async_answer_0(callid, rc);
1079 return rc;
1080 }
[38542dc]1081
[06d85e5]1082 /* Read from i-node by type */
[9b9d37bb]1083 if (ext4_inode_is_type(inst->filesystem->superblock, inode_ref->inode,
[38542dc]1084 EXT4_INODE_MODE_FILE)) {
[9b9d37bb]1085 rc = ext4fs_read_file(callid, pos, size, inst, inode_ref,
[38542dc]1086 rbytes);
[9b9d37bb]1087 } else if (ext4_inode_is_type(inst->filesystem->superblock,
[38542dc]1088 inode_ref->inode, EXT4_INODE_MODE_DIRECTORY)) {
[9b9d37bb]1089 rc = ext4fs_read_directory(callid, pos, size, inst, inode_ref,
[38542dc]1090 rbytes);
[9b9d37bb]1091 } else {
1092 /* Other inode types not supported */
1093 async_answer_0(callid, ENOTSUP);
1094 rc = ENOTSUP;
1095 }
[38542dc]1096
[532f53d]1097 int const rc2 = ext4_filesystem_put_inode_ref(inode_ref);
[38542dc]1098
[532f53d]1099 return rc == EOK ? rc2 : rc;
[9b9d37bb]1100}
1101
[1fff583]1102/** Check if filename is dot or dotdot (reserved names).
1103 *
[38542dc]1104 * @param name Name to check
1105 * @param name_size Length of string name
1106 *
1107 * @return Result of the check
1108 *
[1fff583]1109 */
[8958a26]1110bool ext4fs_is_dots(const uint8_t *name, size_t name_size)
1111{
[38542dc]1112 if ((name_size == 1) && (name[0] == '.'))
[9b9d37bb]1113 return true;
[38542dc]1114
1115 if ((name_size == 2) && (name[0] == '.') && (name[1] == '.'))
[9b9d37bb]1116 return true;
[38542dc]1117
[9b9d37bb]1118 return false;
1119}
1120
[1fff583]1121/** Read data from directory.
1122 *
[38542dc]1123 * @param callid IPC id of call (for communication)
1124 * @param pos Position to start reading from
1125 * @param size How many bytes to read
1126 * @param inst Filesystem instance
1127 * @param inode_ref Node to read data from
1128 * @param rbytes Output value to return real number of bytes was read
1129 *
1130 * @return Error code
1131 *
[1fff583]1132 */
[9b9d37bb]1133int ext4fs_read_directory(ipc_callid_t callid, aoff64_t pos, size_t size,
1134 ext4fs_instance_t *inst, ext4_inode_ref_t *inode_ref, size_t *rbytes)
1135{
[5614c7f]1136 ext4_directory_iterator_t it;
[38542dc]1137 int rc = ext4_directory_iterator_init(&it, inode_ref, pos);
[9b9d37bb]1138 if (rc != EOK) {
1139 async_answer_0(callid, rc);
1140 return rc;
1141 }
[38542dc]1142
1143 /*
1144 * Find next interesting directory entry.
[9b9d37bb]1145 * We want to skip . and .. entries
1146 * as these are not used in HelenOS
1147 */
[5614c7f]1148 bool found = false;
[9b9d37bb]1149 while (it.current != NULL) {
[38542dc]1150 if (it.current->inode == 0)
[9b9d37bb]1151 goto skip;
[38542dc]1152
[5614c7f]1153 uint16_t name_size = ext4_directory_entry_ll_get_name_length(
[9b9d37bb]1154 inst->filesystem->superblock, it.current);
[38542dc]1155
1156 /* Skip . and .. */
1157 if (ext4fs_is_dots(it.current->name, name_size))
[9b9d37bb]1158 goto skip;
[38542dc]1159
1160 /*
1161 * The on-disk entry does not contain \0 at the end
[9b9d37bb]1162 * end of entry name, so we copy it to new buffer
1163 * and add the \0 at the end
1164 */
[38542dc]1165 uint8_t *buf = malloc(name_size + 1);
[9b9d37bb]1166 if (buf == NULL) {
1167 ext4_directory_iterator_fini(&it);
1168 async_answer_0(callid, ENOMEM);
1169 return ENOMEM;
1170 }
[38542dc]1171
[9b9d37bb]1172 memcpy(buf, &it.current->name, name_size);
1173 *(buf + name_size) = 0;
1174 found = true;
[38542dc]1175
[9b9d37bb]1176 (void) async_data_read_finalize(callid, buf, name_size + 1);
1177 free(buf);
1178 break;
[38542dc]1179
[9b9d37bb]1180skip:
1181 rc = ext4_directory_iterator_next(&it);
1182 if (rc != EOK) {
1183 ext4_directory_iterator_fini(&it);
1184 async_answer_0(callid, rc);
1185 return rc;
1186 }
1187 }
[38542dc]1188
[5614c7f]1189 uint64_t next;
[9b9d37bb]1190 if (found) {
1191 rc = ext4_directory_iterator_next(&it);
[38542dc]1192 if (rc != EOK)
[9b9d37bb]1193 return rc;
[38542dc]1194
[9b9d37bb]1195 next = it.current_offset;
1196 }
[38542dc]1197
[9b9d37bb]1198 rc = ext4_directory_iterator_fini(&it);
[38542dc]1199 if (rc != EOK)
[9b9d37bb]1200 return rc;
[38542dc]1201
[06d85e5]1202 /* Prepare return values */
[9b9d37bb]1203 if (found) {
1204 *rbytes = next - pos;
1205 return EOK;
1206 } else {
1207 async_answer_0(callid, ENOENT);
1208 return ENOENT;
1209 }
[d3a9ae74]1210}
1211
[1fff583]1212/** Read data from file.
1213 *
[38542dc]1214 * @param callid IPC id of call (for communication)
1215 * @param pos Position to start reading from
1216 * @param size How many bytes to read
1217 * @param inst Filesystem instance
1218 * @param inode_ref Node to read data from
1219 * @param rbytes Output value to return real number of bytes was read
1220 *
1221 * @return Error code
1222 *
[1fff583]1223 */
[9b9d37bb]1224int ext4fs_read_file(ipc_callid_t callid, aoff64_t pos, size_t size,
1225 ext4fs_instance_t *inst, ext4_inode_ref_t *inode_ref, size_t *rbytes)
1226{
[5614c7f]1227 ext4_superblock_t *sb = inst->filesystem->superblock;
1228 uint64_t file_size = ext4_inode_get_size(sb, inode_ref->inode);
[38542dc]1229
[9b9d37bb]1230 if (pos >= file_size) {
1231 /* Read 0 bytes successfully */
1232 async_data_read_finalize(callid, NULL, 0);
1233 *rbytes = 0;
1234 return EOK;
1235 }
[38542dc]1236
[9b9d37bb]1237 /* For now, we only read data from one block at a time */
[5614c7f]1238 uint32_t block_size = ext4_superblock_get_block_size(sb);
1239 aoff64_t file_block = pos / block_size;
1240 uint32_t offset_in_block = pos % block_size;
1241 uint32_t bytes = min(block_size - offset_in_block, size);
[38542dc]1242
[9b9d37bb]1243 /* Handle end of file */
[38542dc]1244 if (pos + bytes > file_size)
[9b9d37bb]1245 bytes = file_size - pos;
[38542dc]1246
[9b9d37bb]1247 /* Get the real block number */
[5614c7f]1248 uint32_t fs_block;
[38542dc]1249 int rc = ext4_filesystem_get_inode_data_block_index(inode_ref,
1250 file_block, &fs_block);
[9b9d37bb]1251 if (rc != EOK) {
1252 async_answer_0(callid, rc);
1253 return rc;
1254 }
[38542dc]1255
1256 /*
1257 * Check for sparse file.
[2b9e142]1258 * If ext4_filesystem_get_inode_data_block_index returned
[9b9d37bb]1259 * fs_block == 0, it means that the given block is not allocated for the
1260 * file and we need to return a buffer of zeros
1261 */
[5614c7f]1262 uint8_t *buffer;
[9b9d37bb]1263 if (fs_block == 0) {
1264 buffer = malloc(bytes);
1265 if (buffer == NULL) {
1266 async_answer_0(callid, ENOMEM);
1267 return ENOMEM;
1268 }
[38542dc]1269
[9b9d37bb]1270 memset(buffer, 0, bytes);
[38542dc]1271
[532f53d]1272 rc = async_data_read_finalize(callid, buffer, bytes);
[9b9d37bb]1273 *rbytes = bytes;
[38542dc]1274
[9b9d37bb]1275 free(buffer);
[532f53d]1276 return rc;
[9b9d37bb]1277 }
[38542dc]1278
[9b9d37bb]1279 /* Usual case - we need to read a block from device */
[5614c7f]1280 block_t *block;
[9b9d37bb]1281 rc = block_get(&block, inst->service_id, fs_block, BLOCK_FLAGS_NONE);
1282 if (rc != EOK) {
1283 async_answer_0(callid, rc);
1284 return rc;
1285 }
[38542dc]1286
[9b9d37bb]1287 assert(offset_in_block + bytes <= block_size);
[532f53d]1288 rc = async_data_read_finalize(callid, block->data + offset_in_block, bytes);
1289 if (rc != EOK) {
1290 block_put(block);
1291 return rc;
1292 }
[38542dc]1293
[9b9d37bb]1294 rc = block_put(block);
[38542dc]1295 if (rc != EOK)
[9b9d37bb]1296 return rc;
[38542dc]1297
[9b9d37bb]1298 *rbytes = bytes;
1299 return EOK;
1300}
[3711e7e]1301
[1fff583]1302/** Write bytes to file
1303 *
[38542dc]1304 * @param service_id Device identifier
1305 * @param index I-node number of file
1306 * @param pos Position in file to start reading from
1307 * @param wbytes Output value - real number of written bytes
1308 * @param nsize Output value - new size of i-node
1309 *
1310 * @return Error code
1311 *
[1fff583]1312 */
[38542dc]1313static int ext4fs_write(service_id_t service_id, fs_index_t index, aoff64_t pos,
1314 size_t *wbytes, aoff64_t *nsize)
[d3a9ae74]1315{
[5614c7f]1316 fs_node_t *fn;
[38542dc]1317 int rc = ext4fs_node_get(&fn, service_id, index);
1318 if (rc != EOK)
[1c1c736]1319 return rc;
[38542dc]1320
[5614c7f]1321 ipc_callid_t callid;
1322 size_t len;
[1c1c736]1323 if (!async_data_write_receive(&callid, &len)) {
[532f53d]1324 rc = EINVAL;
1325 async_answer_0(callid, rc);
1326 goto exit;
[1c1c736]1327 }
[38542dc]1328
[5614c7f]1329 ext4fs_node_t *enode = EXT4FS_NODE(fn);
1330 ext4_filesystem_t *fs = enode->instance->filesystem;
[38542dc]1331
[5614c7f]1332 uint32_t block_size = ext4_superblock_get_block_size(fs->superblock);
[38542dc]1333
[06d85e5]1334 /* Prevent writing to more than one block */
[5614c7f]1335 uint32_t bytes = min(len, block_size - (pos % block_size));
[38542dc]1336
[5614c7f]1337 int flags = BLOCK_FLAGS_NONE;
[38542dc]1338 if (bytes == block_size)
[35f48f2]1339 flags = BLOCK_FLAGS_NOREAD;
[38542dc]1340
[5614c7f]1341 uint32_t iblock = pos / block_size;
1342 uint32_t fblock;
[38542dc]1343
[06d85e5]1344 /* Load inode */
[5614c7f]1345 ext4_inode_ref_t *inode_ref = enode->inode_ref;
[38542dc]1346 rc = ext4_filesystem_get_inode_data_block_index(inode_ref, iblock,
1347 &fblock);
[6088193]1348 if (rc != EOK) {
[e63ce679]1349 async_answer_0(callid, rc);
[532f53d]1350 goto exit;
[6088193]1351 }
[38542dc]1352
[06d85e5]1353 /* Check for sparse file */
[1c1c736]1354 if (fblock == 0) {
[38542dc]1355 if ((ext4_superblock_has_feature_incompatible(fs->superblock,
1356 EXT4_FEATURE_INCOMPAT_EXTENTS)) &&
1357 (ext4_inode_has_flag(inode_ref->inode, EXT4_INODE_FLAG_EXTENTS))) {
1358 uint32_t last_iblock =
1359 ext4_inode_get_size(fs->superblock, inode_ref->inode) /
1360 block_size;
1361
[d510ac01]1362 while (last_iblock < iblock) {
[38542dc]1363 rc = ext4_extent_append_block(inode_ref, &last_iblock,
1364 &fblock, true);
[1196df6]1365 if (rc != EOK) {
1366 async_answer_0(callid, rc);
[532f53d]1367 goto exit;
[1196df6]1368 }
[d510ac01]1369 }
[38542dc]1370
1371 rc = ext4_extent_append_block(inode_ref, &last_iblock,
1372 &fblock, false);
[d510ac01]1373 if (rc != EOK) {
1374 async_answer_0(callid, rc);
[532f53d]1375 goto exit;
[d510ac01]1376 }
[1196df6]1377 } else {
[38542dc]1378 rc = ext4_balloc_alloc_block(inode_ref, &fblock);
[1196df6]1379 if (rc != EOK) {
1380 async_answer_0(callid, rc);
[532f53d]1381 goto exit;
[1196df6]1382 }
[38542dc]1383
1384 rc = ext4_filesystem_set_inode_data_block_index(inode_ref,
1385 iblock, fblock);
[1196df6]1386 if (rc != EOK) {
1387 ext4_balloc_free_block(inode_ref, fblock);
1388 async_answer_0(callid, rc);
[532f53d]1389 goto exit;
[1196df6]1390 }
[b12ca16]1391 }
[38542dc]1392
[35f48f2]1393 flags = BLOCK_FLAGS_NOREAD;
[1196df6]1394 inode_ref->dirty = true;
[1c1c736]1395 }
[38542dc]1396
[06d85e5]1397 /* Load target block */
[5614c7f]1398 block_t *write_block;
[35f48f2]1399 rc = block_get(&write_block, service_id, fblock, flags);
[1c1c736]1400 if (rc != EOK) {
1401 async_answer_0(callid, rc);
[532f53d]1402 goto exit;
[1c1c736]1403 }
[38542dc]1404
1405 if (flags == BLOCK_FLAGS_NOREAD)
[35f48f2]1406 memset(write_block->data, 0, block_size);
[532f53d]1407
[38542dc]1408 rc = async_data_write_finalize(callid, write_block->data +
1409 (pos % block_size), bytes);
[532f53d]1410 if (rc != EOK)
1411 goto exit;
1412
[1c1c736]1413 write_block->dirty = true;
[38542dc]1414
[1c1c736]1415 rc = block_put(write_block);
[532f53d]1416 if (rc != EOK)
1417 goto exit;
1418
[06d85e5]1419 /* Do some counting */
[38542dc]1420 uint32_t old_inode_size = ext4_inode_get_size(fs->superblock,
1421 inode_ref->inode);
[35f48f2]1422 if (pos + bytes > old_inode_size) {
1423 ext4_inode_set_size(inode_ref->inode, pos + bytes);
1424 inode_ref->dirty = true;
[1c1c736]1425 }
[532f53d]1426
[35f48f2]1427 *nsize = ext4_inode_get_size(fs->superblock, inode_ref->inode);
[1c1c736]1428 *wbytes = bytes;
[532f53d]1429
1430exit:
1431 ;
1432
1433 int const rc2 = ext4fs_node_put(fn);
1434 return rc == EOK ? rc2 : rc;
[d3a9ae74]1435}
1436
[1fff583]1437/** Truncate file.
1438 *
1439 * Only the direction to shorter file is supported.
1440 *
[38542dc]1441 * @param service_id Device identifier
1442 * @param index Index if node to truncated
1443 * @param new_size New size of file
1444 *
1445 * @return Error code
1446 *
[1fff583]1447 */
[5f6cb14]1448static int ext4fs_truncate(service_id_t service_id, fs_index_t index,
[38542dc]1449 aoff64_t new_size)
[d3a9ae74]1450{
[5614c7f]1451 fs_node_t *fn;
[38542dc]1452 int rc = ext4fs_node_get(&fn, service_id, index);
1453 if (rc != EOK)
[d5a78e28]1454 return rc;
[38542dc]1455
[3d4fd2c]1456 ext4fs_node_t *enode = EXT4FS_NODE(fn);
1457 ext4_inode_ref_t *inode_ref = enode->inode_ref;
[38542dc]1458
[1ac1ab4]1459 rc = ext4_filesystem_truncate_inode(inode_ref, new_size);
[532f53d]1460 int const rc2 = ext4fs_node_put(fn);
[38542dc]1461
[532f53d]1462 return rc == EOK ? rc2 : rc;
[d3a9ae74]1463}
1464
[1fff583]1465/** Close file.
[81a7858]1466 *
[38542dc]1467 * @param service_id Device identifier
1468 * @param index I-node number
1469 *
1470 * @return Error code
1471 *
[1fff583]1472 */
[d3a9ae74]1473static int ext4fs_close(service_id_t service_id, fs_index_t index)
1474{
1475 return EOK;
1476}
1477
[1fff583]1478/** Destroy node specified by index.
1479 *
[38542dc]1480 * @param service_id Device identifier
1481 * @param index I-node to destroy
1482 *
1483 * @return Error code
1484 *
[1fff583]1485 */
[d3a9ae74]1486static int ext4fs_destroy(service_id_t service_id, fs_index_t index)
1487{
[5614c7f]1488 fs_node_t *fn;
[38542dc]1489 int rc = ext4fs_node_get(&fn, service_id, index);
1490 if (rc != EOK)
[8be96a0]1491 return rc;
[38542dc]1492
[8be96a0]1493 /* Destroy the inode */
1494 return ext4fs_destroy_node(fn);
[d3a9ae74]1495}
1496
[38542dc]1497/** Enforce inode synchronization (write) to device.
1498 *
1499 * @param service_id Device identifier
1500 * @param index I-node number.
[1fff583]1501 *
1502 */
[d3a9ae74]1503static int ext4fs_sync(service_id_t service_id, fs_index_t index)
1504{
[5614c7f]1505 fs_node_t *fn;
[38542dc]1506 int rc = ext4fs_node_get(&fn, service_id, index);
1507 if (rc != EOK)
[35f48f2]1508 return rc;
[38542dc]1509
[5614c7f]1510 ext4fs_node_t *enode = EXT4FS_NODE(fn);
[35f48f2]1511 enode->inode_ref->dirty = true;
[38542dc]1512
[35f48f2]1513 return ext4fs_node_put(fn);
[d3a9ae74]1514}
1515
[1fff583]1516/** VFS operations
1517 *
1518 */
[d3a9ae74]1519vfs_out_ops_t ext4fs_ops = {
1520 .mounted = ext4fs_mounted,
1521 .unmounted = ext4fs_unmounted,
1522 .read = ext4fs_read,
1523 .write = ext4fs_write,
1524 .truncate = ext4fs_truncate,
1525 .close = ext4fs_close,
1526 .destroy = ext4fs_destroy,
[38542dc]1527 .sync = ext4fs_sync
[d3a9ae74]1528};
1529
1530/**
1531 * @}
[2b9e142]1532 */
Note: See TracBrowser for help on using the repository browser.