Subversion Repositories HelenOS

Rev

Rev 2957 | Rev 3079 | Go to most recent revision | Only display areas with differences | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 2957 Rev 2958
1
/*
1
/*
2
 * Copyright (c) 2008 Jakub Jermar
2
 * Copyright (c) 2008 Jakub Jermar
3
 * All rights reserved.
3
 * All rights reserved.
4
 *
4
 *
5
 * Redistribution and use in source and binary forms, with or without
5
 * Redistribution and use in source and binary forms, with or without
6
 * modification, are permitted provided that the following conditions
6
 * modification, are permitted provided that the following conditions
7
 * are met:
7
 * are met:
8
 *
8
 *
9
 * - Redistributions of source code must retain the above copyright
9
 * - Redistributions of source code must retain the above copyright
10
 *   notice, this list of conditions and the following disclaimer.
10
 *   notice, this list of conditions and the following disclaimer.
11
 * - Redistributions in binary form must reproduce the above copyright
11
 * - Redistributions in binary form must reproduce the above copyright
12
 *   notice, this list of conditions and the following disclaimer in the
12
 *   notice, this list of conditions and the following disclaimer in the
13
 *   documentation and/or other materials provided with the distribution.
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
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.
15
 *   derived from this software without specific prior written permission.
16
 *
16
 *
17
 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
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
18
 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
19
 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
19
 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
20
 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
20
 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
21
 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
21
 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
22
 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
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
23
 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24
 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
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
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.
26
 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27
 */
27
 */
28
 
28
 
29
/** @addtogroup fs
29
/** @addtogroup fs
30
 * @{
30
 * @{
31
 */
31
 */
32
 
32
 
33
/**
33
/**
34
 * @file    vfs_ops.c
34
 * @file    vfs_ops.c
35
 * @brief   Operations that VFS offers to its clients.
35
 * @brief   Operations that VFS offers to its clients.
36
 */
36
 */
37
 
37
 
38
#include "vfs.h"
38
#include "vfs.h"
39
#include <ipc/ipc.h>
39
#include <ipc/ipc.h>
40
#include <async.h>
40
#include <async.h>
41
#include <errno.h>
41
#include <errno.h>
42
#include <stdio.h>
42
#include <stdio.h>
43
#include <stdlib.h>
43
#include <stdlib.h>
44
#include <string.h>
44
#include <string.h>
45
#include <bool.h>
45
#include <bool.h>
46
#include <futex.h>
46
#include <futex.h>
47
#include <rwlock.h>
47
#include <rwlock.h>
48
#include <libadt/list.h>
48
#include <libadt/list.h>
49
#include <unistd.h>
49
#include <unistd.h>
50
#include <ctype.h>
50
#include <ctype.h>
51
#include <fcntl.h>
51
#include <fcntl.h>
52
#include <assert.h>
52
#include <assert.h>
53
#include <vfs/canonify.h>
53
#include <vfs/canonify.h>
54
 
54
 
55
/* Forward declarations of static functions. */
55
/* Forward declarations of static functions. */
56
static int vfs_truncate_internal(fs_handle_t, dev_handle_t, fs_index_t, size_t);
56
static int vfs_truncate_internal(fs_handle_t, dev_handle_t, fs_index_t, size_t);
57
 
57
 
58
/**
58
/**
59
 * This rwlock prevents the race between a triplet-to-VFS-node resolution and a
59
 * This rwlock prevents the race between a triplet-to-VFS-node resolution and a
60
 * concurrent VFS operation which modifies the file system namespace.
60
 * concurrent VFS operation which modifies the file system namespace.
61
 */
61
 */
62
RWLOCK_INITIALIZE(namespace_rwlock);
62
RWLOCK_INITIALIZE(namespace_rwlock);
63
 
63
 
64
futex_t rootfs_futex = FUTEX_INITIALIZER;
64
futex_t rootfs_futex = FUTEX_INITIALIZER;
65
vfs_triplet_t rootfs = {
65
vfs_triplet_t rootfs = {
66
    .fs_handle = 0,
66
    .fs_handle = 0,
67
    .dev_handle = 0,
67
    .dev_handle = 0,
68
    .index = 0,
68
    .index = 0,
69
};
69
};
70
 
70
 
71
static int
71
static int
72
lookup_root(fs_handle_t fs_handle, dev_handle_t dev_handle,
72
lookup_root(fs_handle_t fs_handle, dev_handle_t dev_handle,
73
    vfs_lookup_res_t *result)
73
    vfs_lookup_res_t *result)
74
{
74
{
75
    vfs_pair_t altroot = {
75
    vfs_pair_t altroot = {
76
        .fs_handle = fs_handle,
76
        .fs_handle = fs_handle,
77
        .dev_handle = dev_handle,
77
        .dev_handle = dev_handle,
78
    };
78
    };
79
 
79
 
80
    return vfs_lookup_internal("/", L_DIRECTORY, result, &altroot);
80
    return vfs_lookup_internal("/", L_DIRECTORY, result, &altroot);
81
}
81
}
82
 
82
 
