source: mainline/uspace/srv/vfs/vfs_ops.c@ 852b801

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

Introduce VFS_IN_FSTAT and VFS_OUT_STAT.
Provide libc fstat() and devfs_stat().
This functionality replaces VFS_IN_NODE
and VFS_IN/OUT_DEVICE. FAT and TMPFS
still do not implement this and VFS_IN_STAT
and stat() need implementation as well.

  • Property mode set to 100644
File size: 30.4 KB
RevLine 
[861e7d1]1/*
2 * Copyright (c) 2008 Jakub Jermar
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 *
9 * - Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
11 * - Redistributions in binary form must reproduce the above copyright
12 * notice, this list of conditions and the following disclaimer in the
13 * documentation and/or other materials provided with the distribution.
14 * - The name of the author may not be used to endorse or promote products
15 * derived from this software without specific prior written permission.
16 *
17 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
18 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
19 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
20 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
21 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
22 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 */
28
29/** @addtogroup fs
30 * @{
[8dc72b64]31 */
[861e7d1]32
33/**
[8dc72b64]34 * @file vfs_ops.c
35 * @brief Operations that VFS offers to its clients.
[861e7d1]36 */
37
[a8e9ab8d]38#include "vfs.h"
[861e7d1]39#include <ipc/ipc.h>
40#include <async.h>
41#include <errno.h>
42#include <stdio.h>
43#include <stdlib.h>
44#include <string.h>
45#include <bool.h>
[230260ac]46#include <fibril_sync.h>
[d9c8c81]47#include <adt/list.h>
[861e7d1]48#include <unistd.h>
49#include <ctype.h>
[2db4ac8]50#include <fcntl.h>
[861e7d1]51#include <assert.h>
[a8e9ab8d]52#include <vfs/canonify.h>
[861e7d1]53
[7fe1f75]54/* Forward declarations of static functions. */
[f2ec8c8]55static int vfs_truncate_internal(fs_handle_t, dev_handle_t, fs_index_t, size_t);
[7fe1f75]56
[861e7d1]57/**
58 * This rwlock prevents the race between a triplet-to-VFS-node resolution and a
59 * concurrent VFS operation which modifies the file system namespace.
60 */
[230260ac]61FIBRIL_RWLOCK_INITIALIZE(namespace_rwlock);
[861e7d1]62
[f49b0ea]63vfs_pair_t rootfs = {
[861e7d1]64 .fs_handle = 0,
[f49b0ea]65 .dev_handle = 0
[861e7d1]66};
67
[8dc72b64]68static void vfs_mount_internal(ipc_callid_t rid, dev_handle_t dev_handle,
[594303b]69 fs_handle_t fs_handle, char *mp, char *opts)
[861e7d1]70{
[8dc72b64]71 vfs_lookup_res_t mp_res;
[83937ccd]72 vfs_lookup_res_t mr_res;
[861e7d1]73 vfs_node_t *mp_node = NULL;
[83937ccd]74 vfs_node_t *mr_node;
75 fs_index_t rindex;
76 size_t rsize;
77 unsigned rlnkcnt;
[594303b]78 ipcarg_t rc;
[64b67c3]79 int phone;
[594303b]80 aid_t msg;
81 ipc_call_t answer;
[05b9912]82
[594303b]83 /* Resolve the path to the mountpoint. */
[230260ac]84 fibril_rwlock_write_lock(&namespace_rwlock);
[861e7d1]85 if (rootfs.fs_handle) {
[72bde81]86 /* We already have the root FS. */
[92fd52d7]87 if (str_cmp(mp, "/") == 0) {
[2f60a529]88 /* Trying to mount root FS over root FS */
[230260ac]89 fibril_rwlock_write_unlock(&namespace_rwlock);
[2f60a529]90 ipc_answer_0(rid, EBUSY);
91 return;
92 }
[8dc72b64]93
94 rc = vfs_lookup_internal(mp, L_DIRECTORY, &mp_res, NULL);
[861e7d1]95 if (rc != EOK) {
[72bde81]96 /* The lookup failed for some reason. */
[230260ac]97 fibril_rwlock_write_unlock(&namespace_rwlock);
[861e7d1]98 ipc_answer_0(rid, rc);
99 return;
100 }
[8dc72b64]101
[eb27ce5a]102 mp_node = vfs_node_get(&mp_res);
[861e7d1]103 if (!mp_node) {
[230260ac]104 fibril_rwlock_write_unlock(&namespace_rwlock);
[861e7d1]105 ipc_answer_0(rid, ENOMEM);
106 return;
107 }
[8dc72b64]108
[861e7d1]109 /*
110 * Now we hold a reference to mp_node.
[4198f9c3]111 * It will be dropped upon the corresponding VFS_IN_UNMOUNT.
[861e7d1]112 * This prevents the mount point from being deleted.
113 */
114 } else {
[72bde81]115 /* We still don't have the root file system mounted. */
[92fd52d7]116 if (str_cmp(mp, "/") == 0) {
[64b67c3]117 /*
118 * For this simple, but important case,
119 * we are almost done.
120 */
121
[f49b0ea]122 /* Tell the mountee that it is being mounted. */
123 phone = vfs_grab_phone(fs_handle);
[4198f9c3]124 msg = async_send_1(phone, VFS_OUT_MOUNTED,
[594303b]125 (ipcarg_t) dev_handle, &answer);
126 /* send the mount options */
127 rc = ipc_data_write_start(phone, (void *)opts,
128 str_size(opts));
129 if (rc != EOK) {
[230260ac]130 async_wait_for(msg, NULL);
[34ca870]131 vfs_release_phone(phone);
[230260ac]132 fibril_rwlock_write_unlock(&namespace_rwlock);
[594303b]133 ipc_answer_0(rid, rc);
134 return;
135 }
[230260ac]136 async_wait_for(msg, &rc);
[34ca870]137 vfs_release_phone(phone);
[5ab597d]138
139 if (rc != EOK) {
[230260ac]140 fibril_rwlock_write_unlock(&namespace_rwlock);
[5ab597d]141 ipc_answer_0(rid, rc);
142 return;
[f49b0ea]143 }
[594303b]144
145 rindex = (fs_index_t) IPC_GET_ARG1(answer);
146 rsize = (size_t) IPC_GET_ARG2(answer);
147 rlnkcnt = (unsigned) IPC_GET_ARG3(answer);
[8dc72b64]148
[5ab597d]149 mr_res.triplet.fs_handle = fs_handle;
150 mr_res.triplet.dev_handle = dev_handle;
[594303b]151 mr_res.triplet.index = rindex;
152 mr_res.size = rsize;
153 mr_res.lnkcnt = rlnkcnt;
[b17186d]154 mr_res.type = VFS_NODE_DIRECTORY;
[8dc72b64]155
[5ab597d]156 rootfs.fs_handle = fs_handle;
157 rootfs.dev_handle = dev_handle;
[8dc72b64]158
[5ab597d]159 /* Add reference to the mounted root. */
160 mr_node = vfs_node_get(&mr_res);
161 assert(mr_node);
[8dc72b64]162
[230260ac]163 fibril_rwlock_write_unlock(&namespace_rwlock);
[64b67c3]164 ipc_answer_0(rid, rc);
[861e7d1]165 return;
166 } else {
167 /*
168 * We can't resolve this without the root filesystem
169 * being mounted first.
170 */
[230260ac]171 fibril_rwlock_write_unlock(&namespace_rwlock);
[861e7d1]172 ipc_answer_0(rid, ENOENT);
173 return;
174 }
175 }
176
177 /*
178 * At this point, we have all necessary pieces: file system and device
[f49b0ea]179 * handles, and we know the mount point VFS node.
[861e7d1]180 */
[8dc72b64]181
[83937ccd]182 int mountee_phone = vfs_grab_phone(fs_handle);
183 assert(mountee_phone >= 0);
184
[64b67c3]185 phone = vfs_grab_phone(mp_res.triplet.fs_handle);
[4198f9c3]186 msg = async_send_4(phone, VFS_OUT_MOUNT,
[eb27ce5a]187 (ipcarg_t) mp_res.triplet.dev_handle,
[ce7311fc]188 (ipcarg_t) mp_res.triplet.index,
[f49b0ea]189 (ipcarg_t) fs_handle,
[594303b]190 (ipcarg_t) dev_handle, &answer);
[83937ccd]191
192 /* send connection */
193 rc = async_req_1_0(phone, IPC_M_CONNECTION_CLONE, mountee_phone);
194 if (rc != EOK) {
[230260ac]195 async_wait_for(msg, NULL);
[34ca870]196 vfs_release_phone(mountee_phone);
197 vfs_release_phone(phone);
[83937ccd]198 /* Mount failed, drop reference to mp_node. */
199 if (mp_node)
200 vfs_node_put(mp_node);
201 ipc_answer_0(rid, rc);
[230260ac]202 fibril_rwlock_write_unlock(&namespace_rwlock);
[83937ccd]203 return;
204 }
[34ca870]205
206 vfs_release_phone(mountee_phone);
[83937ccd]207
[594303b]208 /* send the mount options */
209 rc = ipc_data_write_start(phone, (void *)opts, str_size(opts));
210 if (rc != EOK) {
[230260ac]211 async_wait_for(msg, NULL);
[34ca870]212 vfs_release_phone(phone);
[594303b]213 /* Mount failed, drop reference to mp_node. */
214 if (mp_node)
215 vfs_node_put(mp_node);
[230260ac]216 fibril_rwlock_write_unlock(&namespace_rwlock);
[594303b]217 ipc_answer_0(rid, rc);
218 return;
219 }
[230260ac]220 async_wait_for(msg, &rc);
[34ca870]221 vfs_release_phone(phone);
[8dc72b64]222
[493853ec]223 if (rc == EOK) {
224 rindex = (fs_index_t) IPC_GET_ARG1(answer);
225 rsize = (size_t) IPC_GET_ARG2(answer);
226 rlnkcnt = (unsigned) IPC_GET_ARG3(answer);
227
228 mr_res.triplet.fs_handle = fs_handle;
229 mr_res.triplet.dev_handle = dev_handle;
230 mr_res.triplet.index = rindex;
231 mr_res.size = rsize;
232 mr_res.lnkcnt = rlnkcnt;
233 mr_res.type = VFS_NODE_DIRECTORY;
234
235 /* Add reference to the mounted root. */
236 mr_node = vfs_node_get(&mr_res);
237 assert(mr_node);
238 } else {
[f49b0ea]239 /* Mount failed, drop reference to mp_node. */
[861e7d1]240 if (mp_node)
241 vfs_node_put(mp_node);
242 }
[83937ccd]243
[ce7311fc]244 ipc_answer_0(rid, rc);
[230260ac]245 fibril_rwlock_write_unlock(&namespace_rwlock);
[861e7d1]246}
247
[8dc72b64]248void vfs_mount(ipc_callid_t rid, ipc_call_t *request)
249{
250 /*
251 * We expect the library to do the device-name to device-handle
252 * translation for us, thus the device handle will arrive as ARG1
253 * in the request.
254 */
255 dev_handle_t dev_handle = (dev_handle_t) IPC_GET_ARG1(*request);
256
257 /*
258 * Mount flags are passed as ARG2.
259 */
260 unsigned int flags = (unsigned int) IPC_GET_ARG2(*request);
261
262 /*
263 * For now, don't make use of ARG3, but it can be used to
264 * carry mount options in the future.
265 */
266
267 /* We want the client to send us the mount point. */
268 ipc_callid_t callid;
269 size_t size;
270 if (!ipc_data_write_receive(&callid, &size)) {
271 ipc_answer_0(callid, EINVAL);
272 ipc_answer_0(rid, EINVAL);
273 return;
274 }
275
276 /* Check whether size is reasonable wrt. the mount point. */
277 if ((size < 1) || (size > MAX_PATH_LEN)) {
278 ipc_answer_0(callid, EINVAL);
279 ipc_answer_0(rid, EINVAL);
280 return;
281 }
282
283 /* Allocate buffer for the mount point data being received. */
284 char *mp = malloc(size + 1);
285 if (!mp) {
286 ipc_answer_0(callid, ENOMEM);
287 ipc_answer_0(rid, ENOMEM);
288 return;
289 }
290
291 /* Deliver the mount point. */
292 ipcarg_t retval = ipc_data_write_finalize(callid, mp, size);
293 if (retval != EOK) {
[58d7280]294 ipc_answer_0(rid, retval);
[8dc72b64]295 free(mp);
296 return;
297 }
298 mp[size] = '\0';
299
[594303b]300 /* Now we expect to receive the mount options. */
301 if (!ipc_data_write_receive(&callid, &size)) {
302 ipc_answer_0(callid, EINVAL);
303 ipc_answer_0(rid, EINVAL);
304 free(mp);
305 return;
306 }
307
308 /* Check the offered options size. */
309 if (size < 0 || size > MAX_MNTOPTS_LEN) {
310 ipc_answer_0(callid, EINVAL);
311 ipc_answer_0(rid, EINVAL);
312 free(mp);
313 return;
314 }
315
316 /* Allocate buffer for the mount options. */
317 char *opts = (char *) malloc(size + 1);
318 if (!opts) {
319 ipc_answer_0(callid, ENOMEM);
320 ipc_answer_0(rid, ENOMEM);
321 free(mp);
322 return;
323 }
324
325 /* Deliver the mount options. */
326 retval = ipc_data_write_finalize(callid, opts, size);
327 if (retval != EOK) {
328 ipc_answer_0(rid, retval);
329 free(mp);
330 free(opts);
331 return;
332 }
333 opts[size] = '\0';
334
[8dc72b64]335 /*
336 * Now, we expect the client to send us data with the name of the file
337 * system.
338 */
339 if (!ipc_data_write_receive(&callid, &size)) {
340 ipc_answer_0(callid, EINVAL);
341 ipc_answer_0(rid, EINVAL);
342 free(mp);
[594303b]343 free(opts);
[8dc72b64]344 return;
345 }
346
347 /*
348 * Don't receive more than is necessary for storing a full file system
349 * name.
350 */
351 if ((size < 1) || (size > FS_NAME_MAXLEN)) {
352 ipc_answer_0(callid, EINVAL);
353 ipc_answer_0(rid, EINVAL);
354 free(mp);
[594303b]355 free(opts);
[8dc72b64]356 return;
357 }
358
359 /*
360 * Allocate buffer for file system name.
361 */
362 char *fs_name = (char *) malloc(size + 1);
363 if (fs_name == NULL) {
364 ipc_answer_0(callid, ENOMEM);
[58d7280]365 ipc_answer_0(rid, ENOMEM);
[8dc72b64]366 free(mp);
[594303b]367 free(opts);
[8dc72b64]368 return;
369 }
370
371 /* Deliver the file system name. */
372 retval = ipc_data_write_finalize(callid, fs_name, size);
373 if (retval != EOK) {
[58d7280]374 ipc_answer_0(rid, retval);
[8dc72b64]375 free(mp);
[594303b]376 free(opts);
[8dc72b64]377 free(fs_name);
378 return;
379 }
380 fs_name[size] = '\0';
[c08c355]381
382 /*
383 * Wait for IPC_M_PING so that we can return an error if we don't know
384 * fs_name.
385 */
386 ipc_call_t data;
387 callid = async_get_call(&data);
388 if (IPC_GET_METHOD(data) != IPC_M_PING) {
389 ipc_answer_0(callid, ENOTSUP);
390 ipc_answer_0(rid, ENOTSUP);
391 free(mp);
[594303b]392 free(opts);
[c08c355]393 free(fs_name);
394 return;
395 }
396
[8dc72b64]397 /*
398 * Check if we know a file system with the same name as is in fs_name.
399 * This will also give us its file system handle.
400 */
[af7383f3]401 fibril_mutex_lock(&fs_head_lock);
[7b47fa2]402 fs_handle_t fs_handle;
403recheck:
404 fs_handle = fs_name_to_handle(fs_name, false);
[8dc72b64]405 if (!fs_handle) {
406 if (flags & IPC_FLAG_BLOCKING) {
[7b47fa2]407 fibril_condvar_wait(&fs_head_cv, &fs_head_lock);
408 goto recheck;
[8dc72b64]409 }
410
[af7383f3]411 fibril_mutex_unlock(&fs_head_lock);
[8dc72b64]412 ipc_answer_0(callid, ENOENT);
413 ipc_answer_0(rid, ENOENT);
414 free(mp);
415 free(fs_name);
[594303b]416 free(opts);
[8dc72b64]417 return;
418 }
[af7383f3]419 fibril_mutex_unlock(&fs_head_lock);
[8dc72b64]420
421 /* Acknowledge that we know fs_name. */
422 ipc_answer_0(callid, EOK);
423
424 /* Do the mount */
[594303b]425 vfs_mount_internal(rid, dev_handle, fs_handle, mp, opts);
[8dc72b64]426 free(mp);
427 free(fs_name);
[594303b]428 free(opts);
[8dc72b64]429}
430
[861e7d1]431void vfs_open(ipc_callid_t rid, ipc_call_t *request)
432{
433 if (!vfs_files_init()) {
434 ipc_answer_0(rid, ENOMEM);
435 return;
436 }
[05b9912]437
[861e7d1]438 /*
[ae78b530]439 * The POSIX interface is open(path, oflag, mode).
[4198f9c3]440 * We can receive oflags and mode along with the VFS_IN_OPEN call;
441 * the path will need to arrive in another call.
[ae78b530]442 *
443 * We also receive one private, non-POSIX set of flags called lflag
444 * used to pass information to vfs_lookup_internal().
[861e7d1]445 */
[ae78b530]446 int lflag = IPC_GET_ARG1(*request);
447 int oflag = IPC_GET_ARG2(*request);
448 int mode = IPC_GET_ARG3(*request);
[861e7d1]449 size_t len;
[05b9912]450
[b17186d]451 /*
452 * Make sure that we are called with exactly one of L_FILE and
[05b9912]453 * L_DIRECTORY. Make sure that the user does not pass L_OPEN.
[b17186d]454 */
[230260ac]455 if (((lflag & (L_FILE | L_DIRECTORY)) == 0) ||
456 ((lflag & (L_FILE | L_DIRECTORY)) == (L_FILE | L_DIRECTORY)) ||
457 ((lflag & L_OPEN) != 0)) {
[b17186d]458 ipc_answer_0(rid, EINVAL);
459 return;
460 }
[05b9912]461
[2db4ac8]462 if (oflag & O_CREAT)
463 lflag |= L_CREATE;
464 if (oflag & O_EXCL)
465 lflag |= L_EXCLUSIVE;
[05b9912]466
[861e7d1]467 ipc_callid_t callid;
468 if (!ipc_data_write_receive(&callid, &len)) {
469 ipc_answer_0(callid, EINVAL);
470 ipc_answer_0(rid, EINVAL);
471 return;
472 }
[05b9912]473
[d6084ef]474 char *path = malloc(len + 1);
[861e7d1]475 if (!path) {
476 ipc_answer_0(callid, ENOMEM);
477 ipc_answer_0(rid, ENOMEM);
478 return;
479 }
[05b9912]480
[861e7d1]481 int rc;
482 if ((rc = ipc_data_write_finalize(callid, path, len))) {
483 ipc_answer_0(rid, rc);
484 free(path);
485 return;
486 }
[d6084ef]487 path[len] = '\0';
[861e7d1]488
489 /*
490 * Avoid the race condition in which the file can be deleted before we
491 * find/create-and-lock the VFS node corresponding to the looked-up
492 * triplet.
493 */
[2db4ac8]494 if (lflag & L_CREATE)
[230260ac]495 fibril_rwlock_write_lock(&namespace_rwlock);
[2db4ac8]496 else
[230260ac]497 fibril_rwlock_read_lock(&namespace_rwlock);
[05b9912]498
[72bde81]499 /* The path is now populated and we can call vfs_lookup_internal(). */
[eb27ce5a]500 vfs_lookup_res_t lr;
[05b9912]501 rc = vfs_lookup_internal(path, lflag | L_OPEN, &lr, NULL);
502 if (rc != EOK) {
[2db4ac8]503 if (lflag & L_CREATE)
[230260ac]504 fibril_rwlock_write_unlock(&namespace_rwlock);
[2db4ac8]505 else
[230260ac]506 fibril_rwlock_read_unlock(&namespace_rwlock);
[861e7d1]507 ipc_answer_0(rid, rc);
508 free(path);
509 return;
510 }
[05b9912]511
[7fe1f75]512 /* Path is no longer needed. */
[861e7d1]513 free(path);
[05b9912]514
[eb27ce5a]515 vfs_node_t *node = vfs_node_get(&lr);
[2db4ac8]516 if (lflag & L_CREATE)
[230260ac]517 fibril_rwlock_write_unlock(&namespace_rwlock);
[2db4ac8]518 else
[230260ac]519 fibril_rwlock_read_unlock(&namespace_rwlock);
[05b9912]520
[7fe1f75]521 /* Truncate the file if requested and if necessary. */
522 if (oflag & O_TRUNC) {
[230260ac]523 fibril_rwlock_write_lock(&node->contents_rwlock);
[7fe1f75]524 if (node->size) {
525 rc = vfs_truncate_internal(node->fs_handle,
526 node->dev_handle, node->index, 0);
527 if (rc) {
[230260ac]528 fibril_rwlock_write_unlock(&node->contents_rwlock);
[7fe1f75]529 vfs_node_put(node);
530 ipc_answer_0(rid, rc);
531 return;
532 }
533 node->size = 0;
534 }
[230260ac]535 fibril_rwlock_write_unlock(&node->contents_rwlock);
[7fe1f75]536 }
[05b9912]537
[861e7d1]538 /*
539 * Get ourselves a file descriptor and the corresponding vfs_file_t
540 * structure.
541 */
542 int fd = vfs_fd_alloc();
543 if (fd < 0) {
544 vfs_node_put(node);
545 ipc_answer_0(rid, fd);
546 return;
547 }
548 vfs_file_t *file = vfs_file_get(fd);
549 file->node = node;
[05b9912]550 if (oflag & O_APPEND)
[15b9970]551 file->append = true;
[05b9912]552
[861e7d1]553 /*
554 * The following increase in reference count is for the fact that the
555 * file is being opened and that a file structure is pointing to it.
556 * It is necessary so that the file will not disappear when
557 * vfs_node_put() is called. The reference will be dropped by the
[4198f9c3]558 * respective VFS_IN_CLOSE.
[861e7d1]559 */
560 vfs_node_addref(node);
561 vfs_node_put(node);
[05b9912]562
563 /* Success! Return the new file descriptor to the client. */
564 ipc_answer_1(rid, EOK, fd);
565}
[861e7d1]566
[05b9912]567void vfs_open_node(ipc_callid_t rid, ipc_call_t *request)
568{
569 // FIXME: check for sanity of the supplied fs, dev and index
570
571 if (!vfs_files_init()) {
572 ipc_answer_0(rid, ENOMEM);
573 return;
574 }
575
576 /*
577 * The interface is open_node(fs, dev, index, oflag).
578 */
579 vfs_lookup_res_t lr;
580
581 lr.triplet.fs_handle = IPC_GET_ARG1(*request);
582 lr.triplet.dev_handle = IPC_GET_ARG2(*request);
583 lr.triplet.index = IPC_GET_ARG3(*request);
584 int oflag = IPC_GET_ARG4(*request);
585
[230260ac]586 fibril_rwlock_read_lock(&namespace_rwlock);
[05b9912]587
588 int rc = vfs_open_node_internal(&lr);
589 if (rc != EOK) {
[230260ac]590 fibril_rwlock_read_unlock(&namespace_rwlock);
[05b9912]591 ipc_answer_0(rid, rc);
592 return;
593 }
594
595 vfs_node_t *node = vfs_node_get(&lr);
[230260ac]596 fibril_rwlock_read_unlock(&namespace_rwlock);
[05b9912]597
598 /* Truncate the file if requested and if necessary. */
599 if (oflag & O_TRUNC) {
[230260ac]600 fibril_rwlock_write_lock(&node->contents_rwlock);
[05b9912]601 if (node->size) {
602 rc = vfs_truncate_internal(node->fs_handle,
603 node->dev_handle, node->index, 0);
604 if (rc) {
[230260ac]605 fibril_rwlock_write_unlock(&node->contents_rwlock);
[05b9912]606 vfs_node_put(node);
607 ipc_answer_0(rid, rc);
608 return;
609 }
610 node->size = 0;
611 }
[230260ac]612 fibril_rwlock_write_unlock(&node->contents_rwlock);
[05b9912]613 }
614
615 /*
616 * Get ourselves a file descriptor and the corresponding vfs_file_t
617 * structure.
618 */
619 int fd = vfs_fd_alloc();
620 if (fd < 0) {
621 vfs_node_put(node);
622 ipc_answer_0(rid, fd);
623 return;
624 }
625 vfs_file_t *file = vfs_file_get(fd);
626 file->node = node;
627 if (oflag & O_APPEND)
628 file->append = true;
629
630 /*
631 * The following increase in reference count is for the fact that the
632 * file is being opened and that a file structure is pointing to it.
633 * It is necessary so that the file will not disappear when
634 * vfs_node_put() is called. The reference will be dropped by the
[4198f9c3]635 * respective VFS_IN_CLOSE.
[05b9912]636 */
637 vfs_node_addref(node);
638 vfs_node_put(node);
639
[72bde81]640 /* Success! Return the new file descriptor to the client. */
[861e7d1]641 ipc_answer_1(rid, EOK, fd);
642}
643
[05b9912]644void vfs_sync(ipc_callid_t rid, ipc_call_t *request)
645{
646 int fd = IPC_GET_ARG1(*request);
647
648 /* Lookup the file structure corresponding to the file descriptor. */
649 vfs_file_t *file = vfs_file_get(fd);
650 if (!file) {
651 ipc_answer_0(rid, ENOENT);
652 return;
653 }
654
655 /*
656 * Lock the open file structure so that no other thread can manipulate
657 * the same open file at a time.
658 */
[230260ac]659 fibril_mutex_lock(&file->lock);
[05b9912]660 int fs_phone = vfs_grab_phone(file->node->fs_handle);
661
[4198f9c3]662 /* Make a VFS_OUT_SYMC request at the destination FS server. */
[05b9912]663 aid_t msg;
664 ipc_call_t answer;
[4198f9c3]665 msg = async_send_2(fs_phone, VFS_OUT_SYNC, file->node->dev_handle,
666 file->node->index, &answer);
[230260ac]667
[05b9912]668 /* Wait for reply from the FS server. */
669 ipcarg_t rc;
670 async_wait_for(msg, &rc);
671
[34ca870]672 vfs_release_phone(fs_phone);
[230260ac]673 fibril_mutex_unlock(&file->lock);
[05b9912]674
[b7f9087]675 ipc_answer_0(rid, rc);
[e704503]676}
677
[05b9912]678void vfs_close(ipc_callid_t rid, ipc_call_t *request)
679{
680 int fd = IPC_GET_ARG1(*request);
681
682 /* Lookup the file structure corresponding to the file descriptor. */
683 vfs_file_t *file = vfs_file_get(fd);
684 if (!file) {
685 ipc_answer_0(rid, ENOENT);
686 return;
687 }
688
689 /*
690 * Lock the open file structure so that no other thread can manipulate
691 * the same open file at a time.
692 */
[230260ac]693 fibril_mutex_lock(&file->lock);
[05b9912]694 int fs_phone = vfs_grab_phone(file->node->fs_handle);
695
[4198f9c3]696 /* Make a VFS_OUT_CLOSE request at the destination FS server. */
[05b9912]697 aid_t msg;
698 ipc_call_t answer;
[4198f9c3]699 msg = async_send_2(fs_phone, VFS_OUT_CLOSE, file->node->dev_handle,
700 file->node->index, &answer);
[230260ac]701
[05b9912]702 /* Wait for reply from the FS server. */
703 ipcarg_t rc;
704 async_wait_for(msg, &rc);
[34ca870]705
706 vfs_release_phone(fs_phone);
[230260ac]707 fibril_mutex_unlock(&file->lock);
[05b9912]708
709 int retval = IPC_GET_ARG1(answer);
710 if (retval != EOK)
711 ipc_answer_0(rid, retval);
712
713 retval = vfs_fd_free(fd);
714 ipc_answer_0(rid, retval);
715}
716
[861e7d1]717static void vfs_rdwr(ipc_callid_t rid, ipc_call_t *request, bool read)
718{
719
720 /*
721 * The following code strongly depends on the fact that the files data
722 * structure can be only accessed by a single fibril and all file
723 * operations are serialized (i.e. the reads and writes cannot
724 * interleave and a file cannot be closed while it is being read).
725 *
726 * Additional synchronization needs to be added once the table of
727 * open files supports parallel access!
728 */
729
730 int fd = IPC_GET_ARG1(*request);
[6c89f20]731
[72bde81]732 /* Lookup the file structure corresponding to the file descriptor. */
[861e7d1]733 vfs_file_t *file = vfs_file_get(fd);
734 if (!file) {
735 ipc_answer_0(rid, ENOENT);
736 return;
737 }
[6c89f20]738
[861e7d1]739 /*
740 * Now we need to receive a call with client's
741 * IPC_M_DATA_READ/IPC_M_DATA_WRITE request.
742 */
743 ipc_callid_t callid;
744 int res;
745 if (read)
746 res = ipc_data_read_receive(&callid, NULL);
747 else
748 res = ipc_data_write_receive(&callid, NULL);
749 if (!res) {
750 ipc_answer_0(callid, EINVAL);
751 ipc_answer_0(rid, EINVAL);
752 return;
753 }
[6c89f20]754
[861e7d1]755 /*
756 * Lock the open file structure so that no other thread can manipulate
757 * the same open file at a time.
758 */
[230260ac]759 fibril_mutex_lock(&file->lock);
[b17186d]760
[861e7d1]761 /*
762 * Lock the file's node so that no other client can read/write to it at
763 * the same time.
764 */
765 if (read)
[230260ac]766 fibril_rwlock_read_lock(&file->node->contents_rwlock);
[861e7d1]767 else
[230260ac]768 fibril_rwlock_write_lock(&file->node->contents_rwlock);
[b17186d]769
770 if (file->node->type == VFS_NODE_DIRECTORY) {
771 /*
772 * Make sure that no one is modifying the namespace
773 * while we are in readdir().
774 */
775 assert(read);
[230260ac]776 fibril_rwlock_read_lock(&namespace_rwlock);
[b17186d]777 }
[6c89f20]778
[861e7d1]779 int fs_phone = vfs_grab_phone(file->node->fs_handle);
780
[72bde81]781 /* Make a VFS_READ/VFS_WRITE request at the destination FS server. */
[861e7d1]782 aid_t msg;
783 ipc_call_t answer;
[15b9970]784 if (!read && file->append)
785 file->pos = file->node->size;
[4198f9c3]786 msg = async_send_3(fs_phone, read ? VFS_OUT_READ : VFS_OUT_WRITE,
[861e7d1]787 file->node->dev_handle, file->node->index, file->pos, &answer);
788
789 /*
790 * Forward the IPC_M_DATA_READ/IPC_M_DATA_WRITE request to the
791 * destination FS server. The call will be routed as if sent by
792 * ourselves. Note that call arguments are immutable in this case so we
793 * don't have to bother.
794 */
795 ipc_forward_fast(callid, fs_phone, 0, 0, 0, IPC_FF_ROUTE_FROM_ME);
[230260ac]796
[72bde81]797 /* Wait for reply from the FS server. */
[861e7d1]798 ipcarg_t rc;
799 async_wait_for(msg, &rc);
[05b9912]800
[34ca870]801 vfs_release_phone(fs_phone);
802
[861e7d1]803 size_t bytes = IPC_GET_ARG1(answer);
[b17186d]804
805 if (file->node->type == VFS_NODE_DIRECTORY)
[230260ac]806 fibril_rwlock_read_unlock(&namespace_rwlock);
[6c89f20]807
[72bde81]808 /* Unlock the VFS node. */
[861e7d1]809 if (read)
[230260ac]810 fibril_rwlock_read_unlock(&file->node->contents_rwlock);
[861e7d1]811 else {
812 /* Update the cached version of node's size. */
[f7017572]813 if (rc == EOK)
814 file->node->size = IPC_GET_ARG2(answer);
[230260ac]815 fibril_rwlock_write_unlock(&file->node->contents_rwlock);
[861e7d1]816 }
[6c89f20]817
[72bde81]818 /* Update the position pointer and unlock the open file. */
[f7017572]819 if (rc == EOK)
820 file->pos += bytes;
[230260ac]821 fibril_mutex_unlock(&file->lock);
[6c89f20]822
[861e7d1]823 /*
824 * FS server's reply is the final result of the whole operation we
825 * return to the client.
826 */
827 ipc_answer_1(rid, rc, bytes);
828}
829
830void vfs_read(ipc_callid_t rid, ipc_call_t *request)
831{
832 vfs_rdwr(rid, request, true);
833}
834
835void vfs_write(ipc_callid_t rid, ipc_call_t *request)
836{
837 vfs_rdwr(rid, request, false);
838}
839
840void vfs_seek(ipc_callid_t rid, ipc_call_t *request)
841{
842 int fd = (int) IPC_GET_ARG1(*request);
843 off_t off = (off_t) IPC_GET_ARG2(*request);
844 int whence = (int) IPC_GET_ARG3(*request);
845
846
[72bde81]847 /* Lookup the file structure corresponding to the file descriptor. */
[861e7d1]848 vfs_file_t *file = vfs_file_get(fd);
849 if (!file) {
850 ipc_answer_0(rid, ENOENT);
851 return;
852 }
853
854 off_t newpos;
[230260ac]855 fibril_mutex_lock(&file->lock);
[861e7d1]856 if (whence == SEEK_SET) {
857 file->pos = off;
[230260ac]858 fibril_mutex_unlock(&file->lock);
[861e7d1]859 ipc_answer_1(rid, EOK, off);
860 return;
861 }
862 if (whence == SEEK_CUR) {
863 if (file->pos + off < file->pos) {
[230260ac]864 fibril_mutex_unlock(&file->lock);
[861e7d1]865 ipc_answer_0(rid, EOVERFLOW);
866 return;
867 }
868 file->pos += off;
869 newpos = file->pos;
[230260ac]870 fibril_mutex_unlock(&file->lock);
[861e7d1]871 ipc_answer_1(rid, EOK, newpos);
872 return;
873 }
874 if (whence == SEEK_END) {
[230260ac]875 fibril_rwlock_read_lock(&file->node->contents_rwlock);
[861e7d1]876 size_t size = file->node->size;
[230260ac]877 fibril_rwlock_read_unlock(&file->node->contents_rwlock);
[861e7d1]878 if (size + off < size) {
[230260ac]879 fibril_mutex_unlock(&file->lock);
[861e7d1]880 ipc_answer_0(rid, EOVERFLOW);
881 return;
882 }
883 newpos = size + off;
[230260ac]884 fibril_mutex_unlock(&file->lock);
[861e7d1]885 ipc_answer_1(rid, EOK, newpos);
886 return;
887 }
[230260ac]888 fibril_mutex_unlock(&file->lock);
[861e7d1]889 ipc_answer_0(rid, EINVAL);
890}
891
[f2ec8c8]892int
893vfs_truncate_internal(fs_handle_t fs_handle, dev_handle_t dev_handle,
894 fs_index_t index, size_t size)
[7fe1f75]895{
896 ipcarg_t rc;
897 int fs_phone;
898
899 fs_phone = vfs_grab_phone(fs_handle);
[4198f9c3]900 rc = async_req_3_0(fs_phone, VFS_OUT_TRUNCATE, (ipcarg_t)dev_handle,
[7fe1f75]901 (ipcarg_t)index, (ipcarg_t)size);
902 vfs_release_phone(fs_phone);
903 return (int)rc;
904}
905
[0ee4322]906void vfs_truncate(ipc_callid_t rid, ipc_call_t *request)
907{
908 int fd = IPC_GET_ARG1(*request);
909 size_t size = IPC_GET_ARG2(*request);
[7fe1f75]910 int rc;
[0ee4322]911
912 vfs_file_t *file = vfs_file_get(fd);
913 if (!file) {
914 ipc_answer_0(rid, ENOENT);
915 return;
916 }
[230260ac]917 fibril_mutex_lock(&file->lock);
[0ee4322]918
[230260ac]919 fibril_rwlock_write_lock(&file->node->contents_rwlock);
[7fe1f75]920 rc = vfs_truncate_internal(file->node->fs_handle,
921 file->node->dev_handle, file->node->index, size);
[0ee4322]922 if (rc == EOK)
923 file->node->size = size;
[230260ac]924 fibril_rwlock_write_unlock(&file->node->contents_rwlock);
[0ee4322]925
[230260ac]926 fibril_mutex_unlock(&file->lock);
[7fe1f75]927 ipc_answer_0(rid, (ipcarg_t)rc);
[861e7d1]928}
929
[852b801]930void vfs_fstat(ipc_callid_t rid, ipc_call_t *request)
931{
932 int fd = IPC_GET_ARG1(*request);
933 size_t size = IPC_GET_ARG2(*request);
934 ipcarg_t rc;
935
936 vfs_file_t *file = vfs_file_get(fd);
937 if (!file) {
938 ipc_answer_0(rid, ENOENT);
939 return;
940 }
941
942 ipc_callid_t callid;
943 if (!ipc_data_read_receive(&callid, NULL)) {
944 ipc_answer_0(callid, EINVAL);
945 ipc_answer_0(rid, EINVAL);
946 return;
947 }
948
949 fibril_mutex_lock(&file->lock);
950
951 int fs_phone = vfs_grab_phone(file->node->fs_handle);
952
953 aid_t msg;
954 msg = async_send_3(fs_phone, VFS_OUT_STAT, file->node->dev_handle,
955 file->node->index, true, NULL);
956 ipc_forward_fast(callid, fs_phone, 0, 0, 0, IPC_FF_ROUTE_FROM_ME);
957 async_wait_for(msg, &rc);
958 vfs_release_phone(fs_phone);
959
960 fibril_mutex_unlock(&file->lock);
961 ipc_answer_0(rid, rc);
962}
963
964void vfs_stat(ipc_callid_t rid, ipc_call_t *request)
965{
966}
967
[72bde81]968void vfs_mkdir(ipc_callid_t rid, ipc_call_t *request)
969{
970 int mode = IPC_GET_ARG1(*request);
971
[f15cf1a6]972 size_t len;
[72bde81]973 ipc_callid_t callid;
974
975 if (!ipc_data_write_receive(&callid, &len)) {
976 ipc_answer_0(callid, EINVAL);
977 ipc_answer_0(rid, EINVAL);
978 return;
979 }
[d6084ef]980 char *path = malloc(len + 1);
[72bde81]981 if (!path) {
982 ipc_answer_0(callid, ENOMEM);
983 ipc_answer_0(rid, ENOMEM);
984 return;
985 }
986 int rc;
987 if ((rc = ipc_data_write_finalize(callid, path, len))) {
988 ipc_answer_0(rid, rc);
989 free(path);
990 return;
991 }
[d6084ef]992 path[len] = '\0';
[72bde81]993
[230260ac]994 fibril_rwlock_write_lock(&namespace_rwlock);
[72bde81]995 int lflag = L_DIRECTORY | L_CREATE | L_EXCLUSIVE;
[d6084ef]996 rc = vfs_lookup_internal(path, lflag, NULL, NULL);
[230260ac]997 fibril_rwlock_write_unlock(&namespace_rwlock);
[72bde81]998 free(path);
999 ipc_answer_0(rid, rc);
1000}
1001
[f15cf1a6]1002void vfs_unlink(ipc_callid_t rid, ipc_call_t *request)
1003{
1004 int lflag = IPC_GET_ARG1(*request);
1005
1006 size_t len;
1007 ipc_callid_t callid;
1008
1009 if (!ipc_data_write_receive(&callid, &len)) {
1010 ipc_answer_0(callid, EINVAL);
1011 ipc_answer_0(rid, EINVAL);
1012 return;
1013 }
[d6084ef]1014 char *path = malloc(len + 1);
[f15cf1a6]1015 if (!path) {
1016 ipc_answer_0(callid, ENOMEM);
1017 ipc_answer_0(rid, ENOMEM);
1018 return;
1019 }
1020 int rc;
1021 if ((rc = ipc_data_write_finalize(callid, path, len))) {
1022 ipc_answer_0(rid, rc);
1023 free(path);
1024 return;
1025 }
[d6084ef]1026 path[len] = '\0';
[f15cf1a6]1027
[230260ac]1028 fibril_rwlock_write_lock(&namespace_rwlock);
[f15cf1a6]1029 lflag &= L_DIRECTORY; /* sanitize lflag */
1030 vfs_lookup_res_t lr;
[a8e9ab8d]1031 rc = vfs_lookup_internal(path, lflag | L_UNLINK, &lr, NULL);
[f15cf1a6]1032 free(path);
1033 if (rc != EOK) {
[230260ac]1034 fibril_rwlock_write_unlock(&namespace_rwlock);
[f15cf1a6]1035 ipc_answer_0(rid, rc);
1036 return;
1037 }
1038
1039 /*
1040 * The name has already been unlinked by vfs_lookup_internal().
1041 * We have to get and put the VFS node to ensure that it is
[4198f9c3]1042 * VFS_OUT_DESTROY'ed after the last reference to it is dropped.
[f15cf1a6]1043 */
1044 vfs_node_t *node = vfs_node_get(&lr);
[553492be]1045 fibril_mutex_lock(&nodes_mutex);
[f15cf1a6]1046 node->lnkcnt--;
[553492be]1047 fibril_mutex_unlock(&nodes_mutex);
[230260ac]1048 fibril_rwlock_write_unlock(&namespace_rwlock);
[f15cf1a6]1049 vfs_node_put(node);
1050 ipc_answer_0(rid, EOK);
1051}
1052
[a8e9ab8d]1053void vfs_rename(ipc_callid_t rid, ipc_call_t *request)
1054{
[732bb0c]1055 size_t olen, nlen;
[a8e9ab8d]1056 ipc_callid_t callid;
1057 int rc;
1058
1059 /* Retrieve the old path. */
[732bb0c]1060 if (!ipc_data_write_receive(&callid, &olen)) {
[a8e9ab8d]1061 ipc_answer_0(callid, EINVAL);
1062 ipc_answer_0(rid, EINVAL);
1063 return;
1064 }
[732bb0c]1065 char *old = malloc(olen + 1);
[a8e9ab8d]1066 if (!old) {
1067 ipc_answer_0(callid, ENOMEM);
1068 ipc_answer_0(rid, ENOMEM);
1069 return;
1070 }
[732bb0c]1071 if ((rc = ipc_data_write_finalize(callid, old, olen))) {
[a8e9ab8d]1072 ipc_answer_0(rid, rc);
1073 free(old);
1074 return;
1075 }
[732bb0c]1076 old[olen] = '\0';
[a8e9ab8d]1077
1078 /* Retrieve the new path. */
[732bb0c]1079 if (!ipc_data_write_receive(&callid, &nlen)) {
[a8e9ab8d]1080 ipc_answer_0(callid, EINVAL);
1081 ipc_answer_0(rid, EINVAL);
1082 free(old);
1083 return;
1084 }
[732bb0c]1085 char *new = malloc(nlen + 1);
[a8e9ab8d]1086 if (!new) {
1087 ipc_answer_0(callid, ENOMEM);
1088 ipc_answer_0(rid, ENOMEM);
1089 free(old);
1090 return;
1091 }
[732bb0c]1092 if ((rc = ipc_data_write_finalize(callid, new, nlen))) {
[a8e9ab8d]1093 ipc_answer_0(rid, rc);
1094 free(old);
1095 free(new);
1096 return;
1097 }
[732bb0c]1098 new[nlen] = '\0';
[a8e9ab8d]1099
[732bb0c]1100 char *oldc = canonify(old, &olen);
1101 char *newc = canonify(new, &nlen);
[a8e9ab8d]1102 if (!oldc || !newc) {
1103 ipc_answer_0(rid, EINVAL);
1104 free(old);
1105 free(new);
1106 return;
1107 }
[732bb0c]1108 oldc[olen] = '\0';
1109 newc[nlen] = '\0';
[14040e5]1110 if ((!str_lcmp(newc, oldc, str_length(oldc))) &&
1111 ((newc[str_length(oldc)] == '/') ||
1112 (str_length(oldc) == 1) ||
1113 (str_length(oldc) == str_length(newc)))) {
1114 /*
1115 * oldc is a prefix of newc and either
1116 * - newc continues with a / where oldc ends, or
1117 * - oldc was / itself, or
1118 * - oldc and newc are equal.
1119 */
[a8e9ab8d]1120 ipc_answer_0(rid, EINVAL);
1121 free(old);
1122 free(new);
1123 return;
1124 }
1125
1126 vfs_lookup_res_t old_lr;
1127 vfs_lookup_res_t new_lr;
1128 vfs_lookup_res_t new_par_lr;
[230260ac]1129 fibril_rwlock_write_lock(&namespace_rwlock);
[a8e9ab8d]1130 /* Lookup the node belonging to the old file name. */
1131 rc = vfs_lookup_internal(oldc, L_NONE, &old_lr, NULL);
1132 if (rc != EOK) {
[230260ac]1133 fibril_rwlock_write_unlock(&namespace_rwlock);
[a8e9ab8d]1134 ipc_answer_0(rid, rc);
1135 free(old);
1136 free(new);
1137 return;
1138 }
1139 vfs_node_t *old_node = vfs_node_get(&old_lr);
1140 if (!old_node) {
[230260ac]1141 fibril_rwlock_write_unlock(&namespace_rwlock);
[a8e9ab8d]1142 ipc_answer_0(rid, ENOMEM);
1143 free(old);
1144 free(new);
1145 return;
1146 }
[4f46695e]1147 /* Determine the path to the parent of the node with the new name. */
1148 char *parentc = str_dup(newc);
1149 if (!parentc) {
[230260ac]1150 fibril_rwlock_write_unlock(&namespace_rwlock);
[4f46695e]1151 ipc_answer_0(rid, rc);
1152 free(old);
1153 free(new);
1154 return;
1155 }
[ae55ee8]1156 char *lastsl = str_rchr(parentc + 1, '/');
[4f46695e]1157 if (lastsl)
1158 *lastsl = '\0';
1159 else
1160 parentc[1] = '\0';
[a8e9ab8d]1161 /* Lookup parent of the new file name. */
[4f46695e]1162 rc = vfs_lookup_internal(parentc, L_NONE, &new_par_lr, NULL);
1163 free(parentc); /* not needed anymore */
[a8e9ab8d]1164 if (rc != EOK) {
[230260ac]1165 fibril_rwlock_write_unlock(&namespace_rwlock);
[a8e9ab8d]1166 ipc_answer_0(rid, rc);
1167 free(old);
1168 free(new);
1169 return;
1170 }
1171 /* Check whether linking to the same file system instance. */
1172 if ((old_node->fs_handle != new_par_lr.triplet.fs_handle) ||
1173 (old_node->dev_handle != new_par_lr.triplet.dev_handle)) {
[230260ac]1174 fibril_rwlock_write_unlock(&namespace_rwlock);
[a8e9ab8d]1175 ipc_answer_0(rid, EXDEV); /* different file systems */
1176 free(old);
1177 free(new);
1178 return;
1179 }
1180 /* Destroy the old link for the new name. */
1181 vfs_node_t *new_node = NULL;
1182 rc = vfs_lookup_internal(newc, L_UNLINK, &new_lr, NULL);
1183 switch (rc) {
1184 case ENOENT:
1185 /* simply not in our way */
1186 break;
1187 case EOK:
1188 new_node = vfs_node_get(&new_lr);
1189 if (!new_node) {
[230260ac]1190 fibril_rwlock_write_unlock(&namespace_rwlock);
[a8e9ab8d]1191 ipc_answer_0(rid, ENOMEM);
1192 free(old);
1193 free(new);
1194 return;
1195 }
[553492be]1196 fibril_mutex_lock(&nodes_mutex);
[a8e9ab8d]1197 new_node->lnkcnt--;
[553492be]1198 fibril_mutex_unlock(&nodes_mutex);
[a8e9ab8d]1199 break;
1200 default:
[230260ac]1201 fibril_rwlock_write_unlock(&namespace_rwlock);
[a8e9ab8d]1202 ipc_answer_0(rid, ENOTEMPTY);
1203 free(old);
1204 free(new);
1205 return;
1206 }
1207 /* Create the new link for the new name. */
1208 rc = vfs_lookup_internal(newc, L_LINK, NULL, NULL, old_node->index);
1209 if (rc != EOK) {
[230260ac]1210 fibril_rwlock_write_unlock(&namespace_rwlock);
[a8e9ab8d]1211 if (new_node)
1212 vfs_node_put(new_node);
1213 ipc_answer_0(rid, rc);
1214 free(old);
1215 free(new);
1216 return;
1217 }
[553492be]1218 fibril_mutex_lock(&nodes_mutex);
[a8e9ab8d]1219 old_node->lnkcnt++;
[553492be]1220 fibril_mutex_unlock(&nodes_mutex);
[a8e9ab8d]1221 /* Destroy the link for the old name. */
1222 rc = vfs_lookup_internal(oldc, L_UNLINK, NULL, NULL);
1223 if (rc != EOK) {
[230260ac]1224 fibril_rwlock_write_unlock(&namespace_rwlock);
[a8e9ab8d]1225 vfs_node_put(old_node);
1226 if (new_node)
1227 vfs_node_put(new_node);
1228 ipc_answer_0(rid, rc);
1229 free(old);
1230 free(new);
1231 return;
1232 }
[553492be]1233 fibril_mutex_lock(&nodes_mutex);
[a8e9ab8d]1234 old_node->lnkcnt--;
[553492be]1235 fibril_mutex_unlock(&nodes_mutex);
[230260ac]1236 fibril_rwlock_write_unlock(&namespace_rwlock);
[a8e9ab8d]1237 vfs_node_put(old_node);
1238 if (new_node)
1239 vfs_node_put(new_node);
1240 free(old);
1241 free(new);
1242 ipc_answer_0(rid, EOK);
1243}
1244
[861e7d1]1245/**
1246 * @}
[05b9912]1247 */
Note: See TracBrowser for help on using the repository browser.