source: mainline/uspace/srv/vfs/vfs_ipc.c@ 59ff52d

Last change on this file since 59ff52d was 59ff52d, checked in by Jakub Jermar <jakub@…>, 7 years ago

Add async_accept_0() for accepting connections

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