83
void vfs_mount(ipc_callid_t rid, ipc_call_t *request)
83
void vfs_mount(ipc_callid_t rid, ipc_call_t *request)
84
{
84
{
85
    dev_handle_t dev_handle;
85
    dev_handle_t dev_handle;
86
    vfs_node_t *mp_node = NULL;
86
    vfs_node_t *mp_node = NULL;
87
    int rc;
87
    int rc;
-
 
88
    int phone;
88
 
89
 
89
    /*
90
    /*
90
     * We expect the library to do the device-name to device-handle
91
     * We expect the library to do the device-name to device-handle
91
     * translation for us, thus the device handle will arrive as ARG1
92
     * translation for us, thus the device handle will arrive as ARG1
92
     * in the request.
93
     * in the request.
93
     */
94
     */
94
    dev_handle = (dev_handle_t)IPC_GET_ARG1(*request);
95
    dev_handle = (dev_handle_t)IPC_GET_ARG1(*request);
95
 
96
 
96
    /*
97
    /*
97
     * For now, don't make use of ARG2 and ARG3, but they can be used to
98
     * For now, don't make use of ARG2 and ARG3, but they can be used to
98
     * carry mount options in the future.
99
     * carry mount options in the future.
99
     */
100
     */
100
 
101
 
101
    ipc_callid_t callid;
102
    ipc_callid_t callid;
102
    size_t size;
103
    size_t size;
103
 
104
 
104
    /*
105
    /*
105
     * Now, we expect the client to send us data with the name of the file
106
     * Now, we expect the client to send us data with the name of the file
106
     * system.
107
     * system.
107
     */
108
     */
108
    if (!ipc_data_write_receive(&callid, &size)) {
109
    if (!ipc_data_write_receive(&callid, &size)) {
109
        ipc_answer_0(callid, EINVAL);
110
        ipc_answer_0(callid, EINVAL);
110
        ipc_answer_0(rid, EINVAL);
111
        ipc_answer_0(rid, EINVAL);
111
        return;
112
        return;
112
    }
113
    }
113
 
114
 
114
    /*
115
    /*
115
     * Don't receive more than is necessary for storing a full file system
116
     * Don't receive more than is necessary for storing a full file system
116
     * name.
117
     * name.
117
     */
118
     */
118
    if (size < 1 || size > FS_NAME_MAXLEN) {
119
    if (size < 1 || size > FS_NAME_MAXLEN) {
119
        ipc_answer_0(callid, EINVAL);
120
        ipc_answer_0(callid, EINVAL);
120
        ipc_answer_0(rid, EINVAL);
121
        ipc_answer_0(rid, EINVAL);
121
        return;
122
        return;
122
    }
123
    }
123
 
124
 
124
    /* Deliver the file system name. */
125
    /* Deliver the file system name. */
125
    char fs_name[FS_NAME_MAXLEN + 1];
126
    char fs_name[FS_NAME_MAXLEN + 1];
126
    (void) ipc_data_write_finalize(callid, fs_name, size);
127
    (void) ipc_data_write_finalize(callid, fs_name, size);
127
    fs_name[size] = '\0';
128
    fs_name[size] = '\0';
128
   
129
   
129
    /*
130
    /*
130
     * Check if we know a file system with the same name as is in fs_name.
131
     * Check if we know a file system with the same name as is in fs_name.
131
     * This will also give us its file system handle.
132
     * This will also give us its file system handle.
132
     */
133
     */
133
    fs_handle_t fs_handle = fs_name_to_handle(fs_name, true);
134
    fs_handle_t fs_handle = fs_name_to_handle(fs_name, true);
134
    if (!fs_handle) {
135
    if (!fs_handle) {
135
        ipc_answer_0(rid, ENOENT);
136
        ipc_answer_0(rid, ENOENT);
136
        return;
137
        return;
137
    }
138
    }
138
 
139
 
139
    /* Now, we want the client to send us the mount point. */
140
    /* Now, we want the client to send us the mount point. */
140
    if (!ipc_data_write_receive(&callid, &size)) {
141
    if (!ipc_data_write_receive(&callid, &size)) {
141
        ipc_answer_0(callid, EINVAL);
142
        ipc_answer_0(callid, EINVAL);
142
        ipc_answer_0(rid, EINVAL);
143
        ipc_answer_0(rid, EINVAL);
143
        return;
144
        return;
144
    }
145
    }
145
 
146
 
146
    /* Check whether size is reasonable wrt. the mount point. */
147
    /* Check whether size is reasonable wrt. the mount point. */
147
    if (size < 1 || size > MAX_PATH_LEN) {
148
    if (size < 1 || size > MAX_PATH_LEN) {
148
        ipc_answer_0(callid, EINVAL);
149
        ipc_answer_0(callid, EINVAL);
149
        ipc_answer_0(rid, EINVAL);
150
        ipc_answer_0(rid, EINVAL);
150
        return;
151
        return;
151
    }
152
    }
152
    /* Allocate buffer for the mount point data being received. */
153
    /* Allocate buffer for the mount point data being received. */
153
    uint8_t *buf;
154
    uint8_t *buf;
154
    buf = malloc(size + 1);
155
    buf = malloc(size + 1);
155
    if (!buf) {
156
    if (!buf) {
156
        ipc_answer_0(callid, ENOMEM);
157
        ipc_answer_0(callid, ENOMEM);
157
        ipc_answer_0(rid, ENOMEM);
158
        ipc_answer_0(rid, ENOMEM);
158
        return;
159
        return;
159
    }
160
    }
160
 
161
 
161
    /* Deliver the mount point. */
162
    /* Deliver the mount point. */
162
    (void) ipc_data_write_finalize(callid, buf, size);
163
    (void) ipc_data_write_finalize(callid, buf, size);
163
    buf[size] = '\0';
164
    buf[size] = '\0';
164
 
165
 
165
    /*
166
    /*
166
     * Lookup the root node of the filesystem being mounted.
167
     * Lookup the root node of the filesystem being mounted.
167
     * In this case, we don't need to take the namespace_futex as the root
168
     * In this case, we don't need to take the namespace_futex as the root
168
     * node cannot be removed. However, we do take a reference to it so
169
     * node cannot be removed. However, we do take a reference to it so
169
     * that we can track how many times it has been mounted.
170
     * that we can track how many times it has been mounted.
170
     */
171
     */
171
    vfs_lookup_res_t mr_res;
172
    vfs_lookup_res_t mr_res;
172
    rc = lookup_root(fs_handle, dev_handle, &mr_res);
173
    rc = lookup_root(fs_handle, dev_handle, &mr_res);
173
    if (rc != EOK) {
174
    if (rc != EOK) {
174
        free(buf);
175
        free(buf);
175
        ipc_answer_0(rid, rc);
176
        ipc_answer_0(rid, rc);
176
        return;
177
        return;
177
    }
178
    }
178
    vfs_node_t *mr_node = vfs_node_get(&mr_res);
179
    vfs_node_t *mr_node = vfs_node_get(&mr_res);
179
    if (!mr_node) {
180
    if (!mr_node) {
180
        free(buf);
181
        free(buf);
181
        ipc_answer_0(rid, ENOMEM);
182
        ipc_answer_0(rid, ENOMEM);
182
        return;
183
        return;
183
    }
184
    }
184
 
185
 
185
    /* Finally, we need to resolve the path to the mountpoint. */
186
    /* Finally, we need to resolve the path to the mountpoint. */
186
    vfs_lookup_res_t mp_res;
187
    vfs_lookup_res_t mp_res;
187
    futex_down(&rootfs_futex);
188
    futex_down(&rootfs_futex);
188
    if (rootfs.fs_handle) {
189
    if (rootfs.fs_handle) {
189
        /* We already have the root FS. */
190
        /* We already have the root FS. */
190
        rwlock_write_lock(&namespace_rwlock);
191
        rwlock_write_lock(&namespace_rwlock);
191
        if ((size == 1) && (buf[0] == '/')) {
192
        if ((size == 1) && (buf[0] == '/')) {
192
            /* Trying to mount root FS over root FS */
193
            /* Trying to mount root FS over root FS */
193
            rwlock_write_unlock(&namespace_rwlock);
194
            rwlock_write_unlock(&namespace_rwlock);
194
            futex_up(&rootfs_futex);
195
            futex_up(&rootfs_futex);
195
            vfs_node_put(mr_node);
196
            vfs_node_put(mr_node);
196
            free(buf);
197
            free(buf);
197
            ipc_answer_0(rid, EBUSY);
198
            ipc_answer_0(rid, EBUSY);
198
            return;
199
            return;
199
        }
200
        }
200
        rc = vfs_lookup_internal(buf, L_DIRECTORY, &mp_res, NULL);
201
        rc = vfs_lookup_internal(buf, L_DIRECTORY, &mp_res, NULL);
201
        if (rc != EOK) {
202
        if (rc != EOK) {
202
            /* The lookup failed for some reason. */
203
            /* The lookup failed for some reason. */
203
            rwlock_write_unlock(&namespace_rwlock);
204
            rwlock_write_unlock(&namespace_rwlock);
204
            futex_up(&rootfs_futex);
205
            futex_up(&rootfs_futex);
205
            vfs_node_put(mr_node);  /* failed -> drop reference */
206
            vfs_node_put(mr_node);  /* failed -> drop reference */
206
            free(buf);
207
            free(buf);
207
            ipc_answer_0(rid, rc);
208
            ipc_answer_0(rid, rc);
208
            return;
209
            return;
209
        }
210
        }
210
        mp_node = vfs_node_get(&mp_res);
211
        mp_node = vfs_node_get(&mp_res);
211
        if (!mp_node) {
212
        if (!mp_node) {
212
            rwlock_write_unlock(&namespace_rwlock);
213
            rwlock_write_unlock(&namespace_rwlock);
213
            futex_up(&rootfs_futex);
214
            futex_up(&rootfs_futex);
214
            vfs_node_put(mr_node);  /* failed -> drop reference */
215
            vfs_node_put(mr_node);  /* failed -> drop reference */
215
            free(buf);
216
            free(buf);
216
            ipc_answer_0(rid, ENOMEM);
217
            ipc_answer_0(rid, ENOMEM);
217
            return;
218
            return;
218
        }
219
        }
219
        /*
220
        /*
220
         * Now we hold a reference to mp_node.
221
         * Now we hold a reference to mp_node.
221
         * It will be dropped upon the corresponding VFS_UNMOUNT.
222
         * It will be dropped upon the corresponding VFS_UNMOUNT.
222
         * This prevents the mount point from being deleted.
223
         * This prevents the mount point from being deleted.
223
         */
224
         */
224
        rwlock_write_unlock(&namespace_rwlock);
225
        rwlock_write_unlock(&namespace_rwlock);
225
    } else {
226
    } else {
226
        /* We still don't have the root file system mounted. */
227
        /* We still don't have the root file system mounted. */
227
        if ((size == 1) && (buf[0] == '/')) {
228
        if ((size == 1) && (buf[0] == '/')) {
-
 
229
            /*
228
            /* For this simple, but important case, we are done. */
230
             * For this simple, but important case,
229
            rootfs = mr_res.triplet;
231
             * we are almost done.
230
            futex_up(&rootfs_futex);
232
             */
231
            free(buf);
233
            free(buf);
-
 
234
           
-
 
235
            /* Inform the mount point about the root mount. */
-
 
236
            phone = vfs_grab_phone(mr_res.triplet.fs_handle);
-
 
237
            rc = async_req_5_0(phone, VFS_MOUNT,
-
 
238
                (ipcarg_t) mr_res.triplet.dev_handle,
-
 
239
                (ipcarg_t) mr_res.triplet.index,
-
 
240
                (ipcarg_t) mr_res.triplet.fs_handle,
-
 
241
                (ipcarg_t) mr_res.triplet.dev_handle,
-
 
242
                (ipcarg_t) mr_res.triplet.index);
-
 
243
            vfs_release_phone(phone);
-
 
244
 
-
 
245
            if (rc == EOK)
-
 
246
                rootfs = mr_res.triplet;
-
 
247
            else
-
 
248
                vfs_node_put(mr_node);
-
 
249
 
-
 
250
            futex_up(&rootfs_futex);
232
            ipc_answer_0(rid, EOK);
251
            ipc_answer_0(rid, rc);
233
            return;
252
            return;
234
        } else {
253
        } else {
235
            /*
254
            /*
236
             * We can't resolve this without the root filesystem
255
             * We can't resolve this without the root filesystem
237
             * being mounted first.
256
             * being mounted first.
238
             */
257
             */
239
            futex_up(&rootfs_futex);
258
            futex_up(&rootfs_futex);
240
            free(buf);
259
            free(buf);
241
            vfs_node_put(mr_node);  /* failed -> drop reference */
260
            vfs_node_put(mr_node);  /* failed -> drop reference */
242
            ipc_answer_0(rid, ENOENT);
261
            ipc_answer_0(rid, ENOENT);
243
            return;
262
            return;
244
        }
263
        }
245
    }
264
    }
246
    futex_up(&rootfs_futex);
265
    futex_up(&rootfs_futex);
247
   
266
   
248
    free(buf);  /* The buffer is not needed anymore. */
267
    free(buf);  /* The buffer is not needed anymore. */
249
   
268
   
250
    /*
269
    /*
251
     * At this point, we have all necessary pieces: file system and device
270
     * At this point, we have all necessary pieces: file system and device
252
     * handles, and we know the mount point VFS node and also the root node
271
     * handles, and we know the mount point VFS node and also the root node
253
     * of the file system being mounted.
272
     * of the file system being mounted.
254
     */
273
     */
255
 
274
 
256
    /**
275
    /**
257
     * @todo
276
     * @todo
258
     * Add more IPC parameters so that we can send mount mode/flags.
277
     * Add more IPC parameters so that we can send mount mode/flags.
259
     */
278
     */
260
    int phone = vfs_grab_phone(mp_res.triplet.fs_handle);
279
    phone = vfs_grab_phone(mp_res.triplet.fs_handle);
261
    rc = async_req_5_0(phone, VFS_MOUNT,
280
    rc = async_req_5_0(phone, VFS_MOUNT,
262
        (ipcarg_t) mp_res.triplet.dev_handle,
281
        (ipcarg_t) mp_res.triplet.dev_handle,
263
        (ipcarg_t) mp_res.triplet.index,
282
        (ipcarg_t) mp_res.triplet.index,
264
        (ipcarg_t) mr_res.triplet.fs_handle,
283
        (ipcarg_t) mr_res.triplet.fs_handle,
265
        (ipcarg_t) mr_res.triplet.dev_handle,
284
        (ipcarg_t) mr_res.triplet.dev_handle,
266
        (ipcarg_t) mr_res.triplet.index);
285
        (ipcarg_t) mr_res.triplet.index);
267
    vfs_release_phone(phone);
286
    vfs_release_phone(phone);
268
 
287
 
269
    if (rc != EOK) {
288
    if (rc != EOK) {
270
        /* Mount failed, drop references to mr_node and mp_node. */
289
        /* Mount failed, drop references to mr_node and mp_node. */
271
        vfs_node_put(mr_node);
290
        vfs_node_put(mr_node);
272
        if (mp_node)
291
        if (mp_node)
273
            vfs_node_put(mp_node);
292
            vfs_node_put(mp_node);
274
    }
293
    }
275
   
294
   
276
    ipc_answer_0(rid, rc);
295
    ipc_answer_0(rid, rc);
277
}
296
}
278
 
