MAINTAINERS: mark megasas as maintained
[qemu/ar7.git] / hw / 9pfs / virtio-9p-handle.c
blob4b79cefd135e7217fc87d79f035a3ec8d44cad0f
1 /*
2 * Virtio 9p handle callback
4 * Copyright IBM, Corp. 2011
6 * Authors:
7 * Aneesh Kumar K.V <aneesh.kumar@linux.vnet.ibm.com>
9 * This work is licensed under the terms of the GNU GPL, version 2. See
10 * the COPYING file in the top-level directory.
14 #include "hw/virtio/virtio.h"
15 #include "virtio-9p.h"
16 #include "virtio-9p-xattr.h"
17 #include <arpa/inet.h>
18 #include <pwd.h>
19 #include <grp.h>
20 #include <sys/socket.h>
21 #include <sys/un.h>
22 #include "qemu/xattr.h"
23 #include <unistd.h>
24 #include <linux/fs.h>
25 #ifdef CONFIG_LINUX_MAGIC_H
26 #include <linux/magic.h>
27 #endif
28 #include <sys/ioctl.h>
30 #ifndef XFS_SUPER_MAGIC
31 #define XFS_SUPER_MAGIC 0x58465342
32 #endif
33 #ifndef EXT2_SUPER_MAGIC
34 #define EXT2_SUPER_MAGIC 0xEF53
35 #endif
36 #ifndef REISERFS_SUPER_MAGIC
37 #define REISERFS_SUPER_MAGIC 0x52654973
38 #endif
39 #ifndef BTRFS_SUPER_MAGIC
40 #define BTRFS_SUPER_MAGIC 0x9123683E
41 #endif
43 struct handle_data {
44 int mountfd;
45 int handle_bytes;
48 static inline int name_to_handle(int dirfd, const char *name,
49 struct file_handle *fh, int *mnt_id, int flags)
51 return name_to_handle_at(dirfd, name, fh, mnt_id, flags);
54 static inline int open_by_handle(int mountfd, const char *fh, int flags)
56 return open_by_handle_at(mountfd, (struct file_handle *)fh, flags);
59 static int handle_update_file_cred(int dirfd, const char *name, FsCred *credp)
61 int fd, ret;
62 fd = openat(dirfd, name, O_NONBLOCK | O_NOFOLLOW);
63 if (fd < 0) {
64 return fd;
66 ret = fchownat(fd, "", credp->fc_uid, credp->fc_gid, AT_EMPTY_PATH);
67 if (ret < 0) {
68 goto err_out;
70 ret = fchmod(fd, credp->fc_mode & 07777);
71 err_out:
72 close(fd);
73 return ret;
77 static int handle_lstat(FsContext *fs_ctx, V9fsPath *fs_path,
78 struct stat *stbuf)
80 int fd, ret;
81 struct handle_data *data = (struct handle_data *)fs_ctx->private;
83 fd = open_by_handle(data->mountfd, fs_path->data, O_PATH);
84 if (fd < 0) {
85 return fd;
87 ret = fstatat(fd, "", stbuf, AT_EMPTY_PATH);
88 close(fd);
89 return ret;
92 static ssize_t handle_readlink(FsContext *fs_ctx, V9fsPath *fs_path,
93 char *buf, size_t bufsz)
95 int fd, ret;
96 struct handle_data *data = (struct handle_data *)fs_ctx->private;
98 fd = open_by_handle(data->mountfd, fs_path->data, O_PATH);
99 if (fd < 0) {
100 return fd;
102 ret = readlinkat(fd, "", buf, bufsz);
103 close(fd);
104 return ret;
107 static int handle_close(FsContext *ctx, V9fsFidOpenState *fs)
109 return close(fs->fd);
112 static int handle_closedir(FsContext *ctx, V9fsFidOpenState *fs)
114 return closedir(fs->dir);
117 static int handle_open(FsContext *ctx, V9fsPath *fs_path,
118 int flags, V9fsFidOpenState *fs)
120 struct handle_data *data = (struct handle_data *)ctx->private;
122 fs->fd = open_by_handle(data->mountfd, fs_path->data, flags);
123 return fs->fd;
126 static int handle_opendir(FsContext *ctx,
127 V9fsPath *fs_path, V9fsFidOpenState *fs)
129 int ret;
130 ret = handle_open(ctx, fs_path, O_DIRECTORY, fs);
131 if (ret < 0) {
132 return -1;
134 fs->dir = fdopendir(ret);
135 if (!fs->dir) {
136 return -1;
138 return 0;
141 static void handle_rewinddir(FsContext *ctx, V9fsFidOpenState *fs)
143 return rewinddir(fs->dir);
146 static off_t handle_telldir(FsContext *ctx, V9fsFidOpenState *fs)
148 return telldir(fs->dir);
151 static int handle_readdir_r(FsContext *ctx, V9fsFidOpenState *fs,
152 struct dirent *entry,
153 struct dirent **result)
155 return readdir_r(fs->dir, entry, result);
158 static void handle_seekdir(FsContext *ctx, V9fsFidOpenState *fs, off_t off)
160 return seekdir(fs->dir, off);
163 static ssize_t handle_preadv(FsContext *ctx, V9fsFidOpenState *fs,
164 const struct iovec *iov,
165 int iovcnt, off_t offset)
167 #ifdef CONFIG_PREADV
168 return preadv(fs->fd, iov, iovcnt, offset);
169 #else
170 int err = lseek(fs->fd, offset, SEEK_SET);
171 if (err == -1) {
172 return err;
173 } else {
174 return readv(fs->fd, iov, iovcnt);
176 #endif
179 static ssize_t handle_pwritev(FsContext *ctx, V9fsFidOpenState *fs,
180 const struct iovec *iov,
181 int iovcnt, off_t offset)
183 ssize_t ret;
184 #ifdef CONFIG_PREADV
185 ret = pwritev(fs->fd, iov, iovcnt, offset);
186 #else
187 int err = lseek(fs->fd, offset, SEEK_SET);
188 if (err == -1) {
189 return err;
190 } else {
191 ret = writev(fs->fd, iov, iovcnt);
193 #endif
194 #ifdef CONFIG_SYNC_FILE_RANGE
195 if (ret > 0 && ctx->export_flags & V9FS_IMMEDIATE_WRITEOUT) {
197 * Initiate a writeback. This is not a data integrity sync.
198 * We want to ensure that we don't leave dirty pages in the cache
199 * after write when writeout=immediate is sepcified.
201 sync_file_range(fs->fd, offset, ret,
202 SYNC_FILE_RANGE_WAIT_BEFORE | SYNC_FILE_RANGE_WRITE);
204 #endif
205 return ret;
208 static int handle_chmod(FsContext *fs_ctx, V9fsPath *fs_path, FsCred *credp)
210 int fd, ret;
211 struct handle_data *data = (struct handle_data *)fs_ctx->private;
213 fd = open_by_handle(data->mountfd, fs_path->data, O_NONBLOCK);
214 if (fd < 0) {
215 return fd;
217 ret = fchmod(fd, credp->fc_mode);
218 close(fd);
219 return ret;
222 static int handle_mknod(FsContext *fs_ctx, V9fsPath *dir_path,
223 const char *name, FsCred *credp)
225 int dirfd, ret;
226 struct handle_data *data = (struct handle_data *)fs_ctx->private;
228 dirfd = open_by_handle(data->mountfd, dir_path->data, O_PATH);
229 if (dirfd < 0) {
230 return dirfd;
232 ret = mknodat(dirfd, name, credp->fc_mode, credp->fc_rdev);
233 if (!ret) {
234 ret = handle_update_file_cred(dirfd, name, credp);
236 close(dirfd);
237 return ret;
240 static int handle_mkdir(FsContext *fs_ctx, V9fsPath *dir_path,
241 const char *name, FsCred *credp)
243 int dirfd, ret;
244 struct handle_data *data = (struct handle_data *)fs_ctx->private;
246 dirfd = open_by_handle(data->mountfd, dir_path->data, O_PATH);
247 if (dirfd < 0) {
248 return dirfd;
250 ret = mkdirat(dirfd, name, credp->fc_mode);
251 if (!ret) {
252 ret = handle_update_file_cred(dirfd, name, credp);
254 close(dirfd);
255 return ret;
258 static int handle_fstat(FsContext *fs_ctx, int fid_type,
259 V9fsFidOpenState *fs, struct stat *stbuf)
261 int fd;
263 if (fid_type == P9_FID_DIR) {
264 fd = dirfd(fs->dir);
265 } else {
266 fd = fs->fd;
268 return fstat(fd, stbuf);
271 static int handle_open2(FsContext *fs_ctx, V9fsPath *dir_path, const char *name,
272 int flags, FsCred *credp, V9fsFidOpenState *fs)
274 int ret;
275 int dirfd, fd;
276 struct handle_data *data = (struct handle_data *)fs_ctx->private;
278 dirfd = open_by_handle(data->mountfd, dir_path->data, O_PATH);
279 if (dirfd < 0) {
280 return dirfd;
282 fd = openat(dirfd, name, flags | O_NOFOLLOW, credp->fc_mode);
283 if (fd >= 0) {
284 ret = handle_update_file_cred(dirfd, name, credp);
285 if (ret < 0) {
286 close(fd);
287 fd = ret;
288 } else {
289 fs->fd = fd;
292 close(dirfd);
293 return fd;
297 static int handle_symlink(FsContext *fs_ctx, const char *oldpath,
298 V9fsPath *dir_path, const char *name, FsCred *credp)
300 int fd, dirfd, ret;
301 struct handle_data *data = (struct handle_data *)fs_ctx->private;
303 dirfd = open_by_handle(data->mountfd, dir_path->data, O_PATH);
304 if (dirfd < 0) {
305 return dirfd;
307 ret = symlinkat(oldpath, dirfd, name);
308 if (!ret) {
309 fd = openat(dirfd, name, O_PATH | O_NOFOLLOW);
310 if (fd < 0) {
311 ret = fd;
312 goto err_out;
314 ret = fchownat(fd, "", credp->fc_uid, credp->fc_gid, AT_EMPTY_PATH);
315 close(fd);
317 err_out:
318 close(dirfd);
319 return ret;
322 static int handle_link(FsContext *ctx, V9fsPath *oldpath,
323 V9fsPath *dirpath, const char *name)
325 int oldfd, newdirfd, ret;
326 struct handle_data *data = (struct handle_data *)ctx->private;
328 oldfd = open_by_handle(data->mountfd, oldpath->data, O_PATH);
329 if (oldfd < 0) {
330 return oldfd;
332 newdirfd = open_by_handle(data->mountfd, dirpath->data, O_PATH);
333 if (newdirfd < 0) {
334 close(oldfd);
335 return newdirfd;
337 ret = linkat(oldfd, "", newdirfd, name, AT_EMPTY_PATH);
338 close(newdirfd);
339 close(oldfd);
340 return ret;
343 static int handle_truncate(FsContext *ctx, V9fsPath *fs_path, off_t size)
345 int fd, ret;
346 struct handle_data *data = (struct handle_data *)ctx->private;
348 fd = open_by_handle(data->mountfd, fs_path->data, O_NONBLOCK | O_WRONLY);
349 if (fd < 0) {
350 return fd;
352 ret = ftruncate(fd, size);
353 close(fd);
354 return ret;
357 static int handle_rename(FsContext *ctx, const char *oldpath,
358 const char *newpath)
360 errno = EOPNOTSUPP;
361 return -1;
364 static int handle_chown(FsContext *fs_ctx, V9fsPath *fs_path, FsCred *credp)
366 int fd, ret;
367 struct handle_data *data = (struct handle_data *)fs_ctx->private;
369 fd = open_by_handle(data->mountfd, fs_path->data, O_PATH);
370 if (fd < 0) {
371 return fd;
373 ret = fchownat(fd, "", credp->fc_uid, credp->fc_gid, AT_EMPTY_PATH);
374 close(fd);
375 return ret;
378 static int handle_utimensat(FsContext *ctx, V9fsPath *fs_path,
379 const struct timespec *buf)
381 int ret;
382 #ifdef CONFIG_UTIMENSAT
383 int fd;
384 struct handle_data *data = (struct handle_data *)ctx->private;
386 fd = open_by_handle(data->mountfd, fs_path->data, O_NONBLOCK);
387 if (fd < 0) {
388 return fd;
390 ret = futimens(fd, buf);
391 close(fd);
392 #else
393 ret = -1;
394 errno = ENOSYS;
395 #endif
396 return ret;
399 static int handle_remove(FsContext *ctx, const char *path)
401 errno = EOPNOTSUPP;
402 return -1;
405 static int handle_fsync(FsContext *ctx, int fid_type,
406 V9fsFidOpenState *fs, int datasync)
408 int fd;
410 if (fid_type == P9_FID_DIR) {
411 fd = dirfd(fs->dir);
412 } else {
413 fd = fs->fd;
416 if (datasync) {
417 return qemu_fdatasync(fd);
418 } else {
419 return fsync(fd);
423 static int handle_statfs(FsContext *ctx, V9fsPath *fs_path,
424 struct statfs *stbuf)
426 int fd, ret;
427 struct handle_data *data = (struct handle_data *)ctx->private;
429 fd = open_by_handle(data->mountfd, fs_path->data, O_NONBLOCK);
430 if (fd < 0) {
431 return fd;
433 ret = fstatfs(fd, stbuf);
434 close(fd);
435 return ret;
438 static ssize_t handle_lgetxattr(FsContext *ctx, V9fsPath *fs_path,
439 const char *name, void *value, size_t size)
441 int fd, ret;
442 struct handle_data *data = (struct handle_data *)ctx->private;
444 fd = open_by_handle(data->mountfd, fs_path->data, O_NONBLOCK);
445 if (fd < 0) {
446 return fd;
448 ret = fgetxattr(fd, name, value, size);
449 close(fd);
450 return ret;
453 static ssize_t handle_llistxattr(FsContext *ctx, V9fsPath *fs_path,
454 void *value, size_t size)
456 int fd, ret;
457 struct handle_data *data = (struct handle_data *)ctx->private;
459 fd = open_by_handle(data->mountfd, fs_path->data, O_NONBLOCK);
460 if (fd < 0) {
461 return fd;
463 ret = flistxattr(fd, value, size);
464 close(fd);
465 return ret;
468 static int handle_lsetxattr(FsContext *ctx, V9fsPath *fs_path, const char *name,
469 void *value, size_t size, int flags)
471 int fd, ret;
472 struct handle_data *data = (struct handle_data *)ctx->private;
474 fd = open_by_handle(data->mountfd, fs_path->data, O_NONBLOCK);
475 if (fd < 0) {
476 return fd;
478 ret = fsetxattr(fd, name, value, size, flags);
479 close(fd);
480 return ret;
483 static int handle_lremovexattr(FsContext *ctx, V9fsPath *fs_path,
484 const char *name)
486 int fd, ret;
487 struct handle_data *data = (struct handle_data *)ctx->private;
489 fd = open_by_handle(data->mountfd, fs_path->data, O_NONBLOCK);
490 if (fd < 0) {
491 return fd;
493 ret = fremovexattr(fd, name);
494 close(fd);
495 return ret;
498 static int handle_name_to_path(FsContext *ctx, V9fsPath *dir_path,
499 const char *name, V9fsPath *target)
501 char *buffer;
502 struct file_handle *fh;
503 int dirfd, ret, mnt_id;
504 struct handle_data *data = (struct handle_data *)ctx->private;
506 /* "." and ".." are not allowed */
507 if (!strcmp(name, ".") || !strcmp(name, "..")) {
508 errno = EINVAL;
509 return -1;
512 if (dir_path) {
513 dirfd = open_by_handle(data->mountfd, dir_path->data, O_PATH);
514 } else {
515 /* relative to export root */
516 buffer = rpath(ctx, ".");
517 dirfd = open(buffer, O_DIRECTORY);
518 g_free(buffer);
520 if (dirfd < 0) {
521 return dirfd;
523 fh = g_malloc(sizeof(struct file_handle) + data->handle_bytes);
524 fh->handle_bytes = data->handle_bytes;
525 /* add a "./" at the beginning of the path */
526 buffer = g_strdup_printf("./%s", name);
527 /* flag = 0 imply don't follow symlink */
528 ret = name_to_handle(dirfd, buffer, fh, &mnt_id, 0);
529 if (!ret) {
530 target->data = (char *)fh;
531 target->size = sizeof(struct file_handle) + data->handle_bytes;
532 } else {
533 g_free(fh);
535 close(dirfd);
536 g_free(buffer);
537 return ret;
540 static int handle_renameat(FsContext *ctx, V9fsPath *olddir,
541 const char *old_name, V9fsPath *newdir,
542 const char *new_name)
544 int olddirfd, newdirfd, ret;
545 struct handle_data *data = (struct handle_data *)ctx->private;
547 olddirfd = open_by_handle(data->mountfd, olddir->data, O_PATH);
548 if (olddirfd < 0) {
549 return olddirfd;
551 newdirfd = open_by_handle(data->mountfd, newdir->data, O_PATH);
552 if (newdirfd < 0) {
553 close(olddirfd);
554 return newdirfd;
556 ret = renameat(olddirfd, old_name, newdirfd, new_name);
557 close(newdirfd);
558 close(olddirfd);
559 return ret;
562 static int handle_unlinkat(FsContext *ctx, V9fsPath *dir,
563 const char *name, int flags)
565 int dirfd, ret;
566 struct handle_data *data = (struct handle_data *)ctx->private;
567 int rflags;
569 dirfd = open_by_handle(data->mountfd, dir->data, O_PATH);
570 if (dirfd < 0) {
571 return dirfd;
574 rflags = 0;
575 if (flags & P9_DOTL_AT_REMOVEDIR) {
576 rflags |= AT_REMOVEDIR;
579 ret = unlinkat(dirfd, name, rflags);
581 close(dirfd);
582 return ret;
585 static int handle_ioc_getversion(FsContext *ctx, V9fsPath *path,
586 mode_t st_mode, uint64_t *st_gen)
588 #ifdef FS_IOC_GETVERSION
589 int err;
590 V9fsFidOpenState fid_open;
593 * Do not try to open special files like device nodes, fifos etc
594 * We can get fd for regular files and directories only
596 if (!S_ISREG(st_mode) && !S_ISDIR(st_mode)) {
597 errno = ENOTTY;
598 return -1;
600 err = handle_open(ctx, path, O_RDONLY, &fid_open);
601 if (err < 0) {
602 return err;
604 err = ioctl(fid_open.fd, FS_IOC_GETVERSION, st_gen);
605 handle_close(ctx, &fid_open);
606 return err;
607 #else
608 errno = ENOTTY;
609 return -1;
610 #endif
613 static int handle_init(FsContext *ctx)
615 int ret, mnt_id;
616 struct statfs stbuf;
617 struct file_handle fh;
618 struct handle_data *data = g_malloc(sizeof(struct handle_data));
620 data->mountfd = open(ctx->fs_root, O_DIRECTORY);
621 if (data->mountfd < 0) {
622 ret = data->mountfd;
623 goto err_out;
625 ret = statfs(ctx->fs_root, &stbuf);
626 if (!ret) {
627 switch (stbuf.f_type) {
628 case EXT2_SUPER_MAGIC:
629 case BTRFS_SUPER_MAGIC:
630 case REISERFS_SUPER_MAGIC:
631 case XFS_SUPER_MAGIC:
632 ctx->exops.get_st_gen = handle_ioc_getversion;
633 break;
636 memset(&fh, 0, sizeof(struct file_handle));
637 ret = name_to_handle(data->mountfd, ".", &fh, &mnt_id, 0);
638 if (ret && errno == EOVERFLOW) {
639 data->handle_bytes = fh.handle_bytes;
640 ctx->private = data;
641 ret = 0;
642 goto out;
644 /* we got 0 byte handle ? */
645 ret = -1;
646 close(data->mountfd);
647 err_out:
648 g_free(data);
649 out:
650 return ret;
653 static int handle_parse_opts(QemuOpts *opts, struct FsDriverEntry *fse)
655 const char *sec_model = qemu_opt_get(opts, "security_model");
656 const char *path = qemu_opt_get(opts, "path");
658 if (sec_model) {
659 fprintf(stderr, "Invalid argument security_model specified with handle fsdriver\n");
660 return -1;
663 if (!path) {
664 fprintf(stderr, "fsdev: No path specified.\n");
665 return -1;
667 fse->path = g_strdup(path);
668 return 0;
672 FileOperations handle_ops = {
673 .parse_opts = handle_parse_opts,
674 .init = handle_init,
675 .lstat = handle_lstat,
676 .readlink = handle_readlink,
677 .close = handle_close,
678 .closedir = handle_closedir,
679 .open = handle_open,
680 .opendir = handle_opendir,
681 .rewinddir = handle_rewinddir,
682 .telldir = handle_telldir,
683 .readdir_r = handle_readdir_r,
684 .seekdir = handle_seekdir,
685 .preadv = handle_preadv,
686 .pwritev = handle_pwritev,
687 .chmod = handle_chmod,
688 .mknod = handle_mknod,
689 .mkdir = handle_mkdir,
690 .fstat = handle_fstat,
691 .open2 = handle_open2,
692 .symlink = handle_symlink,
693 .link = handle_link,
694 .truncate = handle_truncate,
695 .rename = handle_rename,
696 .chown = handle_chown,
697 .utimensat = handle_utimensat,
698 .remove = handle_remove,
699 .fsync = handle_fsync,
700 .statfs = handle_statfs,
701 .lgetxattr = handle_lgetxattr,
702 .llistxattr = handle_llistxattr,
703 .lsetxattr = handle_lsetxattr,
704 .lremovexattr = handle_lremovexattr,
705 .name_to_path = handle_name_to_path,
706 .renameat = handle_renameat,
707 .unlinkat = handle_unlinkat,