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
14 /*
15 * Not so fast! You might want to read the 9p developer docs first:
16 * https://wiki.qemu.org/Documentation/9p
17 */
18
19 #include "qemu/osdep.h"
20 #ifdef CONFIG_LINUX
21 #include <linux/limits.h>
22 #endif
23 #include <glib/gprintf.h>
24 #include "hw/virtio/virtio.h"
25 #include "qapi/error.h"
26 #include "qemu/error-report.h"
27 #include "qemu/iov.h"
28 #include "qemu/main-loop.h"
29 #include "qemu/sockets.h"
30 #include "virtio-9p.h"
31 #include "fsdev/qemu-fsdev.h"
32 #include "9p-xattr.h"
33 #include "9p-util.h"
34 #include "coth.h"
35 #include "trace.h"
36 #include "migration/blocker.h"
37 #include "qemu/xxhash.h"
38 #include <math.h>
39
40 int open_fd_hw;
41 int total_open_fd;
42 static int open_fd_rc;
43
44 enum {
45 Oread = 0x00,
46 Owrite = 0x01,
47 Ordwr = 0x02,
48 Oexec = 0x03,
49 Oexcl = 0x04,
50 Otrunc = 0x10,
51 Orexec = 0x20,
52 Orclose = 0x40,
53 Oappend = 0x80,
54 };
55
56 P9ARRAY_DEFINE_TYPE(V9fsPath, v9fs_path_free);
57
pdu_marshal(V9fsPDU * pdu,size_t offset,const char * fmt,...)58 static ssize_t pdu_marshal(V9fsPDU *pdu, size_t offset, const char *fmt, ...)
59 {
60 ssize_t ret;
61 va_list ap;
62
63 va_start(ap, fmt);
64 ret = pdu->s->transport->pdu_vmarshal(pdu, offset, fmt, ap);
65 va_end(ap);
66
67 return ret;
68 }
69
pdu_unmarshal(V9fsPDU * pdu,size_t offset,const char * fmt,...)70 static ssize_t pdu_unmarshal(V9fsPDU *pdu, size_t offset, const char *fmt, ...)
71 {
72 ssize_t ret;
73 va_list ap;
74
75 va_start(ap, fmt);
76 ret = pdu->s->transport->pdu_vunmarshal(pdu, offset, fmt, ap);
77 va_end(ap);
78
79 return ret;
80 }
81
omode_to_uflags(int8_t mode)82 static int omode_to_uflags(int8_t mode)
83 {
84 int ret = 0;
85
86 switch (mode & 3) {
87 case Oread:
88 ret = O_RDONLY;
89 break;
90 case Ordwr:
91 ret = O_RDWR;
92 break;
93 case Owrite:
94 ret = O_WRONLY;
95 break;
96 case Oexec:
97 ret = O_RDONLY;
98 break;
99 }
100
101 if (mode & Otrunc) {
102 ret |= O_TRUNC;
103 }
104
105 if (mode & Oappend) {
106 ret |= O_APPEND;
107 }
108
109 if (mode & Oexcl) {
110 ret |= O_EXCL;
111 }
112
113 return ret;
114 }
115
116 typedef struct DotlOpenflagMap {
117 int dotl_flag;
118 int open_flag;
119 } DotlOpenflagMap;
120
dotl_to_open_flags(int flags)121 static int dotl_to_open_flags(int flags)
122 {
123 int i;
124 /*
125 * We have same bits for P9_DOTL_READONLY, P9_DOTL_WRONLY
126 * and P9_DOTL_NOACCESS
127 */
128 int oflags = flags & O_ACCMODE;
129
130 DotlOpenflagMap dotl_oflag_map[] = {
131 { P9_DOTL_CREATE, O_CREAT },
132 { P9_DOTL_EXCL, O_EXCL },
133 { P9_DOTL_NOCTTY , O_NOCTTY },
134 { P9_DOTL_TRUNC, O_TRUNC },
135 { P9_DOTL_APPEND, O_APPEND },
136 { P9_DOTL_NONBLOCK, O_NONBLOCK } ,
137 { P9_DOTL_DSYNC, O_DSYNC },
138 { P9_DOTL_FASYNC, FASYNC },
139 #ifndef CONFIG_DARWIN
140 { P9_DOTL_NOATIME, O_NOATIME },
141 /*
142 * On Darwin, we could map to F_NOCACHE, which is
143 * similar, but doesn't quite have the same
144 * semantics. However, we don't support O_DIRECT
145 * even on linux at the moment, so we just ignore
146 * it here.
147 */
148 { P9_DOTL_DIRECT, O_DIRECT },
149 #endif
150 { P9_DOTL_LARGEFILE, O_LARGEFILE },
151 { P9_DOTL_DIRECTORY, O_DIRECTORY },
152 { P9_DOTL_NOFOLLOW, O_NOFOLLOW },
153 { P9_DOTL_SYNC, O_SYNC },
154 };
155
156 for (i = 0; i < ARRAY_SIZE(dotl_oflag_map); i++) {
157 if (flags & dotl_oflag_map[i].dotl_flag) {
158 oflags |= dotl_oflag_map[i].open_flag;
159 }
160 }
161
162 return oflags;
163 }
164
cred_init(FsCred * credp)165 void cred_init(FsCred *credp)
166 {
167 credp->fc_uid = -1;
168 credp->fc_gid = -1;
169 credp->fc_mode = -1;
170 credp->fc_rdev = -1;
171 }
172
get_dotl_openflags(V9fsState * s,int oflags)173 static int get_dotl_openflags(V9fsState *s, int oflags)
174 {
175 int flags;
176 /*
177 * Filter the client open flags
178 */
179 flags = dotl_to_open_flags(oflags);
180 flags &= ~(O_NOCTTY | O_ASYNC | O_CREAT);
181 #ifndef CONFIG_DARWIN
182 /*
183 * Ignore direct disk access hint until the server supports it.
184 */
185 flags &= ~O_DIRECT;
186 #endif
187 return flags;
188 }
189
v9fs_path_init(V9fsPath * path)190 void v9fs_path_init(V9fsPath *path)
191 {
192 path->data = NULL;
193 path->size = 0;
194 }
195
v9fs_path_free(V9fsPath * path)196 void v9fs_path_free(V9fsPath *path)
197 {
198 g_free(path->data);
199 path->data = NULL;
200 path->size = 0;
201 }
202
203
204 void G_GNUC_PRINTF(2, 3)
v9fs_path_sprintf(V9fsPath * path,const char * fmt,...)205 v9fs_path_sprintf(V9fsPath *path, const char *fmt, ...)
206 {
207 va_list ap;
208
209 v9fs_path_free(path);
210
211 va_start(ap, fmt);
212 /* Bump the size for including terminating NULL */
213 path->size = g_vasprintf(&path->data, fmt, ap) + 1;
214 va_end(ap);
215 }
216
v9fs_path_copy(V9fsPath * dst,const V9fsPath * src)217 void v9fs_path_copy(V9fsPath *dst, const V9fsPath *src)
218 {
219 v9fs_path_free(dst);
220 dst->size = src->size;
221 dst->data = g_memdup(src->data, src->size);
222 }
223
v9fs_name_to_path(V9fsState * s,V9fsPath * dirpath,const char * name,V9fsPath * path)224 int v9fs_name_to_path(V9fsState *s, V9fsPath *dirpath,
225 const char *name, V9fsPath *path)
226 {
227 int err;
228 err = s->ops->name_to_path(&s->ctx, dirpath, name, path);
229 if (err < 0) {
230 err = -errno;
231 }
232 return err;
233 }
234
235 /*
236 * Return TRUE if s1 is an ancestor of s2.
237 *
238 * E.g. "a/b" is an ancestor of "a/b/c" but not of "a/bc/d".
239 * As a special case, We treat s1 as ancestor of s2 if they are same!
240 */
v9fs_path_is_ancestor(V9fsPath * s1,V9fsPath * s2)241 static int v9fs_path_is_ancestor(V9fsPath *s1, V9fsPath *s2)
242 {
243 if (!strncmp(s1->data, s2->data, s1->size - 1)) {
244 if (s2->data[s1->size - 1] == '\0' || s2->data[s1->size - 1] == '/') {
245 return 1;
246 }
247 }
248 return 0;
249 }
250
v9fs_string_size(V9fsString * str)251 static size_t v9fs_string_size(V9fsString *str)
252 {
253 return str->size;
254 }
255
256 /*
257 * returns 0 if fid got re-opened, 1 if not, < 0 on error
258 */
v9fs_reopen_fid(V9fsPDU * pdu,V9fsFidState * f)259 static int coroutine_fn v9fs_reopen_fid(V9fsPDU *pdu, V9fsFidState *f)
260 {
261 int err = 1;
262 if (f->fid_type == P9_FID_FILE) {
263 if (f->fs.fd == -1) {
264 do {
265 err = v9fs_co_open(pdu, f, f->open_flags);
266 } while (err == -EINTR && !pdu->cancelled);
267 }
268 } else if (f->fid_type == P9_FID_DIR) {
269 if (f->fs.dir.stream == NULL) {
270 do {
271 err = v9fs_co_opendir(pdu, f);
272 } while (err == -EINTR && !pdu->cancelled);
273 }
274 }
275 return err;
276 }
277
get_fid(V9fsPDU * pdu,int32_t fid)278 static V9fsFidState *coroutine_fn get_fid(V9fsPDU *pdu, int32_t fid)
279 {
280 int err;
281 V9fsFidState *f;
282 V9fsState *s = pdu->s;
283
284 f = g_hash_table_lookup(s->fids, GINT_TO_POINTER(fid));
285 if (f) {
286 BUG_ON(f->clunked);
287 /*
288 * Update the fid ref upfront so that
289 * we don't get reclaimed when we yield
290 * in open later.
291 */
292 f->ref++;
293 /*
294 * check whether we need to reopen the
295 * file. We might have closed the fd
296 * while trying to free up some file
297 * descriptors.
298 */
299 err = v9fs_reopen_fid(pdu, f);
300 if (err < 0) {
301 f->ref--;
302 return NULL;
303 }
304 /*
305 * Mark the fid as referenced so that the LRU
306 * reclaim won't close the file descriptor
307 */
308 f->flags |= FID_REFERENCED;
309 return f;
310 }
311 return NULL;
312 }
313
alloc_fid(V9fsState * s,int32_t fid)314 static V9fsFidState *alloc_fid(V9fsState *s, int32_t fid)
315 {
316 V9fsFidState *f;
317
318 f = g_hash_table_lookup(s->fids, GINT_TO_POINTER(fid));
319 if (f) {
320 /* If fid is already there return NULL */
321 BUG_ON(f->clunked);
322 return NULL;
323 }
324 f = g_new0(V9fsFidState, 1);
325 f->fid = fid;
326 f->fid_type = P9_FID_NONE;
327 f->ref = 1;
328 /*
329 * Mark the fid as referenced so that the LRU
330 * reclaim won't close the file descriptor
331 */
332 f->flags |= FID_REFERENCED;
333 g_hash_table_insert(s->fids, GINT_TO_POINTER(fid), f);
334
335 v9fs_readdir_init(s->proto_version, &f->fs.dir);
336 v9fs_readdir_init(s->proto_version, &f->fs_reclaim.dir);
337
338 return f;
339 }
340
v9fs_xattr_fid_clunk(V9fsPDU * pdu,V9fsFidState * fidp)341 static int coroutine_fn v9fs_xattr_fid_clunk(V9fsPDU *pdu, V9fsFidState *fidp)
342 {
343 int retval = 0;
344
345 if (fidp->fs.xattr.xattrwalk_fid) {
346 /* getxattr/listxattr fid */
347 goto free_value;
348 }
349 /*
350 * if this is fid for setxattr. clunk should
351 * result in setxattr localcall
352 */
353 if (fidp->fs.xattr.len != fidp->fs.xattr.copied_len) {
354 /* clunk after partial write */
355 retval = -EINVAL;
356 goto free_out;
357 }
358 if (fidp->fs.xattr.len) {
359 retval = v9fs_co_lsetxattr(pdu, &fidp->path, &fidp->fs.xattr.name,
360 fidp->fs.xattr.value,
361 fidp->fs.xattr.len,
362 fidp->fs.xattr.flags);
363 } else {
364 retval = v9fs_co_lremovexattr(pdu, &fidp->path, &fidp->fs.xattr.name);
365 }
366 free_out:
367 v9fs_string_free(&fidp->fs.xattr.name);
368 free_value:
369 g_free(fidp->fs.xattr.value);
370 return retval;
371 }
372
free_fid(V9fsPDU * pdu,V9fsFidState * fidp)373 static int coroutine_fn free_fid(V9fsPDU *pdu, V9fsFidState *fidp)
374 {
375 int retval = 0;
376
377 if (fidp->fid_type == P9_FID_FILE) {
378 /* If we reclaimed the fd no need to close */
379 if (fidp->fs.fd != -1) {
380 retval = v9fs_co_close(pdu, &fidp->fs);
381 }
382 } else if (fidp->fid_type == P9_FID_DIR) {
383 if (fidp->fs.dir.stream != NULL) {
384 retval = v9fs_co_closedir(pdu, &fidp->fs);
385 }
386 } else if (fidp->fid_type == P9_FID_XATTR) {
387 retval = v9fs_xattr_fid_clunk(pdu, fidp);
388 }
389 v9fs_path_free(&fidp->path);
390 g_free(fidp);
391 return retval;
392 }
393
put_fid(V9fsPDU * pdu,V9fsFidState * fidp)394 static int coroutine_fn put_fid(V9fsPDU *pdu, V9fsFidState *fidp)
395 {
396 BUG_ON(!fidp->ref);
397 fidp->ref--;
398 /*
399 * Don't free the fid if it is in reclaim list
400 */
401 if (!fidp->ref && fidp->clunked) {
402 if (fidp->fid == pdu->s->root_fid) {
403 /*
404 * if the clunked fid is root fid then we
405 * have unmounted the fs on the client side.
406 * delete the migration blocker. Ideally, this
407 * should be hooked to transport close notification
408 */
409 migrate_del_blocker(&pdu->s->migration_blocker);
410 }
411 return free_fid(pdu, fidp);
412 }
413 return 0;
414 }
415
clunk_fid(V9fsState * s,int32_t fid)416 static V9fsFidState *clunk_fid(V9fsState *s, int32_t fid)
417 {
418 V9fsFidState *fidp;
419
420 /* TODO: Use g_hash_table_steal_extended() instead? */
421 fidp = g_hash_table_lookup(s->fids, GINT_TO_POINTER(fid));
422 if (fidp) {
423 g_hash_table_remove(s->fids, GINT_TO_POINTER(fid));
424 fidp->clunked = true;
425 return fidp;
426 }
427 return NULL;
428 }
429
v9fs_reclaim_fd(V9fsPDU * pdu)430 void coroutine_fn v9fs_reclaim_fd(V9fsPDU *pdu)
431 {
432 int reclaim_count = 0;
433 V9fsState *s = pdu->s;
434 V9fsFidState *f;
435 GHashTableIter iter;
436 gpointer fid;
437
438 g_hash_table_iter_init(&iter, s->fids);
439
440 QSLIST_HEAD(, V9fsFidState) reclaim_list =
441 QSLIST_HEAD_INITIALIZER(reclaim_list);
442
443 while (g_hash_table_iter_next(&iter, &fid, (gpointer *) &f)) {
444 /*
445 * Unlink fids cannot be reclaimed. Check
446 * for them and skip them. Also skip fids
447 * currently being operated on.
448 */
449 if (f->ref || f->flags & FID_NON_RECLAIMABLE) {
450 continue;
451 }
452 /*
453 * if it is a recently referenced fid
454 * we leave the fid untouched and clear the
455 * reference bit. We come back to it later
456 * in the next iteration. (a simple LRU without
457 * moving list elements around)
458 */
459 if (f->flags & FID_REFERENCED) {
460 f->flags &= ~FID_REFERENCED;
461 continue;
462 }
463 /*
464 * Add fids to reclaim list.
465 */
466 if (f->fid_type == P9_FID_FILE) {
467 if (f->fs.fd != -1) {
468 /*
469 * Up the reference count so that
470 * a clunk request won't free this fid
471 */
472 f->ref++;
473 QSLIST_INSERT_HEAD(&reclaim_list, f, reclaim_next);
474 f->fs_reclaim.fd = f->fs.fd;
475 f->fs.fd = -1;
476 reclaim_count++;
477 }
478 } else if (f->fid_type == P9_FID_DIR) {
479 if (f->fs.dir.stream != NULL) {
480 /*
481 * Up the reference count so that
482 * a clunk request won't free this fid
483 */
484 f->ref++;
485 QSLIST_INSERT_HEAD(&reclaim_list, f, reclaim_next);
486 f->fs_reclaim.dir.stream = f->fs.dir.stream;
487 f->fs.dir.stream = NULL;
488 reclaim_count++;
489 }
490 }
491 if (reclaim_count >= open_fd_rc) {
492 break;
493 }
494 }
495 /*
496 * Now close the fid in reclaim list. Free them if they
497 * are already clunked.
498 */
499 while (!QSLIST_EMPTY(&reclaim_list)) {
500 f = QSLIST_FIRST(&reclaim_list);
501 QSLIST_REMOVE(&reclaim_list, f, V9fsFidState, reclaim_next);
502 if (f->fid_type == P9_FID_FILE) {
503 v9fs_co_close(pdu, &f->fs_reclaim);
504 } else if (f->fid_type == P9_FID_DIR) {
505 v9fs_co_closedir(pdu, &f->fs_reclaim);
506 }
507 /*
508 * Now drop the fid reference, free it
509 * if clunked.
510 */
511 put_fid(pdu, f);
512 }
513 }
514
515 /*
516 * This is used when a path is removed from the directory tree. Any
517 * fids that still reference it must not be closed from then on, since
518 * they cannot be reopened.
519 */
v9fs_mark_fids_unreclaim(V9fsPDU * pdu,V9fsPath * path)520 static int coroutine_fn v9fs_mark_fids_unreclaim(V9fsPDU *pdu, V9fsPath *path)
521 {
522 int err = 0;
523 V9fsState *s = pdu->s;
524 V9fsFidState *fidp;
525 gpointer fid;
526 GHashTableIter iter;
527 /*
528 * The most common case is probably that we have exactly one
529 * fid for the given path, so preallocate exactly one.
530 */
531 g_autoptr(GArray) to_reopen = g_array_sized_new(FALSE, FALSE,
532 sizeof(V9fsFidState *), 1);
533 gint i;
534
535 g_hash_table_iter_init(&iter, s->fids);
536
537 /*
538 * We iterate over the fid table looking for the entries we need
539 * to reopen, and store them in to_reopen. This is because
540 * v9fs_reopen_fid() and put_fid() yield. This allows the fid table
541 * to be modified in the meantime, invalidating our iterator.
542 */
543 while (g_hash_table_iter_next(&iter, &fid, (gpointer *) &fidp)) {
544 if (fidp->path.size == path->size &&
545 !memcmp(fidp->path.data, path->data, path->size)) {
546 /*
547 * Ensure the fid survives a potential clunk request during
548 * v9fs_reopen_fid or put_fid.
549 */
550 fidp->ref++;
551 fidp->flags |= FID_NON_RECLAIMABLE;
552 g_array_append_val(to_reopen, fidp);
553 }
554 }
555
556 for (i = 0; i < to_reopen->len; i++) {
557 fidp = g_array_index(to_reopen, V9fsFidState*, i);
558 /* reopen the file/dir if already closed */
559 err = v9fs_reopen_fid(pdu, fidp);
560 if (err < 0) {
561 break;
562 }
563 }
564
565 for (i = 0; i < to_reopen->len; i++) {
566 put_fid(pdu, g_array_index(to_reopen, V9fsFidState*, i));
567 }
568 return err;
569 }
570
virtfs_reset(V9fsPDU * pdu)571 static void coroutine_fn virtfs_reset(V9fsPDU *pdu)
572 {
573 V9fsState *s = pdu->s;
574 V9fsFidState *fidp;
575 GList *freeing;
576 /*
577 * Get a list of all the values (fid states) in the table, which
578 * we then...
579 */
580 g_autoptr(GList) fids = g_hash_table_get_values(s->fids);
581
582 /* ... remove from the table, taking over ownership. */
583 g_hash_table_steal_all(s->fids);
584
585 /*
586 * This allows us to release our references to them asynchronously without
587 * iterating over the hash table and risking iterator invalidation
588 * through concurrent modifications.
589 */
590 for (freeing = fids; freeing; freeing = freeing->next) {
591 fidp = freeing->data;
592 fidp->ref++;
593 fidp->clunked = true;
594 put_fid(pdu, fidp);
595 }
596 }
597
598 #define P9_QID_TYPE_DIR 0x80
599 #define P9_QID_TYPE_SYMLINK 0x02
600
601 #define P9_STAT_MODE_DIR 0x80000000
602 #define P9_STAT_MODE_APPEND 0x40000000
603 #define P9_STAT_MODE_EXCL 0x20000000
604 #define P9_STAT_MODE_MOUNT 0x10000000
605 #define P9_STAT_MODE_AUTH 0x08000000
606 #define P9_STAT_MODE_TMP 0x04000000
607 #define P9_STAT_MODE_SYMLINK 0x02000000
608 #define P9_STAT_MODE_LINK 0x01000000
609 #define P9_STAT_MODE_DEVICE 0x00800000
610 #define P9_STAT_MODE_NAMED_PIPE 0x00200000
611 #define P9_STAT_MODE_SOCKET 0x00100000
612 #define P9_STAT_MODE_SETUID 0x00080000
613 #define P9_STAT_MODE_SETGID 0x00040000
614 #define P9_STAT_MODE_SETVTX 0x00010000
615
616 #define P9_STAT_MODE_TYPE_BITS (P9_STAT_MODE_DIR | \
617 P9_STAT_MODE_SYMLINK | \
618 P9_STAT_MODE_LINK | \
619 P9_STAT_MODE_DEVICE | \
620 P9_STAT_MODE_NAMED_PIPE | \
621 P9_STAT_MODE_SOCKET)
622
623 /* Mirrors all bits of a byte. So e.g. binary 10100000 would become 00000101. */
mirror8bit(uint8_t byte)624 static inline uint8_t mirror8bit(uint8_t byte)
625 {
626 return (byte * 0x0202020202ULL & 0x010884422010ULL) % 1023;
627 }
628
629 /* Same as mirror8bit() just for a 64 bit data type instead for a byte. */
mirror64bit(uint64_t value)630 static inline uint64_t mirror64bit(uint64_t value)
631 {
632 return ((uint64_t)mirror8bit(value & 0xff) << 56) |
633 ((uint64_t)mirror8bit((value >> 8) & 0xff) << 48) |
634 ((uint64_t)mirror8bit((value >> 16) & 0xff) << 40) |
635 ((uint64_t)mirror8bit((value >> 24) & 0xff) << 32) |
636 ((uint64_t)mirror8bit((value >> 32) & 0xff) << 24) |
637 ((uint64_t)mirror8bit((value >> 40) & 0xff) << 16) |
638 ((uint64_t)mirror8bit((value >> 48) & 0xff) << 8) |
639 ((uint64_t)mirror8bit((value >> 56) & 0xff));
640 }
641
642 /*
643 * Parameter k for the Exponential Golomb algorithm to be used.
644 *
645 * The smaller this value, the smaller the minimum bit count for the Exp.
646 * Golomb generated affixes will be (at lowest index) however for the
647 * price of having higher maximum bit count of generated affixes (at highest
648 * index). Likewise increasing this parameter yields in smaller maximum bit
649 * count for the price of having higher minimum bit count.
650 *
651 * In practice that means: a good value for k depends on the expected amount
652 * of devices to be exposed by one export. For a small amount of devices k
653 * should be small, for a large amount of devices k might be increased
654 * instead. The default of k=0 should be fine for most users though.
655 *
656 * IMPORTANT: In case this ever becomes a runtime parameter; the value of
657 * k should not change as long as guest is still running! Because that would
658 * cause completely different inode numbers to be generated on guest.
659 */
660 #define EXP_GOLOMB_K 0
661
662 /**
663 * expGolombEncode() - Exponential Golomb algorithm for arbitrary k
664 * (including k=0).
665 *
666 * @n: natural number (or index) of the prefix to be generated
667 * (1, 2, 3, ...)
668 * @k: parameter k of Exp. Golomb algorithm to be used
669 * (see comment on EXP_GOLOMB_K macro for details about k)
670 * Return: prefix for given @n and @k
671 *
672 * The Exponential Golomb algorithm generates prefixes (NOT suffixes!)
673 * with growing length and with the mathematical property of being
674 * "prefix-free". The latter means the generated prefixes can be prepended
675 * in front of arbitrary numbers and the resulting concatenated numbers are
676 * guaranteed to be always unique.
677 *
678 * This is a minor adjustment to the original Exp. Golomb algorithm in the
679 * sense that lowest allowed index (@n) starts with 1, not with zero.
680 */
expGolombEncode(uint64_t n,int k)681 static VariLenAffix expGolombEncode(uint64_t n, int k)
682 {
683 const uint64_t value = n + (1 << k) - 1;
684 const int bits = (int) log2(value) + 1;
685 return (VariLenAffix) {
686 .type = AffixType_Prefix,
687 .value = value,
688 .bits = bits + MAX((bits - 1 - k), 0)
689 };
690 }
691
692 /**
693 * invertAffix() - Converts a suffix into a prefix, or a prefix into a suffix.
694 * @affix: either suffix or prefix to be inverted
695 * Return: inversion of passed @affix
696 *
697 * Simply mirror all bits of the affix value, for the purpose to preserve
698 * respectively the mathematical "prefix-free" or "suffix-free" property
699 * after the conversion.
700 *
701 * If a passed prefix is suitable to create unique numbers, then the
702 * returned suffix is suitable to create unique numbers as well (and vice
703 * versa).
704 */
invertAffix(const VariLenAffix * affix)705 static VariLenAffix invertAffix(const VariLenAffix *affix)
706 {
707 return (VariLenAffix) {
708 .type =
709 (affix->type == AffixType_Suffix) ?
710 AffixType_Prefix : AffixType_Suffix,
711 .value =
712 mirror64bit(affix->value) >>
713 ((sizeof(affix->value) * 8) - affix->bits),
714 .bits = affix->bits
715 };
716 }
717
718 /**
719 * affixForIndex() - Generates suffix numbers with "suffix-free" property.
720 * @index: natural number (or index) of the suffix to be generated
721 * (1, 2, 3, ...)
722 * Return: Suffix suitable to assemble unique number.
723 *
724 * This is just a wrapper function on top of the Exp. Golomb algorithm.
725 *
726 * Since the Exp. Golomb algorithm generates prefixes, but we need suffixes,
727 * this function converts the Exp. Golomb prefixes into appropriate suffixes
728 * which are still suitable for generating unique numbers.
729 */
affixForIndex(uint64_t index)730 static VariLenAffix affixForIndex(uint64_t index)
731 {
732 VariLenAffix prefix;
733 prefix = expGolombEncode(index, EXP_GOLOMB_K);
734 return invertAffix(&prefix); /* convert prefix to suffix */
735 }
736
qpp_hash(QppEntry e)737 static uint32_t qpp_hash(QppEntry e)
738 {
739 return qemu_xxhash4(e.ino_prefix, e.dev);
740 }
741
qpf_hash(QpfEntry e)742 static uint32_t qpf_hash(QpfEntry e)
743 {
744 return qemu_xxhash4(e.ino, e.dev);
745 }
746
qpd_cmp_func(const void * obj,const void * userp)747 static bool qpd_cmp_func(const void *obj, const void *userp)
748 {
749 const QpdEntry *e1 = obj, *e2 = userp;
750 return e1->dev == e2->dev;
751 }
752
qpp_cmp_func(const void * obj,const void * userp)753 static bool qpp_cmp_func(const void *obj, const void *userp)
754 {
755 const QppEntry *e1 = obj, *e2 = userp;
756 return e1->dev == e2->dev && e1->ino_prefix == e2->ino_prefix;
757 }
758
qpf_cmp_func(const void * obj,const void * userp)759 static bool qpf_cmp_func(const void *obj, const void *userp)
760 {
761 const QpfEntry *e1 = obj, *e2 = userp;
762 return e1->dev == e2->dev && e1->ino == e2->ino;
763 }
764
qp_table_remove(void * p,uint32_t h,void * up)765 static void qp_table_remove(void *p, uint32_t h, void *up)
766 {
767 g_free(p);
768 }
769
qp_table_destroy(struct qht * ht)770 static void qp_table_destroy(struct qht *ht)
771 {
772 if (!ht || !ht->map) {
773 return;
774 }
775 qht_iter(ht, qp_table_remove, NULL);
776 qht_destroy(ht);
777 }
778
qpd_table_init(struct qht * ht)779 static void qpd_table_init(struct qht *ht)
780 {
781 qht_init(ht, qpd_cmp_func, 1, QHT_MODE_AUTO_RESIZE);
782 }
783
qpp_table_init(struct qht * ht)784 static void qpp_table_init(struct qht *ht)
785 {
786 qht_init(ht, qpp_cmp_func, 1, QHT_MODE_AUTO_RESIZE);
787 }
788
qpf_table_init(struct qht * ht)789 static void qpf_table_init(struct qht *ht)
790 {
791 qht_init(ht, qpf_cmp_func, 1 << 16, QHT_MODE_AUTO_RESIZE);
792 }
793
794 /*
795 * Returns how many (high end) bits of inode numbers of the passed fs
796 * device shall be used (in combination with the device number) to
797 * generate hash values for qpp_table entries.
798 *
799 * This function is required if variable length suffixes are used for inode
800 * number mapping on guest level. Since a device may end up having multiple
801 * entries in qpp_table, each entry most probably with a different suffix
802 * length, we thus need this function in conjunction with qpd_table to
803 * "agree" about a fix amount of bits (per device) to be always used for
804 * generating hash values for the purpose of accessing qpp_table in order
805 * get consistent behaviour when accessing qpp_table.
806 */
qid_inode_prefix_hash_bits(V9fsPDU * pdu,dev_t dev)807 static int qid_inode_prefix_hash_bits(V9fsPDU *pdu, dev_t dev)
808 {
809 QpdEntry lookup = {
810 .dev = dev
811 }, *val;
812 uint32_t hash = dev;
813 VariLenAffix affix;
814
815 val = qht_lookup(&pdu->s->qpd_table, &lookup, hash);
816 if (!val) {
817 val = g_new0(QpdEntry, 1);
818 *val = lookup;
819 affix = affixForIndex(pdu->s->qp_affix_next);
820 val->prefix_bits = affix.bits;
821 qht_insert(&pdu->s->qpd_table, val, hash, NULL);
822 pdu->s->qp_ndevices++;
823 }
824 return val->prefix_bits;
825 }
826
827 /*
828 * Slow / full mapping host inode nr -> guest inode nr.
829 *
830 * This function performs a slower and much more costly remapping of an
831 * original file inode number on host to an appropriate different inode
832 * number on guest. For every (dev, inode) combination on host a new
833 * sequential number is generated, cached and exposed as inode number on
834 * guest.
835 *
836 * This is just a "last resort" fallback solution if the much faster/cheaper
837 * qid_path_suffixmap() failed. In practice this slow / full mapping is not
838 * expected ever to be used at all though.
839 *
840 * See qid_path_suffixmap() for details
841 *
842 */
qid_path_fullmap(V9fsPDU * pdu,const struct stat * stbuf,uint64_t * path)843 static int qid_path_fullmap(V9fsPDU *pdu, const struct stat *stbuf,
844 uint64_t *path)
845 {
846 QpfEntry lookup = {
847 .dev = stbuf->st_dev,
848 .ino = stbuf->st_ino
849 }, *val;
850 uint32_t hash = qpf_hash(lookup);
851 VariLenAffix affix;
852
853 val = qht_lookup(&pdu->s->qpf_table, &lookup, hash);
854
855 if (!val) {
856 if (pdu->s->qp_fullpath_next == 0) {
857 /* no more files can be mapped :'( */
858 error_report_once(
859 "9p: No more prefixes available for remapping inodes from "
860 "host to guest."
861 );
862 return -ENFILE;
863 }
864
865 val = g_new0(QpfEntry, 1);
866 *val = lookup;
867
868 /* new unique inode and device combo */
869 affix = affixForIndex(
870 1ULL << (sizeof(pdu->s->qp_affix_next) * 8)
871 );
872 val->path = (pdu->s->qp_fullpath_next++ << affix.bits) | affix.value;
873 pdu->s->qp_fullpath_next &= ((1ULL << (64 - affix.bits)) - 1);
874 qht_insert(&pdu->s->qpf_table, val, hash, NULL);
875 }
876
877 *path = val->path;
878 return 0;
879 }
880
881 /*
882 * Quick mapping host inode nr -> guest inode nr.
883 *
884 * This function performs quick remapping of an original file inode number
885 * on host to an appropriate different inode number on guest. This remapping
886 * of inodes is required to avoid inode nr collisions on guest which would
887 * happen if the 9p export contains more than 1 exported file system (or
888 * more than 1 file system data set), because unlike on host level where the
889 * files would have different device nrs, all files exported by 9p would
890 * share the same device nr on guest (the device nr of the virtual 9p device
891 * that is).
892 *
893 * Inode remapping is performed by chopping off high end bits of the original
894 * inode number from host, shifting the result upwards and then assigning a
895 * generated suffix number for the low end bits, where the same suffix number
896 * will be shared by all inodes with the same device id AND the same high end
897 * bits that have been chopped off. That approach utilizes the fact that inode
898 * numbers very likely share the same high end bits (i.e. due to their common
899 * sequential generation by file systems) and hence we only have to generate
900 * and track a very limited amount of suffixes in practice due to that.
901 *
902 * We generate variable size suffixes for that purpose. The 1st generated
903 * suffix will only have 1 bit and hence we only need to chop off 1 bit from
904 * the original inode number. The subsequent suffixes being generated will
905 * grow in (bit) size subsequently, i.e. the 2nd and 3rd suffix being
906 * generated will have 3 bits and hence we have to chop off 3 bits from their
907 * original inodes, and so on. That approach of using variable length suffixes
908 * (i.e. over fixed size ones) utilizes the fact that in practice only a very
909 * limited amount of devices are shared by the same export (e.g. typically
910 * less than 2 dozen devices per 9p export), so in practice we need to chop
911 * off less bits than with fixed size prefixes and yet are flexible to add
912 * new devices at runtime below host's export directory at any time without
913 * having to reboot guest nor requiring to reconfigure guest for that. And due
914 * to the very limited amount of original high end bits that we chop off that
915 * way, the total amount of suffixes we need to generate is less than by using
916 * fixed size prefixes and hence it also improves performance of the inode
917 * remapping algorithm, and finally has the nice side effect that the inode
918 * numbers on guest will be much smaller & human friendly. ;-)
919 */
qid_path_suffixmap(V9fsPDU * pdu,const struct stat * stbuf,uint64_t * path)920 static int qid_path_suffixmap(V9fsPDU *pdu, const struct stat *stbuf,
921 uint64_t *path)
922 {
923 const int ino_hash_bits = qid_inode_prefix_hash_bits(pdu, stbuf->st_dev);
924 QppEntry lookup = {
925 .dev = stbuf->st_dev,
926 .ino_prefix = (uint16_t) (stbuf->st_ino >> (64 - ino_hash_bits))
927 }, *val;
928 uint32_t hash = qpp_hash(lookup);
929
930 val = qht_lookup(&pdu->s->qpp_table, &lookup, hash);
931
932 if (!val) {
933 if (pdu->s->qp_affix_next == 0) {
934 /* we ran out of affixes */
935 warn_report_once(
936 "9p: Potential degraded performance of inode remapping"
937 );
938 return -ENFILE;
939 }
940
941 val = g_new0(QppEntry, 1);
942 *val = lookup;
943
944 /* new unique inode affix and device combo */
945 val->qp_affix_index = pdu->s->qp_affix_next++;
946 val->qp_affix = affixForIndex(val->qp_affix_index);
947 qht_insert(&pdu->s->qpp_table, val, hash, NULL);
948 }
949 /* assuming generated affix to be suffix type, not prefix */
950 *path = (stbuf->st_ino << val->qp_affix.bits) | val->qp_affix.value;
951 return 0;
952 }
953
stat_to_qid(V9fsPDU * pdu,const struct stat * stbuf,V9fsQID * qidp)954 static int stat_to_qid(V9fsPDU *pdu, const struct stat *stbuf, V9fsQID *qidp)
955 {
956 int err;
957 size_t size;
958
959 if (pdu->s->ctx.export_flags & V9FS_REMAP_INODES) {
960 /* map inode+device to qid path (fast path) */
961 err = qid_path_suffixmap(pdu, stbuf, &qidp->path);
962 if (err == -ENFILE) {
963 /* fast path didn't work, fall back to full map */
964 err = qid_path_fullmap(pdu, stbuf, &qidp->path);
965 }
966 if (err) {
967 return err;
968 }
969 } else {
970 if (pdu->s->dev_id != stbuf->st_dev) {
971 if (pdu->s->ctx.export_flags & V9FS_FORBID_MULTIDEVS) {
972 error_report_once(
973 "9p: Multiple devices detected in same VirtFS export. "
974 "Access of guest to additional devices is (partly) "
975 "denied due to virtfs option 'multidevs=forbid' being "
976 "effective."
977 );
978 return -ENODEV;
979 } else {
980 warn_report_once(
981 "9p: Multiple devices detected in same VirtFS export, "
982 "which might lead to file ID collisions and severe "
983 "misbehaviours on guest! You should either use a "
984 "separate export for each device shared from host or "
985 "use virtfs option 'multidevs=remap'!"
986 );
987 }
988 }
989 memset(&qidp->path, 0, sizeof(qidp->path));
990 size = MIN(sizeof(stbuf->st_ino), sizeof(qidp->path));
991 memcpy(&qidp->path, &stbuf->st_ino, size);
992 }
993
994 qidp->version = stbuf->st_mtime ^ (stbuf->st_size << 8);
995 qidp->type = 0;
996 if (S_ISDIR(stbuf->st_mode)) {
997 qidp->type |= P9_QID_TYPE_DIR;
998 }
999 if (S_ISLNK(stbuf->st_mode)) {
1000 qidp->type |= P9_QID_TYPE_SYMLINK;
1001 }
1002
1003 return 0;
1004 }
1005
pdu_alloc(V9fsState * s)1006 V9fsPDU *pdu_alloc(V9fsState *s)
1007 {
1008 V9fsPDU *pdu = NULL;
1009
1010 if (!QLIST_EMPTY(&s->free_list)) {
1011 pdu = QLIST_FIRST(&s->free_list);
1012 QLIST_REMOVE(pdu, next);
1013 QLIST_INSERT_HEAD(&s->active_list, pdu, next);
1014 }
1015 return pdu;
1016 }
1017
pdu_free(V9fsPDU * pdu)1018 void pdu_free(V9fsPDU *pdu)
1019 {
1020 V9fsState *s = pdu->s;
1021
1022 g_assert(!pdu->cancelled);
1023 QLIST_REMOVE(pdu, next);
1024 QLIST_INSERT_HEAD(&s->free_list, pdu, next);
1025 }
1026
pdu_complete(V9fsPDU * pdu,ssize_t len)1027 static void coroutine_fn pdu_complete(V9fsPDU *pdu, ssize_t len)
1028 {
1029 int8_t id = pdu->id + 1; /* Response */
1030 V9fsState *s = pdu->s;
1031 int ret;
1032
1033 /*
1034 * The 9p spec requires that successfully cancelled pdus receive no reply.
1035 * Sending a reply would confuse clients because they would
1036 * assume that any EINTR is the actual result of the operation,
1037 * rather than a consequence of the cancellation. However, if
1038 * the operation completed (successfully or with an error other
1039 * than caused be cancellation), we do send out that reply, both
1040 * for efficiency and to avoid confusing the rest of the state machine
1041 * that assumes passing a non-error here will mean a successful
1042 * transmission of the reply.
1043 */
1044 bool discard = pdu->cancelled && len == -EINTR;
1045 if (discard) {
1046 trace_v9fs_rcancel(pdu->tag, pdu->id);
1047 pdu->size = 0;
1048 goto out_notify;
1049 }
1050
1051 if (len < 0) {
1052 int err = -len;
1053 len = 7;
1054
1055 if (s->proto_version != V9FS_PROTO_2000L) {
1056 V9fsString str;
1057
1058 str.data = strerror(err);
1059 str.size = strlen(str.data);
1060
1061 ret = pdu_marshal(pdu, len, "s", &str);
1062 if (ret < 0) {
1063 goto out_notify;
1064 }
1065 len += ret;
1066 id = P9_RERROR;
1067 } else {
1068 err = errno_to_dotl(err);
1069 }
1070
1071 ret = pdu_marshal(pdu, len, "d", err);
1072 if (ret < 0) {
1073 goto out_notify;
1074 }
1075 len += ret;
1076
1077 if (s->proto_version == V9FS_PROTO_2000L) {
1078 id = P9_RLERROR;
1079 }
1080 trace_v9fs_rerror(pdu->tag, pdu->id, err); /* Trace ERROR */
1081 }
1082
1083 /* fill out the header */
1084 if (pdu_marshal(pdu, 0, "dbw", (int32_t)len, id, pdu->tag) < 0) {
1085 goto out_notify;
1086 }
1087
1088 /* keep these in sync */
1089 pdu->size = len;
1090 pdu->id = id;
1091
1092 out_notify:
1093 pdu->s->transport->push_and_notify(pdu);
1094
1095 /* Now wakeup anybody waiting in flush for this request */
1096 if (!qemu_co_queue_next(&pdu->complete)) {
1097 pdu_free(pdu);
1098 }
1099 }
1100
v9mode_to_mode(uint32_t mode,V9fsString * extension)1101 static mode_t v9mode_to_mode(uint32_t mode, V9fsString *extension)
1102 {
1103 mode_t ret;
1104
1105 ret = mode & 0777;
1106 if (mode & P9_STAT_MODE_DIR) {
1107 ret |= S_IFDIR;
1108 }
1109
1110 if (mode & P9_STAT_MODE_SYMLINK) {
1111 ret |= S_IFLNK;
1112 }
1113 if (mode & P9_STAT_MODE_SOCKET) {
1114 ret |= S_IFSOCK;
1115 }
1116 if (mode & P9_STAT_MODE_NAMED_PIPE) {
1117 ret |= S_IFIFO;
1118 }
1119 if (mode & P9_STAT_MODE_DEVICE) {
1120 if (extension->size && extension->data[0] == 'c') {
1121 ret |= S_IFCHR;
1122 } else {
1123 ret |= S_IFBLK;
1124 }
1125 }
1126
1127 if (!(ret & ~0777)) {
1128 ret |= S_IFREG;
1129 }
1130
1131 if (mode & P9_STAT_MODE_SETUID) {
1132 ret |= S_ISUID;
1133 }
1134 if (mode & P9_STAT_MODE_SETGID) {
1135 ret |= S_ISGID;
1136 }
1137 if (mode & P9_STAT_MODE_SETVTX) {
1138 ret |= S_ISVTX;
1139 }
1140
1141 return ret;
1142 }
1143
donttouch_stat(V9fsStat * stat)1144 static int donttouch_stat(V9fsStat *stat)
1145 {
1146 if (stat->type == -1 &&
1147 stat->dev == -1 &&
1148 stat->qid.type == 0xff &&
1149 stat->qid.version == (uint32_t) -1 &&
1150 stat->qid.path == (uint64_t) -1 &&
1151 stat->mode == -1 &&
1152 stat->atime == -1 &&
1153 stat->mtime == -1 &&
1154 stat->length == -1 &&
1155 !stat->name.size &&
1156 !stat->uid.size &&
1157 !stat->gid.size &&
1158 !stat->muid.size &&
1159 stat->n_uid == -1 &&
1160 stat->n_gid == -1 &&
1161 stat->n_muid == -1) {
1162 return 1;
1163 }
1164
1165 return 0;
1166 }
1167
v9fs_stat_init(V9fsStat * stat)1168 static void v9fs_stat_init(V9fsStat *stat)
1169 {
1170 v9fs_string_init(&stat->name);
1171 v9fs_string_init(&stat->uid);
1172 v9fs_string_init(&stat->gid);
1173 v9fs_string_init(&stat->muid);
1174 v9fs_string_init(&stat->extension);
1175 }
1176
v9fs_stat_free(V9fsStat * stat)1177 static void v9fs_stat_free(V9fsStat *stat)
1178 {
1179 v9fs_string_free(&stat->name);
1180 v9fs_string_free(&stat->uid);
1181 v9fs_string_free(&stat->gid);
1182 v9fs_string_free(&stat->muid);
1183 v9fs_string_free(&stat->extension);
1184 }
1185
stat_to_v9mode(const struct stat * stbuf)1186 static uint32_t stat_to_v9mode(const struct stat *stbuf)
1187 {
1188 uint32_t mode;
1189
1190 mode = stbuf->st_mode & 0777;
1191 if (S_ISDIR(stbuf->st_mode)) {
1192 mode |= P9_STAT_MODE_DIR;
1193 }
1194
1195 if (S_ISLNK(stbuf->st_mode)) {
1196 mode |= P9_STAT_MODE_SYMLINK;
1197 }
1198
1199 if (S_ISSOCK(stbuf->st_mode)) {
1200 mode |= P9_STAT_MODE_SOCKET;
1201 }
1202
1203 if (S_ISFIFO(stbuf->st_mode)) {
1204 mode |= P9_STAT_MODE_NAMED_PIPE;
1205 }
1206
1207 if (S_ISBLK(stbuf->st_mode) || S_ISCHR(stbuf->st_mode)) {
1208 mode |= P9_STAT_MODE_DEVICE;
1209 }
1210
1211 if (stbuf->st_mode & S_ISUID) {
1212 mode |= P9_STAT_MODE_SETUID;
1213 }
1214
1215 if (stbuf->st_mode & S_ISGID) {
1216 mode |= P9_STAT_MODE_SETGID;
1217 }
1218
1219 if (stbuf->st_mode & S_ISVTX) {
1220 mode |= P9_STAT_MODE_SETVTX;
1221 }
1222
1223 return mode;
1224 }
1225
stat_to_v9stat(V9fsPDU * pdu,V9fsPath * path,const char * basename,const struct stat * stbuf,V9fsStat * v9stat)1226 static int coroutine_fn stat_to_v9stat(V9fsPDU *pdu, V9fsPath *path,
1227 const char *basename,
1228 const struct stat *stbuf,
1229 V9fsStat *v9stat)
1230 {
1231 int err;
1232
1233 memset(v9stat, 0, sizeof(*v9stat));
1234
1235 err = stat_to_qid(pdu, stbuf, &v9stat->qid);
1236 if (err < 0) {
1237 return err;
1238 }
1239 v9stat->mode = stat_to_v9mode(stbuf);
1240 v9stat->atime = stbuf->st_atime;
1241 v9stat->mtime = stbuf->st_mtime;
1242 v9stat->length = stbuf->st_size;
1243
1244 v9fs_string_free(&v9stat->uid);
1245 v9fs_string_free(&v9stat->gid);
1246 v9fs_string_free(&v9stat->muid);
1247
1248 v9stat->n_uid = stbuf->st_uid;
1249 v9stat->n_gid = stbuf->st_gid;
1250 v9stat->n_muid = 0;
1251
1252 v9fs_string_free(&v9stat->extension);
1253
1254 if (v9stat->mode & P9_STAT_MODE_SYMLINK) {
1255 err = v9fs_co_readlink(pdu, path, &v9stat->extension);
1256 if (err < 0) {
1257 return err;
1258 }
1259 } else if (v9stat->mode & P9_STAT_MODE_DEVICE) {
1260 v9fs_string_sprintf(&v9stat->extension, "%c %u %u",
1261 S_ISCHR(stbuf->st_mode) ? 'c' : 'b',
1262 major(stbuf->st_rdev), minor(stbuf->st_rdev));
1263 } else if (S_ISDIR(stbuf->st_mode) || S_ISREG(stbuf->st_mode)) {
1264 v9fs_string_sprintf(&v9stat->extension, "%s %lu",
1265 "HARDLINKCOUNT", (unsigned long)stbuf->st_nlink);
1266 }
1267
1268 v9fs_string_sprintf(&v9stat->name, "%s", basename);
1269
1270 v9stat->size = 61 +
1271 v9fs_string_size(&v9stat->name) +
1272 v9fs_string_size(&v9stat->uid) +
1273 v9fs_string_size(&v9stat->gid) +
1274 v9fs_string_size(&v9stat->muid) +
1275 v9fs_string_size(&v9stat->extension);
1276 return 0;
1277 }
1278
1279 #define P9_STATS_MODE 0x00000001ULL
1280 #define P9_STATS_NLINK 0x00000002ULL
1281 #define P9_STATS_UID 0x00000004ULL
1282 #define P9_STATS_GID 0x00000008ULL
1283 #define P9_STATS_RDEV 0x00000010ULL
1284 #define P9_STATS_ATIME 0x00000020ULL
1285 #define P9_STATS_MTIME 0x00000040ULL
1286 #define P9_STATS_CTIME 0x00000080ULL
1287 #define P9_STATS_INO 0x00000100ULL
1288 #define P9_STATS_SIZE 0x00000200ULL
1289 #define P9_STATS_BLOCKS 0x00000400ULL
1290
1291 #define P9_STATS_BTIME 0x00000800ULL
1292 #define P9_STATS_GEN 0x00001000ULL
1293 #define P9_STATS_DATA_VERSION 0x00002000ULL
1294
1295 #define P9_STATS_BASIC 0x000007ffULL /* Mask for fields up to BLOCKS */
1296 #define P9_STATS_ALL 0x00003fffULL /* Mask for All fields above */
1297
1298
1299 /**
1300 * blksize_to_iounit() - Block size exposed to 9p client.
1301 * Return: block size
1302 *
1303 * @pdu: 9p client request
1304 * @blksize: host filesystem's block size
1305 *
1306 * Convert host filesystem's block size into an appropriate block size for
1307 * 9p client (guest OS side). The value returned suggests an "optimum" block
1308 * size for 9p I/O, i.e. to maximize performance.
1309 */
blksize_to_iounit(const V9fsPDU * pdu,int32_t blksize)1310 static int32_t blksize_to_iounit(const V9fsPDU *pdu, int32_t blksize)
1311 {
1312 int32_t iounit = 0;
1313 V9fsState *s = pdu->s;
1314
1315 /*
1316 * iounit should be multiples of blksize (host filesystem block size)
1317 * as well as less than (client msize - P9_IOHDRSZ)
1318 */
1319 if (blksize) {
1320 iounit = QEMU_ALIGN_DOWN(s->msize - P9_IOHDRSZ, blksize);
1321 }
1322 if (!iounit) {
1323 iounit = s->msize - P9_IOHDRSZ;
1324 }
1325 return iounit;
1326 }
1327
stat_to_iounit(const V9fsPDU * pdu,const struct stat * stbuf)1328 static int32_t stat_to_iounit(const V9fsPDU *pdu, const struct stat *stbuf)
1329 {
1330 return blksize_to_iounit(pdu, stbuf->st_blksize);
1331 }
1332
stat_to_v9stat_dotl(V9fsPDU * pdu,const struct stat * stbuf,V9fsStatDotl * v9lstat)1333 static int stat_to_v9stat_dotl(V9fsPDU *pdu, const struct stat *stbuf,
1334 V9fsStatDotl *v9lstat)
1335 {
1336 memset(v9lstat, 0, sizeof(*v9lstat));
1337
1338 v9lstat->st_mode = stbuf->st_mode;
1339 v9lstat->st_nlink = stbuf->st_nlink;
1340 v9lstat->st_uid = stbuf->st_uid;
1341 v9lstat->st_gid = stbuf->st_gid;
1342 v9lstat->st_rdev = host_dev_to_dotl_dev(stbuf->st_rdev);
1343 v9lstat->st_size = stbuf->st_size;
1344 v9lstat->st_blksize = stat_to_iounit(pdu, stbuf);
1345 v9lstat->st_blocks = stbuf->st_blocks;
1346 v9lstat->st_atime_sec = stbuf->st_atime;
1347 v9lstat->st_mtime_sec = stbuf->st_mtime;
1348 v9lstat->st_ctime_sec = stbuf->st_ctime;
1349 #ifdef CONFIG_DARWIN
1350 v9lstat->st_atime_nsec = stbuf->st_atimespec.tv_nsec;
1351 v9lstat->st_mtime_nsec = stbuf->st_mtimespec.tv_nsec;
1352 v9lstat->st_ctime_nsec = stbuf->st_ctimespec.tv_nsec;
1353 #else
1354 v9lstat->st_atime_nsec = stbuf->st_atim.tv_nsec;
1355 v9lstat->st_mtime_nsec = stbuf->st_mtim.tv_nsec;
1356 v9lstat->st_ctime_nsec = stbuf->st_ctim.tv_nsec;
1357 #endif
1358 /* Currently we only support BASIC fields in stat */
1359 v9lstat->st_result_mask = P9_STATS_BASIC;
1360
1361 return stat_to_qid(pdu, stbuf, &v9lstat->qid);
1362 }
1363
print_sg(struct iovec * sg,int cnt)1364 static void print_sg(struct iovec *sg, int cnt)
1365 {
1366 int i;
1367
1368 printf("sg[%d]: {", cnt);
1369 for (i = 0; i < cnt; i++) {
1370 if (i) {
1371 printf(", ");
1372 }
1373 printf("(%p, %zd)", sg[i].iov_base, sg[i].iov_len);
1374 }
1375 printf("}\n");
1376 }
1377
1378 /* Will call this only for path name based fid */
v9fs_fix_path(V9fsPath * dst,V9fsPath * src,int len)1379 static void v9fs_fix_path(V9fsPath *dst, V9fsPath *src, int len)
1380 {
1381 V9fsPath str;
1382 v9fs_path_init(&str);
1383 v9fs_path_copy(&str, dst);
1384 v9fs_path_sprintf(dst, "%s%s", src->data, str.data + len);
1385 v9fs_path_free(&str);
1386 }
1387
is_ro_export(FsContext * ctx)1388 static inline bool is_ro_export(FsContext *ctx)
1389 {
1390 return ctx->export_flags & V9FS_RDONLY;
1391 }
1392
v9fs_version(void * opaque)1393 static void coroutine_fn v9fs_version(void *opaque)
1394 {
1395 ssize_t err;
1396 V9fsPDU *pdu = opaque;
1397 V9fsState *s = pdu->s;
1398 V9fsString version;
1399 size_t offset = 7;
1400
1401 v9fs_string_init(&version);
1402 err = pdu_unmarshal(pdu, offset, "ds", &s->msize, &version);
1403 if (err < 0) {
1404 goto out;
1405 }
1406 trace_v9fs_version(pdu->tag, pdu->id, s->msize, version.data);
1407
1408 virtfs_reset(pdu);
1409
1410 if (!strcmp(version.data, "9P2000.u")) {
1411 s->proto_version = V9FS_PROTO_2000U;
1412 } else if (!strcmp(version.data, "9P2000.L")) {
1413 s->proto_version = V9FS_PROTO_2000L;
1414 } else {
1415 v9fs_string_sprintf(&version, "unknown");
1416 /* skip min. msize check, reporting invalid version has priority */
1417 goto marshal;
1418 }
1419
1420 if (s->msize < P9_MIN_MSIZE) {
1421 err = -EMSGSIZE;
1422 error_report(
1423 "9pfs: Client requested msize < minimum msize ("
1424 stringify(P9_MIN_MSIZE) ") supported by this server."
1425 );
1426 goto out;
1427 }
1428
1429 /* 8192 is the default msize of Linux clients */
1430 if (s->msize <= 8192 && !(s->ctx.export_flags & V9FS_NO_PERF_WARN)) {
1431 warn_report_once(
1432 "9p: degraded performance: a reasonable high msize should be "
1433 "chosen on client/guest side (chosen msize is <= 8192). See "
1434 "https://wiki.qemu.org/Documentation/9psetup#msize for details."
1435 );
1436 }
1437
1438 marshal:
1439 err = pdu_marshal(pdu, offset, "ds", s->msize, &version);
1440 if (err < 0) {
1441 goto out;
1442 }
1443 err += offset;
1444 trace_v9fs_version_return(pdu->tag, pdu->id, s->msize, version.data);
1445 out:
1446 pdu_complete(pdu, err);
1447 v9fs_string_free(&version);
1448 }
1449
v9fs_attach(void * opaque)1450 static void coroutine_fn v9fs_attach(void *opaque)
1451 {
1452 V9fsPDU *pdu = opaque;
1453 V9fsState *s = pdu->s;
1454 int32_t fid, afid, n_uname;
1455 V9fsString uname, aname;
1456 V9fsFidState *fidp;
1457 size_t offset = 7;
1458 V9fsQID qid;
1459 ssize_t err;
1460 struct stat stbuf;
1461
1462 v9fs_string_init(&uname);
1463 v9fs_string_init(&aname);
1464 err = pdu_unmarshal(pdu, offset, "ddssd", &fid,
1465 &afid, &uname, &aname, &n_uname);
1466 if (err < 0) {
1467 goto out_nofid;
1468 }
1469 trace_v9fs_attach(pdu->tag, pdu->id, fid, afid, uname.data, aname.data);
1470
1471 fidp = alloc_fid(s, fid);
1472 if (fidp == NULL) {
1473 err = -EINVAL;
1474 goto out_nofid;
1475 }
1476 fidp->uid = n_uname;
1477 err = v9fs_co_name_to_path(pdu, NULL, "/", &fidp->path);
1478 if (err < 0) {
1479 err = -EINVAL;
1480 clunk_fid(s, fid);
1481 goto out;
1482 }
1483 err = v9fs_co_lstat(pdu, &fidp->path, &stbuf);
1484 if (err < 0) {
1485 err = -EINVAL;
1486 clunk_fid(s, fid);
1487 goto out;
1488 }
1489 err = stat_to_qid(pdu, &stbuf, &qid);
1490 if (err < 0) {
1491 err = -EINVAL;
1492 clunk_fid(s, fid);
1493 goto out;
1494 }
1495
1496 /*
1497 * disable migration if we haven't done already.
1498 * attach could get called multiple times for the same export.
1499 */
1500 if (!s->migration_blocker) {
1501 error_setg(&s->migration_blocker,
1502 "Migration is disabled when VirtFS export path '%s' is mounted in the guest using mount_tag '%s'",
1503 s->ctx.fs_root ? s->ctx.fs_root : "NULL", s->tag);
1504 err = migrate_add_blocker(&s->migration_blocker, NULL);
1505 if (err < 0) {
1506 clunk_fid(s, fid);
1507 goto out;
1508 }
1509 s->root_fid = fid;
1510 }
1511
1512 err = pdu_marshal(pdu, offset, "Q", &qid);
1513 if (err < 0) {
1514 clunk_fid(s, fid);
1515 goto out;
1516 }
1517 err += offset;
1518
1519 memcpy(&s->root_st, &stbuf, sizeof(stbuf));
1520 trace_v9fs_attach_return(pdu->tag, pdu->id,
1521 qid.type, qid.version, qid.path);
1522 out:
1523 put_fid(pdu, fidp);
1524 out_nofid:
1525 pdu_complete(pdu, err);
1526 v9fs_string_free(&uname);
1527 v9fs_string_free(&aname);
1528 }
1529
v9fs_stat(void * opaque)1530 static void coroutine_fn v9fs_stat(void *opaque)
1531 {
1532 int32_t fid;
1533 V9fsStat v9stat;
1534 ssize_t err = 0;
1535 size_t offset = 7;
1536 struct stat stbuf;
1537 V9fsFidState *fidp;
1538 V9fsPDU *pdu = opaque;
1539 char *basename;
1540
1541 err = pdu_unmarshal(pdu, offset, "d", &fid);
1542 if (err < 0) {
1543 goto out_nofid;
1544 }
1545 trace_v9fs_stat(pdu->tag, pdu->id, fid);
1546
1547 fidp = get_fid(pdu, fid);
1548 if (fidp == NULL) {
1549 err = -ENOENT;
1550 goto out_nofid;
1551 }
1552 err = v9fs_co_lstat(pdu, &fidp->path, &stbuf);
1553 if (err < 0) {
1554 goto out;
1555 }
1556 basename = g_path_get_basename(fidp->path.data);
1557 err = stat_to_v9stat(pdu, &fidp->path, basename, &stbuf, &v9stat);
1558 g_free(basename);
1559 if (err < 0) {
1560 goto out;
1561 }
1562 err = pdu_marshal(pdu, offset, "wS", 0, &v9stat);
1563 if (err < 0) {
1564 v9fs_stat_free(&v9stat);
1565 goto out;
1566 }
1567 trace_v9fs_stat_return(pdu->tag, pdu->id, v9stat.mode,
1568 v9stat.atime, v9stat.mtime, v9stat.length);
1569 err += offset;
1570 v9fs_stat_free(&v9stat);
1571 out:
1572 put_fid(pdu, fidp);
1573 out_nofid:
1574 pdu_complete(pdu, err);
1575 }
1576
v9fs_getattr(void * opaque)1577 static void coroutine_fn v9fs_getattr(void *opaque)
1578 {
1579 int32_t fid;
1580 size_t offset = 7;
1581 ssize_t retval = 0;
1582 struct stat stbuf;
1583 V9fsFidState *fidp;
1584 uint64_t request_mask;
1585 V9fsStatDotl v9stat_dotl;
1586 V9fsPDU *pdu = opaque;
1587
1588 retval = pdu_unmarshal(pdu, offset, "dq", &fid, &request_mask);
1589 if (retval < 0) {
1590 goto out_nofid;
1591 }
1592 trace_v9fs_getattr(pdu->tag, pdu->id, fid, request_mask);
1593
1594 fidp = get_fid(pdu, fid);
1595 if (fidp == NULL) {
1596 retval = -ENOENT;
1597 goto out_nofid;
1598 }
1599 /*
1600 * Currently we only support BASIC fields in stat, so there is no
1601 * need to look at request_mask.
1602 */
1603 retval = v9fs_co_lstat(pdu, &fidp->path, &stbuf);
1604 if (retval < 0) {
1605 goto out;
1606 }
1607 retval = stat_to_v9stat_dotl(pdu, &stbuf, &v9stat_dotl);
1608 if (retval < 0) {
1609 goto out;
1610 }
1611
1612 /* fill st_gen if requested and supported by underlying fs */
1613 if (request_mask & P9_STATS_GEN) {
1614 retval = v9fs_co_st_gen(pdu, &fidp->path, stbuf.st_mode, &v9stat_dotl);
1615 switch (retval) {
1616 case 0:
1617 /* we have valid st_gen: update result mask */
1618 v9stat_dotl.st_result_mask |= P9_STATS_GEN;
1619 break;
1620 case -EINTR:
1621 /* request cancelled, e.g. by Tflush */
1622 goto out;
1623 default:
1624 /* failed to get st_gen: not fatal, ignore */
1625 break;
1626 }
1627 }
1628 retval = pdu_marshal(pdu, offset, "A", &v9stat_dotl);
1629 if (retval < 0) {
1630 goto out;
1631 }
1632 retval += offset;
1633 trace_v9fs_getattr_return(pdu->tag, pdu->id, v9stat_dotl.st_result_mask,
1634 v9stat_dotl.st_mode, v9stat_dotl.st_uid,
1635 v9stat_dotl.st_gid);
1636 out:
1637 put_fid(pdu, fidp);
1638 out_nofid:
1639 pdu_complete(pdu, retval);
1640 }
1641
1642 /* Attribute flags */
1643 #define P9_ATTR_MODE (1 << 0)
1644 #define P9_ATTR_UID (1 << 1)
1645 #define P9_ATTR_GID (1 << 2)
1646 #define P9_ATTR_SIZE (1 << 3)
1647 #define P9_ATTR_ATIME (1 << 4)
1648 #define P9_ATTR_MTIME (1 << 5)
1649 #define P9_ATTR_CTIME (1 << 6)
1650 #define P9_ATTR_ATIME_SET (1 << 7)
1651 #define P9_ATTR_MTIME_SET (1 << 8)
1652
1653 #define P9_ATTR_MASK 127
1654
v9fs_setattr(void * opaque)1655 static void coroutine_fn v9fs_setattr(void *opaque)
1656 {
1657 int err = 0;
1658 int32_t fid;
1659 V9fsFidState *fidp;
1660 size_t offset = 7;
1661 V9fsIattr v9iattr;
1662 V9fsPDU *pdu = opaque;
1663
1664 err = pdu_unmarshal(pdu, offset, "dI", &fid, &v9iattr);
1665 if (err < 0) {
1666 goto out_nofid;
1667 }
1668
1669 trace_v9fs_setattr(pdu->tag, pdu->id, fid,
1670 v9iattr.valid, v9iattr.mode, v9iattr.uid, v9iattr.gid,
1671 v9iattr.size, v9iattr.atime_sec, v9iattr.mtime_sec);
1672
1673 fidp = get_fid(pdu, fid);
1674 if (fidp == NULL) {
1675 err = -EINVAL;
1676 goto out_nofid;
1677 }
1678 if (v9iattr.valid & P9_ATTR_MODE) {
1679 err = v9fs_co_chmod(pdu, &fidp->path, v9iattr.mode);
1680 if (err < 0) {
1681 goto out;
1682 }
1683 }
1684 if (v9iattr.valid & (P9_ATTR_ATIME | P9_ATTR_MTIME)) {
1685 struct timespec times[2];
1686 if (v9iattr.valid & P9_ATTR_ATIME) {
1687 if (v9iattr.valid & P9_ATTR_ATIME_SET) {
1688 times[0].tv_sec = v9iattr.atime_sec;
1689 times[0].tv_nsec = v9iattr.atime_nsec;
1690 } else {
1691 times[0].tv_nsec = UTIME_NOW;
1692 }
1693 } else {
1694 times[0].tv_nsec = UTIME_OMIT;
1695 }
1696 if (v9iattr.valid & P9_ATTR_MTIME) {
1697 if (v9iattr.valid & P9_ATTR_MTIME_SET) {
1698 times[1].tv_sec = v9iattr.mtime_sec;
1699 times[1].tv_nsec = v9iattr.mtime_nsec;
1700 } else {
1701 times[1].tv_nsec = UTIME_NOW;
1702 }
1703 } else {
1704 times[1].tv_nsec = UTIME_OMIT;
1705 }
1706 err = v9fs_co_utimensat(pdu, &fidp->path, times);
1707 if (err < 0) {
1708 goto out;
1709 }
1710 }
1711 /*
1712 * If the only valid entry in iattr is ctime we can call
1713 * chown(-1,-1) to update the ctime of the file
1714 */
1715 if ((v9iattr.valid & (P9_ATTR_UID | P9_ATTR_GID)) ||
1716 ((v9iattr.valid & P9_ATTR_CTIME)
1717 && !((v9iattr.valid & P9_ATTR_MASK) & ~P9_ATTR_CTIME))) {
1718 if (!(v9iattr.valid & P9_ATTR_UID)) {
1719 v9iattr.uid = -1;
1720 }
1721 if (!(v9iattr.valid & P9_ATTR_GID)) {
1722 v9iattr.gid = -1;
1723 }
1724 err = v9fs_co_chown(pdu, &fidp->path, v9iattr.uid,
1725 v9iattr.gid);
1726 if (err < 0) {
1727 goto out;
1728 }
1729 }
1730 if (v9iattr.valid & (P9_ATTR_SIZE)) {
1731 err = v9fs_co_truncate(pdu, &fidp->path, v9iattr.size);
1732 if (err < 0) {
1733 goto out;
1734 }
1735 }
1736 err = offset;
1737 trace_v9fs_setattr_return(pdu->tag, pdu->id);
1738 out:
1739 put_fid(pdu, fidp);
1740 out_nofid:
1741 pdu_complete(pdu, err);
1742 }
1743
v9fs_walk_marshal(V9fsPDU * pdu,uint16_t nwnames,V9fsQID * qids)1744 static int v9fs_walk_marshal(V9fsPDU *pdu, uint16_t nwnames, V9fsQID *qids)
1745 {
1746 int i;
1747 ssize_t err;
1748 size_t offset = 7;
1749
1750 err = pdu_marshal(pdu, offset, "w", nwnames);
1751 if (err < 0) {
1752 return err;
1753 }
1754 offset += err;
1755 for (i = 0; i < nwnames; i++) {
1756 err = pdu_marshal(pdu, offset, "Q", &qids[i]);
1757 if (err < 0) {
1758 return err;
1759 }
1760 offset += err;
1761 }
1762 return offset;
1763 }
1764
name_is_illegal(const char * name)1765 static bool name_is_illegal(const char *name)
1766 {
1767 return !*name || strchr(name, '/') != NULL;
1768 }
1769
same_stat_id(const struct stat * a,const struct stat * b)1770 static bool same_stat_id(const struct stat *a, const struct stat *b)
1771 {
1772 return a->st_dev == b->st_dev && a->st_ino == b->st_ino;
1773 }
1774
v9fs_walk(void * opaque)1775 static void coroutine_fn v9fs_walk(void *opaque)
1776 {
1777 int name_idx, nwalked;
1778 g_autofree V9fsQID *qids = NULL;
1779 int i, err = 0, any_err = 0;
1780 V9fsPath dpath, path;
1781 P9ARRAY_REF(V9fsPath) pathes = NULL;
1782 uint16_t nwnames;
1783 struct stat stbuf, fidst;
1784 g_autofree struct stat *stbufs = NULL;
1785 size_t offset = 7;
1786 int32_t fid, newfid;
1787 P9ARRAY_REF(V9fsString) wnames = NULL;
1788 V9fsFidState *fidp;
1789 V9fsFidState *newfidp = NULL;
1790 V9fsPDU *pdu = opaque;
1791 V9fsState *s = pdu->s;
1792 V9fsQID qid;
1793
1794 err = pdu_unmarshal(pdu, offset, "ddw", &fid, &newfid, &nwnames);
1795 if (err < 0) {
1796 pdu_complete(pdu, err);
1797 return;
1798 }
1799 offset += err;
1800
1801 trace_v9fs_walk(pdu->tag, pdu->id, fid, newfid, nwnames);
1802
1803 if (nwnames > P9_MAXWELEM) {
1804 err = -EINVAL;
1805 goto out_nofid;
1806 }
1807 if (nwnames) {
1808 P9ARRAY_NEW(V9fsString, wnames, nwnames);
1809 qids = g_new0(V9fsQID, nwnames);
1810 stbufs = g_new0(struct stat, nwnames);
1811 P9ARRAY_NEW(V9fsPath, pathes, nwnames);
1812 for (i = 0; i < nwnames; i++) {
1813 err = pdu_unmarshal(pdu, offset, "s", &wnames[i]);
1814 if (err < 0) {
1815 goto out_nofid;
1816 }
1817 if (name_is_illegal(wnames[i].data)) {
1818 err = -ENOENT;
1819 goto out_nofid;
1820 }
1821 offset += err;
1822 }
1823 }
1824 fidp = get_fid(pdu, fid);
1825 if (fidp == NULL) {
1826 err = -ENOENT;
1827 goto out_nofid;
1828 }
1829
1830 v9fs_path_init(&dpath);
1831 v9fs_path_init(&path);
1832 /*
1833 * Both dpath and path initially point to fidp.
1834 * Needed to handle request with nwnames == 0
1835 */
1836 v9fs_path_copy(&dpath, &fidp->path);
1837 v9fs_path_copy(&path, &fidp->path);
1838
1839 /*
1840 * To keep latency (i.e. overall execution time for processing this
1841 * Twalk client request) as small as possible, run all the required fs
1842 * driver code altogether inside the following block.
1843 */
1844 v9fs_co_run_in_worker({
1845 nwalked = 0;
1846 if (v9fs_request_cancelled(pdu)) {
1847 any_err |= err = -EINTR;
1848 break;
1849 }
1850 err = s->ops->lstat(&s->ctx, &dpath, &fidst);
1851 if (err < 0) {
1852 any_err |= err = -errno;
1853 break;
1854 }
1855 stbuf = fidst;
1856 for (; nwalked < nwnames; nwalked++) {
1857 if (v9fs_request_cancelled(pdu)) {
1858 any_err |= err = -EINTR;
1859 break;
1860 }
1861 if (!same_stat_id(&pdu->s->root_st, &stbuf) ||
1862 strcmp("..", wnames[nwalked].data))
1863 {
1864 err = s->ops->name_to_path(&s->ctx, &dpath,
1865 wnames[nwalked].data,
1866 &pathes[nwalked]);
1867 if (err < 0) {
1868 any_err |= err = -errno;
1869 break;
1870 }
1871 if (v9fs_request_cancelled(pdu)) {
1872 any_err |= err = -EINTR;
1873 break;
1874 }
1875 err = s->ops->lstat(&s->ctx, &pathes[nwalked], &stbuf);
1876 if (err < 0) {
1877 any_err |= err = -errno;
1878 break;
1879 }
1880 stbufs[nwalked] = stbuf;
1881 v9fs_path_copy(&dpath, &pathes[nwalked]);
1882 }
1883 }
1884 });
1885 /*
1886 * Handle all the rest of this Twalk request on main thread ...
1887 *
1888 * NOTE: -EINTR is an exception where we deviate from the protocol spec
1889 * and simply send a (R)Lerror response instead of bothering to assemble
1890 * a (deducted) Rwalk response; because -EINTR is always the result of a
1891 * Tflush request, so client would no longer wait for a response in this
1892 * case anyway.
1893 */
1894 if ((err < 0 && !nwalked) || err == -EINTR) {
1895 goto out;
1896 }
1897
1898 any_err |= err = stat_to_qid(pdu, &fidst, &qid);
1899 if (err < 0 && !nwalked) {
1900 goto out;
1901 }
1902 stbuf = fidst;
1903
1904 /* reset dpath and path */
1905 v9fs_path_copy(&dpath, &fidp->path);
1906 v9fs_path_copy(&path, &fidp->path);
1907
1908 for (name_idx = 0; name_idx < nwalked; name_idx++) {
1909 if (!same_stat_id(&pdu->s->root_st, &stbuf) ||
1910 strcmp("..", wnames[name_idx].data))
1911 {
1912 stbuf = stbufs[name_idx];
1913 any_err |= err = stat_to_qid(pdu, &stbuf, &qid);
1914 if (err < 0) {
1915 break;
1916 }
1917 v9fs_path_copy(&path, &pathes[name_idx]);
1918 v9fs_path_copy(&dpath, &path);
1919 }
1920 memcpy(&qids[name_idx], &qid, sizeof(qid));
1921 }
1922 if (any_err < 0) {
1923 if (!name_idx) {
1924 /* don't send any QIDs, send Rlerror instead */
1925 goto out;
1926 } else {
1927 /* send QIDs (not Rlerror), but fid MUST remain unaffected */
1928 goto send_qids;
1929 }
1930 }
1931 if (fid == newfid) {
1932 if (fidp->fid_type != P9_FID_NONE) {
1933 err = -EINVAL;
1934 goto out;
1935 }
1936 v9fs_path_write_lock(s);
1937 v9fs_path_copy(&fidp->path, &path);
1938 v9fs_path_unlock(s);
1939 } else {
1940 newfidp = alloc_fid(s, newfid);
1941 if (newfidp == NULL) {
1942 err = -EINVAL;
1943 goto out;
1944 }
1945 newfidp->uid = fidp->uid;
1946 v9fs_path_copy(&newfidp->path, &path);
1947 }
1948 send_qids:
1949 err = v9fs_walk_marshal(pdu, name_idx, qids);
1950 trace_v9fs_walk_return(pdu->tag, pdu->id, name_idx, qids);
1951 out:
1952 put_fid(pdu, fidp);
1953 if (newfidp) {
1954 put_fid(pdu, newfidp);
1955 }
1956 v9fs_path_free(&dpath);
1957 v9fs_path_free(&path);
1958 out_nofid:
1959 pdu_complete(pdu, err);
1960 }
1961
get_iounit(V9fsPDU * pdu,V9fsPath * path)1962 static int32_t coroutine_fn get_iounit(V9fsPDU *pdu, V9fsPath *path)
1963 {
1964 struct statfs stbuf;
1965 int err = v9fs_co_statfs(pdu, path, &stbuf);
1966
1967 return blksize_to_iounit(pdu, (err >= 0) ? stbuf.f_bsize : 0);
1968 }
1969
v9fs_open(void * opaque)1970 static void coroutine_fn v9fs_open(void *opaque)
1971 {
1972 int flags;
1973 int32_t fid;
1974 int32_t mode;
1975 V9fsQID qid;
1976 int iounit = 0;
1977 ssize_t err = 0;
1978 size_t offset = 7;
1979 struct stat stbuf;
1980 V9fsFidState *fidp;
1981 V9fsPDU *pdu = opaque;
1982 V9fsState *s = pdu->s;
1983
1984 if (s->proto_version == V9FS_PROTO_2000L) {
1985 err = pdu_unmarshal(pdu, offset, "dd", &fid, &mode);
1986 } else {
1987 uint8_t modebyte;
1988 err = pdu_unmarshal(pdu, offset, "db", &fid, &modebyte);
1989 mode = modebyte;
1990 }
1991 if (err < 0) {
1992 goto out_nofid;
1993 }
1994 trace_v9fs_open(pdu->tag, pdu->id, fid, mode);
1995
1996 fidp = get_fid(pdu, fid);
1997 if (fidp == NULL) {
1998 err = -ENOENT;
1999 goto out_nofid;
2000 }
2001 if (fidp->fid_type != P9_FID_NONE) {
2002 err = -EINVAL;
2003 goto out;
2004 }
2005
2006 err = v9fs_co_lstat(pdu, &fidp->path, &stbuf);
2007 if (err < 0) {
2008 goto out;
2009 }
2010 err = stat_to_qid(pdu, &stbuf, &qid);
2011 if (err < 0) {
2012 goto out;
2013 }
2014 if (S_ISDIR(stbuf.st_mode)) {
2015 err = v9fs_co_opendir(pdu, fidp);
2016 if (err < 0) {
2017 goto out;
2018 }
2019 fidp->fid_type = P9_FID_DIR;
2020 err = pdu_marshal(pdu, offset, "Qd", &qid, 0);
2021 if (err < 0) {
2022 goto out;
2023 }
2024 err += offset;
2025 } else {
2026 if (s->proto_version == V9FS_PROTO_2000L) {
2027 flags = get_dotl_openflags(s, mode);
2028 } else {
2029 flags = omode_to_uflags(mode);
2030 }
2031 if (is_ro_export(&s->ctx)) {
2032 if (mode & O_WRONLY || mode & O_RDWR ||
2033 mode & O_APPEND || mode & O_TRUNC) {
2034 err = -EROFS;
2035 goto out;
2036 }
2037 }
2038 err = v9fs_co_open(pdu, fidp, flags);
2039 if (err < 0) {
2040 goto out;
2041 }
2042 fidp->fid_type = P9_FID_FILE;
2043 fidp->open_flags = flags;
2044 if (flags & O_EXCL) {
2045 /*
2046 * We let the host file system do O_EXCL check
2047 * We should not reclaim such fd
2048 */
2049 fidp->flags |= FID_NON_RECLAIMABLE;
2050 }
2051 iounit = get_iounit(pdu, &fidp->path);
2052 err = pdu_marshal(pdu, offset, "Qd", &qid, iounit);
2053 if (err < 0) {
2054 goto out;
2055 }
2056 err += offset;
2057 }
2058 trace_v9fs_open_return(pdu->tag, pdu->id,
2059 qid.type, qid.version, qid.path, iounit);
2060 out:
2061 put_fid(pdu, fidp);
2062 out_nofid:
2063 pdu_complete(pdu, err);
2064 }
2065
v9fs_lcreate(void * opaque)2066 static void coroutine_fn v9fs_lcreate(void *opaque)
2067 {
2068 int32_t dfid, flags, mode;
2069 gid_t gid;
2070 ssize_t err = 0;
2071 ssize_t offset = 7;
2072 V9fsString name;
2073 V9fsFidState *fidp;
2074 struct stat stbuf;
2075 V9fsQID qid;
2076 int32_t iounit;
2077 V9fsPDU *pdu = opaque;
2078
2079 v9fs_string_init(&name);
2080 err = pdu_unmarshal(pdu, offset, "dsddd", &dfid,
2081 &name, &flags, &mode, &gid);
2082 if (err < 0) {
2083 goto out_nofid;
2084 }
2085 trace_v9fs_lcreate(pdu->tag, pdu->id, dfid, flags, mode, gid);
2086
2087 if (name_is_illegal(name.data)) {
2088 err = -ENOENT;
2089 goto out_nofid;
2090 }
2091
2092 if (!strcmp(".", name.data) || !strcmp("..", name.data)) {
2093 err = -EEXIST;
2094 goto out_nofid;
2095 }
2096
2097 fidp = get_fid(pdu, dfid);
2098 if (fidp == NULL) {
2099 err = -ENOENT;
2100 goto out_nofid;
2101 }
2102 if (fidp->fid_type != P9_FID_NONE) {
2103 err = -EINVAL;
2104 goto out;
2105 }
2106
2107 flags = get_dotl_openflags(pdu->s, flags);
2108 err = v9fs_co_open2(pdu, fidp, &name, gid,
2109 flags | O_CREAT, mode, &stbuf);
2110 if (err < 0) {
2111 goto out;
2112 }
2113 fidp->fid_type = P9_FID_FILE;
2114 fidp->open_flags = flags;
2115 if (flags & O_EXCL) {
2116 /*
2117 * We let the host file system do O_EXCL check
2118 * We should not reclaim such fd
2119 */
2120 fidp->flags |= FID_NON_RECLAIMABLE;
2121 }
2122 iounit = get_iounit(pdu, &fidp->path);
2123 err = stat_to_qid(pdu, &stbuf, &qid);
2124 if (err < 0) {
2125 goto out;
2126 }
2127 err = pdu_marshal(pdu, offset, "Qd", &qid, iounit);
2128 if (err < 0) {
2129 goto out;
2130 }
2131 err += offset;
2132 trace_v9fs_lcreate_return(pdu->tag, pdu->id,
2133 qid.type, qid.version, qid.path, iounit);
2134 out:
2135 put_fid(pdu, fidp);
2136 out_nofid:
2137 pdu_complete(pdu, err);
2138 v9fs_string_free(&name);
2139 }
2140
v9fs_fsync(void * opaque)2141 static void coroutine_fn v9fs_fsync(void *opaque)
2142 {
2143 int err;
2144 int32_t fid;
2145 int datasync;
2146 size_t offset = 7;
2147 V9fsFidState *fidp;
2148 V9fsPDU *pdu = opaque;
2149
2150 err = pdu_unmarshal(pdu, offset, "dd", &fid, &datasync);
2151 if (err < 0) {
2152 goto out_nofid;
2153 }
2154 trace_v9fs_fsync(pdu->tag, pdu->id, fid, datasync);
2155
2156 fidp = get_fid(pdu, fid);
2157 if (fidp == NULL) {
2158 err = -ENOENT;
2159 goto out_nofid;
2160 }
2161 err = v9fs_co_fsync(pdu, fidp, datasync);
2162 if (!err) {
2163 err = offset;
2164 }
2165 put_fid(pdu, fidp);
2166 out_nofid:
2167 pdu_complete(pdu, err);
2168 }
2169
v9fs_clunk(void * opaque)2170 static void coroutine_fn v9fs_clunk(void *opaque)
2171 {
2172 int err;
2173 int32_t fid;
2174 size_t offset = 7;
2175 V9fsFidState *fidp;
2176 V9fsPDU *pdu = opaque;
2177 V9fsState *s = pdu->s;
2178
2179 err = pdu_unmarshal(pdu, offset, "d", &fid);
2180 if (err < 0) {
2181 goto out_nofid;
2182 }
2183 trace_v9fs_clunk(pdu->tag, pdu->id, fid);
2184
2185 fidp = clunk_fid(s, fid);
2186 if (fidp == NULL) {
2187 err = -ENOENT;
2188 goto out_nofid;
2189 }
2190 /*
2191 * Bump the ref so that put_fid will
2192 * free the fid.
2193 */
2194 fidp->ref++;
2195 err = put_fid(pdu, fidp);
2196 if (!err) {
2197 err = offset;
2198 }
2199 out_nofid:
2200 pdu_complete(pdu, err);
2201 }
2202
2203 /*
2204 * Create a QEMUIOVector for a sub-region of PDU iovecs
2205 *
2206 * @qiov: uninitialized QEMUIOVector
2207 * @skip: number of bytes to skip from beginning of PDU
2208 * @size: number of bytes to include
2209 * @is_write: true - write, false - read
2210 *
2211 * The resulting QEMUIOVector has heap-allocated iovecs and must be cleaned up
2212 * with qemu_iovec_destroy().
2213 */
v9fs_init_qiov_from_pdu(QEMUIOVector * qiov,V9fsPDU * pdu,size_t skip,size_t size,bool is_write)2214 static void v9fs_init_qiov_from_pdu(QEMUIOVector *qiov, V9fsPDU *pdu,
2215 size_t skip, size_t size,
2216 bool is_write)
2217 {
2218 QEMUIOVector elem;
2219 struct iovec *iov;
2220 unsigned int niov;
2221
2222 if (is_write) {
2223 pdu->s->transport->init_out_iov_from_pdu(pdu, &iov, &niov, size + skip);
2224 } else {
2225 pdu->s->transport->init_in_iov_from_pdu(pdu, &iov, &niov, size + skip);
2226 }
2227
2228 qemu_iovec_init_external(&elem, iov, niov);
2229 qemu_iovec_init(qiov, niov);
2230 qemu_iovec_concat(qiov, &elem, skip, size);
2231 }
2232
v9fs_xattr_read(V9fsState * s,V9fsPDU * pdu,V9fsFidState * fidp,uint64_t off,uint32_t max_count)2233 static int v9fs_xattr_read(V9fsState *s, V9fsPDU *pdu, V9fsFidState *fidp,
2234 uint64_t off, uint32_t max_count)
2235 {
2236 ssize_t err;
2237 size_t offset = 7;
2238 uint64_t read_count;
2239 QEMUIOVector qiov_full;
2240
2241 if (fidp->fs.xattr.len < off) {
2242 read_count = 0;
2243 } else {
2244 read_count = fidp->fs.xattr.len - off;
2245 }
2246 if (read_count > max_count) {
2247 read_count = max_count;
2248 }
2249 err = pdu_marshal(pdu, offset, "d", read_count);
2250 if (err < 0) {
2251 return err;
2252 }
2253 offset += err;
2254
2255 v9fs_init_qiov_from_pdu(&qiov_full, pdu, offset, read_count, false);
2256 err = v9fs_pack(qiov_full.iov, qiov_full.niov, 0,
2257 ((char *)fidp->fs.xattr.value) + off,
2258 read_count);
2259 qemu_iovec_destroy(&qiov_full);
2260 if (err < 0) {
2261 return err;
2262 }
2263 offset += err;
2264 return offset;
2265 }
2266
v9fs_do_readdir_with_stat(V9fsPDU * pdu,V9fsFidState * fidp,uint32_t max_count)2267 static int coroutine_fn v9fs_do_readdir_with_stat(V9fsPDU *pdu,
2268 V9fsFidState *fidp,
2269 uint32_t max_count)
2270 {
2271 V9fsPath path;
2272 V9fsStat v9stat;
2273 int len, err = 0;
2274 int32_t count = 0;
2275 struct stat stbuf;
2276 off_t saved_dir_pos;
2277 struct dirent *dent;
2278
2279 /* save the directory position */
2280 saved_dir_pos = v9fs_co_telldir(pdu, fidp);
2281 if (saved_dir_pos < 0) {
2282 return saved_dir_pos;
2283 }
2284
2285 while (1) {
2286 v9fs_path_init(&path);
2287
2288 v9fs_readdir_lock(&fidp->fs.dir);
2289
2290 err = v9fs_co_readdir(pdu, fidp, &dent);
2291 if (err || !dent) {
2292 break;
2293 }
2294 err = v9fs_co_name_to_path(pdu, &fidp->path, dent->d_name, &path);
2295 if (err < 0) {
2296 break;
2297 }
2298 err = v9fs_co_lstat(pdu, &path, &stbuf);
2299 if (err < 0) {
2300 break;
2301 }
2302 err = stat_to_v9stat(pdu, &path, dent->d_name, &stbuf, &v9stat);
2303 if (err < 0) {
2304 break;
2305 }
2306 if ((count + v9stat.size + 2) > max_count) {
2307 v9fs_readdir_unlock(&fidp->fs.dir);
2308
2309 /* Ran out of buffer. Set dir back to old position and return */
2310 v9fs_co_seekdir(pdu, fidp, saved_dir_pos);
2311 v9fs_stat_free(&v9stat);
2312 v9fs_path_free(&path);
2313 return count;
2314 }
2315
2316 /* 11 = 7 + 4 (7 = start offset, 4 = space for storing count) */
2317 len = pdu_marshal(pdu, 11 + count, "S", &v9stat);
2318
2319 v9fs_readdir_unlock(&fidp->fs.dir);
2320
2321 if (len < 0) {
2322 v9fs_co_seekdir(pdu, fidp, saved_dir_pos);
2323 v9fs_stat_free(&v9stat);
2324 v9fs_path_free(&path);
2325 return len;
2326 }
2327 count += len;
2328 v9fs_stat_free(&v9stat);
2329 v9fs_path_free(&path);
2330 saved_dir_pos = qemu_dirent_off(dent);
2331 }
2332
2333 v9fs_readdir_unlock(&fidp->fs.dir);
2334
2335 v9fs_path_free(&path);
2336 if (err < 0) {
2337 return err;
2338 }
2339 return count;
2340 }
2341
v9fs_read(void * opaque)2342 static void coroutine_fn v9fs_read(void *opaque)
2343 {
2344 int32_t fid;
2345 uint64_t off;
2346 ssize_t err = 0;
2347 int32_t count = 0;
2348 size_t offset = 7;
2349 uint32_t max_count;
2350 V9fsFidState *fidp;
2351 V9fsPDU *pdu = opaque;
2352 V9fsState *s = pdu->s;
2353
2354 err = pdu_unmarshal(pdu, offset, "dqd", &fid, &off, &max_count);
2355 if (err < 0) {
2356 goto out_nofid;
2357 }
2358 trace_v9fs_read(pdu->tag, pdu->id, fid, off, max_count);
2359
2360 fidp = get_fid(pdu, fid);
2361 if (fidp == NULL) {
2362 err = -EINVAL;
2363 goto out_nofid;
2364 }
2365 if (fidp->fid_type == P9_FID_DIR) {
2366 if (s->proto_version != V9FS_PROTO_2000U) {
2367 warn_report_once(
2368 "9p: bad client: T_read request on directory only expected "
2369 "with 9P2000.u protocol version"
2370 );
2371 err = -EOPNOTSUPP;
2372 goto out;
2373 }
2374 if (off == 0) {
2375 v9fs_co_rewinddir(pdu, fidp);
2376 }
2377 count = v9fs_do_readdir_with_stat(pdu, fidp, max_count);
2378 if (count < 0) {
2379 err = count;
2380 goto out;
2381 }
2382 err = pdu_marshal(pdu, offset, "d", count);
2383 if (err < 0) {
2384 goto out;
2385 }
2386 err += offset + count;
2387 } else if (fidp->fid_type == P9_FID_FILE) {
2388 QEMUIOVector qiov_full;
2389 QEMUIOVector qiov;
2390 int32_t len;
2391
2392 v9fs_init_qiov_from_pdu(&qiov_full, pdu, offset + 4, max_count, false);
2393 qemu_iovec_init(&qiov, qiov_full.niov);
2394 do {
2395 qemu_iovec_reset(&qiov);
2396 qemu_iovec_concat(&qiov, &qiov_full, count, qiov_full.size - count);
2397 if (0) {
2398 print_sg(qiov.iov, qiov.niov);
2399 }
2400 /* Loop in case of EINTR */
2401 do {
2402 len = v9fs_co_preadv(pdu, fidp, qiov.iov, qiov.niov, off);
2403 if (len >= 0) {
2404 off += len;
2405 count += len;
2406 }
2407 } while (len == -EINTR && !pdu->cancelled);
2408 if (len < 0) {
2409 /* IO error return the error */
2410 err = len;
2411 goto out_free_iovec;
2412 }
2413 } while (count < max_count && len > 0);
2414 err = pdu_marshal(pdu, offset, "d", count);
2415 if (err < 0) {
2416 goto out_free_iovec;
2417 }
2418 err += offset + count;
2419 out_free_iovec:
2420 qemu_iovec_destroy(&qiov);
2421 qemu_iovec_destroy(&qiov_full);
2422 } else if (fidp->fid_type == P9_FID_XATTR) {
2423 err = v9fs_xattr_read(s, pdu, fidp, off, max_count);
2424 } else {
2425 err = -EINVAL;
2426 }
2427 trace_v9fs_read_return(pdu->tag, pdu->id, count, err);
2428 out:
2429 put_fid(pdu, fidp);
2430 out_nofid:
2431 pdu_complete(pdu, err);
2432 }
2433
2434 /**
2435 * v9fs_readdir_response_size() - Returns size required in Rreaddir response
2436 * for the passed dirent @name.
2437 *
2438 * @name: directory entry's name (i.e. file name, directory name)
2439 * Return: required size in bytes
2440 */
v9fs_readdir_response_size(V9fsString * name)2441 size_t v9fs_readdir_response_size(V9fsString *name)
2442 {
2443 /*
2444 * Size of each dirent on the wire: size of qid (13) + size of offset (8)
2445 * size of type (1) + size of name.size (2) + strlen(name.data)
2446 */
2447 return 24 + v9fs_string_size(name);
2448 }
2449
v9fs_free_dirents(struct V9fsDirEnt * e)2450 static void v9fs_free_dirents(struct V9fsDirEnt *e)
2451 {
2452 struct V9fsDirEnt *next = NULL;
2453
2454 for (; e; e = next) {
2455 next = e->next;
2456 g_free(e->dent);
2457 g_free(e->st);
2458 g_free(e);
2459 }
2460 }
2461
v9fs_do_readdir(V9fsPDU * pdu,V9fsFidState * fidp,off_t offset,int32_t max_count)2462 static int coroutine_fn v9fs_do_readdir(V9fsPDU *pdu, V9fsFidState *fidp,
2463 off_t offset, int32_t max_count)
2464 {
2465 size_t size;
2466 V9fsQID qid;
2467 V9fsString name;
2468 int len, err = 0;
2469 int32_t count = 0;
2470 off_t off;
2471 struct dirent *dent;
2472 struct stat *st;
2473 struct V9fsDirEnt *entries = NULL;
2474
2475 /*
2476 * inode remapping requires the device id, which in turn might be
2477 * different for different directory entries, so if inode remapping is
2478 * enabled we have to make a full stat for each directory entry
2479 */
2480 const bool dostat = pdu->s->ctx.export_flags & V9FS_REMAP_INODES;
2481
2482 /*
2483 * Fetch all required directory entries altogether on a background IO
2484 * thread from fs driver. We don't want to do that for each entry
2485 * individually, because hopping between threads (this main IO thread
2486 * and background IO driver thread) would sum up to huge latencies.
2487 */
2488 count = v9fs_co_readdir_many(pdu, fidp, &entries, offset, max_count,
2489 dostat);
2490 if (count < 0) {
2491 err = count;
2492 count = 0;
2493 goto out;
2494 }
2495 count = 0;
2496
2497 for (struct V9fsDirEnt *e = entries; e; e = e->next) {
2498 dent = e->dent;
2499
2500 if (pdu->s->ctx.export_flags & V9FS_REMAP_INODES) {
2501 st = e->st;
2502 /* e->st should never be NULL, but just to be sure */
2503 if (!st) {
2504 err = -1;
2505 break;
2506 }
2507
2508 /* remap inode */
2509 err = stat_to_qid(pdu, st, &qid);
2510 if (err < 0) {
2511 break;
2512 }
2513 } else {
2514 /*
2515 * Fill up just the path field of qid because the client uses
2516 * only that. To fill the entire qid structure we will have
2517 * to stat each dirent found, which is expensive. For the
2518 * latter reason we don't call stat_to_qid() here. Only drawback
2519 * is that no multi-device export detection of stat_to_qid()
2520 * would be done and provided as error to the user here. But
2521 * user would get that error anyway when accessing those
2522 * files/dirs through other ways.
2523 */
2524 size = MIN(sizeof(dent->d_ino), sizeof(qid.path));
2525 memcpy(&qid.path, &dent->d_ino, size);
2526 /* Fill the other fields with dummy values */
2527 qid.type = 0;
2528 qid.version = 0;
2529 }
2530
2531 off = qemu_dirent_off(dent);
2532 v9fs_string_init(&name);
2533 v9fs_string_sprintf(&name, "%s", dent->d_name);
2534
2535 /* 11 = 7 + 4 (7 = start offset, 4 = space for storing count) */
2536 len = pdu_marshal(pdu, 11 + count, "Qqbs",
2537 &qid, off,
2538 dent->d_type, &name);
2539
2540 v9fs_string_free(&name);
2541
2542 if (len < 0) {
2543 err = len;
2544 break;
2545 }
2546
2547 count += len;
2548 }
2549
2550 out:
2551 v9fs_free_dirents(entries);
2552 if (err < 0) {
2553 return err;
2554 }
2555 return count;
2556 }
2557
v9fs_readdir(void * opaque)2558 static void coroutine_fn v9fs_readdir(void *opaque)
2559 {
2560 int32_t fid;
2561 V9fsFidState *fidp;
2562 ssize_t retval = 0;
2563 size_t offset = 7;
2564 uint64_t initial_offset;
2565 int32_t count;
2566 uint32_t max_count;
2567 V9fsPDU *pdu = opaque;
2568 V9fsState *s = pdu->s;
2569
2570 retval = pdu_unmarshal(pdu, offset, "dqd", &fid,
2571 &initial_offset, &max_count);
2572 if (retval < 0) {
2573 goto out_nofid;
2574 }
2575 trace_v9fs_readdir(pdu->tag, pdu->id, fid, initial_offset, max_count);
2576
2577 /* Enough space for a R_readdir header: size[4] Rreaddir tag[2] count[4] */
2578 if (max_count > s->msize - 11) {
2579 max_count = s->msize - 11;
2580 warn_report_once(
2581 "9p: bad client: T_readdir with count > msize - 11"
2582 );
2583 }
2584
2585 fidp = get_fid(pdu, fid);
2586 if (fidp == NULL) {
2587 retval = -EINVAL;
2588 goto out_nofid;
2589 }
2590 if (fidp->fid_type != P9_FID_DIR) {
2591 warn_report_once("9p: bad client: T_readdir on non-directory stream");
2592 retval = -ENOTDIR;
2593 goto out;
2594 }
2595 if (!fidp->fs.dir.stream) {
2596 retval = -EINVAL;
2597 goto out;
2598 }
2599 if (s->proto_version != V9FS_PROTO_2000L) {
2600 warn_report_once(
2601 "9p: bad client: T_readdir request only expected with 9P2000.L "
2602 "protocol version"
2603 );
2604 retval = -EOPNOTSUPP;
2605 goto out;
2606 }
2607 count = v9fs_do_readdir(pdu, fidp, (off_t) initial_offset, max_count);
2608 if (count < 0) {
2609 retval = count;
2610 goto out;
2611 }
2612 retval = pdu_marshal(pdu, offset, "d", count);
2613 if (retval < 0) {
2614 goto out;
2615 }
2616 retval += count + offset;
2617 trace_v9fs_readdir_return(pdu->tag, pdu->id, count, retval);
2618 out:
2619 put_fid(pdu, fidp);
2620 out_nofid:
2621 pdu_complete(pdu, retval);
2622 }
2623
v9fs_xattr_write(V9fsState * s,V9fsPDU * pdu,V9fsFidState * fidp,uint64_t off,uint32_t count,struct iovec * sg,int cnt)2624 static int v9fs_xattr_write(V9fsState *s, V9fsPDU *pdu, V9fsFidState *fidp,
2625 uint64_t off, uint32_t count,
2626 struct iovec *sg, int cnt)
2627 {
2628 int i, to_copy;
2629 ssize_t err = 0;
2630 uint64_t write_count;
2631 size_t offset = 7;
2632
2633
2634 if (fidp->fs.xattr.len < off) {
2635 return -ENOSPC;
2636 }
2637 write_count = fidp->fs.xattr.len - off;
2638 if (write_count > count) {
2639 write_count = count;
2640 }
2641 err = pdu_marshal(pdu, offset, "d", write_count);
2642 if (err < 0) {
2643 return err;
2644 }
2645 err += offset;
2646 fidp->fs.xattr.copied_len += write_count;
2647 /*
2648 * Now copy the content from sg list
2649 */
2650 for (i = 0; i < cnt; i++) {
2651 if (write_count > sg[i].iov_len) {
2652 to_copy = sg[i].iov_len;
2653 } else {
2654 to_copy = write_count;
2655 }
2656 memcpy((char *)fidp->fs.xattr.value + off, sg[i].iov_base, to_copy);
2657 /* updating vs->off since we are not using below */
2658 off += to_copy;
2659 write_count -= to_copy;
2660 }
2661
2662 return err;
2663 }
2664
v9fs_write(void * opaque)2665 static void coroutine_fn v9fs_write(void *opaque)
2666 {
2667 ssize_t err;
2668 int32_t fid;
2669 uint64_t off;
2670 uint32_t count;
2671 int32_t len = 0;
2672 int32_t total = 0;
2673 size_t offset = 7;
2674 V9fsFidState *fidp;
2675 V9fsPDU *pdu = opaque;
2676 V9fsState *s = pdu->s;
2677 QEMUIOVector qiov_full;
2678 QEMUIOVector qiov;
2679
2680 err = pdu_unmarshal(pdu, offset, "dqd", &fid, &off, &count);
2681 if (err < 0) {
2682 pdu_complete(pdu, err);
2683 return;
2684 }
2685 offset += err;
2686 v9fs_init_qiov_from_pdu(&qiov_full, pdu, offset, count, true);
2687 trace_v9fs_write(pdu->tag, pdu->id, fid, off, count, qiov_full.niov);
2688
2689 fidp = get_fid(pdu, fid);
2690 if (fidp == NULL) {
2691 err = -EINVAL;
2692 goto out_nofid;
2693 }
2694 if (fidp->fid_type == P9_FID_FILE) {
2695 if (fidp->fs.fd == -1) {
2696 err = -EINVAL;
2697 goto out;
2698 }
2699 } else if (fidp->fid_type == P9_FID_XATTR) {
2700 /*
2701 * setxattr operation
2702 */
2703 err = v9fs_xattr_write(s, pdu, fidp, off, count,
2704 qiov_full.iov, qiov_full.niov);
2705 goto out;
2706 } else {
2707 err = -EINVAL;
2708 goto out;
2709 }
2710 qemu_iovec_init(&qiov, qiov_full.niov);
2711 do {
2712 qemu_iovec_reset(&qiov);
2713 qemu_iovec_concat(&qiov, &qiov_full, total, qiov_full.size - total);
2714 if (0) {
2715 print_sg(qiov.iov, qiov.niov);
2716 }
2717 /* Loop in case of EINTR */
2718 do {
2719 len = v9fs_co_pwritev(pdu, fidp, qiov.iov, qiov.niov, off);
2720 if (len >= 0) {
2721 off += len;
2722 total += len;
2723 }
2724 } while (len == -EINTR && !pdu->cancelled);
2725 if (len < 0) {
2726 /* IO error return the error */
2727 err = len;
2728 goto out_qiov;
2729 }
2730 } while (total < count && len > 0);
2731
2732 offset = 7;
2733 err = pdu_marshal(pdu, offset, "d", total);
2734 if (err < 0) {
2735 goto out_qiov;
2736 }
2737 err += offset;
2738 trace_v9fs_write_return(pdu->tag, pdu->id, total, err);
2739 out_qiov:
2740 qemu_iovec_destroy(&qiov);
2741 out:
2742 put_fid(pdu, fidp);
2743 out_nofid:
2744 qemu_iovec_destroy(&qiov_full);
2745 pdu_complete(pdu, err);
2746 }
2747
v9fs_create(void * opaque)2748 static void coroutine_fn v9fs_create(void *opaque)
2749 {
2750 int32_t fid;
2751 int err = 0;
2752 size_t offset = 7;
2753 V9fsFidState *fidp;
2754 V9fsQID qid;
2755 int32_t perm;
2756 int8_t mode;
2757 V9fsPath path;
2758 struct stat stbuf;
2759 V9fsString name;
2760 V9fsString extension;
2761 int iounit;
2762 V9fsPDU *pdu = opaque;
2763 V9fsState *s = pdu->s;
2764
2765 v9fs_path_init(&path);
2766 v9fs_string_init(&name);
2767 v9fs_string_init(&extension);
2768 err = pdu_unmarshal(pdu, offset, "dsdbs", &fid, &name,
2769 &perm, &mode, &extension);
2770 if (err < 0) {
2771 goto out_nofid;
2772 }
2773 trace_v9fs_create(pdu->tag, pdu->id, fid, name.data, perm, mode);
2774
2775 if (name_is_illegal(name.data)) {
2776 err = -ENOENT;
2777 goto out_nofid;
2778 }
2779
2780 if (!strcmp(".", name.data) || !strcmp("..", name.data)) {
2781 err = -EEXIST;
2782 goto out_nofid;
2783 }
2784
2785 fidp = get_fid(pdu, fid);
2786 if (fidp == NULL) {
2787 err = -EINVAL;
2788 goto out_nofid;
2789 }
2790 if (fidp->fid_type != P9_FID_NONE) {
2791 err = -EINVAL;
2792 goto out;
2793 }
2794 if (perm & P9_STAT_MODE_DIR) {
2795 err = v9fs_co_mkdir(pdu, fidp, &name, perm & 0777,
2796 fidp->uid, -1, &stbuf);
2797 if (err < 0) {
2798 goto out;
2799 }
2800 err = v9fs_co_name_to_path(pdu, &fidp->path, name.data, &path);
2801 if (err < 0) {
2802 goto out;
2803 }
2804 v9fs_path_write_lock(s);
2805 v9fs_path_copy(&fidp->path, &path);
2806 v9fs_path_unlock(s);
2807 err = v9fs_co_opendir(pdu, fidp);
2808 if (err < 0) {
2809 goto out;
2810 }
2811 fidp->fid_type = P9_FID_DIR;
2812 } else if (perm & P9_STAT_MODE_SYMLINK) {
2813 err = v9fs_co_symlink(pdu, fidp, &name,
2814 extension.data, -1 , &stbuf);
2815 if (err < 0) {
2816 goto out;
2817 }
2818 err = v9fs_co_name_to_path(pdu, &fidp->path, name.data, &path);
2819 if (err < 0) {
2820 goto out;
2821 }
2822 v9fs_path_write_lock(s);
2823 v9fs_path_copy(&fidp->path, &path);
2824 v9fs_path_unlock(s);
2825 } else if (perm & P9_STAT_MODE_LINK) {
2826 int32_t ofid = atoi(extension.data);
2827 V9fsFidState *ofidp = get_fid(pdu, ofid);
2828 if (ofidp == NULL) {
2829 err = -EINVAL;
2830 goto out;
2831 }
2832 err = v9fs_co_link(pdu, ofidp, fidp, &name);
2833 put_fid(pdu, ofidp);
2834 if (err < 0) {
2835 goto out;
2836 }
2837 err = v9fs_co_name_to_path(pdu, &fidp->path, name.data, &path);
2838 if (err < 0) {
2839 fidp->fid_type = P9_FID_NONE;
2840 goto out;
2841 }
2842 v9fs_path_write_lock(s);
2843 v9fs_path_copy(&fidp->path, &path);
2844 v9fs_path_unlock(s);
2845 err = v9fs_co_lstat(pdu, &fidp->path, &stbuf);
2846 if (err < 0) {
2847 fidp->fid_type = P9_FID_NONE;
2848 goto out;
2849 }
2850 } else if (perm & P9_STAT_MODE_DEVICE) {
2851 char ctype;
2852 uint32_t major, minor;
2853 mode_t nmode = 0;
2854
2855 if (sscanf(extension.data, "%c %u %u", &ctype, &major, &minor) != 3) {
2856 err = -errno;
2857 goto out;
2858 }
2859
2860 switch (ctype) {
2861 case 'c':
2862 nmode = S_IFCHR;
2863 break;
2864 case 'b':
2865 nmode = S_IFBLK;
2866 break;
2867 default:
2868 err = -EIO;
2869 goto out;
2870 }
2871
2872 nmode |= perm & 0777;
2873 err = v9fs_co_mknod(pdu, fidp, &name, fidp->uid, -1,
2874 makedev(major, minor), nmode, &stbuf);
2875 if (err < 0) {
2876 goto out;
2877 }
2878 err = v9fs_co_name_to_path(pdu, &fidp->path, name.data, &path);
2879 if (err < 0) {
2880 goto out;
2881 }
2882 v9fs_path_write_lock(s);
2883 v9fs_path_copy(&fidp->path, &path);
2884 v9fs_path_unlock(s);
2885 } else if (perm & P9_STAT_MODE_NAMED_PIPE) {
2886 err = v9fs_co_mknod(pdu, fidp, &name, fidp->uid, -1,
2887 0, S_IFIFO | (perm & 0777), &stbuf);
2888 if (err < 0) {
2889 goto out;
2890 }
2891 err = v9fs_co_name_to_path(pdu, &fidp->path, name.data, &path);
2892 if (err < 0) {
2893 goto out;
2894 }
2895 v9fs_path_write_lock(s);
2896 v9fs_path_copy(&fidp->path, &path);
2897 v9fs_path_unlock(s);
2898 } else if (perm & P9_STAT_MODE_SOCKET) {
2899 err = v9fs_co_mknod(pdu, fidp, &name, fidp->uid, -1,
2900 0, S_IFSOCK | (perm & 0777), &stbuf);
2901 if (err < 0) {
2902 goto out;
2903 }
2904 err = v9fs_co_name_to_path(pdu, &fidp->path, name.data, &path);
2905 if (err < 0) {
2906 goto out;
2907 }
2908 v9fs_path_write_lock(s);
2909 v9fs_path_copy(&fidp->path, &path);
2910 v9fs_path_unlock(s);
2911 } else {
2912 err = v9fs_co_open2(pdu, fidp, &name, -1,
2913 omode_to_uflags(mode) | O_CREAT, perm, &stbuf);
2914 if (err < 0) {
2915 goto out;
2916 }
2917 fidp->fid_type = P9_FID_FILE;
2918 fidp->open_flags = omode_to_uflags(mode);
2919 if (fidp->open_flags & O_EXCL) {
2920 /*
2921 * We let the host file system do O_EXCL check
2922 * We should not reclaim such fd
2923 */
2924 fidp->flags |= FID_NON_RECLAIMABLE;
2925 }
2926 }
2927 iounit = get_iounit(pdu, &fidp->path);
2928 err = stat_to_qid(pdu, &stbuf, &qid);
2929 if (err < 0) {
2930 goto out;
2931 }
2932 err = pdu_marshal(pdu, offset, "Qd", &qid, iounit);
2933 if (err < 0) {
2934 goto out;
2935 }
2936 err += offset;
2937 trace_v9fs_create_return(pdu->tag, pdu->id,
2938 qid.type, qid.version, qid.path, iounit);
2939 out:
2940 put_fid(pdu, fidp);
2941 out_nofid:
2942 pdu_complete(pdu, err);
2943 v9fs_string_free(&name);
2944 v9fs_string_free(&extension);
2945 v9fs_path_free(&path);
2946 }
2947
v9fs_symlink(void * opaque)2948 static void coroutine_fn v9fs_symlink(void *opaque)
2949 {
2950 V9fsPDU *pdu = opaque;
2951 V9fsString name;
2952 V9fsString symname;
2953 V9fsFidState *dfidp;
2954 V9fsQID qid;
2955 struct stat stbuf;
2956 int32_t dfid;
2957 int err = 0;
2958 gid_t gid;
2959 size_t offset = 7;
2960
2961 v9fs_string_init(&name);
2962 v9fs_string_init(&symname);
2963 err = pdu_unmarshal(pdu, offset, "dssd", &dfid, &name, &symname, &gid);
2964 if (err < 0) {
2965 goto out_nofid;
2966 }
2967 trace_v9fs_symlink(pdu->tag, pdu->id, dfid, name.data, symname.data, gid);
2968
2969 if (name_is_illegal(name.data)) {
2970 err = -ENOENT;
2971 goto out_nofid;
2972 }
2973
2974 if (!strcmp(".", name.data) || !strcmp("..", name.data)) {
2975 err = -EEXIST;
2976 goto out_nofid;
2977 }
2978
2979 dfidp = get_fid(pdu, dfid);
2980 if (dfidp == NULL) {
2981 err = -EINVAL;
2982 goto out_nofid;
2983 }
2984 err = v9fs_co_symlink(pdu, dfidp, &name, symname.data, gid, &stbuf);
2985 if (err < 0) {
2986 goto out;
2987 }
2988 err = stat_to_qid(pdu, &stbuf, &qid);
2989 if (err < 0) {
2990 goto out;
2991 }
2992 err = pdu_marshal(pdu, offset, "Q", &qid);
2993 if (err < 0) {
2994 goto out;
2995 }
2996 err += offset;
2997 trace_v9fs_symlink_return(pdu->tag, pdu->id,
2998 qid.type, qid.version, qid.path);
2999 out:
3000 put_fid(pdu, dfidp);
3001 out_nofid:
3002 pdu_complete(pdu, err);
3003 v9fs_string_free(&name);
3004 v9fs_string_free(&symname);
3005 }
3006
v9fs_flush(void * opaque)3007 static void coroutine_fn v9fs_flush(void *opaque)
3008 {
3009 ssize_t err;
3010 int16_t tag;
3011 size_t offset = 7;
3012 V9fsPDU *cancel_pdu = NULL;
3013 V9fsPDU *pdu = opaque;
3014 V9fsState *s = pdu->s;
3015
3016 err = pdu_unmarshal(pdu, offset, "w", &tag);
3017 if (err < 0) {
3018 pdu_complete(pdu, err);
3019 return;
3020 }
3021 trace_v9fs_flush(pdu->tag, pdu->id, tag);
3022
3023 if (pdu->tag == tag) {
3024 warn_report("the guest sent a self-referencing 9P flush request");
3025 } else {
3026 QLIST_FOREACH(cancel_pdu, &s->active_list, next) {
3027 if (cancel_pdu->tag == tag) {
3028 break;
3029 }
3030 }
3031 }
3032 if (cancel_pdu) {
3033 cancel_pdu->cancelled = 1;
3034 /*
3035 * Wait for pdu to complete.
3036 */
3037 qemu_co_queue_wait(&cancel_pdu->complete, NULL);
3038 if (!qemu_co_queue_next(&cancel_pdu->complete)) {
3039 cancel_pdu->cancelled = 0;
3040 pdu_free(cancel_pdu);
3041 }
3042 }
3043 pdu_complete(pdu, 7);
3044 }
3045
v9fs_link(void * opaque)3046 static void coroutine_fn v9fs_link(void *opaque)
3047 {
3048 V9fsPDU *pdu = opaque;
3049 int32_t dfid, oldfid;
3050 V9fsFidState *dfidp, *oldfidp;
3051 V9fsString name;
3052 size_t offset = 7;
3053 int err = 0;
3054
3055 v9fs_string_init(&name);
3056 err = pdu_unmarshal(pdu, offset, "dds", &dfid, &oldfid, &name);
3057 if (err < 0) {
3058 goto out_nofid;
3059 }
3060 trace_v9fs_link(pdu->tag, pdu->id, dfid, oldfid, name.data);
3061
3062 if (name_is_illegal(name.data)) {
3063 err = -ENOENT;
3064 goto out_nofid;
3065 }
3066
3067 if (!strcmp(".", name.data) || !strcmp("..", name.data)) {
3068 err = -EEXIST;
3069 goto out_nofid;
3070 }
3071
3072 dfidp = get_fid(pdu, dfid);
3073 if (dfidp == NULL) {
3074 err = -ENOENT;
3075 goto out_nofid;
3076 }
3077
3078 oldfidp = get_fid(pdu, oldfid);
3079 if (oldfidp == NULL) {
3080 err = -ENOENT;
3081 goto out;
3082 }
3083 err = v9fs_co_link(pdu, oldfidp, dfidp, &name);
3084 if (!err) {
3085 err = offset;
3086 }
3087 put_fid(pdu, oldfidp);
3088 out:
3089 put_fid(pdu, dfidp);
3090 out_nofid:
3091 v9fs_string_free(&name);
3092 pdu_complete(pdu, err);
3093 }
3094
3095 /* Only works with path name based fid */
v9fs_remove(void * opaque)3096 static void coroutine_fn v9fs_remove(void *opaque)
3097 {
3098 int32_t fid;
3099 int err = 0;
3100 size_t offset = 7;
3101 V9fsFidState *fidp;
3102 V9fsPDU *pdu = opaque;
3103
3104 err = pdu_unmarshal(pdu, offset, "d", &fid);
3105 if (err < 0) {
3106 goto out_nofid;
3107 }
3108 trace_v9fs_remove(pdu->tag, pdu->id, fid);
3109
3110 fidp = get_fid(pdu, fid);
3111 if (fidp == NULL) {
3112 err = -EINVAL;
3113 goto out_nofid;
3114 }
3115 /* if fs driver is not path based, return EOPNOTSUPP */
3116 if (!(pdu->s->ctx.export_flags & V9FS_PATHNAME_FSCONTEXT)) {
3117 err = -EOPNOTSUPP;
3118 goto out_err;
3119 }
3120 /*
3121 * IF the file is unlinked, we cannot reopen
3122 * the file later. So don't reclaim fd
3123 */
3124 err = v9fs_mark_fids_unreclaim(pdu, &fidp->path);
3125 if (err < 0) {
3126 goto out_err;
3127 }
3128 err = v9fs_co_remove(pdu, &fidp->path);
3129 if (!err) {
3130 err = offset;
3131 }
3132 out_err:
3133 /* For TREMOVE we need to clunk the fid even on failed remove */
3134 clunk_fid(pdu->s, fidp->fid);
3135 put_fid(pdu, fidp);
3136 out_nofid:
3137 pdu_complete(pdu, err);
3138 }
3139
v9fs_unlinkat(void * opaque)3140 static void coroutine_fn v9fs_unlinkat(void *opaque)
3141 {
3142 int err = 0;
3143 V9fsString name;
3144 int32_t dfid, flags, rflags = 0;
3145 size_t offset = 7;
3146 V9fsPath path;
3147 V9fsFidState *dfidp;
3148 V9fsPDU *pdu = opaque;
3149
3150 v9fs_string_init(&name);
3151 err = pdu_unmarshal(pdu, offset, "dsd", &dfid, &name, &flags);
3152 if (err < 0) {
3153 goto out_nofid;
3154 }
3155
3156 if (name_is_illegal(name.data)) {
3157 err = -ENOENT;
3158 goto out_nofid;
3159 }
3160
3161 if (!strcmp(".", name.data)) {
3162 err = -EINVAL;
3163 goto out_nofid;
3164 }
3165
3166 if (!strcmp("..", name.data)) {
3167 err = -ENOTEMPTY;
3168 goto out_nofid;
3169 }
3170
3171 if (flags & ~P9_DOTL_AT_REMOVEDIR) {
3172 err = -EINVAL;
3173 goto out_nofid;
3174 }
3175
3176 if (flags & P9_DOTL_AT_REMOVEDIR) {
3177 rflags |= AT_REMOVEDIR;
3178 }
3179
3180 dfidp = get_fid(pdu, dfid);
3181 if (dfidp == NULL) {
3182 err = -EINVAL;
3183 goto out_nofid;
3184 }
3185 /*
3186 * IF the file is unlinked, we cannot reopen
3187 * the file later. So don't reclaim fd
3188 */
3189 v9fs_path_init(&path);
3190 err = v9fs_co_name_to_path(pdu, &dfidp->path, name.data, &path);
3191 if (err < 0) {
3192 goto out_err;
3193 }
3194 err = v9fs_mark_fids_unreclaim(pdu, &path);
3195 if (err < 0) {
3196 goto out_err;
3197 }
3198 err = v9fs_co_unlinkat(pdu, &dfidp->path, &name, rflags);
3199 if (!err) {
3200 err = offset;
3201 }
3202 out_err:
3203 put_fid(pdu, dfidp);
3204 v9fs_path_free(&path);
3205 out_nofid:
3206 pdu_complete(pdu, err);
3207 v9fs_string_free(&name);
3208 }
3209
3210
3211 /* Only works with path name based fid */
v9fs_complete_rename(V9fsPDU * pdu,V9fsFidState * fidp,int32_t newdirfid,V9fsString * name)3212 static int coroutine_fn v9fs_complete_rename(V9fsPDU *pdu, V9fsFidState *fidp,
3213 int32_t newdirfid,
3214 V9fsString *name)
3215 {
3216 int err = 0;
3217 V9fsPath new_path;
3218 V9fsFidState *tfidp;
3219 V9fsState *s = pdu->s;
3220 V9fsFidState *dirfidp = NULL;
3221 GHashTableIter iter;
3222 gpointer fid;
3223
3224 v9fs_path_init(&new_path);
3225 if (newdirfid != -1) {
3226 dirfidp = get_fid(pdu, newdirfid);
3227 if (dirfidp == NULL) {
3228 return -ENOENT;
3229 }
3230 if (fidp->fid_type != P9_FID_NONE) {
3231 err = -EINVAL;
3232 goto out;
3233 }
3234 err = v9fs_co_name_to_path(pdu, &dirfidp->path, name->data, &new_path);
3235 if (err < 0) {
3236 goto out;
3237 }
3238 } else {
3239 char *dir_name = g_path_get_dirname(fidp->path.data);
3240 V9fsPath dir_path;
3241
3242 v9fs_path_init(&dir_path);
3243 v9fs_path_sprintf(&dir_path, "%s", dir_name);
3244 g_free(dir_name);
3245
3246 err = v9fs_co_name_to_path(pdu, &dir_path, name->data, &new_path);
3247 v9fs_path_free(&dir_path);
3248 if (err < 0) {
3249 goto out;
3250 }
3251 }
3252 err = v9fs_co_rename(pdu, &fidp->path, &new_path);
3253 if (err < 0) {
3254 goto out;
3255 }
3256
3257 /*
3258 * Fixup fid's pointing to the old name to
3259 * start pointing to the new name
3260 */
3261 g_hash_table_iter_init(&iter, s->fids);
3262 while (g_hash_table_iter_next(&iter, &fid, (gpointer *) &tfidp)) {
3263 if (v9fs_path_is_ancestor(&fidp->path, &tfidp->path)) {
3264 /* replace the name */
3265 v9fs_fix_path(&tfidp->path, &new_path, strlen(fidp->path.data));
3266 }
3267 }
3268 out:
3269 if (dirfidp) {
3270 put_fid(pdu, dirfidp);
3271 }
3272 v9fs_path_free(&new_path);
3273 return err;
3274 }
3275
3276 /* Only works with path name based fid */
v9fs_rename(void * opaque)3277 static void coroutine_fn v9fs_rename(void *opaque)
3278 {
3279 int32_t fid;
3280 ssize_t err = 0;
3281 size_t offset = 7;
3282 V9fsString name;
3283 int32_t newdirfid;
3284 V9fsFidState *fidp;
3285 V9fsPDU *pdu = opaque;
3286 V9fsState *s = pdu->s;
3287
3288 v9fs_string_init(&name);
3289 err = pdu_unmarshal(pdu, offset, "dds", &fid, &newdirfid, &name);
3290 if (err < 0) {
3291 goto out_nofid;
3292 }
3293
3294 if (name_is_illegal(name.data)) {
3295 err = -ENOENT;
3296 goto out_nofid;
3297 }
3298
3299 if (!strcmp(".", name.data) || !strcmp("..", name.data)) {
3300 err = -EISDIR;
3301 goto out_nofid;
3302 }
3303
3304 fidp = get_fid(pdu, fid);
3305 if (fidp == NULL) {
3306 err = -ENOENT;
3307 goto out_nofid;
3308 }
3309 if (fidp->fid_type != P9_FID_NONE) {
3310 err = -EINVAL;
3311 goto out;
3312 }
3313 /* if fs driver is not path based, return EOPNOTSUPP */
3314 if (!(pdu->s->ctx.export_flags & V9FS_PATHNAME_FSCONTEXT)) {
3315 err = -EOPNOTSUPP;
3316 goto out;
3317 }
3318 v9fs_path_write_lock(s);
3319 err = v9fs_complete_rename(pdu, fidp, newdirfid, &name);
3320 v9fs_path_unlock(s);
3321 if (!err) {
3322 err = offset;
3323 }
3324 out:
3325 put_fid(pdu, fidp);
3326 out_nofid:
3327 pdu_complete(pdu, err);
3328 v9fs_string_free(&name);
3329 }
3330
v9fs_fix_fid_paths(V9fsPDU * pdu,V9fsPath * olddir,V9fsString * old_name,V9fsPath * newdir,V9fsString * new_name)3331 static int coroutine_fn v9fs_fix_fid_paths(V9fsPDU *pdu, V9fsPath *olddir,
3332 V9fsString *old_name,
3333 V9fsPath *newdir,
3334 V9fsString *new_name)
3335 {
3336 V9fsFidState *tfidp;
3337 V9fsPath oldpath, newpath;
3338 V9fsState *s = pdu->s;
3339 int err;
3340 GHashTableIter iter;
3341 gpointer fid;
3342
3343 v9fs_path_init(&oldpath);
3344 v9fs_path_init(&newpath);
3345 err = v9fs_co_name_to_path(pdu, olddir, old_name->data, &oldpath);
3346 if (err < 0) {
3347 goto out;
3348 }
3349 err = v9fs_co_name_to_path(pdu, newdir, new_name->data, &newpath);
3350 if (err < 0) {
3351 goto out;
3352 }
3353
3354 /*
3355 * Fixup fid's pointing to the old name to
3356 * start pointing to the new name
3357 */
3358 g_hash_table_iter_init(&iter, s->fids);
3359 while (g_hash_table_iter_next(&iter, &fid, (gpointer *) &tfidp)) {
3360 if (v9fs_path_is_ancestor(&oldpath, &tfidp->path)) {
3361 /* replace the name */
3362 v9fs_fix_path(&tfidp->path, &newpath, strlen(oldpath.data));
3363 }
3364 }
3365 out:
3366 v9fs_path_free(&oldpath);
3367 v9fs_path_free(&newpath);
3368 return err;
3369 }
3370
v9fs_complete_renameat(V9fsPDU * pdu,int32_t olddirfid,V9fsString * old_name,int32_t newdirfid,V9fsString * new_name)3371 static int coroutine_fn v9fs_complete_renameat(V9fsPDU *pdu, int32_t olddirfid,
3372 V9fsString *old_name,
3373 int32_t newdirfid,
3374 V9fsString *new_name)
3375 {
3376 int err = 0;
3377 V9fsState *s = pdu->s;
3378 V9fsFidState *newdirfidp = NULL, *olddirfidp = NULL;
3379
3380 olddirfidp = get_fid(pdu, olddirfid);
3381 if (olddirfidp == NULL) {
3382 err = -ENOENT;
3383 goto out;
3384 }
3385 if (newdirfid != -1) {
3386 newdirfidp = get_fid(pdu, newdirfid);
3387 if (newdirfidp == NULL) {
3388 err = -ENOENT;
3389 goto out;
3390 }
3391 } else {
3392 newdirfidp = get_fid(pdu, olddirfid);
3393 }
3394
3395 err = v9fs_co_renameat(pdu, &olddirfidp->path, old_name,
3396 &newdirfidp->path, new_name);
3397 if (err < 0) {
3398 goto out;
3399 }
3400 if (s->ctx.export_flags & V9FS_PATHNAME_FSCONTEXT) {
3401 /* Only for path based fid we need to do the below fixup */
3402 err = v9fs_fix_fid_paths(pdu, &olddirfidp->path, old_name,
3403 &newdirfidp->path, new_name);
3404 }
3405 out:
3406 if (olddirfidp) {
3407 put_fid(pdu, olddirfidp);
3408 }
3409 if (newdirfidp) {
3410 put_fid(pdu, newdirfidp);
3411 }
3412 return err;
3413 }
3414
v9fs_renameat(void * opaque)3415 static void coroutine_fn v9fs_renameat(void *opaque)
3416 {
3417 ssize_t err = 0;
3418 size_t offset = 7;
3419 V9fsPDU *pdu = opaque;
3420 V9fsState *s = pdu->s;
3421 int32_t olddirfid, newdirfid;
3422 V9fsString old_name, new_name;
3423
3424 v9fs_string_init(&old_name);
3425 v9fs_string_init(&new_name);
3426 err = pdu_unmarshal(pdu, offset, "dsds", &olddirfid,
3427 &old_name, &newdirfid, &new_name);
3428 if (err < 0) {
3429 goto out_err;
3430 }
3431
3432 if (name_is_illegal(old_name.data) || name_is_illegal(new_name.data)) {
3433 err = -ENOENT;
3434 goto out_err;
3435 }
3436
3437 if (!strcmp(".", old_name.data) || !strcmp("..", old_name.data) ||
3438 !strcmp(".", new_name.data) || !strcmp("..", new_name.data)) {
3439 err = -EISDIR;
3440 goto out_err;
3441 }
3442
3443 v9fs_path_write_lock(s);
3444 err = v9fs_complete_renameat(pdu, olddirfid,
3445 &old_name, newdirfid, &new_name);
3446 v9fs_path_unlock(s);
3447 if (!err) {
3448 err = offset;
3449 }
3450
3451 out_err:
3452 pdu_complete(pdu, err);
3453 v9fs_string_free(&old_name);
3454 v9fs_string_free(&new_name);
3455 }
3456
v9fs_wstat(void * opaque)3457 static void coroutine_fn v9fs_wstat(void *opaque)
3458 {
3459 int32_t fid;
3460 int err = 0;
3461 int16_t unused;
3462 V9fsStat v9stat;
3463 size_t offset = 7;
3464 struct stat stbuf;
3465 V9fsFidState *fidp;
3466 V9fsPDU *pdu = opaque;
3467 V9fsState *s = pdu->s;
3468
3469 v9fs_stat_init(&v9stat);
3470 err = pdu_unmarshal(pdu, offset, "dwS", &fid, &unused, &v9stat);
3471 if (err < 0) {
3472 goto out_nofid;
3473 }
3474 trace_v9fs_wstat(pdu->tag, pdu->id, fid,
3475 v9stat.mode, v9stat.atime, v9stat.mtime);
3476
3477 fidp = get_fid(pdu, fid);
3478 if (fidp == NULL) {
3479 err = -EINVAL;
3480 goto out_nofid;
3481 }
3482 /* do we need to sync the file? */
3483 if (donttouch_stat(&v9stat)) {
3484 err = v9fs_co_fsync(pdu, fidp, 0);
3485 goto out;
3486 }
3487 if (v9stat.mode != -1) {
3488 uint32_t v9_mode;
3489 err = v9fs_co_lstat(pdu, &fidp->path, &stbuf);
3490 if (err < 0) {
3491 goto out;
3492 }
3493 v9_mode = stat_to_v9mode(&stbuf);
3494 if ((v9stat.mode & P9_STAT_MODE_TYPE_BITS) !=
3495 (v9_mode & P9_STAT_MODE_TYPE_BITS)) {
3496 /* Attempting to change the type */
3497 err = -EIO;
3498 goto out;
3499 }
3500 err = v9fs_co_chmod(pdu, &fidp->path,
3501 v9mode_to_mode(v9stat.mode,
3502 &v9stat.extension));
3503 if (err < 0) {
3504 goto out;
3505 }
3506 }
3507 if (v9stat.mtime != -1 || v9stat.atime != -1) {
3508 struct timespec times[2];
3509 if (v9stat.atime != -1) {
3510 times[0].tv_sec = v9stat.atime;
3511 times[0].tv_nsec = 0;
3512 } else {
3513 times[0].tv_nsec = UTIME_OMIT;
3514 }
3515 if (v9stat.mtime != -1) {
3516 times[1].tv_sec = v9stat.mtime;
3517 times[1].tv_nsec = 0;
3518 } else {
3519 times[1].tv_nsec = UTIME_OMIT;
3520 }
3521 err = v9fs_co_utimensat(pdu, &fidp->path, times);
3522 if (err < 0) {
3523 goto out;
3524 }
3525 }
3526 if (v9stat.n_gid != -1 || v9stat.n_uid != -1) {
3527 err = v9fs_co_chown(pdu, &fidp->path, v9stat.n_uid, v9stat.n_gid);
3528 if (err < 0) {
3529 goto out;
3530 }
3531 }
3532 if (v9stat.name.size != 0) {
3533 v9fs_path_write_lock(s);
3534 err = v9fs_complete_rename(pdu, fidp, -1, &v9stat.name);
3535 v9fs_path_unlock(s);
3536 if (err < 0) {
3537 goto out;
3538 }
3539 }
3540 if (v9stat.length != -1) {
3541 err = v9fs_co_truncate(pdu, &fidp->path, v9stat.length);
3542 if (err < 0) {
3543 goto out;
3544 }
3545 }
3546 err = offset;
3547 out:
3548 put_fid(pdu, fidp);
3549 out_nofid:
3550 v9fs_stat_free(&v9stat);
3551 pdu_complete(pdu, err);
3552 }
3553
v9fs_fill_statfs(V9fsState * s,V9fsPDU * pdu,struct statfs * stbuf)3554 static int v9fs_fill_statfs(V9fsState *s, V9fsPDU *pdu, struct statfs *stbuf)
3555 {
3556 uint32_t f_type;
3557 uint32_t f_bsize;
3558 uint64_t f_blocks;
3559 uint64_t f_bfree;
3560 uint64_t f_bavail;
3561 uint64_t f_files;
3562 uint64_t f_ffree;
3563 uint64_t fsid_val;
3564 uint32_t f_namelen;
3565 size_t offset = 7;
3566 int32_t bsize_factor;
3567
3568 /*
3569 * compute bsize factor based on host file system block size
3570 * and client msize
3571 */
3572 bsize_factor = (s->msize - P9_IOHDRSZ) / stbuf->f_bsize;
3573 if (!bsize_factor) {
3574 bsize_factor = 1;
3575 }
3576 f_type = stbuf->f_type;
3577 f_bsize = stbuf->f_bsize;
3578 f_bsize *= bsize_factor;
3579 /*
3580 * f_bsize is adjusted(multiplied) by bsize factor, so we need to
3581 * adjust(divide) the number of blocks, free blocks and available
3582 * blocks by bsize factor
3583 */
3584 f_blocks = stbuf->f_blocks / bsize_factor;
3585 f_bfree = stbuf->f_bfree / bsize_factor;
3586 f_bavail = stbuf->f_bavail / bsize_factor;
3587 f_files = stbuf->f_files;
3588 f_ffree = stbuf->f_ffree;
3589 #ifdef CONFIG_DARWIN
3590 fsid_val = (unsigned int)stbuf->f_fsid.val[0] |
3591 (unsigned long long)stbuf->f_fsid.val[1] << 32;
3592 f_namelen = NAME_MAX;
3593 #else
3594 fsid_val = (unsigned int) stbuf->f_fsid.__val[0] |
3595 (unsigned long long)stbuf->f_fsid.__val[1] << 32;
3596 f_namelen = stbuf->f_namelen;
3597 #endif
3598
3599 return pdu_marshal(pdu, offset, "ddqqqqqqd",
3600 f_type, f_bsize, f_blocks, f_bfree,
3601 f_bavail, f_files, f_ffree,
3602 fsid_val, f_namelen);
3603 }
3604
v9fs_statfs(void * opaque)3605 static void coroutine_fn v9fs_statfs(void *opaque)
3606 {
3607 int32_t fid;
3608 ssize_t retval = 0;
3609 size_t offset = 7;
3610 V9fsFidState *fidp;
3611 struct statfs stbuf;
3612 V9fsPDU *pdu = opaque;
3613 V9fsState *s = pdu->s;
3614
3615 retval = pdu_unmarshal(pdu, offset, "d", &fid);
3616 if (retval < 0) {
3617 goto out_nofid;
3618 }
3619 fidp = get_fid(pdu, fid);
3620 if (fidp == NULL) {
3621 retval = -ENOENT;
3622 goto out_nofid;
3623 }
3624 retval = v9fs_co_statfs(pdu, &fidp->path, &stbuf);
3625 if (retval < 0) {
3626 goto out;
3627 }
3628 retval = v9fs_fill_statfs(s, pdu, &stbuf);
3629 if (retval < 0) {
3630 goto out;
3631 }
3632 retval += offset;
3633 out:
3634 put_fid(pdu, fidp);
3635 out_nofid:
3636 pdu_complete(pdu, retval);
3637 }
3638
v9fs_mknod(void * opaque)3639 static void coroutine_fn v9fs_mknod(void *opaque)
3640 {
3641
3642 int mode;
3643 gid_t gid;
3644 int32_t fid;
3645 V9fsQID qid;
3646 int err = 0;
3647 int major, minor;
3648 size_t offset = 7;
3649 V9fsString name;
3650 struct stat stbuf;
3651 V9fsFidState *fidp;
3652 V9fsPDU *pdu = opaque;
3653
3654 v9fs_string_init(&name);
3655 err = pdu_unmarshal(pdu, offset, "dsdddd", &fid, &name, &mode,
3656 &major, &minor, &gid);
3657 if (err < 0) {
3658 goto out_nofid;
3659 }
3660 trace_v9fs_mknod(pdu->tag, pdu->id, fid, mode, major, minor);
3661
3662 if (name_is_illegal(name.data)) {
3663 err = -ENOENT;
3664 goto out_nofid;
3665 }
3666
3667 if (!strcmp(".", name.data) || !strcmp("..", name.data)) {
3668 err = -EEXIST;
3669 goto out_nofid;
3670 }
3671
3672 fidp = get_fid(pdu, fid);
3673 if (fidp == NULL) {
3674 err = -ENOENT;
3675 goto out_nofid;
3676 }
3677 err = v9fs_co_mknod(pdu, fidp, &name, fidp->uid, gid,
3678 makedev(major, minor), mode, &stbuf);
3679 if (err < 0) {
3680 goto out;
3681 }
3682 err = stat_to_qid(pdu, &stbuf, &qid);
3683 if (err < 0) {
3684 goto out;
3685 }
3686 err = pdu_marshal(pdu, offset, "Q", &qid);
3687 if (err < 0) {
3688 goto out;
3689 }
3690 err += offset;
3691 trace_v9fs_mknod_return(pdu->tag, pdu->id,
3692 qid.type, qid.version, qid.path);
3693 out:
3694 put_fid(pdu, fidp);
3695 out_nofid:
3696 pdu_complete(pdu, err);
3697 v9fs_string_free(&name);
3698 }
3699
3700 /*
3701 * Implement posix byte range locking code
3702 * Server side handling of locking code is very simple, because 9p server in
3703 * QEMU can handle only one client. And most of the lock handling
3704 * (like conflict, merging) etc is done by the VFS layer itself, so no need to
3705 * do any thing in * qemu 9p server side lock code path.
3706 * So when a TLOCK request comes, always return success
3707 */
v9fs_lock(void * opaque)3708 static void coroutine_fn v9fs_lock(void *opaque)
3709 {
3710 V9fsFlock flock;
3711 size_t offset = 7;
3712 struct stat stbuf;
3713 V9fsFidState *fidp;
3714 int32_t fid, err = 0;
3715 V9fsPDU *pdu = opaque;
3716
3717 v9fs_string_init(&flock.client_id);
3718 err = pdu_unmarshal(pdu, offset, "dbdqqds", &fid, &flock.type,
3719 &flock.flags, &flock.start, &flock.length,
3720 &flock.proc_id, &flock.client_id);
3721 if (err < 0) {
3722 goto out_nofid;
3723 }
3724 trace_v9fs_lock(pdu->tag, pdu->id, fid,
3725 flock.type, flock.start, flock.length);
3726
3727
3728 /* We support only block flag now (that too ignored currently) */
3729 if (flock.flags & ~P9_LOCK_FLAGS_BLOCK) {
3730 err = -EINVAL;
3731 goto out_nofid;
3732 }
3733 fidp = get_fid(pdu, fid);
3734 if (fidp == NULL) {
3735 err = -ENOENT;
3736 goto out_nofid;
3737 }
3738 err = v9fs_co_fstat(pdu, fidp, &stbuf);
3739 if (err < 0) {
3740 goto out;
3741 }
3742 err = pdu_marshal(pdu, offset, "b", P9_LOCK_SUCCESS);
3743 if (err < 0) {
3744 goto out;
3745 }
3746 err += offset;
3747 trace_v9fs_lock_return(pdu->tag, pdu->id, P9_LOCK_SUCCESS);
3748 out:
3749 put_fid(pdu, fidp);
3750 out_nofid:
3751 pdu_complete(pdu, err);
3752 v9fs_string_free(&flock.client_id);
3753 }
3754
3755 /*
3756 * When a TGETLOCK request comes, always return success because all lock
3757 * handling is done by client's VFS layer.
3758 */
v9fs_getlock(void * opaque)3759 static void coroutine_fn v9fs_getlock(void *opaque)
3760 {
3761 size_t offset = 7;
3762 struct stat stbuf;
3763 V9fsFidState *fidp;
3764 V9fsGetlock glock;
3765 int32_t fid, err = 0;
3766 V9fsPDU *pdu = opaque;
3767
3768 v9fs_string_init(&glock.client_id);
3769 err = pdu_unmarshal(pdu, offset, "dbqqds", &fid, &glock.type,
3770 &glock.start, &glock.length, &glock.proc_id,
3771 &glock.client_id);
3772 if (err < 0) {
3773 goto out_nofid;
3774 }
3775 trace_v9fs_getlock(pdu->tag, pdu->id, fid,
3776 glock.type, glock.start, glock.length);
3777
3778 fidp = get_fid(pdu, fid);
3779 if (fidp == NULL) {
3780 err = -ENOENT;
3781 goto out_nofid;
3782 }
3783 err = v9fs_co_fstat(pdu, fidp, &stbuf);
3784 if (err < 0) {
3785 goto out;
3786 }
3787 glock.type = P9_LOCK_TYPE_UNLCK;
3788 err = pdu_marshal(pdu, offset, "bqqds", glock.type,
3789 glock.start, glock.length, glock.proc_id,
3790 &glock.client_id);
3791 if (err < 0) {
3792 goto out;
3793 }
3794 err += offset;
3795 trace_v9fs_getlock_return(pdu->tag, pdu->id, glock.type, glock.start,
3796 glock.length, glock.proc_id);
3797 out:
3798 put_fid(pdu, fidp);
3799 out_nofid:
3800 pdu_complete(pdu, err);
3801 v9fs_string_free(&glock.client_id);
3802 }
3803
v9fs_mkdir(void * opaque)3804 static void coroutine_fn v9fs_mkdir(void *opaque)
3805 {
3806 V9fsPDU *pdu = opaque;
3807 size_t offset = 7;
3808 int32_t fid;
3809 struct stat stbuf;
3810 V9fsQID qid;
3811 V9fsString name;
3812 V9fsFidState *fidp;
3813 gid_t gid;
3814 int mode;
3815 int err = 0;
3816
3817 v9fs_string_init(&name);
3818 err = pdu_unmarshal(pdu, offset, "dsdd", &fid, &name, &mode, &gid);
3819 if (err < 0) {
3820 goto out_nofid;
3821 }
3822 trace_v9fs_mkdir(pdu->tag, pdu->id, fid, name.data, mode, gid);
3823
3824 if (name_is_illegal(name.data)) {
3825 err = -ENOENT;
3826 goto out_nofid;
3827 }
3828
3829 if (!strcmp(".", name.data) || !strcmp("..", name.data)) {
3830 err = -EEXIST;
3831 goto out_nofid;
3832 }
3833
3834 fidp = get_fid(pdu, fid);
3835 if (fidp == NULL) {
3836 err = -ENOENT;
3837 goto out_nofid;
3838 }
3839 err = v9fs_co_mkdir(pdu, fidp, &name, mode, fidp->uid, gid, &stbuf);
3840 if (err < 0) {
3841 goto out;
3842 }
3843 err = stat_to_qid(pdu, &stbuf, &qid);
3844 if (err < 0) {
3845 goto out;
3846 }
3847 err = pdu_marshal(pdu, offset, "Q", &qid);
3848 if (err < 0) {
3849 goto out;
3850 }
3851 err += offset;
3852 trace_v9fs_mkdir_return(pdu->tag, pdu->id,
3853 qid.type, qid.version, qid.path, err);
3854 out:
3855 put_fid(pdu, fidp);
3856 out_nofid:
3857 pdu_complete(pdu, err);
3858 v9fs_string_free(&name);
3859 }
3860
v9fs_xattrwalk(void * opaque)3861 static void coroutine_fn v9fs_xattrwalk(void *opaque)
3862 {
3863 int64_t size;
3864 V9fsString name;
3865 ssize_t err = 0;
3866 size_t offset = 7;
3867 int32_t fid, newfid;
3868 V9fsFidState *file_fidp;
3869 V9fsFidState *xattr_fidp = NULL;
3870 V9fsPDU *pdu = opaque;
3871 V9fsState *s = pdu->s;
3872
3873 v9fs_string_init(&name);
3874 err = pdu_unmarshal(pdu, offset, "dds", &fid, &newfid, &name);
3875 if (err < 0) {
3876 goto out_nofid;
3877 }
3878 trace_v9fs_xattrwalk(pdu->tag, pdu->id, fid, newfid, name.data);
3879
3880 file_fidp = get_fid(pdu, fid);
3881 if (file_fidp == NULL) {
3882 err = -ENOENT;
3883 goto out_nofid;
3884 }
3885 xattr_fidp = alloc_fid(s, newfid);
3886 if (xattr_fidp == NULL) {
3887 err = -EINVAL;
3888 goto out;
3889 }
3890 v9fs_path_copy(&xattr_fidp->path, &file_fidp->path);
3891 if (!v9fs_string_size(&name)) {
3892 /*
3893 * listxattr request. Get the size first
3894 */
3895 size = v9fs_co_llistxattr(pdu, &xattr_fidp->path, NULL, 0);
3896 if (size < 0) {
3897 err = size;
3898 clunk_fid(s, xattr_fidp->fid);
3899 goto out;
3900 }
3901 /*
3902 * Read the xattr value
3903 */
3904 xattr_fidp->fs.xattr.len = size;
3905 xattr_fidp->fid_type = P9_FID_XATTR;
3906 xattr_fidp->fs.xattr.xattrwalk_fid = true;
3907 xattr_fidp->fs.xattr.value = g_malloc0(size);
3908 if (size) {
3909 err = v9fs_co_llistxattr(pdu, &xattr_fidp->path,
3910 xattr_fidp->fs.xattr.value,
3911 xattr_fidp->fs.xattr.len);
3912 if (err < 0) {
3913 clunk_fid(s, xattr_fidp->fid);
3914 goto out;
3915 }
3916 }
3917 err = pdu_marshal(pdu, offset, "q", size);
3918 if (err < 0) {
3919 goto out;
3920 }
3921 err += offset;
3922 } else {
3923 /*
3924 * specific xattr fid. We check for xattr
3925 * presence also collect the xattr size
3926 */
3927 size = v9fs_co_lgetxattr(pdu, &xattr_fidp->path,
3928 &name, NULL, 0);
3929 if (size < 0) {
3930 err = size;
3931 clunk_fid(s, xattr_fidp->fid);
3932 goto out;
3933 }
3934 /*
3935 * Read the xattr value
3936 */
3937 xattr_fidp->fs.xattr.len = size;
3938 xattr_fidp->fid_type = P9_FID_XATTR;
3939 xattr_fidp->fs.xattr.xattrwalk_fid = true;
3940 xattr_fidp->fs.xattr.value = g_malloc0(size);
3941 if (size) {
3942 err = v9fs_co_lgetxattr(pdu, &xattr_fidp->path,
3943 &name, xattr_fidp->fs.xattr.value,
3944 xattr_fidp->fs.xattr.len);
3945 if (err < 0) {
3946 clunk_fid(s, xattr_fidp->fid);
3947 goto out;
3948 }
3949 }
3950 err = pdu_marshal(pdu, offset, "q", size);
3951 if (err < 0) {
3952 goto out;
3953 }
3954 err += offset;
3955 }
3956 trace_v9fs_xattrwalk_return(pdu->tag, pdu->id, size);
3957 out:
3958 put_fid(pdu, file_fidp);
3959 if (xattr_fidp) {
3960 put_fid(pdu, xattr_fidp);
3961 }
3962 out_nofid:
3963 pdu_complete(pdu, err);
3964 v9fs_string_free(&name);
3965 }
3966
3967 #if defined(CONFIG_LINUX)
3968 /* Currently, only Linux has XATTR_SIZE_MAX */
3969 #define P9_XATTR_SIZE_MAX XATTR_SIZE_MAX
3970 #elif defined(CONFIG_DARWIN)
3971 /*
3972 * Darwin doesn't seem to define a maximum xattr size in its user
3973 * space header, so manually configure it across platforms as 64k.
3974 *
3975 * Having no limit at all can lead to QEMU crashing during large g_malloc()
3976 * calls. Because QEMU does not currently support macOS guests, the below
3977 * preliminary solution only works due to its being a reflection of the limit of
3978 * Linux guests.
3979 */
3980 #define P9_XATTR_SIZE_MAX 65536
3981 #else
3982 #error Missing definition for P9_XATTR_SIZE_MAX for this host system
3983 #endif
3984
v9fs_xattrcreate(void * opaque)3985 static void coroutine_fn v9fs_xattrcreate(void *opaque)
3986 {
3987 int flags, rflags = 0;
3988 int32_t fid;
3989 uint64_t size;
3990 ssize_t err = 0;
3991 V9fsString name;
3992 size_t offset = 7;
3993 V9fsFidState *file_fidp;
3994 V9fsFidState *xattr_fidp;
3995 V9fsPDU *pdu = opaque;
3996
3997 v9fs_string_init(&name);
3998 err = pdu_unmarshal(pdu, offset, "dsqd", &fid, &name, &size, &flags);
3999 if (err < 0) {
4000 goto out_nofid;
4001 }
4002 trace_v9fs_xattrcreate(pdu->tag, pdu->id, fid, name.data, size, flags);
4003
4004 if (flags & ~(P9_XATTR_CREATE | P9_XATTR_REPLACE)) {
4005 err = -EINVAL;
4006 goto out_nofid;
4007 }
4008
4009 if (flags & P9_XATTR_CREATE) {
4010 rflags |= XATTR_CREATE;
4011 }
4012
4013 if (flags & P9_XATTR_REPLACE) {
4014 rflags |= XATTR_REPLACE;
4015 }
4016
4017 if (size > P9_XATTR_SIZE_MAX) {
4018 err = -E2BIG;
4019 goto out_nofid;
4020 }
4021
4022 file_fidp = get_fid(pdu, fid);
4023 if (file_fidp == NULL) {
4024 err = -EINVAL;
4025 goto out_nofid;
4026 }
4027 if (file_fidp->fid_type != P9_FID_NONE) {
4028 err = -EINVAL;
4029 goto out_put_fid;
4030 }
4031
4032 /* Make the file fid point to xattr */
4033 xattr_fidp = file_fidp;
4034 xattr_fidp->fid_type = P9_FID_XATTR;
4035 xattr_fidp->fs.xattr.copied_len = 0;
4036 xattr_fidp->fs.xattr.xattrwalk_fid = false;
4037 xattr_fidp->fs.xattr.len = size;
4038 xattr_fidp->fs.xattr.flags = rflags;
4039 v9fs_string_init(&xattr_fidp->fs.xattr.name);
4040 v9fs_string_copy(&xattr_fidp->fs.xattr.name, &name);
4041 xattr_fidp->fs.xattr.value = g_malloc0(size);
4042 err = offset;
4043 out_put_fid:
4044 put_fid(pdu, file_fidp);
4045 out_nofid:
4046 pdu_complete(pdu, err);
4047 v9fs_string_free(&name);
4048 }
4049
v9fs_readlink(void * opaque)4050 static void coroutine_fn v9fs_readlink(void *opaque)
4051 {
4052 V9fsPDU *pdu = opaque;
4053 size_t offset = 7;
4054 V9fsString target;
4055 int32_t fid;
4056 int err = 0;
4057 V9fsFidState *fidp;
4058
4059 err = pdu_unmarshal(pdu, offset, "d", &fid);
4060 if (err < 0) {
4061 goto out_nofid;
4062 }
4063 trace_v9fs_readlink(pdu->tag, pdu->id, fid);
4064 fidp = get_fid(pdu, fid);
4065 if (fidp == NULL) {
4066 err = -ENOENT;
4067 goto out_nofid;
4068 }
4069
4070 v9fs_string_init(&target);
4071 err = v9fs_co_readlink(pdu, &fidp->path, &target);
4072 if (err < 0) {
4073 goto out;
4074 }
4075 err = pdu_marshal(pdu, offset, "s", &target);
4076 if (err < 0) {
4077 v9fs_string_free(&target);
4078 goto out;
4079 }
4080 err += offset;
4081 trace_v9fs_readlink_return(pdu->tag, pdu->id, target.data);
4082 v9fs_string_free(&target);
4083 out:
4084 put_fid(pdu, fidp);
4085 out_nofid:
4086 pdu_complete(pdu, err);
4087 }
4088
4089 static CoroutineEntry *pdu_co_handlers[] = {
4090 [P9_TREADDIR] = v9fs_readdir,
4091 [P9_TSTATFS] = v9fs_statfs,
4092 [P9_TGETATTR] = v9fs_getattr,
4093 [P9_TSETATTR] = v9fs_setattr,
4094 [P9_TXATTRWALK] = v9fs_xattrwalk,
4095 [P9_TXATTRCREATE] = v9fs_xattrcreate,
4096 [P9_TMKNOD] = v9fs_mknod,
4097 [P9_TRENAME] = v9fs_rename,
4098 [P9_TLOCK] = v9fs_lock,
4099 [P9_TGETLOCK] = v9fs_getlock,
4100 [P9_TRENAMEAT] = v9fs_renameat,
4101 [P9_TREADLINK] = v9fs_readlink,
4102 [P9_TUNLINKAT] = v9fs_unlinkat,
4103 [P9_TMKDIR] = v9fs_mkdir,
4104 [P9_TVERSION] = v9fs_version,
4105 [P9_TLOPEN] = v9fs_open,
4106 [P9_TATTACH] = v9fs_attach,
4107 [P9_TSTAT] = v9fs_stat,
4108 [P9_TWALK] = v9fs_walk,
4109 [P9_TCLUNK] = v9fs_clunk,
4110 [P9_TFSYNC] = v9fs_fsync,
4111 [P9_TOPEN] = v9fs_open,
4112 [P9_TREAD] = v9fs_read,
4113 #if 0
4114 [P9_TAUTH] = v9fs_auth,
4115 #endif
4116 [P9_TFLUSH] = v9fs_flush,
4117 [P9_TLINK] = v9fs_link,
4118 [P9_TSYMLINK] = v9fs_symlink,
4119 [P9_TCREATE] = v9fs_create,
4120 [P9_TLCREATE] = v9fs_lcreate,
4121 [P9_TWRITE] = v9fs_write,
4122 [P9_TWSTAT] = v9fs_wstat,
4123 [P9_TREMOVE] = v9fs_remove,
4124 };
4125
v9fs_op_not_supp(void * opaque)4126 static void coroutine_fn v9fs_op_not_supp(void *opaque)
4127 {
4128 V9fsPDU *pdu = opaque;
4129 pdu_complete(pdu, -EOPNOTSUPP);
4130 }
4131
v9fs_fs_ro(void * opaque)4132 static void coroutine_fn v9fs_fs_ro(void *opaque)
4133 {
4134 V9fsPDU *pdu = opaque;
4135 pdu_complete(pdu, -EROFS);
4136 }
4137
is_read_only_op(V9fsPDU * pdu)4138 static inline bool is_read_only_op(V9fsPDU *pdu)
4139 {
4140 switch (pdu->id) {
4141 case P9_TREADDIR:
4142 case P9_TSTATFS:
4143 case P9_TGETATTR:
4144 case P9_TXATTRWALK:
4145 case P9_TLOCK:
4146 case P9_TGETLOCK:
4147 case P9_TREADLINK:
4148 case P9_TVERSION:
4149 case P9_TLOPEN:
4150 case P9_TATTACH:
4151 case P9_TSTAT:
4152 case P9_TWALK:
4153 case P9_TCLUNK:
4154 case P9_TFSYNC:
4155 case P9_TOPEN:
4156 case P9_TREAD:
4157 case P9_TAUTH:
4158 case P9_TFLUSH:
4159 return 1;
4160 default:
4161 return 0;
4162 }
4163 }
4164
pdu_submit(V9fsPDU * pdu,P9MsgHeader * hdr)4165 void pdu_submit(V9fsPDU *pdu, P9MsgHeader *hdr)
4166 {
4167 Coroutine *co;
4168 CoroutineEntry *handler;
4169 V9fsState *s = pdu->s;
4170
4171 pdu->size = le32_to_cpu(hdr->size_le);
4172 pdu->id = hdr->id;
4173 pdu->tag = le16_to_cpu(hdr->tag_le);
4174
4175 if (pdu->id >= ARRAY_SIZE(pdu_co_handlers) ||
4176 (pdu_co_handlers[pdu->id] == NULL)) {
4177 handler = v9fs_op_not_supp;
4178 } else if (is_ro_export(&s->ctx) && !is_read_only_op(pdu)) {
4179 handler = v9fs_fs_ro;
4180 } else {
4181 handler = pdu_co_handlers[pdu->id];
4182 }
4183
4184 qemu_co_queue_init(&pdu->complete);
4185 co = qemu_coroutine_create(handler, pdu);
4186 qemu_coroutine_enter(co);
4187 }
4188
4189 /* Returns 0 on success, 1 on failure. */
v9fs_device_realize_common(V9fsState * s,const V9fsTransport * t,Error ** errp)4190 int v9fs_device_realize_common(V9fsState *s, const V9fsTransport *t,
4191 Error **errp)
4192 {
4193 ERRP_GUARD();
4194 int i, len;
4195 struct stat stat;
4196 FsDriverEntry *fse;
4197 V9fsPath path;
4198 int rc = 1;
4199
4200 assert(!s->transport);
4201 s->transport = t;
4202
4203 /* initialize pdu allocator */
4204 QLIST_INIT(&s->free_list);
4205 QLIST_INIT(&s->active_list);
4206 for (i = 0; i < MAX_REQ; i++) {
4207 QLIST_INSERT_HEAD(&s->free_list, &s->pdus[i], next);
4208 s->pdus[i].s = s;
4209 s->pdus[i].idx = i;
4210 }
4211
4212 v9fs_path_init(&path);
4213
4214 fse = get_fsdev_fsentry(s->fsconf.fsdev_id);
4215
4216 if (!fse) {
4217 /* We don't have a fsdev identified by fsdev_id */
4218 error_setg(errp, "9pfs device couldn't find fsdev with the "
4219 "id = %s",
4220 s->fsconf.fsdev_id ? s->fsconf.fsdev_id : "NULL");
4221 goto out;
4222 }
4223
4224 if (!s->fsconf.tag) {
4225 /* we haven't specified a mount_tag */
4226 error_setg(errp, "fsdev with id %s needs mount_tag arguments",
4227 s->fsconf.fsdev_id);
4228 goto out;
4229 }
4230
4231 s->ctx.export_flags = fse->export_flags;
4232 s->ctx.fs_root = g_strdup(fse->path);
4233 s->ctx.exops.get_st_gen = NULL;
4234 len = strlen(s->fsconf.tag);
4235 if (len > MAX_TAG_LEN - 1) {
4236 error_setg(errp, "mount tag '%s' (%d bytes) is longer than "
4237 "maximum (%d bytes)", s->fsconf.tag, len, MAX_TAG_LEN - 1);
4238 goto out;
4239 }
4240
4241 s->tag = g_strdup(s->fsconf.tag);
4242 s->ctx.uid = -1;
4243
4244 s->ops = fse->ops;
4245
4246 s->ctx.fmode = fse->fmode;
4247 s->ctx.dmode = fse->dmode;
4248
4249 s->fids = g_hash_table_new(NULL, NULL);
4250 qemu_co_rwlock_init(&s->rename_lock);
4251
4252 if (s->ops->init(&s->ctx, errp) < 0) {
4253 error_prepend(errp, "cannot initialize fsdev '%s': ",
4254 s->fsconf.fsdev_id);
4255 goto out;
4256 }
4257
4258 /*
4259 * Check details of export path, We need to use fs driver
4260 * call back to do that. Since we are in the init path, we don't
4261 * use co-routines here.
4262 */
4263 if (s->ops->name_to_path(&s->ctx, NULL, "/", &path) < 0) {
4264 error_setg(errp,
4265 "error in converting name to path %s", strerror(errno));
4266 goto out;
4267 }
4268 if (s->ops->lstat(&s->ctx, &path, &stat)) {
4269 error_setg(errp, "share path %s does not exist", fse->path);
4270 goto out;
4271 } else if (!S_ISDIR(stat.st_mode)) {
4272 error_setg(errp, "share path %s is not a directory", fse->path);
4273 goto out;
4274 }
4275
4276 s->dev_id = stat.st_dev;
4277
4278 /* init inode remapping : */
4279 /* hash table for variable length inode suffixes */
4280 qpd_table_init(&s->qpd_table);
4281 /* hash table for slow/full inode remapping (most users won't need it) */
4282 qpf_table_init(&s->qpf_table);
4283 /* hash table for quick inode remapping */
4284 qpp_table_init(&s->qpp_table);
4285 s->qp_ndevices = 0;
4286 s->qp_affix_next = 1; /* reserve 0 to detect overflow */
4287 s->qp_fullpath_next = 1;
4288
4289 s->ctx.fst = &fse->fst;
4290 fsdev_throttle_init(s->ctx.fst);
4291
4292 rc = 0;
4293 out:
4294 if (rc) {
4295 v9fs_device_unrealize_common(s);
4296 }
4297 v9fs_path_free(&path);
4298 return rc;
4299 }
4300
v9fs_device_unrealize_common(V9fsState * s)4301 void v9fs_device_unrealize_common(V9fsState *s)
4302 {
4303 if (s->ops && s->ops->cleanup) {
4304 s->ops->cleanup(&s->ctx);
4305 }
4306 if (s->ctx.fst) {
4307 fsdev_throttle_cleanup(s->ctx.fst);
4308 }
4309 if (s->fids) {
4310 g_hash_table_destroy(s->fids);
4311 s->fids = NULL;
4312 }
4313 g_free(s->tag);
4314 qp_table_destroy(&s->qpd_table);
4315 qp_table_destroy(&s->qpp_table);
4316 qp_table_destroy(&s->qpf_table);
4317 g_free(s->ctx.fs_root);
4318 }
4319
4320 typedef struct VirtfsCoResetData {
4321 V9fsPDU pdu;
4322 bool done;
4323 } VirtfsCoResetData;
4324
virtfs_co_reset(void * opaque)4325 static void coroutine_fn virtfs_co_reset(void *opaque)
4326 {
4327 VirtfsCoResetData *data = opaque;
4328
4329 virtfs_reset(&data->pdu);
4330 data->done = true;
4331 }
4332
v9fs_reset(V9fsState * s)4333 void v9fs_reset(V9fsState *s)
4334 {
4335 VirtfsCoResetData data = { .pdu = { .s = s }, .done = false };
4336 Coroutine *co;
4337
4338 while (!QLIST_EMPTY(&s->active_list)) {
4339 aio_poll(qemu_get_aio_context(), true);
4340 }
4341
4342 co = qemu_coroutine_create(virtfs_co_reset, &data);
4343 qemu_coroutine_enter(co);
4344
4345 while (!data.done) {
4346 aio_poll(qemu_get_aio_context(), true);
4347 }
4348 }
4349
v9fs_set_fd_limit(void)4350 static void __attribute__((__constructor__)) v9fs_set_fd_limit(void)
4351 {
4352 struct rlimit rlim;
4353 if (getrlimit(RLIMIT_NOFILE, &rlim) < 0) {
4354 error_report("Failed to get the resource limit");
4355 exit(1);
4356 }
4357 open_fd_hw = rlim.rlim_cur - MIN(400, rlim.rlim_cur / 3);
4358 open_fd_rc = rlim.rlim_cur / 2;
4359 }
4360