source: mainline/uspace/srv/vfs/vfs_ipc.c@ a46e56b

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

Prefer handle over ID in naming handle variables

  • Property mode set to 100644
File size: 9.6 KB
RevLine 
[0d35511]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
[b14d9f9]29#include <vfs/vfs.h>
[0d35511]30#include "vfs.h"
31
32#include <errno.h>
33#include <stdlib.h>
34#include <str.h>
35#include <vfs/canonify.h>
36
[3be9d10]37static void vfs_in_clone(cap_call_handle_t rid, ipc_call_t *request)
[0d35511]38{
39 int oldfd = IPC_GET_ARG1(*request);
[fcab7ef]40 int newfd = IPC_GET_ARG2(*request);
41 bool desc = IPC_GET_ARG3(*request);
[a35b458]42
[f77c1c9]43 int outfd = -1;
[b7fd2a0]44 errno_t rc = vfs_op_clone(oldfd, newfd, desc, &outfd);
[f77c1c9]45 async_answer_1(rid, rc, outfd);
[0d35511]46}
47
[3be9d10]48static void vfs_in_fsprobe(cap_call_handle_t rid, ipc_call_t *request)
[d2c8533]49{
50 service_id_t service_id = (service_id_t) IPC_GET_ARG1(*request);
51 char *fs_name = NULL;
[a46e56b]52 cap_call_handle_t chandle;
[d2c8533]53 vfs_fs_probe_info_t info;
54 size_t len;
[b7fd2a0]55 errno_t rc;
[a35b458]56
[d2c8533]57 /*
[1b20da0]58 * Now we expect the client to send us data with the name of the file
[d2c8533]59 * system.
60 */
61 rc = async_data_write_accept((void **) &fs_name, true, 0,
62 FS_NAME_MAXLEN, 0, NULL);
63 if (rc != EOK) {
64 async_answer_0(rid, rc);
65 return;
66 }
[a35b458]67
[d2c8533]68 rc = vfs_op_fsprobe(fs_name, service_id, &info);
69 async_answer_0(rid, rc);
70 if (rc != EOK)
71 goto out;
[a35b458]72
[d2c8533]73 /* Now we should get a read request */
[a46e56b]74 if (!async_data_read_receive(&chandle, &len))
[d2c8533]75 goto out;
76
77 if (len > sizeof(info))
78 len = sizeof(info);
[a46e56b]79 (void) async_data_read_finalize(chandle, &info, len);
[d2c8533]80
81out:
82 free(fs_name);
83}
84
[3be9d10]85static void vfs_in_fstypes(cap_call_handle_t rid, ipc_call_t *request)
[b14d9f9]86{
[a46e56b]87 cap_call_handle_t chandle;
[b14d9f9]88 size_t len;
89 vfs_fstypes_t fstypes;
[b7fd2a0]90 errno_t rc;
[b14d9f9]91
92 rc = vfs_get_fstypes(&fstypes);
93 if (rc != EOK) {
94 async_answer_0(rid, ENOMEM);
95 return;
96 }
97
98 /* Send size of the data */
99 async_answer_1(rid, EOK, fstypes.size);
100
101 /* Now we should get a read request */
[a46e56b]102 if (!async_data_read_receive(&chandle, &len))
[b14d9f9]103 goto out;
104
105 if (len > fstypes.size)
106 len = fstypes.size;
[a46e56b]107 (void) async_data_read_finalize(chandle, fstypes.buf, len);
[b14d9f9]108
109out:
110 vfs_fstypes_free(&fstypes);
111}
112
[3be9d10]113static void vfs_in_mount(cap_call_handle_t rid, ipc_call_t *request)
[0d35511]114{
115 int mpfd = IPC_GET_ARG1(*request);
[a35b458]116
[0d35511]117 /*
118 * We expect the library to do the device-name to device-handle
119 * translation for us, thus the device handle will arrive as ARG1
120 * in the request.
121 */
122 service_id_t service_id = (service_id_t) IPC_GET_ARG2(*request);
[a35b458]123
[0d35511]124 unsigned int flags = (unsigned int) IPC_GET_ARG3(*request);
125 unsigned int instance = IPC_GET_ARG4(*request);
[a35b458]126
[0d35511]127 char *opts = NULL;
128 char *fs_name = NULL;
[a35b458]129
[0d35511]130 /* Now we expect to receive the mount options. */
[b7fd2a0]131 errno_t rc = async_data_write_accept((void **) &opts, true, 0,
[0d35511]132 MAX_MNTOPTS_LEN, 0, NULL);
133 if (rc != EOK) {
134 async_answer_0(rid, rc);
135 return;
136 }
[a35b458]137
[1b20da0]138 /* Now, we expect the client to send us data with the name of the file
[0d35511]139 * system.
140 */
141 rc = async_data_write_accept((void **) &fs_name, true, 0,
142 FS_NAME_MAXLEN, 0, NULL);
143 if (rc != EOK) {
144 free(opts);
145 async_answer_0(rid, rc);
146 return;
147 }
[a35b458]148
[0d35511]149 int outfd = 0;
150 rc = vfs_op_mount(mpfd, service_id, flags, instance, opts, fs_name,
151 &outfd);
152 async_answer_1(rid, rc, outfd);
[a35b458]153
[0d35511]154 free(opts);
155 free(fs_name);
156}
157
[3be9d10]158static void vfs_in_open(cap_call_handle_t rid, ipc_call_t *request)
[0d35511]159{
160 int fd = IPC_GET_ARG1(*request);
[b19e892]161 int mode = IPC_GET_ARG2(*request);
[0d35511]162
[b7fd2a0]163 errno_t rc = vfs_op_open(fd, mode);
[0d35511]164 async_answer_0(rid, rc);
165}
166
[3be9d10]167static void vfs_in_put(cap_call_handle_t rid, ipc_call_t *request)
[9c4cf0d]168{
169 int fd = IPC_GET_ARG1(*request);
[b7fd2a0]170 errno_t rc = vfs_op_put(fd);
[9c4cf0d]171 async_answer_0(rid, rc);
172}
173
[3be9d10]174static void vfs_in_read(cap_call_handle_t rid, ipc_call_t *request)
[0d35511]175{
176 int fd = IPC_GET_ARG1(*request);
[58898d1d]177 aoff64_t pos = MERGE_LOUP32(IPC_GET_ARG2(*request),
178 IPC_GET_ARG3(*request));
[0d35511]179
180 size_t bytes = 0;
[b7fd2a0]181 errno_t rc = vfs_op_read(fd, pos, &bytes);
[0d35511]182 async_answer_1(rid, rc, bytes);
183}
184
[3be9d10]185static void vfs_in_rename(cap_call_handle_t rid, ipc_call_t *request)
[0d35511]186{
187 /* The common base directory. */
188 int basefd;
189 char *old = NULL;
190 char *new = NULL;
[b7fd2a0]191 errno_t rc;
[a35b458]192
[0d35511]193 basefd = IPC_GET_ARG1(*request);
[a35b458]194
[0d35511]195 /* Retrieve the old path. */
196 rc = async_data_write_accept((void **) &old, true, 0, 0, 0, NULL);
[ebf1011]197 if (rc != EOK)
[0d35511]198 goto out;
[a35b458]199
[0d35511]200 /* Retrieve the new path. */
201 rc = async_data_write_accept((void **) &new, true, 0, 0, 0, NULL);
[ebf1011]202 if (rc != EOK)
[0d35511]203 goto out;
[a35b458]204
[0d35511]205 size_t olen;
206 size_t nlen;
207 char *oldc = canonify(old, &olen);
208 char *newc = canonify(new, &nlen);
[a35b458]209
[0d35511]210 if ((!oldc) || (!newc)) {
211 rc = EINVAL;
212 goto out;
213 }
[a35b458]214
[0d35511]215 assert(oldc[olen] == '\0');
216 assert(newc[nlen] == '\0');
[a35b458]217
[0d35511]218 rc = vfs_op_rename(basefd, oldc, newc);
219
220out:
221 async_answer_0(rid, rc);
222
[ebf1011]223 if (old)
[0d35511]224 free(old);
[ebf1011]225 if (new)
[0d35511]226 free(new);
227}
228
[3be9d10]229static void vfs_in_resize(cap_call_handle_t rid, ipc_call_t *request)
[67e881c]230{
231 int fd = IPC_GET_ARG1(*request);
232 int64_t size = MERGE_LOUP32(IPC_GET_ARG2(*request), IPC_GET_ARG3(*request));
[b7fd2a0]233 errno_t rc = vfs_op_resize(fd, size);
[67e881c]234 async_answer_0(rid, rc);
235}
236
[3be9d10]237static void vfs_in_stat(cap_call_handle_t rid, ipc_call_t *request)
[fe91f66]238{
239 int fd = IPC_GET_ARG1(*request);
[b7fd2a0]240 errno_t rc = vfs_op_stat(fd);
[fe91f66]241 async_answer_0(rid, rc);
242}
243
[3be9d10]244static void vfs_in_statfs(cap_call_handle_t rid, ipc_call_t *request)
[0d35511]245{
246 int fd = (int) IPC_GET_ARG1(*request);
[a35b458]247
[b7fd2a0]248 errno_t rc = vfs_op_statfs(fd);
[0d35511]249 async_answer_0(rid, rc);
250}
251
[3be9d10]252static void vfs_in_sync(cap_call_handle_t rid, ipc_call_t *request)
[0d35511]253{
254 int fd = IPC_GET_ARG1(*request);
[b7fd2a0]255 errno_t rc = vfs_op_sync(fd);
[0d35511]256 async_answer_0(rid, rc);
257}
258
[3be9d10]259static void vfs_in_unlink(cap_call_handle_t rid, ipc_call_t *request)
[0d35511]260{
261 int parentfd = IPC_GET_ARG1(*request);
262 int expectfd = IPC_GET_ARG2(*request);
[a35b458]263
[0d35511]264 char *path;
[b7fd2a0]265 errno_t rc = async_data_write_accept((void **) &path, true, 0, 0, 0, NULL);
[ebf1011]266 if (rc == EOK)
[79ea5af]267 rc = vfs_op_unlink(parentfd, expectfd, path);
[a35b458]268
[0d35511]269 async_answer_0(rid, rc);
270}
271
[3be9d10]272static void vfs_in_unmount(cap_call_handle_t rid, ipc_call_t *request)
[0d35511]273{
274 int mpfd = IPC_GET_ARG1(*request);
[b7fd2a0]275 errno_t rc = vfs_op_unmount(mpfd);
[0d35511]276 async_answer_0(rid, rc);
277}
278
[3be9d10]279static void vfs_in_wait_handle(cap_call_handle_t rid, ipc_call_t *request)
[0d35511]280{
281 bool high_fd = IPC_GET_ARG1(*request);
[6ad454f]282 int fd = -1;
[b7fd2a0]283 errno_t rc = vfs_op_wait_handle(high_fd, &fd);
[6ad454f]284 async_answer_1(rid, rc, fd);
[0d35511]285}
286
[3be9d10]287static void vfs_in_walk(cap_call_handle_t rid, ipc_call_t *request)
[0d35511]288{
289 /*
290 * Parent is our relative root for file lookup.
291 * For defined flags, see <ipc/vfs.h>.
292 */
293 int parentfd = IPC_GET_ARG1(*request);
294 int flags = IPC_GET_ARG2(*request);
[a35b458]295
[0d35511]296 int fd = 0;
297 char *path;
[b7fd2a0]298 errno_t rc = async_data_write_accept((void **)&path, true, 0, 0, 0, NULL);
[0d35511]299 if (rc == EOK) {
300 rc = vfs_op_walk(parentfd, flags, path, &fd);
301 free(path);
302 }
303 async_answer_1(rid, rc, fd);
304}
305
[3be9d10]306static void vfs_in_write(cap_call_handle_t rid, ipc_call_t *request)
[0d35511]307{
308 int fd = IPC_GET_ARG1(*request);
[58898d1d]309 aoff64_t pos = MERGE_LOUP32(IPC_GET_ARG2(*request),
310 IPC_GET_ARG3(*request));
[0d35511]311
312 size_t bytes = 0;
[b7fd2a0]313 errno_t rc = vfs_op_write(fd, pos, &bytes);
[0d35511]314 async_answer_1(rid, rc, bytes);
315}
316
[a46e56b]317void vfs_connection(cap_call_handle_t icall_handle, ipc_call_t *icall, void *arg)
[0d35511]318{
319 bool cont = true;
[a35b458]320
[0d35511]321 /*
322 * The connection was opened via the IPC_CONNECT_ME_TO call.
323 * This call needs to be answered.
324 */
[a46e56b]325 async_answer_0(icall_handle, EOK);
[a35b458]326
[0d35511]327 while (cont) {
328 ipc_call_t call;
[a46e56b]329 cap_call_handle_t chandle = async_get_call(&call);
[a35b458]330
[0d35511]331 if (!IPC_GET_IMETHOD(call))
332 break;
[a35b458]333
[0d35511]334 switch (IPC_GET_IMETHOD(call)) {
335 case VFS_IN_CLONE:
[a46e56b]336 vfs_in_clone(chandle, &call);
[0d35511]337 break;
[d2c8533]338 case VFS_IN_FSPROBE:
[a46e56b]339 vfs_in_fsprobe(chandle, &call);
[d2c8533]340 break;
[b14d9f9]341 case VFS_IN_FSTYPES:
[a46e56b]342 vfs_in_fstypes(chandle, &call);
[b14d9f9]343 break;
[0d35511]344 case VFS_IN_MOUNT:
[a46e56b]345 vfs_in_mount(chandle, &call);
[0d35511]346 break;
[fe91f66]347 case VFS_IN_OPEN:
[a46e56b]348 vfs_in_open(chandle, &call);
[0d35511]349 break;
[9c4cf0d]350 case VFS_IN_PUT:
[a46e56b]351 vfs_in_put(chandle, &call);
[9c4cf0d]352 break;
[0d35511]353 case VFS_IN_READ:
[a46e56b]354 vfs_in_read(chandle, &call);
[0d35511]355 break;
356 case VFS_IN_REGISTER:
[a46e56b]357 vfs_register(chandle, &call);
[0d35511]358 cont = false;
359 break;
360 case VFS_IN_RENAME:
[a46e56b]361 vfs_in_rename(chandle, &call);
[0d35511]362 break;
[67e881c]363 case VFS_IN_RESIZE:
[a46e56b]364 vfs_in_resize(chandle, &call);
[67e881c]365 break;
[fe91f66]366 case VFS_IN_STAT:
[a46e56b]367 vfs_in_stat(chandle, &call);
[fe91f66]368 break;
[0d35511]369 case VFS_IN_STATFS:
[a46e56b]370 vfs_in_statfs(chandle, &call);
[0d35511]371 break;
372 case VFS_IN_SYNC:
[a46e56b]373 vfs_in_sync(chandle, &call);
[0d35511]374 break;
[fe91f66]375 case VFS_IN_UNLINK:
[a46e56b]376 vfs_in_unlink(chandle, &call);
[0d35511]377 break;
378 case VFS_IN_UNMOUNT:
[a46e56b]379 vfs_in_unmount(chandle, &call);
[0d35511]380 break;
381 case VFS_IN_WAIT_HANDLE:
[a46e56b]382 vfs_in_wait_handle(chandle, &call);
[0d35511]383 break;
384 case VFS_IN_WALK:
[a46e56b]385 vfs_in_walk(chandle, &call);
[0d35511]386 break;
387 case VFS_IN_WRITE:
[a46e56b]388 vfs_in_write(chandle, &call);
[0d35511]389 break;
390 default:
[a46e56b]391 async_answer_0(chandle, ENOTSUP);
[0d35511]392 break;
393 }
394 }
[a35b458]395
[0d35511]396 /*
397 * Open files for this client will be cleaned up when its last
398 * connection fibril terminates.
399 */
400}
Note: See TracBrowser for help on using the repository browser.