297
 
279
void vfs_open(ipc_callid_t rid, ipc_call_t *request)
298
void vfs_open(ipc_callid_t rid, ipc_call_t *request)
280
{
299
{
281
    if (!vfs_files_init()) {
300
    if (!vfs_files_init()) {
282
        ipc_answer_0(rid, ENOMEM);
301
        ipc_answer_0(rid, ENOMEM);
283
        return;
302
        return;
284
    }
303
    }
285
 
304
 
286
    /*
305
    /*
287
     * The POSIX interface is open(path, oflag, mode).
306
     * The POSIX interface is open(path, oflag, mode).
288
     * We can receive oflags and mode along with the VFS_OPEN call; the path
307
     * We can receive oflags and mode along with the VFS_OPEN call; the path
289
     * will need to arrive in another call.
308
     * will need to arrive in another call.
290
     *
309
     *
291
     * We also receive one private, non-POSIX set of flags called lflag
310
     * We also receive one private, non-POSIX set of flags called lflag
292
     * used to pass information to vfs_lookup_internal().
311
     * used to pass information to vfs_lookup_internal().
293
     */
312
     */
294
    int lflag = IPC_GET_ARG1(*request);
313
    int lflag = IPC_GET_ARG1(*request);
295
    int oflag = IPC_GET_ARG2(*request);
314
    int oflag = IPC_GET_ARG2(*request);
296
    int mode = IPC_GET_ARG3(*request);
315
    int mode = IPC_GET_ARG3(*request);
297
    size_t len;
316
    size_t len;
298
 
317
 
299
    if (oflag & O_CREAT)
318
    if (oflag & O_CREAT)
300
        lflag |= L_CREATE;
319
        lflag |= L_CREATE;
301
    if (oflag & O_EXCL)
320
    if (oflag & O_EXCL)
302
        lflag |= L_EXCLUSIVE;
321
        lflag |= L_EXCLUSIVE;
303
 
322
 
304
    ipc_callid_t callid;
323
    ipc_callid_t callid;
305
 
324
 
306
    if (!ipc_data_write_receive(&callid, &len)) {
325
    if (!ipc_data_write_receive(&callid, &len)) {
307
        ipc_answer_0(callid, EINVAL);
326
        ipc_answer_0(callid, EINVAL);
308
        ipc_answer_0(rid, EINVAL);
327
        ipc_answer_0(rid, EINVAL);
309
        return;
328
        return;
310
    }
329
    }
311
    char *path = malloc(len + 1);
330
    char *path = malloc(len + 1);
312
    if (!path) {
331
    if (!path) {
313
        ipc_answer_0(callid, ENOMEM);
332
        ipc_answer_0(callid, ENOMEM);
314
        ipc_answer_0(rid, ENOMEM);
333
        ipc_answer_0(rid, ENOMEM);
315
        return;
334
        return;
316
    }
335
    }
317
    int rc;
336
    int rc;
318
    if ((rc = ipc_data_write_finalize(callid, path, len))) {
337
    if ((rc = ipc_data_write_finalize(callid, path, len))) {
319
        ipc_answer_0(rid, rc);
338
        ipc_answer_0(rid, rc);
320
        free(path);
339
        free(path);
321
        return;
340
        return;
322
    }
341
    }
323
    path[len] = '\0';
342
    path[len] = '\0';
324
   
343
   
325
    /*
344
    /*
326
     * Avoid the race condition in which the file can be deleted before we
345
     * Avoid the race condition in which the file can be deleted before we
327
     * find/create-and-lock the VFS node corresponding to the looked-up
346
     * find/create-and-lock the VFS node corresponding to the looked-up
328
     * triplet.
347
     * triplet.
329
     */
348
     */
330
    if (lflag & L_CREATE)
349
    if (lflag & L_CREATE)
331
        rwlock_write_lock(&namespace_rwlock);
350
        rwlock_write_lock(&namespace_rwlock);
332
    else
351
    else
333
        rwlock_read_lock(&namespace_rwlock);
352
        rwlock_read_lock(&namespace_rwlock);
334
 
353
 
335
    /* The path is now populated and we can call vfs_lookup_internal(). */
354
    /* The path is now populated and we can call vfs_lookup_internal(). */
336
    vfs_lookup_res_t lr;
355
    vfs_lookup_res_t lr;
337
    rc = vfs_lookup_internal(path, lflag, &lr, NULL);
356
    rc = vfs_lookup_internal(path, lflag, &lr, NULL);
338
    if (rc) {
357
    if (rc) {
339
        if (lflag & L_CREATE)
358
        if (lflag & L_CREATE)
340
            rwlock_write_unlock(&namespace_rwlock);
359
            rwlock_write_unlock(&namespace_rwlock);
341
        else
360
        else
342
            rwlock_read_unlock(&namespace_rwlock);
361
            rwlock_read_unlock(&namespace_rwlock);
343
        ipc_answer_0(rid, rc);
362
        ipc_answer_0(rid, rc);
344
        free(path);
363
        free(path);
345
        return;
364
        return;
346
    }
365
    }
347
 
366
 
348
    /* Path is no longer needed. */
367
    /* Path is no longer needed. */
349
    free(path);
368
    free(path);
350
 
369
 
351
    vfs_node_t *node = vfs_node_get(&lr);
370
    vfs_node_t *node = vfs_node_get(&lr);
352
    if (lflag & L_CREATE)
371
    if (lflag & L_CREATE)
353
        rwlock_write_unlock(&namespace_rwlock);
372
        rwlock_write_unlock(&namespace_rwlock);
354
    else
373
    else
355
        rwlock_read_unlock(&namespace_rwlock);
374
        rwlock_read_unlock(&namespace_rwlock);
356
 
375
 
357
    /* Truncate the file if requested and if necessary. */
376
    /* Truncate the file if requested and if necessary. */
358
    if (oflag & O_TRUNC) {
377
    if (oflag & O_TRUNC) {
359
        rwlock_write_lock(&node->contents_rwlock);
378
        rwlock_write_lock(&node->contents_rwlock);
360
        if (node->size) {
379
        if (node->size) {
361
            rc = vfs_truncate_internal(node->fs_handle,
380
            rc = vfs_truncate_internal(node->fs_handle,
362
                node->dev_handle, node->index, 0);
381
                node->dev_handle, node->index, 0);
363
            if (rc) {
382
            if (rc) {
364
                rwlock_write_unlock(&node->contents_rwlock);
383
                rwlock_write_unlock(&node->contents_rwlock);
365
                vfs_node_put(node);
384
                vfs_node_put(node);
366
                ipc_answer_0(rid, rc);
385
                ipc_answer_0(rid, rc);
367
                return;
386
                return;
368
            }
387
            }
369
            node->size = 0;
388
            node->size = 0;
370
        }
389
        }
371
        rwlock_write_unlock(&node->contents_rwlock);
390
        rwlock_write_unlock(&node->contents_rwlock);
372
    }
391
    }
373
 
392
 
374
    /*
393
    /*
375
     * Get ourselves a file descriptor and the corresponding vfs_file_t
394
     * Get ourselves a file descriptor and the corresponding vfs_file_t
376
     * structure.
395
     * structure.
377
     */
396
     */
378
    int fd = vfs_fd_alloc();
397
    int fd = vfs_fd_alloc();
379
    if (fd < 0) {
398
    if (fd < 0) {
380
        vfs_node_put(node);
399
        vfs_node_put(node);
381
        ipc_answer_0(rid, fd);
400
        ipc_answer_0(rid, fd);
382
        return;
401
        return;
383
    }
402
    }
384
    vfs_file_t *file = vfs_file_get(fd);
403
    vfs_file_t *file = vfs_file_get(fd);
385
    file->node = node;
404
    file->node = node;
386
    if (oflag & O_APPEND)
405
    if (oflag & O_APPEND)
387
        file->append = true;
406
        file->append = true;
388
 
407
 
389
    /*
408
    /*
390
     * The following increase in reference count is for the fact that the
409
     * The following increase in reference count is for the fact that the
391
     * file is being opened and that a file structure is pointing to it.
410
     * file is being opened and that a file structure is pointing to it.
392
     * It is necessary so that the file will not disappear when
411
     * It is necessary so that the file will not disappear when
393
     * vfs_node_put() is called. The reference will be dropped by the
412
     * vfs_node_put() is called. The reference will be dropped by the
394
     * respective VFS_CLOSE.
413
     * respective VFS_CLOSE.
395
     */
414
     */
396
    vfs_node_addref(node);
415
    vfs_node_addref(node);
397
    vfs_node_put(node);
416
    vfs_node_put(node);
398
 
417
 
399
    /* Success! Return the new file descriptor to the client. */
418
    /* Success! Return the new file descriptor to the client. */
400
    ipc_answer_1(rid, EOK, fd);
419
    ipc_answer_1(rid, EOK, fd);
401
}
420
}
402
 
