]> Git Repo - qemu.git/blame - hw/9pfs/9p-local.c
Merge remote-tracking branch 'remotes/kraxel/tags/pull-ui-20170614-1' into staging
[qemu.git] / hw / 9pfs / 9p-local.c
CommitLineData
9f107513 1/*
f00d4f59 2 * 9p Posix callback
9f107513
AL
3 *
4 * Copyright IBM, Corp. 2010
5 *
6 * Authors:
7 * Anthony Liguori <[email protected]>
8 *
9 * This work is licensed under the terms of the GNU GPL, version 2. See
10 * the COPYING file in the top-level directory.
11 *
12 */
873c3213 13
fbc04127 14#include "qemu/osdep.h"
ebe74f8b 15#include "9p.h"
996a0d76 16#include "9p-local.h"
267ae092 17#include "9p-xattr.h"
0e35a378 18#include "9p-util.h"
69b15212 19#include "fsdev/qemu-fsdev.h" /* local_ops */
c494dd6f 20#include <arpa/inet.h>
131dcb25
AL
21#include <pwd.h>
22#include <grp.h>
c494dd6f
AL
23#include <sys/socket.h>
24#include <sys/un.h>
1de7afc9 25#include "qemu/xattr.h"
f348b6d1 26#include "qemu/cutils.h"
63325b18 27#include "qemu/error-report.h"
2c30dd74 28#include <libgen.h>
e06a765e
HPB
29#include <linux/fs.h>
30#ifdef CONFIG_LINUX_MAGIC_H
31#include <linux/magic.h>
32#endif
33#include <sys/ioctl.h>
34
35#ifndef XFS_SUPER_MAGIC
36#define XFS_SUPER_MAGIC 0x58465342
37#endif
38#ifndef EXT2_SUPER_MAGIC
39#define EXT2_SUPER_MAGIC 0xEF53
40#endif
41#ifndef REISERFS_SUPER_MAGIC
42#define REISERFS_SUPER_MAGIC 0x52654973
43#endif
44#ifndef BTRFS_SUPER_MAGIC
45#define BTRFS_SUPER_MAGIC 0x9123683E
46#endif
131dcb25 47
0e35a378
GK
48typedef struct {
49 int mountfd;
50} LocalData;
2c30dd74 51
996a0d76
GK
52int local_open_nofollow(FsContext *fs_ctx, const char *path, int flags,
53 mode_t mode)
2c30dd74 54{
996a0d76 55 LocalData *data = fs_ctx->private;
3dbcf273 56 int fd = data->mountfd;
996a0d76 57
3dbcf273
GK
58 while (*path && fd != -1) {
59 const char *c;
60 int next_fd;
61 char *head;
62
63 /* Only relative paths without consecutive slashes */
64 assert(*path != '/');
65
66 head = g_strdup(path);
67 c = strchrnul(path, '/');
68 if (*c) {
69 /* Intermediate path element */
70 head[c - path] = 0;
71 path = c + 1;
72 next_fd = openat_dir(fd, head);
73 } else {
74 /* Rightmost path element */
75 next_fd = openat_file(fd, head, flags, mode);
76 path = c;
77 }
78 g_free(head);
79 if (fd != data->mountfd) {
80 close_preserve_errno(fd);
81 }
82 fd = next_fd;
1b6f85e2 83 }
996a0d76 84
3dbcf273
GK
85 assert(fd != data->mountfd);
86 return fd;
996a0d76
GK
87}
88
89int local_opendir_nofollow(FsContext *fs_ctx, const char *path)
90{
91 return local_open_nofollow(fs_ctx, path, O_DIRECTORY | O_RDONLY, 0);
92}
93
99f2cf4b
GK
94static void renameat_preserve_errno(int odirfd, const char *opath, int ndirfd,
95 const char *npath)
96{
97 int serrno = errno;
98 renameat(odirfd, opath, ndirfd, npath);
99 errno = serrno;
2c30dd74
AK
100}
101
ad0b46e6
GK
102static void unlinkat_preserve_errno(int dirfd, const char *path, int flags)
103{
104 int serrno = errno;
105 unlinkat(dirfd, path, flags);
106 errno = serrno;
107}
108
2c30dd74 109#define VIRTFS_META_DIR ".virtfs_metadata"
81ffbf5a 110#define VIRTFS_META_ROOT_FILE VIRTFS_META_DIR "_root"
2c30dd74 111
f9aef99b 112static FILE *local_fopenat(int dirfd, const char *name, const char *mode)
0ceb092e
AK
113{
114 int fd, o_mode = 0;
115 FILE *fp;
f9aef99b 116 int flags;
0ceb092e
AK
117 /*
118 * only supports two modes
119 */
120 if (mode[0] == 'r') {
f9aef99b 121 flags = O_RDONLY;
0ceb092e 122 } else if (mode[0] == 'w') {
f9aef99b 123 flags = O_WRONLY | O_TRUNC | O_CREAT;
0ceb092e
AK
124 o_mode = S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP | S_IROTH | S_IWOTH;
125 } else {
126 return NULL;
127 }
f9aef99b 128 fd = openat_file(dirfd, name, flags, o_mode);
0ceb092e
AK
129 if (fd == -1) {
130 return NULL;
131 }
132 fp = fdopen(fd, mode);
133 if (!fp) {
134 close(fd);
135 }
136 return fp;
137}
138
2c30dd74 139#define ATTR_MAX 100
f9aef99b 140static void local_mapped_file_attr(int dirfd, const char *name,
2c30dd74
AK
141 struct stat *stbuf)
142{
143 FILE *fp;
144 char buf[ATTR_MAX];
f9aef99b 145 int map_dirfd;
2c30dd74 146
81ffbf5a
GK
147 if (strcmp(name, ".")) {
148 map_dirfd = openat_dir(dirfd, VIRTFS_META_DIR);
149 if (map_dirfd == -1) {
150 return;
151 }
2c30dd74 152
81ffbf5a
GK
153 fp = local_fopenat(map_dirfd, name, "r");
154 close_preserve_errno(map_dirfd);
155 } else {
156 fp = local_fopenat(dirfd, VIRTFS_META_ROOT_FILE, "r");
157 }
2c30dd74
AK
158 if (!fp) {
159 return;
160 }
161 memset(buf, 0, ATTR_MAX);
162 while (fgets(buf, ATTR_MAX, fp)) {
163 if (!strncmp(buf, "virtfs.uid", 10)) {
164 stbuf->st_uid = atoi(buf+11);
165 } else if (!strncmp(buf, "virtfs.gid", 10)) {
166 stbuf->st_gid = atoi(buf+11);
167 } else if (!strncmp(buf, "virtfs.mode", 11)) {
168 stbuf->st_mode = atoi(buf+12);
169 } else if (!strncmp(buf, "virtfs.rdev", 11)) {
170 stbuf->st_rdev = atoi(buf+12);
171 }
172 memset(buf, 0, ATTR_MAX);
173 }
174 fclose(fp);
175}
176
2289be19 177static int local_lstat(FsContext *fs_ctx, V9fsPath *fs_path, struct stat *stbuf)
131dcb25 178{
f9aef99b
GK
179 int err = -1;
180 char *dirpath = g_path_get_dirname(fs_path->data);
181 char *name = g_path_get_basename(fs_path->data);
182 int dirfd;
183
184 dirfd = local_opendir_nofollow(fs_ctx, dirpath);
185 if (dirfd == -1) {
186 goto out;
187 }
2289be19 188
f9aef99b 189 err = fstatat(dirfd, name, stbuf, AT_SYMLINK_NOFOLLOW);
1237ad76 190 if (err) {
4fa4ce71 191 goto err_out;
1237ad76 192 }
b97400ca 193 if (fs_ctx->export_flags & V9FS_SM_MAPPED) {
1237ad76
VJ
194 /* Actual credentials are part of extended attrs */
195 uid_t tmp_uid;
196 gid_t tmp_gid;
197 mode_t tmp_mode;
198 dev_t tmp_dev;
f9aef99b
GK
199
200 if (fgetxattrat_nofollow(dirfd, name, "user.virtfs.uid", &tmp_uid,
201 sizeof(uid_t)) > 0) {
f8ad4a89 202 stbuf->st_uid = le32_to_cpu(tmp_uid);
1237ad76 203 }
f9aef99b
GK
204 if (fgetxattrat_nofollow(dirfd, name, "user.virtfs.gid", &tmp_gid,
205 sizeof(gid_t)) > 0) {
f8ad4a89 206 stbuf->st_gid = le32_to_cpu(tmp_gid);
1237ad76 207 }
f9aef99b
GK
208 if (fgetxattrat_nofollow(dirfd, name, "user.virtfs.mode", &tmp_mode,
209 sizeof(mode_t)) > 0) {
f8ad4a89 210 stbuf->st_mode = le32_to_cpu(tmp_mode);
1237ad76 211 }
f9aef99b
GK
212 if (fgetxattrat_nofollow(dirfd, name, "user.virtfs.rdev", &tmp_dev,
213 sizeof(dev_t)) > 0) {
f8ad4a89 214 stbuf->st_rdev = le64_to_cpu(tmp_dev);
1237ad76 215 }
2c30dd74 216 } else if (fs_ctx->export_flags & V9FS_SM_MAPPED_FILE) {
f9aef99b 217 local_mapped_file_attr(dirfd, name, stbuf);
2c30dd74 218 }
4fa4ce71
CG
219
220err_out:
f9aef99b
GK
221 close_preserve_errno(dirfd);
222out:
223 g_free(name);
224 g_free(dirpath);
1237ad76 225 return err;
131dcb25
AL
226}
227
e3187a45
GK
228static int local_set_mapped_file_attrat(int dirfd, const char *name,
229 FsCred *credp)
2c30dd74
AK
230{
231 FILE *fp;
e3187a45 232 int ret;
2c30dd74 233 char buf[ATTR_MAX];
2c30dd74 234 int uid = -1, gid = -1, mode = -1, rdev = -1;
81ffbf5a
GK
235 int map_dirfd = -1, map_fd;
236 bool is_root = !strcmp(name, ".");
237
238 if (is_root) {
239 fp = local_fopenat(dirfd, VIRTFS_META_ROOT_FILE, "r");
240 if (!fp) {
241 if (errno == ENOENT) {
242 goto update_map_file;
243 } else {
244 return -1;
245 }
246 }
247 } else {
248 ret = mkdirat(dirfd, VIRTFS_META_DIR, 0700);
249 if (ret < 0 && errno != EEXIST) {
250 return -1;
251 }
e3187a45 252
81ffbf5a
GK
253 map_dirfd = openat_dir(dirfd, VIRTFS_META_DIR);
254 if (map_dirfd == -1) {
e3187a45
GK
255 return -1;
256 }
81ffbf5a
GK
257
258 fp = local_fopenat(map_dirfd, name, "r");
259 if (!fp) {
260 if (errno == ENOENT) {
261 goto update_map_file;
262 } else {
263 close_preserve_errno(map_dirfd);
264 return -1;
265 }
266 }
2c30dd74
AK
267 }
268 memset(buf, 0, ATTR_MAX);
269 while (fgets(buf, ATTR_MAX, fp)) {
270 if (!strncmp(buf, "virtfs.uid", 10)) {
e3187a45 271 uid = atoi(buf + 11);
2c30dd74 272 } else if (!strncmp(buf, "virtfs.gid", 10)) {
e3187a45 273 gid = atoi(buf + 11);
2c30dd74 274 } else if (!strncmp(buf, "virtfs.mode", 11)) {
e3187a45 275 mode = atoi(buf + 12);
2c30dd74 276 } else if (!strncmp(buf, "virtfs.rdev", 11)) {
e3187a45 277 rdev = atoi(buf + 12);
2c30dd74
AK
278 }
279 memset(buf, 0, ATTR_MAX);
280 }
281 fclose(fp);
2c30dd74
AK
282
283update_map_file:
81ffbf5a
GK
284 if (is_root) {
285 fp = local_fopenat(dirfd, VIRTFS_META_ROOT_FILE, "w");
286 } else {
287 fp = local_fopenat(map_dirfd, name, "w");
288 /* We can't go this far with map_dirfd not being a valid file descriptor
289 * but some versions of gcc aren't smart enough to see it.
290 */
291 if (map_dirfd != -1) {
292 close_preserve_errno(map_dirfd);
293 }
294 }
2c30dd74 295 if (!fp) {
e3187a45 296 return -1;
2c30dd74
AK
297 }
298
81ffbf5a
GK
299 map_fd = fileno(fp);
300 assert(map_fd != -1);
301 ret = fchmod(map_fd, 0600);
302 assert(ret == 0);
303
2c30dd74
AK
304 if (credp->fc_uid != -1) {
305 uid = credp->fc_uid;
306 }
307 if (credp->fc_gid != -1) {
308 gid = credp->fc_gid;
309 }
310 if (credp->fc_mode != -1) {
311 mode = credp->fc_mode;
312 }
313 if (credp->fc_rdev != -1) {
314 rdev = credp->fc_rdev;
315 }
316
2c30dd74
AK
317 if (uid != -1) {
318 fprintf(fp, "virtfs.uid=%d\n", uid);
319 }
320 if (gid != -1) {
321 fprintf(fp, "virtfs.gid=%d\n", gid);
322 }
323 if (mode != -1) {
324 fprintf(fp, "virtfs.mode=%d\n", mode);
325 }
326 if (rdev != -1) {
327 fprintf(fp, "virtfs.rdev=%d\n", rdev);
328 }
329 fclose(fp);
330
e3187a45
GK
331 return 0;
332}
333
334static int fchmodat_nofollow(int dirfd, const char *name, mode_t mode)
335{
336 int fd, ret;
337
338 /* FIXME: this should be handled with fchmodat(AT_SYMLINK_NOFOLLOW).
339 * Unfortunately, the linux kernel doesn't implement it yet. As an
340 * alternative, let's open the file and use fchmod() instead. This
341 * may fail depending on the permissions of the file, but it is the
342 * best we can do to avoid TOCTTOU. We first try to open read-only
343 * in case name points to a directory. If that fails, we try write-only
344 * in case name doesn't point to a directory.
345 */
346 fd = openat_file(dirfd, name, O_RDONLY, 0);
347 if (fd == -1) {
348 /* In case the file is writable-only and isn't a directory. */
349 if (errno == EACCES) {
350 fd = openat_file(dirfd, name, O_WRONLY, 0);
351 }
352 if (fd == -1 && errno == EISDIR) {
353 errno = EACCES;
354 }
355 }
356 if (fd == -1) {
357 return -1;
358 }
359 ret = fchmod(fd, mode);
360 close_preserve_errno(fd);
2c30dd74
AK
361 return ret;
362}
363
e3187a45 364static int local_set_xattrat(int dirfd, const char *path, FsCred *credp)
131dcb25 365{
758e8e38 366 int err;
2289be19 367
758e8e38 368 if (credp->fc_uid != -1) {
f8ad4a89 369 uint32_t tmp_uid = cpu_to_le32(credp->fc_uid);
e3187a45
GK
370 err = fsetxattrat_nofollow(dirfd, path, "user.virtfs.uid", &tmp_uid,
371 sizeof(uid_t), 0);
758e8e38
VJ
372 if (err) {
373 return err;
374 }
131dcb25 375 }
758e8e38 376 if (credp->fc_gid != -1) {
f8ad4a89 377 uint32_t tmp_gid = cpu_to_le32(credp->fc_gid);
e3187a45
GK
378 err = fsetxattrat_nofollow(dirfd, path, "user.virtfs.gid", &tmp_gid,
379 sizeof(gid_t), 0);
758e8e38
VJ
380 if (err) {
381 return err;
382 }
131dcb25 383 }
758e8e38 384 if (credp->fc_mode != -1) {
f8ad4a89 385 uint32_t tmp_mode = cpu_to_le32(credp->fc_mode);
e3187a45
GK
386 err = fsetxattrat_nofollow(dirfd, path, "user.virtfs.mode", &tmp_mode,
387 sizeof(mode_t), 0);
758e8e38
VJ
388 if (err) {
389 return err;
390 }
131dcb25 391 }
758e8e38 392 if (credp->fc_rdev != -1) {
f8ad4a89 393 uint64_t tmp_rdev = cpu_to_le64(credp->fc_rdev);
e3187a45
GK
394 err = fsetxattrat_nofollow(dirfd, path, "user.virtfs.rdev", &tmp_rdev,
395 sizeof(dev_t), 0);
758e8e38
VJ
396 if (err) {
397 return err;
398 }
131dcb25 399 }
131dcb25
AL
400 return 0;
401}
402
d815e721
GK
403static int local_set_cred_passthrough(FsContext *fs_ctx, int dirfd,
404 const char *name, FsCred *credp)
4750a96f 405{
d815e721 406 if (fchownat(dirfd, name, credp->fc_uid, credp->fc_gid,
b314f6a0 407 AT_SYMLINK_NOFOLLOW) < 0) {
12848bfc
AK
408 /*
409 * If we fail to change ownership and if we are
410 * using security model none. Ignore the error
411 */
b97400ca 412 if ((fs_ctx->export_flags & V9FS_SEC_MASK) != V9FS_SM_NONE) {
d815e721 413 return -1;
12848bfc 414 }
4750a96f 415 }
2d40564a 416
d815e721 417 return fchmodat_nofollow(dirfd, name, credp->fc_mode & 07777);
4750a96f
VJ
418}
419
2289be19
AK
420static ssize_t local_readlink(FsContext *fs_ctx, V9fsPath *fs_path,
421 char *buf, size_t bufsz)
131dcb25 422{
879c2813 423 ssize_t tsize = -1;
2289be19 424
2c30dd74
AK
425 if ((fs_ctx->export_flags & V9FS_SM_MAPPED) ||
426 (fs_ctx->export_flags & V9FS_SM_MAPPED_FILE)) {
879c2813 427 int fd;
bec1e954
GK
428
429 fd = local_open_nofollow(fs_ctx, fs_path->data, O_RDONLY, 0);
879c2813
VJ
430 if (fd == -1) {
431 return -1;
432 }
433 do {
434 tsize = read(fd, (void *)buf, bufsz);
435 } while (tsize == -1 && errno == EINTR);
bec1e954 436 close_preserve_errno(fd);
b97400ca
AK
437 } else if ((fs_ctx->export_flags & V9FS_SM_PASSTHROUGH) ||
438 (fs_ctx->export_flags & V9FS_SM_NONE)) {
bec1e954
GK
439 char *dirpath = g_path_get_dirname(fs_path->data);
440 char *name = g_path_get_basename(fs_path->data);
441 int dirfd;
442
443 dirfd = local_opendir_nofollow(fs_ctx, dirpath);
444 if (dirfd == -1) {
445 goto out;
446 }
447
448 tsize = readlinkat(dirfd, name, buf, bufsz);
449 close_preserve_errno(dirfd);
450 out:
451 g_free(name);
452 g_free(dirpath);
879c2813
VJ
453 }
454 return tsize;
131dcb25
AL
455}
456
cc720ddb 457static int local_close(FsContext *ctx, V9fsFidOpenState *fs)
131dcb25 458{
cc720ddb 459 return close(fs->fd);
131dcb25
AL
460}
461
cc720ddb 462static int local_closedir(FsContext *ctx, V9fsFidOpenState *fs)
131dcb25 463{
f314ea4e 464 return closedir(fs->dir.stream);
131dcb25 465}
9f107513 466
cc720ddb
AK
467static int local_open(FsContext *ctx, V9fsPath *fs_path,
468 int flags, V9fsFidOpenState *fs)
a6568fe2 469{
21328e1e 470 int fd;
2289be19 471
996a0d76 472 fd = local_open_nofollow(ctx, fs_path->data, flags, 0);
21328e1e
GK
473 if (fd == -1) {
474 return -1;
475 }
476 fs->fd = fd;
cc720ddb 477 return fs->fd;
a6568fe2
AL
478}
479
cc720ddb
AK
480static int local_opendir(FsContext *ctx,
481 V9fsPath *fs_path, V9fsFidOpenState *fs)
a6568fe2 482{
996a0d76 483 int dirfd;
21328e1e 484 DIR *stream;
2289be19 485
996a0d76
GK
486 dirfd = local_opendir_nofollow(ctx, fs_path->data);
487 if (dirfd == -1) {
488 return -1;
489 }
2289be19 490
996a0d76 491 stream = fdopendir(dirfd);
21328e1e 492 if (!stream) {
faab207f 493 close(dirfd);
cc720ddb
AK
494 return -1;
495 }
21328e1e 496 fs->dir.stream = stream;
cc720ddb 497 return 0;
a6568fe2
AL
498}
499
cc720ddb 500static void local_rewinddir(FsContext *ctx, V9fsFidOpenState *fs)
a9231555 501{
f314ea4e 502 rewinddir(fs->dir.stream);
a9231555
AL
503}
504
cc720ddb 505static off_t local_telldir(FsContext *ctx, V9fsFidOpenState *fs)
a9231555 506{
f314ea4e 507 return telldir(fs->dir.stream);
a9231555
AL
508}
509
7a95434e
GK
510static bool local_is_mapped_file_metadata(FsContext *fs_ctx, const char *name)
511{
81ffbf5a
GK
512 return
513 !strcmp(name, VIRTFS_META_DIR) || !strcmp(name, VIRTFS_META_ROOT_FILE);
7a95434e
GK
514}
515
635324e8 516static struct dirent *local_readdir(FsContext *ctx, V9fsFidOpenState *fs)
a9231555 517{
635324e8 518 struct dirent *entry;
2c30dd74
AK
519
520again:
635324e8
GK
521 entry = readdir(fs->dir.stream);
522 if (!entry) {
523 return NULL;
524 }
525
840a1bf2
BB
526 if (ctx->export_flags & V9FS_SM_MAPPED) {
527 entry->d_type = DT_UNKNOWN;
528 } else if (ctx->export_flags & V9FS_SM_MAPPED_FILE) {
7a95434e 529 if (local_is_mapped_file_metadata(ctx, entry->d_name)) {
81ffbf5a 530 /* skip the meta data */
2c30dd74
AK
531 goto again;
532 }
840a1bf2 533 entry->d_type = DT_UNKNOWN;
2c30dd74 534 }
635324e8
GK
535
536 return entry;
a9231555
AL
537}
538
cc720ddb 539static void local_seekdir(FsContext *ctx, V9fsFidOpenState *fs, off_t off)
a9231555 540{
f314ea4e 541 seekdir(fs->dir.stream, off);
a9231555
AL
542}
543
cc720ddb
AK
544static ssize_t local_preadv(FsContext *ctx, V9fsFidOpenState *fs,
545 const struct iovec *iov,
56d15a53 546 int iovcnt, off_t offset)
a9231555 547{
56d15a53 548#ifdef CONFIG_PREADV
cc720ddb 549 return preadv(fs->fd, iov, iovcnt, offset);
56d15a53 550#else
cc720ddb 551 int err = lseek(fs->fd, offset, SEEK_SET);
56d15a53
SG
552 if (err == -1) {
553 return err;
554 } else {
cc720ddb 555 return readv(fs->fd, iov, iovcnt);
56d15a53
SG
556 }
557#endif
a9231555
AL
558}
559
cc720ddb
AK
560static ssize_t local_pwritev(FsContext *ctx, V9fsFidOpenState *fs,
561 const struct iovec *iov,
2289be19 562 int iovcnt, off_t offset)
8449360c 563{
6fe76acc 564 ssize_t ret;
56d15a53 565#ifdef CONFIG_PREADV
cc720ddb 566 ret = pwritev(fs->fd, iov, iovcnt, offset);
56d15a53 567#else
cc720ddb 568 int err = lseek(fs->fd, offset, SEEK_SET);
56d15a53
SG
569 if (err == -1) {
570 return err;
571 } else {
cc720ddb 572 ret = writev(fs->fd, iov, iovcnt);
56d15a53
SG
573 }
574#endif
d3ab98e6
AK
575#ifdef CONFIG_SYNC_FILE_RANGE
576 if (ret > 0 && ctx->export_flags & V9FS_IMMEDIATE_WRITEOUT) {
577 /*
578 * Initiate a writeback. This is not a data integrity sync.
579 * We want to ensure that we don't leave dirty pages in the cache
580 * after write when writeout=immediate is sepcified.
581 */
cc720ddb 582 sync_file_range(fs->fd, offset, ret,
d3ab98e6
AK
583 SYNC_FILE_RANGE_WAIT_BEFORE | SYNC_FILE_RANGE_WRITE);
584 }
585#endif
586 return ret;
8449360c
AL
587}
588
2289be19 589static int local_chmod(FsContext *fs_ctx, V9fsPath *fs_path, FsCred *credp)
c494dd6f 590{
e3187a45
GK
591 char *dirpath = g_path_get_dirname(fs_path->data);
592 char *name = g_path_get_basename(fs_path->data);
4fa4ce71 593 int ret = -1;
e3187a45
GK
594 int dirfd;
595
596 dirfd = local_opendir_nofollow(fs_ctx, dirpath);
597 if (dirfd == -1) {
598 goto out;
599 }
2289be19 600
b97400ca 601 if (fs_ctx->export_flags & V9FS_SM_MAPPED) {
e3187a45 602 ret = local_set_xattrat(dirfd, name, credp);
2c30dd74 603 } else if (fs_ctx->export_flags & V9FS_SM_MAPPED_FILE) {
e3187a45
GK
604 ret = local_set_mapped_file_attrat(dirfd, name, credp);
605 } else if (fs_ctx->export_flags & V9FS_SM_PASSTHROUGH ||
606 fs_ctx->export_flags & V9FS_SM_NONE) {
607 ret = fchmodat_nofollow(dirfd, name, credp->fc_mode);
e95ead32 608 }
e3187a45
GK
609 close_preserve_errno(dirfd);
610
611out:
612 g_free(dirpath);
613 g_free(name);
4fa4ce71 614 return ret;
c494dd6f
AL
615}
616
2289be19
AK
617static int local_mknod(FsContext *fs_ctx, V9fsPath *dir_path,
618 const char *name, FsCred *credp)
c494dd6f 619{
1c293312 620 int err = -1;
d815e721 621 int dirfd;
1c293312 622
7a95434e
GK
623 if (fs_ctx->export_flags & V9FS_SM_MAPPED_FILE &&
624 local_is_mapped_file_metadata(fs_ctx, name)) {
625 errno = EINVAL;
626 return -1;
627 }
628
d815e721
GK
629 dirfd = local_opendir_nofollow(fs_ctx, dir_path->data);
630 if (dirfd == -1) {
631 return -1;
632 }
2289be19 633
d815e721
GK
634 if (fs_ctx->export_flags & V9FS_SM_MAPPED ||
635 fs_ctx->export_flags & V9FS_SM_MAPPED_FILE) {
636 err = mknodat(dirfd, name, SM_LOCAL_MODE_BITS | S_IFREG, 0);
1c293312 637 if (err == -1) {
2289be19 638 goto out;
1c293312 639 }
2c30dd74 640
d815e721
GK
641 if (fs_ctx->export_flags & V9FS_SM_MAPPED) {
642 err = local_set_xattrat(dirfd, name, credp);
643 } else {
644 err = local_set_mapped_file_attrat(dirfd, name, credp);
2c30dd74 645 }
2c30dd74 646 if (err == -1) {
2c30dd74
AK
647 goto err_end;
648 }
d815e721
GK
649 } else if (fs_ctx->export_flags & V9FS_SM_PASSTHROUGH ||
650 fs_ctx->export_flags & V9FS_SM_NONE) {
651 err = mknodat(dirfd, name, credp->fc_mode, credp->fc_rdev);
1c293312 652 if (err == -1) {
2289be19 653 goto out;
1c293312 654 }
d815e721 655 err = local_set_cred_passthrough(fs_ctx, dirfd, name, credp);
1c293312 656 if (err == -1) {
1c293312
VJ
657 goto err_end;
658 }
659 }
2289be19 660 goto out;
1c293312
VJ
661
662err_end:
d815e721 663 unlinkat_preserve_errno(dirfd, name, 0);
2289be19 664out:
d815e721 665 close_preserve_errno(dirfd);
1c293312 666 return err;
c494dd6f
AL
667}
668
2289be19
AK
669static int local_mkdir(FsContext *fs_ctx, V9fsPath *dir_path,
670 const char *name, FsCred *credp)
c494dd6f 671{
00ec5c37 672 int err = -1;
3f3a1699 673 int dirfd;
00ec5c37 674
7a95434e
GK
675 if (fs_ctx->export_flags & V9FS_SM_MAPPED_FILE &&
676 local_is_mapped_file_metadata(fs_ctx, name)) {
677 errno = EINVAL;
678 return -1;
679 }
680
3f3a1699
GK
681 dirfd = local_opendir_nofollow(fs_ctx, dir_path->data);
682 if (dirfd == -1) {
683 return -1;
684 }
2289be19 685
3f3a1699
GK
686 if (fs_ctx->export_flags & V9FS_SM_MAPPED ||
687 fs_ctx->export_flags & V9FS_SM_MAPPED_FILE) {
688 err = mkdirat(dirfd, name, SM_LOCAL_DIR_MODE_BITS);
00ec5c37 689 if (err == -1) {
2289be19 690 goto out;
00ec5c37 691 }
3f3a1699
GK
692 credp->fc_mode = credp->fc_mode | S_IFDIR;
693
694 if (fs_ctx->export_flags & V9FS_SM_MAPPED) {
695 err = local_set_xattrat(dirfd, name, credp);
696 } else {
697 err = local_set_mapped_file_attrat(dirfd, name, credp);
2c30dd74 698 }
2c30dd74 699 if (err == -1) {
2c30dd74
AK
700 goto err_end;
701 }
3f3a1699
GK
702 } else if (fs_ctx->export_flags & V9FS_SM_PASSTHROUGH ||
703 fs_ctx->export_flags & V9FS_SM_NONE) {
704 err = mkdirat(dirfd, name, credp->fc_mode);
00ec5c37 705 if (err == -1) {
2289be19 706 goto out;
00ec5c37 707 }
3f3a1699 708 err = local_set_cred_passthrough(fs_ctx, dirfd, name, credp);
00ec5c37 709 if (err == -1) {
00ec5c37
VJ
710 goto err_end;
711 }
712 }
2289be19 713 goto out;
00ec5c37
VJ
714
715err_end:
3f3a1699 716 unlinkat_preserve_errno(dirfd, name, AT_REMOVEDIR);
2289be19 717out:
3f3a1699 718 close_preserve_errno(dirfd);
00ec5c37 719 return err;
c494dd6f
AL
720}
721
8b888272 722static int local_fstat(FsContext *fs_ctx, int fid_type,
cc720ddb 723 V9fsFidOpenState *fs, struct stat *stbuf)
c494dd6f 724{
8b888272
AK
725 int err, fd;
726
727 if (fid_type == P9_FID_DIR) {
f314ea4e 728 fd = dirfd(fs->dir.stream);
8b888272
AK
729 } else {
730 fd = fs->fd;
731 }
732
733 err = fstat(fd, stbuf);
1237ad76
VJ
734 if (err) {
735 return err;
736 }
b97400ca 737 if (fs_ctx->export_flags & V9FS_SM_MAPPED) {
1237ad76
VJ
738 /* Actual credentials are part of extended attrs */
739 uid_t tmp_uid;
740 gid_t tmp_gid;
741 mode_t tmp_mode;
742 dev_t tmp_dev;
743
f8ad4a89
AK
744 if (fgetxattr(fd, "user.virtfs.uid", &tmp_uid, sizeof(uid_t)) > 0) {
745 stbuf->st_uid = le32_to_cpu(tmp_uid);
1237ad76 746 }
f8ad4a89
AK
747 if (fgetxattr(fd, "user.virtfs.gid", &tmp_gid, sizeof(gid_t)) > 0) {
748 stbuf->st_gid = le32_to_cpu(tmp_gid);
1237ad76 749 }
f8ad4a89
AK
750 if (fgetxattr(fd, "user.virtfs.mode", &tmp_mode, sizeof(mode_t)) > 0) {
751 stbuf->st_mode = le32_to_cpu(tmp_mode);
1237ad76 752 }
f8ad4a89
AK
753 if (fgetxattr(fd, "user.virtfs.rdev", &tmp_dev, sizeof(dev_t)) > 0) {
754 stbuf->st_rdev = le64_to_cpu(tmp_dev);
1237ad76 755 }
2c30dd74
AK
756 } else if (fs_ctx->export_flags & V9FS_SM_MAPPED_FILE) {
757 errno = EOPNOTSUPP;
758 return -1;
1237ad76
VJ
759 }
760 return err;
c494dd6f
AL
761}
762
2289be19 763static int local_open2(FsContext *fs_ctx, V9fsPath *dir_path, const char *name,
cc720ddb 764 int flags, FsCred *credp, V9fsFidOpenState *fs)
c494dd6f 765{
4750a96f
VJ
766 int fd = -1;
767 int err = -1;
a565fea5 768 int dirfd;
4750a96f 769
7a95434e
GK
770 if (fs_ctx->export_flags & V9FS_SM_MAPPED_FILE &&
771 local_is_mapped_file_metadata(fs_ctx, name)) {
772 errno = EINVAL;
773 return -1;
774 }
775
0ceb092e
AK
776 /*
777 * Mark all the open to not follow symlinks
778 */
779 flags |= O_NOFOLLOW;
780
a565fea5
GK
781 dirfd = local_opendir_nofollow(fs_ctx, dir_path->data);
782 if (dirfd == -1) {
783 return -1;
784 }
2289be19 785
4750a96f 786 /* Determine the security model */
a565fea5
GK
787 if (fs_ctx->export_flags & V9FS_SM_MAPPED ||
788 fs_ctx->export_flags & V9FS_SM_MAPPED_FILE) {
789 fd = openat_file(dirfd, name, flags, SM_LOCAL_MODE_BITS);
4750a96f 790 if (fd == -1) {
2289be19 791 goto out;
4750a96f
VJ
792 }
793 credp->fc_mode = credp->fc_mode|S_IFREG;
a565fea5
GK
794 if (fs_ctx->export_flags & V9FS_SM_MAPPED) {
795 /* Set cleint credentials in xattr */
796 err = local_set_xattrat(dirfd, name, credp);
797 } else {
798 err = local_set_mapped_file_attrat(dirfd, name, credp);
2c30dd74 799 }
2c30dd74 800 if (err == -1) {
2c30dd74
AK
801 goto err_end;
802 }
b97400ca
AK
803 } else if ((fs_ctx->export_flags & V9FS_SM_PASSTHROUGH) ||
804 (fs_ctx->export_flags & V9FS_SM_NONE)) {
a565fea5 805 fd = openat_file(dirfd, name, flags, credp->fc_mode);
4750a96f 806 if (fd == -1) {
2289be19 807 goto out;
4750a96f 808 }
a565fea5 809 err = local_set_cred_passthrough(fs_ctx, dirfd, name, credp);
4750a96f 810 if (err == -1) {
4750a96f
VJ
811 goto err_end;
812 }
813 }
2289be19 814 err = fd;
cc720ddb 815 fs->fd = fd;
2289be19 816 goto out;
4750a96f
VJ
817
818err_end:
a565fea5
GK
819 unlinkat_preserve_errno(dirfd, name,
820 flags & O_DIRECTORY ? AT_REMOVEDIR : 0);
821 close_preserve_errno(fd);
2289be19 822out:
a565fea5 823 close_preserve_errno(dirfd);
4750a96f 824 return err;
c494dd6f
AL
825}
826
758e8e38 827
879c2813 828static int local_symlink(FsContext *fs_ctx, const char *oldpath,
2289be19 829 V9fsPath *dir_path, const char *name, FsCred *credp)
c494dd6f 830{
879c2813 831 int err = -1;
38771613 832 int dirfd;
879c2813 833
7a95434e
GK
834 if (fs_ctx->export_flags & V9FS_SM_MAPPED_FILE &&
835 local_is_mapped_file_metadata(fs_ctx, name)) {
836 errno = EINVAL;
837 return -1;
838 }
839
38771613
GK
840 dirfd = local_opendir_nofollow(fs_ctx, dir_path->data);
841 if (dirfd == -1) {
842 return -1;
843 }
2289be19 844
879c2813 845 /* Determine the security model */
38771613
GK
846 if (fs_ctx->export_flags & V9FS_SM_MAPPED ||
847 fs_ctx->export_flags & V9FS_SM_MAPPED_FILE) {
879c2813
VJ
848 int fd;
849 ssize_t oldpath_size, write_size;
38771613
GK
850
851 fd = openat_file(dirfd, name, O_CREAT | O_EXCL | O_RDWR,
852 SM_LOCAL_MODE_BITS);
879c2813 853 if (fd == -1) {
2289be19 854 goto out;
879c2813
VJ
855 }
856 /* Write the oldpath (target) to the file. */
f35bde2f 857 oldpath_size = strlen(oldpath);
879c2813
VJ
858 do {
859 write_size = write(fd, (void *)oldpath, oldpath_size);
860 } while (write_size == -1 && errno == EINTR);
38771613 861 close_preserve_errno(fd);
879c2813
VJ
862
863 if (write_size != oldpath_size) {
879c2813
VJ
864 goto err_end;
865 }
879c2813 866 /* Set cleint credentials in symlink's xattr */
38771613 867 credp->fc_mode = credp->fc_mode | S_IFLNK;
2c30dd74 868
38771613
GK
869 if (fs_ctx->export_flags & V9FS_SM_MAPPED) {
870 err = local_set_xattrat(dirfd, name, credp);
871 } else {
872 err = local_set_mapped_file_attrat(dirfd, name, credp);
2c30dd74 873 }
2c30dd74 874 if (err == -1) {
2c30dd74
AK
875 goto err_end;
876 }
38771613
GK
877 } else if (fs_ctx->export_flags & V9FS_SM_PASSTHROUGH ||
878 fs_ctx->export_flags & V9FS_SM_NONE) {
879 err = symlinkat(oldpath, dirfd, name);
879c2813 880 if (err) {
2289be19 881 goto out;
879c2813 882 }
38771613
GK
883 err = fchownat(dirfd, name, credp->fc_uid, credp->fc_gid,
884 AT_SYMLINK_NOFOLLOW);
879c2813 885 if (err == -1) {
12848bfc
AK
886 /*
887 * If we fail to change ownership and if we are
888 * using security model none. Ignore the error
889 */
b97400ca 890 if ((fs_ctx->export_flags & V9FS_SEC_MASK) != V9FS_SM_NONE) {
12848bfc 891 goto err_end;
38771613 892 } else {
12848bfc 893 err = 0;
38771613 894 }
879c2813
VJ
895 }
896 }
2289be19 897 goto out;
879c2813
VJ
898
899err_end:
38771613 900 unlinkat_preserve_errno(dirfd, name, 0);
2289be19 901out:
38771613 902 close_preserve_errno(dirfd);
879c2813 903 return err;
c494dd6f
AL
904}
905
2289be19
AK
906static int local_link(FsContext *ctx, V9fsPath *oldpath,
907 V9fsPath *dirpath, const char *name)
c494dd6f 908{
ad0b46e6
GK
909 char *odirpath = g_path_get_dirname(oldpath->data);
910 char *oname = g_path_get_basename(oldpath->data);
911 int ret = -1;
912 int odirfd, ndirfd;
913
7a95434e
GK
914 if (ctx->export_flags & V9FS_SM_MAPPED_FILE &&
915 local_is_mapped_file_metadata(ctx, name)) {
916 errno = EINVAL;
917 return -1;
918 }
919
ad0b46e6
GK
920 odirfd = local_opendir_nofollow(ctx, odirpath);
921 if (odirfd == -1) {
922 goto out;
923 }
c494dd6f 924
ad0b46e6
GK
925 ndirfd = local_opendir_nofollow(ctx, dirpath->data);
926 if (ndirfd == -1) {
927 close_preserve_errno(odirfd);
928 goto out;
929 }
2289be19 930
ad0b46e6 931 ret = linkat(odirfd, oname, ndirfd, name, 0);
6dd4b1f1 932 if (ret < 0) {
ad0b46e6 933 goto out_close;
6dd4b1f1 934 }
2c30dd74
AK
935
936 /* now link the virtfs_metadata files */
6dd4b1f1 937 if (ctx->export_flags & V9FS_SM_MAPPED_FILE) {
ad0b46e6
GK
938 int omap_dirfd, nmap_dirfd;
939
940 ret = mkdirat(ndirfd, VIRTFS_META_DIR, 0700);
941 if (ret < 0 && errno != EEXIST) {
942 goto err_undo_link;
2c30dd74 943 }
ad0b46e6
GK
944
945 omap_dirfd = openat_dir(odirfd, VIRTFS_META_DIR);
946 if (omap_dirfd == -1) {
947 goto err;
948 }
949
950 nmap_dirfd = openat_dir(ndirfd, VIRTFS_META_DIR);
951 if (nmap_dirfd == -1) {
952 close_preserve_errno(omap_dirfd);
953 goto err;
954 }
955
956 ret = linkat(omap_dirfd, oname, nmap_dirfd, name, 0);
957 close_preserve_errno(nmap_dirfd);
958 close_preserve_errno(omap_dirfd);
2c30dd74 959 if (ret < 0 && errno != ENOENT) {
ad0b46e6 960 goto err_undo_link;
2c30dd74 961 }
c494dd6f 962
ad0b46e6 963 ret = 0;
2c30dd74 964 }
ad0b46e6 965 goto out_close;
2289be19 966
ad0b46e6
GK
967err:
968 ret = -1;
969err_undo_link:
970 unlinkat_preserve_errno(ndirfd, name, 0);
971out_close:
972 close_preserve_errno(ndirfd);
973 close_preserve_errno(odirfd);
6dd4b1f1 974out:
ad0b46e6
GK
975 g_free(oname);
976 g_free(odirpath);
4fa4ce71 977 return ret;
8cf89e00
AL
978}
979
2289be19 980static int local_truncate(FsContext *ctx, V9fsPath *fs_path, off_t size)
8cf89e00 981{
ac125d99 982 int fd, ret;
8cf89e00 983
ac125d99
GK
984 fd = local_open_nofollow(ctx, fs_path->data, O_WRONLY, 0);
985 if (fd == -1) {
986 return -1;
2c30dd74 987 }
ac125d99
GK
988 ret = ftruncate(fd, size);
989 close_preserve_errno(fd);
4fa4ce71 990 return ret;
8cf89e00
AL
991}
992
2289be19 993static int local_chown(FsContext *fs_ctx, V9fsPath *fs_path, FsCred *credp)
8cf89e00 994{
d369f207
GK
995 char *dirpath = g_path_get_dirname(fs_path->data);
996 char *name = g_path_get_basename(fs_path->data);
4fa4ce71 997 int ret = -1;
d369f207
GK
998 int dirfd;
999
1000 dirfd = local_opendir_nofollow(fs_ctx, dirpath);
1001 if (dirfd == -1) {
1002 goto out;
1003 }
2289be19 1004
c79ce737 1005 if ((credp->fc_uid == -1 && credp->fc_gid == -1) ||
17b1971f
AK
1006 (fs_ctx->export_flags & V9FS_SM_PASSTHROUGH) ||
1007 (fs_ctx->export_flags & V9FS_SM_NONE)) {
d369f207
GK
1008 ret = fchownat(dirfd, name, credp->fc_uid, credp->fc_gid,
1009 AT_SYMLINK_NOFOLLOW);
b97400ca 1010 } else if (fs_ctx->export_flags & V9FS_SM_MAPPED) {
d369f207 1011 ret = local_set_xattrat(dirfd, name, credp);
2c30dd74 1012 } else if (fs_ctx->export_flags & V9FS_SM_MAPPED_FILE) {
d369f207 1013 ret = local_set_mapped_file_attrat(dirfd, name, credp);
f7613bee 1014 }
d369f207
GK
1015
1016 close_preserve_errno(dirfd);
1017out:
1018 g_free(name);
1019 g_free(dirpath);
4fa4ce71 1020 return ret;
8cf89e00
AL
1021}
1022
2289be19 1023static int local_utimensat(FsContext *s, V9fsPath *fs_path,
38671423 1024 const struct timespec *buf)
8cf89e00 1025{
a33eda0d
GK
1026 char *dirpath = g_path_get_dirname(fs_path->data);
1027 char *name = g_path_get_basename(fs_path->data);
1028 int dirfd, ret = -1;
2289be19 1029
a33eda0d
GK
1030 dirfd = local_opendir_nofollow(s, dirpath);
1031 if (dirfd == -1) {
1032 goto out;
1033 }
2289be19 1034
a33eda0d
GK
1035 ret = utimensat(dirfd, name, buf, AT_SYMLINK_NOFOLLOW);
1036 close_preserve_errno(dirfd);
1037out:
1038 g_free(dirpath);
1039 g_free(name);
4fa4ce71 1040 return ret;
8cf89e00
AL
1041}
1042
df4938a6
GK
1043static int local_unlinkat_common(FsContext *ctx, int dirfd, const char *name,
1044 int flags)
5bae1900 1045{
df4938a6 1046 int ret = -1;
2c30dd74
AK
1047
1048 if (ctx->export_flags & V9FS_SM_MAPPED_FILE) {
df4938a6
GK
1049 int map_dirfd;
1050
6a87e792
GK
1051 /* We need to remove the metadata as well:
1052 * - the metadata directory if we're removing a directory
1053 * - the metadata file in the parent's metadata directory
1054 *
1055 * If any of these are missing (ie, ENOENT) then we're probably
1056 * trying to remove something that wasn't created in mapped-file
1057 * mode. We just ignore the error.
1058 */
df4938a6
GK
1059 if (flags == AT_REMOVEDIR) {
1060 int fd;
1061
b003fc0d 1062 fd = openat_dir(dirfd, name);
df4938a6
GK
1063 if (fd == -1) {
1064 goto err_out;
1065 }
df4938a6
GK
1066 ret = unlinkat(fd, VIRTFS_META_DIR, AT_REMOVEDIR);
1067 close_preserve_errno(fd);
1068 if (ret < 0 && errno != ENOENT) {
2c30dd74
AK
1069 goto err_out;
1070 }
1071 }
df4938a6 1072 map_dirfd = openat_dir(dirfd, VIRTFS_META_DIR);
6a87e792
GK
1073 if (map_dirfd != -1) {
1074 ret = unlinkat(map_dirfd, name, 0);
1075 close_preserve_errno(map_dirfd);
1076 if (ret < 0 && errno != ENOENT) {
1077 goto err_out;
1078 }
1079 } else if (errno != ENOENT) {
2c30dd74
AK
1080 goto err_out;
1081 }
1082 }
4fa4ce71 1083
df4938a6
GK
1084 ret = unlinkat(dirfd, name, flags);
1085err_out:
1086 return ret;
1087}
1088
5bae1900
AL
1089static int local_remove(FsContext *ctx, const char *path)
1090{
2c30dd74 1091 struct stat stbuf;
a0e640a8
GK
1092 char *dirpath = g_path_get_dirname(path);
1093 char *name = g_path_get_basename(path);
1094 int flags = 0;
1095 int dirfd;
1096 int err = -1;
2c30dd74 1097
a0e640a8 1098 dirfd = local_opendir_nofollow(ctx, dirpath);
b7361d46 1099 if (dirfd == -1) {
a0e640a8 1100 goto out;
2c30dd74 1101 }
4fa4ce71 1102
a0e640a8
GK
1103 if (fstatat(dirfd, path, &stbuf, AT_SYMLINK_NOFOLLOW) < 0) {
1104 goto err_out;
1105 }
1106
1107 if (S_ISDIR(stbuf.st_mode)) {
1108 flags |= AT_REMOVEDIR;
1109 }
1110
1111 err = local_unlinkat_common(ctx, dirfd, name, flags);
2c30dd74 1112err_out:
a0e640a8
GK
1113 close_preserve_errno(dirfd);
1114out:
1115 g_free(name);
1116 g_free(dirpath);
2c30dd74 1117 return err;
5bae1900
AL
1118}
1119
8b888272
AK
1120static int local_fsync(FsContext *ctx, int fid_type,
1121 V9fsFidOpenState *fs, int datasync)
8cf89e00 1122{
8b888272
AK
1123 int fd;
1124
1125 if (fid_type == P9_FID_DIR) {
f314ea4e 1126 fd = dirfd(fs->dir.stream);
8b888272
AK
1127 } else {
1128 fd = fs->fd;
1129 }
1130
49594973 1131 if (datasync) {
8b888272 1132 return qemu_fdatasync(fd);
49594973 1133 } else {
8b888272 1134 return fsync(fd);
49594973 1135 }
8cf89e00
AL
1136}
1137
2289be19 1138static int local_statfs(FsContext *s, V9fsPath *fs_path, struct statfs *stbuf)
be940c87 1139{
31e51d1c 1140 int fd, ret;
2289be19 1141
31e51d1c 1142 fd = local_open_nofollow(s, fs_path->data, O_RDONLY, 0);
23da0145
GK
1143 if (fd == -1) {
1144 return -1;
1145 }
31e51d1c
GK
1146 ret = fstatfs(fd, stbuf);
1147 close_preserve_errno(fd);
4fa4ce71 1148 return ret;
be940c87
MK
1149}
1150
2289be19 1151static ssize_t local_lgetxattr(FsContext *ctx, V9fsPath *fs_path,
fa32ef88
AK
1152 const char *name, void *value, size_t size)
1153{
2289be19
AK
1154 char *path = fs_path->data;
1155
fc22118d 1156 return v9fs_get_xattr(ctx, path, name, value, size);
fa32ef88
AK
1157}
1158
2289be19 1159static ssize_t local_llistxattr(FsContext *ctx, V9fsPath *fs_path,
fa32ef88
AK
1160 void *value, size_t size)
1161{
2289be19
AK
1162 char *path = fs_path->data;
1163
fc22118d 1164 return v9fs_list_xattr(ctx, path, value, size);
fa32ef88
AK
1165}
1166
2289be19 1167static int local_lsetxattr(FsContext *ctx, V9fsPath *fs_path, const char *name,
10b468bd
AK
1168 void *value, size_t size, int flags)
1169{
2289be19
AK
1170 char *path = fs_path->data;
1171
fc22118d 1172 return v9fs_set_xattr(ctx, path, name, value, size, flags);
10b468bd
AK
1173}
1174
2289be19
AK
1175static int local_lremovexattr(FsContext *ctx, V9fsPath *fs_path,
1176 const char *name)
9ed3ef26 1177{
2289be19
AK
1178 char *path = fs_path->data;
1179
fc22118d 1180 return v9fs_remove_xattr(ctx, path, name);
9ed3ef26
AK
1181}
1182
2289be19
AK
1183static int local_name_to_path(FsContext *ctx, V9fsPath *dir_path,
1184 const char *name, V9fsPath *target)
1185{
7a95434e
GK
1186 if (ctx->export_flags & V9FS_SM_MAPPED_FILE &&
1187 local_is_mapped_file_metadata(ctx, name)) {
1188 errno = EINVAL;
1189 return -1;
1190 }
1191
2289be19 1192 if (dir_path) {
f57f5878
GK
1193 if (!strcmp(name, ".")) {
1194 /* "." relative to "foo/bar" is "foo/bar" */
1195 v9fs_path_copy(target, dir_path);
1196 } else if (!strcmp(name, "..")) {
1197 if (!strcmp(dir_path->data, ".")) {
1198 /* ".." relative to the root is "." */
1199 v9fs_path_sprintf(target, ".");
1200 } else {
1201 char *tmp = g_path_get_dirname(dir_path->data);
1202 /* Symbolic links are resolved by the client. We can assume
1203 * that ".." relative to "foo/bar" is equivalent to "foo"
1204 */
1205 v9fs_path_sprintf(target, "%s", tmp);
1206 g_free(tmp);
1207 }
1208 } else {
1209 assert(!strchr(name, '/'));
1210 v9fs_path_sprintf(target, "%s/%s", dir_path->data, name);
1211 }
1212 } else if (!strcmp(name, "/") || !strcmp(name, ".") ||
1213 !strcmp(name, "..")) {
1214 /* This is the root fid */
1215 v9fs_path_sprintf(target, ".");
9c6b899f 1216 } else {
f57f5878
GK
1217 assert(!strchr(name, '/'));
1218 v9fs_path_sprintf(target, "./%s", name);
2289be19 1219 }
2289be19
AK
1220 return 0;
1221}
1222
1223static int local_renameat(FsContext *ctx, V9fsPath *olddir,
1224 const char *old_name, V9fsPath *newdir,
1225 const char *new_name)
1226{
1227 int ret;
99f2cf4b 1228 int odirfd, ndirfd;
2289be19 1229
7a95434e
GK
1230 if (ctx->export_flags & V9FS_SM_MAPPED_FILE &&
1231 (local_is_mapped_file_metadata(ctx, old_name) ||
1232 local_is_mapped_file_metadata(ctx, new_name))) {
1233 errno = EINVAL;
1234 return -1;
1235 }
1236
99f2cf4b
GK
1237 odirfd = local_opendir_nofollow(ctx, olddir->data);
1238 if (odirfd == -1) {
1239 return -1;
1240 }
2289be19 1241
99f2cf4b
GK
1242 ndirfd = local_opendir_nofollow(ctx, newdir->data);
1243 if (ndirfd == -1) {
1244 close_preserve_errno(odirfd);
1245 return -1;
1246 }
2289be19 1247
99f2cf4b
GK
1248 ret = renameat(odirfd, old_name, ndirfd, new_name);
1249 if (ret < 0) {
1250 goto out;
1251 }
2289be19 1252
99f2cf4b
GK
1253 if (ctx->export_flags & V9FS_SM_MAPPED_FILE) {
1254 int omap_dirfd, nmap_dirfd;
2289be19 1255
99f2cf4b
GK
1256 ret = mkdirat(ndirfd, VIRTFS_META_DIR, 0700);
1257 if (ret < 0 && errno != EEXIST) {
1258 goto err_undo_rename;
1259 }
2289be19 1260
6dd4b1f1 1261 omap_dirfd = openat_dir(odirfd, VIRTFS_META_DIR);
99f2cf4b
GK
1262 if (omap_dirfd == -1) {
1263 goto err;
1264 }
1265
6dd4b1f1 1266 nmap_dirfd = openat_dir(ndirfd, VIRTFS_META_DIR);
99f2cf4b
GK
1267 if (nmap_dirfd == -1) {
1268 close_preserve_errno(omap_dirfd);
1269 goto err;
1270 }
1271
1272 /* rename the .virtfs_metadata files */
1273 ret = renameat(omap_dirfd, old_name, nmap_dirfd, new_name);
1274 close_preserve_errno(nmap_dirfd);
1275 close_preserve_errno(omap_dirfd);
1276 if (ret < 0 && errno != ENOENT) {
1277 goto err_undo_rename;
1278 }
1279
1280 ret = 0;
1281 }
1282 goto out;
1283
1284err:
1285 ret = -1;
1286err_undo_rename:
1287 renameat_preserve_errno(ndirfd, new_name, odirfd, old_name);
1288out:
1289 close_preserve_errno(ndirfd);
1290 close_preserve_errno(odirfd);
2289be19
AK
1291 return ret;
1292}
1293
d2767ede
GK
1294static void v9fs_path_init_dirname(V9fsPath *path, const char *str)
1295{
1296 path->data = g_path_get_dirname(str);
1297 path->size = strlen(path->data) + 1;
1298}
1299
1300static int local_rename(FsContext *ctx, const char *oldpath,
1301 const char *newpath)
1302{
1303 int err;
1304 char *oname = g_path_get_basename(oldpath);
1305 char *nname = g_path_get_basename(newpath);
1306 V9fsPath olddir, newdir;
1307
1308 v9fs_path_init_dirname(&olddir, oldpath);
1309 v9fs_path_init_dirname(&newdir, newpath);
1310
1311 err = local_renameat(ctx, &olddir, oname, &newdir, nname);
1312
1313 v9fs_path_free(&newdir);
1314 v9fs_path_free(&olddir);
1315 g_free(nname);
1316 g_free(oname);
1317
1318 return err;
1319}
1320
2289be19
AK
1321static int local_unlinkat(FsContext *ctx, V9fsPath *dir,
1322 const char *name, int flags)
1323{
1324 int ret;
df4938a6 1325 int dirfd;
2289be19 1326
7a95434e
GK
1327 if (ctx->export_flags & V9FS_SM_MAPPED_FILE &&
1328 local_is_mapped_file_metadata(ctx, name)) {
1329 errno = EINVAL;
1330 return -1;
1331 }
1332
df4938a6
GK
1333 dirfd = local_opendir_nofollow(ctx, dir->data);
1334 if (dirfd == -1) {
1335 return -1;
2c30dd74 1336 }
2289be19 1337
df4938a6
GK
1338 ret = local_unlinkat_common(ctx, dirfd, name, flags);
1339 close_preserve_errno(dirfd);
2289be19
AK
1340 return ret;
1341}
9ed3ef26 1342
e06a765e
HPB
1343static int local_ioc_getversion(FsContext *ctx, V9fsPath *path,
1344 mode_t st_mode, uint64_t *st_gen)
1345{
ae0f940e 1346#ifdef FS_IOC_GETVERSION
0e5fc994 1347 int err;
cc720ddb
AK
1348 V9fsFidOpenState fid_open;
1349
e06a765e
HPB
1350 /*
1351 * Do not try to open special files like device nodes, fifos etc
1352 * We can get fd for regular files and directories only
1353 */
1354 if (!S_ISREG(st_mode) && !S_ISDIR(st_mode)) {
1a9978a5
KS
1355 errno = ENOTTY;
1356 return -1;
e06a765e 1357 }
cc720ddb
AK
1358 err = local_open(ctx, path, O_RDONLY, &fid_open);
1359 if (err < 0) {
1360 return err;
e06a765e 1361 }
cc720ddb
AK
1362 err = ioctl(fid_open.fd, FS_IOC_GETVERSION, st_gen);
1363 local_close(ctx, &fid_open);
0e5fc994 1364 return err;
ae0f940e 1365#else
0e5fc994
KS
1366 errno = ENOTTY;
1367 return -1;
ae0f940e 1368#endif
e06a765e
HPB
1369}
1370
0174fe73
AK
1371static int local_init(FsContext *ctx)
1372{
e06a765e 1373 struct statfs stbuf;
0e35a378
GK
1374 LocalData *data = g_malloc(sizeof(*data));
1375
1376 data->mountfd = open(ctx->fs_root, O_DIRECTORY | O_RDONLY);
1377 if (data->mountfd == -1) {
1378 goto err;
1379 }
e06a765e 1380
00c90bd1
GK
1381#ifdef FS_IOC_GETVERSION
1382 /*
1383 * use ioc_getversion only if the ioctl is definied
1384 */
0e35a378
GK
1385 if (fstatfs(data->mountfd, &stbuf) < 0) {
1386 close_preserve_errno(data->mountfd);
1387 goto err;
00c90bd1
GK
1388 }
1389 switch (stbuf.f_type) {
1390 case EXT2_SUPER_MAGIC:
1391 case BTRFS_SUPER_MAGIC:
1392 case REISERFS_SUPER_MAGIC:
1393 case XFS_SUPER_MAGIC:
1394 ctx->exops.get_st_gen = local_ioc_getversion;
1395 break;
1396 }
1397#endif
e06a765e 1398
2c30dd74
AK
1399 if (ctx->export_flags & V9FS_SM_PASSTHROUGH) {
1400 ctx->xops = passthrough_xattr_ops;
1401 } else if (ctx->export_flags & V9FS_SM_MAPPED) {
1402 ctx->xops = mapped_xattr_ops;
1403 } else if (ctx->export_flags & V9FS_SM_NONE) {
1404 ctx->xops = none_xattr_ops;
1405 } else if (ctx->export_flags & V9FS_SM_MAPPED_FILE) {
1406 /*
1407 * xattr operation for mapped-file and passthrough
1408 * remain same.
1409 */
1410 ctx->xops = passthrough_xattr_ops;
1411 }
c98f1d4a 1412 ctx->export_flags |= V9FS_PATHNAME_FSCONTEXT;
00c90bd1 1413
0e35a378 1414 ctx->private = data;
00c90bd1 1415 return 0;
0e35a378
GK
1416
1417err:
1418 g_free(data);
1419 return -1;
1420}
1421
1422static void local_cleanup(FsContext *ctx)
1423{
1424 LocalData *data = ctx->private;
1425
1426 close(data->mountfd);
1427 g_free(data);
0174fe73
AK
1428}
1429
99519f0a
AK
1430static int local_parse_opts(QemuOpts *opts, struct FsDriverEntry *fse)
1431{
1432 const char *sec_model = qemu_opt_get(opts, "security_model");
1433 const char *path = qemu_opt_get(opts, "path");
b8bbdb88 1434 Error *err = NULL;
99519f0a
AK
1435
1436 if (!sec_model) {
63325b18
GK
1437 error_report("Security model not specified, local fs needs security model");
1438 error_printf("valid options are:"
1439 "\tsecurity_model=[passthrough|mapped-xattr|mapped-file|none]\n");
99519f0a
AK
1440 return -1;
1441 }
1442
1443 if (!strcmp(sec_model, "passthrough")) {
1444 fse->export_flags |= V9FS_SM_PASSTHROUGH;
2c30dd74
AK
1445 } else if (!strcmp(sec_model, "mapped") ||
1446 !strcmp(sec_model, "mapped-xattr")) {
99519f0a
AK
1447 fse->export_flags |= V9FS_SM_MAPPED;
1448 } else if (!strcmp(sec_model, "none")) {
1449 fse->export_flags |= V9FS_SM_NONE;
2c30dd74
AK
1450 } else if (!strcmp(sec_model, "mapped-file")) {
1451 fse->export_flags |= V9FS_SM_MAPPED_FILE;
99519f0a 1452 } else {
63325b18
GK
1453 error_report("Invalid security model %s specified", sec_model);
1454 error_printf("valid options are:"
1455 "\t[passthrough|mapped-xattr|mapped-file|none]\n");
99519f0a
AK
1456 return -1;
1457 }
1458
1459 if (!path) {
63325b18 1460 error_report("fsdev: No path specified");
99519f0a
AK
1461 return -1;
1462 }
b8bbdb88
PJ
1463
1464 fsdev_throttle_parse_opts(opts, &fse->fst, &err);
1465 if (err) {
1466 error_reportf_err(err, "Throttle configuration is not valid: ");
1467 return -1;
1468 }
1469
99519f0a
AK
1470 fse->path = g_strdup(path);
1471
1472 return 0;
1473}
1474
9f107513 1475FileOperations local_ops = {
99519f0a 1476 .parse_opts = local_parse_opts,
0174fe73 1477 .init = local_init,
0e35a378 1478 .cleanup = local_cleanup,
131dcb25 1479 .lstat = local_lstat,
131dcb25
AL
1480 .readlink = local_readlink,
1481 .close = local_close,
1482 .closedir = local_closedir,
a6568fe2
AL
1483 .open = local_open,
1484 .opendir = local_opendir,
a9231555
AL
1485 .rewinddir = local_rewinddir,
1486 .telldir = local_telldir,
635324e8 1487 .readdir = local_readdir,
a9231555 1488 .seekdir = local_seekdir,
56d15a53
SG
1489 .preadv = local_preadv,
1490 .pwritev = local_pwritev,
c494dd6f
AL
1491 .chmod = local_chmod,
1492 .mknod = local_mknod,
c494dd6f
AL
1493 .mkdir = local_mkdir,
1494 .fstat = local_fstat,
1495 .open2 = local_open2,
1496 .symlink = local_symlink,
1497 .link = local_link,
8cf89e00
AL
1498 .truncate = local_truncate,
1499 .rename = local_rename,
1500 .chown = local_chown,
74bc02b2 1501 .utimensat = local_utimensat,
5bae1900 1502 .remove = local_remove,
8cf89e00 1503 .fsync = local_fsync,
be940c87 1504 .statfs = local_statfs,
fa32ef88
AK
1505 .lgetxattr = local_lgetxattr,
1506 .llistxattr = local_llistxattr,
10b468bd 1507 .lsetxattr = local_lsetxattr,
9ed3ef26 1508 .lremovexattr = local_lremovexattr,
2289be19
AK
1509 .name_to_path = local_name_to_path,
1510 .renameat = local_renameat,
1511 .unlinkat = local_unlinkat,
9f107513 1512};
This page took 0.716927 seconds and 4 git commands to generate.