mirror of
https://github.com/izzy2lost/xemu.git
synced 2026-07-06 00:20:22 -07:00
Merge remote-tracking branch 'remotes/gkurz/tags/for-upstream' into staging
This pull request contains: - a patch to add a vdc->reset() handler to virtio-9p - a bunch of patches to fix various memory leaks (thanks to Li Qiang) - some code cleanups for 9pfs # gpg: Signature made Mon 17 Oct 2016 16:01:46 BST # gpg: using DSA key 0x02FC3AEB0101DBC2 # gpg: Good signature from "Greg Kurz <groug@kaod.org>" # gpg: aka "Greg Kurz <groug@free.fr>" # gpg: aka "Greg Kurz <gkurz@fr.ibm.com>" # gpg: aka "Greg Kurz <gkurz@linux.vnet.ibm.com>" # gpg: aka "Gregory Kurz (Groug) <groug@free.fr>" # gpg: aka "Gregory Kurz (Cimai Technology) <gkurz@cimai.com>" # gpg: aka "Gregory Kurz (Meiosys Technology) <gkurz@meiosys.com>" # gpg: WARNING: This key is not certified with a trusted signature! # gpg: There is no indication that the signature belongs to the owner. # Primary key fingerprint: 2BD4 3B44 535E C0A7 9894 DBA2 02FC 3AEB 0101 DBC2 * remotes/gkurz/tags/for-upstream: 9pfs: fix memory leak in v9fs_write 9pfs: fix memory leak in v9fs_link 9pfs: fix memory leak in v9fs_xattrcreate 9pfs: fix information leak in xattr read virtio-9p: add reset handler 9pfs: only free completed request if not flushed 9pfs: drop useless check in pdu_free() 9pfs: use coroutine_fn annotation in hw/9pfs/9p.[ch] 9pfs: use coroutine_fn annotation in hw/9pfs/co*.[ch] 9pfs: fsdev: drop useless extern annotation for functions 9pfs: fix potential host memory leak in v9fs_read 9pfs: allocate space for guest originated empty strings Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
This commit is contained in:
@@ -125,7 +125,7 @@ ssize_t v9fs_iov_vunmarshal(struct iovec *out_sg, int out_num, size_t offset,
|
||||
str->data = g_malloc(str->size + 1);
|
||||
copied = v9fs_unpack(str->data, out_sg, out_num, offset,
|
||||
str->size);
|
||||
if (copied > 0) {
|
||||
if (copied >= 0) {
|
||||
str->data[str->size] = 0;
|
||||
} else {
|
||||
v9fs_string_free(str);
|
||||
|
||||
+3
-3
@@ -76,8 +76,8 @@ static inline void v9fs_string_init(V9fsString *str)
|
||||
str->data = NULL;
|
||||
str->size = 0;
|
||||
}
|
||||
extern void v9fs_string_free(V9fsString *str);
|
||||
extern void v9fs_string_sprintf(V9fsString *str, const char *fmt, ...);
|
||||
extern void v9fs_string_copy(V9fsString *lhs, V9fsString *rhs);
|
||||
void v9fs_string_free(V9fsString *str);
|
||||
void v9fs_string_sprintf(V9fsString *str, const char *fmt, ...);
|
||||
void v9fs_string_copy(V9fsString *lhs, V9fsString *rhs);
|
||||
|
||||
#endif
|
||||
|
||||
+5
-5
@@ -43,10 +43,10 @@ typedef struct V9fsSynthOpenState {
|
||||
struct dirent dent;
|
||||
} V9fsSynthOpenState;
|
||||
|
||||
extern int qemu_v9fs_synth_mkdir(V9fsSynthNode *parent, int mode,
|
||||
const char *name, V9fsSynthNode **result);
|
||||
extern int qemu_v9fs_synth_add_file(V9fsSynthNode *parent, int mode,
|
||||
const char *name, v9fs_synth_read read,
|
||||
v9fs_synth_write write, void *arg);
|
||||
int qemu_v9fs_synth_mkdir(V9fsSynthNode *parent, int mode,
|
||||
const char *name, V9fsSynthNode **result);
|
||||
int qemu_v9fs_synth_add_file(V9fsSynthNode *parent, int mode,
|
||||
const char *name, v9fs_synth_read read,
|
||||
v9fs_synth_write write, void *arg);
|
||||
|
||||
#endif
|
||||
|
||||
+107
-75
File diff suppressed because it is too large
Load Diff
+10
-9
@@ -324,20 +324,21 @@ static inline uint8_t v9fs_request_cancelled(V9fsPDU *pdu)
|
||||
return pdu->cancelled;
|
||||
}
|
||||
|
||||
extern void v9fs_reclaim_fd(V9fsPDU *pdu);
|
||||
extern void v9fs_path_init(V9fsPath *path);
|
||||
extern void v9fs_path_free(V9fsPath *path);
|
||||
extern void v9fs_path_sprintf(V9fsPath *path, const char *fmt, ...);
|
||||
extern void v9fs_path_copy(V9fsPath *lhs, V9fsPath *rhs);
|
||||
extern int v9fs_name_to_path(V9fsState *s, V9fsPath *dirpath,
|
||||
const char *name, V9fsPath *path);
|
||||
extern int v9fs_device_realize_common(V9fsState *s, Error **errp);
|
||||
extern void v9fs_device_unrealize_common(V9fsState *s, Error **errp);
|
||||
void coroutine_fn v9fs_reclaim_fd(V9fsPDU *pdu);
|
||||
void v9fs_path_init(V9fsPath *path);
|
||||
void v9fs_path_free(V9fsPath *path);
|
||||
void v9fs_path_sprintf(V9fsPath *path, const char *fmt, ...);
|
||||
void v9fs_path_copy(V9fsPath *lhs, V9fsPath *rhs);
|
||||
int v9fs_name_to_path(V9fsState *s, V9fsPath *dirpath,
|
||||
const char *name, V9fsPath *path);
|
||||
int v9fs_device_realize_common(V9fsState *s, Error **errp);
|
||||
void v9fs_device_unrealize_common(V9fsState *s, Error **errp);
|
||||
|
||||
ssize_t pdu_marshal(V9fsPDU *pdu, size_t offset, const char *fmt, ...);
|
||||
ssize_t pdu_unmarshal(V9fsPDU *pdu, size_t offset, const char *fmt, ...);
|
||||
V9fsPDU *pdu_alloc(V9fsState *s);
|
||||
void pdu_free(V9fsPDU *pdu);
|
||||
void pdu_submit(V9fsPDU *pdu);
|
||||
void v9fs_reset(V9fsState *s);
|
||||
|
||||
#endif
|
||||
|
||||
+10
-7
@@ -17,7 +17,8 @@
|
||||
#include "qemu/coroutine.h"
|
||||
#include "coth.h"
|
||||
|
||||
int v9fs_co_readdir(V9fsPDU *pdu, V9fsFidState *fidp, struct dirent **dent)
|
||||
int coroutine_fn v9fs_co_readdir(V9fsPDU *pdu, V9fsFidState *fidp,
|
||||
struct dirent **dent)
|
||||
{
|
||||
int err;
|
||||
V9fsState *s = pdu->s;
|
||||
@@ -59,7 +60,8 @@ off_t v9fs_co_telldir(V9fsPDU *pdu, V9fsFidState *fidp)
|
||||
return err;
|
||||
}
|
||||
|
||||
void v9fs_co_seekdir(V9fsPDU *pdu, V9fsFidState *fidp, off_t offset)
|
||||
void coroutine_fn v9fs_co_seekdir(V9fsPDU *pdu, V9fsFidState *fidp,
|
||||
off_t offset)
|
||||
{
|
||||
V9fsState *s = pdu->s;
|
||||
if (v9fs_request_cancelled(pdu)) {
|
||||
@@ -71,7 +73,7 @@ void v9fs_co_seekdir(V9fsPDU *pdu, V9fsFidState *fidp, off_t offset)
|
||||
});
|
||||
}
|
||||
|
||||
void v9fs_co_rewinddir(V9fsPDU *pdu, V9fsFidState *fidp)
|
||||
void coroutine_fn v9fs_co_rewinddir(V9fsPDU *pdu, V9fsFidState *fidp)
|
||||
{
|
||||
V9fsState *s = pdu->s;
|
||||
if (v9fs_request_cancelled(pdu)) {
|
||||
@@ -83,8 +85,9 @@ void v9fs_co_rewinddir(V9fsPDU *pdu, V9fsFidState *fidp)
|
||||
});
|
||||
}
|
||||
|
||||
int v9fs_co_mkdir(V9fsPDU *pdu, V9fsFidState *fidp, V9fsString *name,
|
||||
mode_t mode, uid_t uid, gid_t gid, struct stat *stbuf)
|
||||
int coroutine_fn v9fs_co_mkdir(V9fsPDU *pdu, V9fsFidState *fidp,
|
||||
V9fsString *name, mode_t mode, uid_t uid,
|
||||
gid_t gid, struct stat *stbuf)
|
||||
{
|
||||
int err;
|
||||
FsCred cred;
|
||||
@@ -120,7 +123,7 @@ int v9fs_co_mkdir(V9fsPDU *pdu, V9fsFidState *fidp, V9fsString *name,
|
||||
return err;
|
||||
}
|
||||
|
||||
int v9fs_co_opendir(V9fsPDU *pdu, V9fsFidState *fidp)
|
||||
int coroutine_fn v9fs_co_opendir(V9fsPDU *pdu, V9fsFidState *fidp)
|
||||
{
|
||||
int err;
|
||||
V9fsState *s = pdu->s;
|
||||
@@ -148,7 +151,7 @@ int v9fs_co_opendir(V9fsPDU *pdu, V9fsFidState *fidp)
|
||||
return err;
|
||||
}
|
||||
|
||||
int v9fs_co_closedir(V9fsPDU *pdu, V9fsFidOpenState *fs)
|
||||
int coroutine_fn v9fs_co_closedir(V9fsPDU *pdu, V9fsFidOpenState *fs)
|
||||
{
|
||||
int err;
|
||||
V9fsState *s = pdu->s;
|
||||
|
||||
+17
-15
@@ -17,8 +17,8 @@
|
||||
#include "qemu/coroutine.h"
|
||||
#include "coth.h"
|
||||
|
||||
int v9fs_co_st_gen(V9fsPDU *pdu, V9fsPath *path, mode_t st_mode,
|
||||
V9fsStatDotl *v9stat)
|
||||
int coroutine_fn v9fs_co_st_gen(V9fsPDU *pdu, V9fsPath *path, mode_t st_mode,
|
||||
V9fsStatDotl *v9stat)
|
||||
{
|
||||
int err = 0;
|
||||
V9fsState *s = pdu->s;
|
||||
@@ -41,7 +41,7 @@ int v9fs_co_st_gen(V9fsPDU *pdu, V9fsPath *path, mode_t st_mode,
|
||||
return err;
|
||||
}
|
||||
|
||||
int v9fs_co_lstat(V9fsPDU *pdu, V9fsPath *path, struct stat *stbuf)
|
||||
int coroutine_fn v9fs_co_lstat(V9fsPDU *pdu, V9fsPath *path, struct stat *stbuf)
|
||||
{
|
||||
int err;
|
||||
V9fsState *s = pdu->s;
|
||||
@@ -61,7 +61,8 @@ int v9fs_co_lstat(V9fsPDU *pdu, V9fsPath *path, struct stat *stbuf)
|
||||
return err;
|
||||
}
|
||||
|
||||
int v9fs_co_fstat(V9fsPDU *pdu, V9fsFidState *fidp, struct stat *stbuf)
|
||||
int coroutine_fn v9fs_co_fstat(V9fsPDU *pdu, V9fsFidState *fidp,
|
||||
struct stat *stbuf)
|
||||
{
|
||||
int err;
|
||||
V9fsState *s = pdu->s;
|
||||
@@ -93,7 +94,7 @@ int v9fs_co_fstat(V9fsPDU *pdu, V9fsFidState *fidp, struct stat *stbuf)
|
||||
return err;
|
||||
}
|
||||
|
||||
int v9fs_co_open(V9fsPDU *pdu, V9fsFidState *fidp, int flags)
|
||||
int coroutine_fn v9fs_co_open(V9fsPDU *pdu, V9fsFidState *fidp, int flags)
|
||||
{
|
||||
int err;
|
||||
V9fsState *s = pdu->s;
|
||||
@@ -121,8 +122,9 @@ int v9fs_co_open(V9fsPDU *pdu, V9fsFidState *fidp, int flags)
|
||||
return err;
|
||||
}
|
||||
|
||||
int v9fs_co_open2(V9fsPDU *pdu, V9fsFidState *fidp, V9fsString *name, gid_t gid,
|
||||
int flags, int mode, struct stat *stbuf)
|
||||
int coroutine_fn v9fs_co_open2(V9fsPDU *pdu, V9fsFidState *fidp,
|
||||
V9fsString *name, gid_t gid, int flags, int mode,
|
||||
struct stat *stbuf)
|
||||
{
|
||||
int err;
|
||||
FsCred cred;
|
||||
@@ -175,7 +177,7 @@ int v9fs_co_open2(V9fsPDU *pdu, V9fsFidState *fidp, V9fsString *name, gid_t gid,
|
||||
return err;
|
||||
}
|
||||
|
||||
int v9fs_co_close(V9fsPDU *pdu, V9fsFidOpenState *fs)
|
||||
int coroutine_fn v9fs_co_close(V9fsPDU *pdu, V9fsFidOpenState *fs)
|
||||
{
|
||||
int err;
|
||||
V9fsState *s = pdu->s;
|
||||
@@ -196,7 +198,7 @@ int v9fs_co_close(V9fsPDU *pdu, V9fsFidOpenState *fs)
|
||||
return err;
|
||||
}
|
||||
|
||||
int v9fs_co_fsync(V9fsPDU *pdu, V9fsFidState *fidp, int datasync)
|
||||
int coroutine_fn v9fs_co_fsync(V9fsPDU *pdu, V9fsFidState *fidp, int datasync)
|
||||
{
|
||||
int err;
|
||||
V9fsState *s = pdu->s;
|
||||
@@ -214,8 +216,8 @@ int v9fs_co_fsync(V9fsPDU *pdu, V9fsFidState *fidp, int datasync)
|
||||
return err;
|
||||
}
|
||||
|
||||
int v9fs_co_link(V9fsPDU *pdu, V9fsFidState *oldfid,
|
||||
V9fsFidState *newdirfid, V9fsString *name)
|
||||
int coroutine_fn v9fs_co_link(V9fsPDU *pdu, V9fsFidState *oldfid,
|
||||
V9fsFidState *newdirfid, V9fsString *name)
|
||||
{
|
||||
int err;
|
||||
V9fsState *s = pdu->s;
|
||||
@@ -236,8 +238,8 @@ int v9fs_co_link(V9fsPDU *pdu, V9fsFidState *oldfid,
|
||||
return err;
|
||||
}
|
||||
|
||||
int v9fs_co_pwritev(V9fsPDU *pdu, V9fsFidState *fidp,
|
||||
struct iovec *iov, int iovcnt, int64_t offset)
|
||||
int coroutine_fn v9fs_co_pwritev(V9fsPDU *pdu, V9fsFidState *fidp,
|
||||
struct iovec *iov, int iovcnt, int64_t offset)
|
||||
{
|
||||
int err;
|
||||
V9fsState *s = pdu->s;
|
||||
@@ -255,8 +257,8 @@ int v9fs_co_pwritev(V9fsPDU *pdu, V9fsFidState *fidp,
|
||||
return err;
|
||||
}
|
||||
|
||||
int v9fs_co_preadv(V9fsPDU *pdu, V9fsFidState *fidp,
|
||||
struct iovec *iov, int iovcnt, int64_t offset)
|
||||
int coroutine_fn v9fs_co_preadv(V9fsPDU *pdu, V9fsFidState *fidp,
|
||||
struct iovec *iov, int iovcnt, int64_t offset)
|
||||
{
|
||||
int err;
|
||||
V9fsState *s = pdu->s;
|
||||
|
||||
+25
-18
@@ -49,7 +49,7 @@ static ssize_t __readlink(V9fsState *s, V9fsPath *path, V9fsString *buf)
|
||||
return len;
|
||||
}
|
||||
|
||||
int v9fs_co_readlink(V9fsPDU *pdu, V9fsPath *path, V9fsString *buf)
|
||||
int coroutine_fn v9fs_co_readlink(V9fsPDU *pdu, V9fsPath *path, V9fsString *buf)
|
||||
{
|
||||
int err;
|
||||
V9fsState *s = pdu->s;
|
||||
@@ -69,7 +69,8 @@ int v9fs_co_readlink(V9fsPDU *pdu, V9fsPath *path, V9fsString *buf)
|
||||
return err;
|
||||
}
|
||||
|
||||
int v9fs_co_statfs(V9fsPDU *pdu, V9fsPath *path, struct statfs *stbuf)
|
||||
int coroutine_fn v9fs_co_statfs(V9fsPDU *pdu, V9fsPath *path,
|
||||
struct statfs *stbuf)
|
||||
{
|
||||
int err;
|
||||
V9fsState *s = pdu->s;
|
||||
@@ -89,7 +90,7 @@ int v9fs_co_statfs(V9fsPDU *pdu, V9fsPath *path, struct statfs *stbuf)
|
||||
return err;
|
||||
}
|
||||
|
||||
int v9fs_co_chmod(V9fsPDU *pdu, V9fsPath *path, mode_t mode)
|
||||
int coroutine_fn v9fs_co_chmod(V9fsPDU *pdu, V9fsPath *path, mode_t mode)
|
||||
{
|
||||
int err;
|
||||
FsCred cred;
|
||||
@@ -112,8 +113,8 @@ int v9fs_co_chmod(V9fsPDU *pdu, V9fsPath *path, mode_t mode)
|
||||
return err;
|
||||
}
|
||||
|
||||
int v9fs_co_utimensat(V9fsPDU *pdu, V9fsPath *path,
|
||||
struct timespec times[2])
|
||||
int coroutine_fn v9fs_co_utimensat(V9fsPDU *pdu, V9fsPath *path,
|
||||
struct timespec times[2])
|
||||
{
|
||||
int err;
|
||||
V9fsState *s = pdu->s;
|
||||
@@ -133,7 +134,8 @@ int v9fs_co_utimensat(V9fsPDU *pdu, V9fsPath *path,
|
||||
return err;
|
||||
}
|
||||
|
||||
int v9fs_co_chown(V9fsPDU *pdu, V9fsPath *path, uid_t uid, gid_t gid)
|
||||
int coroutine_fn v9fs_co_chown(V9fsPDU *pdu, V9fsPath *path, uid_t uid,
|
||||
gid_t gid)
|
||||
{
|
||||
int err;
|
||||
FsCred cred;
|
||||
@@ -157,7 +159,7 @@ int v9fs_co_chown(V9fsPDU *pdu, V9fsPath *path, uid_t uid, gid_t gid)
|
||||
return err;
|
||||
}
|
||||
|
||||
int v9fs_co_truncate(V9fsPDU *pdu, V9fsPath *path, off_t size)
|
||||
int coroutine_fn v9fs_co_truncate(V9fsPDU *pdu, V9fsPath *path, off_t size)
|
||||
{
|
||||
int err;
|
||||
V9fsState *s = pdu->s;
|
||||
@@ -177,8 +179,9 @@ int v9fs_co_truncate(V9fsPDU *pdu, V9fsPath *path, off_t size)
|
||||
return err;
|
||||
}
|
||||
|
||||
int v9fs_co_mknod(V9fsPDU *pdu, V9fsFidState *fidp, V9fsString *name, uid_t uid,
|
||||
gid_t gid, dev_t dev, mode_t mode, struct stat *stbuf)
|
||||
int coroutine_fn v9fs_co_mknod(V9fsPDU *pdu, V9fsFidState *fidp,
|
||||
V9fsString *name, uid_t uid, gid_t gid,
|
||||
dev_t dev, mode_t mode, struct stat *stbuf)
|
||||
{
|
||||
int err;
|
||||
V9fsPath path;
|
||||
@@ -216,7 +219,7 @@ int v9fs_co_mknod(V9fsPDU *pdu, V9fsFidState *fidp, V9fsString *name, uid_t uid,
|
||||
}
|
||||
|
||||
/* Only works with path name based fid */
|
||||
int v9fs_co_remove(V9fsPDU *pdu, V9fsPath *path)
|
||||
int coroutine_fn v9fs_co_remove(V9fsPDU *pdu, V9fsPath *path)
|
||||
{
|
||||
int err;
|
||||
V9fsState *s = pdu->s;
|
||||
@@ -236,7 +239,8 @@ int v9fs_co_remove(V9fsPDU *pdu, V9fsPath *path)
|
||||
return err;
|
||||
}
|
||||
|
||||
int v9fs_co_unlinkat(V9fsPDU *pdu, V9fsPath *path, V9fsString *name, int flags)
|
||||
int coroutine_fn v9fs_co_unlinkat(V9fsPDU *pdu, V9fsPath *path,
|
||||
V9fsString *name, int flags)
|
||||
{
|
||||
int err;
|
||||
V9fsState *s = pdu->s;
|
||||
@@ -257,7 +261,8 @@ int v9fs_co_unlinkat(V9fsPDU *pdu, V9fsPath *path, V9fsString *name, int flags)
|
||||
}
|
||||
|
||||
/* Only work with path name based fid */
|
||||
int v9fs_co_rename(V9fsPDU *pdu, V9fsPath *oldpath, V9fsPath *newpath)
|
||||
int coroutine_fn v9fs_co_rename(V9fsPDU *pdu, V9fsPath *oldpath,
|
||||
V9fsPath *newpath)
|
||||
{
|
||||
int err;
|
||||
V9fsState *s = pdu->s;
|
||||
@@ -275,8 +280,9 @@ int v9fs_co_rename(V9fsPDU *pdu, V9fsPath *oldpath, V9fsPath *newpath)
|
||||
return err;
|
||||
}
|
||||
|
||||
int v9fs_co_renameat(V9fsPDU *pdu, V9fsPath *olddirpath, V9fsString *oldname,
|
||||
V9fsPath *newdirpath, V9fsString *newname)
|
||||
int coroutine_fn v9fs_co_renameat(V9fsPDU *pdu, V9fsPath *olddirpath,
|
||||
V9fsString *oldname, V9fsPath *newdirpath,
|
||||
V9fsString *newname)
|
||||
{
|
||||
int err;
|
||||
V9fsState *s = pdu->s;
|
||||
@@ -295,8 +301,9 @@ int v9fs_co_renameat(V9fsPDU *pdu, V9fsPath *olddirpath, V9fsString *oldname,
|
||||
return err;
|
||||
}
|
||||
|
||||
int v9fs_co_symlink(V9fsPDU *pdu, V9fsFidState *dfidp, V9fsString *name,
|
||||
const char *oldpath, gid_t gid, struct stat *stbuf)
|
||||
int coroutine_fn v9fs_co_symlink(V9fsPDU *pdu, V9fsFidState *dfidp,
|
||||
V9fsString *name, const char *oldpath,
|
||||
gid_t gid, struct stat *stbuf)
|
||||
{
|
||||
int err;
|
||||
FsCred cred;
|
||||
@@ -337,8 +344,8 @@ int v9fs_co_symlink(V9fsPDU *pdu, V9fsFidState *dfidp, V9fsString *name,
|
||||
* For path name based fid we don't block. So we can
|
||||
* directly call the fs driver ops.
|
||||
*/
|
||||
int v9fs_co_name_to_path(V9fsPDU *pdu, V9fsPath *dirpath,
|
||||
const char *name, V9fsPath *path)
|
||||
int coroutine_fn v9fs_co_name_to_path(V9fsPDU *pdu, V9fsPath *dirpath,
|
||||
const char *name, V9fsPath *path)
|
||||
{
|
||||
int err;
|
||||
V9fsState *s = pdu->s;
|
||||
|
||||
+48
-47
@@ -47,52 +47,53 @@
|
||||
qemu_coroutine_yield(); \
|
||||
} while (0)
|
||||
|
||||
extern void co_run_in_worker_bh(void *);
|
||||
extern int v9fs_co_readlink(V9fsPDU *, V9fsPath *, V9fsString *);
|
||||
extern int v9fs_co_readdir(V9fsPDU *, V9fsFidState *, struct dirent **);
|
||||
extern off_t v9fs_co_telldir(V9fsPDU *, V9fsFidState *);
|
||||
extern void v9fs_co_seekdir(V9fsPDU *, V9fsFidState *, off_t);
|
||||
extern void v9fs_co_rewinddir(V9fsPDU *, V9fsFidState *);
|
||||
extern int v9fs_co_statfs(V9fsPDU *, V9fsPath *, struct statfs *);
|
||||
extern int v9fs_co_lstat(V9fsPDU *, V9fsPath *, struct stat *);
|
||||
extern int v9fs_co_chmod(V9fsPDU *, V9fsPath *, mode_t);
|
||||
extern int v9fs_co_utimensat(V9fsPDU *, V9fsPath *, struct timespec [2]);
|
||||
extern int v9fs_co_chown(V9fsPDU *, V9fsPath *, uid_t, gid_t);
|
||||
extern int v9fs_co_truncate(V9fsPDU *, V9fsPath *, off_t);
|
||||
extern int v9fs_co_llistxattr(V9fsPDU *, V9fsPath *, void *, size_t);
|
||||
extern int v9fs_co_lgetxattr(V9fsPDU *, V9fsPath *,
|
||||
V9fsString *, void *, size_t);
|
||||
extern int v9fs_co_mknod(V9fsPDU *, V9fsFidState *, V9fsString *, uid_t,
|
||||
gid_t, dev_t, mode_t, struct stat *);
|
||||
extern int v9fs_co_mkdir(V9fsPDU *, V9fsFidState *, V9fsString *,
|
||||
mode_t, uid_t, gid_t, struct stat *);
|
||||
extern int v9fs_co_remove(V9fsPDU *, V9fsPath *);
|
||||
extern int v9fs_co_rename(V9fsPDU *, V9fsPath *, V9fsPath *);
|
||||
extern int v9fs_co_unlinkat(V9fsPDU *, V9fsPath *, V9fsString *, int flags);
|
||||
extern int v9fs_co_renameat(V9fsPDU *, V9fsPath *, V9fsString *,
|
||||
V9fsPath *, V9fsString *);
|
||||
extern int v9fs_co_fstat(V9fsPDU *, V9fsFidState *, struct stat *);
|
||||
extern int v9fs_co_opendir(V9fsPDU *, V9fsFidState *);
|
||||
extern int v9fs_co_open(V9fsPDU *, V9fsFidState *, int);
|
||||
extern int v9fs_co_open2(V9fsPDU *, V9fsFidState *, V9fsString *,
|
||||
gid_t, int, int, struct stat *);
|
||||
extern int v9fs_co_lsetxattr(V9fsPDU *, V9fsPath *, V9fsString *,
|
||||
void *, size_t, int);
|
||||
extern int v9fs_co_lremovexattr(V9fsPDU *, V9fsPath *, V9fsString *);
|
||||
extern int v9fs_co_closedir(V9fsPDU *, V9fsFidOpenState *);
|
||||
extern int v9fs_co_close(V9fsPDU *, V9fsFidOpenState *);
|
||||
extern int v9fs_co_fsync(V9fsPDU *, V9fsFidState *, int);
|
||||
extern int v9fs_co_symlink(V9fsPDU *, V9fsFidState *, V9fsString *,
|
||||
const char *, gid_t, struct stat *);
|
||||
extern int v9fs_co_link(V9fsPDU *, V9fsFidState *,
|
||||
V9fsFidState *, V9fsString *);
|
||||
extern int v9fs_co_pwritev(V9fsPDU *, V9fsFidState *,
|
||||
struct iovec *, int, int64_t);
|
||||
extern int v9fs_co_preadv(V9fsPDU *, V9fsFidState *,
|
||||
struct iovec *, int, int64_t);
|
||||
extern int v9fs_co_name_to_path(V9fsPDU *, V9fsPath *,
|
||||
const char *, V9fsPath *);
|
||||
extern int v9fs_co_st_gen(V9fsPDU *pdu, V9fsPath *path, mode_t,
|
||||
V9fsStatDotl *v9stat);
|
||||
void co_run_in_worker_bh(void *);
|
||||
int coroutine_fn v9fs_co_readlink(V9fsPDU *, V9fsPath *, V9fsString *);
|
||||
int coroutine_fn v9fs_co_readdir(V9fsPDU *, V9fsFidState *, struct dirent **);
|
||||
off_t coroutine_fn v9fs_co_telldir(V9fsPDU *, V9fsFidState *);
|
||||
void coroutine_fn v9fs_co_seekdir(V9fsPDU *, V9fsFidState *, off_t);
|
||||
void coroutine_fn v9fs_co_rewinddir(V9fsPDU *, V9fsFidState *);
|
||||
int coroutine_fn v9fs_co_statfs(V9fsPDU *, V9fsPath *, struct statfs *);
|
||||
int coroutine_fn v9fs_co_lstat(V9fsPDU *, V9fsPath *, struct stat *);
|
||||
int coroutine_fn v9fs_co_chmod(V9fsPDU *, V9fsPath *, mode_t);
|
||||
int coroutine_fn v9fs_co_utimensat(V9fsPDU *, V9fsPath *, struct timespec [2]);
|
||||
int coroutine_fn v9fs_co_chown(V9fsPDU *, V9fsPath *, uid_t, gid_t);
|
||||
int coroutine_fn v9fs_co_truncate(V9fsPDU *, V9fsPath *, off_t);
|
||||
int coroutine_fn v9fs_co_llistxattr(V9fsPDU *, V9fsPath *, void *, size_t);
|
||||
int coroutine_fn v9fs_co_lgetxattr(V9fsPDU *, V9fsPath *,
|
||||
V9fsString *, void *, size_t);
|
||||
int coroutine_fn v9fs_co_mknod(V9fsPDU *, V9fsFidState *, V9fsString *, uid_t,
|
||||
gid_t, dev_t, mode_t, struct stat *);
|
||||
int coroutine_fn v9fs_co_mkdir(V9fsPDU *, V9fsFidState *, V9fsString *,
|
||||
mode_t, uid_t, gid_t, struct stat *);
|
||||
int coroutine_fn v9fs_co_remove(V9fsPDU *, V9fsPath *);
|
||||
int coroutine_fn v9fs_co_rename(V9fsPDU *, V9fsPath *, V9fsPath *);
|
||||
int coroutine_fn v9fs_co_unlinkat(V9fsPDU *, V9fsPath *, V9fsString *,
|
||||
int flags);
|
||||
int coroutine_fn v9fs_co_renameat(V9fsPDU *, V9fsPath *, V9fsString *,
|
||||
V9fsPath *, V9fsString *);
|
||||
int coroutine_fn v9fs_co_fstat(V9fsPDU *, V9fsFidState *, struct stat *);
|
||||
int coroutine_fn v9fs_co_opendir(V9fsPDU *, V9fsFidState *);
|
||||
int coroutine_fn v9fs_co_open(V9fsPDU *, V9fsFidState *, int);
|
||||
int coroutine_fn v9fs_co_open2(V9fsPDU *, V9fsFidState *, V9fsString *,
|
||||
gid_t, int, int, struct stat *);
|
||||
int coroutine_fn v9fs_co_lsetxattr(V9fsPDU *, V9fsPath *, V9fsString *,
|
||||
void *, size_t, int);
|
||||
int coroutine_fn v9fs_co_lremovexattr(V9fsPDU *, V9fsPath *, V9fsString *);
|
||||
int coroutine_fn v9fs_co_closedir(V9fsPDU *, V9fsFidOpenState *);
|
||||
int coroutine_fn v9fs_co_close(V9fsPDU *, V9fsFidOpenState *);
|
||||
int coroutine_fn v9fs_co_fsync(V9fsPDU *, V9fsFidState *, int);
|
||||
int coroutine_fn v9fs_co_symlink(V9fsPDU *, V9fsFidState *, V9fsString *,
|
||||
const char *, gid_t, struct stat *);
|
||||
int coroutine_fn v9fs_co_link(V9fsPDU *, V9fsFidState *,
|
||||
V9fsFidState *, V9fsString *);
|
||||
int coroutine_fn v9fs_co_pwritev(V9fsPDU *, V9fsFidState *,
|
||||
struct iovec *, int, int64_t);
|
||||
int coroutine_fn v9fs_co_preadv(V9fsPDU *, V9fsFidState *,
|
||||
struct iovec *, int, int64_t);
|
||||
int coroutine_fn v9fs_co_name_to_path(V9fsPDU *, V9fsPath *,
|
||||
const char *, V9fsPath *);
|
||||
int coroutine_fn v9fs_co_st_gen(V9fsPDU *pdu, V9fsPath *path, mode_t,
|
||||
V9fsStatDotl *v9stat);
|
||||
|
||||
#endif
|
||||
|
||||
+10
-9
@@ -17,7 +17,8 @@
|
||||
#include "qemu/coroutine.h"
|
||||
#include "coth.h"
|
||||
|
||||
int v9fs_co_llistxattr(V9fsPDU *pdu, V9fsPath *path, void *value, size_t size)
|
||||
int coroutine_fn v9fs_co_llistxattr(V9fsPDU *pdu, V9fsPath *path, void *value,
|
||||
size_t size)
|
||||
{
|
||||
int err;
|
||||
V9fsState *s = pdu->s;
|
||||
@@ -37,9 +38,9 @@ int v9fs_co_llistxattr(V9fsPDU *pdu, V9fsPath *path, void *value, size_t size)
|
||||
return err;
|
||||
}
|
||||
|
||||
int v9fs_co_lgetxattr(V9fsPDU *pdu, V9fsPath *path,
|
||||
V9fsString *xattr_name,
|
||||
void *value, size_t size)
|
||||
int coroutine_fn v9fs_co_lgetxattr(V9fsPDU *pdu, V9fsPath *path,
|
||||
V9fsString *xattr_name, void *value,
|
||||
size_t size)
|
||||
{
|
||||
int err;
|
||||
V9fsState *s = pdu->s;
|
||||
@@ -61,9 +62,9 @@ int v9fs_co_lgetxattr(V9fsPDU *pdu, V9fsPath *path,
|
||||
return err;
|
||||
}
|
||||
|
||||
int v9fs_co_lsetxattr(V9fsPDU *pdu, V9fsPath *path,
|
||||
V9fsString *xattr_name, void *value,
|
||||
size_t size, int flags)
|
||||
int coroutine_fn v9fs_co_lsetxattr(V9fsPDU *pdu, V9fsPath *path,
|
||||
V9fsString *xattr_name, void *value,
|
||||
size_t size, int flags)
|
||||
{
|
||||
int err;
|
||||
V9fsState *s = pdu->s;
|
||||
@@ -85,8 +86,8 @@ int v9fs_co_lsetxattr(V9fsPDU *pdu, V9fsPath *path,
|
||||
return err;
|
||||
}
|
||||
|
||||
int v9fs_co_lremovexattr(V9fsPDU *pdu, V9fsPath *path,
|
||||
V9fsString *xattr_name)
|
||||
int coroutine_fn v9fs_co_lremovexattr(V9fsPDU *pdu, V9fsPath *path,
|
||||
V9fsString *xattr_name)
|
||||
{
|
||||
int err;
|
||||
V9fsState *s = pdu->s;
|
||||
|
||||
@@ -141,6 +141,13 @@ static void virtio_9p_device_unrealize(DeviceState *dev, Error **errp)
|
||||
v9fs_device_unrealize_common(s, errp);
|
||||
}
|
||||
|
||||
static void virtio_9p_reset(VirtIODevice *vdev)
|
||||
{
|
||||
V9fsVirtioState *v = (V9fsVirtioState *)vdev;
|
||||
|
||||
v9fs_reset(&v->state);
|
||||
}
|
||||
|
||||
ssize_t virtio_pdu_vmarshal(V9fsPDU *pdu, size_t offset,
|
||||
const char *fmt, va_list ap)
|
||||
{
|
||||
@@ -207,6 +214,7 @@ static void virtio_9p_class_init(ObjectClass *klass, void *data)
|
||||
vdc->unrealize = virtio_9p_device_unrealize;
|
||||
vdc->get_features = virtio_9p_get_features;
|
||||
vdc->get_config = virtio_9p_get_config;
|
||||
vdc->reset = virtio_9p_reset;
|
||||
}
|
||||
|
||||
static const TypeInfo virtio_device_info = {
|
||||
|
||||
+1
-1
@@ -15,7 +15,7 @@ typedef struct V9fsVirtioState
|
||||
V9fsState state;
|
||||
} V9fsVirtioState;
|
||||
|
||||
extern void virtio_9p_push_and_notify(V9fsPDU *pdu);
|
||||
void virtio_9p_push_and_notify(V9fsPDU *pdu);
|
||||
|
||||
ssize_t virtio_pdu_vmarshal(V9fsPDU *pdu, size_t offset,
|
||||
const char *fmt, va_list ap);
|
||||
|
||||
Reference in New Issue
Block a user