421
 
403
void vfs_close(ipc_callid_t rid, ipc_call_t *request)
422
void vfs_close(ipc_callid_t rid, ipc_call_t *request)
404
{
423
{
405
    int fd = IPC_GET_ARG1(*request);
424
    int fd = IPC_GET_ARG1(*request);
406
    if (fd >= MAX_OPEN_FILES) {
425
    if (fd >= MAX_OPEN_FILES) {
407
        ipc_answer_0(rid, EBADF);
426
        ipc_answer_0(rid, EBADF);
408
        return;
427
        return;
409
    }
428
    }
410
    vfs_fd_free(fd);
429
    vfs_fd_free(fd);
411
    ipc_answer_0(rid, EOK);
430
    ipc_answer_0(rid, EOK);
412
}
431
}
413
 
432
 
414
static void vfs_rdwr(ipc_callid_t rid, ipc_call_t *request, bool read)
433
static void vfs_rdwr(ipc_callid_t rid, ipc_call_t *request, bool read)
415
{
434
{
416
 
435
 
417
    /*
436
    /*
418
     * The following code strongly depends on the fact that the files data
437
     * The following code strongly depends on the fact that the files data
419
     * structure can be only accessed by a single fibril and all file
438
     * structure can be only accessed by a single fibril and all file
420
     * operations are serialized (i.e. the reads and writes cannot
439
     * operations are serialized (i.e. the reads and writes cannot
421
     * interleave and a file cannot be closed while it is being read).
440
     * interleave and a file cannot be closed while it is being read).
422
     *
441
     *
423
     * Additional synchronization needs to be added once the table of
442
     * Additional synchronization needs to be added once the table of
424
     * open files supports parallel access!
443
     * open files supports parallel access!
425
     */
444
     */
426
 
445
 
427
    int fd = IPC_GET_ARG1(*request);
446
    int fd = IPC_GET_ARG1(*request);
428
 
447
 
429
    /* Lookup the file structure corresponding to the file descriptor. */
448
    /* Lookup the file structure corresponding to the file descriptor. */
430
    vfs_file_t *file = vfs_file_get(fd);
449
    vfs_file_t *file = vfs_file_get(fd);
431
    if (!file) {
450
    if (!file) {
432
        ipc_answer_0(rid, ENOENT);
451
        ipc_answer_0(rid, ENOENT);
433
        return;
452
        return;
434
    }
453
    }
435
 
454
 
436
    /*
455
    /*
437
     * Now we need to receive a call with client's
456
     * Now we need to receive a call with client's
438
     * IPC_M_DATA_READ/IPC_M_DATA_WRITE request.
457
     * IPC_M_DATA_READ/IPC_M_DATA_WRITE request.
439
     */
458
     */
440
    ipc_callid_t callid;
459
    ipc_callid_t callid;
441
    int res;
460
    int res;
442
    if (read)
461
    if (read)
443
        res = ipc_data_read_receive(&callid, NULL);
462
        res = ipc_data_read_receive(&callid, NULL);
444
    else
463
    else
445
        res = ipc_data_write_receive(&callid, NULL);
464
        res = ipc_data_write_receive(&callid, NULL);
446
    if (!res) {
465
    if (!res) {
447
        ipc_answer_0(callid, EINVAL);
466
        ipc_answer_0(callid, EINVAL);
448
        ipc_answer_0(rid, EINVAL);
467
        ipc_answer_0(rid, EINVAL);
449
        return;
468
        return;
450
    }
469
    }
451
 
470
 
452
    /*
471
    /*
453
     * Lock the open file structure so that no other thread can manipulate
472
     * Lock the open file structure so that no other thread can manipulate
454
     * the same open file at a time.
473
     * the same open file at a time.
455
     */
474
     */
456
    futex_down(&file->lock);
475
    futex_down(&file->lock);
457
 
476
 
458
    /*
477
    /*
459
     * Lock the file's node so that no other client can read/write to it at
478
     * Lock the file's node so that no other client can read/write to it at
460
     * the same time.
479
     * the same time.
461
     */
480
     */
462
    if (read)
481
    if (read)
463
        rwlock_read_lock(&file->node->contents_rwlock);
482
        rwlock_read_lock(&file->node->contents_rwlock);
464
    else
483
    else
465
        rwlock_write_lock(&file->node->contents_rwlock);
484
        rwlock_write_lock(&file->node->contents_rwlock);
466
 
485
 
467
    int fs_phone = vfs_grab_phone(file->node->fs_handle);  
486
    int fs_phone = vfs_grab_phone(file->node->fs_handle);  
468
   
487
   
469
    /* Make a VFS_READ/VFS_WRITE request at the destination FS server. */
488
    /* Make a VFS_READ/VFS_WRITE request at the destination FS server. */
470
    aid_t msg;
489
    aid_t msg;
471
    ipc_call_t answer;
490
    ipc_call_t answer;
472
    if (!read && file->append)
491
    if (!read && file->append)
473
        file->pos = file->node->size;
492
        file->pos = file->node->size;
474
    msg = async_send_3(fs_phone, IPC_GET_METHOD(*request),
493
    msg = async_send_3(fs_phone, IPC_GET_METHOD(*request),
475
        file->node->dev_handle, file->node->index, file->pos, &answer);
494
        file->node->dev_handle, file->node->index, file->pos, &answer);
476
   
495
   
477
    /*
496
    /*
478
     * Forward the IPC_M_DATA_READ/IPC_M_DATA_WRITE request to the
497
     * Forward the IPC_M_DATA_READ/IPC_M_DATA_WRITE request to the
479
     * destination FS server. The call will be routed as if sent by
498
     * destination FS server. The call will be routed as if sent by
480
     * ourselves. Note that call arguments are immutable in this case so we
499
     * ourselves. Note that call arguments are immutable in this case so we
481
     * don't have to bother.
500
     * don't have to bother.
482
     */
501
     */
483
    ipc_forward_fast(callid, fs_phone, 0, 0, 0, IPC_FF_ROUTE_FROM_ME);
502
    ipc_forward_fast(callid, fs_phone, 0, 0, 0, IPC_FF_ROUTE_FROM_ME);
484
 
503
 
485
    vfs_release_phone(fs_phone);
504
    vfs_release_phone(fs_phone);
486
 
505
 
487
    /* Wait for reply from the FS server. */
506
    /* Wait for reply from the FS server. */
488
    ipcarg_t rc;
507
    ipcarg_t rc;
489
    async_wait_for(msg, &rc);
508
    async_wait_for(msg, &rc);
490
    size_t bytes = IPC_GET_ARG1(answer);
509
    size_t bytes = IPC_GET_ARG1(answer);
491
 
510
 
492
    /* Unlock the VFS node. */
511
    /* Unlock the VFS node. */
493
    if (read)
512
    if (read)
494
        rwlock_read_unlock(&file->node->contents_rwlock);
513
        rwlock_read_unlock(&file->node->contents_rwlock);
495
    else {
514
    else {
496
        /* Update the cached version of node's size. */
515
        /* Update the cached version of node's size. */
497
        if (rc == EOK)
516
        if (rc == EOK)
498
            file->node->size = IPC_GET_ARG2(answer);
517
            file->node->size = IPC_GET_ARG2(answer);
499
        rwlock_write_unlock(&file->node->contents_rwlock);
518
        rwlock_write_unlock(&file->node->contents_rwlock);
500
    }
519
    }
501
 
520
 
502
    /* Update the position pointer and unlock the open file. */
521
    /* Update the position pointer and unlock the open file. */
503
    if (rc == EOK)
522
    if (rc == EOK)
504
        file->pos += bytes;
523
        file->pos += bytes;
505
    futex_up(&file->lock);
524
    futex_up(&file->lock);
506
 
525
 
507
    /*
526
    /*
508
     * FS server's reply is the final result of the whole operation we
527
     * FS server's reply is the final result of the whole operation we
509
     * return to the client.
528
     * return to the client.
510
     */
529
     */
511
    ipc_answer_1(rid, rc, bytes);
530
    ipc_answer_1(rid, rc, bytes);
512
}
531
}
513
 
