4 * Copyright IBM, Corp. 2010
7 * Anthony Liguori <aliguori@us.ibm.com>
9 * This work is licensed under the terms of the GNU GPL, version 2. See
10 * the COPYING file in the top-level directory.
15 * Not so fast! You might want to read the 9p developer docs first:
16 * https://wiki.qemu.org/Documentation/9p
19 #include "qemu/osdep.h"
21 #include <linux/limits.h>
23 #include <glib/gprintf.h>
24 #include "hw/virtio/virtio.h"
25 #include "qapi/error.h"
26 #include "qemu/error-report.h"
28 #include "qemu/main-loop.h"
29 #include "qemu/sockets.h"
30 #include "virtio-9p.h"
31 #include "fsdev/qemu-fsdev.h"
36 #include "migration/blocker.h"
37 #include "qemu/xxhash.h"
42 static int open_fd_rc
;
56 P9ARRAY_DEFINE_TYPE(V9fsPath
, v9fs_path_free
);
58 static ssize_t
pdu_marshal(V9fsPDU
*pdu
, size_t offset
, const char *fmt
, ...)
64 ret
= pdu
->s
->transport
->pdu_vmarshal(pdu
, offset
, fmt
, ap
);
70 static ssize_t
pdu_unmarshal(V9fsPDU
*pdu
, size_t offset
, const char *fmt
, ...)
76 ret
= pdu
->s
->transport
->pdu_vunmarshal(pdu
, offset
, fmt
, ap
);
82 static int omode_to_uflags(int8_t mode
)
105 if (mode
& Oappend
) {
116 typedef struct DotlOpenflagMap
{
121 static int dotl_to_open_flags(int flags
)
125 * We have same bits for P9_DOTL_READONLY, P9_DOTL_WRONLY
126 * and P9_DOTL_NOACCESS
128 int oflags
= flags
& O_ACCMODE
;
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
},
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
148 { P9_DOTL_DIRECT
, O_DIRECT
},
150 { P9_DOTL_LARGEFILE
, O_LARGEFILE
},
151 { P9_DOTL_DIRECTORY
, O_DIRECTORY
},
152 { P9_DOTL_NOFOLLOW
, O_NOFOLLOW
},
153 { P9_DOTL_SYNC
, O_SYNC
},
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
;
165 void cred_init(FsCred
*credp
)
173 static int get_dotl_openflags(V9fsState
*s
, int oflags
)
177 * Filter the client open flags
179 flags
= dotl_to_open_flags(oflags
);
180 flags
&= ~(O_NOCTTY
| O_ASYNC
| O_CREAT
);
181 #ifndef CONFIG_DARWIN
183 * Ignore direct disk access hint until the server supports it.
190 void v9fs_path_init(V9fsPath
*path
)
196 void v9fs_path_free(V9fsPath
*path
)
204 void G_GNUC_PRINTF(2, 3)
205 v9fs_path_sprintf(V9fsPath
*path
, const char *fmt
, ...)
209 v9fs_path_free(path
);
212 /* Bump the size for including terminating NULL */
213 path
->size
= g_vasprintf(&path
->data
, fmt
, ap
) + 1;
217 void v9fs_path_copy(V9fsPath
*dst
, const V9fsPath
*src
)
220 dst
->size
= src
->size
;
221 dst
->data
= g_memdup(src
->data
, src
->size
);
224 int v9fs_name_to_path(V9fsState
*s
, V9fsPath
*dirpath
,
225 const char *name
, V9fsPath
*path
)
228 err
= s
->ops
->name_to_path(&s
->ctx
, dirpath
, name
, path
);
236 * Return TRUE if s1 is an ancestor of s2.
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!
241 static int v9fs_path_is_ancestor(V9fsPath
*s1
, V9fsPath
*s2
)
243 if (!strncmp(s1
->data
, s2
->data
, s1
->size
- 1)) {
244 if (s2
->data
[s1
->size
- 1] == '\0' || s2
->data
[s1
->size
- 1] == '/') {
251 static size_t v9fs_string_size(V9fsString
*str
)
257 * returns 0 if fid got re-opened, 1 if not, < 0 on error
259 static int coroutine_fn
v9fs_reopen_fid(V9fsPDU
*pdu
, V9fsFidState
*f
)
262 if (f
->fid_type
== P9_FID_FILE
) {
263 if (f
->fs
.fd
== -1) {
265 err
= v9fs_co_open(pdu
, f
, f
->open_flags
);
266 } while (err
== -EINTR
&& !pdu
->cancelled
);
268 } else if (f
->fid_type
== P9_FID_DIR
) {
269 if (f
->fs
.dir
.stream
== NULL
) {
271 err
= v9fs_co_opendir(pdu
, f
);
272 } while (err
== -EINTR
&& !pdu
->cancelled
);
278 static V9fsFidState
*coroutine_fn
get_fid(V9fsPDU
*pdu
, int32_t fid
)
282 V9fsState
*s
= pdu
->s
;
284 f
= g_hash_table_lookup(s
->fids
, GINT_TO_POINTER(fid
));
288 * Update the fid ref upfront so that
289 * we don't get reclaimed when we yield
294 * check whether we need to reopen the
295 * file. We might have closed the fd
296 * while trying to free up some file
299 err
= v9fs_reopen_fid(pdu
, f
);
305 * Mark the fid as referenced so that the LRU
306 * reclaim won't close the file descriptor
308 f
->flags
|= FID_REFERENCED
;
314 static V9fsFidState
*alloc_fid(V9fsState
*s
, int32_t fid
)
318 f
= g_hash_table_lookup(s
->fids
, GINT_TO_POINTER(fid
));
320 /* If fid is already there return NULL */
324 f
= g_new0(V9fsFidState
, 1);
326 f
->fid_type
= P9_FID_NONE
;
329 * Mark the fid as referenced so that the LRU
330 * reclaim won't close the file descriptor
332 f
->flags
|= FID_REFERENCED
;
333 g_hash_table_insert(s
->fids
, GINT_TO_POINTER(fid
), f
);
335 v9fs_readdir_init(s
->proto_version
, &f
->fs
.dir
);
336 v9fs_readdir_init(s
->proto_version
, &f
->fs_reclaim
.dir
);
341 static int coroutine_fn
v9fs_xattr_fid_clunk(V9fsPDU
*pdu
, V9fsFidState
*fidp
)
345 if (fidp
->fs
.xattr
.xattrwalk_fid
) {
346 /* getxattr/listxattr fid */
350 * if this is fid for setxattr. clunk should
351 * result in setxattr localcall
353 if (fidp
->fs
.xattr
.len
!= fidp
->fs
.xattr
.copied_len
) {
354 /* clunk after partial write */
358 if (fidp
->fs
.xattr
.len
) {
359 retval
= v9fs_co_lsetxattr(pdu
, &fidp
->path
, &fidp
->fs
.xattr
.name
,
360 fidp
->fs
.xattr
.value
,
362 fidp
->fs
.xattr
.flags
);
364 retval
= v9fs_co_lremovexattr(pdu
, &fidp
->path
, &fidp
->fs
.xattr
.name
);
367 v9fs_string_free(&fidp
->fs
.xattr
.name
);
369 g_free(fidp
->fs
.xattr
.value
);
373 static int coroutine_fn
free_fid(V9fsPDU
*pdu
, V9fsFidState
*fidp
)
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
);
382 } else if (fidp
->fid_type
== P9_FID_DIR
) {
383 if (fidp
->fs
.dir
.stream
!= NULL
) {
384 retval
= v9fs_co_closedir(pdu
, &fidp
->fs
);
386 } else if (fidp
->fid_type
== P9_FID_XATTR
) {
387 retval
= v9fs_xattr_fid_clunk(pdu
, fidp
);
389 v9fs_path_free(&fidp
->path
);
394 static int coroutine_fn
put_fid(V9fsPDU
*pdu
, V9fsFidState
*fidp
)
399 * Don't free the fid if it is in reclaim list
401 if (!fidp
->ref
&& fidp
->clunked
) {
402 if (fidp
->fid
== pdu
->s
->root_fid
) {
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
409 if (pdu
->s
->migration_blocker
) {
410 migrate_del_blocker(pdu
->s
->migration_blocker
);
411 error_free(pdu
->s
->migration_blocker
);
412 pdu
->s
->migration_blocker
= NULL
;
415 return free_fid(pdu
, fidp
);
420 static V9fsFidState
*clunk_fid(V9fsState
*s
, int32_t fid
)
424 /* TODO: Use g_hash_table_steal_extended() instead? */
425 fidp
= g_hash_table_lookup(s
->fids
, GINT_TO_POINTER(fid
));
427 g_hash_table_remove(s
->fids
, GINT_TO_POINTER(fid
));
428 fidp
->clunked
= true;
434 void coroutine_fn
v9fs_reclaim_fd(V9fsPDU
*pdu
)
436 int reclaim_count
= 0;
437 V9fsState
*s
= pdu
->s
;
442 g_hash_table_iter_init(&iter
, s
->fids
);
444 QSLIST_HEAD(, V9fsFidState
) reclaim_list
=
445 QSLIST_HEAD_INITIALIZER(reclaim_list
);
447 while (g_hash_table_iter_next(&iter
, &fid
, (gpointer
*) &f
)) {
449 * Unlink fids cannot be reclaimed. Check
450 * for them and skip them. Also skip fids
451 * currently being operated on.
453 if (f
->ref
|| f
->flags
& FID_NON_RECLAIMABLE
) {
457 * if it is a recently referenced fid
458 * we leave the fid untouched and clear the
459 * reference bit. We come back to it later
460 * in the next iteration. (a simple LRU without
461 * moving list elements around)
463 if (f
->flags
& FID_REFERENCED
) {
464 f
->flags
&= ~FID_REFERENCED
;
468 * Add fids to reclaim list.
470 if (f
->fid_type
== P9_FID_FILE
) {
471 if (f
->fs
.fd
!= -1) {
473 * Up the reference count so that
474 * a clunk request won't free this fid
477 QSLIST_INSERT_HEAD(&reclaim_list
, f
, reclaim_next
);
478 f
->fs_reclaim
.fd
= f
->fs
.fd
;
482 } else if (f
->fid_type
== P9_FID_DIR
) {
483 if (f
->fs
.dir
.stream
!= NULL
) {
485 * Up the reference count so that
486 * a clunk request won't free this fid
489 QSLIST_INSERT_HEAD(&reclaim_list
, f
, reclaim_next
);
490 f
->fs_reclaim
.dir
.stream
= f
->fs
.dir
.stream
;
491 f
->fs
.dir
.stream
= NULL
;
495 if (reclaim_count
>= open_fd_rc
) {
500 * Now close the fid in reclaim list. Free them if they
501 * are already clunked.
503 while (!QSLIST_EMPTY(&reclaim_list
)) {
504 f
= QSLIST_FIRST(&reclaim_list
);
505 QSLIST_REMOVE(&reclaim_list
, f
, V9fsFidState
, reclaim_next
);
506 if (f
->fid_type
== P9_FID_FILE
) {
507 v9fs_co_close(pdu
, &f
->fs_reclaim
);
508 } else if (f
->fid_type
== P9_FID_DIR
) {
509 v9fs_co_closedir(pdu
, &f
->fs_reclaim
);
512 * Now drop the fid reference, free it
520 * This is used when a path is removed from the directory tree. Any
521 * fids that still reference it must not be closed from then on, since
522 * they cannot be reopened.
524 static int coroutine_fn
v9fs_mark_fids_unreclaim(V9fsPDU
*pdu
, V9fsPath
*path
)
527 V9fsState
*s
= pdu
->s
;
532 * The most common case is probably that we have exactly one
533 * fid for the given path, so preallocate exactly one.
535 g_autoptr(GArray
) to_reopen
= g_array_sized_new(FALSE
, FALSE
,
536 sizeof(V9fsFidState
*), 1);
539 g_hash_table_iter_init(&iter
, s
->fids
);
542 * We iterate over the fid table looking for the entries we need
543 * to reopen, and store them in to_reopen. This is because
544 * v9fs_reopen_fid() and put_fid() yield. This allows the fid table
545 * to be modified in the meantime, invalidating our iterator.
547 while (g_hash_table_iter_next(&iter
, &fid
, (gpointer
*) &fidp
)) {
548 if (fidp
->path
.size
== path
->size
&&
549 !memcmp(fidp
->path
.data
, path
->data
, path
->size
)) {
551 * Ensure the fid survives a potential clunk request during
552 * v9fs_reopen_fid or put_fid.
555 fidp
->flags
|= FID_NON_RECLAIMABLE
;
556 g_array_append_val(to_reopen
, fidp
);
560 for (i
= 0; i
< to_reopen
->len
; i
++) {
561 fidp
= g_array_index(to_reopen
, V9fsFidState
*, i
);
562 /* reopen the file/dir if already closed */
563 err
= v9fs_reopen_fid(pdu
, fidp
);
569 for (i
= 0; i
< to_reopen
->len
; i
++) {
570 put_fid(pdu
, g_array_index(to_reopen
, V9fsFidState
*, i
));
575 static void coroutine_fn
virtfs_reset(V9fsPDU
*pdu
)
577 V9fsState
*s
= pdu
->s
;
581 * Get a list of all the values (fid states) in the table, which
584 g_autoptr(GList
) fids
= g_hash_table_get_values(s
->fids
);
586 /* ... remove from the table, taking over ownership. */
587 g_hash_table_steal_all(s
->fids
);
590 * This allows us to release our references to them asynchronously without
591 * iterating over the hash table and risking iterator invalidation
592 * through concurrent modifications.
594 for (freeing
= fids
; freeing
; freeing
= freeing
->next
) {
595 fidp
= freeing
->data
;
597 fidp
->clunked
= true;
602 #define P9_QID_TYPE_DIR 0x80
603 #define P9_QID_TYPE_SYMLINK 0x02
605 #define P9_STAT_MODE_DIR 0x80000000
606 #define P9_STAT_MODE_APPEND 0x40000000
607 #define P9_STAT_MODE_EXCL 0x20000000
608 #define P9_STAT_MODE_MOUNT 0x10000000
609 #define P9_STAT_MODE_AUTH 0x08000000
610 #define P9_STAT_MODE_TMP 0x04000000
611 #define P9_STAT_MODE_SYMLINK 0x02000000
612 #define P9_STAT_MODE_LINK 0x01000000
613 #define P9_STAT_MODE_DEVICE 0x00800000
614 #define P9_STAT_MODE_NAMED_PIPE 0x00200000
615 #define P9_STAT_MODE_SOCKET 0x00100000
616 #define P9_STAT_MODE_SETUID 0x00080000
617 #define P9_STAT_MODE_SETGID 0x00040000
618 #define P9_STAT_MODE_SETVTX 0x00010000
620 #define P9_STAT_MODE_TYPE_BITS (P9_STAT_MODE_DIR | \
621 P9_STAT_MODE_SYMLINK | \
622 P9_STAT_MODE_LINK | \
623 P9_STAT_MODE_DEVICE | \
624 P9_STAT_MODE_NAMED_PIPE | \
627 /* Mirrors all bits of a byte. So e.g. binary 10100000 would become 00000101. */
628 static inline uint8_t mirror8bit(uint8_t byte
)
630 return (byte
* 0x0202020202ULL
& 0x010884422010ULL
) % 1023;
633 /* Same as mirror8bit() just for a 64 bit data type instead for a byte. */
634 static inline uint64_t mirror64bit(uint64_t value
)
636 return ((uint64_t)mirror8bit(value
& 0xff) << 56) |
637 ((uint64_t)mirror8bit((value
>> 8) & 0xff) << 48) |
638 ((uint64_t)mirror8bit((value
>> 16) & 0xff) << 40) |
639 ((uint64_t)mirror8bit((value
>> 24) & 0xff) << 32) |
640 ((uint64_t)mirror8bit((value
>> 32) & 0xff) << 24) |
641 ((uint64_t)mirror8bit((value
>> 40) & 0xff) << 16) |
642 ((uint64_t)mirror8bit((value
>> 48) & 0xff) << 8) |
643 ((uint64_t)mirror8bit((value
>> 56) & 0xff));
647 * Parameter k for the Exponential Golomb algorithm to be used.
649 * The smaller this value, the smaller the minimum bit count for the Exp.
650 * Golomb generated affixes will be (at lowest index) however for the
651 * price of having higher maximum bit count of generated affixes (at highest
652 * index). Likewise increasing this parameter yields in smaller maximum bit
653 * count for the price of having higher minimum bit count.
655 * In practice that means: a good value for k depends on the expected amount
656 * of devices to be exposed by one export. For a small amount of devices k
657 * should be small, for a large amount of devices k might be increased
658 * instead. The default of k=0 should be fine for most users though.
660 * IMPORTANT: In case this ever becomes a runtime parameter; the value of
661 * k should not change as long as guest is still running! Because that would
662 * cause completely different inode numbers to be generated on guest.
664 #define EXP_GOLOMB_K 0
667 * expGolombEncode() - Exponential Golomb algorithm for arbitrary k
670 * @n: natural number (or index) of the prefix to be generated
672 * @k: parameter k of Exp. Golomb algorithm to be used
673 * (see comment on EXP_GOLOMB_K macro for details about k)
674 * Return: prefix for given @n and @k
676 * The Exponential Golomb algorithm generates prefixes (NOT suffixes!)
677 * with growing length and with the mathematical property of being
678 * "prefix-free". The latter means the generated prefixes can be prepended
679 * in front of arbitrary numbers and the resulting concatenated numbers are
680 * guaranteed to be always unique.
682 * This is a minor adjustment to the original Exp. Golomb algorithm in the
683 * sense that lowest allowed index (@n) starts with 1, not with zero.
685 static VariLenAffix
expGolombEncode(uint64_t n
, int k
)
687 const uint64_t value
= n
+ (1 << k
) - 1;
688 const int bits
= (int) log2(value
) + 1;
689 return (VariLenAffix
) {
690 .type
= AffixType_Prefix
,
692 .bits
= bits
+ MAX((bits
- 1 - k
), 0)
697 * invertAffix() - Converts a suffix into a prefix, or a prefix into a suffix.
698 * @affix: either suffix or prefix to be inverted
699 * Return: inversion of passed @affix
701 * Simply mirror all bits of the affix value, for the purpose to preserve
702 * respectively the mathematical "prefix-free" or "suffix-free" property
703 * after the conversion.
705 * If a passed prefix is suitable to create unique numbers, then the
706 * returned suffix is suitable to create unique numbers as well (and vice
709 static VariLenAffix
invertAffix(const VariLenAffix
*affix
)
711 return (VariLenAffix
) {
713 (affix
->type
== AffixType_Suffix
) ?
714 AffixType_Prefix
: AffixType_Suffix
,
716 mirror64bit(affix
->value
) >>
717 ((sizeof(affix
->value
) * 8) - affix
->bits
),
723 * affixForIndex() - Generates suffix numbers with "suffix-free" property.
724 * @index: natural number (or index) of the suffix to be generated
726 * Return: Suffix suitable to assemble unique number.
728 * This is just a wrapper function on top of the Exp. Golomb algorithm.
730 * Since the Exp. Golomb algorithm generates prefixes, but we need suffixes,
731 * this function converts the Exp. Golomb prefixes into appropriate suffixes
732 * which are still suitable for generating unique numbers.
734 static VariLenAffix
affixForIndex(uint64_t index
)
737 prefix
= expGolombEncode(index
, EXP_GOLOMB_K
);
738 return invertAffix(&prefix
); /* convert prefix to suffix */
741 static uint32_t qpp_hash(QppEntry e
)
743 return qemu_xxhash4(e
.ino_prefix
, e
.dev
);
746 static uint32_t qpf_hash(QpfEntry e
)
748 return qemu_xxhash4(e
.ino
, e
.dev
);
751 static bool qpd_cmp_func(const void *obj
, const void *userp
)
753 const QpdEntry
*e1
= obj
, *e2
= userp
;
754 return e1
->dev
== e2
->dev
;
757 static bool qpp_cmp_func(const void *obj
, const void *userp
)
759 const QppEntry
*e1
= obj
, *e2
= userp
;
760 return e1
->dev
== e2
->dev
&& e1
->ino_prefix
== e2
->ino_prefix
;
763 static bool qpf_cmp_func(const void *obj
, const void *userp
)
765 const QpfEntry
*e1
= obj
, *e2
= userp
;
766 return e1
->dev
== e2
->dev
&& e1
->ino
== e2
->ino
;
769 static void qp_table_remove(void *p
, uint32_t h
, void *up
)
774 static void qp_table_destroy(struct qht
*ht
)
776 if (!ht
|| !ht
->map
) {
779 qht_iter(ht
, qp_table_remove
, NULL
);
783 static void qpd_table_init(struct qht
*ht
)
785 qht_init(ht
, qpd_cmp_func
, 1, QHT_MODE_AUTO_RESIZE
);
788 static void qpp_table_init(struct qht
*ht
)
790 qht_init(ht
, qpp_cmp_func
, 1, QHT_MODE_AUTO_RESIZE
);
793 static void qpf_table_init(struct qht
*ht
)
795 qht_init(ht
, qpf_cmp_func
, 1 << 16, QHT_MODE_AUTO_RESIZE
);
799 * Returns how many (high end) bits of inode numbers of the passed fs
800 * device shall be used (in combination with the device number) to
801 * generate hash values for qpp_table entries.
803 * This function is required if variable length suffixes are used for inode
804 * number mapping on guest level. Since a device may end up having multiple
805 * entries in qpp_table, each entry most probably with a different suffix
806 * length, we thus need this function in conjunction with qpd_table to
807 * "agree" about a fix amount of bits (per device) to be always used for
808 * generating hash values for the purpose of accessing qpp_table in order
809 * get consistent behaviour when accessing qpp_table.
811 static int qid_inode_prefix_hash_bits(V9fsPDU
*pdu
, dev_t dev
)
819 val
= qht_lookup(&pdu
->s
->qpd_table
, &lookup
, hash
);
821 val
= g_new0(QpdEntry
, 1);
823 affix
= affixForIndex(pdu
->s
->qp_affix_next
);
824 val
->prefix_bits
= affix
.bits
;
825 qht_insert(&pdu
->s
->qpd_table
, val
, hash
, NULL
);
826 pdu
->s
->qp_ndevices
++;
828 return val
->prefix_bits
;
832 * Slow / full mapping host inode nr -> guest inode nr.
834 * This function performs a slower and much more costly remapping of an
835 * original file inode number on host to an appropriate different inode
836 * number on guest. For every (dev, inode) combination on host a new
837 * sequential number is generated, cached and exposed as inode number on
840 * This is just a "last resort" fallback solution if the much faster/cheaper
841 * qid_path_suffixmap() failed. In practice this slow / full mapping is not
842 * expected ever to be used at all though.
844 * See qid_path_suffixmap() for details
847 static int qid_path_fullmap(V9fsPDU
*pdu
, const struct stat
*stbuf
,
851 .dev
= stbuf
->st_dev
,
854 uint32_t hash
= qpf_hash(lookup
);
857 val
= qht_lookup(&pdu
->s
->qpf_table
, &lookup
, hash
);
860 if (pdu
->s
->qp_fullpath_next
== 0) {
861 /* no more files can be mapped :'( */
863 "9p: No more prefixes available for remapping inodes from "
869 val
= g_new0(QpfEntry
, 1);
872 /* new unique inode and device combo */
873 affix
= affixForIndex(
874 1ULL << (sizeof(pdu
->s
->qp_affix_next
) * 8)
876 val
->path
= (pdu
->s
->qp_fullpath_next
++ << affix
.bits
) | affix
.value
;
877 pdu
->s
->qp_fullpath_next
&= ((1ULL << (64 - affix
.bits
)) - 1);
878 qht_insert(&pdu
->s
->qpf_table
, val
, hash
, NULL
);
886 * Quick mapping host inode nr -> guest inode nr.
888 * This function performs quick remapping of an original file inode number
889 * on host to an appropriate different inode number on guest. This remapping
890 * of inodes is required to avoid inode nr collisions on guest which would
891 * happen if the 9p export contains more than 1 exported file system (or
892 * more than 1 file system data set), because unlike on host level where the
893 * files would have different device nrs, all files exported by 9p would
894 * share the same device nr on guest (the device nr of the virtual 9p device
897 * Inode remapping is performed by chopping off high end bits of the original
898 * inode number from host, shifting the result upwards and then assigning a
899 * generated suffix number for the low end bits, where the same suffix number
900 * will be shared by all inodes with the same device id AND the same high end
901 * bits that have been chopped off. That approach utilizes the fact that inode
902 * numbers very likely share the same high end bits (i.e. due to their common
903 * sequential generation by file systems) and hence we only have to generate
904 * and track a very limited amount of suffixes in practice due to that.
906 * We generate variable size suffixes for that purpose. The 1st generated
907 * suffix will only have 1 bit and hence we only need to chop off 1 bit from
908 * the original inode number. The subsequent suffixes being generated will
909 * grow in (bit) size subsequently, i.e. the 2nd and 3rd suffix being
910 * generated will have 3 bits and hence we have to chop off 3 bits from their
911 * original inodes, and so on. That approach of using variable length suffixes
912 * (i.e. over fixed size ones) utilizes the fact that in practice only a very
913 * limited amount of devices are shared by the same export (e.g. typically
914 * less than 2 dozen devices per 9p export), so in practice we need to chop
915 * off less bits than with fixed size prefixes and yet are flexible to add
916 * new devices at runtime below host's export directory at any time without
917 * having to reboot guest nor requiring to reconfigure guest for that. And due
918 * to the very limited amount of original high end bits that we chop off that
919 * way, the total amount of suffixes we need to generate is less than by using
920 * fixed size prefixes and hence it also improves performance of the inode
921 * remapping algorithm, and finally has the nice side effect that the inode
922 * numbers on guest will be much smaller & human friendly. ;-)
924 static int qid_path_suffixmap(V9fsPDU
*pdu
, const struct stat
*stbuf
,
927 const int ino_hash_bits
= qid_inode_prefix_hash_bits(pdu
, stbuf
->st_dev
);
929 .dev
= stbuf
->st_dev
,
930 .ino_prefix
= (uint16_t) (stbuf
->st_ino
>> (64 - ino_hash_bits
))
932 uint32_t hash
= qpp_hash(lookup
);
934 val
= qht_lookup(&pdu
->s
->qpp_table
, &lookup
, hash
);
937 if (pdu
->s
->qp_affix_next
== 0) {
938 /* we ran out of affixes */
940 "9p: Potential degraded performance of inode remapping"
945 val
= g_new0(QppEntry
, 1);
948 /* new unique inode affix and device combo */
949 val
->qp_affix_index
= pdu
->s
->qp_affix_next
++;
950 val
->qp_affix
= affixForIndex(val
->qp_affix_index
);
951 qht_insert(&pdu
->s
->qpp_table
, val
, hash
, NULL
);
953 /* assuming generated affix to be suffix type, not prefix */
954 *path
= (stbuf
->st_ino
<< val
->qp_affix
.bits
) | val
->qp_affix
.value
;
958 static int stat_to_qid(V9fsPDU
*pdu
, const struct stat
*stbuf
, V9fsQID
*qidp
)
963 if (pdu
->s
->ctx
.export_flags
& V9FS_REMAP_INODES
) {
964 /* map inode+device to qid path (fast path) */
965 err
= qid_path_suffixmap(pdu
, stbuf
, &qidp
->path
);
966 if (err
== -ENFILE
) {
967 /* fast path didn't work, fall back to full map */
968 err
= qid_path_fullmap(pdu
, stbuf
, &qidp
->path
);
974 if (pdu
->s
->dev_id
!= stbuf
->st_dev
) {
975 if (pdu
->s
->ctx
.export_flags
& V9FS_FORBID_MULTIDEVS
) {
977 "9p: Multiple devices detected in same VirtFS export. "
978 "Access of guest to additional devices is (partly) "
979 "denied due to virtfs option 'multidevs=forbid' being "
985 "9p: Multiple devices detected in same VirtFS export, "
986 "which might lead to file ID collisions and severe "
987 "misbehaviours on guest! You should either use a "
988 "separate export for each device shared from host or "
989 "use virtfs option 'multidevs=remap'!"
993 memset(&qidp
->path
, 0, sizeof(qidp
->path
));
994 size
= MIN(sizeof(stbuf
->st_ino
), sizeof(qidp
->path
));
995 memcpy(&qidp
->path
, &stbuf
->st_ino
, size
);
998 qidp
->version
= stbuf
->st_mtime
^ (stbuf
->st_size
<< 8);
1000 if (S_ISDIR(stbuf
->st_mode
)) {
1001 qidp
->type
|= P9_QID_TYPE_DIR
;
1003 if (S_ISLNK(stbuf
->st_mode
)) {
1004 qidp
->type
|= P9_QID_TYPE_SYMLINK
;
1010 V9fsPDU
*pdu_alloc(V9fsState
*s
)
1012 V9fsPDU
*pdu
= NULL
;
1014 if (!QLIST_EMPTY(&s
->free_list
)) {
1015 pdu
= QLIST_FIRST(&s
->free_list
);
1016 QLIST_REMOVE(pdu
, next
);
1017 QLIST_INSERT_HEAD(&s
->active_list
, pdu
, next
);
1022 void pdu_free(V9fsPDU
*pdu
)
1024 V9fsState
*s
= pdu
->s
;
1026 g_assert(!pdu
->cancelled
);
1027 QLIST_REMOVE(pdu
, next
);
1028 QLIST_INSERT_HEAD(&s
->free_list
, pdu
, next
);
1031 static void coroutine_fn
pdu_complete(V9fsPDU
*pdu
, ssize_t len
)
1033 int8_t id
= pdu
->id
+ 1; /* Response */
1034 V9fsState
*s
= pdu
->s
;
1038 * The 9p spec requires that successfully cancelled pdus receive no reply.
1039 * Sending a reply would confuse clients because they would
1040 * assume that any EINTR is the actual result of the operation,
1041 * rather than a consequence of the cancellation. However, if
1042 * the operation completed (successfully or with an error other
1043 * than caused be cancellation), we do send out that reply, both
1044 * for efficiency and to avoid confusing the rest of the state machine
1045 * that assumes passing a non-error here will mean a successful
1046 * transmission of the reply.
1048 bool discard
= pdu
->cancelled
&& len
== -EINTR
;
1050 trace_v9fs_rcancel(pdu
->tag
, pdu
->id
);
1059 if (s
->proto_version
!= V9FS_PROTO_2000L
) {
1062 str
.data
= strerror(err
);
1063 str
.size
= strlen(str
.data
);
1065 ret
= pdu_marshal(pdu
, len
, "s", &str
);
1072 err
= errno_to_dotl(err
);
1075 ret
= pdu_marshal(pdu
, len
, "d", err
);
1081 if (s
->proto_version
== V9FS_PROTO_2000L
) {
1084 trace_v9fs_rerror(pdu
->tag
, pdu
->id
, err
); /* Trace ERROR */
1087 /* fill out the header */
1088 if (pdu_marshal(pdu
, 0, "dbw", (int32_t)len
, id
, pdu
->tag
) < 0) {
1092 /* keep these in sync */
1097 pdu
->s
->transport
->push_and_notify(pdu
);
1099 /* Now wakeup anybody waiting in flush for this request */
1100 if (!qemu_co_queue_next(&pdu
->complete
)) {
1105 static mode_t
v9mode_to_mode(uint32_t mode
, V9fsString
*extension
)
1110 if (mode
& P9_STAT_MODE_DIR
) {
1114 if (mode
& P9_STAT_MODE_SYMLINK
) {
1117 if (mode
& P9_STAT_MODE_SOCKET
) {
1120 if (mode
& P9_STAT_MODE_NAMED_PIPE
) {
1123 if (mode
& P9_STAT_MODE_DEVICE
) {
1124 if (extension
->size
&& extension
->data
[0] == 'c') {
1131 if (!(ret
& ~0777)) {
1135 if (mode
& P9_STAT_MODE_SETUID
) {
1138 if (mode
& P9_STAT_MODE_SETGID
) {
1141 if (mode
& P9_STAT_MODE_SETVTX
) {
1148 static int donttouch_stat(V9fsStat
*stat
)
1150 if (stat
->type
== -1 &&
1152 stat
->qid
.type
== 0xff &&
1153 stat
->qid
.version
== (uint32_t) -1 &&
1154 stat
->qid
.path
== (uint64_t) -1 &&
1156 stat
->atime
== -1 &&
1157 stat
->mtime
== -1 &&
1158 stat
->length
== -1 &&
1163 stat
->n_uid
== -1 &&
1164 stat
->n_gid
== -1 &&
1165 stat
->n_muid
== -1) {
1172 static void v9fs_stat_init(V9fsStat
*stat
)
1174 v9fs_string_init(&stat
->name
);
1175 v9fs_string_init(&stat
->uid
);
1176 v9fs_string_init(&stat
->gid
);
1177 v9fs_string_init(&stat
->muid
);
1178 v9fs_string_init(&stat
->extension
);
1181 static void v9fs_stat_free(V9fsStat
*stat
)
1183 v9fs_string_free(&stat
->name
);
1184 v9fs_string_free(&stat
->uid
);
1185 v9fs_string_free(&stat
->gid
);
1186 v9fs_string_free(&stat
->muid
);
1187 v9fs_string_free(&stat
->extension
);
1190 static uint32_t stat_to_v9mode(const struct stat
*stbuf
)
1194 mode
= stbuf
->st_mode
& 0777;
1195 if (S_ISDIR(stbuf
->st_mode
)) {
1196 mode
|= P9_STAT_MODE_DIR
;
1199 if (S_ISLNK(stbuf
->st_mode
)) {
1200 mode
|= P9_STAT_MODE_SYMLINK
;
1203 if (S_ISSOCK(stbuf
->st_mode
)) {
1204 mode
|= P9_STAT_MODE_SOCKET
;
1207 if (S_ISFIFO(stbuf
->st_mode
)) {
1208 mode
|= P9_STAT_MODE_NAMED_PIPE
;
1211 if (S_ISBLK(stbuf
->st_mode
) || S_ISCHR(stbuf
->st_mode
)) {
1212 mode
|= P9_STAT_MODE_DEVICE
;
1215 if (stbuf
->st_mode
& S_ISUID
) {
1216 mode
|= P9_STAT_MODE_SETUID
;
1219 if (stbuf
->st_mode
& S_ISGID
) {
1220 mode
|= P9_STAT_MODE_SETGID
;
1223 if (stbuf
->st_mode
& S_ISVTX
) {
1224 mode
|= P9_STAT_MODE_SETVTX
;
1230 static int coroutine_fn
stat_to_v9stat(V9fsPDU
*pdu
, V9fsPath
*path
,
1231 const char *basename
,
1232 const struct stat
*stbuf
,
1237 memset(v9stat
, 0, sizeof(*v9stat
));
1239 err
= stat_to_qid(pdu
, stbuf
, &v9stat
->qid
);
1243 v9stat
->mode
= stat_to_v9mode(stbuf
);
1244 v9stat
->atime
= stbuf
->st_atime
;
1245 v9stat
->mtime
= stbuf
->st_mtime
;
1246 v9stat
->length
= stbuf
->st_size
;
1248 v9fs_string_free(&v9stat
->uid
);
1249 v9fs_string_free(&v9stat
->gid
);
1250 v9fs_string_free(&v9stat
->muid
);
1252 v9stat
->n_uid
= stbuf
->st_uid
;
1253 v9stat
->n_gid
= stbuf
->st_gid
;
1256 v9fs_string_free(&v9stat
->extension
);
1258 if (v9stat
->mode
& P9_STAT_MODE_SYMLINK
) {
1259 err
= v9fs_co_readlink(pdu
, path
, &v9stat
->extension
);
1263 } else if (v9stat
->mode
& P9_STAT_MODE_DEVICE
) {
1264 v9fs_string_sprintf(&v9stat
->extension
, "%c %u %u",
1265 S_ISCHR(stbuf
->st_mode
) ? 'c' : 'b',
1266 major(stbuf
->st_rdev
), minor(stbuf
->st_rdev
));
1267 } else if (S_ISDIR(stbuf
->st_mode
) || S_ISREG(stbuf
->st_mode
)) {
1268 v9fs_string_sprintf(&v9stat
->extension
, "%s %lu",
1269 "HARDLINKCOUNT", (unsigned long)stbuf
->st_nlink
);
1272 v9fs_string_sprintf(&v9stat
->name
, "%s", basename
);
1275 v9fs_string_size(&v9stat
->name
) +
1276 v9fs_string_size(&v9stat
->uid
) +
1277 v9fs_string_size(&v9stat
->gid
) +
1278 v9fs_string_size(&v9stat
->muid
) +
1279 v9fs_string_size(&v9stat
->extension
);
1283 #define P9_STATS_MODE 0x00000001ULL
1284 #define P9_STATS_NLINK 0x00000002ULL
1285 #define P9_STATS_UID 0x00000004ULL
1286 #define P9_STATS_GID 0x00000008ULL
1287 #define P9_STATS_RDEV 0x00000010ULL
1288 #define P9_STATS_ATIME 0x00000020ULL
1289 #define P9_STATS_MTIME 0x00000040ULL
1290 #define P9_STATS_CTIME 0x00000080ULL
1291 #define P9_STATS_INO 0x00000100ULL
1292 #define P9_STATS_SIZE 0x00000200ULL
1293 #define P9_STATS_BLOCKS 0x00000400ULL
1295 #define P9_STATS_BTIME 0x00000800ULL
1296 #define P9_STATS_GEN 0x00001000ULL
1297 #define P9_STATS_DATA_VERSION 0x00002000ULL
1299 #define P9_STATS_BASIC 0x000007ffULL /* Mask for fields up to BLOCKS */
1300 #define P9_STATS_ALL 0x00003fffULL /* Mask for All fields above */
1304 * blksize_to_iounit() - Block size exposed to 9p client.
1305 * Return: block size
1307 * @pdu: 9p client request
1308 * @blksize: host filesystem's block size
1310 * Convert host filesystem's block size into an appropriate block size for
1311 * 9p client (guest OS side). The value returned suggests an "optimum" block
1312 * size for 9p I/O, i.e. to maximize performance.
1314 static int32_t blksize_to_iounit(const V9fsPDU
*pdu
, int32_t blksize
)
1317 V9fsState
*s
= pdu
->s
;
1320 * iounit should be multiples of blksize (host filesystem block size)
1321 * as well as less than (client msize - P9_IOHDRSZ)
1324 iounit
= QEMU_ALIGN_DOWN(s
->msize
- P9_IOHDRSZ
, blksize
);
1327 iounit
= s
->msize
- P9_IOHDRSZ
;
1332 static int32_t stat_to_iounit(const V9fsPDU
*pdu
, const struct stat
*stbuf
)
1334 return blksize_to_iounit(pdu
, stbuf
->st_blksize
);
1337 static int stat_to_v9stat_dotl(V9fsPDU
*pdu
, const struct stat
*stbuf
,
1338 V9fsStatDotl
*v9lstat
)
1340 memset(v9lstat
, 0, sizeof(*v9lstat
));
1342 v9lstat
->st_mode
= stbuf
->st_mode
;
1343 v9lstat
->st_nlink
= stbuf
->st_nlink
;
1344 v9lstat
->st_uid
= stbuf
->st_uid
;
1345 v9lstat
->st_gid
= stbuf
->st_gid
;
1346 v9lstat
->st_rdev
= host_dev_to_dotl_dev(stbuf
->st_rdev
);
1347 v9lstat
->st_size
= stbuf
->st_size
;
1348 v9lstat
->st_blksize
= stat_to_iounit(pdu
, stbuf
);
1349 v9lstat
->st_blocks
= stbuf
->st_blocks
;
1350 v9lstat
->st_atime_sec
= stbuf
->st_atime
;
1351 v9lstat
->st_mtime_sec
= stbuf
->st_mtime
;
1352 v9lstat
->st_ctime_sec
= stbuf
->st_ctime
;
1353 #ifdef CONFIG_DARWIN
1354 v9lstat
->st_atime_nsec
= stbuf
->st_atimespec
.tv_nsec
;
1355 v9lstat
->st_mtime_nsec
= stbuf
->st_mtimespec
.tv_nsec
;
1356 v9lstat
->st_ctime_nsec
= stbuf
->st_ctimespec
.tv_nsec
;
1358 v9lstat
->st_atime_nsec
= stbuf
->st_atim
.tv_nsec
;
1359 v9lstat
->st_mtime_nsec
= stbuf
->st_mtim
.tv_nsec
;
1360 v9lstat
->st_ctime_nsec
= stbuf
->st_ctim
.tv_nsec
;
1362 /* Currently we only support BASIC fields in stat */
1363 v9lstat
->st_result_mask
= P9_STATS_BASIC
;
1365 return stat_to_qid(pdu
, stbuf
, &v9lstat
->qid
);
1368 static void print_sg(struct iovec
*sg
, int cnt
)
1372 printf("sg[%d]: {", cnt
);
1373 for (i
= 0; i
< cnt
; i
++) {
1377 printf("(%p, %zd)", sg
[i
].iov_base
, sg
[i
].iov_len
);
1382 /* Will call this only for path name based fid */
1383 static void v9fs_fix_path(V9fsPath
*dst
, V9fsPath
*src
, int len
)
1386 v9fs_path_init(&str
);
1387 v9fs_path_copy(&str
, dst
);
1388 v9fs_path_sprintf(dst
, "%s%s", src
->data
, str
.data
+ len
);
1389 v9fs_path_free(&str
);
1392 static inline bool is_ro_export(FsContext
*ctx
)
1394 return ctx
->export_flags
& V9FS_RDONLY
;
1397 static void coroutine_fn
v9fs_version(void *opaque
)
1400 V9fsPDU
*pdu
= opaque
;
1401 V9fsState
*s
= pdu
->s
;
1405 v9fs_string_init(&version
);
1406 err
= pdu_unmarshal(pdu
, offset
, "ds", &s
->msize
, &version
);
1410 trace_v9fs_version(pdu
->tag
, pdu
->id
, s
->msize
, version
.data
);
1414 if (!strcmp(version
.data
, "9P2000.u")) {
1415 s
->proto_version
= V9FS_PROTO_2000U
;
1416 } else if (!strcmp(version
.data
, "9P2000.L")) {
1417 s
->proto_version
= V9FS_PROTO_2000L
;
1419 v9fs_string_sprintf(&version
, "unknown");
1420 /* skip min. msize check, reporting invalid version has priority */
1424 if (s
->msize
< P9_MIN_MSIZE
) {
1427 "9pfs: Client requested msize < minimum msize ("
1428 stringify(P9_MIN_MSIZE
) ") supported by this server."
1433 /* 8192 is the default msize of Linux clients */
1434 if (s
->msize
<= 8192 && !(s
->ctx
.export_flags
& V9FS_NO_PERF_WARN
)) {
1436 "9p: degraded performance: a reasonable high msize should be "
1437 "chosen on client/guest side (chosen msize is <= 8192). See "
1438 "https://wiki.qemu.org/Documentation/9psetup#msize for details."
1443 err
= pdu_marshal(pdu
, offset
, "ds", s
->msize
, &version
);
1448 trace_v9fs_version_return(pdu
->tag
, pdu
->id
, s
->msize
, version
.data
);
1450 pdu_complete(pdu
, err
);
1451 v9fs_string_free(&version
);
1454 static void coroutine_fn
v9fs_attach(void *opaque
)
1456 V9fsPDU
*pdu
= opaque
;
1457 V9fsState
*s
= pdu
->s
;
1458 int32_t fid
, afid
, n_uname
;
1459 V9fsString uname
, aname
;
1466 v9fs_string_init(&uname
);
1467 v9fs_string_init(&aname
);
1468 err
= pdu_unmarshal(pdu
, offset
, "ddssd", &fid
,
1469 &afid
, &uname
, &aname
, &n_uname
);
1473 trace_v9fs_attach(pdu
->tag
, pdu
->id
, fid
, afid
, uname
.data
, aname
.data
);
1475 fidp
= alloc_fid(s
, fid
);
1480 fidp
->uid
= n_uname
;
1481 err
= v9fs_co_name_to_path(pdu
, NULL
, "/", &fidp
->path
);
1487 err
= v9fs_co_lstat(pdu
, &fidp
->path
, &stbuf
);
1493 err
= stat_to_qid(pdu
, &stbuf
, &qid
);
1501 * disable migration if we haven't done already.
1502 * attach could get called multiple times for the same export.
1504 if (!s
->migration_blocker
) {
1505 error_setg(&s
->migration_blocker
,
1506 "Migration is disabled when VirtFS export path '%s' is mounted in the guest using mount_tag '%s'",
1507 s
->ctx
.fs_root
? s
->ctx
.fs_root
: "NULL", s
->tag
);
1508 err
= migrate_add_blocker(s
->migration_blocker
, NULL
);
1510 error_free(s
->migration_blocker
);
1511 s
->migration_blocker
= NULL
;
1518 err
= pdu_marshal(pdu
, offset
, "Q", &qid
);
1525 memcpy(&s
->root_st
, &stbuf
, sizeof(stbuf
));
1526 trace_v9fs_attach_return(pdu
->tag
, pdu
->id
,
1527 qid
.type
, qid
.version
, qid
.path
);
1531 pdu_complete(pdu
, err
);
1532 v9fs_string_free(&uname
);
1533 v9fs_string_free(&aname
);
1536 static void coroutine_fn
v9fs_stat(void *opaque
)
1544 V9fsPDU
*pdu
= opaque
;
1547 err
= pdu_unmarshal(pdu
, offset
, "d", &fid
);
1551 trace_v9fs_stat(pdu
->tag
, pdu
->id
, fid
);
1553 fidp
= get_fid(pdu
, fid
);
1558 err
= v9fs_co_lstat(pdu
, &fidp
->path
, &stbuf
);
1562 basename
= g_path_get_basename(fidp
->path
.data
);
1563 err
= stat_to_v9stat(pdu
, &fidp
->path
, basename
, &stbuf
, &v9stat
);
1568 err
= pdu_marshal(pdu
, offset
, "wS", 0, &v9stat
);
1570 v9fs_stat_free(&v9stat
);
1573 trace_v9fs_stat_return(pdu
->tag
, pdu
->id
, v9stat
.mode
,
1574 v9stat
.atime
, v9stat
.mtime
, v9stat
.length
);
1576 v9fs_stat_free(&v9stat
);
1580 pdu_complete(pdu
, err
);
1583 static void coroutine_fn
v9fs_getattr(void *opaque
)
1590 uint64_t request_mask
;
1591 V9fsStatDotl v9stat_dotl
;
1592 V9fsPDU
*pdu
= opaque
;
1594 retval
= pdu_unmarshal(pdu
, offset
, "dq", &fid
, &request_mask
);
1598 trace_v9fs_getattr(pdu
->tag
, pdu
->id
, fid
, request_mask
);
1600 fidp
= get_fid(pdu
, fid
);
1606 * Currently we only support BASIC fields in stat, so there is no
1607 * need to look at request_mask.
1609 retval
= v9fs_co_lstat(pdu
, &fidp
->path
, &stbuf
);
1613 retval
= stat_to_v9stat_dotl(pdu
, &stbuf
, &v9stat_dotl
);
1618 /* fill st_gen if requested and supported by underlying fs */
1619 if (request_mask
& P9_STATS_GEN
) {
1620 retval
= v9fs_co_st_gen(pdu
, &fidp
->path
, stbuf
.st_mode
, &v9stat_dotl
);
1623 /* we have valid st_gen: update result mask */
1624 v9stat_dotl
.st_result_mask
|= P9_STATS_GEN
;
1627 /* request cancelled, e.g. by Tflush */
1630 /* failed to get st_gen: not fatal, ignore */
1634 retval
= pdu_marshal(pdu
, offset
, "A", &v9stat_dotl
);
1639 trace_v9fs_getattr_return(pdu
->tag
, pdu
->id
, v9stat_dotl
.st_result_mask
,
1640 v9stat_dotl
.st_mode
, v9stat_dotl
.st_uid
,
1641 v9stat_dotl
.st_gid
);
1645 pdu_complete(pdu
, retval
);
1648 /* Attribute flags */
1649 #define P9_ATTR_MODE (1 << 0)
1650 #define P9_ATTR_UID (1 << 1)
1651 #define P9_ATTR_GID (1 << 2)
1652 #define P9_ATTR_SIZE (1 << 3)
1653 #define P9_ATTR_ATIME (1 << 4)
1654 #define P9_ATTR_MTIME (1 << 5)
1655 #define P9_ATTR_CTIME (1 << 6)
1656 #define P9_ATTR_ATIME_SET (1 << 7)
1657 #define P9_ATTR_MTIME_SET (1 << 8)
1659 #define P9_ATTR_MASK 127
1661 static void coroutine_fn
v9fs_setattr(void *opaque
)
1668 V9fsPDU
*pdu
= opaque
;
1670 err
= pdu_unmarshal(pdu
, offset
, "dI", &fid
, &v9iattr
);
1675 trace_v9fs_setattr(pdu
->tag
, pdu
->id
, fid
,
1676 v9iattr
.valid
, v9iattr
.mode
, v9iattr
.uid
, v9iattr
.gid
,
1677 v9iattr
.size
, v9iattr
.atime_sec
, v9iattr
.mtime_sec
);
1679 fidp
= get_fid(pdu
, fid
);
1684 if (v9iattr
.valid
& P9_ATTR_MODE
) {
1685 err
= v9fs_co_chmod(pdu
, &fidp
->path
, v9iattr
.mode
);
1690 if (v9iattr
.valid
& (P9_ATTR_ATIME
| P9_ATTR_MTIME
)) {
1691 struct timespec times
[2];
1692 if (v9iattr
.valid
& P9_ATTR_ATIME
) {
1693 if (v9iattr
.valid
& P9_ATTR_ATIME_SET
) {
1694 times
[0].tv_sec
= v9iattr
.atime_sec
;
1695 times
[0].tv_nsec
= v9iattr
.atime_nsec
;
1697 times
[0].tv_nsec
= UTIME_NOW
;
1700 times
[0].tv_nsec
= UTIME_OMIT
;
1702 if (v9iattr
.valid
& P9_ATTR_MTIME
) {
1703 if (v9iattr
.valid
& P9_ATTR_MTIME_SET
) {
1704 times
[1].tv_sec
= v9iattr
.mtime_sec
;
1705 times
[1].tv_nsec
= v9iattr
.mtime_nsec
;
1707 times
[1].tv_nsec
= UTIME_NOW
;
1710 times
[1].tv_nsec
= UTIME_OMIT
;
1712 err
= v9fs_co_utimensat(pdu
, &fidp
->path
, times
);
1718 * If the only valid entry in iattr is ctime we can call
1719 * chown(-1,-1) to update the ctime of the file
1721 if ((v9iattr
.valid
& (P9_ATTR_UID
| P9_ATTR_GID
)) ||
1722 ((v9iattr
.valid
& P9_ATTR_CTIME
)
1723 && !((v9iattr
.valid
& P9_ATTR_MASK
) & ~P9_ATTR_CTIME
))) {
1724 if (!(v9iattr
.valid
& P9_ATTR_UID
)) {
1727 if (!(v9iattr
.valid
& P9_ATTR_GID
)) {
1730 err
= v9fs_co_chown(pdu
, &fidp
->path
, v9iattr
.uid
,
1736 if (v9iattr
.valid
& (P9_ATTR_SIZE
)) {
1737 err
= v9fs_co_truncate(pdu
, &fidp
->path
, v9iattr
.size
);
1743 trace_v9fs_setattr_return(pdu
->tag
, pdu
->id
);
1747 pdu_complete(pdu
, err
);
1750 static int v9fs_walk_marshal(V9fsPDU
*pdu
, uint16_t nwnames
, V9fsQID
*qids
)
1756 err
= pdu_marshal(pdu
, offset
, "w", nwnames
);
1761 for (i
= 0; i
< nwnames
; i
++) {
1762 err
= pdu_marshal(pdu
, offset
, "Q", &qids
[i
]);
1771 static bool name_is_illegal(const char *name
)
1773 return !*name
|| strchr(name
, '/') != NULL
;
1776 static bool same_stat_id(const struct stat
*a
, const struct stat
*b
)
1778 return a
->st_dev
== b
->st_dev
&& a
->st_ino
== b
->st_ino
;
1781 static void coroutine_fn
v9fs_walk(void *opaque
)
1783 int name_idx
, nwalked
;
1784 g_autofree V9fsQID
*qids
= NULL
;
1785 int i
, err
= 0, any_err
= 0;
1786 V9fsPath dpath
, path
;
1787 P9ARRAY_REF(V9fsPath
) pathes
= NULL
;
1789 struct stat stbuf
, fidst
;
1790 g_autofree
struct stat
*stbufs
= NULL
;
1792 int32_t fid
, newfid
;
1793 P9ARRAY_REF(V9fsString
) wnames
= NULL
;
1795 V9fsFidState
*newfidp
= NULL
;
1796 V9fsPDU
*pdu
= opaque
;
1797 V9fsState
*s
= pdu
->s
;
1800 err
= pdu_unmarshal(pdu
, offset
, "ddw", &fid
, &newfid
, &nwnames
);
1802 pdu_complete(pdu
, err
);
1807 trace_v9fs_walk(pdu
->tag
, pdu
->id
, fid
, newfid
, nwnames
);
1809 if (nwnames
> P9_MAXWELEM
) {
1814 P9ARRAY_NEW(V9fsString
, wnames
, nwnames
);
1815 qids
= g_new0(V9fsQID
, nwnames
);
1816 stbufs
= g_new0(struct stat
, nwnames
);
1817 P9ARRAY_NEW(V9fsPath
, pathes
, nwnames
);
1818 for (i
= 0; i
< nwnames
; i
++) {
1819 err
= pdu_unmarshal(pdu
, offset
, "s", &wnames
[i
]);
1823 if (name_is_illegal(wnames
[i
].data
)) {
1830 fidp
= get_fid(pdu
, fid
);
1836 v9fs_path_init(&dpath
);
1837 v9fs_path_init(&path
);
1839 * Both dpath and path initially point to fidp.
1840 * Needed to handle request with nwnames == 0
1842 v9fs_path_copy(&dpath
, &fidp
->path
);
1843 v9fs_path_copy(&path
, &fidp
->path
);
1846 * To keep latency (i.e. overall execution time for processing this
1847 * Twalk client request) as small as possible, run all the required fs
1848 * driver code altogether inside the following block.
1850 v9fs_co_run_in_worker({
1852 if (v9fs_request_cancelled(pdu
)) {
1853 any_err
|= err
= -EINTR
;
1856 err
= s
->ops
->lstat(&s
->ctx
, &dpath
, &fidst
);
1858 any_err
|= err
= -errno
;
1862 for (; nwalked
< nwnames
; nwalked
++) {
1863 if (v9fs_request_cancelled(pdu
)) {
1864 any_err
|= err
= -EINTR
;
1867 if (!same_stat_id(&pdu
->s
->root_st
, &stbuf
) ||
1868 strcmp("..", wnames
[nwalked
].data
))
1870 err
= s
->ops
->name_to_path(&s
->ctx
, &dpath
,
1871 wnames
[nwalked
].data
,
1874 any_err
|= err
= -errno
;
1877 if (v9fs_request_cancelled(pdu
)) {
1878 any_err
|= err
= -EINTR
;
1881 err
= s
->ops
->lstat(&s
->ctx
, &pathes
[nwalked
], &stbuf
);
1883 any_err
|= err
= -errno
;
1886 stbufs
[nwalked
] = stbuf
;
1887 v9fs_path_copy(&dpath
, &pathes
[nwalked
]);
1892 * Handle all the rest of this Twalk request on main thread ...
1894 * NOTE: -EINTR is an exception where we deviate from the protocol spec
1895 * and simply send a (R)Lerror response instead of bothering to assemble
1896 * a (deducted) Rwalk response; because -EINTR is always the result of a
1897 * Tflush request, so client would no longer wait for a response in this
1900 if ((err
< 0 && !nwalked
) || err
== -EINTR
) {
1904 any_err
|= err
= stat_to_qid(pdu
, &fidst
, &qid
);
1905 if (err
< 0 && !nwalked
) {
1910 /* reset dpath and path */
1911 v9fs_path_copy(&dpath
, &fidp
->path
);
1912 v9fs_path_copy(&path
, &fidp
->path
);
1914 for (name_idx
= 0; name_idx
< nwalked
; name_idx
++) {
1915 if (!same_stat_id(&pdu
->s
->root_st
, &stbuf
) ||
1916 strcmp("..", wnames
[name_idx
].data
))
1918 stbuf
= stbufs
[name_idx
];
1919 any_err
|= err
= stat_to_qid(pdu
, &stbuf
, &qid
);
1923 v9fs_path_copy(&path
, &pathes
[name_idx
]);
1924 v9fs_path_copy(&dpath
, &path
);
1926 memcpy(&qids
[name_idx
], &qid
, sizeof(qid
));
1930 /* don't send any QIDs, send Rlerror instead */
1933 /* send QIDs (not Rlerror), but fid MUST remain unaffected */
1937 if (fid
== newfid
) {
1938 if (fidp
->fid_type
!= P9_FID_NONE
) {
1942 v9fs_path_write_lock(s
);
1943 v9fs_path_copy(&fidp
->path
, &path
);
1944 v9fs_path_unlock(s
);
1946 newfidp
= alloc_fid(s
, newfid
);
1947 if (newfidp
== NULL
) {
1951 newfidp
->uid
= fidp
->uid
;
1952 v9fs_path_copy(&newfidp
->path
, &path
);
1955 err
= v9fs_walk_marshal(pdu
, name_idx
, qids
);
1956 trace_v9fs_walk_return(pdu
->tag
, pdu
->id
, name_idx
, qids
);
1960 put_fid(pdu
, newfidp
);
1962 v9fs_path_free(&dpath
);
1963 v9fs_path_free(&path
);
1965 pdu_complete(pdu
, err
);
1968 static int32_t coroutine_fn
get_iounit(V9fsPDU
*pdu
, V9fsPath
*path
)
1970 struct statfs stbuf
;
1971 int err
= v9fs_co_statfs(pdu
, path
, &stbuf
);
1973 return blksize_to_iounit(pdu
, (err
>= 0) ? stbuf
.f_bsize
: 0);
1976 static void coroutine_fn
v9fs_open(void *opaque
)
1987 V9fsPDU
*pdu
= opaque
;
1988 V9fsState
*s
= pdu
->s
;
1990 if (s
->proto_version
== V9FS_PROTO_2000L
) {
1991 err
= pdu_unmarshal(pdu
, offset
, "dd", &fid
, &mode
);
1994 err
= pdu_unmarshal(pdu
, offset
, "db", &fid
, &modebyte
);
2000 trace_v9fs_open(pdu
->tag
, pdu
->id
, fid
, mode
);
2002 fidp
= get_fid(pdu
, fid
);
2007 if (fidp
->fid_type
!= P9_FID_NONE
) {
2012 err
= v9fs_co_lstat(pdu
, &fidp
->path
, &stbuf
);
2016 err
= stat_to_qid(pdu
, &stbuf
, &qid
);
2020 if (S_ISDIR(stbuf
.st_mode
)) {
2021 err
= v9fs_co_opendir(pdu
, fidp
);
2025 fidp
->fid_type
= P9_FID_DIR
;
2026 err
= pdu_marshal(pdu
, offset
, "Qd", &qid
, 0);
2032 if (s
->proto_version
== V9FS_PROTO_2000L
) {
2033 flags
= get_dotl_openflags(s
, mode
);
2035 flags
= omode_to_uflags(mode
);
2037 if (is_ro_export(&s
->ctx
)) {
2038 if (mode
& O_WRONLY
|| mode
& O_RDWR
||
2039 mode
& O_APPEND
|| mode
& O_TRUNC
) {
2044 err
= v9fs_co_open(pdu
, fidp
, flags
);
2048 fidp
->fid_type
= P9_FID_FILE
;
2049 fidp
->open_flags
= flags
;
2050 if (flags
& O_EXCL
) {
2052 * We let the host file system do O_EXCL check
2053 * We should not reclaim such fd
2055 fidp
->flags
|= FID_NON_RECLAIMABLE
;
2057 iounit
= get_iounit(pdu
, &fidp
->path
);
2058 err
= pdu_marshal(pdu
, offset
, "Qd", &qid
, iounit
);
2064 trace_v9fs_open_return(pdu
->tag
, pdu
->id
,
2065 qid
.type
, qid
.version
, qid
.path
, iounit
);
2069 pdu_complete(pdu
, err
);
2072 static void coroutine_fn
v9fs_lcreate(void *opaque
)
2074 int32_t dfid
, flags
, mode
;
2083 V9fsPDU
*pdu
= opaque
;
2085 v9fs_string_init(&name
);
2086 err
= pdu_unmarshal(pdu
, offset
, "dsddd", &dfid
,
2087 &name
, &flags
, &mode
, &gid
);
2091 trace_v9fs_lcreate(pdu
->tag
, pdu
->id
, dfid
, flags
, mode
, gid
);
2093 if (name_is_illegal(name
.data
)) {
2098 if (!strcmp(".", name
.data
) || !strcmp("..", name
.data
)) {
2103 fidp
= get_fid(pdu
, dfid
);
2108 if (fidp
->fid_type
!= P9_FID_NONE
) {
2113 flags
= get_dotl_openflags(pdu
->s
, flags
);
2114 err
= v9fs_co_open2(pdu
, fidp
, &name
, gid
,
2115 flags
| O_CREAT
, mode
, &stbuf
);
2119 fidp
->fid_type
= P9_FID_FILE
;
2120 fidp
->open_flags
= flags
;
2121 if (flags
& O_EXCL
) {
2123 * We let the host file system do O_EXCL check
2124 * We should not reclaim such fd
2126 fidp
->flags
|= FID_NON_RECLAIMABLE
;
2128 iounit
= get_iounit(pdu
, &fidp
->path
);
2129 err
= stat_to_qid(pdu
, &stbuf
, &qid
);
2133 err
= pdu_marshal(pdu
, offset
, "Qd", &qid
, iounit
);
2138 trace_v9fs_lcreate_return(pdu
->tag
, pdu
->id
,
2139 qid
.type
, qid
.version
, qid
.path
, iounit
);
2143 pdu_complete(pdu
, err
);
2144 v9fs_string_free(&name
);
2147 static void coroutine_fn
v9fs_fsync(void *opaque
)
2154 V9fsPDU
*pdu
= opaque
;
2156 err
= pdu_unmarshal(pdu
, offset
, "dd", &fid
, &datasync
);
2160 trace_v9fs_fsync(pdu
->tag
, pdu
->id
, fid
, datasync
);
2162 fidp
= get_fid(pdu
, fid
);
2167 err
= v9fs_co_fsync(pdu
, fidp
, datasync
);
2173 pdu_complete(pdu
, err
);
2176 static void coroutine_fn
v9fs_clunk(void *opaque
)
2182 V9fsPDU
*pdu
= opaque
;
2183 V9fsState
*s
= pdu
->s
;
2185 err
= pdu_unmarshal(pdu
, offset
, "d", &fid
);
2189 trace_v9fs_clunk(pdu
->tag
, pdu
->id
, fid
);
2191 fidp
= clunk_fid(s
, fid
);
2197 * Bump the ref so that put_fid will
2201 err
= put_fid(pdu
, fidp
);
2206 pdu_complete(pdu
, err
);
2210 * Create a QEMUIOVector for a sub-region of PDU iovecs
2212 * @qiov: uninitialized QEMUIOVector
2213 * @skip: number of bytes to skip from beginning of PDU
2214 * @size: number of bytes to include
2215 * @is_write: true - write, false - read
2217 * The resulting QEMUIOVector has heap-allocated iovecs and must be cleaned up
2218 * with qemu_iovec_destroy().
2220 static void v9fs_init_qiov_from_pdu(QEMUIOVector
*qiov
, V9fsPDU
*pdu
,
2221 size_t skip
, size_t size
,
2229 pdu
->s
->transport
->init_out_iov_from_pdu(pdu
, &iov
, &niov
, size
+ skip
);
2231 pdu
->s
->transport
->init_in_iov_from_pdu(pdu
, &iov
, &niov
, size
+ skip
);
2234 qemu_iovec_init_external(&elem
, iov
, niov
);
2235 qemu_iovec_init(qiov
, niov
);
2236 qemu_iovec_concat(qiov
, &elem
, skip
, size
);
2239 static int v9fs_xattr_read(V9fsState
*s
, V9fsPDU
*pdu
, V9fsFidState
*fidp
,
2240 uint64_t off
, uint32_t max_count
)
2244 uint64_t read_count
;
2245 QEMUIOVector qiov_full
;
2247 if (fidp
->fs
.xattr
.len
< off
) {
2250 read_count
= fidp
->fs
.xattr
.len
- off
;
2252 if (read_count
> max_count
) {
2253 read_count
= max_count
;
2255 err
= pdu_marshal(pdu
, offset
, "d", read_count
);
2261 v9fs_init_qiov_from_pdu(&qiov_full
, pdu
, offset
, read_count
, false);
2262 err
= v9fs_pack(qiov_full
.iov
, qiov_full
.niov
, 0,
2263 ((char *)fidp
->fs
.xattr
.value
) + off
,
2265 qemu_iovec_destroy(&qiov_full
);
2273 static int coroutine_fn
v9fs_do_readdir_with_stat(V9fsPDU
*pdu
,
2282 off_t saved_dir_pos
;
2283 struct dirent
*dent
;
2285 /* save the directory position */
2286 saved_dir_pos
= v9fs_co_telldir(pdu
, fidp
);
2287 if (saved_dir_pos
< 0) {
2288 return saved_dir_pos
;
2292 v9fs_path_init(&path
);
2294 v9fs_readdir_lock(&fidp
->fs
.dir
);
2296 err
= v9fs_co_readdir(pdu
, fidp
, &dent
);
2300 err
= v9fs_co_name_to_path(pdu
, &fidp
->path
, dent
->d_name
, &path
);
2304 err
= v9fs_co_lstat(pdu
, &path
, &stbuf
);
2308 err
= stat_to_v9stat(pdu
, &path
, dent
->d_name
, &stbuf
, &v9stat
);
2312 if ((count
+ v9stat
.size
+ 2) > max_count
) {
2313 v9fs_readdir_unlock(&fidp
->fs
.dir
);
2315 /* Ran out of buffer. Set dir back to old position and return */
2316 v9fs_co_seekdir(pdu
, fidp
, saved_dir_pos
);
2317 v9fs_stat_free(&v9stat
);
2318 v9fs_path_free(&path
);
2322 /* 11 = 7 + 4 (7 = start offset, 4 = space for storing count) */
2323 len
= pdu_marshal(pdu
, 11 + count
, "S", &v9stat
);
2325 v9fs_readdir_unlock(&fidp
->fs
.dir
);
2328 v9fs_co_seekdir(pdu
, fidp
, saved_dir_pos
);
2329 v9fs_stat_free(&v9stat
);
2330 v9fs_path_free(&path
);
2334 v9fs_stat_free(&v9stat
);
2335 v9fs_path_free(&path
);
2336 saved_dir_pos
= qemu_dirent_off(dent
);
2339 v9fs_readdir_unlock(&fidp
->fs
.dir
);
2341 v9fs_path_free(&path
);
2348 static void coroutine_fn
v9fs_read(void *opaque
)
2357 V9fsPDU
*pdu
= opaque
;
2358 V9fsState
*s
= pdu
->s
;
2360 err
= pdu_unmarshal(pdu
, offset
, "dqd", &fid
, &off
, &max_count
);
2364 trace_v9fs_read(pdu
->tag
, pdu
->id
, fid
, off
, max_count
);
2366 fidp
= get_fid(pdu
, fid
);
2371 if (fidp
->fid_type
== P9_FID_DIR
) {
2372 if (s
->proto_version
!= V9FS_PROTO_2000U
) {
2374 "9p: bad client: T_read request on directory only expected "
2375 "with 9P2000.u protocol version"
2381 v9fs_co_rewinddir(pdu
, fidp
);
2383 count
= v9fs_do_readdir_with_stat(pdu
, fidp
, max_count
);
2388 err
= pdu_marshal(pdu
, offset
, "d", count
);
2392 err
+= offset
+ count
;
2393 } else if (fidp
->fid_type
== P9_FID_FILE
) {
2394 QEMUIOVector qiov_full
;
2398 v9fs_init_qiov_from_pdu(&qiov_full
, pdu
, offset
+ 4, max_count
, false);
2399 qemu_iovec_init(&qiov
, qiov_full
.niov
);
2401 qemu_iovec_reset(&qiov
);
2402 qemu_iovec_concat(&qiov
, &qiov_full
, count
, qiov_full
.size
- count
);
2404 print_sg(qiov
.iov
, qiov
.niov
);
2406 /* Loop in case of EINTR */
2408 len
= v9fs_co_preadv(pdu
, fidp
, qiov
.iov
, qiov
.niov
, off
);
2413 } while (len
== -EINTR
&& !pdu
->cancelled
);
2415 /* IO error return the error */
2417 goto out_free_iovec
;
2419 } while (count
< max_count
&& len
> 0);
2420 err
= pdu_marshal(pdu
, offset
, "d", count
);
2422 goto out_free_iovec
;
2424 err
+= offset
+ count
;
2426 qemu_iovec_destroy(&qiov
);
2427 qemu_iovec_destroy(&qiov_full
);
2428 } else if (fidp
->fid_type
== P9_FID_XATTR
) {
2429 err
= v9fs_xattr_read(s
, pdu
, fidp
, off
, max_count
);
2433 trace_v9fs_read_return(pdu
->tag
, pdu
->id
, count
, err
);
2437 pdu_complete(pdu
, err
);
2441 * v9fs_readdir_response_size() - Returns size required in Rreaddir response
2442 * for the passed dirent @name.
2444 * @name: directory entry's name (i.e. file name, directory name)
2445 * Return: required size in bytes
2447 size_t v9fs_readdir_response_size(V9fsString
*name
)
2450 * Size of each dirent on the wire: size of qid (13) + size of offset (8)
2451 * size of type (1) + size of name.size (2) + strlen(name.data)
2453 return 24 + v9fs_string_size(name
);
2456 static void v9fs_free_dirents(struct V9fsDirEnt
*e
)
2458 struct V9fsDirEnt
*next
= NULL
;
2460 for (; e
; e
= next
) {
2468 static int coroutine_fn
v9fs_do_readdir(V9fsPDU
*pdu
, V9fsFidState
*fidp
,
2469 off_t offset
, int32_t max_count
)
2477 struct dirent
*dent
;
2479 struct V9fsDirEnt
*entries
= NULL
;
2482 * inode remapping requires the device id, which in turn might be
2483 * different for different directory entries, so if inode remapping is
2484 * enabled we have to make a full stat for each directory entry
2486 const bool dostat
= pdu
->s
->ctx
.export_flags
& V9FS_REMAP_INODES
;
2489 * Fetch all required directory entries altogether on a background IO
2490 * thread from fs driver. We don't want to do that for each entry
2491 * individually, because hopping between threads (this main IO thread
2492 * and background IO driver thread) would sum up to huge latencies.
2494 count
= v9fs_co_readdir_many(pdu
, fidp
, &entries
, offset
, max_count
,
2503 for (struct V9fsDirEnt
*e
= entries
; e
; e
= e
->next
) {
2506 if (pdu
->s
->ctx
.export_flags
& V9FS_REMAP_INODES
) {
2508 /* e->st should never be NULL, but just to be sure */
2515 err
= stat_to_qid(pdu
, st
, &qid
);
2521 * Fill up just the path field of qid because the client uses
2522 * only that. To fill the entire qid structure we will have
2523 * to stat each dirent found, which is expensive. For the
2524 * latter reason we don't call stat_to_qid() here. Only drawback
2525 * is that no multi-device export detection of stat_to_qid()
2526 * would be done and provided as error to the user here. But
2527 * user would get that error anyway when accessing those
2528 * files/dirs through other ways.
2530 size
= MIN(sizeof(dent
->d_ino
), sizeof(qid
.path
));
2531 memcpy(&qid
.path
, &dent
->d_ino
, size
);
2532 /* Fill the other fields with dummy values */
2537 off
= qemu_dirent_off(dent
);
2538 v9fs_string_init(&name
);
2539 v9fs_string_sprintf(&name
, "%s", dent
->d_name
);
2541 /* 11 = 7 + 4 (7 = start offset, 4 = space for storing count) */
2542 len
= pdu_marshal(pdu
, 11 + count
, "Qqbs",
2544 dent
->d_type
, &name
);
2546 v9fs_string_free(&name
);
2557 v9fs_free_dirents(entries
);
2564 static void coroutine_fn
v9fs_readdir(void *opaque
)
2570 uint64_t initial_offset
;
2573 V9fsPDU
*pdu
= opaque
;
2574 V9fsState
*s
= pdu
->s
;
2576 retval
= pdu_unmarshal(pdu
, offset
, "dqd", &fid
,
2577 &initial_offset
, &max_count
);
2581 trace_v9fs_readdir(pdu
->tag
, pdu
->id
, fid
, initial_offset
, max_count
);
2583 /* Enough space for a R_readdir header: size[4] Rreaddir tag[2] count[4] */
2584 if (max_count
> s
->msize
- 11) {
2585 max_count
= s
->msize
- 11;
2587 "9p: bad client: T_readdir with count > msize - 11"
2591 fidp
= get_fid(pdu
, fid
);
2596 if (!fidp
->fs
.dir
.stream
) {
2600 if (s
->proto_version
!= V9FS_PROTO_2000L
) {
2602 "9p: bad client: T_readdir request only expected with 9P2000.L "
2605 retval
= -EOPNOTSUPP
;
2608 count
= v9fs_do_readdir(pdu
, fidp
, (off_t
) initial_offset
, max_count
);
2613 retval
= pdu_marshal(pdu
, offset
, "d", count
);
2617 retval
+= count
+ offset
;
2618 trace_v9fs_readdir_return(pdu
->tag
, pdu
->id
, count
, retval
);
2622 pdu_complete(pdu
, retval
);
2625 static int v9fs_xattr_write(V9fsState
*s
, V9fsPDU
*pdu
, V9fsFidState
*fidp
,
2626 uint64_t off
, uint32_t count
,
2627 struct iovec
*sg
, int cnt
)
2631 uint64_t write_count
;
2635 if (fidp
->fs
.xattr
.len
< off
) {
2638 write_count
= fidp
->fs
.xattr
.len
- off
;
2639 if (write_count
> count
) {
2640 write_count
= count
;
2642 err
= pdu_marshal(pdu
, offset
, "d", write_count
);
2647 fidp
->fs
.xattr
.copied_len
+= write_count
;
2649 * Now copy the content from sg list
2651 for (i
= 0; i
< cnt
; i
++) {
2652 if (write_count
> sg
[i
].iov_len
) {
2653 to_copy
= sg
[i
].iov_len
;
2655 to_copy
= write_count
;
2657 memcpy((char *)fidp
->fs
.xattr
.value
+ off
, sg
[i
].iov_base
, to_copy
);
2658 /* updating vs->off since we are not using below */
2660 write_count
-= to_copy
;
2666 static void coroutine_fn
v9fs_write(void *opaque
)
2676 V9fsPDU
*pdu
= opaque
;
2677 V9fsState
*s
= pdu
->s
;
2678 QEMUIOVector qiov_full
;
2681 err
= pdu_unmarshal(pdu
, offset
, "dqd", &fid
, &off
, &count
);
2683 pdu_complete(pdu
, err
);
2687 v9fs_init_qiov_from_pdu(&qiov_full
, pdu
, offset
, count
, true);
2688 trace_v9fs_write(pdu
->tag
, pdu
->id
, fid
, off
, count
, qiov_full
.niov
);
2690 fidp
= get_fid(pdu
, fid
);
2695 if (fidp
->fid_type
== P9_FID_FILE
) {
2696 if (fidp
->fs
.fd
== -1) {
2700 } else if (fidp
->fid_type
== P9_FID_XATTR
) {
2702 * setxattr operation
2704 err
= v9fs_xattr_write(s
, pdu
, fidp
, off
, count
,
2705 qiov_full
.iov
, qiov_full
.niov
);
2711 qemu_iovec_init(&qiov
, qiov_full
.niov
);
2713 qemu_iovec_reset(&qiov
);
2714 qemu_iovec_concat(&qiov
, &qiov_full
, total
, qiov_full
.size
- total
);
2716 print_sg(qiov
.iov
, qiov
.niov
);
2718 /* Loop in case of EINTR */
2720 len
= v9fs_co_pwritev(pdu
, fidp
, qiov
.iov
, qiov
.niov
, off
);
2725 } while (len
== -EINTR
&& !pdu
->cancelled
);
2727 /* IO error return the error */
2731 } while (total
< count
&& len
> 0);
2734 err
= pdu_marshal(pdu
, offset
, "d", total
);
2739 trace_v9fs_write_return(pdu
->tag
, pdu
->id
, total
, err
);
2741 qemu_iovec_destroy(&qiov
);
2745 qemu_iovec_destroy(&qiov_full
);
2746 pdu_complete(pdu
, err
);
2749 static void coroutine_fn
v9fs_create(void *opaque
)
2761 V9fsString extension
;
2763 V9fsPDU
*pdu
= opaque
;
2764 V9fsState
*s
= pdu
->s
;
2766 v9fs_path_init(&path
);
2767 v9fs_string_init(&name
);
2768 v9fs_string_init(&extension
);
2769 err
= pdu_unmarshal(pdu
, offset
, "dsdbs", &fid
, &name
,
2770 &perm
, &mode
, &extension
);
2774 trace_v9fs_create(pdu
->tag
, pdu
->id
, fid
, name
.data
, perm
, mode
);
2776 if (name_is_illegal(name
.data
)) {
2781 if (!strcmp(".", name
.data
) || !strcmp("..", name
.data
)) {
2786 fidp
= get_fid(pdu
, fid
);
2791 if (fidp
->fid_type
!= P9_FID_NONE
) {
2795 if (perm
& P9_STAT_MODE_DIR
) {
2796 err
= v9fs_co_mkdir(pdu
, fidp
, &name
, perm
& 0777,
2797 fidp
->uid
, -1, &stbuf
);
2801 err
= v9fs_co_name_to_path(pdu
, &fidp
->path
, name
.data
, &path
);
2805 v9fs_path_write_lock(s
);
2806 v9fs_path_copy(&fidp
->path
, &path
);
2807 v9fs_path_unlock(s
);
2808 err
= v9fs_co_opendir(pdu
, fidp
);
2812 fidp
->fid_type
= P9_FID_DIR
;
2813 } else if (perm
& P9_STAT_MODE_SYMLINK
) {
2814 err
= v9fs_co_symlink(pdu
, fidp
, &name
,
2815 extension
.data
, -1 , &stbuf
);
2819 err
= v9fs_co_name_to_path(pdu
, &fidp
->path
, name
.data
, &path
);
2823 v9fs_path_write_lock(s
);
2824 v9fs_path_copy(&fidp
->path
, &path
);
2825 v9fs_path_unlock(s
);
2826 } else if (perm
& P9_STAT_MODE_LINK
) {
2827 int32_t ofid
= atoi(extension
.data
);
2828 V9fsFidState
*ofidp
= get_fid(pdu
, ofid
);
2829 if (ofidp
== NULL
) {
2833 err
= v9fs_co_link(pdu
, ofidp
, fidp
, &name
);
2834 put_fid(pdu
, ofidp
);
2838 err
= v9fs_co_name_to_path(pdu
, &fidp
->path
, name
.data
, &path
);
2840 fidp
->fid_type
= P9_FID_NONE
;
2843 v9fs_path_write_lock(s
);
2844 v9fs_path_copy(&fidp
->path
, &path
);
2845 v9fs_path_unlock(s
);
2846 err
= v9fs_co_lstat(pdu
, &fidp
->path
, &stbuf
);
2848 fidp
->fid_type
= P9_FID_NONE
;
2851 } else if (perm
& P9_STAT_MODE_DEVICE
) {
2853 uint32_t major
, minor
;
2856 if (sscanf(extension
.data
, "%c %u %u", &ctype
, &major
, &minor
) != 3) {
2873 nmode
|= perm
& 0777;
2874 err
= v9fs_co_mknod(pdu
, fidp
, &name
, fidp
->uid
, -1,
2875 makedev(major
, minor
), nmode
, &stbuf
);
2879 err
= v9fs_co_name_to_path(pdu
, &fidp
->path
, name
.data
, &path
);
2883 v9fs_path_write_lock(s
);
2884 v9fs_path_copy(&fidp
->path
, &path
);
2885 v9fs_path_unlock(s
);
2886 } else if (perm
& P9_STAT_MODE_NAMED_PIPE
) {
2887 err
= v9fs_co_mknod(pdu
, fidp
, &name
, fidp
->uid
, -1,
2888 0, S_IFIFO
| (perm
& 0777), &stbuf
);
2892 err
= v9fs_co_name_to_path(pdu
, &fidp
->path
, name
.data
, &path
);
2896 v9fs_path_write_lock(s
);
2897 v9fs_path_copy(&fidp
->path
, &path
);
2898 v9fs_path_unlock(s
);
2899 } else if (perm
& P9_STAT_MODE_SOCKET
) {
2900 err
= v9fs_co_mknod(pdu
, fidp
, &name
, fidp
->uid
, -1,
2901 0, S_IFSOCK
| (perm
& 0777), &stbuf
);
2905 err
= v9fs_co_name_to_path(pdu
, &fidp
->path
, name
.data
, &path
);
2909 v9fs_path_write_lock(s
);
2910 v9fs_path_copy(&fidp
->path
, &path
);
2911 v9fs_path_unlock(s
);
2913 err
= v9fs_co_open2(pdu
, fidp
, &name
, -1,
2914 omode_to_uflags(mode
) | O_CREAT
, perm
, &stbuf
);
2918 fidp
->fid_type
= P9_FID_FILE
;
2919 fidp
->open_flags
= omode_to_uflags(mode
);
2920 if (fidp
->open_flags
& O_EXCL
) {
2922 * We let the host file system do O_EXCL check
2923 * We should not reclaim such fd
2925 fidp
->flags
|= FID_NON_RECLAIMABLE
;
2928 iounit
= get_iounit(pdu
, &fidp
->path
);
2929 err
= stat_to_qid(pdu
, &stbuf
, &qid
);
2933 err
= pdu_marshal(pdu
, offset
, "Qd", &qid
, iounit
);
2938 trace_v9fs_create_return(pdu
->tag
, pdu
->id
,
2939 qid
.type
, qid
.version
, qid
.path
, iounit
);
2943 pdu_complete(pdu
, err
);
2944 v9fs_string_free(&name
);
2945 v9fs_string_free(&extension
);
2946 v9fs_path_free(&path
);
2949 static void coroutine_fn
v9fs_symlink(void *opaque
)
2951 V9fsPDU
*pdu
= opaque
;
2954 V9fsFidState
*dfidp
;
2962 v9fs_string_init(&name
);
2963 v9fs_string_init(&symname
);
2964 err
= pdu_unmarshal(pdu
, offset
, "dssd", &dfid
, &name
, &symname
, &gid
);
2968 trace_v9fs_symlink(pdu
->tag
, pdu
->id
, dfid
, name
.data
, symname
.data
, gid
);
2970 if (name_is_illegal(name
.data
)) {
2975 if (!strcmp(".", name
.data
) || !strcmp("..", name
.data
)) {
2980 dfidp
= get_fid(pdu
, dfid
);
2981 if (dfidp
== NULL
) {
2985 err
= v9fs_co_symlink(pdu
, dfidp
, &name
, symname
.data
, gid
, &stbuf
);
2989 err
= stat_to_qid(pdu
, &stbuf
, &qid
);
2993 err
= pdu_marshal(pdu
, offset
, "Q", &qid
);
2998 trace_v9fs_symlink_return(pdu
->tag
, pdu
->id
,
2999 qid
.type
, qid
.version
, qid
.path
);
3001 put_fid(pdu
, dfidp
);
3003 pdu_complete(pdu
, err
);
3004 v9fs_string_free(&name
);
3005 v9fs_string_free(&symname
);
3008 static void coroutine_fn
v9fs_flush(void *opaque
)
3013 V9fsPDU
*cancel_pdu
= NULL
;
3014 V9fsPDU
*pdu
= opaque
;
3015 V9fsState
*s
= pdu
->s
;
3017 err
= pdu_unmarshal(pdu
, offset
, "w", &tag
);
3019 pdu_complete(pdu
, err
);
3022 trace_v9fs_flush(pdu
->tag
, pdu
->id
, tag
);
3024 if (pdu
->tag
== tag
) {
3025 warn_report("the guest sent a self-referencing 9P flush request");
3027 QLIST_FOREACH(cancel_pdu
, &s
->active_list
, next
) {
3028 if (cancel_pdu
->tag
== tag
) {
3034 cancel_pdu
->cancelled
= 1;
3036 * Wait for pdu to complete.
3038 qemu_co_queue_wait(&cancel_pdu
->complete
, NULL
);
3039 if (!qemu_co_queue_next(&cancel_pdu
->complete
)) {
3040 cancel_pdu
->cancelled
= 0;
3041 pdu_free(cancel_pdu
);
3044 pdu_complete(pdu
, 7);
3047 static void coroutine_fn
v9fs_link(void *opaque
)
3049 V9fsPDU
*pdu
= opaque
;
3050 int32_t dfid
, oldfid
;
3051 V9fsFidState
*dfidp
, *oldfidp
;
3056 v9fs_string_init(&name
);
3057 err
= pdu_unmarshal(pdu
, offset
, "dds", &dfid
, &oldfid
, &name
);
3061 trace_v9fs_link(pdu
->tag
, pdu
->id
, dfid
, oldfid
, name
.data
);
3063 if (name_is_illegal(name
.data
)) {
3068 if (!strcmp(".", name
.data
) || !strcmp("..", name
.data
)) {
3073 dfidp
= get_fid(pdu
, dfid
);
3074 if (dfidp
== NULL
) {
3079 oldfidp
= get_fid(pdu
, oldfid
);
3080 if (oldfidp
== NULL
) {
3084 err
= v9fs_co_link(pdu
, oldfidp
, dfidp
, &name
);
3088 put_fid(pdu
, oldfidp
);
3090 put_fid(pdu
, dfidp
);
3092 v9fs_string_free(&name
);
3093 pdu_complete(pdu
, err
);
3096 /* Only works with path name based fid */
3097 static void coroutine_fn
v9fs_remove(void *opaque
)
3103 V9fsPDU
*pdu
= opaque
;
3105 err
= pdu_unmarshal(pdu
, offset
, "d", &fid
);
3109 trace_v9fs_remove(pdu
->tag
, pdu
->id
, fid
);
3111 fidp
= get_fid(pdu
, fid
);
3116 /* if fs driver is not path based, return EOPNOTSUPP */
3117 if (!(pdu
->s
->ctx
.export_flags
& V9FS_PATHNAME_FSCONTEXT
)) {
3122 * IF the file is unlinked, we cannot reopen
3123 * the file later. So don't reclaim fd
3125 err
= v9fs_mark_fids_unreclaim(pdu
, &fidp
->path
);
3129 err
= v9fs_co_remove(pdu
, &fidp
->path
);
3134 /* For TREMOVE we need to clunk the fid even on failed remove */
3135 clunk_fid(pdu
->s
, fidp
->fid
);
3138 pdu_complete(pdu
, err
);
3141 static void coroutine_fn
v9fs_unlinkat(void *opaque
)
3145 int32_t dfid
, flags
, rflags
= 0;
3148 V9fsFidState
*dfidp
;
3149 V9fsPDU
*pdu
= opaque
;
3151 v9fs_string_init(&name
);
3152 err
= pdu_unmarshal(pdu
, offset
, "dsd", &dfid
, &name
, &flags
);
3157 if (name_is_illegal(name
.data
)) {
3162 if (!strcmp(".", name
.data
)) {
3167 if (!strcmp("..", name
.data
)) {
3172 if (flags
& ~P9_DOTL_AT_REMOVEDIR
) {
3177 if (flags
& P9_DOTL_AT_REMOVEDIR
) {
3178 rflags
|= AT_REMOVEDIR
;
3181 dfidp
= get_fid(pdu
, dfid
);
3182 if (dfidp
== NULL
) {
3187 * IF the file is unlinked, we cannot reopen
3188 * the file later. So don't reclaim fd
3190 v9fs_path_init(&path
);
3191 err
= v9fs_co_name_to_path(pdu
, &dfidp
->path
, name
.data
, &path
);
3195 err
= v9fs_mark_fids_unreclaim(pdu
, &path
);
3199 err
= v9fs_co_unlinkat(pdu
, &dfidp
->path
, &name
, rflags
);
3204 put_fid(pdu
, dfidp
);
3205 v9fs_path_free(&path
);
3207 pdu_complete(pdu
, err
);
3208 v9fs_string_free(&name
);
3212 /* Only works with path name based fid */
3213 static int coroutine_fn
v9fs_complete_rename(V9fsPDU
*pdu
, V9fsFidState
*fidp
,
3219 V9fsFidState
*tfidp
;
3220 V9fsState
*s
= pdu
->s
;
3221 V9fsFidState
*dirfidp
= NULL
;
3222 GHashTableIter iter
;
3225 v9fs_path_init(&new_path
);
3226 if (newdirfid
!= -1) {
3227 dirfidp
= get_fid(pdu
, newdirfid
);
3228 if (dirfidp
== NULL
) {
3231 if (fidp
->fid_type
!= P9_FID_NONE
) {
3235 err
= v9fs_co_name_to_path(pdu
, &dirfidp
->path
, name
->data
, &new_path
);
3240 char *dir_name
= g_path_get_dirname(fidp
->path
.data
);
3243 v9fs_path_init(&dir_path
);
3244 v9fs_path_sprintf(&dir_path
, "%s", dir_name
);
3247 err
= v9fs_co_name_to_path(pdu
, &dir_path
, name
->data
, &new_path
);
3248 v9fs_path_free(&dir_path
);
3253 err
= v9fs_co_rename(pdu
, &fidp
->path
, &new_path
);
3259 * Fixup fid's pointing to the old name to
3260 * start pointing to the new name
3262 g_hash_table_iter_init(&iter
, s
->fids
);
3263 while (g_hash_table_iter_next(&iter
, &fid
, (gpointer
*) &tfidp
)) {
3264 if (v9fs_path_is_ancestor(&fidp
->path
, &tfidp
->path
)) {
3265 /* replace the name */
3266 v9fs_fix_path(&tfidp
->path
, &new_path
, strlen(fidp
->path
.data
));
3271 put_fid(pdu
, dirfidp
);
3273 v9fs_path_free(&new_path
);
3277 /* Only works with path name based fid */
3278 static void coroutine_fn
v9fs_rename(void *opaque
)
3286 V9fsPDU
*pdu
= opaque
;
3287 V9fsState
*s
= pdu
->s
;
3289 v9fs_string_init(&name
);
3290 err
= pdu_unmarshal(pdu
, offset
, "dds", &fid
, &newdirfid
, &name
);
3295 if (name_is_illegal(name
.data
)) {
3300 if (!strcmp(".", name
.data
) || !strcmp("..", name
.data
)) {
3305 fidp
= get_fid(pdu
, fid
);
3310 if (fidp
->fid_type
!= P9_FID_NONE
) {
3314 /* if fs driver is not path based, return EOPNOTSUPP */
3315 if (!(pdu
->s
->ctx
.export_flags
& V9FS_PATHNAME_FSCONTEXT
)) {
3319 v9fs_path_write_lock(s
);
3320 err
= v9fs_complete_rename(pdu
, fidp
, newdirfid
, &name
);
3321 v9fs_path_unlock(s
);
3328 pdu_complete(pdu
, err
);
3329 v9fs_string_free(&name
);
3332 static int coroutine_fn
v9fs_fix_fid_paths(V9fsPDU
*pdu
, V9fsPath
*olddir
,
3333 V9fsString
*old_name
,
3335 V9fsString
*new_name
)
3337 V9fsFidState
*tfidp
;
3338 V9fsPath oldpath
, newpath
;
3339 V9fsState
*s
= pdu
->s
;
3341 GHashTableIter iter
;
3344 v9fs_path_init(&oldpath
);
3345 v9fs_path_init(&newpath
);
3346 err
= v9fs_co_name_to_path(pdu
, olddir
, old_name
->data
, &oldpath
);
3350 err
= v9fs_co_name_to_path(pdu
, newdir
, new_name
->data
, &newpath
);
3356 * Fixup fid's pointing to the old name to
3357 * start pointing to the new name
3359 g_hash_table_iter_init(&iter
, s
->fids
);
3360 while (g_hash_table_iter_next(&iter
, &fid
, (gpointer
*) &tfidp
)) {
3361 if (v9fs_path_is_ancestor(&oldpath
, &tfidp
->path
)) {
3362 /* replace the name */
3363 v9fs_fix_path(&tfidp
->path
, &newpath
, strlen(oldpath
.data
));
3367 v9fs_path_free(&oldpath
);
3368 v9fs_path_free(&newpath
);
3372 static int coroutine_fn
v9fs_complete_renameat(V9fsPDU
*pdu
, int32_t olddirfid
,
3373 V9fsString
*old_name
,
3375 V9fsString
*new_name
)
3378 V9fsState
*s
= pdu
->s
;
3379 V9fsFidState
*newdirfidp
= NULL
, *olddirfidp
= NULL
;
3381 olddirfidp
= get_fid(pdu
, olddirfid
);
3382 if (olddirfidp
== NULL
) {
3386 if (newdirfid
!= -1) {
3387 newdirfidp
= get_fid(pdu
, newdirfid
);
3388 if (newdirfidp
== NULL
) {
3393 newdirfidp
= get_fid(pdu
, olddirfid
);
3396 err
= v9fs_co_renameat(pdu
, &olddirfidp
->path
, old_name
,
3397 &newdirfidp
->path
, new_name
);
3401 if (s
->ctx
.export_flags
& V9FS_PATHNAME_FSCONTEXT
) {
3402 /* Only for path based fid we need to do the below fixup */
3403 err
= v9fs_fix_fid_paths(pdu
, &olddirfidp
->path
, old_name
,
3404 &newdirfidp
->path
, new_name
);
3408 put_fid(pdu
, olddirfidp
);
3411 put_fid(pdu
, newdirfidp
);
3416 static void coroutine_fn
v9fs_renameat(void *opaque
)
3420 V9fsPDU
*pdu
= opaque
;
3421 V9fsState
*s
= pdu
->s
;
3422 int32_t olddirfid
, newdirfid
;
3423 V9fsString old_name
, new_name
;
3425 v9fs_string_init(&old_name
);
3426 v9fs_string_init(&new_name
);
3427 err
= pdu_unmarshal(pdu
, offset
, "dsds", &olddirfid
,
3428 &old_name
, &newdirfid
, &new_name
);
3433 if (name_is_illegal(old_name
.data
) || name_is_illegal(new_name
.data
)) {
3438 if (!strcmp(".", old_name
.data
) || !strcmp("..", old_name
.data
) ||
3439 !strcmp(".", new_name
.data
) || !strcmp("..", new_name
.data
)) {
3444 v9fs_path_write_lock(s
);
3445 err
= v9fs_complete_renameat(pdu
, olddirfid
,
3446 &old_name
, newdirfid
, &new_name
);
3447 v9fs_path_unlock(s
);
3453 pdu_complete(pdu
, err
);
3454 v9fs_string_free(&old_name
);
3455 v9fs_string_free(&new_name
);
3458 static void coroutine_fn
v9fs_wstat(void *opaque
)
3467 V9fsPDU
*pdu
= opaque
;
3468 V9fsState
*s
= pdu
->s
;
3470 v9fs_stat_init(&v9stat
);
3471 err
= pdu_unmarshal(pdu
, offset
, "dwS", &fid
, &unused
, &v9stat
);
3475 trace_v9fs_wstat(pdu
->tag
, pdu
->id
, fid
,
3476 v9stat
.mode
, v9stat
.atime
, v9stat
.mtime
);
3478 fidp
= get_fid(pdu
, fid
);
3483 /* do we need to sync the file? */
3484 if (donttouch_stat(&v9stat
)) {
3485 err
= v9fs_co_fsync(pdu
, fidp
, 0);
3488 if (v9stat
.mode
!= -1) {
3490 err
= v9fs_co_lstat(pdu
, &fidp
->path
, &stbuf
);
3494 v9_mode
= stat_to_v9mode(&stbuf
);
3495 if ((v9stat
.mode
& P9_STAT_MODE_TYPE_BITS
) !=
3496 (v9_mode
& P9_STAT_MODE_TYPE_BITS
)) {
3497 /* Attempting to change the type */
3501 err
= v9fs_co_chmod(pdu
, &fidp
->path
,
3502 v9mode_to_mode(v9stat
.mode
,
3503 &v9stat
.extension
));
3508 if (v9stat
.mtime
!= -1 || v9stat
.atime
!= -1) {
3509 struct timespec times
[2];
3510 if (v9stat
.atime
!= -1) {
3511 times
[0].tv_sec
= v9stat
.atime
;
3512 times
[0].tv_nsec
= 0;
3514 times
[0].tv_nsec
= UTIME_OMIT
;
3516 if (v9stat
.mtime
!= -1) {
3517 times
[1].tv_sec
= v9stat
.mtime
;
3518 times
[1].tv_nsec
= 0;
3520 times
[1].tv_nsec
= UTIME_OMIT
;
3522 err
= v9fs_co_utimensat(pdu
, &fidp
->path
, times
);
3527 if (v9stat
.n_gid
!= -1 || v9stat
.n_uid
!= -1) {
3528 err
= v9fs_co_chown(pdu
, &fidp
->path
, v9stat
.n_uid
, v9stat
.n_gid
);
3533 if (v9stat
.name
.size
!= 0) {
3534 v9fs_path_write_lock(s
);
3535 err
= v9fs_complete_rename(pdu
, fidp
, -1, &v9stat
.name
);
3536 v9fs_path_unlock(s
);
3541 if (v9stat
.length
!= -1) {
3542 err
= v9fs_co_truncate(pdu
, &fidp
->path
, v9stat
.length
);
3551 v9fs_stat_free(&v9stat
);
3552 pdu_complete(pdu
, err
);
3555 static int v9fs_fill_statfs(V9fsState
*s
, V9fsPDU
*pdu
, struct statfs
*stbuf
)
3567 int32_t bsize_factor
;
3570 * compute bsize factor based on host file system block size
3573 bsize_factor
= (s
->msize
- P9_IOHDRSZ
) / stbuf
->f_bsize
;
3574 if (!bsize_factor
) {
3577 f_type
= stbuf
->f_type
;
3578 f_bsize
= stbuf
->f_bsize
;
3579 f_bsize
*= bsize_factor
;
3581 * f_bsize is adjusted(multiplied) by bsize factor, so we need to
3582 * adjust(divide) the number of blocks, free blocks and available
3583 * blocks by bsize factor
3585 f_blocks
= stbuf
->f_blocks
/ bsize_factor
;
3586 f_bfree
= stbuf
->f_bfree
/ bsize_factor
;
3587 f_bavail
= stbuf
->f_bavail
/ bsize_factor
;
3588 f_files
= stbuf
->f_files
;
3589 f_ffree
= stbuf
->f_ffree
;
3590 #ifdef CONFIG_DARWIN
3591 fsid_val
= (unsigned int)stbuf
->f_fsid
.val
[0] |
3592 (unsigned long long)stbuf
->f_fsid
.val
[1] << 32;
3593 f_namelen
= NAME_MAX
;
3595 fsid_val
= (unsigned int) stbuf
->f_fsid
.__val
[0] |
3596 (unsigned long long)stbuf
->f_fsid
.__val
[1] << 32;
3597 f_namelen
= stbuf
->f_namelen
;
3600 return pdu_marshal(pdu
, offset
, "ddqqqqqqd",
3601 f_type
, f_bsize
, f_blocks
, f_bfree
,
3602 f_bavail
, f_files
, f_ffree
,
3603 fsid_val
, f_namelen
);
3606 static void coroutine_fn
v9fs_statfs(void *opaque
)
3612 struct statfs stbuf
;
3613 V9fsPDU
*pdu
= opaque
;
3614 V9fsState
*s
= pdu
->s
;
3616 retval
= pdu_unmarshal(pdu
, offset
, "d", &fid
);
3620 fidp
= get_fid(pdu
, fid
);
3625 retval
= v9fs_co_statfs(pdu
, &fidp
->path
, &stbuf
);
3629 retval
= v9fs_fill_statfs(s
, pdu
, &stbuf
);
3637 pdu_complete(pdu
, retval
);
3640 static void coroutine_fn
v9fs_mknod(void *opaque
)
3653 V9fsPDU
*pdu
= opaque
;
3655 v9fs_string_init(&name
);
3656 err
= pdu_unmarshal(pdu
, offset
, "dsdddd", &fid
, &name
, &mode
,
3657 &major
, &minor
, &gid
);
3661 trace_v9fs_mknod(pdu
->tag
, pdu
->id
, fid
, mode
, major
, minor
);
3663 if (name_is_illegal(name
.data
)) {
3668 if (!strcmp(".", name
.data
) || !strcmp("..", name
.data
)) {
3673 fidp
= get_fid(pdu
, fid
);
3678 err
= v9fs_co_mknod(pdu
, fidp
, &name
, fidp
->uid
, gid
,
3679 makedev(major
, minor
), mode
, &stbuf
);
3683 err
= stat_to_qid(pdu
, &stbuf
, &qid
);
3687 err
= pdu_marshal(pdu
, offset
, "Q", &qid
);
3692 trace_v9fs_mknod_return(pdu
->tag
, pdu
->id
,
3693 qid
.type
, qid
.version
, qid
.path
);
3697 pdu_complete(pdu
, err
);
3698 v9fs_string_free(&name
);
3702 * Implement posix byte range locking code
3703 * Server side handling of locking code is very simple, because 9p server in
3704 * QEMU can handle only one client. And most of the lock handling
3705 * (like conflict, merging) etc is done by the VFS layer itself, so no need to
3706 * do any thing in * qemu 9p server side lock code path.
3707 * So when a TLOCK request comes, always return success
3709 static void coroutine_fn
v9fs_lock(void *opaque
)
3715 int32_t fid
, err
= 0;
3716 V9fsPDU
*pdu
= opaque
;
3718 v9fs_string_init(&flock
.client_id
);
3719 err
= pdu_unmarshal(pdu
, offset
, "dbdqqds", &fid
, &flock
.type
,
3720 &flock
.flags
, &flock
.start
, &flock
.length
,
3721 &flock
.proc_id
, &flock
.client_id
);
3725 trace_v9fs_lock(pdu
->tag
, pdu
->id
, fid
,
3726 flock
.type
, flock
.start
, flock
.length
);
3729 /* We support only block flag now (that too ignored currently) */
3730 if (flock
.flags
& ~P9_LOCK_FLAGS_BLOCK
) {
3734 fidp
= get_fid(pdu
, fid
);
3739 err
= v9fs_co_fstat(pdu
, fidp
, &stbuf
);
3743 err
= pdu_marshal(pdu
, offset
, "b", P9_LOCK_SUCCESS
);
3748 trace_v9fs_lock_return(pdu
->tag
, pdu
->id
, P9_LOCK_SUCCESS
);
3752 pdu_complete(pdu
, err
);
3753 v9fs_string_free(&flock
.client_id
);
3757 * When a TGETLOCK request comes, always return success because all lock
3758 * handling is done by client's VFS layer.
3760 static void coroutine_fn
v9fs_getlock(void *opaque
)
3766 int32_t fid
, err
= 0;
3767 V9fsPDU
*pdu
= opaque
;
3769 v9fs_string_init(&glock
.client_id
);
3770 err
= pdu_unmarshal(pdu
, offset
, "dbqqds", &fid
, &glock
.type
,
3771 &glock
.start
, &glock
.length
, &glock
.proc_id
,
3776 trace_v9fs_getlock(pdu
->tag
, pdu
->id
, fid
,
3777 glock
.type
, glock
.start
, glock
.length
);
3779 fidp
= get_fid(pdu
, fid
);
3784 err
= v9fs_co_fstat(pdu
, fidp
, &stbuf
);
3788 glock
.type
= P9_LOCK_TYPE_UNLCK
;
3789 err
= pdu_marshal(pdu
, offset
, "bqqds", glock
.type
,
3790 glock
.start
, glock
.length
, glock
.proc_id
,
3796 trace_v9fs_getlock_return(pdu
->tag
, pdu
->id
, glock
.type
, glock
.start
,
3797 glock
.length
, glock
.proc_id
);
3801 pdu_complete(pdu
, err
);
3802 v9fs_string_free(&glock
.client_id
);
3805 static void coroutine_fn
v9fs_mkdir(void *opaque
)
3807 V9fsPDU
*pdu
= opaque
;
3818 v9fs_string_init(&name
);
3819 err
= pdu_unmarshal(pdu
, offset
, "dsdd", &fid
, &name
, &mode
, &gid
);
3823 trace_v9fs_mkdir(pdu
->tag
, pdu
->id
, fid
, name
.data
, mode
, gid
);
3825 if (name_is_illegal(name
.data
)) {
3830 if (!strcmp(".", name
.data
) || !strcmp("..", name
.data
)) {
3835 fidp
= get_fid(pdu
, fid
);
3840 err
= v9fs_co_mkdir(pdu
, fidp
, &name
, mode
, fidp
->uid
, gid
, &stbuf
);
3844 err
= stat_to_qid(pdu
, &stbuf
, &qid
);
3848 err
= pdu_marshal(pdu
, offset
, "Q", &qid
);
3853 trace_v9fs_mkdir_return(pdu
->tag
, pdu
->id
,
3854 qid
.type
, qid
.version
, qid
.path
, err
);
3858 pdu_complete(pdu
, err
);
3859 v9fs_string_free(&name
);
3862 static void coroutine_fn
v9fs_xattrwalk(void *opaque
)
3868 int32_t fid
, newfid
;
3869 V9fsFidState
*file_fidp
;
3870 V9fsFidState
*xattr_fidp
= NULL
;
3871 V9fsPDU
*pdu
= opaque
;
3872 V9fsState
*s
= pdu
->s
;
3874 v9fs_string_init(&name
);
3875 err
= pdu_unmarshal(pdu
, offset
, "dds", &fid
, &newfid
, &name
);
3879 trace_v9fs_xattrwalk(pdu
->tag
, pdu
->id
, fid
, newfid
, name
.data
);
3881 file_fidp
= get_fid(pdu
, fid
);
3882 if (file_fidp
== NULL
) {
3886 xattr_fidp
= alloc_fid(s
, newfid
);
3887 if (xattr_fidp
== NULL
) {
3891 v9fs_path_copy(&xattr_fidp
->path
, &file_fidp
->path
);
3892 if (!v9fs_string_size(&name
)) {
3894 * listxattr request. Get the size first
3896 size
= v9fs_co_llistxattr(pdu
, &xattr_fidp
->path
, NULL
, 0);
3899 clunk_fid(s
, xattr_fidp
->fid
);
3903 * Read the xattr value
3905 xattr_fidp
->fs
.xattr
.len
= size
;
3906 xattr_fidp
->fid_type
= P9_FID_XATTR
;
3907 xattr_fidp
->fs
.xattr
.xattrwalk_fid
= true;
3908 xattr_fidp
->fs
.xattr
.value
= g_malloc0(size
);
3910 err
= v9fs_co_llistxattr(pdu
, &xattr_fidp
->path
,
3911 xattr_fidp
->fs
.xattr
.value
,
3912 xattr_fidp
->fs
.xattr
.len
);
3914 clunk_fid(s
, xattr_fidp
->fid
);
3918 err
= pdu_marshal(pdu
, offset
, "q", size
);
3925 * specific xattr fid. We check for xattr
3926 * presence also collect the xattr size
3928 size
= v9fs_co_lgetxattr(pdu
, &xattr_fidp
->path
,
3932 clunk_fid(s
, xattr_fidp
->fid
);
3936 * Read the xattr value
3938 xattr_fidp
->fs
.xattr
.len
= size
;
3939 xattr_fidp
->fid_type
= P9_FID_XATTR
;
3940 xattr_fidp
->fs
.xattr
.xattrwalk_fid
= true;
3941 xattr_fidp
->fs
.xattr
.value
= g_malloc0(size
);
3943 err
= v9fs_co_lgetxattr(pdu
, &xattr_fidp
->path
,
3944 &name
, xattr_fidp
->fs
.xattr
.value
,
3945 xattr_fidp
->fs
.xattr
.len
);
3947 clunk_fid(s
, xattr_fidp
->fid
);
3951 err
= pdu_marshal(pdu
, offset
, "q", size
);
3957 trace_v9fs_xattrwalk_return(pdu
->tag
, pdu
->id
, size
);
3959 put_fid(pdu
, file_fidp
);
3961 put_fid(pdu
, xattr_fidp
);
3964 pdu_complete(pdu
, err
);
3965 v9fs_string_free(&name
);
3968 #if defined(CONFIG_LINUX)
3969 /* Currently, only Linux has XATTR_SIZE_MAX */
3970 #define P9_XATTR_SIZE_MAX XATTR_SIZE_MAX
3971 #elif defined(CONFIG_DARWIN)
3973 * Darwin doesn't seem to define a maximum xattr size in its user
3974 * space header, so manually configure it across platforms as 64k.
3976 * Having no limit at all can lead to QEMU crashing during large g_malloc()
3977 * calls. Because QEMU does not currently support macOS guests, the below
3978 * preliminary solution only works due to its being a reflection of the limit of
3981 #define P9_XATTR_SIZE_MAX 65536
3983 #error Missing definition for P9_XATTR_SIZE_MAX for this host system
3986 static void coroutine_fn
v9fs_xattrcreate(void *opaque
)
3988 int flags
, rflags
= 0;
3994 V9fsFidState
*file_fidp
;
3995 V9fsFidState
*xattr_fidp
;
3996 V9fsPDU
*pdu
= opaque
;
3998 v9fs_string_init(&name
);
3999 err
= pdu_unmarshal(pdu
, offset
, "dsqd", &fid
, &name
, &size
, &flags
);
4003 trace_v9fs_xattrcreate(pdu
->tag
, pdu
->id
, fid
, name
.data
, size
, flags
);
4005 if (flags
& ~(P9_XATTR_CREATE
| P9_XATTR_REPLACE
)) {
4010 if (flags
& P9_XATTR_CREATE
) {
4011 rflags
|= XATTR_CREATE
;
4014 if (flags
& P9_XATTR_REPLACE
) {
4015 rflags
|= XATTR_REPLACE
;
4018 if (size
> P9_XATTR_SIZE_MAX
) {
4023 file_fidp
= get_fid(pdu
, fid
);
4024 if (file_fidp
== NULL
) {
4028 if (file_fidp
->fid_type
!= P9_FID_NONE
) {
4033 /* Make the file fid point to xattr */
4034 xattr_fidp
= file_fidp
;
4035 xattr_fidp
->fid_type
= P9_FID_XATTR
;
4036 xattr_fidp
->fs
.xattr
.copied_len
= 0;
4037 xattr_fidp
->fs
.xattr
.xattrwalk_fid
= false;
4038 xattr_fidp
->fs
.xattr
.len
= size
;
4039 xattr_fidp
->fs
.xattr
.flags
= rflags
;
4040 v9fs_string_init(&xattr_fidp
->fs
.xattr
.name
);
4041 v9fs_string_copy(&xattr_fidp
->fs
.xattr
.name
, &name
);
4042 xattr_fidp
->fs
.xattr
.value
= g_malloc0(size
);
4045 put_fid(pdu
, file_fidp
);
4047 pdu_complete(pdu
, err
);
4048 v9fs_string_free(&name
);
4051 static void coroutine_fn
v9fs_readlink(void *opaque
)
4053 V9fsPDU
*pdu
= opaque
;
4060 err
= pdu_unmarshal(pdu
, offset
, "d", &fid
);
4064 trace_v9fs_readlink(pdu
->tag
, pdu
->id
, fid
);
4065 fidp
= get_fid(pdu
, fid
);
4071 v9fs_string_init(&target
);
4072 err
= v9fs_co_readlink(pdu
, &fidp
->path
, &target
);
4076 err
= pdu_marshal(pdu
, offset
, "s", &target
);
4078 v9fs_string_free(&target
);
4082 trace_v9fs_readlink_return(pdu
->tag
, pdu
->id
, target
.data
);
4083 v9fs_string_free(&target
);
4087 pdu_complete(pdu
, err
);
4090 static CoroutineEntry
*pdu_co_handlers
[] = {
4091 [P9_TREADDIR
] = v9fs_readdir
,
4092 [P9_TSTATFS
] = v9fs_statfs
,
4093 [P9_TGETATTR
] = v9fs_getattr
,
4094 [P9_TSETATTR
] = v9fs_setattr
,
4095 [P9_TXATTRWALK
] = v9fs_xattrwalk
,
4096 [P9_TXATTRCREATE
] = v9fs_xattrcreate
,
4097 [P9_TMKNOD
] = v9fs_mknod
,
4098 [P9_TRENAME
] = v9fs_rename
,
4099 [P9_TLOCK
] = v9fs_lock
,
4100 [P9_TGETLOCK
] = v9fs_getlock
,
4101 [P9_TRENAMEAT
] = v9fs_renameat
,
4102 [P9_TREADLINK
] = v9fs_readlink
,
4103 [P9_TUNLINKAT
] = v9fs_unlinkat
,
4104 [P9_TMKDIR
] = v9fs_mkdir
,
4105 [P9_TVERSION
] = v9fs_version
,
4106 [P9_TLOPEN
] = v9fs_open
,
4107 [P9_TATTACH
] = v9fs_attach
,
4108 [P9_TSTAT
] = v9fs_stat
,
4109 [P9_TWALK
] = v9fs_walk
,
4110 [P9_TCLUNK
] = v9fs_clunk
,
4111 [P9_TFSYNC
] = v9fs_fsync
,
4112 [P9_TOPEN
] = v9fs_open
,
4113 [P9_TREAD
] = v9fs_read
,
4115 [P9_TAUTH
] = v9fs_auth
,
4117 [P9_TFLUSH
] = v9fs_flush
,
4118 [P9_TLINK
] = v9fs_link
,
4119 [P9_TSYMLINK
] = v9fs_symlink
,
4120 [P9_TCREATE
] = v9fs_create
,
4121 [P9_TLCREATE
] = v9fs_lcreate
,
4122 [P9_TWRITE
] = v9fs_write
,
4123 [P9_TWSTAT
] = v9fs_wstat
,
4124 [P9_TREMOVE
] = v9fs_remove
,
4127 static void coroutine_fn
v9fs_op_not_supp(void *opaque
)
4129 V9fsPDU
*pdu
= opaque
;
4130 pdu_complete(pdu
, -EOPNOTSUPP
);
4133 static void coroutine_fn
v9fs_fs_ro(void *opaque
)
4135 V9fsPDU
*pdu
= opaque
;
4136 pdu_complete(pdu
, -EROFS
);
4139 static inline bool is_read_only_op(V9fsPDU
*pdu
)
4166 void pdu_submit(V9fsPDU
*pdu
, P9MsgHeader
*hdr
)
4169 CoroutineEntry
*handler
;
4170 V9fsState
*s
= pdu
->s
;
4172 pdu
->size
= le32_to_cpu(hdr
->size_le
);
4174 pdu
->tag
= le16_to_cpu(hdr
->tag_le
);
4176 if (pdu
->id
>= ARRAY_SIZE(pdu_co_handlers
) ||
4177 (pdu_co_handlers
[pdu
->id
] == NULL
)) {
4178 handler
= v9fs_op_not_supp
;
4179 } else if (is_ro_export(&s
->ctx
) && !is_read_only_op(pdu
)) {
4180 handler
= v9fs_fs_ro
;
4182 handler
= pdu_co_handlers
[pdu
->id
];
4185 qemu_co_queue_init(&pdu
->complete
);
4186 co
= qemu_coroutine_create(handler
, pdu
);
4187 qemu_coroutine_enter(co
);
4190 /* Returns 0 on success, 1 on failure. */
4191 int v9fs_device_realize_common(V9fsState
*s
, const V9fsTransport
*t
,
4201 assert(!s
->transport
);
4204 /* initialize pdu allocator */
4205 QLIST_INIT(&s
->free_list
);
4206 QLIST_INIT(&s
->active_list
);
4207 for (i
= 0; i
< MAX_REQ
; i
++) {
4208 QLIST_INSERT_HEAD(&s
->free_list
, &s
->pdus
[i
], next
);
4213 v9fs_path_init(&path
);
4215 fse
= get_fsdev_fsentry(s
->fsconf
.fsdev_id
);
4218 /* We don't have a fsdev identified by fsdev_id */
4219 error_setg(errp
, "9pfs device couldn't find fsdev with the "
4221 s
->fsconf
.fsdev_id
? s
->fsconf
.fsdev_id
: "NULL");
4225 if (!s
->fsconf
.tag
) {
4226 /* we haven't specified a mount_tag */
4227 error_setg(errp
, "fsdev with id %s needs mount_tag arguments",
4228 s
->fsconf
.fsdev_id
);
4232 s
->ctx
.export_flags
= fse
->export_flags
;
4233 s
->ctx
.fs_root
= g_strdup(fse
->path
);
4234 s
->ctx
.exops
.get_st_gen
= NULL
;
4235 len
= strlen(s
->fsconf
.tag
);
4236 if (len
> MAX_TAG_LEN
- 1) {
4237 error_setg(errp
, "mount tag '%s' (%d bytes) is longer than "
4238 "maximum (%d bytes)", s
->fsconf
.tag
, len
, MAX_TAG_LEN
- 1);
4242 s
->tag
= g_strdup(s
->fsconf
.tag
);
4247 s
->ctx
.fmode
= fse
->fmode
;
4248 s
->ctx
.dmode
= fse
->dmode
;
4250 s
->fids
= g_hash_table_new(NULL
, NULL
);
4251 qemu_co_rwlock_init(&s
->rename_lock
);
4253 if (s
->ops
->init(&s
->ctx
, errp
) < 0) {
4254 error_prepend(errp
, "cannot initialize fsdev '%s': ",
4255 s
->fsconf
.fsdev_id
);
4260 * Check details of export path, We need to use fs driver
4261 * call back to do that. Since we are in the init path, we don't
4262 * use co-routines here.
4264 if (s
->ops
->name_to_path(&s
->ctx
, NULL
, "/", &path
) < 0) {
4266 "error in converting name to path %s", strerror(errno
));
4269 if (s
->ops
->lstat(&s
->ctx
, &path
, &stat
)) {
4270 error_setg(errp
, "share path %s does not exist", fse
->path
);
4272 } else if (!S_ISDIR(stat
.st_mode
)) {
4273 error_setg(errp
, "share path %s is not a directory", fse
->path
);
4277 s
->dev_id
= stat
.st_dev
;
4279 /* init inode remapping : */
4280 /* hash table for variable length inode suffixes */
4281 qpd_table_init(&s
->qpd_table
);
4282 /* hash table for slow/full inode remapping (most users won't need it) */
4283 qpf_table_init(&s
->qpf_table
);
4284 /* hash table for quick inode remapping */
4285 qpp_table_init(&s
->qpp_table
);
4287 s
->qp_affix_next
= 1; /* reserve 0 to detect overflow */
4288 s
->qp_fullpath_next
= 1;
4290 s
->ctx
.fst
= &fse
->fst
;
4291 fsdev_throttle_init(s
->ctx
.fst
);
4296 v9fs_device_unrealize_common(s
);
4298 v9fs_path_free(&path
);
4302 void v9fs_device_unrealize_common(V9fsState
*s
)
4304 if (s
->ops
&& s
->ops
->cleanup
) {
4305 s
->ops
->cleanup(&s
->ctx
);
4308 fsdev_throttle_cleanup(s
->ctx
.fst
);
4311 g_hash_table_destroy(s
->fids
);
4315 qp_table_destroy(&s
->qpd_table
);
4316 qp_table_destroy(&s
->qpp_table
);
4317 qp_table_destroy(&s
->qpf_table
);
4318 g_free(s
->ctx
.fs_root
);
4321 typedef struct VirtfsCoResetData
{
4324 } VirtfsCoResetData
;
4326 static void coroutine_fn
virtfs_co_reset(void *opaque
)
4328 VirtfsCoResetData
*data
= opaque
;
4330 virtfs_reset(&data
->pdu
);
4334 void v9fs_reset(V9fsState
*s
)
4336 VirtfsCoResetData data
= { .pdu
= { .s
= s
}, .done
= false };
4339 while (!QLIST_EMPTY(&s
->active_list
)) {
4340 aio_poll(qemu_get_aio_context(), true);
4343 co
= qemu_coroutine_create(virtfs_co_reset
, &data
);
4344 qemu_coroutine_enter(co
);
4346 while (!data
.done
) {
4347 aio_poll(qemu_get_aio_context(), true);
4351 static void __attribute__((__constructor__
)) v9fs_set_fd_limit(void)
4354 if (getrlimit(RLIMIT_NOFILE
, &rlim
) < 0) {
4355 error_report("Failed to get the resource limit");
4358 open_fd_hw
= rlim
.rlim_cur
- MIN(400, rlim
.rlim_cur
/ 3);
4359 open_fd_rc
= rlim
.rlim_cur
/ 2;