source: mainline/uspace/lib/libfs/libfs.c@ 3c11713

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

Add dummy libfs unmount support and change all file systems to use it.
Add dummy VFS_OUT_UNMOUNTED support to all file systems.

  • Property mode set to 100644
File size: 14.8 KB
RevLine 
[74303b6]1/*
[1313ee9]2 * Copyright (c) 2009 Jakub Jermar
[74303b6]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
[1313ee9]29/** @addtogroup libfs
[74303b6]30 * @{
[1313ee9]31 */
[74303b6]32/**
33 * @file
[1313ee9]34 * Glue code which is common to all FS implementations.
[74303b6]35 */
36
[1313ee9]37#include "libfs.h"
[efd4a72]38#include "../../srv/vfs/vfs.h"
39#include <errno.h>
40#include <async.h>
41#include <ipc/ipc.h>
42#include <as.h>
[2c448fb]43#include <assert.h>
44#include <dirent.h>
[595edf5]45#include <mem.h>
[75160a6]46#include <sys/stat.h>
[efd4a72]47
[0daba212]48#define on_error(rc, action) \
49 do { \
50 if ((rc) != EOK) \
51 action; \
52 } while (0)
53
54#define combine_rc(rc1, rc2) \
55 ((rc1) == EOK ? (rc2) : (rc1))
56
57#define answer_and_return(rid, rc) \
58 do { \
59 ipc_answer_0((rid), (rc)); \
60 return; \
61 } while (0)
62
[efd4a72]63/** Register file system server.
64 *
65 * This function abstracts away the tedious registration protocol from
66 * file system implementations and lets them to reuse this registration glue
67 * code.
68 *
[1313ee9]69 * @param vfs_phone Open phone for communication with VFS.
70 * @param reg File system registration structure. It will be
71 * initialized by this function.
72 * @param info VFS info structure supplied by the file system
73 * implementation.
74 * @param conn Connection fibril for handling all calls originating in
75 * VFS.
76 *
77 * @return EOK on success or a non-zero error code on errror.
[efd4a72]78 *
79 */
80int fs_register(int vfs_phone, fs_reg_t *reg, vfs_info_t *info,
81 async_client_conn_t conn)
82{
83 /*
84 * Tell VFS that we are here and want to get registered.
85 * We use the async framework because VFS will answer the request
86 * out-of-order, when it knows that the operation succeeded or failed.
87 */
88 ipc_call_t answer;
[4198f9c3]89 aid_t req = async_send_0(vfs_phone, VFS_IN_REGISTER, &answer);
[1313ee9]90
[efd4a72]91 /*
92 * Send our VFS info structure to VFS.
93 */
[0da4e41]94 int rc = async_data_write_start(vfs_phone, info, sizeof(*info));
[efd4a72]95 if (rc != EOK) {
96 async_wait_for(req, NULL);
97 return rc;
98 }
[1313ee9]99
[efd4a72]100 /*
101 * Ask VFS for callback connection.
102 */
103 ipc_connect_to_me(vfs_phone, 0, 0, 0, &reg->vfs_phonehash);
[1313ee9]104
[efd4a72]105 /*
106 * Allocate piece of address space for PLB.
107 */
108 reg->plb_ro = as_get_mappable_page(PLB_SIZE);
109 if (!reg->plb_ro) {
110 async_wait_for(req, NULL);
111 return ENOMEM;
112 }
[1313ee9]113
[efd4a72]114 /*
115 * Request sharing the Path Lookup Buffer with VFS.
116 */
[0da4e41]117 rc = async_share_in_start_0_0(vfs_phone, reg->plb_ro, PLB_SIZE);
[efd4a72]118 if (rc) {
119 async_wait_for(req, NULL);
120 return rc;
121 }
122
123 /*
[4198f9c3]124 * Pick up the answer for the request to the VFS_IN_REQUEST call.
[efd4a72]125 */
126 async_wait_for(req, NULL);
127 reg->fs_handle = (int) IPC_GET_ARG1(answer);
128
129 /*
130 * Create a connection fibril to handle the callback connection.
131 */
132 async_new_connection(reg->vfs_phonehash, 0, NULL, conn);
133
134 /*
135 * Tell the async framework that other connections are to be handled by
136 * the same connection fibril as well.
137 */
138 async_set_client_connection(conn);
[1313ee9]139
[efd4a72]140 return IPC_GET_RETVAL(answer);
141}
[74303b6]142
[83937ccd]143void fs_node_initialize(fs_node_t *fn)
144{
145 memset(fn, 0, sizeof(fs_node_t));
146}
147
[16d17ca]148void libfs_mount(libfs_ops_t *ops, fs_handle_t fs_handle, ipc_callid_t rid,
149 ipc_call_t *request)
[83937ccd]150{
[55982d6]151 dev_handle_t mp_dev_handle = (dev_handle_t) IPC_GET_ARG1(*request);
152 fs_index_t mp_fs_index = (fs_index_t) IPC_GET_ARG2(*request);
153 fs_handle_t mr_fs_handle = (fs_handle_t) IPC_GET_ARG3(*request);
154 dev_handle_t mr_dev_handle = (dev_handle_t) IPC_GET_ARG4(*request);
[83937ccd]155 int res;
156 ipcarg_t rc;
[1313ee9]157
[83937ccd]158 ipc_call_t call;
159 ipc_callid_t callid;
[1313ee9]160
161 /* Accept the phone */
[83937ccd]162 callid = async_get_call(&call);
163 int mountee_phone = (int)IPC_GET_ARG1(call);
164 if ((IPC_GET_METHOD(call) != IPC_M_CONNECTION_CLONE) ||
[1313ee9]165 (mountee_phone < 0)) {
[83937ccd]166 ipc_answer_0(callid, EINVAL);
167 ipc_answer_0(rid, EINVAL);
168 return;
169 }
[1313ee9]170
171 /* Acknowledge the mountee_phone */
172 ipc_answer_0(callid, EOK);
[83937ccd]173
[0da4e41]174 res = async_data_write_receive(&callid, NULL);
[83937ccd]175 if (!res) {
176 ipc_hangup(mountee_phone);
177 ipc_answer_0(callid, EINVAL);
178 ipc_answer_0(rid, EINVAL);
179 return;
180 }
[1313ee9]181
[0daba212]182 fs_node_t *fn;
183 res = ops->node_get(&fn, mp_dev_handle, mp_fs_index);
[1313ee9]184 if ((res != EOK) || (!fn)) {
[83937ccd]185 ipc_hangup(mountee_phone);
[0daba212]186 ipc_answer_0(callid, combine_rc(res, ENOENT));
187 ipc_answer_0(rid, combine_rc(res, ENOENT));
[83937ccd]188 return;
189 }
[1313ee9]190
[83937ccd]191 if (fn->mp_data.mp_active) {
192 ipc_hangup(mountee_phone);
[0daba212]193 (void) ops->node_put(fn);
[83937ccd]194 ipc_answer_0(callid, EBUSY);
195 ipc_answer_0(rid, EBUSY);
196 return;
197 }
[1313ee9]198
[83937ccd]199 rc = async_req_0_0(mountee_phone, IPC_M_CONNECT_ME);
[0daba212]200 if (rc != EOK) {
[83937ccd]201 ipc_hangup(mountee_phone);
[0daba212]202 (void) ops->node_put(fn);
[83937ccd]203 ipc_answer_0(callid, rc);
204 ipc_answer_0(rid, rc);
205 return;
206 }
207
208 ipc_call_t answer;
[4198f9c3]209 aid_t msg = async_send_1(mountee_phone, VFS_OUT_MOUNTED, mr_dev_handle,
[83937ccd]210 &answer);
211 ipc_forward_fast(callid, mountee_phone, 0, 0, 0, IPC_FF_ROUTE_FROM_ME);
212 async_wait_for(msg, &rc);
213
214 if (rc == EOK) {
215 fn->mp_data.mp_active = true;
216 fn->mp_data.fs_handle = mr_fs_handle;
217 fn->mp_data.dev_handle = mr_dev_handle;
218 fn->mp_data.phone = mountee_phone;
219 }
[1313ee9]220
[83937ccd]221 /*
222 * Do not release the FS node so that it stays in memory.
223 */
[0442c02]224 ipc_answer_3(rid, rc, IPC_GET_ARG1(answer), IPC_GET_ARG2(answer),
225 IPC_GET_ARG3(answer));
[83937ccd]226}
227
[3c11713]228void libfs_unmount(libfs_ops_t *ops, ipc_callid_t rid, ipc_call_t *request)
229{
230 ipc_answer_0(rid, ENOTSUP);
231}
232
[1e50f81]233/** Lookup VFS triplet by name in the file system name space.
[9bb85f3]234 *
235 * The path passed in the PLB must be in the canonical file system path format
236 * as returned by the canonify() function.
[1e50f81]237 *
[595edf5]238 * @param ops libfs operations structure with function pointers to
239 * file system implementation
240 * @param fs_handle File system handle of the file system where to perform
241 * the lookup.
[4198f9c3]242 * @param rid Request ID of the VFS_OUT_LOOKUP request.
243 * @param request VFS_OUT_LOOKUP request data itself.
[595edf5]244 *
[1e50f81]245 */
[f2ec8c8]246void libfs_lookup(libfs_ops_t *ops, fs_handle_t fs_handle, ipc_callid_t rid,
[2c448fb]247 ipc_call_t *request)
248{
[1313ee9]249 unsigned int first = IPC_GET_ARG1(*request);
250 unsigned int last = IPC_GET_ARG2(*request);
251 unsigned int next = first;
[f2ec8c8]252 dev_handle_t dev_handle = IPC_GET_ARG3(*request);
[2c448fb]253 int lflag = IPC_GET_ARG4(*request);
[1313ee9]254 fs_index_t index = IPC_GET_ARG5(*request);
[c9f6e49f]255 char component[NAME_MAX + 1];
256 int len;
[0daba212]257 int rc;
[1313ee9]258
[2c448fb]259 if (last < next)
260 last += PLB_SIZE;
[1313ee9]261
[b6035ba]262 fs_node_t *par = NULL;
[0daba212]263 fs_node_t *cur = NULL;
[b6035ba]264 fs_node_t *tmp = NULL;
[1313ee9]265
[0daba212]266 rc = ops->root_get(&cur, dev_handle);
267 on_error(rc, goto out_with_answer);
[1313ee9]268
[83937ccd]269 if (cur->mp_data.mp_active) {
[4198f9c3]270 ipc_forward_slow(rid, cur->mp_data.phone, VFS_OUT_LOOKUP,
[83937ccd]271 next, last, cur->mp_data.dev_handle, lflag, index,
272 IPC_FF_ROUTE_FROM_ME);
[0daba212]273 (void) ops->node_put(cur);
[83937ccd]274 return;
275 }
[1313ee9]276
277 /* Eat slash */
[2c448fb]278 if (ops->plb_get_char(next) == '/')
[1313ee9]279 next++;
[2c448fb]280
[0daba212]281 while (next <= last) {
282 bool has_children;
[1313ee9]283
[0daba212]284 rc = ops->has_children(&has_children, cur);
285 on_error(rc, goto out_with_answer);
286 if (!has_children)
287 break;
[1313ee9]288
289 /* Collect the component */
[c9f6e49f]290 len = 0;
[1313ee9]291 while ((next <= last) && (ops->plb_get_char(next) != '/')) {
[2c448fb]292 if (len + 1 == NAME_MAX) {
[1313ee9]293 /* Component length overflow */
[2c448fb]294 ipc_answer_0(rid, ENAMETOOLONG);
[06901c6b]295 goto out;
[2c448fb]296 }
297 component[len++] = ops->plb_get_char(next);
[1313ee9]298 /* Process next character */
299 next++;
[2c448fb]300 }
[1313ee9]301
[2c448fb]302 assert(len);
303 component[len] = '\0';
[1313ee9]304 /* Eat slash */
305 next++;
306
307 /* Match the component */
[0daba212]308 rc = ops->match(&tmp, cur, component);
309 on_error(rc, goto out_with_answer);
[1313ee9]310
[4b995b92]311 /*
312 * If the matching component is a mount point, there are two
313 * legitimate semantics of the lookup operation. The first is
314 * the commonly used one in which the lookup crosses each mount
315 * point into the mounted file system. The second semantics is
316 * used mostly during unmount() and differs from the first one
317 * only in that the last mount point in the looked up path,
318 * which is also its last component, is not crossed.
319 */
320
321 if ((tmp) && (tmp->mp_data.mp_active) &&
[f7376cbf]322 (!(lflag & L_MP) || (next <= last))) {
[83937ccd]323 if (next > last)
324 next = last = first;
325 else
326 next--;
[1313ee9]327
[4198f9c3]328 ipc_forward_slow(rid, tmp->mp_data.phone,
329 VFS_OUT_LOOKUP, next, last, tmp->mp_data.dev_handle,
330 lflag, index, IPC_FF_ROUTE_FROM_ME);
[0daba212]331 (void) ops->node_put(cur);
332 (void) ops->node_put(tmp);
[83937ccd]333 if (par)
[0daba212]334 (void) ops->node_put(par);
[83937ccd]335 return;
336 }
[1313ee9]337
338 /* Handle miss: match amongst siblings */
[2c448fb]339 if (!tmp) {
[a8e9ab8d]340 if (next <= last) {
[1313ee9]341 /* There are unprocessed components */
[a8e9ab8d]342 ipc_answer_0(rid, ENOENT);
[06901c6b]343 goto out;
[a8e9ab8d]344 }
[1313ee9]345
346 /* Miss in the last component */
347 if (lflag & (L_CREATE | L_LINK)) {
348 /* Request to create a new link */
[2c448fb]349 if (!ops->is_directory(cur)) {
350 ipc_answer_0(rid, ENOTDIR);
[06901c6b]351 goto out;
[a8e9ab8d]352 }
[1313ee9]353
[b6035ba]354 fs_node_t *fn;
[a8e9ab8d]355 if (lflag & L_CREATE)
[0daba212]356 rc = ops->create(&fn, dev_handle,
357 lflag);
[a8e9ab8d]358 else
[0daba212]359 rc = ops->node_get(&fn, dev_handle,
[34f62f8]360 index);
[0daba212]361 on_error(rc, goto out_with_answer);
[1313ee9]362
[b6035ba]363 if (fn) {
364 rc = ops->link(cur, fn, component);
[0013b9ce]365 if (rc != EOK) {
[0daba212]366 if (lflag & L_CREATE)
367 (void) ops->destroy(fn);
[0013b9ce]368 ipc_answer_0(rid, rc);
[2c448fb]369 } else {
370 ipc_answer_5(rid, EOK,
371 fs_handle, dev_handle,
[b6035ba]372 ops->index_get(fn),
373 ops->size_get(fn),
374 ops->lnkcnt_get(fn));
[0daba212]375 (void) ops->node_put(fn);
[2c448fb]376 }
[1313ee9]377 } else
[2c448fb]378 ipc_answer_0(rid, ENOSPC);
[1313ee9]379
[06901c6b]380 goto out;
[1313ee9]381 }
382
[2c448fb]383 ipc_answer_0(rid, ENOENT);
[06901c6b]384 goto out;
[2c448fb]385 }
[1313ee9]386
[0daba212]387 if (par) {
388 rc = ops->node_put(par);
389 on_error(rc, goto out_with_answer);
390 }
[1313ee9]391
392 /* Descend one level */
[7b6d98b]393 par = cur;
[2c448fb]394 cur = tmp;
[06901c6b]395 tmp = NULL;
[2c448fb]396 }
[1313ee9]397
398 /* Handle miss: excessive components */
[0daba212]399 if (next <= last) {
400 bool has_children;
401 rc = ops->has_children(&has_children, cur);
402 on_error(rc, goto out_with_answer);
[1313ee9]403
[0daba212]404 if (has_children)
405 goto skip_miss;
[1313ee9]406
[a8e9ab8d]407 if (lflag & (L_CREATE | L_LINK)) {
[2c448fb]408 if (!ops->is_directory(cur)) {
409 ipc_answer_0(rid, ENOTDIR);
[06901c6b]410 goto out;
[2c448fb]411 }
[1313ee9]412
413 /* Collect next component */
[c9f6e49f]414 len = 0;
[2c448fb]415 while (next <= last) {
416 if (ops->plb_get_char(next) == '/') {
[1313ee9]417 /* More than one component */
[2c448fb]418 ipc_answer_0(rid, ENOENT);
[06901c6b]419 goto out;
[2c448fb]420 }
[1313ee9]421
[2c448fb]422 if (len + 1 == NAME_MAX) {
[1313ee9]423 /* Component length overflow */
[2c448fb]424 ipc_answer_0(rid, ENAMETOOLONG);
[06901c6b]425 goto out;
[2c448fb]426 }
[1313ee9]427
[2c448fb]428 component[len++] = ops->plb_get_char(next);
[1313ee9]429 /* Process next character */
430 next++;
[2c448fb]431 }
[1313ee9]432
[2c448fb]433 assert(len);
434 component[len] = '\0';
[1313ee9]435
[b6035ba]436 fs_node_t *fn;
[a8e9ab8d]437 if (lflag & L_CREATE)
[0daba212]438 rc = ops->create(&fn, dev_handle, lflag);
[a8e9ab8d]439 else
[0daba212]440 rc = ops->node_get(&fn, dev_handle, index);
441 on_error(rc, goto out_with_answer);
[1313ee9]442
[b6035ba]443 if (fn) {
444 rc = ops->link(cur, fn, component);
[0013b9ce]445 if (rc != EOK) {
[a8e9ab8d]446 if (lflag & L_CREATE)
[0daba212]447 (void) ops->destroy(fn);
[0013b9ce]448 ipc_answer_0(rid, rc);
[2c448fb]449 } else {
450 ipc_answer_5(rid, EOK,
451 fs_handle, dev_handle,
[b6035ba]452 ops->index_get(fn),
453 ops->size_get(fn),
454 ops->lnkcnt_get(fn));
[0daba212]455 (void) ops->node_put(fn);
[2c448fb]456 }
[1313ee9]457 } else
[2c448fb]458 ipc_answer_0(rid, ENOSPC);
[1313ee9]459
[06901c6b]460 goto out;
[2c448fb]461 }
[1313ee9]462
[2c448fb]463 ipc_answer_0(rid, ENOENT);
[06901c6b]464 goto out;
[2c448fb]465 }
[1313ee9]466
[0daba212]467skip_miss:
[1313ee9]468
469 /* Handle hit */
[a8e9ab8d]470 if (lflag & L_UNLINK) {
[1313ee9]471 unsigned int old_lnkcnt = ops->lnkcnt_get(cur);
[0daba212]472 rc = ops->unlink(par, cur, component);
[1313ee9]473 ipc_answer_5(rid, (ipcarg_t) rc, fs_handle, dev_handle,
[2c448fb]474 ops->index_get(cur), ops->size_get(cur), old_lnkcnt);
[06901c6b]475 goto out;
[2c448fb]476 }
[1313ee9]477
[a8e9ab8d]478 if (((lflag & (L_CREATE | L_EXCLUSIVE)) == (L_CREATE | L_EXCLUSIVE)) ||
479 (lflag & L_LINK)) {
[2c448fb]480 ipc_answer_0(rid, EEXIST);
[06901c6b]481 goto out;
[2c448fb]482 }
[1313ee9]483
[2c448fb]484 if ((lflag & L_FILE) && (ops->is_directory(cur))) {
485 ipc_answer_0(rid, EISDIR);
[06901c6b]486 goto out;
[2c448fb]487 }
[1313ee9]488
[2c448fb]489 if ((lflag & L_DIRECTORY) && (ops->is_file(cur))) {
490 ipc_answer_0(rid, ENOTDIR);
[06901c6b]491 goto out;
[2c448fb]492 }
[f7376cbf]493
494 if ((lflag & L_ROOT) && par) {
495 ipc_answer_0(rid, EINVAL);
496 goto out;
497 }
[1313ee9]498
[0daba212]499out_with_answer:
[1313ee9]500
[0daba212]501 if (rc == EOK) {
[1313ee9]502 if (lflag & L_OPEN)
503 rc = ops->node_open(cur);
504
505 ipc_answer_5(rid, rc, fs_handle, dev_handle,
[0daba212]506 ops->index_get(cur), ops->size_get(cur),
507 ops->lnkcnt_get(cur));
[1313ee9]508 } else
[0daba212]509 ipc_answer_0(rid, rc);
[1313ee9]510
[06901c6b]511out:
[1313ee9]512
[06901c6b]513 if (par)
[0daba212]514 (void) ops->node_put(par);
[1313ee9]515
[06901c6b]516 if (cur)
[0daba212]517 (void) ops->node_put(cur);
[1313ee9]518
[06901c6b]519 if (tmp)
[0daba212]520 (void) ops->node_put(tmp);
[2c448fb]521}
522
[75160a6]523void libfs_stat(libfs_ops_t *ops, fs_handle_t fs_handle, ipc_callid_t rid,
524 ipc_call_t *request)
525{
526 dev_handle_t dev_handle = (dev_handle_t) IPC_GET_ARG1(*request);
527 fs_index_t index = (fs_index_t) IPC_GET_ARG2(*request);
[1313ee9]528
[0daba212]529 fs_node_t *fn;
[1313ee9]530 int rc = ops->node_get(&fn, dev_handle, index);
[0daba212]531 on_error(rc, answer_and_return(rid, rc));
[1313ee9]532
[75160a6]533 ipc_callid_t callid;
534 size_t size;
[1313ee9]535 if ((!async_data_read_receive(&callid, &size)) ||
536 (size != sizeof(struct stat))) {
537 ops->node_put(fn);
[75160a6]538 ipc_answer_0(callid, EINVAL);
539 ipc_answer_0(rid, EINVAL);
540 return;
541 }
[1313ee9]542
[0143f72]543 struct stat stat;
544 memset(&stat, 0, sizeof(struct stat));
[75160a6]545
[0143f72]546 stat.fs_handle = fs_handle;
547 stat.dev_handle = dev_handle;
548 stat.index = index;
[1313ee9]549 stat.lnkcnt = ops->lnkcnt_get(fn);
[0143f72]550 stat.is_file = ops->is_file(fn);
[1313ee9]551 stat.is_directory = ops->is_directory(fn);
[0143f72]552 stat.size = ops->size_get(fn);
[1313ee9]553 stat.device = ops->device_get(fn);
554
555 ops->node_put(fn);
556
[0da4e41]557 async_data_read_finalize(callid, &stat, sizeof(struct stat));
[75160a6]558 ipc_answer_0(rid, EOK);
559}
560
[595edf5]561/** Open VFS triplet.
562 *
[1313ee9]563 * @param ops libfs operations structure with function pointers to
564 * file system implementation
565 * @param rid Request ID of the VFS_OUT_OPEN_NODE request.
566 * @param request VFS_OUT_OPEN_NODE request data itself.
[595edf5]567 *
568 */
569void libfs_open_node(libfs_ops_t *ops, fs_handle_t fs_handle, ipc_callid_t rid,
570 ipc_call_t *request)
571{
572 dev_handle_t dev_handle = IPC_GET_ARG1(*request);
573 fs_index_t index = IPC_GET_ARG2(*request);
[0daba212]574 fs_node_t *fn;
575 int rc;
[595edf5]576
[0daba212]577 rc = ops->node_get(&fn, dev_handle, index);
578 on_error(rc, answer_and_return(rid, rc));
[595edf5]579
[0daba212]580 if (fn == NULL) {
[595edf5]581 ipc_answer_0(rid, ENOENT);
582 return;
583 }
584
[1313ee9]585 rc = ops->node_open(fn);
586 ipc_answer_3(rid, rc, ops->size_get(fn), ops->lnkcnt_get(fn),
[2e983c7]587 (ops->is_file(fn) ? L_FILE : 0) | (ops->is_directory(fn) ? L_DIRECTORY : 0));
[595edf5]588
[0daba212]589 (void) ops->node_put(fn);
[595edf5]590}
591
[74303b6]592/** @}
593 */
Note: See TracBrowser for help on using the repository browser.