532
 
514
void vfs_read(ipc_callid_t rid, ipc_call_t *request)
533
void vfs_read(ipc_callid_t rid, ipc_call_t *request)
515
{
534
{
516
    vfs_rdwr(rid, request, true);
535
    vfs_rdwr(rid, request, true);
517
}
536
}
518
 
537
 
519
void vfs_write(ipc_callid_t rid, ipc_call_t *request)
538
void vfs_write(ipc_callid_t rid, ipc_call_t *request)
520
{
539
{
521
    vfs_rdwr(rid, request, false);
540
    vfs_rdwr(rid, request, false);
522
}
541
}
523
 
542
 
524
void vfs_seek(ipc_callid_t rid, ipc_call_t *request)
543
void vfs_seek(ipc_callid_t rid, ipc_call_t *request)
525
{
544
{
526
    int fd = (int) IPC_GET_ARG1(*request);
545
    int fd = (int) IPC_GET_ARG1(*request);
527
    off_t off = (off_t) IPC_GET_ARG2(*request);
546
    off_t off = (off_t) IPC_GET_ARG2(*request);
528
    int whence = (int) IPC_GET_ARG3(*request);
547
    int whence = (int) IPC_GET_ARG3(*request);
529
 
548
 
530
 
549
 
531
    /* Lookup the file structure corresponding to the file descriptor. */
550
    /* Lookup the file structure corresponding to the file descriptor. */
532
    vfs_file_t *file = vfs_file_get(fd);
551
    vfs_file_t *file = vfs_file_get(fd);
533
    if (!file) {
552
    if (!file) {
534
        ipc_answer_0(rid, ENOENT);
553
        ipc_answer_0(rid, ENOENT);
535
        return;
554
        return;
536
    }
555
    }
537
 
556
 
538
    off_t newpos;
557
    off_t newpos;
539
    futex_down(&file->lock);
558
    futex_down(&file->lock);
540
    if (whence == SEEK_SET) {
559
    if (whence == SEEK_SET) {
541
        file->pos = off;
560
        file->pos = off;
542
        futex_up(&file->lock);
561
        futex_up(&file->lock);
543
        ipc_answer_1(rid, EOK, off);
562
        ipc_answer_1(rid, EOK, off);
544
        return;
563
        return;
545
    }
564
    }
546
    if (whence == SEEK_CUR) {
565
    if (whence == SEEK_CUR) {
547
        if (file->pos + off < file->pos) {
566
        if (file->pos + off < file->pos) {
548
            futex_up(&file->lock);
567
            futex_up(&file->lock);
549
            ipc_answer_0(rid, EOVERFLOW);
568
            ipc_answer_0(rid, EOVERFLOW);
550
            return;
569
            return;
551
        }
570
        }
552
        file->pos += off;
571
        file->pos += off;
553
        newpos = file->pos;
572
        newpos = file->pos;
554
        futex_up(&file->lock);
573
        futex_up(&file->lock);
555
        ipc_answer_1(rid, EOK, newpos);
574
        ipc_answer_1(rid, EOK, newpos);
556
        return;
575
        return;
557
    }
576
    }
558
    if (whence == SEEK_END) {
577
    if (whence == SEEK_END) {
559
        rwlock_read_lock(&file->node->contents_rwlock);
578
        rwlock_read_lock(&file->node->contents_rwlock);
560
        size_t size = file->node->size;
579
        size_t size = file->node->size;
561
        rwlock_read_unlock(&file->node->contents_rwlock);
580
        rwlock_read_unlock(&file->node->contents_rwlock);
562
        if (size + off < size) {
581
        if (size + off < size) {
563
            futex_up(&file->lock);
582
            futex_up(&file->lock);
564
            ipc_answer_0(rid, EOVERFLOW);
583
            ipc_answer_0(rid, EOVERFLOW);
565
            return;
584
            return;
566
        }
585
        }
567
        newpos = size + off;
586
        newpos = size + off;
568
        futex_up(&file->lock);
587
        futex_up(&file->lock);
569
        ipc_answer_1(rid, EOK, newpos);
588
        ipc_answer_1(rid, EOK, newpos);
570
        return;
589
        return;
571
    }
590
    }
572
    futex_up(&file->lock);
591
    futex_up(&file->lock);
573
    ipc_answer_0(rid, EINVAL);
592
    ipc_answer_0(rid, EINVAL);
574
}
593
}
575
 
