6 #include <sys/resource.h>
7 #include "fsdev/file-op-9p.h"
8 #include "fsdev/9p-iov-marshal.h"
9 #include "qemu/thread.h"
10 #include "qemu/coroutine.h"
98 typedef enum P9ProtoVersion {
99 V9FS_PROTO_2000U = 0x01,
100 V9FS_PROTO_2000L = 0x02,
104 * @brief Minimum message size supported by this 9pfs server.
106 * A client establishes a session by sending a Tversion request along with a
107 * 'msize' parameter which suggests the server a maximum message size ever to be
108 * used for communication (for both requests and replies) between client and
109 * server during that session. If client suggests a 'msize' smaller than this
110 * value then session is denied by server with an error response.
112 #define P9_MIN_MSIZE 4096
114 #define P9_NOTAG UINT16_MAX
115 #define P9_NOFID UINT32_MAX
116 #define P9_MAXWELEM 16
118 #define FID_REFERENCED 0x1
119 #define FID_NON_RECLAIMABLE 0x2
120 static inline char *rpath(FsContext *ctx, const char *path)
122 return g_strdup_printf("%s/%s", ctx->fs_root, path);
126 * ample room for Twrite/Rread header
127 * size[4] Tread/Twrite tag[2] fid[4] offset[8] count[4]
129 #define P9_IOHDRSZ 24
131 typedef struct V9fsPDU V9fsPDU;
132 typedef struct V9fsState V9fsState;
133 typedef struct V9fsTransport V9fsTransport;
139 } QEMU_PACKED P9MsgHeader;
140 /* According to the specification, 9p messages start with a 7-byte header.
141 * Since most of the code uses this header size in literal form, we must be
142 * sure this is indeed the case.
144 QEMU_BUILD_BUG_ON(sizeof(P9MsgHeader) != 7);
154 QLIST_ENTRY(V9fsPDU) next;
160 * 1) change user needs to set groups and stuff
164 #define MAX_TAG_LEN 32
166 #define BUG_ON(cond) assert(!(cond))
168 typedef struct V9fsFidState V9fsFidState;
177 typedef struct V9fsConf
179 /* tag name for the device */
184 /* 9p2000.L xattr flags (matches Linux values) */
185 #define P9_XATTR_CREATE 1
186 #define P9_XATTR_REPLACE 2
188 typedef struct V9fsXattr
198 typedef struct V9fsDir {
200 P9ProtoVersion proto_version;
201 /* readdir mutex type used for 9P2000.u protocol variant */
202 CoMutex readdir_mutex_u;
203 /* readdir mutex type used for 9P2000.L protocol variant */
204 QemuMutex readdir_mutex_L;
207 static inline void v9fs_readdir_lock(V9fsDir *dir)
209 if (dir->proto_version == V9FS_PROTO_2000U) {
210 qemu_co_mutex_lock(&dir->readdir_mutex_u);
212 qemu_mutex_lock(&dir->readdir_mutex_L);
216 static inline void v9fs_readdir_unlock(V9fsDir *dir)
218 if (dir->proto_version == V9FS_PROTO_2000U) {
219 qemu_co_mutex_unlock(&dir->readdir_mutex_u);
221 qemu_mutex_unlock(&dir->readdir_mutex_L);
225 static inline void v9fs_readdir_init(P9ProtoVersion proto_version, V9fsDir *dir)
227 dir->proto_version = proto_version;
228 if (proto_version == V9FS_PROTO_2000U) {
229 qemu_co_mutex_init(&dir->readdir_mutex_u);
231 qemu_mutex_init(&dir->readdir_mutex_L);
236 * Type for 9p fs drivers' (a.k.a. 9p backends) result of readdir requests,
237 * which is a chained list of directory entries.
239 typedef struct V9fsDirEnt {
240 /* mandatory (must not be NULL) information for all readdir requests */
243 * optional (may be NULL): A full stat of each directory entry is just
244 * done if explicitly told to fs driver.
248 * instead of an array, directory entries are always returned as
249 * chained list, that's because the amount of entries retrieved by fs
250 * drivers is dependent on the individual entries' name (since response
251 * messages are size limited), so the final amount cannot be estimated
254 struct V9fsDirEnt *next;
258 * Filled by fs driver on open and other
261 union V9fsFidOpenState {
266 * private pointer for fs drivers, that
267 * have its own internal representation of
279 V9fsFidOpenState fs_reclaim;
286 V9fsFidState *rclm_lst;
289 typedef enum AffixType_t {
291 AffixType_Suffix, /* A.k.a. postfix. */
295 * @brief Unique affix of variable length.
297 * An affix is (currently) either a suffix or a prefix, which is either
298 * going to be prepended (prefix) or appended (suffix) with some other
299 * number for the goal to generate unique numbers. Accordingly the
300 * suffixes (or prefixes) we generate @b must all have the mathematical
301 * property of being suffix-free (or prefix-free in case of prefixes)
302 * so that no matter what number we concatenate the affix with, that we
303 * always reliably get unique numbers as result after concatenation.
305 typedef struct VariLenAffix {
306 AffixType_t type; /* Whether this affix is a suffix or a prefix. */
307 uint64_t value; /* Actual numerical value of this affix. */
309 * Lenght of the affix, that is how many (of the lowest) bits of @c value
310 * must be used for appending/prepending this affix to its final resulting,
316 /* See qid_inode_prefix_hash_bits(). */
318 dev_t dev; /* FS device on host. */
320 * How many (high) bits of the original inode number shall be used for
326 /* QID path prefix entry, see stat_to_qid */
330 uint32_t qp_affix_index;
331 VariLenAffix qp_affix;
334 /* QID path full entry, as above */
343 QLIST_HEAD(, V9fsPDU) free_list;
344 QLIST_HEAD(, V9fsPDU) active_list;
345 V9fsFidState *fid_list;
349 P9ProtoVersion proto_version;
351 V9fsPDU pdus[MAX_REQ];
352 const V9fsTransport *transport;
354 * lock ensuring atomic path update
357 CoRwlock rename_lock;
359 Error *migration_blocker;
363 struct qht qpd_table;
364 struct qht qpp_table;
365 struct qht qpf_table;
366 uint64_t qp_ndevices; /* Amount of entries in qpd_table. */
367 uint16_t qp_affix_next;
368 uint64_t qp_fullpath_next;
371 /* 9p2000.L open flags */
372 #define P9_DOTL_RDONLY 00000000
373 #define P9_DOTL_WRONLY 00000001
374 #define P9_DOTL_RDWR 00000002
375 #define P9_DOTL_NOACCESS 00000003
376 #define P9_DOTL_CREATE 00000100
377 #define P9_DOTL_EXCL 00000200
378 #define P9_DOTL_NOCTTY 00000400
379 #define P9_DOTL_TRUNC 00001000
380 #define P9_DOTL_APPEND 00002000
381 #define P9_DOTL_NONBLOCK 00004000
382 #define P9_DOTL_DSYNC 00010000
383 #define P9_DOTL_FASYNC 00020000
384 #define P9_DOTL_DIRECT 00040000
385 #define P9_DOTL_LARGEFILE 00100000
386 #define P9_DOTL_DIRECTORY 00200000
387 #define P9_DOTL_NOFOLLOW 00400000
388 #define P9_DOTL_NOATIME 01000000
389 #define P9_DOTL_CLOEXEC 02000000
390 #define P9_DOTL_SYNC 04000000
392 /* 9p2000.L at flags */
393 #define P9_DOTL_AT_REMOVEDIR 0x200
395 /* 9P2000.L lock type */
396 #define P9_LOCK_TYPE_RDLCK 0
397 #define P9_LOCK_TYPE_WRLCK 1
398 #define P9_LOCK_TYPE_UNLCK 2
400 #define P9_LOCK_SUCCESS 0
401 #define P9_LOCK_BLOCKED 1
402 #define P9_LOCK_ERROR 2
403 #define P9_LOCK_GRACE 3
405 #define P9_LOCK_FLAGS_BLOCK 1
406 #define P9_LOCK_FLAGS_RECLAIM 2
408 typedef struct V9fsFlock
412 uint64_t start; /* absolute offset */
415 V9fsString client_id;
418 typedef struct V9fsGetlock
421 uint64_t start; /* absolute offset */
424 V9fsString client_id;
427 extern int open_fd_hw;
428 extern int total_open_fd;
430 static inline void v9fs_path_write_lock(V9fsState *s)
432 if (s->ctx.export_flags & V9FS_PATHNAME_FSCONTEXT) {
433 qemu_co_rwlock_wrlock(&s->rename_lock);
437 static inline void v9fs_path_read_lock(V9fsState *s)
439 if (s->ctx.export_flags & V9FS_PATHNAME_FSCONTEXT) {
440 qemu_co_rwlock_rdlock(&s->rename_lock);
444 static inline void v9fs_path_unlock(V9fsState *s)
446 if (s->ctx.export_flags & V9FS_PATHNAME_FSCONTEXT) {
447 qemu_co_rwlock_unlock(&s->rename_lock);
451 static inline uint8_t v9fs_request_cancelled(V9fsPDU *pdu)
453 return pdu->cancelled;
456 void coroutine_fn v9fs_reclaim_fd(V9fsPDU *pdu);
457 void v9fs_path_init(V9fsPath *path);
458 void v9fs_path_free(V9fsPath *path);
459 void v9fs_path_sprintf(V9fsPath *path, const char *fmt, ...);
460 void v9fs_path_copy(V9fsPath *dst, const V9fsPath *src);
461 size_t v9fs_readdir_response_size(V9fsString *name);
462 int v9fs_name_to_path(V9fsState *s, V9fsPath *dirpath,
463 const char *name, V9fsPath *path);
464 int v9fs_device_realize_common(V9fsState *s, const V9fsTransport *t,
466 void v9fs_device_unrealize_common(V9fsState *s);
468 V9fsPDU *pdu_alloc(V9fsState *s);
469 void pdu_free(V9fsPDU *pdu);
470 void pdu_submit(V9fsPDU *pdu, P9MsgHeader *hdr);
471 void v9fs_reset(V9fsState *s);
473 struct V9fsTransport {
474 ssize_t (*pdu_vmarshal)(V9fsPDU *pdu, size_t offset, const char *fmt,
476 ssize_t (*pdu_vunmarshal)(V9fsPDU *pdu, size_t offset, const char *fmt,
478 void (*init_in_iov_from_pdu)(V9fsPDU *pdu, struct iovec **piov,
479 unsigned int *pniov, size_t size);
480 void (*init_out_iov_from_pdu)(V9fsPDU *pdu, struct iovec **piov,
481 unsigned int *pniov, size_t size);
482 void (*push_and_notify)(V9fsPDU *pdu);