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.
14 #include "qemu/osdep.h"
15 #include <glib/gprintf.h>
16 #include "hw/virtio/virtio.h"
17 #include "qapi/error.h"
18 #include "qemu/error-report.h"
20 #include "qemu/main-loop.h"
21 #include "qemu/sockets.h"
22 #include "virtio-9p.h"
23 #include "fsdev/qemu-fsdev.h"
27 #include "migration/blocker.h"
28 #include "sysemu/qtest.h"
29 #include "qemu/xxhash.h"
34 static int open_fd_rc
;
48 static ssize_t
pdu_marshal(V9fsPDU
*pdu
, size_t offset
, const char *fmt
, ...)
54 ret
= pdu
->s
->transport
->pdu_vmarshal(pdu
, offset
, fmt
, ap
);
60 static ssize_t
pdu_unmarshal(V9fsPDU
*pdu
, size_t offset
, const char *fmt
, ...)
66 ret
= pdu
->s
->transport
->pdu_vunmarshal(pdu
, offset
, fmt
, ap
);
72 static int omode_to_uflags(int8_t mode
)
106 typedef struct DotlOpenflagMap
{
111 static int dotl_to_open_flags(int flags
)
115 * We have same bits for P9_DOTL_READONLY, P9_DOTL_WRONLY
116 * and P9_DOTL_NOACCESS
118 int oflags
= flags
& O_ACCMODE
;
120 DotlOpenflagMap dotl_oflag_map
[] = {
121 { P9_DOTL_CREATE
, O_CREAT
},
122 { P9_DOTL_EXCL
, O_EXCL
},
123 { P9_DOTL_NOCTTY
, O_NOCTTY
},
124 { P9_DOTL_TRUNC
, O_TRUNC
},
125 { P9_DOTL_APPEND
, O_APPEND
},
126 { P9_DOTL_NONBLOCK
, O_NONBLOCK
} ,
127 { P9_DOTL_DSYNC
, O_DSYNC
},
128 { P9_DOTL_FASYNC
, FASYNC
},
129 { P9_DOTL_DIRECT
, O_DIRECT
},
130 { P9_DOTL_LARGEFILE
, O_LARGEFILE
},
131 { P9_DOTL_DIRECTORY
, O_DIRECTORY
},
132 { P9_DOTL_NOFOLLOW
, O_NOFOLLOW
},
133 { P9_DOTL_NOATIME
, O_NOATIME
},
134 { P9_DOTL_SYNC
, O_SYNC
},
137 for (i
= 0; i
< ARRAY_SIZE(dotl_oflag_map
); i
++) {
138 if (flags
& dotl_oflag_map
[i
].dotl_flag
) {
139 oflags
|= dotl_oflag_map
[i
].open_flag
;
146 void cred_init(FsCred
*credp
)
154 static int get_dotl_openflags(V9fsState
*s
, int oflags
)
158 * Filter the client open flags
160 flags
= dotl_to_open_flags(oflags
);
161 flags
&= ~(O_NOCTTY
| O_ASYNC
| O_CREAT
);
163 * Ignore direct disk access hint until the server supports it.
169 void v9fs_path_init(V9fsPath
*path
)
175 void v9fs_path_free(V9fsPath
*path
)
183 void GCC_FMT_ATTR(2, 3)
184 v9fs_path_sprintf(V9fsPath
*path
, const char *fmt
, ...)
188 v9fs_path_free(path
);
191 /* Bump the size for including terminating NULL */
192 path
->size
= g_vasprintf(&path
->data
, fmt
, ap
) + 1;
196 void v9fs_path_copy(V9fsPath
*dst
, const V9fsPath
*src
)
199 dst
->size
= src
->size
;
200 dst
->data
= g_memdup(src
->data
, src
->size
);
203 int v9fs_name_to_path(V9fsState
*s
, V9fsPath
*dirpath
,
204 const char *name
, V9fsPath
*path
)
207 err
= s
->ops
->name_to_path(&s
->ctx
, dirpath
, name
, path
);
215 * Return TRUE if s1 is an ancestor of s2.
217 * E.g. "a/b" is an ancestor of "a/b/c" but not of "a/bc/d".
218 * As a special case, We treat s1 as ancestor of s2 if they are same!
220 static int v9fs_path_is_ancestor(V9fsPath
*s1
, V9fsPath
*s2
)
222 if (!strncmp(s1
->data
, s2
->data
, s1
->size
- 1)) {
223 if (s2
->data
[s1
->size
- 1] == '\0' || s2
->data
[s1
->size
- 1] == '/') {
230 static size_t v9fs_string_size(V9fsString
*str
)
236 * returns 0 if fid got re-opened, 1 if not, < 0 on error */
237 static int coroutine_fn
v9fs_reopen_fid(V9fsPDU
*pdu
, V9fsFidState
*f
)
240 if (f
->fid_type
== P9_FID_FILE
) {
241 if (f
->fs
.fd
== -1) {
243 err
= v9fs_co_open(pdu
, f
, f
->open_flags
);
244 } while (err
== -EINTR
&& !pdu
->cancelled
);
246 } else if (f
->fid_type
== P9_FID_DIR
) {
247 if (f
->fs
.dir
.stream
== NULL
) {
249 err
= v9fs_co_opendir(pdu
, f
);
250 } while (err
== -EINTR
&& !pdu
->cancelled
);
256 static V9fsFidState
*coroutine_fn
get_fid(V9fsPDU
*pdu
, int32_t fid
)
260 V9fsState
*s
= pdu
->s
;
262 for (f
= s
->fid_list
; f
; f
= f
->next
) {
266 * Update the fid ref upfront so that
267 * we don't get reclaimed when we yield
272 * check whether we need to reopen the
273 * file. We might have closed the fd
274 * while trying to free up some file
277 err
= v9fs_reopen_fid(pdu
, f
);
283 * Mark the fid as referenced so that the LRU
284 * reclaim won't close the file descriptor
286 f
->flags
|= FID_REFERENCED
;
293 static V9fsFidState
*alloc_fid(V9fsState
*s
, int32_t fid
)
297 for (f
= s
->fid_list
; f
; f
= f
->next
) {
298 /* If fid is already there return NULL */
304 f
= g_malloc0(sizeof(V9fsFidState
));
306 f
->fid_type
= P9_FID_NONE
;
309 * Mark the fid as referenced so that the LRU
310 * reclaim won't close the file descriptor
312 f
->flags
|= FID_REFERENCED
;
313 f
->next
= s
->fid_list
;
316 v9fs_readdir_init(&f
->fs
.dir
);
317 v9fs_readdir_init(&f
->fs_reclaim
.dir
);
322 static int coroutine_fn
v9fs_xattr_fid_clunk(V9fsPDU
*pdu
, V9fsFidState
*fidp
)
326 if (fidp
->fs
.xattr
.xattrwalk_fid
) {
327 /* getxattr/listxattr fid */
331 * if this is fid for setxattr. clunk should
332 * result in setxattr localcall
334 if (fidp
->fs
.xattr
.len
!= fidp
->fs
.xattr
.copied_len
) {
335 /* clunk after partial write */
339 if (fidp
->fs
.xattr
.len
) {
340 retval
= v9fs_co_lsetxattr(pdu
, &fidp
->path
, &fidp
->fs
.xattr
.name
,
341 fidp
->fs
.xattr
.value
,
343 fidp
->fs
.xattr
.flags
);
345 retval
= v9fs_co_lremovexattr(pdu
, &fidp
->path
, &fidp
->fs
.xattr
.name
);
348 v9fs_string_free(&fidp
->fs
.xattr
.name
);
350 g_free(fidp
->fs
.xattr
.value
);
354 static int coroutine_fn
free_fid(V9fsPDU
*pdu
, V9fsFidState
*fidp
)
358 if (fidp
->fid_type
== P9_FID_FILE
) {
359 /* If we reclaimed the fd no need to close */
360 if (fidp
->fs
.fd
!= -1) {
361 retval
= v9fs_co_close(pdu
, &fidp
->fs
);
363 } else if (fidp
->fid_type
== P9_FID_DIR
) {
364 if (fidp
->fs
.dir
.stream
!= NULL
) {
365 retval
= v9fs_co_closedir(pdu
, &fidp
->fs
);
367 } else if (fidp
->fid_type
== P9_FID_XATTR
) {
368 retval
= v9fs_xattr_fid_clunk(pdu
, fidp
);
370 v9fs_path_free(&fidp
->path
);
375 static int coroutine_fn
put_fid(V9fsPDU
*pdu
, V9fsFidState
*fidp
)
380 * Don't free the fid if it is in reclaim list
382 if (!fidp
->ref
&& fidp
->clunked
) {
383 if (fidp
->fid
== pdu
->s
->root_fid
) {
385 * if the clunked fid is root fid then we
386 * have unmounted the fs on the client side.
387 * delete the migration blocker. Ideally, this
388 * should be hooked to transport close notification
390 if (pdu
->s
->migration_blocker
) {
391 migrate_del_blocker(pdu
->s
->migration_blocker
);
392 error_free(pdu
->s
->migration_blocker
);
393 pdu
->s
->migration_blocker
= NULL
;
396 return free_fid(pdu
, fidp
);
401 static V9fsFidState
*clunk_fid(V9fsState
*s
, int32_t fid
)
403 V9fsFidState
**fidpp
, *fidp
;
405 for (fidpp
= &s
->fid_list
; *fidpp
; fidpp
= &(*fidpp
)->next
) {
406 if ((*fidpp
)->fid
== fid
) {
410 if (*fidpp
== NULL
) {
419 void coroutine_fn
v9fs_reclaim_fd(V9fsPDU
*pdu
)
421 int reclaim_count
= 0;
422 V9fsState
*s
= pdu
->s
;
423 V9fsFidState
*f
, *reclaim_list
= NULL
;
425 for (f
= s
->fid_list
; f
; f
= f
->next
) {
427 * Unlink fids cannot be reclaimed. Check
428 * for them and skip them. Also skip fids
429 * currently being operated on.
431 if (f
->ref
|| f
->flags
& FID_NON_RECLAIMABLE
) {
435 * if it is a recently referenced fid
436 * we leave the fid untouched and clear the
437 * reference bit. We come back to it later
438 * in the next iteration. (a simple LRU without
439 * moving list elements around)
441 if (f
->flags
& FID_REFERENCED
) {
442 f
->flags
&= ~FID_REFERENCED
;
446 * Add fids to reclaim list.
448 if (f
->fid_type
== P9_FID_FILE
) {
449 if (f
->fs
.fd
!= -1) {
451 * Up the reference count so that
452 * a clunk request won't free this fid
455 f
->rclm_lst
= reclaim_list
;
457 f
->fs_reclaim
.fd
= f
->fs
.fd
;
461 } else if (f
->fid_type
== P9_FID_DIR
) {
462 if (f
->fs
.dir
.stream
!= NULL
) {
464 * Up the reference count so that
465 * a clunk request won't free this fid
468 f
->rclm_lst
= reclaim_list
;
470 f
->fs_reclaim
.dir
.stream
= f
->fs
.dir
.stream
;
471 f
->fs
.dir
.stream
= NULL
;
475 if (reclaim_count
>= open_fd_rc
) {
480 * Now close the fid in reclaim list. Free them if they
481 * are already clunked.
483 while (reclaim_list
) {
485 reclaim_list
= f
->rclm_lst
;
486 if (f
->fid_type
== P9_FID_FILE
) {
487 v9fs_co_close(pdu
, &f
->fs_reclaim
);
488 } else if (f
->fid_type
== P9_FID_DIR
) {
489 v9fs_co_closedir(pdu
, &f
->fs_reclaim
);
493 * Now drop the fid reference, free it
500 static int coroutine_fn
v9fs_mark_fids_unreclaim(V9fsPDU
*pdu
, V9fsPath
*path
)
503 V9fsState
*s
= pdu
->s
;
504 V9fsFidState
*fidp
, head_fid
;
506 head_fid
.next
= s
->fid_list
;
507 for (fidp
= s
->fid_list
; fidp
; fidp
= fidp
->next
) {
508 if (fidp
->path
.size
!= path
->size
) {
511 if (!memcmp(fidp
->path
.data
, path
->data
, path
->size
)) {
512 /* Mark the fid non reclaimable. */
513 fidp
->flags
|= FID_NON_RECLAIMABLE
;
515 /* reopen the file/dir if already closed */
516 err
= v9fs_reopen_fid(pdu
, fidp
);
521 * Go back to head of fid list because
522 * the list could have got updated when
523 * switched to the worker thread
533 static void coroutine_fn
virtfs_reset(V9fsPDU
*pdu
)
535 V9fsState
*s
= pdu
->s
;
539 while (s
->fid_list
) {
545 s
->fid_list
= fidp
->next
;
552 #define P9_QID_TYPE_DIR 0x80
553 #define P9_QID_TYPE_SYMLINK 0x02
555 #define P9_STAT_MODE_DIR 0x80000000
556 #define P9_STAT_MODE_APPEND 0x40000000
557 #define P9_STAT_MODE_EXCL 0x20000000
558 #define P9_STAT_MODE_MOUNT 0x10000000
559 #define P9_STAT_MODE_AUTH 0x08000000
560 #define P9_STAT_MODE_TMP 0x04000000
561 #define P9_STAT_MODE_SYMLINK 0x02000000
562 #define P9_STAT_MODE_LINK 0x01000000
563 #define P9_STAT_MODE_DEVICE 0x00800000
564 #define P9_STAT_MODE_NAMED_PIPE 0x00200000
565 #define P9_STAT_MODE_SOCKET 0x00100000
566 #define P9_STAT_MODE_SETUID 0x00080000
567 #define P9_STAT_MODE_SETGID 0x00040000
568 #define P9_STAT_MODE_SETVTX 0x00010000
570 #define P9_STAT_MODE_TYPE_BITS (P9_STAT_MODE_DIR | \
571 P9_STAT_MODE_SYMLINK | \
572 P9_STAT_MODE_LINK | \
573 P9_STAT_MODE_DEVICE | \
574 P9_STAT_MODE_NAMED_PIPE | \
577 /* Mirrors all bits of a byte. So e.g. binary 10100000 would become 00000101. */
578 static inline uint8_t mirror8bit(uint8_t byte
)
580 return (byte
* 0x0202020202ULL
& 0x010884422010ULL
) % 1023;
583 /* Same as mirror8bit() just for a 64 bit data type instead for a byte. */
584 static inline uint64_t mirror64bit(uint64_t value
)
586 return ((uint64_t)mirror8bit(value
& 0xff) << 56) |
587 ((uint64_t)mirror8bit((value
>> 8) & 0xff) << 48) |
588 ((uint64_t)mirror8bit((value
>> 16) & 0xff) << 40) |
589 ((uint64_t)mirror8bit((value
>> 24) & 0xff) << 32) |
590 ((uint64_t)mirror8bit((value
>> 32) & 0xff) << 24) |
591 ((uint64_t)mirror8bit((value
>> 40) & 0xff) << 16) |
592 ((uint64_t)mirror8bit((value
>> 48) & 0xff) << 8) |
593 ((uint64_t)mirror8bit((value
>> 56) & 0xff));
597 * @brief Parameter k for the Exponential Golomb algorihm to be used.
599 * The smaller this value, the smaller the minimum bit count for the Exp.
600 * Golomb generated affixes will be (at lowest index) however for the
601 * price of having higher maximum bit count of generated affixes (at highest
602 * index). Likewise increasing this parameter yields in smaller maximum bit
603 * count for the price of having higher minimum bit count.
605 * In practice that means: a good value for k depends on the expected amount
606 * of devices to be exposed by one export. For a small amount of devices k
607 * should be small, for a large amount of devices k might be increased
608 * instead. The default of k=0 should be fine for most users though.
610 * @b IMPORTANT: In case this ever becomes a runtime parameter; the value of
611 * k should not change as long as guest is still running! Because that would
612 * cause completely different inode numbers to be generated on guest.
614 #define EXP_GOLOMB_K 0
617 * @brief Exponential Golomb algorithm for arbitrary k (including k=0).
619 * The Exponential Golomb algorithm generates @b prefixes (@b not suffixes!)
620 * with growing length and with the mathematical property of being
621 * "prefix-free". The latter means the generated prefixes can be prepended
622 * in front of arbitrary numbers and the resulting concatenated numbers are
623 * guaranteed to be always unique.
625 * This is a minor adjustment to the original Exp. Golomb algorithm in the
626 * sense that lowest allowed index (@param n) starts with 1, not with zero.
628 * @param n - natural number (or index) of the prefix to be generated
630 * @param k - parameter k of Exp. Golomb algorithm to be used
631 * (see comment on EXP_GOLOMB_K macro for details about k)
633 static VariLenAffix
expGolombEncode(uint64_t n
, int k
)
635 const uint64_t value
= n
+ (1 << k
) - 1;
636 const int bits
= (int) log2(value
) + 1;
637 return (VariLenAffix
) {
638 .type
= AffixType_Prefix
,
640 .bits
= bits
+ MAX((bits
- 1 - k
), 0)
645 * @brief Converts a suffix into a prefix, or a prefix into a suffix.
647 * Simply mirror all bits of the affix value, for the purpose to preserve
648 * respectively the mathematical "prefix-free" or "suffix-free" property
649 * after the conversion.
651 * If a passed prefix is suitable to create unique numbers, then the
652 * returned suffix is suitable to create unique numbers as well (and vice
655 static VariLenAffix
invertAffix(const VariLenAffix
*affix
)
657 return (VariLenAffix
) {
659 (affix
->type
== AffixType_Suffix
) ?
660 AffixType_Prefix
: AffixType_Suffix
,
662 mirror64bit(affix
->value
) >>
663 ((sizeof(affix
->value
) * 8) - affix
->bits
),
669 * @brief Generates suffix numbers with "suffix-free" property.
671 * This is just a wrapper function on top of the Exp. Golomb algorithm.
673 * Since the Exp. Golomb algorithm generates prefixes, but we need suffixes,
674 * this function converts the Exp. Golomb prefixes into appropriate suffixes
675 * which are still suitable for generating unique numbers.
677 * @param n - natural number (or index) of the suffix to be generated
680 static VariLenAffix
affixForIndex(uint64_t index
)
683 prefix
= expGolombEncode(index
, EXP_GOLOMB_K
);
684 return invertAffix(&prefix
); /* convert prefix to suffix */
687 /* creative abuse of tb_hash_func7, which is based on xxhash */
688 static uint32_t qpp_hash(QppEntry e
)
690 return qemu_xxhash7(e
.ino_prefix
, e
.dev
, 0, 0, 0);
693 static uint32_t qpf_hash(QpfEntry e
)
695 return qemu_xxhash7(e
.ino
, e
.dev
, 0, 0, 0);
698 static bool qpd_cmp_func(const void *obj
, const void *userp
)
700 const QpdEntry
*e1
= obj
, *e2
= userp
;
701 return e1
->dev
== e2
->dev
;
704 static bool qpp_cmp_func(const void *obj
, const void *userp
)
706 const QppEntry
*e1
= obj
, *e2
= userp
;
707 return e1
->dev
== e2
->dev
&& e1
->ino_prefix
== e2
->ino_prefix
;
710 static bool qpf_cmp_func(const void *obj
, const void *userp
)
712 const QpfEntry
*e1
= obj
, *e2
= userp
;
713 return e1
->dev
== e2
->dev
&& e1
->ino
== e2
->ino
;
716 static void qp_table_remove(void *p
, uint32_t h
, void *up
)
721 static void qp_table_destroy(struct qht
*ht
)
723 if (!ht
|| !ht
->map
) {
726 qht_iter(ht
, qp_table_remove
, NULL
);
730 static void qpd_table_init(struct qht
*ht
)
732 qht_init(ht
, qpd_cmp_func
, 1, QHT_MODE_AUTO_RESIZE
);
735 static void qpp_table_init(struct qht
*ht
)
737 qht_init(ht
, qpp_cmp_func
, 1, QHT_MODE_AUTO_RESIZE
);
740 static void qpf_table_init(struct qht
*ht
)
742 qht_init(ht
, qpf_cmp_func
, 1 << 16, QHT_MODE_AUTO_RESIZE
);
746 * Returns how many (high end) bits of inode numbers of the passed fs
747 * device shall be used (in combination with the device number) to
748 * generate hash values for qpp_table entries.
750 * This function is required if variable length suffixes are used for inode
751 * number mapping on guest level. Since a device may end up having multiple
752 * entries in qpp_table, each entry most probably with a different suffix
753 * length, we thus need this function in conjunction with qpd_table to
754 * "agree" about a fix amount of bits (per device) to be always used for
755 * generating hash values for the purpose of accessing qpp_table in order
756 * get consistent behaviour when accessing qpp_table.
758 static int qid_inode_prefix_hash_bits(V9fsPDU
*pdu
, dev_t dev
)
766 val
= qht_lookup(&pdu
->s
->qpd_table
, &lookup
, hash
);
768 val
= g_malloc0(sizeof(QpdEntry
));
770 affix
= affixForIndex(pdu
->s
->qp_affix_next
);
771 val
->prefix_bits
= affix
.bits
;
772 qht_insert(&pdu
->s
->qpd_table
, val
, hash
, NULL
);
773 pdu
->s
->qp_ndevices
++;
775 return val
->prefix_bits
;
779 * @brief Slow / full mapping host inode nr -> guest inode nr.
781 * This function performs a slower and much more costly remapping of an
782 * original file inode number on host to an appropriate different inode
783 * number on guest. For every (dev, inode) combination on host a new
784 * sequential number is generated, cached and exposed as inode number on
787 * This is just a "last resort" fallback solution if the much faster/cheaper
788 * qid_path_suffixmap() failed. In practice this slow / full mapping is not
789 * expected ever to be used at all though.
791 * @see qid_path_suffixmap() for details
794 static int qid_path_fullmap(V9fsPDU
*pdu
, const struct stat
*stbuf
,
798 .dev
= stbuf
->st_dev
,
801 uint32_t hash
= qpf_hash(lookup
);
804 val
= qht_lookup(&pdu
->s
->qpf_table
, &lookup
, hash
);
807 if (pdu
->s
->qp_fullpath_next
== 0) {
808 /* no more files can be mapped :'( */
810 "9p: No more prefixes available for remapping inodes from "
816 val
= g_malloc0(sizeof(QppEntry
));
819 /* new unique inode and device combo */
820 affix
= affixForIndex(
821 1ULL << (sizeof(pdu
->s
->qp_affix_next
) * 8)
823 val
->path
= (pdu
->s
->qp_fullpath_next
++ << affix
.bits
) | affix
.value
;
824 pdu
->s
->qp_fullpath_next
&= ((1ULL << (64 - affix
.bits
)) - 1);
825 qht_insert(&pdu
->s
->qpf_table
, val
, hash
, NULL
);
833 * @brief Quick mapping host inode nr -> guest inode nr.
835 * This function performs quick remapping of an original file inode number
836 * on host to an appropriate different inode number on guest. This remapping
837 * of inodes is required to avoid inode nr collisions on guest which would
838 * happen if the 9p export contains more than 1 exported file system (or
839 * more than 1 file system data set), because unlike on host level where the
840 * files would have different device nrs, all files exported by 9p would
841 * share the same device nr on guest (the device nr of the virtual 9p device
844 * Inode remapping is performed by chopping off high end bits of the original
845 * inode number from host, shifting the result upwards and then assigning a
846 * generated suffix number for the low end bits, where the same suffix number
847 * will be shared by all inodes with the same device id AND the same high end
848 * bits that have been chopped off. That approach utilizes the fact that inode
849 * numbers very likely share the same high end bits (i.e. due to their common
850 * sequential generation by file systems) and hence we only have to generate
851 * and track a very limited amount of suffixes in practice due to that.
853 * We generate variable size suffixes for that purpose. The 1st generated
854 * suffix will only have 1 bit and hence we only need to chop off 1 bit from
855 * the original inode number. The subsequent suffixes being generated will
856 * grow in (bit) size subsequently, i.e. the 2nd and 3rd suffix being
857 * generated will have 3 bits and hence we have to chop off 3 bits from their
858 * original inodes, and so on. That approach of using variable length suffixes
859 * (i.e. over fixed size ones) utilizes the fact that in practice only a very
860 * limited amount of devices are shared by the same export (e.g. typically
861 * less than 2 dozen devices per 9p export), so in practice we need to chop
862 * off less bits than with fixed size prefixes and yet are flexible to add
863 * new devices at runtime below host's export directory at any time without
864 * having to reboot guest nor requiring to reconfigure guest for that. And due
865 * to the very limited amount of original high end bits that we chop off that
866 * way, the total amount of suffixes we need to generate is less than by using
867 * fixed size prefixes and hence it also improves performance of the inode
868 * remapping algorithm, and finally has the nice side effect that the inode
869 * numbers on guest will be much smaller & human friendly. ;-)
871 static int qid_path_suffixmap(V9fsPDU
*pdu
, const struct stat
*stbuf
,
874 const int ino_hash_bits
= qid_inode_prefix_hash_bits(pdu
, stbuf
->st_dev
);
876 .dev
= stbuf
->st_dev
,
877 .ino_prefix
= (uint16_t) (stbuf
->st_ino
>> (64 - ino_hash_bits
))
879 uint32_t hash
= qpp_hash(lookup
);
881 val
= qht_lookup(&pdu
->s
->qpp_table
, &lookup
, hash
);
884 if (pdu
->s
->qp_affix_next
== 0) {
885 /* we ran out of affixes */
887 "9p: Potential degraded performance of inode remapping"
892 val
= g_malloc0(sizeof(QppEntry
));
895 /* new unique inode affix and device combo */
896 val
->qp_affix_index
= pdu
->s
->qp_affix_next
++;
897 val
->qp_affix
= affixForIndex(val
->qp_affix_index
);
898 qht_insert(&pdu
->s
->qpp_table
, val
, hash
, NULL
);
900 /* assuming generated affix to be suffix type, not prefix */
901 *path
= (stbuf
->st_ino
<< val
->qp_affix
.bits
) | val
->qp_affix
.value
;
905 static int stat_to_qid(V9fsPDU
*pdu
, const struct stat
*stbuf
, V9fsQID
*qidp
)
910 if (pdu
->s
->ctx
.export_flags
& V9FS_REMAP_INODES
) {
911 /* map inode+device to qid path (fast path) */
912 err
= qid_path_suffixmap(pdu
, stbuf
, &qidp
->path
);
913 if (err
== -ENFILE
) {
914 /* fast path didn't work, fall back to full map */
915 err
= qid_path_fullmap(pdu
, stbuf
, &qidp
->path
);
921 if (pdu
->s
->dev_id
!= stbuf
->st_dev
) {
922 if (pdu
->s
->ctx
.export_flags
& V9FS_FORBID_MULTIDEVS
) {
924 "9p: Multiple devices detected in same VirtFS export. "
925 "Access of guest to additional devices is (partly) "
926 "denied due to virtfs option 'multidevs=forbid' being "
932 "9p: Multiple devices detected in same VirtFS export, "
933 "which might lead to file ID collisions and severe "
934 "misbehaviours on guest! You should either use a "
935 "separate export for each device shared from host or "
936 "use virtfs option 'multidevs=remap'!"
940 memset(&qidp
->path
, 0, sizeof(qidp
->path
));
941 size
= MIN(sizeof(stbuf
->st_ino
), sizeof(qidp
->path
));
942 memcpy(&qidp
->path
, &stbuf
->st_ino
, size
);
945 qidp
->version
= stbuf
->st_mtime
^ (stbuf
->st_size
<< 8);
947 if (S_ISDIR(stbuf
->st_mode
)) {
948 qidp
->type
|= P9_QID_TYPE_DIR
;
950 if (S_ISLNK(stbuf
->st_mode
)) {
951 qidp
->type
|= P9_QID_TYPE_SYMLINK
;
957 static int coroutine_fn
fid_to_qid(V9fsPDU
*pdu
, V9fsFidState
*fidp
,
963 err
= v9fs_co_lstat(pdu
, &fidp
->path
, &stbuf
);
967 err
= stat_to_qid(pdu
, &stbuf
, qidp
);
974 static int coroutine_fn
dirent_to_qid(V9fsPDU
*pdu
, V9fsFidState
*fidp
,
975 struct dirent
*dent
, V9fsQID
*qidp
)
981 v9fs_path_init(&path
);
983 err
= v9fs_co_name_to_path(pdu
, &fidp
->path
, dent
->d_name
, &path
);
987 err
= v9fs_co_lstat(pdu
, &path
, &stbuf
);
991 err
= stat_to_qid(pdu
, &stbuf
, qidp
);
994 v9fs_path_free(&path
);
998 V9fsPDU
*pdu_alloc(V9fsState
*s
)
1000 V9fsPDU
*pdu
= NULL
;
1002 if (!QLIST_EMPTY(&s
->free_list
)) {
1003 pdu
= QLIST_FIRST(&s
->free_list
);
1004 QLIST_REMOVE(pdu
, next
);
1005 QLIST_INSERT_HEAD(&s
->active_list
, pdu
, next
);
1010 void pdu_free(V9fsPDU
*pdu
)
1012 V9fsState
*s
= pdu
->s
;
1014 g_assert(!pdu
->cancelled
);
1015 QLIST_REMOVE(pdu
, next
);
1016 QLIST_INSERT_HEAD(&s
->free_list
, pdu
, next
);
1019 static void coroutine_fn
pdu_complete(V9fsPDU
*pdu
, ssize_t len
)
1021 int8_t id
= pdu
->id
+ 1; /* Response */
1022 V9fsState
*s
= pdu
->s
;
1026 * The 9p spec requires that successfully cancelled pdus receive no reply.
1027 * Sending a reply would confuse clients because they would
1028 * assume that any EINTR is the actual result of the operation,
1029 * rather than a consequence of the cancellation. However, if
1030 * the operation completed (succesfully or with an error other
1031 * than caused be cancellation), we do send out that reply, both
1032 * for efficiency and to avoid confusing the rest of the state machine
1033 * that assumes passing a non-error here will mean a successful
1034 * transmission of the reply.
1036 bool discard
= pdu
->cancelled
&& len
== -EINTR
;
1038 trace_v9fs_rcancel(pdu
->tag
, pdu
->id
);
1047 if (s
->proto_version
!= V9FS_PROTO_2000L
) {
1050 str
.data
= strerror(err
);
1051 str
.size
= strlen(str
.data
);
1053 ret
= pdu_marshal(pdu
, len
, "s", &str
);
1061 ret
= pdu_marshal(pdu
, len
, "d", err
);
1067 if (s
->proto_version
== V9FS_PROTO_2000L
) {
1070 trace_v9fs_rerror(pdu
->tag
, pdu
->id
, err
); /* Trace ERROR */
1073 /* fill out the header */
1074 if (pdu_marshal(pdu
, 0, "dbw", (int32_t)len
, id
, pdu
->tag
) < 0) {
1078 /* keep these in sync */
1083 pdu
->s
->transport
->push_and_notify(pdu
);
1085 /* Now wakeup anybody waiting in flush for this request */
1086 if (!qemu_co_queue_next(&pdu
->complete
)) {
1091 static mode_t
v9mode_to_mode(uint32_t mode
, V9fsString
*extension
)
1096 if (mode
& P9_STAT_MODE_DIR
) {
1100 if (mode
& P9_STAT_MODE_SYMLINK
) {
1103 if (mode
& P9_STAT_MODE_SOCKET
) {
1106 if (mode
& P9_STAT_MODE_NAMED_PIPE
) {
1109 if (mode
& P9_STAT_MODE_DEVICE
) {
1110 if (extension
->size
&& extension
->data
[0] == 'c') {
1121 if (mode
& P9_STAT_MODE_SETUID
) {
1124 if (mode
& P9_STAT_MODE_SETGID
) {
1127 if (mode
& P9_STAT_MODE_SETVTX
) {
1134 static int donttouch_stat(V9fsStat
*stat
)
1136 if (stat
->type
== -1 &&
1138 stat
->qid
.type
== 0xff &&
1139 stat
->qid
.version
== (uint32_t) -1 &&
1140 stat
->qid
.path
== (uint64_t) -1 &&
1142 stat
->atime
== -1 &&
1143 stat
->mtime
== -1 &&
1144 stat
->length
== -1 &&
1149 stat
->n_uid
== -1 &&
1150 stat
->n_gid
== -1 &&
1151 stat
->n_muid
== -1) {
1158 static void v9fs_stat_init(V9fsStat
*stat
)
1160 v9fs_string_init(&stat
->name
);
1161 v9fs_string_init(&stat
->uid
);
1162 v9fs_string_init(&stat
->gid
);
1163 v9fs_string_init(&stat
->muid
);
1164 v9fs_string_init(&stat
->extension
);
1167 static void v9fs_stat_free(V9fsStat
*stat
)
1169 v9fs_string_free(&stat
->name
);
1170 v9fs_string_free(&stat
->uid
);
1171 v9fs_string_free(&stat
->gid
);
1172 v9fs_string_free(&stat
->muid
);
1173 v9fs_string_free(&stat
->extension
);
1176 static uint32_t stat_to_v9mode(const struct stat
*stbuf
)
1180 mode
= stbuf
->st_mode
& 0777;
1181 if (S_ISDIR(stbuf
->st_mode
)) {
1182 mode
|= P9_STAT_MODE_DIR
;
1185 if (S_ISLNK(stbuf
->st_mode
)) {
1186 mode
|= P9_STAT_MODE_SYMLINK
;
1189 if (S_ISSOCK(stbuf
->st_mode
)) {
1190 mode
|= P9_STAT_MODE_SOCKET
;
1193 if (S_ISFIFO(stbuf
->st_mode
)) {
1194 mode
|= P9_STAT_MODE_NAMED_PIPE
;
1197 if (S_ISBLK(stbuf
->st_mode
) || S_ISCHR(stbuf
->st_mode
)) {
1198 mode
|= P9_STAT_MODE_DEVICE
;
1201 if (stbuf
->st_mode
& S_ISUID
) {
1202 mode
|= P9_STAT_MODE_SETUID
;
1205 if (stbuf
->st_mode
& S_ISGID
) {
1206 mode
|= P9_STAT_MODE_SETGID
;
1209 if (stbuf
->st_mode
& S_ISVTX
) {
1210 mode
|= P9_STAT_MODE_SETVTX
;
1216 static int coroutine_fn
stat_to_v9stat(V9fsPDU
*pdu
, V9fsPath
*path
,
1217 const char *basename
,
1218 const struct stat
*stbuf
,
1223 memset(v9stat
, 0, sizeof(*v9stat
));
1225 err
= stat_to_qid(pdu
, stbuf
, &v9stat
->qid
);
1229 v9stat
->mode
= stat_to_v9mode(stbuf
);
1230 v9stat
->atime
= stbuf
->st_atime
;
1231 v9stat
->mtime
= stbuf
->st_mtime
;
1232 v9stat
->length
= stbuf
->st_size
;
1234 v9fs_string_free(&v9stat
->uid
);
1235 v9fs_string_free(&v9stat
->gid
);
1236 v9fs_string_free(&v9stat
->muid
);
1238 v9stat
->n_uid
= stbuf
->st_uid
;
1239 v9stat
->n_gid
= stbuf
->st_gid
;
1242 v9fs_string_free(&v9stat
->extension
);
1244 if (v9stat
->mode
& P9_STAT_MODE_SYMLINK
) {
1245 err
= v9fs_co_readlink(pdu
, path
, &v9stat
->extension
);
1249 } else if (v9stat
->mode
& P9_STAT_MODE_DEVICE
) {
1250 v9fs_string_sprintf(&v9stat
->extension
, "%c %u %u",
1251 S_ISCHR(stbuf
->st_mode
) ? 'c' : 'b',
1252 major(stbuf
->st_rdev
), minor(stbuf
->st_rdev
));
1253 } else if (S_ISDIR(stbuf
->st_mode
) || S_ISREG(stbuf
->st_mode
)) {
1254 v9fs_string_sprintf(&v9stat
->extension
, "%s %lu",
1255 "HARDLINKCOUNT", (unsigned long)stbuf
->st_nlink
);
1258 v9fs_string_sprintf(&v9stat
->name
, "%s", basename
);
1261 v9fs_string_size(&v9stat
->name
) +
1262 v9fs_string_size(&v9stat
->uid
) +
1263 v9fs_string_size(&v9stat
->gid
) +
1264 v9fs_string_size(&v9stat
->muid
) +
1265 v9fs_string_size(&v9stat
->extension
);
1269 #define P9_STATS_MODE 0x00000001ULL
1270 #define P9_STATS_NLINK 0x00000002ULL
1271 #define P9_STATS_UID 0x00000004ULL
1272 #define P9_STATS_GID 0x00000008ULL
1273 #define P9_STATS_RDEV 0x00000010ULL
1274 #define P9_STATS_ATIME 0x00000020ULL
1275 #define P9_STATS_MTIME 0x00000040ULL
1276 #define P9_STATS_CTIME 0x00000080ULL
1277 #define P9_STATS_INO 0x00000100ULL
1278 #define P9_STATS_SIZE 0x00000200ULL
1279 #define P9_STATS_BLOCKS 0x00000400ULL
1281 #define P9_STATS_BTIME 0x00000800ULL
1282 #define P9_STATS_GEN 0x00001000ULL
1283 #define P9_STATS_DATA_VERSION 0x00002000ULL
1285 #define P9_STATS_BASIC 0x000007ffULL /* Mask for fields up to BLOCKS */
1286 #define P9_STATS_ALL 0x00003fffULL /* Mask for All fields above */
1289 static int stat_to_v9stat_dotl(V9fsPDU
*pdu
, const struct stat
*stbuf
,
1290 V9fsStatDotl
*v9lstat
)
1292 memset(v9lstat
, 0, sizeof(*v9lstat
));
1294 v9lstat
->st_mode
= stbuf
->st_mode
;
1295 v9lstat
->st_nlink
= stbuf
->st_nlink
;
1296 v9lstat
->st_uid
= stbuf
->st_uid
;
1297 v9lstat
->st_gid
= stbuf
->st_gid
;
1298 v9lstat
->st_rdev
= stbuf
->st_rdev
;
1299 v9lstat
->st_size
= stbuf
->st_size
;
1300 v9lstat
->st_blksize
= stbuf
->st_blksize
;
1301 v9lstat
->st_blocks
= stbuf
->st_blocks
;
1302 v9lstat
->st_atime_sec
= stbuf
->st_atime
;
1303 v9lstat
->st_atime_nsec
= stbuf
->st_atim
.tv_nsec
;
1304 v9lstat
->st_mtime_sec
= stbuf
->st_mtime
;
1305 v9lstat
->st_mtime_nsec
= stbuf
->st_mtim
.tv_nsec
;
1306 v9lstat
->st_ctime_sec
= stbuf
->st_ctime
;
1307 v9lstat
->st_ctime_nsec
= stbuf
->st_ctim
.tv_nsec
;
1308 /* Currently we only support BASIC fields in stat */
1309 v9lstat
->st_result_mask
= P9_STATS_BASIC
;
1311 return stat_to_qid(pdu
, stbuf
, &v9lstat
->qid
);
1314 static void print_sg(struct iovec
*sg
, int cnt
)
1318 printf("sg[%d]: {", cnt
);
1319 for (i
= 0; i
< cnt
; i
++) {
1323 printf("(%p, %zd)", sg
[i
].iov_base
, sg
[i
].iov_len
);
1328 /* Will call this only for path name based fid */
1329 static void v9fs_fix_path(V9fsPath
*dst
, V9fsPath
*src
, int len
)
1332 v9fs_path_init(&str
);
1333 v9fs_path_copy(&str
, dst
);
1334 v9fs_path_sprintf(dst
, "%s%s", src
->data
, str
.data
+ len
);
1335 v9fs_path_free(&str
);
1338 static inline bool is_ro_export(FsContext
*ctx
)
1340 return ctx
->export_flags
& V9FS_RDONLY
;
1343 static void coroutine_fn
v9fs_version(void *opaque
)
1346 V9fsPDU
*pdu
= opaque
;
1347 V9fsState
*s
= pdu
->s
;
1351 v9fs_string_init(&version
);
1352 err
= pdu_unmarshal(pdu
, offset
, "ds", &s
->msize
, &version
);
1356 trace_v9fs_version(pdu
->tag
, pdu
->id
, s
->msize
, version
.data
);
1360 if (!strcmp(version
.data
, "9P2000.u")) {
1361 s
->proto_version
= V9FS_PROTO_2000U
;
1362 } else if (!strcmp(version
.data
, "9P2000.L")) {
1363 s
->proto_version
= V9FS_PROTO_2000L
;
1365 v9fs_string_sprintf(&version
, "unknown");
1368 err
= pdu_marshal(pdu
, offset
, "ds", s
->msize
, &version
);
1373 trace_v9fs_version_return(pdu
->tag
, pdu
->id
, s
->msize
, version
.data
);
1375 pdu_complete(pdu
, err
);
1376 v9fs_string_free(&version
);
1379 static void coroutine_fn
v9fs_attach(void *opaque
)
1381 V9fsPDU
*pdu
= opaque
;
1382 V9fsState
*s
= pdu
->s
;
1383 int32_t fid
, afid
, n_uname
;
1384 V9fsString uname
, aname
;
1389 Error
*local_err
= NULL
;
1391 v9fs_string_init(&uname
);
1392 v9fs_string_init(&aname
);
1393 err
= pdu_unmarshal(pdu
, offset
, "ddssd", &fid
,
1394 &afid
, &uname
, &aname
, &n_uname
);
1398 trace_v9fs_attach(pdu
->tag
, pdu
->id
, fid
, afid
, uname
.data
, aname
.data
);
1400 fidp
= alloc_fid(s
, fid
);
1405 fidp
->uid
= n_uname
;
1406 err
= v9fs_co_name_to_path(pdu
, NULL
, "/", &fidp
->path
);
1412 err
= fid_to_qid(pdu
, fidp
, &qid
);
1420 * disable migration if we haven't done already.
1421 * attach could get called multiple times for the same export.
1423 if (!s
->migration_blocker
) {
1424 error_setg(&s
->migration_blocker
,
1425 "Migration is disabled when VirtFS export path '%s' is mounted in the guest using mount_tag '%s'",
1426 s
->ctx
.fs_root
? s
->ctx
.fs_root
: "NULL", s
->tag
);
1427 err
= migrate_add_blocker(s
->migration_blocker
, &local_err
);
1429 error_free(local_err
);
1430 error_free(s
->migration_blocker
);
1431 s
->migration_blocker
= NULL
;
1438 err
= pdu_marshal(pdu
, offset
, "Q", &qid
);
1445 memcpy(&s
->root_qid
, &qid
, sizeof(qid
));
1446 trace_v9fs_attach_return(pdu
->tag
, pdu
->id
,
1447 qid
.type
, qid
.version
, qid
.path
);
1451 pdu_complete(pdu
, err
);
1452 v9fs_string_free(&uname
);
1453 v9fs_string_free(&aname
);
1456 static void coroutine_fn
v9fs_stat(void *opaque
)
1464 V9fsPDU
*pdu
= opaque
;
1467 err
= pdu_unmarshal(pdu
, offset
, "d", &fid
);
1471 trace_v9fs_stat(pdu
->tag
, pdu
->id
, fid
);
1473 fidp
= get_fid(pdu
, fid
);
1478 err
= v9fs_co_lstat(pdu
, &fidp
->path
, &stbuf
);
1482 basename
= g_path_get_basename(fidp
->path
.data
);
1483 err
= stat_to_v9stat(pdu
, &fidp
->path
, basename
, &stbuf
, &v9stat
);
1488 err
= pdu_marshal(pdu
, offset
, "wS", 0, &v9stat
);
1490 v9fs_stat_free(&v9stat
);
1493 trace_v9fs_stat_return(pdu
->tag
, pdu
->id
, v9stat
.mode
,
1494 v9stat
.atime
, v9stat
.mtime
, v9stat
.length
);
1496 v9fs_stat_free(&v9stat
);
1500 pdu_complete(pdu
, err
);
1503 static void coroutine_fn
v9fs_getattr(void *opaque
)
1510 uint64_t request_mask
;
1511 V9fsStatDotl v9stat_dotl
;
1512 V9fsPDU
*pdu
= opaque
;
1514 retval
= pdu_unmarshal(pdu
, offset
, "dq", &fid
, &request_mask
);
1518 trace_v9fs_getattr(pdu
->tag
, pdu
->id
, fid
, request_mask
);
1520 fidp
= get_fid(pdu
, fid
);
1526 * Currently we only support BASIC fields in stat, so there is no
1527 * need to look at request_mask.
1529 retval
= v9fs_co_lstat(pdu
, &fidp
->path
, &stbuf
);
1533 retval
= stat_to_v9stat_dotl(pdu
, &stbuf
, &v9stat_dotl
);
1538 /* fill st_gen if requested and supported by underlying fs */
1539 if (request_mask
& P9_STATS_GEN
) {
1540 retval
= v9fs_co_st_gen(pdu
, &fidp
->path
, stbuf
.st_mode
, &v9stat_dotl
);
1543 /* we have valid st_gen: update result mask */
1544 v9stat_dotl
.st_result_mask
|= P9_STATS_GEN
;
1547 /* request cancelled, e.g. by Tflush */
1550 /* failed to get st_gen: not fatal, ignore */
1554 retval
= pdu_marshal(pdu
, offset
, "A", &v9stat_dotl
);
1559 trace_v9fs_getattr_return(pdu
->tag
, pdu
->id
, v9stat_dotl
.st_result_mask
,
1560 v9stat_dotl
.st_mode
, v9stat_dotl
.st_uid
,
1561 v9stat_dotl
.st_gid
);
1565 pdu_complete(pdu
, retval
);
1568 /* Attribute flags */
1569 #define P9_ATTR_MODE (1 << 0)
1570 #define P9_ATTR_UID (1 << 1)
1571 #define P9_ATTR_GID (1 << 2)
1572 #define P9_ATTR_SIZE (1 << 3)
1573 #define P9_ATTR_ATIME (1 << 4)
1574 #define P9_ATTR_MTIME (1 << 5)
1575 #define P9_ATTR_CTIME (1 << 6)
1576 #define P9_ATTR_ATIME_SET (1 << 7)
1577 #define P9_ATTR_MTIME_SET (1 << 8)
1579 #define P9_ATTR_MASK 127
1581 static void coroutine_fn
v9fs_setattr(void *opaque
)
1588 V9fsPDU
*pdu
= opaque
;
1590 err
= pdu_unmarshal(pdu
, offset
, "dI", &fid
, &v9iattr
);
1595 trace_v9fs_setattr(pdu
->tag
, pdu
->id
, fid
,
1596 v9iattr
.valid
, v9iattr
.mode
, v9iattr
.uid
, v9iattr
.gid
,
1597 v9iattr
.size
, v9iattr
.atime_sec
, v9iattr
.mtime_sec
);
1599 fidp
= get_fid(pdu
, fid
);
1604 if (v9iattr
.valid
& P9_ATTR_MODE
) {
1605 err
= v9fs_co_chmod(pdu
, &fidp
->path
, v9iattr
.mode
);
1610 if (v9iattr
.valid
& (P9_ATTR_ATIME
| P9_ATTR_MTIME
)) {
1611 struct timespec times
[2];
1612 if (v9iattr
.valid
& P9_ATTR_ATIME
) {
1613 if (v9iattr
.valid
& P9_ATTR_ATIME_SET
) {
1614 times
[0].tv_sec
= v9iattr
.atime_sec
;
1615 times
[0].tv_nsec
= v9iattr
.atime_nsec
;
1617 times
[0].tv_nsec
= UTIME_NOW
;
1620 times
[0].tv_nsec
= UTIME_OMIT
;
1622 if (v9iattr
.valid
& P9_ATTR_MTIME
) {
1623 if (v9iattr
.valid
& P9_ATTR_MTIME_SET
) {
1624 times
[1].tv_sec
= v9iattr
.mtime_sec
;
1625 times
[1].tv_nsec
= v9iattr
.mtime_nsec
;
1627 times
[1].tv_nsec
= UTIME_NOW
;
1630 times
[1].tv_nsec
= UTIME_OMIT
;
1632 err
= v9fs_co_utimensat(pdu
, &fidp
->path
, times
);
1638 * If the only valid entry in iattr is ctime we can call
1639 * chown(-1,-1) to update the ctime of the file
1641 if ((v9iattr
.valid
& (P9_ATTR_UID
| P9_ATTR_GID
)) ||
1642 ((v9iattr
.valid
& P9_ATTR_CTIME
)
1643 && !((v9iattr
.valid
& P9_ATTR_MASK
) & ~P9_ATTR_CTIME
))) {
1644 if (!(v9iattr
.valid
& P9_ATTR_UID
)) {
1647 if (!(v9iattr
.valid
& P9_ATTR_GID
)) {
1650 err
= v9fs_co_chown(pdu
, &fidp
->path
, v9iattr
.uid
,
1656 if (v9iattr
.valid
& (P9_ATTR_SIZE
)) {
1657 err
= v9fs_co_truncate(pdu
, &fidp
->path
, v9iattr
.size
);
1663 trace_v9fs_setattr_return(pdu
->tag
, pdu
->id
);
1667 pdu_complete(pdu
, err
);
1670 static int v9fs_walk_marshal(V9fsPDU
*pdu
, uint16_t nwnames
, V9fsQID
*qids
)
1676 err
= pdu_marshal(pdu
, offset
, "w", nwnames
);
1681 for (i
= 0; i
< nwnames
; i
++) {
1682 err
= pdu_marshal(pdu
, offset
, "Q", &qids
[i
]);
1691 static bool name_is_illegal(const char *name
)
1693 return !*name
|| strchr(name
, '/') != NULL
;
1696 static bool not_same_qid(const V9fsQID
*qid1
, const V9fsQID
*qid2
)
1699 qid1
->type
!= qid2
->type
||
1700 qid1
->version
!= qid2
->version
||
1701 qid1
->path
!= qid2
->path
;
1704 static void coroutine_fn
v9fs_walk(void *opaque
)
1707 V9fsQID
*qids
= NULL
;
1709 V9fsPath dpath
, path
;
1713 int32_t fid
, newfid
;
1714 V9fsString
*wnames
= NULL
;
1716 V9fsFidState
*newfidp
= NULL
;
1717 V9fsPDU
*pdu
= opaque
;
1718 V9fsState
*s
= pdu
->s
;
1721 err
= pdu_unmarshal(pdu
, offset
, "ddw", &fid
, &newfid
, &nwnames
);
1723 pdu_complete(pdu
, err
);
1728 trace_v9fs_walk(pdu
->tag
, pdu
->id
, fid
, newfid
, nwnames
);
1730 if (nwnames
&& nwnames
<= P9_MAXWELEM
) {
1731 wnames
= g_new0(V9fsString
, nwnames
);
1732 qids
= g_new0(V9fsQID
, nwnames
);
1733 for (i
= 0; i
< nwnames
; i
++) {
1734 err
= pdu_unmarshal(pdu
, offset
, "s", &wnames
[i
]);
1738 if (name_is_illegal(wnames
[i
].data
)) {
1744 } else if (nwnames
> P9_MAXWELEM
) {
1748 fidp
= get_fid(pdu
, fid
);
1754 v9fs_path_init(&dpath
);
1755 v9fs_path_init(&path
);
1757 err
= fid_to_qid(pdu
, fidp
, &qid
);
1763 * Both dpath and path initially poin to fidp.
1764 * Needed to handle request with nwnames == 0
1766 v9fs_path_copy(&dpath
, &fidp
->path
);
1767 v9fs_path_copy(&path
, &fidp
->path
);
1768 for (name_idx
= 0; name_idx
< nwnames
; name_idx
++) {
1769 if (not_same_qid(&pdu
->s
->root_qid
, &qid
) ||
1770 strcmp("..", wnames
[name_idx
].data
)) {
1771 err
= v9fs_co_name_to_path(pdu
, &dpath
, wnames
[name_idx
].data
,
1777 err
= v9fs_co_lstat(pdu
, &path
, &stbuf
);
1781 err
= stat_to_qid(pdu
, &stbuf
, &qid
);
1785 v9fs_path_copy(&dpath
, &path
);
1787 memcpy(&qids
[name_idx
], &qid
, sizeof(qid
));
1789 if (fid
== newfid
) {
1790 if (fidp
->fid_type
!= P9_FID_NONE
) {
1794 v9fs_path_write_lock(s
);
1795 v9fs_path_copy(&fidp
->path
, &path
);
1796 v9fs_path_unlock(s
);
1798 newfidp
= alloc_fid(s
, newfid
);
1799 if (newfidp
== NULL
) {
1803 newfidp
->uid
= fidp
->uid
;
1804 v9fs_path_copy(&newfidp
->path
, &path
);
1806 err
= v9fs_walk_marshal(pdu
, nwnames
, qids
);
1807 trace_v9fs_walk_return(pdu
->tag
, pdu
->id
, nwnames
, qids
);
1811 put_fid(pdu
, newfidp
);
1813 v9fs_path_free(&dpath
);
1814 v9fs_path_free(&path
);
1816 pdu_complete(pdu
, err
);
1817 if (nwnames
&& nwnames
<= P9_MAXWELEM
) {
1818 for (name_idx
= 0; name_idx
< nwnames
; name_idx
++) {
1819 v9fs_string_free(&wnames
[name_idx
]);
1826 static int32_t coroutine_fn
get_iounit(V9fsPDU
*pdu
, V9fsPath
*path
)
1828 struct statfs stbuf
;
1830 V9fsState
*s
= pdu
->s
;
1833 * iounit should be multiples of f_bsize (host filesystem block size
1834 * and as well as less than (client msize - P9_IOHDRSZ))
1836 if (!v9fs_co_statfs(pdu
, path
, &stbuf
)) {
1837 if (stbuf
.f_bsize
) {
1838 iounit
= stbuf
.f_bsize
;
1839 iounit
*= (s
->msize
- P9_IOHDRSZ
) / stbuf
.f_bsize
;
1843 iounit
= s
->msize
- P9_IOHDRSZ
;
1848 static void coroutine_fn
v9fs_open(void *opaque
)
1859 V9fsPDU
*pdu
= opaque
;
1860 V9fsState
*s
= pdu
->s
;
1862 if (s
->proto_version
== V9FS_PROTO_2000L
) {
1863 err
= pdu_unmarshal(pdu
, offset
, "dd", &fid
, &mode
);
1866 err
= pdu_unmarshal(pdu
, offset
, "db", &fid
, &modebyte
);
1872 trace_v9fs_open(pdu
->tag
, pdu
->id
, fid
, mode
);
1874 fidp
= get_fid(pdu
, fid
);
1879 if (fidp
->fid_type
!= P9_FID_NONE
) {
1884 err
= v9fs_co_lstat(pdu
, &fidp
->path
, &stbuf
);
1888 err
= stat_to_qid(pdu
, &stbuf
, &qid
);
1892 if (S_ISDIR(stbuf
.st_mode
)) {
1893 err
= v9fs_co_opendir(pdu
, fidp
);
1897 fidp
->fid_type
= P9_FID_DIR
;
1898 err
= pdu_marshal(pdu
, offset
, "Qd", &qid
, 0);
1904 if (s
->proto_version
== V9FS_PROTO_2000L
) {
1905 flags
= get_dotl_openflags(s
, mode
);
1907 flags
= omode_to_uflags(mode
);
1909 if (is_ro_export(&s
->ctx
)) {
1910 if (mode
& O_WRONLY
|| mode
& O_RDWR
||
1911 mode
& O_APPEND
|| mode
& O_TRUNC
) {
1916 err
= v9fs_co_open(pdu
, fidp
, flags
);
1920 fidp
->fid_type
= P9_FID_FILE
;
1921 fidp
->open_flags
= flags
;
1922 if (flags
& O_EXCL
) {
1924 * We let the host file system do O_EXCL check
1925 * We should not reclaim such fd
1927 fidp
->flags
|= FID_NON_RECLAIMABLE
;
1929 iounit
= get_iounit(pdu
, &fidp
->path
);
1930 err
= pdu_marshal(pdu
, offset
, "Qd", &qid
, iounit
);
1936 trace_v9fs_open_return(pdu
->tag
, pdu
->id
,
1937 qid
.type
, qid
.version
, qid
.path
, iounit
);
1941 pdu_complete(pdu
, err
);
1944 static void coroutine_fn
v9fs_lcreate(void *opaque
)
1946 int32_t dfid
, flags
, mode
;
1955 V9fsPDU
*pdu
= opaque
;
1957 v9fs_string_init(&name
);
1958 err
= pdu_unmarshal(pdu
, offset
, "dsddd", &dfid
,
1959 &name
, &flags
, &mode
, &gid
);
1963 trace_v9fs_lcreate(pdu
->tag
, pdu
->id
, dfid
, flags
, mode
, gid
);
1965 if (name_is_illegal(name
.data
)) {
1970 if (!strcmp(".", name
.data
) || !strcmp("..", name
.data
)) {
1975 fidp
= get_fid(pdu
, dfid
);
1980 if (fidp
->fid_type
!= P9_FID_NONE
) {
1985 flags
= get_dotl_openflags(pdu
->s
, flags
);
1986 err
= v9fs_co_open2(pdu
, fidp
, &name
, gid
,
1987 flags
| O_CREAT
, mode
, &stbuf
);
1991 fidp
->fid_type
= P9_FID_FILE
;
1992 fidp
->open_flags
= flags
;
1993 if (flags
& O_EXCL
) {
1995 * We let the host file system do O_EXCL check
1996 * We should not reclaim such fd
1998 fidp
->flags
|= FID_NON_RECLAIMABLE
;
2000 iounit
= get_iounit(pdu
, &fidp
->path
);
2001 err
= stat_to_qid(pdu
, &stbuf
, &qid
);
2005 err
= pdu_marshal(pdu
, offset
, "Qd", &qid
, iounit
);
2010 trace_v9fs_lcreate_return(pdu
->tag
, pdu
->id
,
2011 qid
.type
, qid
.version
, qid
.path
, iounit
);
2015 pdu_complete(pdu
, err
);
2016 v9fs_string_free(&name
);
2019 static void coroutine_fn
v9fs_fsync(void *opaque
)
2026 V9fsPDU
*pdu
= opaque
;
2028 err
= pdu_unmarshal(pdu
, offset
, "dd", &fid
, &datasync
);
2032 trace_v9fs_fsync(pdu
->tag
, pdu
->id
, fid
, datasync
);
2034 fidp
= get_fid(pdu
, fid
);
2039 err
= v9fs_co_fsync(pdu
, fidp
, datasync
);
2045 pdu_complete(pdu
, err
);
2048 static void coroutine_fn
v9fs_clunk(void *opaque
)
2054 V9fsPDU
*pdu
= opaque
;
2055 V9fsState
*s
= pdu
->s
;
2057 err
= pdu_unmarshal(pdu
, offset
, "d", &fid
);
2061 trace_v9fs_clunk(pdu
->tag
, pdu
->id
, fid
);
2063 fidp
= clunk_fid(s
, fid
);
2069 * Bump the ref so that put_fid will
2073 err
= put_fid(pdu
, fidp
);
2078 pdu_complete(pdu
, err
);
2082 * Create a QEMUIOVector for a sub-region of PDU iovecs
2084 * @qiov: uninitialized QEMUIOVector
2085 * @skip: number of bytes to skip from beginning of PDU
2086 * @size: number of bytes to include
2087 * @is_write: true - write, false - read
2089 * The resulting QEMUIOVector has heap-allocated iovecs and must be cleaned up
2090 * with qemu_iovec_destroy().
2092 static void v9fs_init_qiov_from_pdu(QEMUIOVector
*qiov
, V9fsPDU
*pdu
,
2093 size_t skip
, size_t size
,
2101 pdu
->s
->transport
->init_out_iov_from_pdu(pdu
, &iov
, &niov
, size
+ skip
);
2103 pdu
->s
->transport
->init_in_iov_from_pdu(pdu
, &iov
, &niov
, size
+ skip
);
2106 qemu_iovec_init_external(&elem
, iov
, niov
);
2107 qemu_iovec_init(qiov
, niov
);
2108 qemu_iovec_concat(qiov
, &elem
, skip
, size
);
2111 static int v9fs_xattr_read(V9fsState
*s
, V9fsPDU
*pdu
, V9fsFidState
*fidp
,
2112 uint64_t off
, uint32_t max_count
)
2116 uint64_t read_count
;
2117 QEMUIOVector qiov_full
;
2119 if (fidp
->fs
.xattr
.len
< off
) {
2122 read_count
= fidp
->fs
.xattr
.len
- off
;
2124 if (read_count
> max_count
) {
2125 read_count
= max_count
;
2127 err
= pdu_marshal(pdu
, offset
, "d", read_count
);
2133 v9fs_init_qiov_from_pdu(&qiov_full
, pdu
, offset
, read_count
, false);
2134 err
= v9fs_pack(qiov_full
.iov
, qiov_full
.niov
, 0,
2135 ((char *)fidp
->fs
.xattr
.value
) + off
,
2137 qemu_iovec_destroy(&qiov_full
);
2145 static int coroutine_fn
v9fs_do_readdir_with_stat(V9fsPDU
*pdu
,
2154 off_t saved_dir_pos
;
2155 struct dirent
*dent
;
2157 /* save the directory position */
2158 saved_dir_pos
= v9fs_co_telldir(pdu
, fidp
);
2159 if (saved_dir_pos
< 0) {
2160 return saved_dir_pos
;
2164 v9fs_path_init(&path
);
2166 v9fs_readdir_lock(&fidp
->fs
.dir
);
2168 err
= v9fs_co_readdir(pdu
, fidp
, &dent
);
2172 err
= v9fs_co_name_to_path(pdu
, &fidp
->path
, dent
->d_name
, &path
);
2176 err
= v9fs_co_lstat(pdu
, &path
, &stbuf
);
2180 err
= stat_to_v9stat(pdu
, &path
, dent
->d_name
, &stbuf
, &v9stat
);
2184 if ((count
+ v9stat
.size
+ 2) > max_count
) {
2185 v9fs_readdir_unlock(&fidp
->fs
.dir
);
2187 /* Ran out of buffer. Set dir back to old position and return */
2188 v9fs_co_seekdir(pdu
, fidp
, saved_dir_pos
);
2189 v9fs_stat_free(&v9stat
);
2190 v9fs_path_free(&path
);
2194 /* 11 = 7 + 4 (7 = start offset, 4 = space for storing count) */
2195 len
= pdu_marshal(pdu
, 11 + count
, "S", &v9stat
);
2197 v9fs_readdir_unlock(&fidp
->fs
.dir
);
2200 v9fs_co_seekdir(pdu
, fidp
, saved_dir_pos
);
2201 v9fs_stat_free(&v9stat
);
2202 v9fs_path_free(&path
);
2206 v9fs_stat_free(&v9stat
);
2207 v9fs_path_free(&path
);
2208 saved_dir_pos
= dent
->d_off
;
2211 v9fs_readdir_unlock(&fidp
->fs
.dir
);
2213 v9fs_path_free(&path
);
2220 static void coroutine_fn
v9fs_read(void *opaque
)
2229 V9fsPDU
*pdu
= opaque
;
2230 V9fsState
*s
= pdu
->s
;
2232 err
= pdu_unmarshal(pdu
, offset
, "dqd", &fid
, &off
, &max_count
);
2236 trace_v9fs_read(pdu
->tag
, pdu
->id
, fid
, off
, max_count
);
2238 fidp
= get_fid(pdu
, fid
);
2243 if (fidp
->fid_type
== P9_FID_DIR
) {
2246 v9fs_co_rewinddir(pdu
, fidp
);
2248 count
= v9fs_do_readdir_with_stat(pdu
, fidp
, max_count
);
2253 err
= pdu_marshal(pdu
, offset
, "d", count
);
2257 err
+= offset
+ count
;
2258 } else if (fidp
->fid_type
== P9_FID_FILE
) {
2259 QEMUIOVector qiov_full
;
2263 v9fs_init_qiov_from_pdu(&qiov_full
, pdu
, offset
+ 4, max_count
, false);
2264 qemu_iovec_init(&qiov
, qiov_full
.niov
);
2266 qemu_iovec_reset(&qiov
);
2267 qemu_iovec_concat(&qiov
, &qiov_full
, count
, qiov_full
.size
- count
);
2269 print_sg(qiov
.iov
, qiov
.niov
);
2271 /* Loop in case of EINTR */
2273 len
= v9fs_co_preadv(pdu
, fidp
, qiov
.iov
, qiov
.niov
, off
);
2278 } while (len
== -EINTR
&& !pdu
->cancelled
);
2280 /* IO error return the error */
2282 goto out_free_iovec
;
2284 } while (count
< max_count
&& len
> 0);
2285 err
= pdu_marshal(pdu
, offset
, "d", count
);
2287 goto out_free_iovec
;
2289 err
+= offset
+ count
;
2291 qemu_iovec_destroy(&qiov
);
2292 qemu_iovec_destroy(&qiov_full
);
2293 } else if (fidp
->fid_type
== P9_FID_XATTR
) {
2294 err
= v9fs_xattr_read(s
, pdu
, fidp
, off
, max_count
);
2298 trace_v9fs_read_return(pdu
->tag
, pdu
->id
, count
, err
);
2302 pdu_complete(pdu
, err
);
2305 static size_t v9fs_readdir_data_size(V9fsString
*name
)
2308 * Size of each dirent on the wire: size of qid (13) + size of offset (8)
2309 * size of type (1) + size of name.size (2) + strlen(name.data)
2311 return 24 + v9fs_string_size(name
);
2314 static int coroutine_fn
v9fs_do_readdir(V9fsPDU
*pdu
, V9fsFidState
*fidp
,
2322 off_t saved_dir_pos
;
2323 struct dirent
*dent
;
2325 /* save the directory position */
2326 saved_dir_pos
= v9fs_co_telldir(pdu
, fidp
);
2327 if (saved_dir_pos
< 0) {
2328 return saved_dir_pos
;
2332 v9fs_readdir_lock(&fidp
->fs
.dir
);
2334 err
= v9fs_co_readdir(pdu
, fidp
, &dent
);
2338 v9fs_string_init(&name
);
2339 v9fs_string_sprintf(&name
, "%s", dent
->d_name
);
2340 if ((count
+ v9fs_readdir_data_size(&name
)) > max_count
) {
2341 v9fs_readdir_unlock(&fidp
->fs
.dir
);
2343 /* Ran out of buffer. Set dir back to old position and return */
2344 v9fs_co_seekdir(pdu
, fidp
, saved_dir_pos
);
2345 v9fs_string_free(&name
);
2349 if (pdu
->s
->ctx
.export_flags
& V9FS_REMAP_INODES
) {
2351 * dirent_to_qid() implies expensive stat call for each entry,
2352 * we must do that here though since inode remapping requires
2353 * the device id, which in turn might be different for
2354 * different entries; we cannot make any assumption to avoid
2357 err
= dirent_to_qid(pdu
, fidp
, dent
, &qid
);
2359 v9fs_readdir_unlock(&fidp
->fs
.dir
);
2360 v9fs_co_seekdir(pdu
, fidp
, saved_dir_pos
);
2361 v9fs_string_free(&name
);
2366 * Fill up just the path field of qid because the client uses
2367 * only that. To fill the entire qid structure we will have
2368 * to stat each dirent found, which is expensive. For the
2369 * latter reason we don't call dirent_to_qid() here. Only drawback
2370 * is that no multi-device export detection of stat_to_qid()
2371 * would be done and provided as error to the user here. But
2372 * user would get that error anyway when accessing those
2373 * files/dirs through other ways.
2375 size
= MIN(sizeof(dent
->d_ino
), sizeof(qid
.path
));
2376 memcpy(&qid
.path
, &dent
->d_ino
, size
);
2377 /* Fill the other fields with dummy values */
2382 /* 11 = 7 + 4 (7 = start offset, 4 = space for storing count) */
2383 len
= pdu_marshal(pdu
, 11 + count
, "Qqbs",
2385 dent
->d_type
, &name
);
2387 v9fs_readdir_unlock(&fidp
->fs
.dir
);
2390 v9fs_co_seekdir(pdu
, fidp
, saved_dir_pos
);
2391 v9fs_string_free(&name
);
2395 v9fs_string_free(&name
);
2396 saved_dir_pos
= dent
->d_off
;
2399 v9fs_readdir_unlock(&fidp
->fs
.dir
);
2407 static void coroutine_fn
v9fs_readdir(void *opaque
)
2413 uint64_t initial_offset
;
2416 V9fsPDU
*pdu
= opaque
;
2418 retval
= pdu_unmarshal(pdu
, offset
, "dqd", &fid
,
2419 &initial_offset
, &max_count
);
2423 trace_v9fs_readdir(pdu
->tag
, pdu
->id
, fid
, initial_offset
, max_count
);
2425 fidp
= get_fid(pdu
, fid
);
2430 if (!fidp
->fs
.dir
.stream
) {
2434 if (initial_offset
== 0) {
2435 v9fs_co_rewinddir(pdu
, fidp
);
2437 v9fs_co_seekdir(pdu
, fidp
, initial_offset
);
2439 count
= v9fs_do_readdir(pdu
, fidp
, max_count
);
2444 retval
= pdu_marshal(pdu
, offset
, "d", count
);
2448 retval
+= count
+ offset
;
2449 trace_v9fs_readdir_return(pdu
->tag
, pdu
->id
, count
, retval
);
2453 pdu_complete(pdu
, retval
);
2456 static int v9fs_xattr_write(V9fsState
*s
, V9fsPDU
*pdu
, V9fsFidState
*fidp
,
2457 uint64_t off
, uint32_t count
,
2458 struct iovec
*sg
, int cnt
)
2462 uint64_t write_count
;
2466 if (fidp
->fs
.xattr
.len
< off
) {
2470 write_count
= fidp
->fs
.xattr
.len
- off
;
2471 if (write_count
> count
) {
2472 write_count
= count
;
2474 err
= pdu_marshal(pdu
, offset
, "d", write_count
);
2479 fidp
->fs
.xattr
.copied_len
+= write_count
;
2481 * Now copy the content from sg list
2483 for (i
= 0; i
< cnt
; i
++) {
2484 if (write_count
> sg
[i
].iov_len
) {
2485 to_copy
= sg
[i
].iov_len
;
2487 to_copy
= write_count
;
2489 memcpy((char *)fidp
->fs
.xattr
.value
+ off
, sg
[i
].iov_base
, to_copy
);
2490 /* updating vs->off since we are not using below */
2492 write_count
-= to_copy
;
2498 static void coroutine_fn
v9fs_write(void *opaque
)
2508 V9fsPDU
*pdu
= opaque
;
2509 V9fsState
*s
= pdu
->s
;
2510 QEMUIOVector qiov_full
;
2513 err
= pdu_unmarshal(pdu
, offset
, "dqd", &fid
, &off
, &count
);
2515 pdu_complete(pdu
, err
);
2519 v9fs_init_qiov_from_pdu(&qiov_full
, pdu
, offset
, count
, true);
2520 trace_v9fs_write(pdu
->tag
, pdu
->id
, fid
, off
, count
, qiov_full
.niov
);
2522 fidp
= get_fid(pdu
, fid
);
2527 if (fidp
->fid_type
== P9_FID_FILE
) {
2528 if (fidp
->fs
.fd
== -1) {
2532 } else if (fidp
->fid_type
== P9_FID_XATTR
) {
2534 * setxattr operation
2536 err
= v9fs_xattr_write(s
, pdu
, fidp
, off
, count
,
2537 qiov_full
.iov
, qiov_full
.niov
);
2543 qemu_iovec_init(&qiov
, qiov_full
.niov
);
2545 qemu_iovec_reset(&qiov
);
2546 qemu_iovec_concat(&qiov
, &qiov_full
, total
, qiov_full
.size
- total
);
2548 print_sg(qiov
.iov
, qiov
.niov
);
2550 /* Loop in case of EINTR */
2552 len
= v9fs_co_pwritev(pdu
, fidp
, qiov
.iov
, qiov
.niov
, off
);
2557 } while (len
== -EINTR
&& !pdu
->cancelled
);
2559 /* IO error return the error */
2563 } while (total
< count
&& len
> 0);
2566 err
= pdu_marshal(pdu
, offset
, "d", total
);
2571 trace_v9fs_write_return(pdu
->tag
, pdu
->id
, total
, err
);
2573 qemu_iovec_destroy(&qiov
);
2577 qemu_iovec_destroy(&qiov_full
);
2578 pdu_complete(pdu
, err
);
2581 static void coroutine_fn
v9fs_create(void *opaque
)
2593 V9fsString extension
;
2595 V9fsPDU
*pdu
= opaque
;
2596 V9fsState
*s
= pdu
->s
;
2598 v9fs_path_init(&path
);
2599 v9fs_string_init(&name
);
2600 v9fs_string_init(&extension
);
2601 err
= pdu_unmarshal(pdu
, offset
, "dsdbs", &fid
, &name
,
2602 &perm
, &mode
, &extension
);
2606 trace_v9fs_create(pdu
->tag
, pdu
->id
, fid
, name
.data
, perm
, mode
);
2608 if (name_is_illegal(name
.data
)) {
2613 if (!strcmp(".", name
.data
) || !strcmp("..", name
.data
)) {
2618 fidp
= get_fid(pdu
, fid
);
2623 if (fidp
->fid_type
!= P9_FID_NONE
) {
2627 if (perm
& P9_STAT_MODE_DIR
) {
2628 err
= v9fs_co_mkdir(pdu
, fidp
, &name
, perm
& 0777,
2629 fidp
->uid
, -1, &stbuf
);
2633 err
= v9fs_co_name_to_path(pdu
, &fidp
->path
, name
.data
, &path
);
2637 v9fs_path_write_lock(s
);
2638 v9fs_path_copy(&fidp
->path
, &path
);
2639 v9fs_path_unlock(s
);
2640 err
= v9fs_co_opendir(pdu
, fidp
);
2644 fidp
->fid_type
= P9_FID_DIR
;
2645 } else if (perm
& P9_STAT_MODE_SYMLINK
) {
2646 err
= v9fs_co_symlink(pdu
, fidp
, &name
,
2647 extension
.data
, -1 , &stbuf
);
2651 err
= v9fs_co_name_to_path(pdu
, &fidp
->path
, name
.data
, &path
);
2655 v9fs_path_write_lock(s
);
2656 v9fs_path_copy(&fidp
->path
, &path
);
2657 v9fs_path_unlock(s
);
2658 } else if (perm
& P9_STAT_MODE_LINK
) {
2659 int32_t ofid
= atoi(extension
.data
);
2660 V9fsFidState
*ofidp
= get_fid(pdu
, ofid
);
2661 if (ofidp
== NULL
) {
2665 err
= v9fs_co_link(pdu
, ofidp
, fidp
, &name
);
2666 put_fid(pdu
, ofidp
);
2670 err
= v9fs_co_name_to_path(pdu
, &fidp
->path
, name
.data
, &path
);
2672 fidp
->fid_type
= P9_FID_NONE
;
2675 v9fs_path_write_lock(s
);
2676 v9fs_path_copy(&fidp
->path
, &path
);
2677 v9fs_path_unlock(s
);
2678 err
= v9fs_co_lstat(pdu
, &fidp
->path
, &stbuf
);
2680 fidp
->fid_type
= P9_FID_NONE
;
2683 } else if (perm
& P9_STAT_MODE_DEVICE
) {
2685 uint32_t major
, minor
;
2688 if (sscanf(extension
.data
, "%c %u %u", &ctype
, &major
, &minor
) != 3) {
2705 nmode
|= perm
& 0777;
2706 err
= v9fs_co_mknod(pdu
, fidp
, &name
, fidp
->uid
, -1,
2707 makedev(major
, minor
), nmode
, &stbuf
);
2711 err
= v9fs_co_name_to_path(pdu
, &fidp
->path
, name
.data
, &path
);
2715 v9fs_path_write_lock(s
);
2716 v9fs_path_copy(&fidp
->path
, &path
);
2717 v9fs_path_unlock(s
);
2718 } else if (perm
& P9_STAT_MODE_NAMED_PIPE
) {
2719 err
= v9fs_co_mknod(pdu
, fidp
, &name
, fidp
->uid
, -1,
2720 0, S_IFIFO
| (perm
& 0777), &stbuf
);
2724 err
= v9fs_co_name_to_path(pdu
, &fidp
->path
, name
.data
, &path
);
2728 v9fs_path_write_lock(s
);
2729 v9fs_path_copy(&fidp
->path
, &path
);
2730 v9fs_path_unlock(s
);
2731 } else if (perm
& P9_STAT_MODE_SOCKET
) {
2732 err
= v9fs_co_mknod(pdu
, fidp
, &name
, fidp
->uid
, -1,
2733 0, S_IFSOCK
| (perm
& 0777), &stbuf
);
2737 err
= v9fs_co_name_to_path(pdu
, &fidp
->path
, name
.data
, &path
);
2741 v9fs_path_write_lock(s
);
2742 v9fs_path_copy(&fidp
->path
, &path
);
2743 v9fs_path_unlock(s
);
2745 err
= v9fs_co_open2(pdu
, fidp
, &name
, -1,
2746 omode_to_uflags(mode
)|O_CREAT
, perm
, &stbuf
);
2750 fidp
->fid_type
= P9_FID_FILE
;
2751 fidp
->open_flags
= omode_to_uflags(mode
);
2752 if (fidp
->open_flags
& O_EXCL
) {
2754 * We let the host file system do O_EXCL check
2755 * We should not reclaim such fd
2757 fidp
->flags
|= FID_NON_RECLAIMABLE
;
2760 iounit
= get_iounit(pdu
, &fidp
->path
);
2761 err
= stat_to_qid(pdu
, &stbuf
, &qid
);
2765 err
= pdu_marshal(pdu
, offset
, "Qd", &qid
, iounit
);
2770 trace_v9fs_create_return(pdu
->tag
, pdu
->id
,
2771 qid
.type
, qid
.version
, qid
.path
, iounit
);
2775 pdu_complete(pdu
, err
);
2776 v9fs_string_free(&name
);
2777 v9fs_string_free(&extension
);
2778 v9fs_path_free(&path
);
2781 static void coroutine_fn
v9fs_symlink(void *opaque
)
2783 V9fsPDU
*pdu
= opaque
;
2786 V9fsFidState
*dfidp
;
2794 v9fs_string_init(&name
);
2795 v9fs_string_init(&symname
);
2796 err
= pdu_unmarshal(pdu
, offset
, "dssd", &dfid
, &name
, &symname
, &gid
);
2800 trace_v9fs_symlink(pdu
->tag
, pdu
->id
, dfid
, name
.data
, symname
.data
, gid
);
2802 if (name_is_illegal(name
.data
)) {
2807 if (!strcmp(".", name
.data
) || !strcmp("..", name
.data
)) {
2812 dfidp
= get_fid(pdu
, dfid
);
2813 if (dfidp
== NULL
) {
2817 err
= v9fs_co_symlink(pdu
, dfidp
, &name
, symname
.data
, gid
, &stbuf
);
2821 err
= stat_to_qid(pdu
, &stbuf
, &qid
);
2825 err
= pdu_marshal(pdu
, offset
, "Q", &qid
);
2830 trace_v9fs_symlink_return(pdu
->tag
, pdu
->id
,
2831 qid
.type
, qid
.version
, qid
.path
);
2833 put_fid(pdu
, dfidp
);
2835 pdu_complete(pdu
, err
);
2836 v9fs_string_free(&name
);
2837 v9fs_string_free(&symname
);
2840 static void coroutine_fn
v9fs_flush(void *opaque
)
2845 V9fsPDU
*cancel_pdu
= NULL
;
2846 V9fsPDU
*pdu
= opaque
;
2847 V9fsState
*s
= pdu
->s
;
2849 err
= pdu_unmarshal(pdu
, offset
, "w", &tag
);
2851 pdu_complete(pdu
, err
);
2854 trace_v9fs_flush(pdu
->tag
, pdu
->id
, tag
);
2856 if (pdu
->tag
== tag
) {
2857 warn_report("the guest sent a self-referencing 9P flush request");
2859 QLIST_FOREACH(cancel_pdu
, &s
->active_list
, next
) {
2860 if (cancel_pdu
->tag
== tag
) {
2866 cancel_pdu
->cancelled
= 1;
2868 * Wait for pdu to complete.
2870 qemu_co_queue_wait(&cancel_pdu
->complete
, NULL
);
2871 if (!qemu_co_queue_next(&cancel_pdu
->complete
)) {
2872 cancel_pdu
->cancelled
= 0;
2873 pdu_free(cancel_pdu
);
2876 pdu_complete(pdu
, 7);
2879 static void coroutine_fn
v9fs_link(void *opaque
)
2881 V9fsPDU
*pdu
= opaque
;
2882 int32_t dfid
, oldfid
;
2883 V9fsFidState
*dfidp
, *oldfidp
;
2888 v9fs_string_init(&name
);
2889 err
= pdu_unmarshal(pdu
, offset
, "dds", &dfid
, &oldfid
, &name
);
2893 trace_v9fs_link(pdu
->tag
, pdu
->id
, dfid
, oldfid
, name
.data
);
2895 if (name_is_illegal(name
.data
)) {
2900 if (!strcmp(".", name
.data
) || !strcmp("..", name
.data
)) {
2905 dfidp
= get_fid(pdu
, dfid
);
2906 if (dfidp
== NULL
) {
2911 oldfidp
= get_fid(pdu
, oldfid
);
2912 if (oldfidp
== NULL
) {
2916 err
= v9fs_co_link(pdu
, oldfidp
, dfidp
, &name
);
2920 put_fid(pdu
, oldfidp
);
2922 put_fid(pdu
, dfidp
);
2924 v9fs_string_free(&name
);
2925 pdu_complete(pdu
, err
);
2928 /* Only works with path name based fid */
2929 static void coroutine_fn
v9fs_remove(void *opaque
)
2935 V9fsPDU
*pdu
= opaque
;
2937 err
= pdu_unmarshal(pdu
, offset
, "d", &fid
);
2941 trace_v9fs_remove(pdu
->tag
, pdu
->id
, fid
);
2943 fidp
= get_fid(pdu
, fid
);
2948 /* if fs driver is not path based, return EOPNOTSUPP */
2949 if (!(pdu
->s
->ctx
.export_flags
& V9FS_PATHNAME_FSCONTEXT
)) {
2954 * IF the file is unlinked, we cannot reopen
2955 * the file later. So don't reclaim fd
2957 err
= v9fs_mark_fids_unreclaim(pdu
, &fidp
->path
);
2961 err
= v9fs_co_remove(pdu
, &fidp
->path
);
2966 /* For TREMOVE we need to clunk the fid even on failed remove */
2967 clunk_fid(pdu
->s
, fidp
->fid
);
2970 pdu_complete(pdu
, err
);
2973 static void coroutine_fn
v9fs_unlinkat(void *opaque
)
2977 int32_t dfid
, flags
, rflags
= 0;
2980 V9fsFidState
*dfidp
;
2981 V9fsPDU
*pdu
= opaque
;
2983 v9fs_string_init(&name
);
2984 err
= pdu_unmarshal(pdu
, offset
, "dsd", &dfid
, &name
, &flags
);
2989 if (name_is_illegal(name
.data
)) {
2994 if (!strcmp(".", name
.data
)) {
2999 if (!strcmp("..", name
.data
)) {
3004 if (flags
& ~P9_DOTL_AT_REMOVEDIR
) {
3009 if (flags
& P9_DOTL_AT_REMOVEDIR
) {
3010 rflags
|= AT_REMOVEDIR
;
3013 dfidp
= get_fid(pdu
, dfid
);
3014 if (dfidp
== NULL
) {
3019 * IF the file is unlinked, we cannot reopen
3020 * the file later. So don't reclaim fd
3022 v9fs_path_init(&path
);
3023 err
= v9fs_co_name_to_path(pdu
, &dfidp
->path
, name
.data
, &path
);
3027 err
= v9fs_mark_fids_unreclaim(pdu
, &path
);
3031 err
= v9fs_co_unlinkat(pdu
, &dfidp
->path
, &name
, rflags
);
3036 put_fid(pdu
, dfidp
);
3037 v9fs_path_free(&path
);
3039 pdu_complete(pdu
, err
);
3040 v9fs_string_free(&name
);
3044 /* Only works with path name based fid */
3045 static int coroutine_fn
v9fs_complete_rename(V9fsPDU
*pdu
, V9fsFidState
*fidp
,
3051 V9fsFidState
*tfidp
;
3052 V9fsState
*s
= pdu
->s
;
3053 V9fsFidState
*dirfidp
= NULL
;
3055 v9fs_path_init(&new_path
);
3056 if (newdirfid
!= -1) {
3057 dirfidp
= get_fid(pdu
, newdirfid
);
3058 if (dirfidp
== NULL
) {
3062 if (fidp
->fid_type
!= P9_FID_NONE
) {
3066 err
= v9fs_co_name_to_path(pdu
, &dirfidp
->path
, name
->data
, &new_path
);
3071 char *dir_name
= g_path_get_dirname(fidp
->path
.data
);
3074 v9fs_path_init(&dir_path
);
3075 v9fs_path_sprintf(&dir_path
, "%s", dir_name
);
3078 err
= v9fs_co_name_to_path(pdu
, &dir_path
, name
->data
, &new_path
);
3079 v9fs_path_free(&dir_path
);
3084 err
= v9fs_co_rename(pdu
, &fidp
->path
, &new_path
);
3089 * Fixup fid's pointing to the old name to
3090 * start pointing to the new name
3092 for (tfidp
= s
->fid_list
; tfidp
; tfidp
= tfidp
->next
) {
3093 if (v9fs_path_is_ancestor(&fidp
->path
, &tfidp
->path
)) {
3094 /* replace the name */
3095 v9fs_fix_path(&tfidp
->path
, &new_path
, strlen(fidp
->path
.data
));
3100 put_fid(pdu
, dirfidp
);
3102 v9fs_path_free(&new_path
);
3107 /* Only works with path name based fid */
3108 static void coroutine_fn
v9fs_rename(void *opaque
)
3116 V9fsPDU
*pdu
= opaque
;
3117 V9fsState
*s
= pdu
->s
;
3119 v9fs_string_init(&name
);
3120 err
= pdu_unmarshal(pdu
, offset
, "dds", &fid
, &newdirfid
, &name
);
3125 if (name_is_illegal(name
.data
)) {
3130 if (!strcmp(".", name
.data
) || !strcmp("..", name
.data
)) {
3135 fidp
= get_fid(pdu
, fid
);
3140 if (fidp
->fid_type
!= P9_FID_NONE
) {
3144 /* if fs driver is not path based, return EOPNOTSUPP */
3145 if (!(pdu
->s
->ctx
.export_flags
& V9FS_PATHNAME_FSCONTEXT
)) {
3149 v9fs_path_write_lock(s
);
3150 err
= v9fs_complete_rename(pdu
, fidp
, newdirfid
, &name
);
3151 v9fs_path_unlock(s
);
3158 pdu_complete(pdu
, err
);
3159 v9fs_string_free(&name
);
3162 static int coroutine_fn
v9fs_fix_fid_paths(V9fsPDU
*pdu
, V9fsPath
*olddir
,
3163 V9fsString
*old_name
,
3165 V9fsString
*new_name
)
3167 V9fsFidState
*tfidp
;
3168 V9fsPath oldpath
, newpath
;
3169 V9fsState
*s
= pdu
->s
;
3172 v9fs_path_init(&oldpath
);
3173 v9fs_path_init(&newpath
);
3174 err
= v9fs_co_name_to_path(pdu
, olddir
, old_name
->data
, &oldpath
);
3178 err
= v9fs_co_name_to_path(pdu
, newdir
, new_name
->data
, &newpath
);
3184 * Fixup fid's pointing to the old name to
3185 * start pointing to the new name
3187 for (tfidp
= s
->fid_list
; tfidp
; tfidp
= tfidp
->next
) {
3188 if (v9fs_path_is_ancestor(&oldpath
, &tfidp
->path
)) {
3189 /* replace the name */
3190 v9fs_fix_path(&tfidp
->path
, &newpath
, strlen(oldpath
.data
));
3194 v9fs_path_free(&oldpath
);
3195 v9fs_path_free(&newpath
);
3199 static int coroutine_fn
v9fs_complete_renameat(V9fsPDU
*pdu
, int32_t olddirfid
,
3200 V9fsString
*old_name
,
3202 V9fsString
*new_name
)
3205 V9fsState
*s
= pdu
->s
;
3206 V9fsFidState
*newdirfidp
= NULL
, *olddirfidp
= NULL
;
3208 olddirfidp
= get_fid(pdu
, olddirfid
);
3209 if (olddirfidp
== NULL
) {
3213 if (newdirfid
!= -1) {
3214 newdirfidp
= get_fid(pdu
, newdirfid
);
3215 if (newdirfidp
== NULL
) {
3220 newdirfidp
= get_fid(pdu
, olddirfid
);
3223 err
= v9fs_co_renameat(pdu
, &olddirfidp
->path
, old_name
,
3224 &newdirfidp
->path
, new_name
);
3228 if (s
->ctx
.export_flags
& V9FS_PATHNAME_FSCONTEXT
) {
3229 /* Only for path based fid we need to do the below fixup */
3230 err
= v9fs_fix_fid_paths(pdu
, &olddirfidp
->path
, old_name
,
3231 &newdirfidp
->path
, new_name
);
3235 put_fid(pdu
, olddirfidp
);
3238 put_fid(pdu
, newdirfidp
);
3243 static void coroutine_fn
v9fs_renameat(void *opaque
)
3247 V9fsPDU
*pdu
= opaque
;
3248 V9fsState
*s
= pdu
->s
;
3249 int32_t olddirfid
, newdirfid
;
3250 V9fsString old_name
, new_name
;
3252 v9fs_string_init(&old_name
);
3253 v9fs_string_init(&new_name
);
3254 err
= pdu_unmarshal(pdu
, offset
, "dsds", &olddirfid
,
3255 &old_name
, &newdirfid
, &new_name
);
3260 if (name_is_illegal(old_name
.data
) || name_is_illegal(new_name
.data
)) {
3265 if (!strcmp(".", old_name
.data
) || !strcmp("..", old_name
.data
) ||
3266 !strcmp(".", new_name
.data
) || !strcmp("..", new_name
.data
)) {
3271 v9fs_path_write_lock(s
);
3272 err
= v9fs_complete_renameat(pdu
, olddirfid
,
3273 &old_name
, newdirfid
, &new_name
);
3274 v9fs_path_unlock(s
);
3280 pdu_complete(pdu
, err
);
3281 v9fs_string_free(&old_name
);
3282 v9fs_string_free(&new_name
);
3285 static void coroutine_fn
v9fs_wstat(void *opaque
)
3294 V9fsPDU
*pdu
= opaque
;
3295 V9fsState
*s
= pdu
->s
;
3297 v9fs_stat_init(&v9stat
);
3298 err
= pdu_unmarshal(pdu
, offset
, "dwS", &fid
, &unused
, &v9stat
);
3302 trace_v9fs_wstat(pdu
->tag
, pdu
->id
, fid
,
3303 v9stat
.mode
, v9stat
.atime
, v9stat
.mtime
);
3305 fidp
= get_fid(pdu
, fid
);
3310 /* do we need to sync the file? */
3311 if (donttouch_stat(&v9stat
)) {
3312 err
= v9fs_co_fsync(pdu
, fidp
, 0);
3315 if (v9stat
.mode
!= -1) {
3317 err
= v9fs_co_lstat(pdu
, &fidp
->path
, &stbuf
);
3321 v9_mode
= stat_to_v9mode(&stbuf
);
3322 if ((v9stat
.mode
& P9_STAT_MODE_TYPE_BITS
) !=
3323 (v9_mode
& P9_STAT_MODE_TYPE_BITS
)) {
3324 /* Attempting to change the type */
3328 err
= v9fs_co_chmod(pdu
, &fidp
->path
,
3329 v9mode_to_mode(v9stat
.mode
,
3330 &v9stat
.extension
));
3335 if (v9stat
.mtime
!= -1 || v9stat
.atime
!= -1) {
3336 struct timespec times
[2];
3337 if (v9stat
.atime
!= -1) {
3338 times
[0].tv_sec
= v9stat
.atime
;
3339 times
[0].tv_nsec
= 0;
3341 times
[0].tv_nsec
= UTIME_OMIT
;
3343 if (v9stat
.mtime
!= -1) {
3344 times
[1].tv_sec
= v9stat
.mtime
;
3345 times
[1].tv_nsec
= 0;
3347 times
[1].tv_nsec
= UTIME_OMIT
;
3349 err
= v9fs_co_utimensat(pdu
, &fidp
->path
, times
);
3354 if (v9stat
.n_gid
!= -1 || v9stat
.n_uid
!= -1) {
3355 err
= v9fs_co_chown(pdu
, &fidp
->path
, v9stat
.n_uid
, v9stat
.n_gid
);
3360 if (v9stat
.name
.size
!= 0) {
3361 v9fs_path_write_lock(s
);
3362 err
= v9fs_complete_rename(pdu
, fidp
, -1, &v9stat
.name
);
3363 v9fs_path_unlock(s
);
3368 if (v9stat
.length
!= -1) {
3369 err
= v9fs_co_truncate(pdu
, &fidp
->path
, v9stat
.length
);
3378 v9fs_stat_free(&v9stat
);
3379 pdu_complete(pdu
, err
);
3382 static int v9fs_fill_statfs(V9fsState
*s
, V9fsPDU
*pdu
, struct statfs
*stbuf
)
3394 int32_t bsize_factor
;
3397 * compute bsize factor based on host file system block size
3400 bsize_factor
= (s
->msize
- P9_IOHDRSZ
)/stbuf
->f_bsize
;
3401 if (!bsize_factor
) {
3404 f_type
= stbuf
->f_type
;
3405 f_bsize
= stbuf
->f_bsize
;
3406 f_bsize
*= bsize_factor
;
3408 * f_bsize is adjusted(multiplied) by bsize factor, so we need to
3409 * adjust(divide) the number of blocks, free blocks and available
3410 * blocks by bsize factor
3412 f_blocks
= stbuf
->f_blocks
/bsize_factor
;
3413 f_bfree
= stbuf
->f_bfree
/bsize_factor
;
3414 f_bavail
= stbuf
->f_bavail
/bsize_factor
;
3415 f_files
= stbuf
->f_files
;
3416 f_ffree
= stbuf
->f_ffree
;
3417 fsid_val
= (unsigned int) stbuf
->f_fsid
.__val
[0] |
3418 (unsigned long long)stbuf
->f_fsid
.__val
[1] << 32;
3419 f_namelen
= stbuf
->f_namelen
;
3421 return pdu_marshal(pdu
, offset
, "ddqqqqqqd",
3422 f_type
, f_bsize
, f_blocks
, f_bfree
,
3423 f_bavail
, f_files
, f_ffree
,
3424 fsid_val
, f_namelen
);
3427 static void coroutine_fn
v9fs_statfs(void *opaque
)
3433 struct statfs stbuf
;
3434 V9fsPDU
*pdu
= opaque
;
3435 V9fsState
*s
= pdu
->s
;
3437 retval
= pdu_unmarshal(pdu
, offset
, "d", &fid
);
3441 fidp
= get_fid(pdu
, fid
);
3446 retval
= v9fs_co_statfs(pdu
, &fidp
->path
, &stbuf
);
3450 retval
= v9fs_fill_statfs(s
, pdu
, &stbuf
);
3458 pdu_complete(pdu
, retval
);
3461 static void coroutine_fn
v9fs_mknod(void *opaque
)
3474 V9fsPDU
*pdu
= opaque
;
3476 v9fs_string_init(&name
);
3477 err
= pdu_unmarshal(pdu
, offset
, "dsdddd", &fid
, &name
, &mode
,
3478 &major
, &minor
, &gid
);
3482 trace_v9fs_mknod(pdu
->tag
, pdu
->id
, fid
, mode
, major
, minor
);
3484 if (name_is_illegal(name
.data
)) {
3489 if (!strcmp(".", name
.data
) || !strcmp("..", name
.data
)) {
3494 fidp
= get_fid(pdu
, fid
);
3499 err
= v9fs_co_mknod(pdu
, fidp
, &name
, fidp
->uid
, gid
,
3500 makedev(major
, minor
), mode
, &stbuf
);
3504 err
= stat_to_qid(pdu
, &stbuf
, &qid
);
3508 err
= pdu_marshal(pdu
, offset
, "Q", &qid
);
3513 trace_v9fs_mknod_return(pdu
->tag
, pdu
->id
,
3514 qid
.type
, qid
.version
, qid
.path
);
3518 pdu_complete(pdu
, err
);
3519 v9fs_string_free(&name
);
3523 * Implement posix byte range locking code
3524 * Server side handling of locking code is very simple, because 9p server in
3525 * QEMU can handle only one client. And most of the lock handling
3526 * (like conflict, merging) etc is done by the VFS layer itself, so no need to
3527 * do any thing in * qemu 9p server side lock code path.
3528 * So when a TLOCK request comes, always return success
3530 static void coroutine_fn
v9fs_lock(void *opaque
)
3536 int32_t fid
, err
= 0;
3537 V9fsPDU
*pdu
= opaque
;
3539 v9fs_string_init(&flock
.client_id
);
3540 err
= pdu_unmarshal(pdu
, offset
, "dbdqqds", &fid
, &flock
.type
,
3541 &flock
.flags
, &flock
.start
, &flock
.length
,
3542 &flock
.proc_id
, &flock
.client_id
);
3546 trace_v9fs_lock(pdu
->tag
, pdu
->id
, fid
,
3547 flock
.type
, flock
.start
, flock
.length
);
3550 /* We support only block flag now (that too ignored currently) */
3551 if (flock
.flags
& ~P9_LOCK_FLAGS_BLOCK
) {
3555 fidp
= get_fid(pdu
, fid
);
3560 err
= v9fs_co_fstat(pdu
, fidp
, &stbuf
);
3564 err
= pdu_marshal(pdu
, offset
, "b", P9_LOCK_SUCCESS
);
3569 trace_v9fs_lock_return(pdu
->tag
, pdu
->id
, P9_LOCK_SUCCESS
);
3573 pdu_complete(pdu
, err
);
3574 v9fs_string_free(&flock
.client_id
);
3578 * When a TGETLOCK request comes, always return success because all lock
3579 * handling is done by client's VFS layer.
3581 static void coroutine_fn
v9fs_getlock(void *opaque
)
3587 int32_t fid
, err
= 0;
3588 V9fsPDU
*pdu
= opaque
;
3590 v9fs_string_init(&glock
.client_id
);
3591 err
= pdu_unmarshal(pdu
, offset
, "dbqqds", &fid
, &glock
.type
,
3592 &glock
.start
, &glock
.length
, &glock
.proc_id
,
3597 trace_v9fs_getlock(pdu
->tag
, pdu
->id
, fid
,
3598 glock
.type
, glock
.start
, glock
.length
);
3600 fidp
= get_fid(pdu
, fid
);
3605 err
= v9fs_co_fstat(pdu
, fidp
, &stbuf
);
3609 glock
.type
= P9_LOCK_TYPE_UNLCK
;
3610 err
= pdu_marshal(pdu
, offset
, "bqqds", glock
.type
,
3611 glock
.start
, glock
.length
, glock
.proc_id
,
3617 trace_v9fs_getlock_return(pdu
->tag
, pdu
->id
, glock
.type
, glock
.start
,
3618 glock
.length
, glock
.proc_id
);
3622 pdu_complete(pdu
, err
);
3623 v9fs_string_free(&glock
.client_id
);
3626 static void coroutine_fn
v9fs_mkdir(void *opaque
)
3628 V9fsPDU
*pdu
= opaque
;
3639 v9fs_string_init(&name
);
3640 err
= pdu_unmarshal(pdu
, offset
, "dsdd", &fid
, &name
, &mode
, &gid
);
3644 trace_v9fs_mkdir(pdu
->tag
, pdu
->id
, fid
, name
.data
, mode
, gid
);
3646 if (name_is_illegal(name
.data
)) {
3651 if (!strcmp(".", name
.data
) || !strcmp("..", name
.data
)) {
3656 fidp
= get_fid(pdu
, fid
);
3661 err
= v9fs_co_mkdir(pdu
, fidp
, &name
, mode
, fidp
->uid
, gid
, &stbuf
);
3665 err
= stat_to_qid(pdu
, &stbuf
, &qid
);
3669 err
= pdu_marshal(pdu
, offset
, "Q", &qid
);
3674 trace_v9fs_mkdir_return(pdu
->tag
, pdu
->id
,
3675 qid
.type
, qid
.version
, qid
.path
, err
);
3679 pdu_complete(pdu
, err
);
3680 v9fs_string_free(&name
);
3683 static void coroutine_fn
v9fs_xattrwalk(void *opaque
)
3689 int32_t fid
, newfid
;
3690 V9fsFidState
*file_fidp
;
3691 V9fsFidState
*xattr_fidp
= NULL
;
3692 V9fsPDU
*pdu
= opaque
;
3693 V9fsState
*s
= pdu
->s
;
3695 v9fs_string_init(&name
);
3696 err
= pdu_unmarshal(pdu
, offset
, "dds", &fid
, &newfid
, &name
);
3700 trace_v9fs_xattrwalk(pdu
->tag
, pdu
->id
, fid
, newfid
, name
.data
);
3702 file_fidp
= get_fid(pdu
, fid
);
3703 if (file_fidp
== NULL
) {
3707 xattr_fidp
= alloc_fid(s
, newfid
);
3708 if (xattr_fidp
== NULL
) {
3712 v9fs_path_copy(&xattr_fidp
->path
, &file_fidp
->path
);
3713 if (!v9fs_string_size(&name
)) {
3715 * listxattr request. Get the size first
3717 size
= v9fs_co_llistxattr(pdu
, &xattr_fidp
->path
, NULL
, 0);
3720 clunk_fid(s
, xattr_fidp
->fid
);
3724 * Read the xattr value
3726 xattr_fidp
->fs
.xattr
.len
= size
;
3727 xattr_fidp
->fid_type
= P9_FID_XATTR
;
3728 xattr_fidp
->fs
.xattr
.xattrwalk_fid
= true;
3729 xattr_fidp
->fs
.xattr
.value
= g_malloc0(size
);
3731 err
= v9fs_co_llistxattr(pdu
, &xattr_fidp
->path
,
3732 xattr_fidp
->fs
.xattr
.value
,
3733 xattr_fidp
->fs
.xattr
.len
);
3735 clunk_fid(s
, xattr_fidp
->fid
);
3739 err
= pdu_marshal(pdu
, offset
, "q", size
);
3746 * specific xattr fid. We check for xattr
3747 * presence also collect the xattr size
3749 size
= v9fs_co_lgetxattr(pdu
, &xattr_fidp
->path
,
3753 clunk_fid(s
, xattr_fidp
->fid
);
3757 * Read the xattr value
3759 xattr_fidp
->fs
.xattr
.len
= size
;
3760 xattr_fidp
->fid_type
= P9_FID_XATTR
;
3761 xattr_fidp
->fs
.xattr
.xattrwalk_fid
= true;
3762 xattr_fidp
->fs
.xattr
.value
= g_malloc0(size
);
3764 err
= v9fs_co_lgetxattr(pdu
, &xattr_fidp
->path
,
3765 &name
, xattr_fidp
->fs
.xattr
.value
,
3766 xattr_fidp
->fs
.xattr
.len
);
3768 clunk_fid(s
, xattr_fidp
->fid
);
3772 err
= pdu_marshal(pdu
, offset
, "q", size
);
3778 trace_v9fs_xattrwalk_return(pdu
->tag
, pdu
->id
, size
);
3780 put_fid(pdu
, file_fidp
);
3782 put_fid(pdu
, xattr_fidp
);
3785 pdu_complete(pdu
, err
);
3786 v9fs_string_free(&name
);
3789 static void coroutine_fn
v9fs_xattrcreate(void *opaque
)
3791 int flags
, rflags
= 0;
3797 V9fsFidState
*file_fidp
;
3798 V9fsFidState
*xattr_fidp
;
3799 V9fsPDU
*pdu
= opaque
;
3801 v9fs_string_init(&name
);
3802 err
= pdu_unmarshal(pdu
, offset
, "dsqd", &fid
, &name
, &size
, &flags
);
3806 trace_v9fs_xattrcreate(pdu
->tag
, pdu
->id
, fid
, name
.data
, size
, flags
);
3808 if (flags
& ~(P9_XATTR_CREATE
| P9_XATTR_REPLACE
)) {
3813 if (flags
& P9_XATTR_CREATE
) {
3814 rflags
|= XATTR_CREATE
;
3817 if (flags
& P9_XATTR_REPLACE
) {
3818 rflags
|= XATTR_REPLACE
;
3821 if (size
> XATTR_SIZE_MAX
) {
3826 file_fidp
= get_fid(pdu
, fid
);
3827 if (file_fidp
== NULL
) {
3831 if (file_fidp
->fid_type
!= P9_FID_NONE
) {
3836 /* Make the file fid point to xattr */
3837 xattr_fidp
= file_fidp
;
3838 xattr_fidp
->fid_type
= P9_FID_XATTR
;
3839 xattr_fidp
->fs
.xattr
.copied_len
= 0;
3840 xattr_fidp
->fs
.xattr
.xattrwalk_fid
= false;
3841 xattr_fidp
->fs
.xattr
.len
= size
;
3842 xattr_fidp
->fs
.xattr
.flags
= rflags
;
3843 v9fs_string_init(&xattr_fidp
->fs
.xattr
.name
);
3844 v9fs_string_copy(&xattr_fidp
->fs
.xattr
.name
, &name
);
3845 xattr_fidp
->fs
.xattr
.value
= g_malloc0(size
);
3848 put_fid(pdu
, file_fidp
);
3850 pdu_complete(pdu
, err
);
3851 v9fs_string_free(&name
);
3854 static void coroutine_fn
v9fs_readlink(void *opaque
)
3856 V9fsPDU
*pdu
= opaque
;
3863 err
= pdu_unmarshal(pdu
, offset
, "d", &fid
);
3867 trace_v9fs_readlink(pdu
->tag
, pdu
->id
, fid
);
3868 fidp
= get_fid(pdu
, fid
);
3874 v9fs_string_init(&target
);
3875 err
= v9fs_co_readlink(pdu
, &fidp
->path
, &target
);
3879 err
= pdu_marshal(pdu
, offset
, "s", &target
);
3881 v9fs_string_free(&target
);
3885 trace_v9fs_readlink_return(pdu
->tag
, pdu
->id
, target
.data
);
3886 v9fs_string_free(&target
);
3890 pdu_complete(pdu
, err
);
3893 static CoroutineEntry
*pdu_co_handlers
[] = {
3894 [P9_TREADDIR
] = v9fs_readdir
,
3895 [P9_TSTATFS
] = v9fs_statfs
,
3896 [P9_TGETATTR
] = v9fs_getattr
,
3897 [P9_TSETATTR
] = v9fs_setattr
,
3898 [P9_TXATTRWALK
] = v9fs_xattrwalk
,
3899 [P9_TXATTRCREATE
] = v9fs_xattrcreate
,
3900 [P9_TMKNOD
] = v9fs_mknod
,
3901 [P9_TRENAME
] = v9fs_rename
,
3902 [P9_TLOCK
] = v9fs_lock
,
3903 [P9_TGETLOCK
] = v9fs_getlock
,
3904 [P9_TRENAMEAT
] = v9fs_renameat
,
3905 [P9_TREADLINK
] = v9fs_readlink
,
3906 [P9_TUNLINKAT
] = v9fs_unlinkat
,
3907 [P9_TMKDIR
] = v9fs_mkdir
,
3908 [P9_TVERSION
] = v9fs_version
,
3909 [P9_TLOPEN
] = v9fs_open
,
3910 [P9_TATTACH
] = v9fs_attach
,
3911 [P9_TSTAT
] = v9fs_stat
,
3912 [P9_TWALK
] = v9fs_walk
,
3913 [P9_TCLUNK
] = v9fs_clunk
,
3914 [P9_TFSYNC
] = v9fs_fsync
,
3915 [P9_TOPEN
] = v9fs_open
,
3916 [P9_TREAD
] = v9fs_read
,
3918 [P9_TAUTH
] = v9fs_auth
,
3920 [P9_TFLUSH
] = v9fs_flush
,
3921 [P9_TLINK
] = v9fs_link
,
3922 [P9_TSYMLINK
] = v9fs_symlink
,
3923 [P9_TCREATE
] = v9fs_create
,
3924 [P9_TLCREATE
] = v9fs_lcreate
,
3925 [P9_TWRITE
] = v9fs_write
,
3926 [P9_TWSTAT
] = v9fs_wstat
,
3927 [P9_TREMOVE
] = v9fs_remove
,
3930 static void coroutine_fn
v9fs_op_not_supp(void *opaque
)
3932 V9fsPDU
*pdu
= opaque
;
3933 pdu_complete(pdu
, -EOPNOTSUPP
);
3936 static void coroutine_fn
v9fs_fs_ro(void *opaque
)
3938 V9fsPDU
*pdu
= opaque
;
3939 pdu_complete(pdu
, -EROFS
);
3942 static inline bool is_read_only_op(V9fsPDU
*pdu
)
3969 void pdu_submit(V9fsPDU
*pdu
, P9MsgHeader
*hdr
)
3972 CoroutineEntry
*handler
;
3973 V9fsState
*s
= pdu
->s
;
3975 pdu
->size
= le32_to_cpu(hdr
->size_le
);
3977 pdu
->tag
= le16_to_cpu(hdr
->tag_le
);
3979 if (pdu
->id
>= ARRAY_SIZE(pdu_co_handlers
) ||
3980 (pdu_co_handlers
[pdu
->id
] == NULL
)) {
3981 handler
= v9fs_op_not_supp
;
3982 } else if (is_ro_export(&s
->ctx
) && !is_read_only_op(pdu
)) {
3983 handler
= v9fs_fs_ro
;
3985 handler
= pdu_co_handlers
[pdu
->id
];
3988 qemu_co_queue_init(&pdu
->complete
);
3989 co
= qemu_coroutine_create(handler
, pdu
);
3990 qemu_coroutine_enter(co
);
3993 /* Returns 0 on success, 1 on failure. */
3994 int v9fs_device_realize_common(V9fsState
*s
, const V9fsTransport
*t
,
4003 assert(!s
->transport
);
4006 /* initialize pdu allocator */
4007 QLIST_INIT(&s
->free_list
);
4008 QLIST_INIT(&s
->active_list
);
4009 for (i
= 0; i
< MAX_REQ
; i
++) {
4010 QLIST_INSERT_HEAD(&s
->free_list
, &s
->pdus
[i
], next
);
4015 v9fs_path_init(&path
);
4017 fse
= get_fsdev_fsentry(s
->fsconf
.fsdev_id
);
4020 /* We don't have a fsdev identified by fsdev_id */
4021 error_setg(errp
, "9pfs device couldn't find fsdev with the "
4023 s
->fsconf
.fsdev_id
? s
->fsconf
.fsdev_id
: "NULL");
4027 if (!s
->fsconf
.tag
) {
4028 /* we haven't specified a mount_tag */
4029 error_setg(errp
, "fsdev with id %s needs mount_tag arguments",
4030 s
->fsconf
.fsdev_id
);
4034 s
->ctx
.export_flags
= fse
->export_flags
;
4035 s
->ctx
.fs_root
= g_strdup(fse
->path
);
4036 s
->ctx
.exops
.get_st_gen
= NULL
;
4037 len
= strlen(s
->fsconf
.tag
);
4038 if (len
> MAX_TAG_LEN
- 1) {
4039 error_setg(errp
, "mount tag '%s' (%d bytes) is longer than "
4040 "maximum (%d bytes)", s
->fsconf
.tag
, len
, MAX_TAG_LEN
- 1);
4044 s
->tag
= g_strdup(s
->fsconf
.tag
);
4049 s
->ctx
.fmode
= fse
->fmode
;
4050 s
->ctx
.dmode
= fse
->dmode
;
4053 qemu_co_rwlock_init(&s
->rename_lock
);
4055 if (s
->ops
->init(&s
->ctx
, errp
) < 0) {
4056 error_prepend(errp
, "cannot initialize fsdev '%s': ",
4057 s
->fsconf
.fsdev_id
);
4062 * Check details of export path, We need to use fs driver
4063 * call back to do that. Since we are in the init path, we don't
4064 * use co-routines here.
4066 if (s
->ops
->name_to_path(&s
->ctx
, NULL
, "/", &path
) < 0) {
4068 "error in converting name to path %s", strerror(errno
));
4071 if (s
->ops
->lstat(&s
->ctx
, &path
, &stat
)) {
4072 error_setg(errp
, "share path %s does not exist", fse
->path
);
4074 } else if (!S_ISDIR(stat
.st_mode
)) {
4075 error_setg(errp
, "share path %s is not a directory", fse
->path
);
4079 s
->dev_id
= stat
.st_dev
;
4081 /* init inode remapping : */
4082 /* hash table for variable length inode suffixes */
4083 qpd_table_init(&s
->qpd_table
);
4084 /* hash table for slow/full inode remapping (most users won't need it) */
4085 qpf_table_init(&s
->qpf_table
);
4086 /* hash table for quick inode remapping */
4087 qpp_table_init(&s
->qpp_table
);
4089 s
->qp_affix_next
= 1; /* reserve 0 to detect overflow */
4090 s
->qp_fullpath_next
= 1;
4092 s
->ctx
.fst
= &fse
->fst
;
4093 fsdev_throttle_init(s
->ctx
.fst
);
4098 v9fs_device_unrealize_common(s
, NULL
);
4100 v9fs_path_free(&path
);
4104 void v9fs_device_unrealize_common(V9fsState
*s
, Error
**errp
)
4106 if (s
->ops
&& s
->ops
->cleanup
) {
4107 s
->ops
->cleanup(&s
->ctx
);
4110 fsdev_throttle_cleanup(s
->ctx
.fst
);
4113 qp_table_destroy(&s
->qpd_table
);
4114 qp_table_destroy(&s
->qpp_table
);
4115 qp_table_destroy(&s
->qpf_table
);
4116 g_free(s
->ctx
.fs_root
);
4119 typedef struct VirtfsCoResetData
{
4122 } VirtfsCoResetData
;
4124 static void coroutine_fn
virtfs_co_reset(void *opaque
)
4126 VirtfsCoResetData
*data
= opaque
;
4128 virtfs_reset(&data
->pdu
);
4132 void v9fs_reset(V9fsState
*s
)
4134 VirtfsCoResetData data
= { .pdu
= { .s
= s
}, .done
= false };
4137 while (!QLIST_EMPTY(&s
->active_list
)) {
4138 aio_poll(qemu_get_aio_context(), true);
4141 co
= qemu_coroutine_create(virtfs_co_reset
, &data
);
4142 qemu_coroutine_enter(co
);
4144 while (!data
.done
) {
4145 aio_poll(qemu_get_aio_context(), true);
4149 static void __attribute__((__constructor__
)) v9fs_set_fd_limit(void)
4152 if (getrlimit(RLIMIT_NOFILE
, &rlim
) < 0) {
4153 error_report("Failed to get the resource limit");
4156 open_fd_hw
= rlim
.rlim_cur
- MIN(400, rlim
.rlim_cur
/3);
4157 open_fd_rc
= rlim
.rlim_cur
/2;