594
 
576
int
595
int
577
vfs_truncate_internal(fs_handle_t fs_handle, dev_handle_t dev_handle,
596
vfs_truncate_internal(fs_handle_t fs_handle, dev_handle_t dev_handle,
578
    fs_index_t index, size_t size)
597
    fs_index_t index, size_t size)
579
{
598
{
580
    ipcarg_t rc;
599
    ipcarg_t rc;
581
    int fs_phone;
600
    int fs_phone;
582
   
601
   
583
    fs_phone = vfs_grab_phone(fs_handle);
602
    fs_phone = vfs_grab_phone(fs_handle);
584
    rc = async_req_3_0(fs_phone, VFS_TRUNCATE, (ipcarg_t)dev_handle,
603
    rc = async_req_3_0(fs_phone, VFS_TRUNCATE, (ipcarg_t)dev_handle,
585
        (ipcarg_t)index, (ipcarg_t)size);
604
        (ipcarg_t)index, (ipcarg_t)size);
586
    vfs_release_phone(fs_phone);
605
    vfs_release_phone(fs_phone);
587
    return (int)rc;
606
    return (int)rc;
588
}
607
}
589
 
608
 
590
void vfs_truncate(ipc_callid_t rid, ipc_call_t *request)
609
void vfs_truncate(ipc_callid_t rid, ipc_call_t *request)
591
{
610
{
592
    int fd = IPC_GET_ARG1(*request);
611
    int fd = IPC_GET_ARG1(*request);
593
    size_t size = IPC_GET_ARG2(*request);
612
    size_t size = IPC_GET_ARG2(*request);
594
    int rc;
613
    int rc;
595
 
614
 
596
    vfs_file_t *file = vfs_file_get(fd);
615
    vfs_file_t *file = vfs_file_get(fd);
597
    if (!file) {
616
    if (!file) {
598
        ipc_answer_0(rid, ENOENT);
617
        ipc_answer_0(rid, ENOENT);
599
        return;
618
        return;
600
    }
619
    }
601
    futex_down(&file->lock);
620
    futex_down(&file->lock);
602
 
621
 
603
    rwlock_write_lock(&file->node->contents_rwlock);
622
    rwlock_write_lock(&file->node->contents_rwlock);
604
    rc = vfs_truncate_internal(file->node->fs_handle,
623
    rc = vfs_truncate_internal(file->node->fs_handle,
605
        file->node->dev_handle, file->node->index, size);
624
        file->node->dev_handle, file->node->index, size);
606
    if (rc == EOK)
625
    if (rc == EOK)
607
        file->node->size = size;
626
        file->node->size = size;
608
    rwlock_write_unlock(&file->node->contents_rwlock);
627
    rwlock_write_unlock(&file->node->contents_rwlock);
609
 
628
 
610
    futex_up(&file->lock);
629
    futex_up(&file->lock);
611
    ipc_answer_0(rid, (ipcarg_t)rc);
630
    ipc_answer_0(rid, (ipcarg_t)rc);
612
}
631
}
613
 
632
 
614
void vfs_mkdir(ipc_callid_t rid, ipc_call_t *request)
633
void vfs_mkdir(ipc_callid_t rid, ipc_call_t *request)
615
{
634
{
616
    int mode = IPC_GET_ARG1(*request);
635
    int mode = IPC_GET_ARG1(*request);
617
 
636
 
618
    size_t len;
637
    size_t len;
619
    ipc_callid_t callid;
638
    ipc_callid_t callid;
620
 
639
 
621
    if (!ipc_data_write_receive(&callid, &len)) {
640
    if (!ipc_data_write_receive(&callid, &len)) {
622
        ipc_answer_0(callid, EINVAL);
641
        ipc_answer_0(callid, EINVAL);
623
        ipc_answer_0(rid, EINVAL);
642
        ipc_answer_0(rid, EINVAL);
624
        return;
643
        return;
625
    }
644
    }
626
    char *path = malloc(len + 1);
645
    char *path = malloc(len + 1);
627
    if (!path) {
646
    if (!path) {
628
        ipc_answer_0(callid, ENOMEM);
647
        ipc_answer_0(callid, ENOMEM);
629
        ipc_answer_0(rid, ENOMEM);
648
        ipc_answer_0(rid, ENOMEM);
630
        return;
649
        return;
631
    }
650
    }
632
    int rc;
651
    int rc;
633
    if ((rc = ipc_data_write_finalize(callid, path, len))) {
652
    if ((rc = ipc_data_write_finalize(callid, path, len))) {
634
        ipc_answer_0(rid, rc);
653
        ipc_answer_0(rid, rc);
635
        free(path);
654
        free(path);
636
        return;
655
        return;
637
    }
656
    }
638
    path[len] = '\0';
657
    path[len] = '\0';
639
   
658
   
640
    rwlock_write_lock(&namespace_rwlock);
659
    rwlock_write_lock(&namespace_rwlock);
641
    int lflag = L_DIRECTORY | L_CREATE | L_EXCLUSIVE;
660
    int lflag = L_DIRECTORY | L_CREATE | L_EXCLUSIVE;
642
    rc = vfs_lookup_internal(path, lflag, NULL, NULL);
661
    rc = vfs_lookup_internal(path, lflag, NULL, NULL);
643
    rwlock_write_unlock(&namespace_rwlock);
662
    rwlock_write_unlock(&namespace_rwlock);
644
    free(path);
663
    free(path);
645
    ipc_answer_0(rid, rc);
664
    ipc_answer_0(rid, rc);
646
}
665
}
647
 
666
 
