]> git.proxmox.com Git - qemu.git/blame - hw/9pfs/virtio-9p.c
misc: move include files to include/qemu/
[qemu.git] / hw / 9pfs / virtio-9p.c
CommitLineData
9f107513
AL
1/*
2 * Virtio 9p backend
3 *
4 * Copyright IBM, Corp. 2010
5 *
6 * Authors:
7 * Anthony Liguori <aliguori@us.ibm.com>
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 */
13
873c3213
SW
14#include "hw/virtio.h"
15#include "hw/pc.h"
1de7afc9 16#include "qemu/sockets.h"
873c3213 17#include "hw/virtio-pci.h"
9f107513
AL
18#include "virtio-9p.h"
19#include "fsdev/qemu-fsdev.h"
fc22118d 20#include "virtio-9p-xattr.h"
ff06030f 21#include "virtio-9p-coth.h"
c572f23a 22#include "trace.h"
caf71f86 23#include "migration/migration.h"
9f107513 24
7a462745
AK
25int open_fd_hw;
26int total_open_fd;
27static int open_fd_rc;
9f107513 28
fac4f111
VJJ
29enum {
30 Oread = 0x00,
31 Owrite = 0x01,
32 Ordwr = 0x02,
33 Oexec = 0x03,
34 Oexcl = 0x04,
35 Otrunc = 0x10,
36 Orexec = 0x20,
37 Orclose = 0x40,
38 Oappend = 0x80,
39};
40
41static int omode_to_uflags(int8_t mode)
42{
43 int ret = 0;
44
45 switch (mode & 3) {
46 case Oread:
47 ret = O_RDONLY;
48 break;
49 case Ordwr:
50 ret = O_RDWR;
51 break;
52 case Owrite:
53 ret = O_WRONLY;
54 break;
55 case Oexec:
56 ret = O_RDONLY;
57 break;
58 }
59
60 if (mode & Otrunc) {
61 ret |= O_TRUNC;
62 }
63
64 if (mode & Oappend) {
65 ret |= O_APPEND;
66 }
67
68 if (mode & Oexcl) {
69 ret |= O_EXCL;
70 }
71
72 return ret;
73}
74
9844081b
MK
75struct dotl_openflag_map {
76 int dotl_flag;
77 int open_flag;
78};
79
80static int dotl_to_open_flags(int flags)
81{
82 int i;
83 /*
84 * We have same bits for P9_DOTL_READONLY, P9_DOTL_WRONLY
85 * and P9_DOTL_NOACCESS
86 */
87 int oflags = flags & O_ACCMODE;
88
89 struct dotl_openflag_map dotl_oflag_map[] = {
90 { P9_DOTL_CREATE, O_CREAT },
91 { P9_DOTL_EXCL, O_EXCL },
92 { P9_DOTL_NOCTTY , O_NOCTTY },
93 { P9_DOTL_TRUNC, O_TRUNC },
94 { P9_DOTL_APPEND, O_APPEND },
95 { P9_DOTL_NONBLOCK, O_NONBLOCK } ,
96 { P9_DOTL_DSYNC, O_DSYNC },
97 { P9_DOTL_FASYNC, FASYNC },
98 { P9_DOTL_DIRECT, O_DIRECT },
99 { P9_DOTL_LARGEFILE, O_LARGEFILE },
100 { P9_DOTL_DIRECTORY, O_DIRECTORY },
101 { P9_DOTL_NOFOLLOW, O_NOFOLLOW },
102 { P9_DOTL_NOATIME, O_NOATIME },
103 { P9_DOTL_SYNC, O_SYNC },
104 };
105
106 for (i = 0; i < ARRAY_SIZE(dotl_oflag_map); i++) {
107 if (flags & dotl_oflag_map[i].dotl_flag) {
108 oflags |= dotl_oflag_map[i].open_flag;
109 }
110 }
111
112 return oflags;
113}
114
758e8e38 115void cred_init(FsCred *credp)
131dcb25 116{
758e8e38
VJJ
117 credp->fc_uid = -1;
118 credp->fc_gid = -1;
119 credp->fc_mode = -1;
120 credp->fc_rdev = -1;
131dcb25
AL
121}
122
d3ab98e6
AK
123static int get_dotl_openflags(V9fsState *s, int oflags)
124{
125 int flags;
126 /*
127 * Filter the client open flags
128 */
9844081b
MK
129 flags = dotl_to_open_flags(oflags);
130 flags &= ~(O_NOCTTY | O_ASYNC | O_CREAT);
d3ab98e6
AK
131 /*
132 * Ignore direct disk access hint until the server supports it.
133 */
134 flags &= ~O_DIRECT;
135 return flags;
136}
137
2289be19
AK
138void v9fs_path_init(V9fsPath *path)
139{
140 path->data = NULL;
141 path->size = 0;
142}
143
144void v9fs_path_free(V9fsPath *path)
145{
146 g_free(path->data);
147 path->data = NULL;
148 path->size = 0;
149}
150
151void v9fs_path_copy(V9fsPath *lhs, V9fsPath *rhs)
152{
153 v9fs_path_free(lhs);
154 lhs->data = g_malloc(rhs->size);
155 memcpy(lhs->data, rhs->data, rhs->size);
156 lhs->size = rhs->size;
157}
158
159int v9fs_name_to_path(V9fsState *s, V9fsPath *dirpath,
160 const char *name, V9fsPath *path)
161{
162 int err;
163 err = s->ops->name_to_path(&s->ctx, dirpath, name, path);
164 if (err < 0) {
165 err = -errno;
166 }
167 return err;
168}
169
936532a4
MN
170/*
171 * Return TRUE if s1 is an ancestor of s2.
172 *
173 * E.g. "a/b" is an ancestor of "a/b/c" but not of "a/bc/d".
174 * As a special case, We treat s1 as ancestor of s2 if they are same!
175 */
2289be19 176static int v9fs_path_is_ancestor(V9fsPath *s1, V9fsPath *s2)
936532a4 177{
2289be19
AK
178 if (!strncmp(s1->data, s2->data, s1->size - 1)) {
179 if (s2->data[s1->size - 1] == '\0' || s2->data[s1->size - 1] == '/') {
936532a4
MN
180 return 1;
181 }
182 }
183 return 0;
184}
185
a03f7874
AL
186static size_t v9fs_string_size(V9fsString *str)
187{
188 return str->size;
189}
190
b9cb88b0
AK
191/*
192 * returns 0 if fid got re-opened, 1 if not, < 0 on error */
bccacf6c 193static int v9fs_reopen_fid(V9fsPDU *pdu, V9fsFidState *f)
b9cb88b0
AK
194{
195 int err = 1;
196 if (f->fid_type == P9_FID_FILE) {
197 if (f->fs.fd == -1) {
198 do {
bccacf6c
AK
199 err = v9fs_co_open(pdu, f, f->open_flags);
200 } while (err == -EINTR && !pdu->cancelled);
b9cb88b0
AK
201 }
202 } else if (f->fid_type == P9_FID_DIR) {
203 if (f->fs.dir == NULL) {
204 do {
bccacf6c
AK
205 err = v9fs_co_opendir(pdu, f);
206 } while (err == -EINTR && !pdu->cancelled);
b9cb88b0
AK
207 }
208 }
209 return err;
210}
211
bccacf6c 212static V9fsFidState *get_fid(V9fsPDU *pdu, int32_t fid)
286d5652 213{
7a462745 214 int err;
286d5652 215 V9fsFidState *f;
bccacf6c 216 V9fsState *s = pdu->s;
286d5652
AL
217
218 for (f = s->fid_list; f; f = f->next) {
84dfb926 219 BUG_ON(f->clunked);
286d5652 220 if (f->fid == fid) {
7a462745
AK
221 /*
222 * Update the fid ref upfront so that
223 * we don't get reclaimed when we yield
224 * in open later.
225 */
84dfb926 226 f->ref++;
7a462745
AK
227 /*
228 * check whether we need to reopen the
229 * file. We might have closed the fd
230 * while trying to free up some file
231 * descriptors.
232 */
bccacf6c 233 err = v9fs_reopen_fid(pdu, f);
b9cb88b0
AK
234 if (err < 0) {
235 f->ref--;
236 return NULL;
237 }
7a462745
AK
238 /*
239 * Mark the fid as referenced so that the LRU
240 * reclaim won't close the file descriptor
241 */
242 f->flags |= FID_REFERENCED;
286d5652
AL
243 return f;
244 }
245 }
286d5652
AL
246 return NULL;
247}
248
249static V9fsFidState *alloc_fid(V9fsState *s, int32_t fid)
250{
251 V9fsFidState *f;
252
84dfb926
AK
253 for (f = s->fid_list; f; f = f->next) {
254 /* If fid is already there return NULL */
255 BUG_ON(f->clunked);
256 if (f->fid == fid) {
257 return NULL;
258 }
286d5652 259 }
7267c094 260 f = g_malloc0(sizeof(V9fsFidState));
286d5652 261 f->fid = fid;
d62dbb51 262 f->fid_type = P9_FID_NONE;
84dfb926 263 f->ref = 1;
7a462745
AK
264 /*
265 * Mark the fid as referenced so that the LRU
266 * reclaim won't close the file descriptor
267 */
268 f->flags |= FID_REFERENCED;
286d5652
AL
269 f->next = s->fid_list;
270 s->fid_list = f;
271
272 return f;
273}
274
bccacf6c 275static int v9fs_xattr_fid_clunk(V9fsPDU *pdu, V9fsFidState *fidp)
10b468bd
AK
276{
277 int retval = 0;
278
279 if (fidp->fs.xattr.copied_len == -1) {
280 /* getxattr/listxattr fid */
281 goto free_value;
282 }
283 /*
284 * if this is fid for setxattr. clunk should
285 * result in setxattr localcall
286 */
287 if (fidp->fs.xattr.len != fidp->fs.xattr.copied_len) {
288 /* clunk after partial write */
289 retval = -EINVAL;
290 goto free_out;
291 }
9ed3ef26 292 if (fidp->fs.xattr.len) {
bccacf6c 293 retval = v9fs_co_lsetxattr(pdu, &fidp->path, &fidp->fs.xattr.name,
9ed3ef26
AK
294 fidp->fs.xattr.value,
295 fidp->fs.xattr.len,
296 fidp->fs.xattr.flags);
297 } else {
bccacf6c 298 retval = v9fs_co_lremovexattr(pdu, &fidp->path, &fidp->fs.xattr.name);
9ed3ef26 299 }
10b468bd
AK
300free_out:
301 v9fs_string_free(&fidp->fs.xattr.name);
302free_value:
303 if (fidp->fs.xattr.value) {
7267c094 304 g_free(fidp->fs.xattr.value);
10b468bd
AK
305 }
306 return retval;
307}
308
bccacf6c 309static int free_fid(V9fsPDU *pdu, V9fsFidState *fidp)
286d5652 310{
10b468bd 311 int retval = 0;
84dfb926
AK
312
313 if (fidp->fid_type == P9_FID_FILE) {
7a462745
AK
314 /* If we reclaimed the fd no need to close */
315 if (fidp->fs.fd != -1) {
cc720ddb 316 retval = v9fs_co_close(pdu, &fidp->fs);
7a462745 317 }
84dfb926 318 } else if (fidp->fid_type == P9_FID_DIR) {
95f65511 319 if (fidp->fs.dir != NULL) {
cc720ddb 320 retval = v9fs_co_closedir(pdu, &fidp->fs);
95f65511 321 }
84dfb926 322 } else if (fidp->fid_type == P9_FID_XATTR) {
bccacf6c 323 retval = v9fs_xattr_fid_clunk(pdu, fidp);
84dfb926 324 }
2289be19 325 v9fs_path_free(&fidp->path);
84dfb926
AK
326 g_free(fidp);
327 return retval;
328}
329
bccacf6c 330static void put_fid(V9fsPDU *pdu, V9fsFidState *fidp)
84dfb926
AK
331{
332 BUG_ON(!fidp->ref);
333 fidp->ref--;
7a462745
AK
334 /*
335 * Don't free the fid if it is in reclaim list
336 */
84dfb926 337 if (!fidp->ref && fidp->clunked) {
e9a0152b
AK
338 if (fidp->fid == pdu->s->root_fid) {
339 /*
340 * if the clunked fid is root fid then we
341 * have unmounted the fs on the client side.
342 * delete the migration blocker. Ideally, this
343 * should be hooked to transport close notification
344 */
345 if (pdu->s->migration_blocker) {
346 migrate_del_blocker(pdu->s->migration_blocker);
347 error_free(pdu->s->migration_blocker);
348 pdu->s->migration_blocker = NULL;
349 }
350 }
bccacf6c 351 free_fid(pdu, fidp);
84dfb926
AK
352 }
353}
354
ce421a19 355static V9fsFidState *clunk_fid(V9fsState *s, int32_t fid)
84dfb926 356{
286d5652
AL
357 V9fsFidState **fidpp, *fidp;
358
359 for (fidpp = &s->fid_list; *fidpp; fidpp = &(*fidpp)->next) {
360 if ((*fidpp)->fid == fid) {
361 break;
362 }
363 }
286d5652 364 if (*fidpp == NULL) {
ce421a19 365 return NULL;
286d5652 366 }
286d5652
AL
367 fidp = *fidpp;
368 *fidpp = fidp->next;
84dfb926 369 fidp->clunked = 1;
ce421a19 370 return fidp;
286d5652
AL
371}
372
bccacf6c 373void v9fs_reclaim_fd(V9fsPDU *pdu)
7a462745
AK
374{
375 int reclaim_count = 0;
bccacf6c 376 V9fsState *s = pdu->s;
7a462745
AK
377 V9fsFidState *f, *reclaim_list = NULL;
378
379 for (f = s->fid_list; f; f = f->next) {
380 /*
381 * Unlink fids cannot be reclaimed. Check
382 * for them and skip them. Also skip fids
383 * currently being operated on.
384 */
385 if (f->ref || f->flags & FID_NON_RECLAIMABLE) {
386 continue;
387 }
388 /*
389 * if it is a recently referenced fid
390 * we leave the fid untouched and clear the
391 * reference bit. We come back to it later
392 * in the next iteration. (a simple LRU without
393 * moving list elements around)
394 */
395 if (f->flags & FID_REFERENCED) {
396 f->flags &= ~FID_REFERENCED;
397 continue;
398 }
399 /*
400 * Add fids to reclaim list.
401 */
402 if (f->fid_type == P9_FID_FILE) {
403 if (f->fs.fd != -1) {
404 /*
405 * Up the reference count so that
406 * a clunk request won't free this fid
407 */
408 f->ref++;
409 f->rclm_lst = reclaim_list;
410 reclaim_list = f;
411 f->fs_reclaim.fd = f->fs.fd;
412 f->fs.fd = -1;
413 reclaim_count++;
414 }
95f65511
AK
415 } else if (f->fid_type == P9_FID_DIR) {
416 if (f->fs.dir != NULL) {
417 /*
418 * Up the reference count so that
419 * a clunk request won't free this fid
420 */
421 f->ref++;
422 f->rclm_lst = reclaim_list;
423 reclaim_list = f;
424 f->fs_reclaim.dir = f->fs.dir;
425 f->fs.dir = NULL;
426 reclaim_count++;
427 }
7a462745
AK
428 }
429 if (reclaim_count >= open_fd_rc) {
430 break;
431 }
432 }
433 /*
434 * Now close the fid in reclaim list. Free them if they
435 * are already clunked.
436 */
437 while (reclaim_list) {
438 f = reclaim_list;
439 reclaim_list = f->rclm_lst;
440 if (f->fid_type == P9_FID_FILE) {
cc720ddb 441 v9fs_co_close(pdu, &f->fs_reclaim);
95f65511 442 } else if (f->fid_type == P9_FID_DIR) {
cc720ddb 443 v9fs_co_closedir(pdu, &f->fs_reclaim);
7a462745
AK
444 }
445 f->rclm_lst = NULL;
446 /*
447 * Now drop the fid reference, free it
448 * if clunked.
449 */
bccacf6c 450 put_fid(pdu, f);
7a462745
AK
451 }
452}
453
bccacf6c 454static int v9fs_mark_fids_unreclaim(V9fsPDU *pdu, V9fsPath *path)
7a462745
AK
455{
456 int err;
bccacf6c 457 V9fsState *s = pdu->s;
7a462745
AK
458 V9fsFidState *fidp, head_fid;
459
460 head_fid.next = s->fid_list;
461 for (fidp = s->fid_list; fidp; fidp = fidp->next) {
2289be19
AK
462 if (fidp->path.size != path->size) {
463 continue;
464 }
465 if (!memcmp(fidp->path.data, path->data, path->size)) {
7a462745
AK
466 /* Mark the fid non reclaimable. */
467 fidp->flags |= FID_NON_RECLAIMABLE;
b9cb88b0
AK
468
469 /* reopen the file/dir if already closed */
bccacf6c 470 err = v9fs_reopen_fid(pdu, fidp);
b9cb88b0
AK
471 if (err < 0) {
472 return -1;
473 }
474 /*
475 * Go back to head of fid list because
476 * the list could have got updated when
477 * switched to the worker thread
478 */
479 if (err == 0) {
7a462745
AK
480 fidp = &head_fid;
481 }
482 }
483 }
484 return 0;
485}
486
b41e2992
DS
487static void virtfs_reset(V9fsPDU *pdu)
488{
489 V9fsState *s = pdu->s;
490 V9fsFidState *fidp = NULL;
491
492 /* Free all fids */
493 while (s->fid_list) {
494 fidp = s->fid_list;
495 s->fid_list = fidp->next;
496
497 if (fidp->ref) {
498 fidp->clunked = 1;
499 } else {
500 free_fid(pdu, fidp);
501 }
502 }
503 if (fidp) {
504 /* One or more unclunked fids found... */
505 error_report("9pfs:%s: One or more uncluncked fids "
506 "found during reset", __func__);
507 }
b41e2992
DS
508}
509
286d5652
AL
510#define P9_QID_TYPE_DIR 0x80
511#define P9_QID_TYPE_SYMLINK 0x02
512
513#define P9_STAT_MODE_DIR 0x80000000
514#define P9_STAT_MODE_APPEND 0x40000000
515#define P9_STAT_MODE_EXCL 0x20000000
516#define P9_STAT_MODE_MOUNT 0x10000000
517#define P9_STAT_MODE_AUTH 0x08000000
518#define P9_STAT_MODE_TMP 0x04000000
519#define P9_STAT_MODE_SYMLINK 0x02000000
520#define P9_STAT_MODE_LINK 0x01000000
521#define P9_STAT_MODE_DEVICE 0x00800000
522#define P9_STAT_MODE_NAMED_PIPE 0x00200000
523#define P9_STAT_MODE_SOCKET 0x00100000
524#define P9_STAT_MODE_SETUID 0x00080000
525#define P9_STAT_MODE_SETGID 0x00040000
526#define P9_STAT_MODE_SETVTX 0x00010000
527
528#define P9_STAT_MODE_TYPE_BITS (P9_STAT_MODE_DIR | \
529 P9_STAT_MODE_SYMLINK | \
530 P9_STAT_MODE_LINK | \
531 P9_STAT_MODE_DEVICE | \
532 P9_STAT_MODE_NAMED_PIPE | \
533 P9_STAT_MODE_SOCKET)
534
535/* This is the algorithm from ufs in spfs */
536static void stat_to_qid(const struct stat *stbuf, V9fsQID *qidp)
537{
538 size_t size;
539
25427ec1 540 memset(&qidp->path, 0, sizeof(qidp->path));
286d5652
AL
541 size = MIN(sizeof(stbuf->st_ino), sizeof(qidp->path));
542 memcpy(&qidp->path, &stbuf->st_ino, size);
543 qidp->version = stbuf->st_mtime ^ (stbuf->st_size << 8);
544 qidp->type = 0;
545 if (S_ISDIR(stbuf->st_mode)) {
546 qidp->type |= P9_QID_TYPE_DIR;
547 }
548 if (S_ISLNK(stbuf->st_mode)) {
549 qidp->type |= P9_QID_TYPE_SYMLINK;
550 }
551}
552
bccacf6c 553static int fid_to_qid(V9fsPDU *pdu, V9fsFidState *fidp, V9fsQID *qidp)
286d5652
AL
554{
555 struct stat stbuf;
556 int err;
557
bccacf6c 558 err = v9fs_co_lstat(pdu, &fidp->path, &stbuf);
8c158561 559 if (err < 0) {
286d5652
AL
560 return err;
561 }
286d5652
AL
562 stat_to_qid(&stbuf, qidp);
563 return 0;
564}
565
9f107513
AL
566static V9fsPDU *alloc_pdu(V9fsState *s)
567{
568 V9fsPDU *pdu = NULL;
569
570 if (!QLIST_EMPTY(&s->free_list)) {
bccacf6c
AK
571 pdu = QLIST_FIRST(&s->free_list);
572 QLIST_REMOVE(pdu, next);
573 QLIST_INSERT_HEAD(&s->active_list, pdu, next);
9f107513
AL
574 }
575 return pdu;
576}
577
578static void free_pdu(V9fsState *s, V9fsPDU *pdu)
579{
580 if (pdu) {
bccacf6c
AK
581 /*
582 * Cancelled pdu are added back to the freelist
583 * by flush request .
584 */
585 if (!pdu->cancelled) {
586 QLIST_REMOVE(pdu, next);
587 QLIST_INSERT_HEAD(&s->free_list, pdu, next);
588 }
9f107513
AL
589 }
590}
591
ddca7f86
MK
592/*
593 * We don't do error checking for pdu_marshal/unmarshal here
594 * because we always expect to have enough space to encode
595 * error details
596 */
405a549a
AL
597static void complete_pdu(V9fsState *s, V9fsPDU *pdu, ssize_t len)
598{
599 int8_t id = pdu->id + 1; /* Response */
600
601 if (len < 0) {
405a549a 602 int err = -len;
8f4d1ca5 603 len = 7;
405a549a 604
8f4d1ca5
AB
605 if (s->proto_version != V9FS_PROTO_2000L) {
606 V9fsString str;
607
608 str.data = strerror(err);
609 str.size = strlen(str.data);
610
611 len += pdu_marshal(pdu, len, "s", &str);
612 id = P9_RERROR;
613 }
405a549a 614
cf03eb2c 615 len += pdu_marshal(pdu, len, "d", err);
405a549a 616
8f4d1ca5
AB
617 if (s->proto_version == V9FS_PROTO_2000L) {
618 id = P9_RLERROR;
619 }
7999f7e1 620 trace_v9fs_rerror(pdu->tag, pdu->id, err); /* Trace ERROR */
405a549a
AL
621 }
622
623 /* fill out the header */
624 pdu_marshal(pdu, 0, "dbw", (int32_t)len, id, pdu->tag);
625
626 /* keep these in sync */
627 pdu->size = len;
628 pdu->id = id;
629
630 /* push onto queue and notify */
631 virtqueue_push(s->vq, &pdu->elem, len);
632
633 /* FIXME: we should batch these completions */
634 virtio_notify(&s->vdev, s->vq);
635
bccacf6c
AK
636 /* Now wakeup anybody waiting in flush for this request */
637 qemu_co_queue_next(&pdu->complete);
638
405a549a
AL
639 free_pdu(s, pdu);
640}
641
bb9e3216
AL
642static mode_t v9mode_to_mode(uint32_t mode, V9fsString *extension)
643{
644 mode_t ret;
645
646 ret = mode & 0777;
647 if (mode & P9_STAT_MODE_DIR) {
648 ret |= S_IFDIR;
649 }
650
cf03eb2c
AB
651 if (mode & P9_STAT_MODE_SYMLINK) {
652 ret |= S_IFLNK;
653 }
654 if (mode & P9_STAT_MODE_SOCKET) {
655 ret |= S_IFSOCK;
656 }
657 if (mode & P9_STAT_MODE_NAMED_PIPE) {
658 ret |= S_IFIFO;
659 }
660 if (mode & P9_STAT_MODE_DEVICE) {
661 if (extension && extension->data[0] == 'c') {
662 ret |= S_IFCHR;
663 } else {
664 ret |= S_IFBLK;
bb9e3216
AL
665 }
666 }
667
668 if (!(ret&~0777)) {
669 ret |= S_IFREG;
670 }
671
672 if (mode & P9_STAT_MODE_SETUID) {
673 ret |= S_ISUID;
674 }
675 if (mode & P9_STAT_MODE_SETGID) {
676 ret |= S_ISGID;
677 }
678 if (mode & P9_STAT_MODE_SETVTX) {
679 ret |= S_ISVTX;
680 }
681
682 return ret;
683}
684
685static int donttouch_stat(V9fsStat *stat)
686{
687 if (stat->type == -1 &&
688 stat->dev == -1 &&
689 stat->qid.type == -1 &&
690 stat->qid.version == -1 &&
691 stat->qid.path == -1 &&
692 stat->mode == -1 &&
693 stat->atime == -1 &&
694 stat->mtime == -1 &&
695 stat->length == -1 &&
696 !stat->name.size &&
697 !stat->uid.size &&
698 !stat->gid.size &&
699 !stat->muid.size &&
700 stat->n_uid == -1 &&
701 stat->n_gid == -1 &&
702 stat->n_muid == -1) {
703 return 1;
704 }
705
706 return 0;
707}
708
ddca7f86
MK
709static void v9fs_stat_init(V9fsStat *stat)
710{
711 v9fs_string_init(&stat->name);
712 v9fs_string_init(&stat->uid);
713 v9fs_string_init(&stat->gid);
714 v9fs_string_init(&stat->muid);
715 v9fs_string_init(&stat->extension);
716}
717
bb9e3216
AL
718static void v9fs_stat_free(V9fsStat *stat)
719{
720 v9fs_string_free(&stat->name);
721 v9fs_string_free(&stat->uid);
722 v9fs_string_free(&stat->gid);
723 v9fs_string_free(&stat->muid);
724 v9fs_string_free(&stat->extension);
725}
726
727static uint32_t stat_to_v9mode(const struct stat *stbuf)
728{
729 uint32_t mode;
730
731 mode = stbuf->st_mode & 0777;
732 if (S_ISDIR(stbuf->st_mode)) {
733 mode |= P9_STAT_MODE_DIR;
734 }
735
cf03eb2c
AB
736 if (S_ISLNK(stbuf->st_mode)) {
737 mode |= P9_STAT_MODE_SYMLINK;
738 }
bb9e3216 739
cf03eb2c
AB
740 if (S_ISSOCK(stbuf->st_mode)) {
741 mode |= P9_STAT_MODE_SOCKET;
742 }
bb9e3216 743
cf03eb2c
AB
744 if (S_ISFIFO(stbuf->st_mode)) {
745 mode |= P9_STAT_MODE_NAMED_PIPE;
746 }
bb9e3216 747
cf03eb2c
AB
748 if (S_ISBLK(stbuf->st_mode) || S_ISCHR(stbuf->st_mode)) {
749 mode |= P9_STAT_MODE_DEVICE;
750 }
bb9e3216 751
cf03eb2c
AB
752 if (stbuf->st_mode & S_ISUID) {
753 mode |= P9_STAT_MODE_SETUID;
754 }
bb9e3216 755
cf03eb2c
AB
756 if (stbuf->st_mode & S_ISGID) {
757 mode |= P9_STAT_MODE_SETGID;
758 }
bb9e3216 759
cf03eb2c
AB
760 if (stbuf->st_mode & S_ISVTX) {
761 mode |= P9_STAT_MODE_SETVTX;
bb9e3216
AL
762 }
763
764 return mode;
765}
766
bccacf6c 767static int stat_to_v9stat(V9fsPDU *pdu, V9fsPath *name,
bb9e3216
AL
768 const struct stat *stbuf,
769 V9fsStat *v9stat)
770{
771 int err;
772 const char *str;
773
774 memset(v9stat, 0, sizeof(*v9stat));
775
776 stat_to_qid(stbuf, &v9stat->qid);
777 v9stat->mode = stat_to_v9mode(stbuf);
778 v9stat->atime = stbuf->st_atime;
779 v9stat->mtime = stbuf->st_mtime;
780 v9stat->length = stbuf->st_size;
781
782 v9fs_string_null(&v9stat->uid);
783 v9fs_string_null(&v9stat->gid);
784 v9fs_string_null(&v9stat->muid);
785
cf03eb2c
AB
786 v9stat->n_uid = stbuf->st_uid;
787 v9stat->n_gid = stbuf->st_gid;
788 v9stat->n_muid = 0;
bb9e3216 789
cf03eb2c 790 v9fs_string_null(&v9stat->extension);
bb9e3216 791
cf03eb2c 792 if (v9stat->mode & P9_STAT_MODE_SYMLINK) {
bccacf6c 793 err = v9fs_co_readlink(pdu, name, &v9stat->extension);
7a5ca31e 794 if (err < 0) {
cf03eb2c 795 return err;
bb9e3216 796 }
cf03eb2c
AB
797 } else if (v9stat->mode & P9_STAT_MODE_DEVICE) {
798 v9fs_string_sprintf(&v9stat->extension, "%c %u %u",
799 S_ISCHR(stbuf->st_mode) ? 'c' : 'b',
800 major(stbuf->st_rdev), minor(stbuf->st_rdev));
801 } else if (S_ISDIR(stbuf->st_mode) || S_ISREG(stbuf->st_mode)) {
c9ba47dc
SW
802 v9fs_string_sprintf(&v9stat->extension, "%s %lu",
803 "HARDLINKCOUNT", (unsigned long)stbuf->st_nlink);
bb9e3216
AL
804 }
805
806 str = strrchr(name->data, '/');
807 if (str) {
808 str += 1;
809 } else {
810 str = name->data;
811 }
812
813 v9fs_string_sprintf(&v9stat->name, "%s", str);
814
815 v9stat->size = 61 +
816 v9fs_string_size(&v9stat->name) +
817 v9fs_string_size(&v9stat->uid) +
818 v9fs_string_size(&v9stat->gid) +
819 v9fs_string_size(&v9stat->muid) +
820 v9fs_string_size(&v9stat->extension);
821 return 0;
822}
823
00ede4c2
SK
824#define P9_STATS_MODE 0x00000001ULL
825#define P9_STATS_NLINK 0x00000002ULL
826#define P9_STATS_UID 0x00000004ULL
827#define P9_STATS_GID 0x00000008ULL
828#define P9_STATS_RDEV 0x00000010ULL
829#define P9_STATS_ATIME 0x00000020ULL
830#define P9_STATS_MTIME 0x00000040ULL
831#define P9_STATS_CTIME 0x00000080ULL
832#define P9_STATS_INO 0x00000100ULL
833#define P9_STATS_SIZE 0x00000200ULL
834#define P9_STATS_BLOCKS 0x00000400ULL
835
836#define P9_STATS_BTIME 0x00000800ULL
837#define P9_STATS_GEN 0x00001000ULL
838#define P9_STATS_DATA_VERSION 0x00002000ULL
839
840#define P9_STATS_BASIC 0x000007ffULL /* Mask for fields up to BLOCKS */
841#define P9_STATS_ALL 0x00003fffULL /* Mask for All fields above */
842
843
844static void stat_to_v9stat_dotl(V9fsState *s, const struct stat *stbuf,
8db21ce7 845 V9fsStatDotl *v9lstat)
00ede4c2
SK
846{
847 memset(v9lstat, 0, sizeof(*v9lstat));
848
849 v9lstat->st_mode = stbuf->st_mode;
850 v9lstat->st_nlink = stbuf->st_nlink;
851 v9lstat->st_uid = stbuf->st_uid;
852 v9lstat->st_gid = stbuf->st_gid;
853 v9lstat->st_rdev = stbuf->st_rdev;
854 v9lstat->st_size = stbuf->st_size;
855 v9lstat->st_blksize = stbuf->st_blksize;
856 v9lstat->st_blocks = stbuf->st_blocks;
857 v9lstat->st_atime_sec = stbuf->st_atime;
858 v9lstat->st_atime_nsec = stbuf->st_atim.tv_nsec;
859 v9lstat->st_mtime_sec = stbuf->st_mtime;
860 v9lstat->st_mtime_nsec = stbuf->st_mtim.tv_nsec;
861 v9lstat->st_ctime_sec = stbuf->st_ctime;
862 v9lstat->st_ctime_nsec = stbuf->st_ctim.tv_nsec;
863 /* Currently we only support BASIC fields in stat */
864 v9lstat->st_result_mask = P9_STATS_BASIC;
865
866 stat_to_qid(stbuf, &v9lstat->qid);
867}
868
1f5a89bf
AL
869static void print_sg(struct iovec *sg, int cnt)
870{
871 int i;
872
873 printf("sg[%d]: {", cnt);
874 for (i = 0; i < cnt; i++) {
875 if (i) {
876 printf(", ");
877 }
878 printf("(%p, %zd)", sg[i].iov_base, sg[i].iov_len);
879 }
880 printf("}\n");
881}
882
2289be19
AK
883/* Will call this only for path name based fid */
884static void v9fs_fix_path(V9fsPath *dst, V9fsPath *src, int len)
8cf89e00 885{
2289be19
AK
886 V9fsPath str;
887 v9fs_path_init(&str);
888 v9fs_path_copy(&str, dst);
889 v9fs_string_sprintf((V9fsString *)dst, "%s%s", src->data, str.data+len);
890 v9fs_path_free(&str);
891 /* +1 to include terminating NULL */
892 dst->size++;
8cf89e00
AL
893}
894
2c74c2cb
MK
895static inline bool is_ro_export(FsContext *ctx)
896{
897 return ctx->export_flags & V9FS_RDONLY;
898}
899
ff06030f 900static void v9fs_version(void *opaque)
9f107513 901{
ddca7f86 902 ssize_t err;
ff06030f
VJJ
903 V9fsPDU *pdu = opaque;
904 V9fsState *s = pdu->s;
92c1ad03
AL
905 V9fsString version;
906 size_t offset = 7;
907
ddca7f86
MK
908 v9fs_string_init(&version);
909 err = pdu_unmarshal(pdu, offset, "ds", &s->msize, &version);
910 if (err < 0) {
911 offset = err;
912 goto out;
913 }
c572f23a 914 trace_v9fs_version(pdu->tag, pdu->id, s->msize, version.data);
92c1ad03 915
b41e2992
DS
916 virtfs_reset(pdu);
917
84151514
MK
918 if (!strcmp(version.data, "9P2000.u")) {
919 s->proto_version = V9FS_PROTO_2000U;
920 } else if (!strcmp(version.data, "9P2000.L")) {
921 s->proto_version = V9FS_PROTO_2000L;
922 } else {
92c1ad03 923 v9fs_string_sprintf(&version, "unknown");
9f107513 924 }
92c1ad03 925
ddca7f86
MK
926 err = pdu_marshal(pdu, offset, "ds", s->msize, &version);
927 if (err < 0) {
928 offset = err;
929 goto out;
930 }
931 offset += err;
c572f23a 932 trace_v9fs_version_return(pdu->tag, pdu->id, s->msize, version.data);
ddca7f86 933out:
92c1ad03 934 complete_pdu(s, pdu, offset);
92c1ad03 935 v9fs_string_free(&version);
9f107513
AL
936}
937
ff06030f 938static void v9fs_attach(void *opaque)
9f107513 939{
ff06030f
VJJ
940 V9fsPDU *pdu = opaque;
941 V9fsState *s = pdu->s;
955efc47
AL
942 int32_t fid, afid, n_uname;
943 V9fsString uname, aname;
944 V9fsFidState *fidp;
955efc47 945 size_t offset = 7;
8c158561 946 V9fsQID qid;
955efc47
AL
947 ssize_t err;
948
ddca7f86
MK
949 v9fs_string_init(&uname);
950 v9fs_string_init(&aname);
951 err = pdu_unmarshal(pdu, offset, "ddssd", &fid,
952 &afid, &uname, &aname, &n_uname);
953 if (err < 0) {
954 goto out_nofid;
955 }
c572f23a 956 trace_v9fs_attach(pdu->tag, pdu->id, fid, afid, uname.data, aname.data);
955efc47
AL
957
958 fidp = alloc_fid(s, fid);
959 if (fidp == NULL) {
960 err = -EINVAL;
84dfb926 961 goto out_nofid;
9f107513 962 }
955efc47 963 fidp->uid = n_uname;
bccacf6c 964 err = v9fs_co_name_to_path(pdu, NULL, "/", &fidp->path);
2289be19
AK
965 if (err < 0) {
966 err = -EINVAL;
967 clunk_fid(s, fid);
968 goto out;
969 }
bccacf6c 970 err = fid_to_qid(pdu, fidp, &qid);
8c158561 971 if (err < 0) {
955efc47 972 err = -EINVAL;
84dfb926 973 clunk_fid(s, fid);
955efc47
AL
974 goto out;
975 }
ddca7f86
MK
976 err = pdu_marshal(pdu, offset, "Q", &qid);
977 if (err < 0) {
978 clunk_fid(s, fid);
979 goto out;
980 }
981 err += offset;
7999f7e1
AK
982 trace_v9fs_attach_return(pdu->tag, pdu->id,
983 qid.type, qid.version, qid.path);
4cdc0789
AK
984 /*
985 * disable migration if we haven't done already.
986 * attach could get called multiple times for the same export.
987 */
988 if (!s->migration_blocker) {
989 s->root_fid = fid;
990 error_set(&s->migration_blocker, QERR_VIRTFS_FEATURE_BLOCKS_MIGRATION,
991 s->ctx.fs_root ? s->ctx.fs_root : "NULL", s->tag);
992 migrate_add_blocker(s->migration_blocker);
993 }
955efc47 994out:
bccacf6c 995 put_fid(pdu, fidp);
84dfb926 996out_nofid:
955efc47
AL
997 complete_pdu(s, pdu, err);
998 v9fs_string_free(&uname);
999 v9fs_string_free(&aname);
9f107513
AL
1000}
1001
ff06030f 1002static void v9fs_stat(void *opaque)
9f107513 1003{
4da7d3fa 1004 int32_t fid;
d8e0c29e 1005 V9fsStat v9stat;
4da7d3fa 1006 ssize_t err = 0;
d8e0c29e
AK
1007 size_t offset = 7;
1008 struct stat stbuf;
1009 V9fsFidState *fidp;
1010 V9fsPDU *pdu = opaque;
1011 V9fsState *s = pdu->s;
4da7d3fa 1012
ddca7f86
MK
1013 err = pdu_unmarshal(pdu, offset, "d", &fid);
1014 if (err < 0) {
1015 goto out_nofid;
1016 }
c572f23a 1017 trace_v9fs_stat(pdu->tag, pdu->id, fid);
84dfb926 1018
bccacf6c 1019 fidp = get_fid(pdu, fid);
d8e0c29e 1020 if (fidp == NULL) {
4da7d3fa 1021 err = -ENOENT;
84dfb926 1022 goto out_nofid;
9f107513 1023 }
bccacf6c 1024 err = v9fs_co_lstat(pdu, &fidp->path, &stbuf);
d8e0c29e
AK
1025 if (err < 0) {
1026 goto out;
1027 }
bccacf6c 1028 err = stat_to_v9stat(pdu, &fidp->path, &stbuf, &v9stat);
d8e0c29e
AK
1029 if (err < 0) {
1030 goto out;
1031 }
ddca7f86
MK
1032 err = pdu_marshal(pdu, offset, "wS", 0, &v9stat);
1033 if (err < 0) {
1034 v9fs_stat_free(&v9stat);
1035 goto out;
1036 }
7999f7e1
AK
1037 trace_v9fs_stat_return(pdu->tag, pdu->id, v9stat.mode,
1038 v9stat.atime, v9stat.mtime, v9stat.length);
ddca7f86 1039 err += offset;
d8e0c29e 1040 v9fs_stat_free(&v9stat);
4da7d3fa 1041out:
bccacf6c 1042 put_fid(pdu, fidp);
84dfb926 1043out_nofid:
d8e0c29e 1044 complete_pdu(s, pdu, err);
9f107513
AL
1045}
1046
ff06030f 1047static void v9fs_getattr(void *opaque)
00ede4c2
SK
1048{
1049 int32_t fid;
8db21ce7
AK
1050 size_t offset = 7;
1051 ssize_t retval = 0;
1052 struct stat stbuf;
00ede4c2
SK
1053 V9fsFidState *fidp;
1054 uint64_t request_mask;
8db21ce7
AK
1055 V9fsStatDotl v9stat_dotl;
1056 V9fsPDU *pdu = opaque;
1057 V9fsState *s = pdu->s;
00ede4c2 1058
ddca7f86
MK
1059 retval = pdu_unmarshal(pdu, offset, "dq", &fid, &request_mask);
1060 if (retval < 0) {
1061 goto out_nofid;
1062 }
c572f23a 1063 trace_v9fs_getattr(pdu->tag, pdu->id, fid, request_mask);
00ede4c2 1064
bccacf6c 1065 fidp = get_fid(pdu, fid);
00ede4c2 1066 if (fidp == NULL) {
8db21ce7 1067 retval = -ENOENT;
84dfb926 1068 goto out_nofid;
00ede4c2 1069 }
8db21ce7
AK
1070 /*
1071 * Currently we only support BASIC fields in stat, so there is no
00ede4c2
SK
1072 * need to look at request_mask.
1073 */
bccacf6c 1074 retval = v9fs_co_lstat(pdu, &fidp->path, &stbuf);
8db21ce7
AK
1075 if (retval < 0) {
1076 goto out;
1077 }
1078 stat_to_v9stat_dotl(s, &stbuf, &v9stat_dotl);
e06a765e
HPB
1079
1080 /* fill st_gen if requested and supported by underlying fs */
1081 if (request_mask & P9_STATS_GEN) {
1082 retval = v9fs_co_st_gen(pdu, &fidp->path, stbuf.st_mode, &v9stat_dotl);
1083 if (retval < 0) {
1084 goto out;
1085 }
1086 v9stat_dotl.st_result_mask |= P9_STATS_GEN;
1087 }
ddca7f86
MK
1088 retval = pdu_marshal(pdu, offset, "A", &v9stat_dotl);
1089 if (retval < 0) {
1090 goto out;
1091 }
1092 retval += offset;
c572f23a
HPB
1093 trace_v9fs_getattr_return(pdu->tag, pdu->id, v9stat_dotl.st_result_mask,
1094 v9stat_dotl.st_mode, v9stat_dotl.st_uid,
1095 v9stat_dotl.st_gid);
7999f7e1
AK
1096out:
1097 put_fid(pdu, fidp);
1098out_nofid:
8db21ce7 1099 complete_pdu(s, pdu, retval);
00ede4c2
SK
1100}
1101
e4027caf
AK
1102/* Attribute flags */
1103#define P9_ATTR_MODE (1 << 0)
1104#define P9_ATTR_UID (1 << 1)
1105#define P9_ATTR_GID (1 << 2)
1106#define P9_ATTR_SIZE (1 << 3)
1107#define P9_ATTR_ATIME (1 << 4)
1108#define P9_ATTR_MTIME (1 << 5)
1109#define P9_ATTR_CTIME (1 << 6)
1110#define P9_ATTR_ATIME_SET (1 << 7)
1111#define P9_ATTR_MTIME_SET (1 << 8)
1112
1113#define P9_ATTR_MASK 127
c79ce737 1114
65c05f9a 1115static void v9fs_setattr(void *opaque)
c79ce737 1116{
65c05f9a
AK
1117 int err = 0;
1118 int32_t fid;
1119 V9fsFidState *fidp;
1120 size_t offset = 7;
1121 V9fsIattr v9iattr;
1122 V9fsPDU *pdu = opaque;
1123 V9fsState *s = pdu->s;
c79ce737 1124
ddca7f86
MK
1125 err = pdu_unmarshal(pdu, offset, "dI", &fid, &v9iattr);
1126 if (err < 0) {
1127 goto out_nofid;
1128 }
c79ce737 1129
bccacf6c 1130 fidp = get_fid(pdu, fid);
65c05f9a
AK
1131 if (fidp == NULL) {
1132 err = -EINVAL;
84dfb926 1133 goto out_nofid;
c79ce737 1134 }
e4027caf 1135 if (v9iattr.valid & P9_ATTR_MODE) {
bccacf6c 1136 err = v9fs_co_chmod(pdu, &fidp->path, v9iattr.mode);
65c05f9a
AK
1137 if (err < 0) {
1138 goto out;
c79ce737 1139 }
c79ce737 1140 }
e4027caf 1141 if (v9iattr.valid & (P9_ATTR_ATIME | P9_ATTR_MTIME)) {
c79ce737 1142 struct timespec times[2];
e4027caf
AK
1143 if (v9iattr.valid & P9_ATTR_ATIME) {
1144 if (v9iattr.valid & P9_ATTR_ATIME_SET) {
65c05f9a
AK
1145 times[0].tv_sec = v9iattr.atime_sec;
1146 times[0].tv_nsec = v9iattr.atime_nsec;
c79ce737
SK
1147 } else {
1148 times[0].tv_nsec = UTIME_NOW;
1149 }
1150 } else {
1151 times[0].tv_nsec = UTIME_OMIT;
1152 }
e4027caf
AK
1153 if (v9iattr.valid & P9_ATTR_MTIME) {
1154 if (v9iattr.valid & P9_ATTR_MTIME_SET) {
65c05f9a
AK
1155 times[1].tv_sec = v9iattr.mtime_sec;
1156 times[1].tv_nsec = v9iattr.mtime_nsec;
c79ce737
SK
1157 } else {
1158 times[1].tv_nsec = UTIME_NOW;
1159 }
1160 } else {
1161 times[1].tv_nsec = UTIME_OMIT;
1162 }
bccacf6c 1163 err = v9fs_co_utimensat(pdu, &fidp->path, times);
65c05f9a
AK
1164 if (err < 0) {
1165 goto out;
1166 }
c79ce737 1167 }
65c05f9a
AK
1168 /*
1169 * If the only valid entry in iattr is ctime we can call
1170 * chown(-1,-1) to update the ctime of the file
1171 */
e4027caf
AK
1172 if ((v9iattr.valid & (P9_ATTR_UID | P9_ATTR_GID)) ||
1173 ((v9iattr.valid & P9_ATTR_CTIME)
1174 && !((v9iattr.valid & P9_ATTR_MASK) & ~P9_ATTR_CTIME))) {
1175 if (!(v9iattr.valid & P9_ATTR_UID)) {
65c05f9a
AK
1176 v9iattr.uid = -1;
1177 }
e4027caf 1178 if (!(v9iattr.valid & P9_ATTR_GID)) {
65c05f9a
AK
1179 v9iattr.gid = -1;
1180 }
bccacf6c 1181 err = v9fs_co_chown(pdu, &fidp->path, v9iattr.uid,
65c05f9a
AK
1182 v9iattr.gid);
1183 if (err < 0) {
1184 goto out;
1185 }
c79ce737 1186 }
e4027caf 1187 if (v9iattr.valid & (P9_ATTR_SIZE)) {
bccacf6c 1188 err = v9fs_co_truncate(pdu, &fidp->path, v9iattr.size);
65c05f9a
AK
1189 if (err < 0) {
1190 goto out;
1191 }
c79ce737 1192 }
65c05f9a 1193 err = offset;
c79ce737 1194out:
bccacf6c 1195 put_fid(pdu, fidp);
84dfb926 1196out_nofid:
65c05f9a 1197 complete_pdu(s, pdu, err);
c79ce737
SK
1198}
1199
3cc19c0c 1200static int v9fs_walk_marshal(V9fsPDU *pdu, uint16_t nwnames, V9fsQID *qids)
ff5e54c9
AL
1201{
1202 int i;
ddca7f86 1203 ssize_t err;
3cc19c0c 1204 size_t offset = 7;
ddca7f86
MK
1205
1206 err = pdu_marshal(pdu, offset, "w", nwnames);
1207 if (err < 0) {
1208 return err;
1209 }
1210 offset += err;
3cc19c0c 1211 for (i = 0; i < nwnames; i++) {
ddca7f86
MK
1212 err = pdu_marshal(pdu, offset, "Q", &qids[i]);
1213 if (err < 0) {
1214 return err;
1215 }
1216 offset += err;
ff5e54c9 1217 }
3cc19c0c 1218 return offset;
ff5e54c9
AL
1219}
1220
ff06030f 1221static void v9fs_walk(void *opaque)
9f107513 1222{
3cc19c0c
AK
1223 int name_idx;
1224 V9fsQID *qids = NULL;
1225 int i, err = 0;
2289be19 1226 V9fsPath dpath, path;
3cc19c0c
AK
1227 uint16_t nwnames;
1228 struct stat stbuf;
1229 size_t offset = 7;
1230 int32_t fid, newfid;
1231 V9fsString *wnames = NULL;
1232 V9fsFidState *fidp;
3a93113a 1233 V9fsFidState *newfidp = NULL;
ff06030f
VJJ
1234 V9fsPDU *pdu = opaque;
1235 V9fsState *s = pdu->s;
ff5e54c9 1236
ddca7f86
MK
1237 err = pdu_unmarshal(pdu, offset, "ddw", &fid, &newfid, &nwnames);
1238 if (err < 0) {
1239 complete_pdu(s, pdu, err);
1240 return ;
1241 }
1242 offset += err;
ff5e54c9 1243
c572f23a
HPB
1244 trace_v9fs_walk(pdu->tag, pdu->id, fid, newfid, nwnames);
1245
3cc19c0c
AK
1246 if (nwnames && nwnames <= P9_MAXWELEM) {
1247 wnames = g_malloc0(sizeof(wnames[0]) * nwnames);
1248 qids = g_malloc0(sizeof(qids[0]) * nwnames);
1249 for (i = 0; i < nwnames; i++) {
ddca7f86
MK
1250 err = pdu_unmarshal(pdu, offset, "s", &wnames[i]);
1251 if (err < 0) {
1252 goto out_nofid;
1253 }
1254 offset += err;
ff5e54c9 1255 }
3cc19c0c 1256 } else if (nwnames > P9_MAXWELEM) {
4f8dee2d 1257 err = -EINVAL;
84dfb926 1258 goto out_nofid;
ff5e54c9 1259 }
bccacf6c 1260 fidp = get_fid(pdu, fid);
3cc19c0c 1261 if (fidp == NULL) {
ff5e54c9 1262 err = -ENOENT;
84dfb926 1263 goto out_nofid;
ff5e54c9 1264 }
2289be19
AK
1265 v9fs_path_init(&dpath);
1266 v9fs_path_init(&path);
1267 /*
1268 * Both dpath and path initially poin to fidp.
1269 * Needed to handle request with nwnames == 0
1270 */
1271 v9fs_path_copy(&dpath, &fidp->path);
1272 v9fs_path_copy(&path, &fidp->path);
1273 for (name_idx = 0; name_idx < nwnames; name_idx++) {
bccacf6c 1274 err = v9fs_co_name_to_path(pdu, &dpath, wnames[name_idx].data, &path);
2289be19
AK
1275 if (err < 0) {
1276 goto out;
1277 }
bccacf6c 1278 err = v9fs_co_lstat(pdu, &path, &stbuf);
2289be19
AK
1279 if (err < 0) {
1280 goto out;
1281 }
1282 stat_to_qid(&stbuf, &qids[name_idx]);
1283 v9fs_path_copy(&dpath, &path);
1284 }
ff5e54c9 1285 if (fid == newfid) {
3cc19c0c 1286 BUG_ON(fidp->fid_type != P9_FID_NONE);
2289be19 1287 v9fs_path_copy(&fidp->path, &path);
ff5e54c9 1288 } else {
3cc19c0c
AK
1289 newfidp = alloc_fid(s, newfid);
1290 if (newfidp == NULL) {
ff5e54c9
AL
1291 err = -EINVAL;
1292 goto out;
1293 }
3cc19c0c 1294 newfidp->uid = fidp->uid;
2289be19 1295 v9fs_path_copy(&newfidp->path, &path);
9f107513 1296 }
3cc19c0c 1297 err = v9fs_walk_marshal(pdu, nwnames, qids);
7999f7e1 1298 trace_v9fs_walk_return(pdu->tag, pdu->id, nwnames, qids);
ff5e54c9 1299out:
bccacf6c 1300 put_fid(pdu, fidp);
84dfb926 1301 if (newfidp) {
bccacf6c 1302 put_fid(pdu, newfidp);
84dfb926 1303 }
2289be19
AK
1304 v9fs_path_free(&dpath);
1305 v9fs_path_free(&path);
84dfb926 1306out_nofid:
3cc19c0c
AK
1307 complete_pdu(s, pdu, err);
1308 if (nwnames && nwnames <= P9_MAXWELEM) {
1309 for (name_idx = 0; name_idx < nwnames; name_idx++) {
1310 v9fs_string_free(&wnames[name_idx]);
1311 }
1312 g_free(wnames);
1313 g_free(qids);
1314 }
9f107513
AL
1315}
1316
bccacf6c 1317static int32_t get_iounit(V9fsPDU *pdu, V9fsPath *path)
5e94c103
MK
1318{
1319 struct statfs stbuf;
1320 int32_t iounit = 0;
bccacf6c 1321 V9fsState *s = pdu->s;
5e94c103
MK
1322
1323 /*
1324 * iounit should be multiples of f_bsize (host filesystem block size
1325 * and as well as less than (client msize - P9_IOHDRSZ))
1326 */
bccacf6c 1327 if (!v9fs_co_statfs(pdu, path, &stbuf)) {
5e94c103
MK
1328 iounit = stbuf.f_bsize;
1329 iounit *= (s->msize - P9_IOHDRSZ)/stbuf.f_bsize;
1330 }
5e94c103
MK
1331 if (!iounit) {
1332 iounit = s->msize - P9_IOHDRSZ;
1333 }
1334 return iounit;
1335}
1336
857bc158 1337static void v9fs_open(void *opaque)
5e94c103 1338{
857bc158 1339 int flags;
857bc158
AK
1340 int32_t fid;
1341 int32_t mode;
1342 V9fsQID qid;
7999f7e1 1343 int iounit = 0;
857bc158
AK
1344 ssize_t err = 0;
1345 size_t offset = 7;
1346 struct stat stbuf;
1347 V9fsFidState *fidp;
1348 V9fsPDU *pdu = opaque;
1349 V9fsState *s = pdu->s;
5e94c103 1350
857bc158 1351 if (s->proto_version == V9FS_PROTO_2000L) {
ddca7f86 1352 err = pdu_unmarshal(pdu, offset, "dd", &fid, &mode);
857bc158 1353 } else {
67d6fa53
BH
1354 uint8_t modebyte;
1355 err = pdu_unmarshal(pdu, offset, "db", &fid, &modebyte);
1356 mode = modebyte;
ddca7f86
MK
1357 }
1358 if (err < 0) {
1359 goto out_nofid;
857bc158 1360 }
c572f23a
HPB
1361 trace_v9fs_open(pdu->tag, pdu->id, fid, mode);
1362
bccacf6c 1363 fidp = get_fid(pdu, fid);
857bc158
AK
1364 if (fidp == NULL) {
1365 err = -ENOENT;
84dfb926 1366 goto out_nofid;
a6568fe2 1367 }
857bc158 1368 BUG_ON(fidp->fid_type != P9_FID_NONE);
a6568fe2 1369
bccacf6c 1370 err = v9fs_co_lstat(pdu, &fidp->path, &stbuf);
857bc158 1371 if (err < 0) {
a6568fe2
AL
1372 goto out;
1373 }
857bc158
AK
1374 stat_to_qid(&stbuf, &qid);
1375 if (S_ISDIR(stbuf.st_mode)) {
bccacf6c 1376 err = v9fs_co_opendir(pdu, fidp);
857bc158
AK
1377 if (err < 0) {
1378 goto out;
1379 }
1380 fidp->fid_type = P9_FID_DIR;
ddca7f86
MK
1381 err = pdu_marshal(pdu, offset, "Qd", &qid, 0);
1382 if (err < 0) {
1383 goto out;
1384 }
1385 err += offset;
a6568fe2 1386 } else {
771e9d4c 1387 if (s->proto_version == V9FS_PROTO_2000L) {
d3ab98e6 1388 flags = get_dotl_openflags(s, mode);
771e9d4c 1389 } else {
857bc158 1390 flags = omode_to_uflags(mode);
771e9d4c 1391 }
2c74c2cb
MK
1392 if (is_ro_export(&s->ctx)) {
1393 if (mode & O_WRONLY || mode & O_RDWR ||
1394 mode & O_APPEND || mode & O_TRUNC) {
1395 err = -EROFS;
1396 goto out;
1397 }
2c74c2cb 1398 }
bccacf6c 1399 err = v9fs_co_open(pdu, fidp, flags);
857bc158
AK
1400 if (err < 0) {
1401 goto out;
1402 }
1403 fidp->fid_type = P9_FID_FILE;
7a462745
AK
1404 fidp->open_flags = flags;
1405 if (flags & O_EXCL) {
1406 /*
1407 * We let the host file system do O_EXCL check
1408 * We should not reclaim such fd
1409 */
1410 fidp->flags |= FID_NON_RECLAIMABLE;
1411 }
bccacf6c 1412 iounit = get_iounit(pdu, &fidp->path);
ddca7f86
MK
1413 err = pdu_marshal(pdu, offset, "Qd", &qid, iounit);
1414 if (err < 0) {
1415 goto out;
1416 }
1417 err += offset;
a6568fe2 1418 }
7999f7e1
AK
1419 trace_v9fs_open_return(pdu->tag, pdu->id,
1420 qid.type, qid.version, qid.path, iounit);
a6568fe2 1421out:
bccacf6c 1422 put_fid(pdu, fidp);
84dfb926 1423out_nofid:
a6568fe2 1424 complete_pdu(s, pdu, err);
a6568fe2
AL
1425}
1426
ff06030f 1427static void v9fs_lcreate(void *opaque)
c1568af5
VJJ
1428{
1429 int32_t dfid, flags, mode;
1430 gid_t gid;
c1568af5 1431 ssize_t err = 0;
36f8981f 1432 ssize_t offset = 7;
36f8981f
VJ
1433 V9fsString name;
1434 V9fsFidState *fidp;
1435 struct stat stbuf;
1436 V9fsQID qid;
1437 int32_t iounit;
1438 V9fsPDU *pdu = opaque;
c1568af5 1439
ddca7f86
MK
1440 v9fs_string_init(&name);
1441 err = pdu_unmarshal(pdu, offset, "dsddd", &dfid,
1442 &name, &flags, &mode, &gid);
1443 if (err < 0) {
1444 goto out_nofid;
1445 }
c572f23a 1446 trace_v9fs_lcreate(pdu->tag, pdu->id, dfid, flags, mode, gid);
c1568af5 1447
bccacf6c 1448 fidp = get_fid(pdu, dfid);
36f8981f 1449 if (fidp == NULL) {
c1568af5 1450 err = -ENOENT;
84dfb926 1451 goto out_nofid;
c1568af5 1452 }
c1568af5 1453
d3ab98e6 1454 flags = get_dotl_openflags(pdu->s, flags);
bccacf6c 1455 err = v9fs_co_open2(pdu, fidp, &name, gid,
02cb7f3a 1456 flags | O_CREAT, mode, &stbuf);
36f8981f
VJ
1457 if (err < 0) {
1458 goto out;
1459 }
1460 fidp->fid_type = P9_FID_FILE;
7a462745
AK
1461 fidp->open_flags = flags;
1462 if (flags & O_EXCL) {
1463 /*
1464 * We let the host file system do O_EXCL check
1465 * We should not reclaim such fd
1466 */
1467 fidp->flags |= FID_NON_RECLAIMABLE;
1468 }
bccacf6c 1469 iounit = get_iounit(pdu, &fidp->path);
36f8981f 1470 stat_to_qid(&stbuf, &qid);
ddca7f86
MK
1471 err = pdu_marshal(pdu, offset, "Qd", &qid, iounit);
1472 if (err < 0) {
1473 goto out;
1474 }
1475 err += offset;
7999f7e1
AK
1476 trace_v9fs_lcreate_return(pdu->tag, pdu->id,
1477 qid.type, qid.version, qid.path, iounit);
c1568af5 1478out:
bccacf6c 1479 put_fid(pdu, fidp);
84dfb926 1480out_nofid:
36f8981f
VJ
1481 complete_pdu(pdu->s, pdu, err);
1482 v9fs_string_free(&name);
c1568af5
VJJ
1483}
1484
ff06030f 1485static void v9fs_fsync(void *opaque)
b41e95d3 1486{
4e9ad444 1487 int err;
b41e95d3 1488 int32_t fid;
4e9ad444 1489 int datasync;
b41e95d3
VJJ
1490 size_t offset = 7;
1491 V9fsFidState *fidp;
4e9ad444
AK
1492 V9fsPDU *pdu = opaque;
1493 V9fsState *s = pdu->s;
b41e95d3 1494
ddca7f86
MK
1495 err = pdu_unmarshal(pdu, offset, "dd", &fid, &datasync);
1496 if (err < 0) {
1497 goto out_nofid;
1498 }
c572f23a
HPB
1499 trace_v9fs_fsync(pdu->tag, pdu->id, fid, datasync);
1500
bccacf6c 1501 fidp = get_fid(pdu, fid);
b41e95d3
VJJ
1502 if (fidp == NULL) {
1503 err = -ENOENT;
84dfb926 1504 goto out_nofid;
b41e95d3 1505 }
bccacf6c 1506 err = v9fs_co_fsync(pdu, fidp, datasync);
4e9ad444
AK
1507 if (!err) {
1508 err = offset;
1509 }
bccacf6c 1510 put_fid(pdu, fidp);
84dfb926 1511out_nofid:
4e9ad444 1512 complete_pdu(s, pdu, err);
b41e95d3
VJJ
1513}
1514
ff06030f 1515static void v9fs_clunk(void *opaque)
a6568fe2 1516{
c540ee51 1517 int err;
bbd5697b
AL
1518 int32_t fid;
1519 size_t offset = 7;
84dfb926 1520 V9fsFidState *fidp;
c540ee51
AK
1521 V9fsPDU *pdu = opaque;
1522 V9fsState *s = pdu->s;
bbd5697b 1523
ddca7f86
MK
1524 err = pdu_unmarshal(pdu, offset, "d", &fid);
1525 if (err < 0) {
1526 goto out_nofid;
1527 }
c572f23a 1528 trace_v9fs_clunk(pdu->tag, pdu->id, fid);
84dfb926 1529
ce421a19 1530 fidp = clunk_fid(s, fid);
84dfb926
AK
1531 if (fidp == NULL) {
1532 err = -ENOENT;
1533 goto out_nofid;
1534 }
ce421a19
AK
1535 /*
1536 * Bump the ref so that put_fid will
1537 * free the fid.
1538 */
1539 fidp->ref++;
bbd5697b 1540 err = offset;
ce421a19 1541
bccacf6c 1542 put_fid(pdu, fidp);
84dfb926 1543out_nofid:
bbd5697b 1544 complete_pdu(s, pdu, err);
9f107513
AL
1545}
1546
2f008a8c
AK
1547static int v9fs_xattr_read(V9fsState *s, V9fsPDU *pdu, V9fsFidState *fidp,
1548 uint64_t off, uint32_t max_count)
a9231555 1549{
ddca7f86 1550 ssize_t err;
d208a0e0
AK
1551 size_t offset = 7;
1552 int read_count;
1553 int64_t xattr_len;
a9231555 1554
d208a0e0
AK
1555 xattr_len = fidp->fs.xattr.len;
1556 read_count = xattr_len - off;
1557 if (read_count > max_count) {
1558 read_count = max_count;
1559 } else if (read_count < 0) {
1560 /*
1561 * read beyond XATTR value
1562 */
1563 read_count = 0;
a9231555 1564 }
ddca7f86
MK
1565 err = pdu_marshal(pdu, offset, "d", read_count);
1566 if (err < 0) {
1567 return err;
1568 }
1569 offset += err;
1570 err = v9fs_pack(pdu->elem.in_sg, pdu->elem.in_num, offset,
1571 ((char *)fidp->fs.xattr.value) + off,
1572 read_count);
1573 if (err < 0) {
1574 return err;
1575 }
1576 offset += err;
d208a0e0 1577 return offset;
a9231555
AL
1578}
1579
bccacf6c 1580static int v9fs_do_readdir_with_stat(V9fsPDU *pdu,
2f008a8c 1581 V9fsFidState *fidp, uint32_t max_count)
a9231555 1582{
2289be19 1583 V9fsPath path;
d208a0e0
AK
1584 V9fsStat v9stat;
1585 int len, err = 0;
1586 int32_t count = 0;
1587 struct stat stbuf;
1588 off_t saved_dir_pos;
5f524c1e 1589 struct dirent *dent, *result;
a9231555 1590
d208a0e0 1591 /* save the directory position */
bccacf6c 1592 saved_dir_pos = v9fs_co_telldir(pdu, fidp);
d208a0e0
AK
1593 if (saved_dir_pos < 0) {
1594 return saved_dir_pos;
a9231555 1595 }
5f524c1e
HPB
1596
1597 dent = g_malloc(sizeof(struct dirent));
1598
d208a0e0 1599 while (1) {
2289be19 1600 v9fs_path_init(&path);
bccacf6c 1601 err = v9fs_co_readdir_r(pdu, fidp, dent, &result);
5f524c1e 1602 if (err || !result) {
d208a0e0
AK
1603 break;
1604 }
bccacf6c 1605 err = v9fs_co_name_to_path(pdu, &fidp->path, dent->d_name, &path);
d208a0e0
AK
1606 if (err < 0) {
1607 goto out;
1608 }
bccacf6c 1609 err = v9fs_co_lstat(pdu, &path, &stbuf);
2289be19
AK
1610 if (err < 0) {
1611 goto out;
1612 }
bccacf6c 1613 err = stat_to_v9stat(pdu, &path, &stbuf, &v9stat);
d208a0e0
AK
1614 if (err < 0) {
1615 goto out;
a9231555 1616 }
d208a0e0
AK
1617 /* 11 = 7 + 4 (7 = start offset, 4 = space for storing count) */
1618 len = pdu_marshal(pdu, 11 + count, "S", &v9stat);
1619 if ((len != (v9stat.size + 2)) || ((count + len) > max_count)) {
1620 /* Ran out of buffer. Set dir back to old position and return */
bccacf6c 1621 v9fs_co_seekdir(pdu, fidp, saved_dir_pos);
d208a0e0 1622 v9fs_stat_free(&v9stat);
2289be19 1623 v9fs_path_free(&path);
5f524c1e 1624 g_free(dent);
d208a0e0
AK
1625 return count;
1626 }
1627 count += len;
1628 v9fs_stat_free(&v9stat);
2289be19 1629 v9fs_path_free(&path);
d208a0e0 1630 saved_dir_pos = dent->d_off;
a9231555 1631 }
a9231555 1632out:
5f524c1e 1633 g_free(dent);
2289be19 1634 v9fs_path_free(&path);
d208a0e0
AK
1635 if (err < 0) {
1636 return err;
fa32ef88 1637 }
d208a0e0 1638 return count;
fa32ef88
AK
1639}
1640
302a0d3e
SH
1641/*
1642 * Create a QEMUIOVector for a sub-region of PDU iovecs
1643 *
1644 * @qiov: uninitialized QEMUIOVector
1645 * @skip: number of bytes to skip from beginning of PDU
1646 * @size: number of bytes to include
1647 * @is_write: true - write, false - read
1648 *
1649 * The resulting QEMUIOVector has heap-allocated iovecs and must be cleaned up
1650 * with qemu_iovec_destroy().
1651 */
1652static void v9fs_init_qiov_from_pdu(QEMUIOVector *qiov, V9fsPDU *pdu,
1b093c48 1653 size_t skip, size_t size,
302a0d3e
SH
1654 bool is_write)
1655{
1656 QEMUIOVector elem;
1657 struct iovec *iov;
1658 unsigned int niov;
1659
1660 if (is_write) {
1661 iov = pdu->elem.out_sg;
1662 niov = pdu->elem.out_num;
1663 } else {
1664 iov = pdu->elem.in_sg;
1665 niov = pdu->elem.in_num;
1666 }
1667
1668 qemu_iovec_init_external(&elem, iov, niov);
1669 qemu_iovec_init(qiov, niov);
1b093c48 1670 qemu_iovec_concat(qiov, &elem, skip, size);
302a0d3e
SH
1671}
1672
ff06030f 1673static void v9fs_read(void *opaque)
9f107513 1674{
a9231555 1675 int32_t fid;
2f008a8c 1676 uint64_t off;
a9231555 1677 ssize_t err = 0;
d208a0e0
AK
1678 int32_t count = 0;
1679 size_t offset = 7;
2f008a8c 1680 uint32_t max_count;
d208a0e0
AK
1681 V9fsFidState *fidp;
1682 V9fsPDU *pdu = opaque;
1683 V9fsState *s = pdu->s;
a9231555 1684
ddca7f86
MK
1685 err = pdu_unmarshal(pdu, offset, "dqd", &fid, &off, &max_count);
1686 if (err < 0) {
1687 goto out_nofid;
1688 }
c572f23a 1689 trace_v9fs_read(pdu->tag, pdu->id, fid, off, max_count);
84dfb926 1690
bccacf6c 1691 fidp = get_fid(pdu, fid);
d208a0e0 1692 if (fidp == NULL) {
a9231555 1693 err = -EINVAL;
84dfb926 1694 goto out_nofid;
a9231555 1695 }
d208a0e0 1696 if (fidp->fid_type == P9_FID_DIR) {
a9231555 1697
d208a0e0 1698 if (off == 0) {
bccacf6c 1699 v9fs_co_rewinddir(pdu, fidp);
a9231555 1700 }
bccacf6c 1701 count = v9fs_do_readdir_with_stat(pdu, fidp, max_count);
d208a0e0
AK
1702 if (count < 0) {
1703 err = count;
1704 goto out;
56d15a53 1705 }
ddca7f86
MK
1706 err = pdu_marshal(pdu, offset, "d", count);
1707 if (err < 0) {
1708 goto out;
1709 }
1710 err += offset + count;
d208a0e0 1711 } else if (fidp->fid_type == P9_FID_FILE) {
302a0d3e
SH
1712 QEMUIOVector qiov_full;
1713 QEMUIOVector qiov;
d208a0e0 1714 int32_t len;
d208a0e0 1715
302a0d3e
SH
1716 v9fs_init_qiov_from_pdu(&qiov_full, pdu, offset + 4, max_count, false);
1717 qemu_iovec_init(&qiov, qiov_full.niov);
d208a0e0 1718 do {
302a0d3e 1719 qemu_iovec_reset(&qiov);
1b093c48 1720 qemu_iovec_concat(&qiov, &qiov_full, count, qiov_full.size - count);
d208a0e0 1721 if (0) {
302a0d3e 1722 print_sg(qiov.iov, qiov.niov);
d208a0e0
AK
1723 }
1724 /* Loop in case of EINTR */
1725 do {
302a0d3e 1726 len = v9fs_co_preadv(pdu, fidp, qiov.iov, qiov.niov, off);
d208a0e0
AK
1727 if (len >= 0) {
1728 off += len;
1729 count += len;
1730 }
bccacf6c 1731 } while (len == -EINTR && !pdu->cancelled);
d208a0e0
AK
1732 if (len < 0) {
1733 /* IO error return the error */
1734 err = len;
1735 goto out;
1736 }
d208a0e0 1737 } while (count < max_count && len > 0);
ddca7f86
MK
1738 err = pdu_marshal(pdu, offset, "d", count);
1739 if (err < 0) {
1740 goto out;
1741 }
1742 err += offset + count;
302a0d3e
SH
1743 qemu_iovec_destroy(&qiov);
1744 qemu_iovec_destroy(&qiov_full);
d208a0e0
AK
1745 } else if (fidp->fid_type == P9_FID_XATTR) {
1746 err = v9fs_xattr_read(s, pdu, fidp, off, max_count);
a9231555
AL
1747 } else {
1748 err = -EINVAL;
9f107513 1749 }
7999f7e1 1750 trace_v9fs_read_return(pdu->tag, pdu->id, count, err);
a9231555 1751out:
bccacf6c 1752 put_fid(pdu, fidp);
84dfb926 1753out_nofid:
a9231555 1754 complete_pdu(s, pdu, err);
9f107513
AL
1755}
1756
5e4eaa79 1757static size_t v9fs_readdir_data_size(V9fsString *name)
c18e2f94 1758{
5e4eaa79
AK
1759 /*
1760 * Size of each dirent on the wire: size of qid (13) + size of offset (8)
1761 * size of type (1) + size of name.size (2) + strlen(name.data)
1762 */
1763 return 24 + v9fs_string_size(name);
c18e2f94
SK
1764}
1765
bccacf6c 1766static int v9fs_do_readdir(V9fsPDU *pdu,
5e4eaa79 1767 V9fsFidState *fidp, int32_t max_count)
c18e2f94 1768{
c18e2f94 1769 size_t size;
5e4eaa79
AK
1770 V9fsQID qid;
1771 V9fsString name;
1772 int len, err = 0;
1773 int32_t count = 0;
1774 off_t saved_dir_pos;
5f524c1e 1775 struct dirent *dent, *result;
c18e2f94 1776
5e4eaa79 1777 /* save the directory position */
bccacf6c 1778 saved_dir_pos = v9fs_co_telldir(pdu, fidp);
5e4eaa79
AK
1779 if (saved_dir_pos < 0) {
1780 return saved_dir_pos;
1781 }
5f524c1e
HPB
1782
1783 dent = g_malloc(sizeof(struct dirent));
1784
5e4eaa79 1785 while (1) {
bccacf6c 1786 err = v9fs_co_readdir_r(pdu, fidp, dent, &result);
5f524c1e 1787 if (err || !result) {
5e4eaa79
AK
1788 break;
1789 }
1790 v9fs_string_init(&name);
1791 v9fs_string_sprintf(&name, "%s", dent->d_name);
1792 if ((count + v9fs_readdir_data_size(&name)) > max_count) {
c18e2f94 1793 /* Ran out of buffer. Set dir back to old position and return */
bccacf6c 1794 v9fs_co_seekdir(pdu, fidp, saved_dir_pos);
5e4eaa79 1795 v9fs_string_free(&name);
5f524c1e 1796 g_free(dent);
5e4eaa79 1797 return count;
c18e2f94 1798 }
5e4eaa79
AK
1799 /*
1800 * Fill up just the path field of qid because the client uses
c18e2f94
SK
1801 * only that. To fill the entire qid structure we will have
1802 * to stat each dirent found, which is expensive
1803 */
5e4eaa79
AK
1804 size = MIN(sizeof(dent->d_ino), sizeof(qid.path));
1805 memcpy(&qid.path, &dent->d_ino, size);
c18e2f94 1806 /* Fill the other fields with dummy values */
5e4eaa79
AK
1807 qid.type = 0;
1808 qid.version = 0;
c18e2f94 1809
5e4eaa79
AK
1810 /* 11 = 7 + 4 (7 = start offset, 4 = space for storing count) */
1811 len = pdu_marshal(pdu, 11 + count, "Qqbs",
1812 &qid, dent->d_off,
1813 dent->d_type, &name);
ddca7f86
MK
1814 if (len < 0) {
1815 v9fs_co_seekdir(pdu, fidp, saved_dir_pos);
1816 v9fs_string_free(&name);
1817 g_free(dent);
1818 return len;
1819 }
5e4eaa79
AK
1820 count += len;
1821 v9fs_string_free(&name);
1822 saved_dir_pos = dent->d_off;
1823 }
5f524c1e 1824 g_free(dent);
5e4eaa79
AK
1825 if (err < 0) {
1826 return err;
1827 }
1828 return count;
c18e2f94
SK
1829}
1830
ff06030f 1831static void v9fs_readdir(void *opaque)
c18e2f94
SK
1832{
1833 int32_t fid;
5e4eaa79
AK
1834 V9fsFidState *fidp;
1835 ssize_t retval = 0;
c18e2f94 1836 size_t offset = 7;
2f008a8c
AK
1837 uint64_t initial_offset;
1838 int32_t count;
1839 uint32_t max_count;
5e4eaa79
AK
1840 V9fsPDU *pdu = opaque;
1841 V9fsState *s = pdu->s;
c18e2f94 1842
ddca7f86
MK
1843 retval = pdu_unmarshal(pdu, offset, "dqd", &fid,
1844 &initial_offset, &max_count);
1845 if (retval < 0) {
1846 goto out_nofid;
1847 }
c572f23a
HPB
1848 trace_v9fs_readdir(pdu->tag, pdu->id, fid, initial_offset, max_count);
1849
bccacf6c 1850 fidp = get_fid(pdu, fid);
84dfb926
AK
1851 if (fidp == NULL) {
1852 retval = -EINVAL;
1853 goto out_nofid;
1854 }
1855 if (!fidp->fs.dir) {
5e4eaa79 1856 retval = -EINVAL;
c18e2f94
SK
1857 goto out;
1858 }
5e4eaa79 1859 if (initial_offset == 0) {
bccacf6c 1860 v9fs_co_rewinddir(pdu, fidp);
c18e2f94 1861 } else {
bccacf6c 1862 v9fs_co_seekdir(pdu, fidp, initial_offset);
c18e2f94 1863 }
bccacf6c 1864 count = v9fs_do_readdir(pdu, fidp, max_count);
5e4eaa79
AK
1865 if (count < 0) {
1866 retval = count;
1867 goto out;
1868 }
ddca7f86
MK
1869 retval = pdu_marshal(pdu, offset, "d", count);
1870 if (retval < 0) {
1871 goto out;
1872 }
1873 retval += count + offset;
7999f7e1 1874 trace_v9fs_readdir_return(pdu->tag, pdu->id, count, retval);
c18e2f94 1875out:
bccacf6c 1876 put_fid(pdu, fidp);
84dfb926 1877out_nofid:
5e4eaa79 1878 complete_pdu(s, pdu, retval);
c18e2f94
SK
1879}
1880
d7a90491 1881static int v9fs_xattr_write(V9fsState *s, V9fsPDU *pdu, V9fsFidState *fidp,
2f008a8c 1882 uint64_t off, uint32_t count,
d7a90491 1883 struct iovec *sg, int cnt)
10b468bd
AK
1884{
1885 int i, to_copy;
1886 ssize_t err = 0;
1887 int write_count;
1888 int64_t xattr_len;
d7a90491 1889 size_t offset = 7;
10b468bd 1890
d7a90491
AK
1891
1892 xattr_len = fidp->fs.xattr.len;
1893 write_count = xattr_len - off;
1894 if (write_count > count) {
1895 write_count = count;
10b468bd
AK
1896 } else if (write_count < 0) {
1897 /*
1898 * write beyond XATTR value len specified in
1899 * xattrcreate
1900 */
1901 err = -ENOSPC;
1902 goto out;
1903 }
ddca7f86
MK
1904 err = pdu_marshal(pdu, offset, "d", write_count);
1905 if (err < 0) {
1906 return err;
1907 }
1908 err += offset;
d7a90491 1909 fidp->fs.xattr.copied_len += write_count;
10b468bd
AK
1910 /*
1911 * Now copy the content from sg list
1912 */
d7a90491
AK
1913 for (i = 0; i < cnt; i++) {
1914 if (write_count > sg[i].iov_len) {
1915 to_copy = sg[i].iov_len;
10b468bd
AK
1916 } else {
1917 to_copy = write_count;
1918 }
d7a90491 1919 memcpy((char *)fidp->fs.xattr.value + off, sg[i].iov_base, to_copy);
10b468bd 1920 /* updating vs->off since we are not using below */
d7a90491 1921 off += to_copy;
10b468bd
AK
1922 write_count -= to_copy;
1923 }
1924out:
d7a90491 1925 return err;
10b468bd
AK
1926}
1927
ff06030f 1928static void v9fs_write(void *opaque)
9f107513 1929{
d7a90491
AK
1930 ssize_t err;
1931 int32_t fid;
2f008a8c
AK
1932 uint64_t off;
1933 uint32_t count;
d7a90491
AK
1934 int32_t len = 0;
1935 int32_t total = 0;
1936 size_t offset = 7;
1937 V9fsFidState *fidp;
ff06030f
VJJ
1938 V9fsPDU *pdu = opaque;
1939 V9fsState *s = pdu->s;
302a0d3e
SH
1940 QEMUIOVector qiov_full;
1941 QEMUIOVector qiov;
8449360c 1942
ddca7f86
MK
1943 err = pdu_unmarshal(pdu, offset, "dqd", &fid, &off, &count);
1944 if (err < 0) {
1945 return complete_pdu(s, pdu, err);
1946 }
1947 offset += err;
302a0d3e
SH
1948 v9fs_init_qiov_from_pdu(&qiov_full, pdu, offset, count, true);
1949 trace_v9fs_write(pdu->tag, pdu->id, fid, off, count, qiov_full.niov);
84dfb926 1950
bccacf6c 1951 fidp = get_fid(pdu, fid);
d7a90491 1952 if (fidp == NULL) {
8449360c 1953 err = -EINVAL;
84dfb926 1954 goto out_nofid;
9f107513 1955 }
d7a90491
AK
1956 if (fidp->fid_type == P9_FID_FILE) {
1957 if (fidp->fs.fd == -1) {
10b468bd
AK
1958 err = -EINVAL;
1959 goto out;
1960 }
d7a90491 1961 } else if (fidp->fid_type == P9_FID_XATTR) {
10b468bd
AK
1962 /*
1963 * setxattr operation
1964 */
302a0d3e
SH
1965 err = v9fs_xattr_write(s, pdu, fidp, off, count,
1966 qiov_full.iov, qiov_full.niov);
d7a90491 1967 goto out;
10b468bd 1968 } else {
8449360c
AL
1969 err = -EINVAL;
1970 goto out;
1971 }
302a0d3e 1972 qemu_iovec_init(&qiov, qiov_full.niov);
d7a90491 1973 do {
302a0d3e 1974 qemu_iovec_reset(&qiov);
1b093c48 1975 qemu_iovec_concat(&qiov, &qiov_full, total, qiov_full.size - total);
d7a90491 1976 if (0) {
302a0d3e 1977 print_sg(qiov.iov, qiov.niov);
56d15a53 1978 }
d7a90491
AK
1979 /* Loop in case of EINTR */
1980 do {
302a0d3e 1981 len = v9fs_co_pwritev(pdu, fidp, qiov.iov, qiov.niov, off);
d7a90491
AK
1982 if (len >= 0) {
1983 off += len;
1984 total += len;
1985 }
bccacf6c 1986 } while (len == -EINTR && !pdu->cancelled);
d7a90491
AK
1987 if (len < 0) {
1988 /* IO error return the error */
1989 err = len;
302a0d3e 1990 goto out_qiov;
d7a90491 1991 }
d7a90491 1992 } while (total < count && len > 0);
302a0d3e
SH
1993
1994 offset = 7;
ddca7f86
MK
1995 err = pdu_marshal(pdu, offset, "d", total);
1996 if (err < 0) {
1997 goto out;
1998 }
1999 err += offset;
7999f7e1 2000 trace_v9fs_write_return(pdu->tag, pdu->id, total, err);
302a0d3e
SH
2001out_qiov:
2002 qemu_iovec_destroy(&qiov);
8449360c 2003out:
bccacf6c 2004 put_fid(pdu, fidp);
84dfb926 2005out_nofid:
302a0d3e 2006 qemu_iovec_destroy(&qiov_full);
d7a90491 2007 complete_pdu(s, pdu, err);
9f107513
AL
2008}
2009
baaa86d9 2010static void v9fs_create(void *opaque)
5e94c103 2011{
baaa86d9
VJ
2012 int32_t fid;
2013 int err = 0;
2014 size_t offset = 7;
2015 V9fsFidState *fidp;
2016 V9fsQID qid;
2017 int32_t perm;
2018 int8_t mode;
2289be19 2019 V9fsPath path;
baaa86d9
VJ
2020 struct stat stbuf;
2021 V9fsString name;
2022 V9fsString extension;
baaa86d9
VJ
2023 int iounit;
2024 V9fsPDU *pdu = opaque;
c494dd6f 2025
2289be19 2026 v9fs_path_init(&path);
ddca7f86
MK
2027 v9fs_string_init(&name);
2028 v9fs_string_init(&extension);
2029 err = pdu_unmarshal(pdu, offset, "dsdbs", &fid, &name,
2030 &perm, &mode, &extension);
2031 if (err < 0) {
2032 goto out_nofid;
2033 }
c572f23a
HPB
2034 trace_v9fs_create(pdu->tag, pdu->id, fid, name.data, perm, mode);
2035
bccacf6c 2036 fidp = get_fid(pdu, fid);
baaa86d9
VJ
2037 if (fidp == NULL) {
2038 err = -EINVAL;
84dfb926 2039 goto out_nofid;
c494dd6f 2040 }
baaa86d9 2041 if (perm & P9_STAT_MODE_DIR) {
bccacf6c 2042 err = v9fs_co_mkdir(pdu, fidp, &name, perm & 0777,
02cb7f3a 2043 fidp->uid, -1, &stbuf);
baaa86d9
VJ
2044 if (err < 0) {
2045 goto out;
2046 }
bccacf6c 2047 err = v9fs_co_name_to_path(pdu, &fidp->path, name.data, &path);
2289be19
AK
2048 if (err < 0) {
2049 goto out;
2050 }
2051 v9fs_path_copy(&fidp->path, &path);
bccacf6c 2052 err = v9fs_co_opendir(pdu, fidp);
baaa86d9
VJ
2053 if (err < 0) {
2054 goto out;
2055 }
2056 fidp->fid_type = P9_FID_DIR;
2057 } else if (perm & P9_STAT_MODE_SYMLINK) {
bccacf6c 2058 err = v9fs_co_symlink(pdu, fidp, &name,
02cb7f3a 2059 extension.data, -1 , &stbuf);
baaa86d9 2060 if (err < 0) {
baaa86d9
VJ
2061 goto out;
2062 }
bccacf6c 2063 err = v9fs_co_name_to_path(pdu, &fidp->path, name.data, &path);
2289be19
AK
2064 if (err < 0) {
2065 goto out;
2066 }
2067 v9fs_path_copy(&fidp->path, &path);
baaa86d9 2068 } else if (perm & P9_STAT_MODE_LINK) {
2289be19 2069 int32_t ofid = atoi(extension.data);
bccacf6c 2070 V9fsFidState *ofidp = get_fid(pdu, ofid);
2289be19 2071 if (ofidp == NULL) {
baaa86d9
VJ
2072 err = -EINVAL;
2073 goto out;
2074 }
bccacf6c
AK
2075 err = v9fs_co_link(pdu, ofidp, fidp, &name);
2076 put_fid(pdu, ofidp);
2289be19
AK
2077 if (err < 0) {
2078 goto out;
2079 }
bccacf6c 2080 err = v9fs_co_name_to_path(pdu, &fidp->path, name.data, &path);
baaa86d9 2081 if (err < 0) {
2289be19 2082 fidp->fid_type = P9_FID_NONE;
baaa86d9 2083 goto out;
c494dd6f 2084 }
2289be19 2085 v9fs_path_copy(&fidp->path, &path);
bccacf6c 2086 err = v9fs_co_lstat(pdu, &fidp->path, &stbuf);
02cb7f3a
AK
2087 if (err < 0) {
2088 fidp->fid_type = P9_FID_NONE;
2089 goto out;
2090 }
baaa86d9 2091 } else if (perm & P9_STAT_MODE_DEVICE) {
c494dd6f
AL
2092 char ctype;
2093 uint32_t major, minor;
2094 mode_t nmode = 0;
2095
baaa86d9 2096 if (sscanf(extension.data, "%c %u %u", &ctype, &major, &minor) != 3) {
c494dd6f 2097 err = -errno;
baaa86d9 2098 goto out;
c494dd6f
AL
2099 }
2100
2101 switch (ctype) {
2102 case 'c':
2103 nmode = S_IFCHR;
2104 break;
2105 case 'b':
2106 nmode = S_IFBLK;
2107 break;
2108 default:
2109 err = -EIO;
baaa86d9
VJ
2110 goto out;
2111 }
c1568af5 2112
baaa86d9 2113 nmode |= perm & 0777;
bccacf6c 2114 err = v9fs_co_mknod(pdu, fidp, &name, fidp->uid, -1,
02cb7f3a 2115 makedev(major, minor), nmode, &stbuf);
baaa86d9
VJ
2116 if (err < 0) {
2117 goto out;
2118 }
bccacf6c 2119 err = v9fs_co_name_to_path(pdu, &fidp->path, name.data, &path);
2289be19
AK
2120 if (err < 0) {
2121 goto out;
2122 }
2123 v9fs_path_copy(&fidp->path, &path);
baaa86d9 2124 } else if (perm & P9_STAT_MODE_NAMED_PIPE) {
bccacf6c 2125 err = v9fs_co_mknod(pdu, fidp, &name, fidp->uid, -1,
02cb7f3a 2126 0, S_IFIFO | (perm & 0777), &stbuf);
baaa86d9
VJ
2127 if (err < 0) {
2128 goto out;
2129 }
bccacf6c 2130 err = v9fs_co_name_to_path(pdu, &fidp->path, name.data, &path);
2289be19
AK
2131 if (err < 0) {
2132 goto out;
2133 }
2134 v9fs_path_copy(&fidp->path, &path);
baaa86d9 2135 } else if (perm & P9_STAT_MODE_SOCKET) {
bccacf6c 2136 err = v9fs_co_mknod(pdu, fidp, &name, fidp->uid, -1,
02cb7f3a 2137 0, S_IFSOCK | (perm & 0777), &stbuf);
baaa86d9
VJ
2138 if (err < 0) {
2139 goto out;
2140 }
bccacf6c 2141 err = v9fs_co_name_to_path(pdu, &fidp->path, name.data, &path);
2289be19
AK
2142 if (err < 0) {
2143 goto out;
2144 }
2145 v9fs_path_copy(&fidp->path, &path);
baaa86d9 2146 } else {
bccacf6c 2147 err = v9fs_co_open2(pdu, fidp, &name, -1,
02cb7f3a 2148 omode_to_uflags(mode)|O_CREAT, perm, &stbuf);
baaa86d9
VJ
2149 if (err < 0) {
2150 goto out;
2151 }
2152 fidp->fid_type = P9_FID_FILE;
7a462745
AK
2153 fidp->open_flags = omode_to_uflags(mode);
2154 if (fidp->open_flags & O_EXCL) {
2155 /*
2156 * We let the host file system do O_EXCL check
2157 * We should not reclaim such fd
2158 */
2159 fidp->flags |= FID_NON_RECLAIMABLE;
2160 }
c494dd6f 2161 }
bccacf6c 2162 iounit = get_iounit(pdu, &fidp->path);
baaa86d9 2163 stat_to_qid(&stbuf, &qid);
ddca7f86
MK
2164 err = pdu_marshal(pdu, offset, "Qd", &qid, iounit);
2165 if (err < 0) {
2166 goto out;
2167 }
2168 err += offset;
7999f7e1
AK
2169 trace_v9fs_create_return(pdu->tag, pdu->id,
2170 qid.type, qid.version, qid.path, iounit);
c494dd6f 2171out:
bccacf6c 2172 put_fid(pdu, fidp);
84dfb926 2173out_nofid:
baaa86d9
VJ
2174 complete_pdu(pdu->s, pdu, err);
2175 v9fs_string_free(&name);
2176 v9fs_string_free(&extension);
2289be19 2177 v9fs_path_free(&path);
9f107513
AL
2178}
2179
ff06030f 2180static void v9fs_symlink(void *opaque)
08c60fc9 2181{
ff06030f 2182 V9fsPDU *pdu = opaque;
3fa2a8d1
VJ
2183 V9fsString name;
2184 V9fsString symname;
3fa2a8d1
VJ
2185 V9fsFidState *dfidp;
2186 V9fsQID qid;
2187 struct stat stbuf;
08c60fc9 2188 int32_t dfid;
08c60fc9
VJJ
2189 int err = 0;
2190 gid_t gid;
3fa2a8d1 2191 size_t offset = 7;
08c60fc9 2192
ddca7f86
MK
2193 v9fs_string_init(&name);
2194 v9fs_string_init(&symname);
2195 err = pdu_unmarshal(pdu, offset, "dssd", &dfid, &name, &symname, &gid);
2196 if (err < 0) {
2197 goto out_nofid;
2198 }
c572f23a 2199 trace_v9fs_symlink(pdu->tag, pdu->id, dfid, name.data, symname.data, gid);
08c60fc9 2200
bccacf6c 2201 dfidp = get_fid(pdu, dfid);
3fa2a8d1 2202 if (dfidp == NULL) {
08c60fc9 2203 err = -EINVAL;
84dfb926 2204 goto out_nofid;
08c60fc9 2205 }
bccacf6c 2206 err = v9fs_co_symlink(pdu, dfidp, &name, symname.data, gid, &stbuf);
3fa2a8d1
VJ
2207 if (err < 0) {
2208 goto out;
2209 }
2210 stat_to_qid(&stbuf, &qid);
ddca7f86
MK
2211 err = pdu_marshal(pdu, offset, "Q", &qid);
2212 if (err < 0) {
2213 goto out;
2214 }
2215 err += offset;
7999f7e1
AK
2216 trace_v9fs_symlink_return(pdu->tag, pdu->id,
2217 qid.type, qid.version, qid.path);
08c60fc9 2218out:
bccacf6c 2219 put_fid(pdu, dfidp);
84dfb926 2220out_nofid:
3fa2a8d1
VJ
2221 complete_pdu(pdu->s, pdu, err);
2222 v9fs_string_free(&name);
2223 v9fs_string_free(&symname);
08c60fc9
VJJ
2224}
2225
ff06030f 2226static void v9fs_flush(void *opaque)
9f107513 2227{
ddca7f86 2228 ssize_t err;
bccacf6c
AK
2229 int16_t tag;
2230 size_t offset = 7;
2231 V9fsPDU *cancel_pdu;
ff06030f
VJJ
2232 V9fsPDU *pdu = opaque;
2233 V9fsState *s = pdu->s;
bccacf6c 2234
ddca7f86
MK
2235 err = pdu_unmarshal(pdu, offset, "w", &tag);
2236 if (err < 0) {
2237 complete_pdu(s, pdu, err);
2238 return;
2239 }
c572f23a 2240 trace_v9fs_flush(pdu->tag, pdu->id, tag);
bccacf6c
AK
2241
2242 QLIST_FOREACH(cancel_pdu, &s->active_list, next) {
2243 if (cancel_pdu->tag == tag) {
2244 break;
2245 }
2246 }
2247 if (cancel_pdu) {
2248 cancel_pdu->cancelled = 1;
2249 /*
2250 * Wait for pdu to complete.
2251 */
2252 qemu_co_queue_wait(&cancel_pdu->complete);
2253 cancel_pdu->cancelled = 0;
2254 free_pdu(pdu->s, cancel_pdu);
2255 }
9c5e9d89 2256 complete_pdu(s, pdu, 7);
9f107513
AL
2257}
2258
ff06030f 2259static void v9fs_link(void *opaque)
b2c224be 2260{
ff06030f
VJJ
2261 V9fsPDU *pdu = opaque;
2262 V9fsState *s = pdu->s;
b2c224be
VJJ
2263 int32_t dfid, oldfid;
2264 V9fsFidState *dfidp, *oldfidp;
3a93113a 2265 V9fsString name;
b2c224be
VJJ
2266 size_t offset = 7;
2267 int err = 0;
2268
ddca7f86
MK
2269 v9fs_string_init(&name);
2270 err = pdu_unmarshal(pdu, offset, "dds", &dfid, &oldfid, &name);
2271 if (err < 0) {
2272 goto out_nofid;
2273 }
c572f23a 2274 trace_v9fs_link(pdu->tag, pdu->id, dfid, oldfid, name.data);
b2c224be 2275
bccacf6c 2276 dfidp = get_fid(pdu, dfid);
b2c224be 2277 if (dfidp == NULL) {
ffd66876 2278 err = -ENOENT;
84dfb926 2279 goto out_nofid;
b2c224be
VJJ
2280 }
2281
bccacf6c 2282 oldfidp = get_fid(pdu, oldfid);
b2c224be 2283 if (oldfidp == NULL) {
ffd66876 2284 err = -ENOENT;
b2c224be
VJJ
2285 goto out;
2286 }
bccacf6c 2287 err = v9fs_co_link(pdu, oldfidp, dfidp, &name);
ffd66876
VJJ
2288 if (!err) {
2289 err = offset;
b2c224be 2290 }
b2c224be 2291out:
bccacf6c 2292 put_fid(pdu, dfidp);
84dfb926 2293out_nofid:
b2c224be
VJJ
2294 v9fs_string_free(&name);
2295 complete_pdu(s, pdu, err);
2296}
2297
532decb7 2298/* Only works with path name based fid */
ff06030f 2299static void v9fs_remove(void *opaque)
9f107513 2300{
5bae1900 2301 int32_t fid;
5bae1900 2302 int err = 0;
ae1ef571
VJ
2303 size_t offset = 7;
2304 V9fsFidState *fidp;
2305 V9fsPDU *pdu = opaque;
5bae1900 2306
ddca7f86
MK
2307 err = pdu_unmarshal(pdu, offset, "d", &fid);
2308 if (err < 0) {
2309 goto out_nofid;
2310 }
c572f23a 2311 trace_v9fs_remove(pdu->tag, pdu->id, fid);
5bae1900 2312
bccacf6c 2313 fidp = get_fid(pdu, fid);
ae1ef571 2314 if (fidp == NULL) {
5bae1900 2315 err = -EINVAL;
84dfb926 2316 goto out_nofid;
9f107513 2317 }
532decb7 2318 /* if fs driver is not path based, return EOPNOTSUPP */
c98f1d4a 2319 if (!(pdu->s->ctx.export_flags & V9FS_PATHNAME_FSCONTEXT)) {
532decb7
AK
2320 err = -EOPNOTSUPP;
2321 goto out_err;
2322 }
7a462745
AK
2323 /*
2324 * IF the file is unlinked, we cannot reopen
2325 * the file later. So don't reclaim fd
2326 */
bccacf6c 2327 err = v9fs_mark_fids_unreclaim(pdu, &fidp->path);
7a462745
AK
2328 if (err < 0) {
2329 goto out_err;
2330 }
bccacf6c 2331 err = v9fs_co_remove(pdu, &fidp->path);
ae1ef571
VJ
2332 if (!err) {
2333 err = offset;
2334 }
7a462745 2335out_err:
ae1ef571 2336 /* For TREMOVE we need to clunk the fid even on failed remove */
84dfb926 2337 clunk_fid(pdu->s, fidp->fid);
bccacf6c 2338 put_fid(pdu, fidp);
84dfb926 2339out_nofid:
ae1ef571 2340 complete_pdu(pdu->s, pdu, err);
9f107513
AL
2341}
2342
7834cf77
AK
2343static void v9fs_unlinkat(void *opaque)
2344{
2345 int err = 0;
2346 V9fsString name;
2347 int32_t dfid, flags;
2348 size_t offset = 7;
2289be19 2349 V9fsPath path;
7834cf77
AK
2350 V9fsFidState *dfidp;
2351 V9fsPDU *pdu = opaque;
7834cf77 2352
ddca7f86
MK
2353 v9fs_string_init(&name);
2354 err = pdu_unmarshal(pdu, offset, "dsd", &dfid, &name, &flags);
2355 if (err < 0) {
2356 goto out_nofid;
2357 }
bccacf6c 2358 dfidp = get_fid(pdu, dfid);
7834cf77
AK
2359 if (dfidp == NULL) {
2360 err = -EINVAL;
2361 goto out_nofid;
2362 }
7834cf77
AK
2363 /*
2364 * IF the file is unlinked, we cannot reopen
2365 * the file later. So don't reclaim fd
2366 */
2289be19 2367 v9fs_path_init(&path);
bccacf6c 2368 err = v9fs_co_name_to_path(pdu, &dfidp->path, name.data, &path);
2289be19
AK
2369 if (err < 0) {
2370 goto out_err;
2371 }
bccacf6c 2372 err = v9fs_mark_fids_unreclaim(pdu, &path);
7834cf77
AK
2373 if (err < 0) {
2374 goto out_err;
2375 }
bccacf6c 2376 err = v9fs_co_unlinkat(pdu, &dfidp->path, &name, flags);
7834cf77
AK
2377 if (!err) {
2378 err = offset;
2379 }
2380out_err:
bccacf6c 2381 put_fid(pdu, dfidp);
2289be19 2382 v9fs_path_free(&path);
7834cf77
AK
2383out_nofid:
2384 complete_pdu(pdu->s, pdu, err);
2385 v9fs_string_free(&name);
2386}
2387
2289be19
AK
2388
2389/* Only works with path name based fid */
bccacf6c 2390static int v9fs_complete_rename(V9fsPDU *pdu, V9fsFidState *fidp,
930b1e17 2391 int32_t newdirfid, V9fsString *name)
8cf89e00 2392{
930b1e17 2393 char *end;
c7b4b0b3 2394 int err = 0;
2289be19
AK
2395 V9fsPath new_path;
2396 V9fsFidState *tfidp;
bccacf6c 2397 V9fsState *s = pdu->s;
84dfb926 2398 V9fsFidState *dirfidp = NULL;
c7b4b0b3 2399 char *old_name, *new_name;
8cf89e00 2400
2289be19 2401 v9fs_path_init(&new_path);
930b1e17 2402 if (newdirfid != -1) {
bccacf6c 2403 dirfidp = get_fid(pdu, newdirfid);
c7b4b0b3
MK
2404 if (dirfidp == NULL) {
2405 err = -ENOENT;
84dfb926 2406 goto out_nofid;
c7b4b0b3 2407 }
d62dbb51 2408 BUG_ON(dirfidp->fid_type != P9_FID_NONE);
bccacf6c 2409 v9fs_co_name_to_path(pdu, &dirfidp->path, name->data, &new_path);
c7b4b0b3 2410 } else {
930b1e17 2411 old_name = fidp->path.data;
8cf89e00
AL
2412 end = strrchr(old_name, '/');
2413 if (end) {
2414 end++;
2415 } else {
2416 end = old_name;
2417 }
7267c094 2418 new_name = g_malloc0(end - old_name + name->size + 1);
c7b4b0b3 2419 strncat(new_name, old_name, end - old_name);
930b1e17 2420 strncat(new_name + (end - old_name), name->data, name->size);
bccacf6c 2421 v9fs_co_name_to_path(pdu, NULL, new_name, &new_path);
2289be19 2422 g_free(new_name);
c7b4b0b3 2423 }
bccacf6c 2424 err = v9fs_co_rename(pdu, &fidp->path, &new_path);
2289be19
AK
2425 if (err < 0) {
2426 goto out;
2427 }
2428 /*
2429 * Fixup fid's pointing to the old name to
2430 * start pointing to the new name
2431 */
2432 for (tfidp = s->fid_list; tfidp; tfidp = tfidp->next) {
2433 if (v9fs_path_is_ancestor(&fidp->path, &tfidp->path)) {
2434 /* replace the name */
2435 v9fs_fix_path(&tfidp->path, &new_path, strlen(fidp->path.data));
8cf89e00
AL
2436 }
2437 }
c7b4b0b3 2438out:
84dfb926 2439 if (dirfidp) {
bccacf6c 2440 put_fid(pdu, dirfidp);
84dfb926 2441 }
2289be19 2442 v9fs_path_free(&new_path);
84dfb926 2443out_nofid:
c7b4b0b3
MK
2444 return err;
2445}
2446
532decb7 2447/* Only works with path name based fid */
ff06030f 2448static void v9fs_rename(void *opaque)
c7b4b0b3
MK
2449{
2450 int32_t fid;
c7b4b0b3 2451 ssize_t err = 0;
930b1e17
AK
2452 size_t offset = 7;
2453 V9fsString name;
2454 int32_t newdirfid;
2455 V9fsFidState *fidp;
2456 V9fsPDU *pdu = opaque;
2457 V9fsState *s = pdu->s;
c7b4b0b3 2458
ddca7f86
MK
2459 v9fs_string_init(&name);
2460 err = pdu_unmarshal(pdu, offset, "dds", &fid, &newdirfid, &name);
2461 if (err < 0) {
2462 goto out_nofid;
2463 }
bccacf6c 2464 fidp = get_fid(pdu, fid);
930b1e17 2465 if (fidp == NULL) {
c7b4b0b3 2466 err = -ENOENT;
84dfb926 2467 goto out_nofid;
c7b4b0b3 2468 }
930b1e17 2469 BUG_ON(fidp->fid_type != P9_FID_NONE);
532decb7 2470 /* if fs driver is not path based, return EOPNOTSUPP */
c98f1d4a 2471 if (!(pdu->s->ctx.export_flags & V9FS_PATHNAME_FSCONTEXT)) {
532decb7
AK
2472 err = -EOPNOTSUPP;
2473 goto out;
2474 }
2475 v9fs_path_write_lock(s);
bccacf6c 2476 err = v9fs_complete_rename(pdu, fidp, newdirfid, &name);
532decb7 2477 v9fs_path_unlock(s);
930b1e17
AK
2478 if (!err) {
2479 err = offset;
2480 }
532decb7 2481out:
bccacf6c 2482 put_fid(pdu, fidp);
84dfb926 2483out_nofid:
930b1e17
AK
2484 complete_pdu(s, pdu, err);
2485 v9fs_string_free(&name);
c7b4b0b3
MK
2486}
2487
bccacf6c 2488static void v9fs_fix_fid_paths(V9fsPDU *pdu, V9fsPath *olddir,
2289be19
AK
2489 V9fsString *old_name, V9fsPath *newdir,
2490 V9fsString *new_name)
2491{
2492 V9fsFidState *tfidp;
2493 V9fsPath oldpath, newpath;
bccacf6c 2494 V9fsState *s = pdu->s;
2289be19
AK
2495
2496
2497 v9fs_path_init(&oldpath);
2498 v9fs_path_init(&newpath);
bccacf6c
AK
2499 v9fs_co_name_to_path(pdu, olddir, old_name->data, &oldpath);
2500 v9fs_co_name_to_path(pdu, newdir, new_name->data, &newpath);
2289be19
AK
2501
2502 /*
2503 * Fixup fid's pointing to the old name to
2504 * start pointing to the new name
2505 */
2506 for (tfidp = s->fid_list; tfidp; tfidp = tfidp->next) {
2507 if (v9fs_path_is_ancestor(&oldpath, &tfidp->path)) {
2508 /* replace the name */
2509 v9fs_fix_path(&tfidp->path, &newpath, strlen(oldpath.data));
2510 }
2511 }
2512 v9fs_path_free(&oldpath);
2513 v9fs_path_free(&newpath);
2514}
2515
bccacf6c 2516static int v9fs_complete_renameat(V9fsPDU *pdu, int32_t olddirfid,
89bf6593
AK
2517 V9fsString *old_name, int32_t newdirfid,
2518 V9fsString *new_name)
2519{
2520 int err = 0;
bccacf6c 2521 V9fsState *s = pdu->s;
89bf6593
AK
2522 V9fsFidState *newdirfidp = NULL, *olddirfidp = NULL;
2523
bccacf6c 2524 olddirfidp = get_fid(pdu, olddirfid);
89bf6593
AK
2525 if (olddirfidp == NULL) {
2526 err = -ENOENT;
2527 goto out;
2528 }
89bf6593 2529 if (newdirfid != -1) {
bccacf6c 2530 newdirfidp = get_fid(pdu, newdirfid);
89bf6593
AK
2531 if (newdirfidp == NULL) {
2532 err = -ENOENT;
2533 goto out;
2534 }
89bf6593 2535 } else {
bccacf6c 2536 newdirfidp = get_fid(pdu, olddirfid);
89bf6593
AK
2537 }
2538
bccacf6c 2539 err = v9fs_co_renameat(pdu, &olddirfidp->path, old_name,
2289be19
AK
2540 &newdirfidp->path, new_name);
2541 if (err < 0) {
2542 goto out;
89bf6593 2543 }
c98f1d4a 2544 if (s->ctx.export_flags & V9FS_PATHNAME_FSCONTEXT) {
532decb7 2545 /* Only for path based fid we need to do the below fixup */
bccacf6c 2546 v9fs_fix_fid_paths(pdu, &olddirfidp->path, old_name,
532decb7
AK
2547 &newdirfidp->path, new_name);
2548 }
89bf6593
AK
2549out:
2550 if (olddirfidp) {
bccacf6c 2551 put_fid(pdu, olddirfidp);
89bf6593
AK
2552 }
2553 if (newdirfidp) {
bccacf6c 2554 put_fid(pdu, newdirfidp);
89bf6593 2555 }
89bf6593
AK
2556 return err;
2557}
2558
2559static void v9fs_renameat(void *opaque)
2560{
2561 ssize_t err = 0;
2562 size_t offset = 7;
2563 V9fsPDU *pdu = opaque;
2564 V9fsState *s = pdu->s;
2565 int32_t olddirfid, newdirfid;
2566 V9fsString old_name, new_name;
2567
ddca7f86
MK
2568 v9fs_string_init(&old_name);
2569 v9fs_string_init(&new_name);
2570 err = pdu_unmarshal(pdu, offset, "dsds", &olddirfid,
2571 &old_name, &newdirfid, &new_name);
2572 if (err < 0) {
2573 goto out_err;
2574 }
89bf6593 2575
532decb7 2576 v9fs_path_write_lock(s);
bccacf6c
AK
2577 err = v9fs_complete_renameat(pdu, olddirfid,
2578 &old_name, newdirfid, &new_name);
532decb7 2579 v9fs_path_unlock(s);
89bf6593
AK
2580 if (!err) {
2581 err = offset;
2582 }
ddca7f86
MK
2583
2584out_err:
89bf6593
AK
2585 complete_pdu(s, pdu, err);
2586 v9fs_string_free(&old_name);
2587 v9fs_string_free(&new_name);
2588}
2589
b81d685e 2590static void v9fs_wstat(void *opaque)
8cf89e00 2591{
b81d685e
AK
2592 int32_t fid;
2593 int err = 0;
2594 int16_t unused;
2595 V9fsStat v9stat;
2596 size_t offset = 7;
2597 struct stat stbuf;
2598 V9fsFidState *fidp;
2599 V9fsPDU *pdu = opaque;
2600 V9fsState *s = pdu->s;
8cf89e00 2601
ddca7f86
MK
2602 v9fs_stat_init(&v9stat);
2603 err = pdu_unmarshal(pdu, offset, "dwS", &fid, &unused, &v9stat);
2604 if (err < 0) {
2605 goto out_nofid;
2606 }
c572f23a
HPB
2607 trace_v9fs_wstat(pdu->tag, pdu->id, fid,
2608 v9stat.mode, v9stat.atime, v9stat.mtime);
84dfb926 2609
bccacf6c 2610 fidp = get_fid(pdu, fid);
b81d685e
AK
2611 if (fidp == NULL) {
2612 err = -EINVAL;
84dfb926 2613 goto out_nofid;
8cf89e00 2614 }
b81d685e
AK
2615 /* do we need to sync the file? */
2616 if (donttouch_stat(&v9stat)) {
bccacf6c 2617 err = v9fs_co_fsync(pdu, fidp, 0);
8cf89e00
AL
2618 goto out;
2619 }
b81d685e
AK
2620 if (v9stat.mode != -1) {
2621 uint32_t v9_mode;
bccacf6c 2622 err = v9fs_co_lstat(pdu, &fidp->path, &stbuf);
b81d685e
AK
2623 if (err < 0) {
2624 goto out;
2625 }
2626 v9_mode = stat_to_v9mode(&stbuf);
2627 if ((v9stat.mode & P9_STAT_MODE_TYPE_BITS) !=
2628 (v9_mode & P9_STAT_MODE_TYPE_BITS)) {
2629 /* Attempting to change the type */
2630 err = -EIO;
2631 goto out;
2632 }
bccacf6c 2633 err = v9fs_co_chmod(pdu, &fidp->path,
b81d685e
AK
2634 v9mode_to_mode(v9stat.mode,
2635 &v9stat.extension));
2636 if (err < 0) {
2637 goto out;
2638 }
2639 }
2640 if (v9stat.mtime != -1 || v9stat.atime != -1) {
8fc39ae4 2641 struct timespec times[2];
b81d685e
AK
2642 if (v9stat.atime != -1) {
2643 times[0].tv_sec = v9stat.atime;
8fc39ae4
SK
2644 times[0].tv_nsec = 0;
2645 } else {
2646 times[0].tv_nsec = UTIME_OMIT;
2647 }
b81d685e
AK
2648 if (v9stat.mtime != -1) {
2649 times[1].tv_sec = v9stat.mtime;
8fc39ae4
SK
2650 times[1].tv_nsec = 0;
2651 } else {
2652 times[1].tv_nsec = UTIME_OMIT;
2653 }
bccacf6c 2654 err = v9fs_co_utimensat(pdu, &fidp->path, times);
b81d685e
AK
2655 if (err < 0) {
2656 goto out;
8cf89e00
AL
2657 }
2658 }
b81d685e 2659 if (v9stat.n_gid != -1 || v9stat.n_uid != -1) {
bccacf6c 2660 err = v9fs_co_chown(pdu, &fidp->path, v9stat.n_uid, v9stat.n_gid);
b81d685e 2661 if (err < 0) {
8cf89e00 2662 goto out;
b81d685e 2663 }
8cf89e00 2664 }
b81d685e 2665 if (v9stat.name.size != 0) {
bccacf6c 2666 err = v9fs_complete_rename(pdu, fidp, -1, &v9stat.name);
b81d685e
AK
2667 if (err < 0) {
2668 goto out;
2669 }
8cf89e00 2670 }
b81d685e 2671 if (v9stat.length != -1) {
bccacf6c 2672 err = v9fs_co_truncate(pdu, &fidp->path, v9stat.length);
b81d685e
AK
2673 if (err < 0) {
2674 goto out;
2675 }
8cf89e00 2676 }
b81d685e 2677 err = offset;
8cf89e00 2678out:
bccacf6c 2679 put_fid(pdu, fidp);
84dfb926 2680out_nofid:
b81d685e
AK
2681 v9fs_stat_free(&v9stat);
2682 complete_pdu(s, pdu, err);
9f107513
AL
2683}
2684
88a4763e
AK
2685static int v9fs_fill_statfs(V9fsState *s, V9fsPDU *pdu, struct statfs *stbuf)
2686{
2687 uint32_t f_type;
2688 uint32_t f_bsize;
2689 uint64_t f_blocks;
2690 uint64_t f_bfree;
2691 uint64_t f_bavail;
2692 uint64_t f_files;
2693 uint64_t f_ffree;
2694 uint64_t fsid_val;
2695 uint32_t f_namelen;
2696 size_t offset = 7;
5e94c103
MK
2697 int32_t bsize_factor;
2698
5e94c103
MK
2699 /*
2700 * compute bsize factor based on host file system block size
2701 * and client msize
2702 */
88a4763e 2703 bsize_factor = (s->msize - P9_IOHDRSZ)/stbuf->f_bsize;
5e94c103
MK
2704 if (!bsize_factor) {
2705 bsize_factor = 1;
2706 }
88a4763e
AK
2707 f_type = stbuf->f_type;
2708 f_bsize = stbuf->f_bsize;
2709 f_bsize *= bsize_factor;
5e94c103
MK
2710 /*
2711 * f_bsize is adjusted(multiplied) by bsize factor, so we need to
2712 * adjust(divide) the number of blocks, free blocks and available
2713 * blocks by bsize factor
2714 */
88a4763e
AK
2715 f_blocks = stbuf->f_blocks/bsize_factor;
2716 f_bfree = stbuf->f_bfree/bsize_factor;
2717 f_bavail = stbuf->f_bavail/bsize_factor;
2718 f_files = stbuf->f_files;
2719 f_ffree = stbuf->f_ffree;
2720 fsid_val = (unsigned int) stbuf->f_fsid.__val[0] |
2721 (unsigned long long)stbuf->f_fsid.__val[1] << 32;
2722 f_namelen = stbuf->f_namelen;
be940c87 2723
88a4763e
AK
2724 return pdu_marshal(pdu, offset, "ddqqqqqqd",
2725 f_type, f_bsize, f_blocks, f_bfree,
2726 f_bavail, f_files, f_ffree,
2727 fsid_val, f_namelen);
be940c87
MK
2728}
2729
ff06030f 2730static void v9fs_statfs(void *opaque)
be940c87 2731{
88a4763e
AK
2732 int32_t fid;
2733 ssize_t retval = 0;
2734 size_t offset = 7;
2735 V9fsFidState *fidp;
2736 struct statfs stbuf;
ff06030f
VJJ
2737 V9fsPDU *pdu = opaque;
2738 V9fsState *s = pdu->s;
be940c87 2739
ddca7f86
MK
2740 retval = pdu_unmarshal(pdu, offset, "d", &fid);
2741 if (retval < 0) {
2742 goto out_nofid;
2743 }
bccacf6c 2744 fidp = get_fid(pdu, fid);
88a4763e
AK
2745 if (fidp == NULL) {
2746 retval = -ENOENT;
84dfb926 2747 goto out_nofid;
be940c87 2748 }
bccacf6c 2749 retval = v9fs_co_statfs(pdu, &fidp->path, &stbuf);
88a4763e
AK
2750 if (retval < 0) {
2751 goto out;
2752 }
ddca7f86
MK
2753 retval = v9fs_fill_statfs(s, pdu, &stbuf);
2754 if (retval < 0) {
2755 goto out;
2756 }
2757 retval += offset;
be940c87 2758out:
bccacf6c 2759 put_fid(pdu, fidp);
84dfb926 2760out_nofid:
88a4763e 2761 complete_pdu(s, pdu, retval);
be940c87
MK
2762}
2763
ff06030f 2764static void v9fs_mknod(void *opaque)
5268cecc 2765{
1b733fed
AK
2766
2767 int mode;
2768 gid_t gid;
5268cecc 2769 int32_t fid;
1b733fed 2770 V9fsQID qid;
5268cecc 2771 int err = 0;
5268cecc 2772 int major, minor;
1b733fed
AK
2773 size_t offset = 7;
2774 V9fsString name;
2775 struct stat stbuf;
1b733fed
AK
2776 V9fsFidState *fidp;
2777 V9fsPDU *pdu = opaque;
2778 V9fsState *s = pdu->s;
5268cecc 2779
ddca7f86
MK
2780 v9fs_string_init(&name);
2781 err = pdu_unmarshal(pdu, offset, "dsdddd", &fid, &name, &mode,
2782 &major, &minor, &gid);
2783 if (err < 0) {
2784 goto out_nofid;
2785 }
c572f23a 2786 trace_v9fs_mknod(pdu->tag, pdu->id, fid, mode, major, minor);
5268cecc 2787
bccacf6c 2788 fidp = get_fid(pdu, fid);
5268cecc
MK
2789 if (fidp == NULL) {
2790 err = -ENOENT;
84dfb926 2791 goto out_nofid;
5268cecc 2792 }
bccacf6c 2793 err = v9fs_co_mknod(pdu, fidp, &name, fidp->uid, gid,
02cb7f3a 2794 makedev(major, minor), mode, &stbuf);
1b733fed
AK
2795 if (err < 0) {
2796 goto out;
2797 }
2798 stat_to_qid(&stbuf, &qid);
ddca7f86
MK
2799 err = pdu_marshal(pdu, offset, "Q", &qid);
2800 if (err < 0) {
2801 goto out;
2802 }
2803 err += offset;
7999f7e1
AK
2804 trace_v9fs_mknod_return(pdu->tag, pdu->id,
2805 qid.type, qid.version, qid.path);
5268cecc 2806out:
bccacf6c 2807 put_fid(pdu, fidp);
84dfb926 2808out_nofid:
1b733fed 2809 complete_pdu(s, pdu, err);
1b733fed 2810 v9fs_string_free(&name);
5268cecc
MK
2811}
2812
82cc3ee8
MK
2813/*
2814 * Implement posix byte range locking code
2815 * Server side handling of locking code is very simple, because 9p server in
2816 * QEMU can handle only one client. And most of the lock handling
2817 * (like conflict, merging) etc is done by the VFS layer itself, so no need to
2818 * do any thing in * qemu 9p server side lock code path.
2819 * So when a TLOCK request comes, always return success
2820 */
ff06030f 2821static void v9fs_lock(void *opaque)
82cc3ee8 2822{
0c27bf2a 2823 int8_t status;
ddca7f86 2824 V9fsFlock flock;
0c27bf2a
AK
2825 size_t offset = 7;
2826 struct stat stbuf;
2827 V9fsFidState *fidp;
2828 int32_t fid, err = 0;
ff06030f
VJJ
2829 V9fsPDU *pdu = opaque;
2830 V9fsState *s = pdu->s;
82cc3ee8 2831
ddca7f86
MK
2832 status = P9_LOCK_ERROR;
2833 v9fs_string_init(&flock.client_id);
2834 err = pdu_unmarshal(pdu, offset, "dbdqqds", &fid, &flock.type,
2835 &flock.flags, &flock.start, &flock.length,
2836 &flock.proc_id, &flock.client_id);
2837 if (err < 0) {
2838 goto out_nofid;
2839 }
c572f23a 2840 trace_v9fs_lock(pdu->tag, pdu->id, fid,
ddca7f86 2841 flock.type, flock.start, flock.length);
c572f23a 2842
82cc3ee8
MK
2843
2844 /* We support only block flag now (that too ignored currently) */
ddca7f86 2845 if (flock.flags & ~P9_LOCK_FLAGS_BLOCK) {
82cc3ee8 2846 err = -EINVAL;
84dfb926 2847 goto out_nofid;
82cc3ee8 2848 }
bccacf6c 2849 fidp = get_fid(pdu, fid);
0c27bf2a 2850 if (fidp == NULL) {
82cc3ee8 2851 err = -ENOENT;
84dfb926 2852 goto out_nofid;
82cc3ee8 2853 }
cc720ddb 2854 err = v9fs_co_fstat(pdu, fidp, &stbuf);
82cc3ee8 2855 if (err < 0) {
82cc3ee8
MK
2856 goto out;
2857 }
0c27bf2a 2858 status = P9_LOCK_SUCCESS;
82cc3ee8 2859out:
bccacf6c 2860 put_fid(pdu, fidp);
84dfb926 2861out_nofid:
ddca7f86
MK
2862 err = pdu_marshal(pdu, offset, "b", status);
2863 if (err > 0) {
2864 err += offset;
2865 }
c572f23a 2866 trace_v9fs_lock_return(pdu->tag, pdu->id, status);
0c27bf2a 2867 complete_pdu(s, pdu, err);
ddca7f86 2868 v9fs_string_free(&flock.client_id);
82cc3ee8
MK
2869}
2870
8f354003
MK
2871/*
2872 * When a TGETLOCK request comes, always return success because all lock
2873 * handling is done by client's VFS layer.
2874 */
ff06030f 2875static void v9fs_getlock(void *opaque)
8f354003 2876{
e4e414a4
AK
2877 size_t offset = 7;
2878 struct stat stbuf;
2879 V9fsFidState *fidp;
ddca7f86 2880 V9fsGetlock glock;
e4e414a4 2881 int32_t fid, err = 0;
ff06030f
VJJ
2882 V9fsPDU *pdu = opaque;
2883 V9fsState *s = pdu->s;
8f354003 2884
ddca7f86
MK
2885 v9fs_string_init(&glock.client_id);
2886 err = pdu_unmarshal(pdu, offset, "dbqqds", &fid, &glock.type,
2887 &glock.start, &glock.length, &glock.proc_id,
2888 &glock.client_id);
2889 if (err < 0) {
2890 goto out_nofid;
2891 }
c572f23a 2892 trace_v9fs_getlock(pdu->tag, pdu->id, fid,
ddca7f86 2893 glock.type, glock.start, glock.length);
c572f23a 2894
bccacf6c 2895 fidp = get_fid(pdu, fid);
e4e414a4 2896 if (fidp == NULL) {
8f354003 2897 err = -ENOENT;
84dfb926 2898 goto out_nofid;
8f354003 2899 }
cc720ddb 2900 err = v9fs_co_fstat(pdu, fidp, &stbuf);
8f354003 2901 if (err < 0) {
8f354003
MK
2902 goto out;
2903 }
ddca7f86
MK
2904 glock.type = P9_LOCK_TYPE_UNLCK;
2905 err = pdu_marshal(pdu, offset, "bqqds", glock.type,
2906 glock.start, glock.length, glock.proc_id,
2907 &glock.client_id);
2908 if (err < 0) {
2909 goto out;
2910 }
2911 err += offset;
2912 trace_v9fs_getlock_return(pdu->tag, pdu->id, glock.type, glock.start,
2913 glock.length, glock.proc_id);
8f354003 2914out:
bccacf6c 2915 put_fid(pdu, fidp);
84dfb926 2916out_nofid:
e4e414a4 2917 complete_pdu(s, pdu, err);
ddca7f86 2918 v9fs_string_free(&glock.client_id);
8f354003
MK
2919}
2920
ff06030f 2921static void v9fs_mkdir(void *opaque)
b67592ea 2922{
ff06030f 2923 V9fsPDU *pdu = opaque;
e84861f7 2924 size_t offset = 7;
b67592ea 2925 int32_t fid;
e84861f7 2926 struct stat stbuf;
e84861f7 2927 V9fsQID qid;
02cb7f3a 2928 V9fsString name;
b67592ea
MK
2929 V9fsFidState *fidp;
2930 gid_t gid;
2931 int mode;
e84861f7 2932 int err = 0;
b67592ea 2933
ddca7f86
MK
2934 v9fs_string_init(&name);
2935 err = pdu_unmarshal(pdu, offset, "dsdd", &fid, &name, &mode, &gid);
2936 if (err < 0) {
2937 goto out_nofid;
2938 }
c572f23a
HPB
2939 trace_v9fs_mkdir(pdu->tag, pdu->id, fid, name.data, mode, gid);
2940
bccacf6c 2941 fidp = get_fid(pdu, fid);
b67592ea
MK
2942 if (fidp == NULL) {
2943 err = -ENOENT;
84dfb926 2944 goto out_nofid;
b67592ea 2945 }
bccacf6c 2946 err = v9fs_co_mkdir(pdu, fidp, &name, mode, fidp->uid, gid, &stbuf);
e84861f7
VJ
2947 if (err < 0) {
2948 goto out;
2949 }
2950 stat_to_qid(&stbuf, &qid);
ddca7f86
MK
2951 err = pdu_marshal(pdu, offset, "Q", &qid);
2952 if (err < 0) {
2953 goto out;
2954 }
2955 err += offset;
7999f7e1
AK
2956 trace_v9fs_mkdir_return(pdu->tag, pdu->id,
2957 qid.type, qid.version, qid.path, err);
b67592ea 2958out:
bccacf6c 2959 put_fid(pdu, fidp);
84dfb926 2960out_nofid:
e84861f7 2961 complete_pdu(pdu->s, pdu, err);
e84861f7 2962 v9fs_string_free(&name);
b67592ea
MK
2963}
2964
ff06030f 2965static void v9fs_xattrwalk(void *opaque)
fa32ef88 2966{
670185a6
AK
2967 int64_t size;
2968 V9fsString name;
fa32ef88 2969 ssize_t err = 0;
670185a6 2970 size_t offset = 7;
fa32ef88 2971 int32_t fid, newfid;
670185a6 2972 V9fsFidState *file_fidp;
84dfb926 2973 V9fsFidState *xattr_fidp = NULL;
670185a6
AK
2974 V9fsPDU *pdu = opaque;
2975 V9fsState *s = pdu->s;
fa32ef88 2976
ddca7f86
MK
2977 v9fs_string_init(&name);
2978 err = pdu_unmarshal(pdu, offset, "dds", &fid, &newfid, &name);
2979 if (err < 0) {
2980 goto out_nofid;
2981 }
c572f23a
HPB
2982 trace_v9fs_xattrwalk(pdu->tag, pdu->id, fid, newfid, name.data);
2983
bccacf6c 2984 file_fidp = get_fid(pdu, fid);
670185a6 2985 if (file_fidp == NULL) {
fa32ef88 2986 err = -ENOENT;
84dfb926 2987 goto out_nofid;
fa32ef88 2988 }
670185a6
AK
2989 xattr_fidp = alloc_fid(s, newfid);
2990 if (xattr_fidp == NULL) {
fa32ef88
AK
2991 err = -EINVAL;
2992 goto out;
2993 }
2289be19 2994 v9fs_path_copy(&xattr_fidp->path, &file_fidp->path);
ddca7f86 2995 if (name.data == NULL) {
fa32ef88
AK
2996 /*
2997 * listxattr request. Get the size first
2998 */
bccacf6c 2999 size = v9fs_co_llistxattr(pdu, &xattr_fidp->path, NULL, 0);
670185a6
AK
3000 if (size < 0) {
3001 err = size;
84dfb926 3002 clunk_fid(s, xattr_fidp->fid);
670185a6 3003 goto out;
fa32ef88 3004 }
670185a6
AK
3005 /*
3006 * Read the xattr value
3007 */
3008 xattr_fidp->fs.xattr.len = size;
3009 xattr_fidp->fid_type = P9_FID_XATTR;
3010 xattr_fidp->fs.xattr.copied_len = -1;
3011 if (size) {
7267c094 3012 xattr_fidp->fs.xattr.value = g_malloc(size);
bccacf6c 3013 err = v9fs_co_llistxattr(pdu, &xattr_fidp->path,
670185a6
AK
3014 xattr_fidp->fs.xattr.value,
3015 xattr_fidp->fs.xattr.len);
3016 if (err < 0) {
84dfb926 3017 clunk_fid(s, xattr_fidp->fid);
670185a6
AK
3018 goto out;
3019 }
3020 }
ddca7f86
MK
3021 err = pdu_marshal(pdu, offset, "q", size);
3022 if (err < 0) {
3023 goto out;
3024 }
3025 err += offset;
fa32ef88
AK
3026 } else {
3027 /*
3028 * specific xattr fid. We check for xattr
3029 * presence also collect the xattr size
3030 */
bccacf6c 3031 size = v9fs_co_lgetxattr(pdu, &xattr_fidp->path,
670185a6
AK
3032 &name, NULL, 0);
3033 if (size < 0) {
3034 err = size;
84dfb926 3035 clunk_fid(s, xattr_fidp->fid);
670185a6 3036 goto out;
fa32ef88 3037 }
670185a6
AK
3038 /*
3039 * Read the xattr value
3040 */
3041 xattr_fidp->fs.xattr.len = size;
3042 xattr_fidp->fid_type = P9_FID_XATTR;
3043 xattr_fidp->fs.xattr.copied_len = -1;
3044 if (size) {
7267c094 3045 xattr_fidp->fs.xattr.value = g_malloc(size);
bccacf6c 3046 err = v9fs_co_lgetxattr(pdu, &xattr_fidp->path,
670185a6
AK
3047 &name, xattr_fidp->fs.xattr.value,
3048 xattr_fidp->fs.xattr.len);
3049 if (err < 0) {
84dfb926 3050 clunk_fid(s, xattr_fidp->fid);
670185a6
AK
3051 goto out;
3052 }
3053 }
ddca7f86
MK
3054 err = pdu_marshal(pdu, offset, "q", size);
3055 if (err < 0) {
3056 goto out;
3057 }
3058 err += offset;
fa32ef88 3059 }
7999f7e1 3060 trace_v9fs_xattrwalk_return(pdu->tag, pdu->id, size);
fa32ef88 3061out:
bccacf6c 3062 put_fid(pdu, file_fidp);
84dfb926 3063 if (xattr_fidp) {
bccacf6c 3064 put_fid(pdu, xattr_fidp);
84dfb926
AK
3065 }
3066out_nofid:
670185a6
AK
3067 complete_pdu(s, pdu, err);
3068 v9fs_string_free(&name);
fa32ef88
AK
3069}
3070
ff06030f 3071static void v9fs_xattrcreate(void *opaque)
10b468bd
AK
3072{
3073 int flags;
3074 int32_t fid;
f10ff58d 3075 int64_t size;
10b468bd 3076 ssize_t err = 0;
f10ff58d
AK
3077 V9fsString name;
3078 size_t offset = 7;
3079 V9fsFidState *file_fidp;
3080 V9fsFidState *xattr_fidp;
3081 V9fsPDU *pdu = opaque;
3082 V9fsState *s = pdu->s;
10b468bd 3083
ddca7f86
MK
3084 v9fs_string_init(&name);
3085 err = pdu_unmarshal(pdu, offset, "dsqd", &fid, &name, &size, &flags);
3086 if (err < 0) {
3087 goto out_nofid;
3088 }
c572f23a 3089 trace_v9fs_xattrcreate(pdu->tag, pdu->id, fid, name.data, size, flags);
10b468bd 3090
bccacf6c 3091 file_fidp = get_fid(pdu, fid);
f10ff58d 3092 if (file_fidp == NULL) {
10b468bd 3093 err = -EINVAL;
84dfb926 3094 goto out_nofid;
10b468bd 3095 }
10b468bd 3096 /* Make the file fid point to xattr */
f10ff58d
AK
3097 xattr_fidp = file_fidp;
3098 xattr_fidp->fid_type = P9_FID_XATTR;
3099 xattr_fidp->fs.xattr.copied_len = 0;
3100 xattr_fidp->fs.xattr.len = size;
3101 xattr_fidp->fs.xattr.flags = flags;
3102 v9fs_string_init(&xattr_fidp->fs.xattr.name);
3103 v9fs_string_copy(&xattr_fidp->fs.xattr.name, &name);
3104 if (size) {
7267c094 3105 xattr_fidp->fs.xattr.value = g_malloc(size);
f10ff58d
AK
3106 } else {
3107 xattr_fidp->fs.xattr.value = NULL;
3108 }
3109 err = offset;
bccacf6c 3110 put_fid(pdu, file_fidp);
84dfb926 3111out_nofid:
f10ff58d
AK
3112 complete_pdu(s, pdu, err);
3113 v9fs_string_free(&name);
10b468bd 3114}
fa32ef88 3115
ff06030f 3116static void v9fs_readlink(void *opaque)
df0973a4 3117{
ff06030f 3118 V9fsPDU *pdu = opaque;
7a5ca31e
VJ
3119 size_t offset = 7;
3120 V9fsString target;
df0973a4 3121 int32_t fid;
df0973a4
MK
3122 int err = 0;
3123 V9fsFidState *fidp;
3124
ddca7f86
MK
3125 err = pdu_unmarshal(pdu, offset, "d", &fid);
3126 if (err < 0) {
3127 goto out_nofid;
3128 }
c572f23a 3129 trace_v9fs_readlink(pdu->tag, pdu->id, fid);
bccacf6c 3130 fidp = get_fid(pdu, fid);
df0973a4
MK
3131 if (fidp == NULL) {
3132 err = -ENOENT;
84dfb926 3133 goto out_nofid;
df0973a4
MK
3134 }
3135
7a5ca31e 3136 v9fs_string_init(&target);
bccacf6c 3137 err = v9fs_co_readlink(pdu, &fidp->path, &target);
7a5ca31e
VJ
3138 if (err < 0) {
3139 goto out;
3140 }
ddca7f86
MK
3141 err = pdu_marshal(pdu, offset, "s", &target);
3142 if (err < 0) {
3143 v9fs_string_free(&target);
3144 goto out;
3145 }
3146 err += offset;
7999f7e1 3147 trace_v9fs_readlink_return(pdu->tag, pdu->id, target.data);
7a5ca31e 3148 v9fs_string_free(&target);
df0973a4 3149out:
bccacf6c 3150 put_fid(pdu, fidp);
84dfb926 3151out_nofid:
7a5ca31e 3152 complete_pdu(pdu->s, pdu, err);
df0973a4
MK
3153}
3154
ff06030f 3155static CoroutineEntry *pdu_co_handlers[] = {
c18e2f94 3156 [P9_TREADDIR] = v9fs_readdir,
be940c87 3157 [P9_TSTATFS] = v9fs_statfs,
00ede4c2 3158 [P9_TGETATTR] = v9fs_getattr,
c79ce737 3159 [P9_TSETATTR] = v9fs_setattr,
fa32ef88 3160 [P9_TXATTRWALK] = v9fs_xattrwalk,
10b468bd 3161 [P9_TXATTRCREATE] = v9fs_xattrcreate,
5268cecc 3162 [P9_TMKNOD] = v9fs_mknod,
c7b4b0b3 3163 [P9_TRENAME] = v9fs_rename,
82cc3ee8 3164 [P9_TLOCK] = v9fs_lock,
8f354003 3165 [P9_TGETLOCK] = v9fs_getlock,
89bf6593 3166 [P9_TRENAMEAT] = v9fs_renameat,
df0973a4 3167 [P9_TREADLINK] = v9fs_readlink,
7834cf77 3168 [P9_TUNLINKAT] = v9fs_unlinkat,
b67592ea 3169 [P9_TMKDIR] = v9fs_mkdir,
9f107513 3170 [P9_TVERSION] = v9fs_version,
771e9d4c 3171 [P9_TLOPEN] = v9fs_open,
9f107513
AL
3172 [P9_TATTACH] = v9fs_attach,
3173 [P9_TSTAT] = v9fs_stat,
3174 [P9_TWALK] = v9fs_walk,
3175 [P9_TCLUNK] = v9fs_clunk,
b41e95d3 3176 [P9_TFSYNC] = v9fs_fsync,
9f107513
AL
3177 [P9_TOPEN] = v9fs_open,
3178 [P9_TREAD] = v9fs_read,
3179#if 0
3180 [P9_TAUTH] = v9fs_auth,
3181#endif
3182 [P9_TFLUSH] = v9fs_flush,
b2c224be 3183 [P9_TLINK] = v9fs_link,
08c60fc9 3184 [P9_TSYMLINK] = v9fs_symlink,
9f107513 3185 [P9_TCREATE] = v9fs_create,
c1568af5 3186 [P9_TLCREATE] = v9fs_lcreate,
9f107513
AL
3187 [P9_TWRITE] = v9fs_write,
3188 [P9_TWSTAT] = v9fs_wstat,
3189 [P9_TREMOVE] = v9fs_remove,
3190};
3191
ff06030f 3192static void v9fs_op_not_supp(void *opaque)
5c3234c6 3193{
ff06030f
VJJ
3194 V9fsPDU *pdu = opaque;
3195 complete_pdu(pdu->s, pdu, -EOPNOTSUPP);
5c3234c6
AK
3196}
3197
2c74c2cb
MK
3198static void v9fs_fs_ro(void *opaque)
3199{
3200 V9fsPDU *pdu = opaque;
3201 complete_pdu(pdu->s, pdu, -EROFS);
3202}
3203
3204static inline bool is_read_only_op(V9fsPDU *pdu)
3205{
3206 switch (pdu->id) {
3207 case P9_TREADDIR:
3208 case P9_TSTATFS:
3209 case P9_TGETATTR:
3210 case P9_TXATTRWALK:
3211 case P9_TLOCK:
3212 case P9_TGETLOCK:
3213 case P9_TREADLINK:
3214 case P9_TVERSION:
3215 case P9_TLOPEN:
3216 case P9_TATTACH:
3217 case P9_TSTAT:
3218 case P9_TWALK:
3219 case P9_TCLUNK:
3220 case P9_TFSYNC:
3221 case P9_TOPEN:
3222 case P9_TREAD:
3223 case P9_TAUTH:
3224 case P9_TFLUSH:
3225 return 1;
3226 default:
3227 return 0;
3228 }
3229}
3230
9f107513
AL
3231static void submit_pdu(V9fsState *s, V9fsPDU *pdu)
3232{
ff06030f
VJJ
3233 Coroutine *co;
3234 CoroutineEntry *handler;
9f107513 3235
ff06030f
VJJ
3236 if (pdu->id >= ARRAY_SIZE(pdu_co_handlers) ||
3237 (pdu_co_handlers[pdu->id] == NULL)) {
5c3234c6
AK
3238 handler = v9fs_op_not_supp;
3239 } else {
ff06030f 3240 handler = pdu_co_handlers[pdu->id];
5c3234c6 3241 }
2c74c2cb
MK
3242
3243 if (is_ro_export(&s->ctx) && !is_read_only_op(pdu)) {
3244 handler = v9fs_fs_ro;
3245 }
ff06030f
VJJ
3246 co = qemu_coroutine_create(handler);
3247 qemu_coroutine_enter(co, pdu);
9f107513
AL
3248}
3249
f4f61d27 3250void handle_9p_output(VirtIODevice *vdev, VirtQueue *vq)
9f107513
AL
3251{
3252 V9fsState *s = (V9fsState *)vdev;
3253 V9fsPDU *pdu;
3254 ssize_t len;
3255
3256 while ((pdu = alloc_pdu(s)) &&
3257 (len = virtqueue_pop(vq, &pdu->elem)) != 0) {
3258 uint8_t *ptr;
ff06030f 3259 pdu->s = s;
9f107513
AL
3260 BUG_ON(pdu->elem.out_num == 0 || pdu->elem.in_num == 0);
3261 BUG_ON(pdu->elem.out_sg[0].iov_len < 7);
3262
3263 ptr = pdu->elem.out_sg[0].iov_base;
3264
67d6fa53 3265 pdu->size = le32_to_cpu(*(uint32_t *)ptr);
9f107513 3266 pdu->id = ptr[4];
67d6fa53 3267 pdu->tag = le16_to_cpu(*(uint16_t *)(ptr + 5));
bccacf6c 3268 qemu_co_queue_init(&pdu->complete);
9f107513
AL
3269 submit_pdu(s, pdu);
3270 }
9f107513
AL
3271 free_pdu(s, pdu);
3272}
7a462745
AK
3273
3274void virtio_9p_set_fd_limit(void)
3275{
3276 struct rlimit rlim;
3277 if (getrlimit(RLIMIT_NOFILE, &rlim) < 0) {
3278 fprintf(stderr, "Failed to get the resource limit\n");
3279 exit(1);
3280 }
3281 open_fd_hw = rlim.rlim_cur - MIN(400, rlim.rlim_cur/3);
3282 open_fd_rc = rlim.rlim_cur/2;
3283}