648
void vfs_unlink(ipc_callid_t rid, ipc_call_t *request)
667
void vfs_unlink(ipc_callid_t rid, ipc_call_t *request)
649
{
668
{
650
    int lflag = IPC_GET_ARG1(*request);
669
    int lflag = IPC_GET_ARG1(*request);
651
 
670
 
652
    size_t len;
671
    size_t len;
653
    ipc_callid_t callid;
672
    ipc_callid_t callid;
654
 
673
 
655
    if (!ipc_data_write_receive(&callid, &len)) {
674
    if (!ipc_data_write_receive(&callid, &len)) {
656
        ipc_answer_0(callid, EINVAL);
675
        ipc_answer_0(callid, EINVAL);
657
        ipc_answer_0(rid, EINVAL);
676
        ipc_answer_0(rid, EINVAL);
658
        return;
677
        return;
659
    }
678
    }
660
    char *path = malloc(len + 1);
679
    char *path = malloc(len + 1);
661
    if (!path) {
680
    if (!path) {
662
        ipc_answer_0(callid, ENOMEM);
681
        ipc_answer_0(callid, ENOMEM);
663
        ipc_answer_0(rid, ENOMEM);
682
        ipc_answer_0(rid, ENOMEM);
664
        return;
683
        return;
665
    }
684
    }
666
    int rc;
685
    int rc;
667
    if ((rc = ipc_data_write_finalize(callid, path, len))) {
686
    if ((rc = ipc_data_write_finalize(callid, path, len))) {
668
        ipc_answer_0(rid, rc);
687
        ipc_answer_0(rid, rc);
669
        free(path);
688
        free(path);
670
        return;
689
        return;
671
    }
690
    }
672
    path[len] = '\0';
691
    path[len] = '\0';
673
   
692
   
674
    rwlock_write_lock(&namespace_rwlock);
693
    rwlock_write_lock(&namespace_rwlock);
675
    lflag &= L_DIRECTORY;   /* sanitize lflag */
694
    lflag &= L_DIRECTORY;   /* sanitize lflag */
676
    vfs_lookup_res_t lr;
695
    vfs_lookup_res_t lr;
677
    rc = vfs_lookup_internal(path, lflag | L_UNLINK, &lr, NULL);
696
    rc = vfs_lookup_internal(path, lflag | L_UNLINK, &lr, NULL);
678
    free(path);
697
    free(path);
679
    if (rc != EOK) {
698
    if (rc != EOK) {
680
        rwlock_write_unlock(&namespace_rwlock);
699
        rwlock_write_unlock(&namespace_rwlock);
681
        ipc_answer_0(rid, rc);
700
        ipc_answer_0(rid, rc);
682
        return;
701
        return;
683
    }
702
    }
684
 
703
 
685
    /*
704
    /*
686
     * The name has already been unlinked by vfs_lookup_internal().
705
     * The name has already been unlinked by vfs_lookup_internal().
687
     * We have to get and put the VFS node to ensure that it is
706
     * We have to get and put the VFS node to ensure that it is
688
     * VFS_DESTROY'ed after the last reference to it is dropped.
707
     * VFS_DESTROY'ed after the last reference to it is dropped.
689
     */
708
     */
690
    vfs_node_t *node = vfs_node_get(&lr);
709
    vfs_node_t *node = vfs_node_get(&lr);
691
    futex_down(&nodes_futex);
710
    futex_down(&nodes_futex);
692
    node->lnkcnt--;
711
    node->lnkcnt--;
693
    futex_up(&nodes_futex);
712
    futex_up(&nodes_futex);
694
    rwlock_write_unlock(&namespace_rwlock);
713
    rwlock_write_unlock(&namespace_rwlock);
695
    vfs_node_put(node);
714
    vfs_node_put(node);
696
    ipc_answer_0(rid, EOK);
715
    ipc_answer_0(rid, EOK);
697
}
716
}
698
 
717
 
699
void vfs_rename(ipc_callid_t rid, ipc_call_t *request)
718
void vfs_rename(ipc_callid_t rid, ipc_call_t *request)
700
{
719
{
701
    size_t len;
720
    size_t len;
702
    ipc_callid_t callid;
721
    ipc_callid_t callid;
703
    int rc;
722
    int rc;
704
 
723
 
705
    /* Retrieve the old path. */
724
    /* Retrieve the old path. */
706
    if (!ipc_data_write_receive(&callid, &len)) {
725
    if (!ipc_data_write_receive(&callid, &len)) {
707
        ipc_answer_0(callid, EINVAL);
726
        ipc_answer_0(callid, EINVAL);
708
        ipc_answer_0(rid, EINVAL);
727
        ipc_answer_0(rid, EINVAL);
709
        return;
728
        return;
710
    }
729
    }
711
    char *old = malloc(len + 1);
730
    char *old = malloc(len + 1);
712
    if (!old) {
731
    if (!old) {
713
        ipc_answer_0(callid, ENOMEM);
732
        ipc_answer_0(callid, ENOMEM);
714
        ipc_answer_0(rid, ENOMEM);
733
        ipc_answer_0(rid, ENOMEM);
715
        return;
734
        return;
716
    }
735
    }
717
    if ((rc = ipc_data_write_finalize(callid, old, len))) {
736
    if ((rc = ipc_data_write_finalize(callid, old, len))) {
718
        ipc_answer_0(rid, rc);
737
        ipc_answer_0(rid, rc);
719
        free(old);
738
        free(old);
720
        return;
739
        return;
721
    }
740
    }
722
    old[len] = '\0';
741
    old[len] = '\0';
723
   
742
   
724
    /* Retrieve the new path. */
743
    /* Retrieve the new path. */
725
    if (!ipc_data_write_receive(&callid, &len)) {
744
    if (!ipc_data_write_receive(&callid, &len)) {
726
        ipc_answer_0(callid, EINVAL);
745
        ipc_answer_0(callid, EINVAL);
727
        ipc_answer_0(rid, EINVAL);
746
        ipc_answer_0(rid, EINVAL);
728
        free(old);
747
        free(old);
729
        return;
748
        return;
730
    }
749
    }
731
    char *new = malloc(len + 1);
750
    char *new = malloc(len + 1);
732
    if (!new) {
751
    if (!new) {
733
        ipc_answer_0(callid, ENOMEM);
752
        ipc_answer_0(callid, ENOMEM);
734
        ipc_answer_0(rid, ENOMEM);
753
        ipc_answer_0(rid, ENOMEM);
735
        free(old);
754
        free(old);
736
        return;
755
        return;
737
    }
756
    }
738
    if ((rc = ipc_data_write_finalize(callid, new, len))) {
757
    if ((rc = ipc_data_write_finalize(callid, new, len))) {
739
        ipc_answer_0(rid, rc);
758
        ipc_answer_0(rid, rc);
740
        free(old);
759
        free(old);
741
        free(new);
760
        free(new);
742
        return;
761
        return;
743
    }
762
    }
744
    new[len] = '\0';
763
    new[len] = '\0';
745
 
764
 
746
    char *oldc = canonify(old, &len);
765
    char *oldc = canonify(old, &len);
747
    char *newc = canonify(new, NULL);
766
    char *newc = canonify(new, NULL);
748
    if (!oldc || !newc) {
767
    if (!oldc || !newc) {
749
        ipc_answer_0(rid, EINVAL);
768
        ipc_answer_0(rid, EINVAL);
750
        free(old);
769
        free(old);
751
        free(new);
770
        free(new);
752
        return;
771
        return;
753
    }
772
    }
754
    if (!strncmp(newc, oldc, len)) {
773
    if (!strncmp(newc, oldc, len)) {
755
        /* oldc is a prefix of newc */
774
        /* oldc is a prefix of newc */
756
        ipc_answer_0(rid, EINVAL);
775
        ipc_answer_0(rid, EINVAL);
757
        free(old);
776
        free(old);
758
        free(new);
777
        free(new);
759
        return;
778
        return;
760
    }
779
    }
761
   
780
   
762
    vfs_lookup_res_t old_lr;
781
    vfs_lookup_res_t old_lr;
763
    vfs_lookup_res_t new_lr;
782
    vfs_lookup_res_t new_lr;
764
    vfs_lookup_res_t new_par_lr;
783
    vfs_lookup_res_t new_par_lr;
765
    rwlock_write_lock(&namespace_rwlock);
784
    rwlock_write_lock(&namespace_rwlock);
766
    /* Lookup the node belonging to the old file name. */
785
    /* Lookup the node belonging to the old file name. */
767
    rc = vfs_lookup_internal(oldc, L_NONE, &old_lr, NULL);
786
    rc = vfs_lookup_internal(oldc, L_NONE, &old_lr, NULL);
768
    if (rc != EOK) {
787
    if (rc != EOK) {
769
        rwlock_write_unlock(&namespace_rwlock);
788
        rwlock_write_unlock(&namespace_rwlock);
770
        ipc_answer_0(rid, rc);
789
        ipc_answer_0(rid, rc);
771
        free(old);
790
        free(old);
772
        free(new);
791
        free(new);
773
        return;
792
        return;
774
    }
793
    }
775
    vfs_node_t *old_node = vfs_node_get(&old_lr);
794
    vfs_node_t *old_node = vfs_node_get(&old_lr);
776
    if (!old_node) {
795
    if (!old_node) {
777
        rwlock_write_unlock(&namespace_rwlock);
796
        rwlock_write_unlock(&namespace_rwlock);
778
        ipc_answer_0(rid, ENOMEM);
797
        ipc_answer_0(rid, ENOMEM);
779
        free(old);
798
        free(old);
780
        free(new);
799
        free(new);
781
        return;
800
        return;
782
    }
801
    }
783
    /* Lookup parent of the new file name. */
802
    /* Lookup parent of the new file name. */
784
    rc = vfs_lookup_internal(newc, L_PARENT, &new_par_lr, NULL);
803
    rc = vfs_lookup_internal(newc, L_PARENT, &new_par_lr, NULL);
785
    if (rc != EOK) {
804
    if (rc != EOK) {
786
        rwlock_write_unlock(&namespace_rwlock);
805
        rwlock_write_unlock(&namespace_rwlock);
787
        ipc_answer_0(rid, rc);
806
        ipc_answer_0(rid, rc);
788
        free(old);
807
        free(old);
789
        free(new);
808
        free(new);
790
        return;
809
        return;
791
    }
810
    }
792
    /* Check whether linking to the same file system instance. */
811
    /* Check whether linking to the same file system instance. */
793
    if ((old_node->fs_handle != new_par_lr.triplet.fs_handle) ||
812
    if ((old_node->fs_handle != new_par_lr.triplet.fs_handle) ||
794
        (old_node->dev_handle != new_par_lr.triplet.dev_handle)) {
813
        (old_node->dev_handle != new_par_lr.triplet.dev_handle)) {
795
        rwlock_write_unlock(&namespace_rwlock);
814
        rwlock_write_unlock(&namespace_rwlock);
796
        ipc_answer_0(rid, EXDEV);   /* different file systems */
815
        ipc_answer_0(rid, EXDEV);   /* different file systems */
797
        free(old);
816
        free(old);
798
        free(new);
817
        free(new);
799
        return;
818
        return;
800
    }
819
    }
801
    /* Destroy the old link for the new name. */
820
    /* Destroy the old link for the new name. */
802
    vfs_node_t *new_node = NULL;
821
    vfs_node_t *new_node = NULL;
803
    rc = vfs_lookup_internal(newc, L_UNLINK, &new_lr, NULL);
822
    rc = vfs_lookup_internal(newc, L_UNLINK, &new_lr, NULL);
804
    switch (rc) {
823
    switch (rc) {
805
    case ENOENT:
824
    case ENOENT:
806
        /* simply not in our way */
825
        /* simply not in our way */
807
        break;
826
        break;
808
    case EOK:
827
    case EOK:
809
        new_node = vfs_node_get(&new_lr);
828
        new_node = vfs_node_get(&new_lr);
810
        if (!new_node) {
829
        if (!new_node) {
811
            rwlock_write_unlock(&namespace_rwlock);
830
            rwlock_write_unlock(&namespace_rwlock);
812
            ipc_answer_0(rid, ENOMEM);
831
            ipc_answer_0(rid, ENOMEM);
813
            free(old);
832
            free(old);
814
            free(new);
833
            free(new);
815
            return;
834
            return;
816
        }
835
        }
817
        futex_down(&nodes_futex);
836
        futex_down(&nodes_futex);
818
        new_node->lnkcnt--;
837
        new_node->lnkcnt--;
819
        futex_up(&nodes_futex);
838
        futex_up(&nodes_futex);
820
        break;
839
        break;
821
    default:
840
    default:
822
        rwlock_write_unlock(&namespace_rwlock);
841
        rwlock_write_unlock(&namespace_rwlock);
823
        ipc_answer_0(rid, ENOTEMPTY);
842
        ipc_answer_0(rid, ENOTEMPTY);
824
        free(old);
843
        free(old);
825
        free(new);
844
        free(new);
826
        return;
845
        return;
827
    }
846
    }
828
    /* Create the new link for the new name. */
847
    /* Create the new link for the new name. */
829
    rc = vfs_lookup_internal(newc, L_LINK, NULL, NULL, old_node->index);
848
    rc = vfs_lookup_internal(newc, L_LINK, NULL, NULL, old_node->index);
830
    if (rc != EOK) {
849
    if (rc != EOK) {
831
        rwlock_write_unlock(&namespace_rwlock);
850
        rwlock_write_unlock(&namespace_rwlock);
832
        if (new_node)
851
        if (new_node)
833
            vfs_node_put(new_node);
852
            vfs_node_put(new_node);
834
        ipc_answer_0(rid, rc);
853
        ipc_answer_0(rid, rc);
835
        free(old);
854
        free(old);
836
        free(new);
855
        free(new);
837
        return;
856
        return;
838
    }
857
    }
839
    futex_down(&nodes_futex);
858
    futex_down(&nodes_futex);
840
    old_node->lnkcnt++;
859
    old_node->lnkcnt++;
841
    futex_up(&nodes_futex);
860
    futex_up(&nodes_futex);
842
    /* Destroy the link for the old name. */
861
    /* Destroy the link for the old name. */
843
    rc = vfs_lookup_internal(oldc, L_UNLINK, NULL, NULL);
862
    rc = vfs_lookup_internal(oldc, L_UNLINK, NULL, NULL);
844
    if (rc != EOK) {
863
    if (rc != EOK) {
845
        rwlock_write_unlock(&namespace_rwlock);
864
        rwlock_write_unlock(&namespace_rwlock);
846
        vfs_node_put(old_node);
865
        vfs_node_put(old_node);
847
        if (new_node)
866
        if (new_node)
848
            vfs_node_put(new_node);
867
            vfs_node_put(new_node);
849
        ipc_answer_0(rid, rc);
868
        ipc_answer_0(rid, rc);
850
        free(old);
869
        free(old);
851
        free(new);
870
        free(new);
852
        return;
871
        return;
853
    }
872
    }
854
    futex_down(&nodes_futex);
873
    futex_down(&nodes_futex);
855
    old_node->lnkcnt--;
874
    old_node->lnkcnt--;
856
    futex_up(&nodes_futex);
875
    futex_up(&nodes_futex);
857
    rwlock_write_unlock(&namespace_rwlock);
876
    rwlock_write_unlock(&namespace_rwlock);
858
    vfs_node_put(old_node);
877
    vfs_node_put(old_node);
859
    if (new_node)
878
    if (new_node)
860
        vfs_node_put(new_node);
879
        vfs_node_put(new_node);
861
    free(old);
880
    free(old);
862
    free(new);
881
    free(new);
863
    ipc_answer_0(rid, EOK);
882
    ipc_answer_0(rid, EOK);
864
}
883
}
865
 
884
 
866
/**
885
/**
867
 * @}
886
 * @}
868
 */
887
 */
869
 
888