2011-05-19 01:04:13 +02:00
|
|
|
/*
|
2016-06-06 11:52:34 +02:00
|
|
|
* 9p backend
|
2011-05-19 01:04:13 +02:00
|
|
|
*
|
|
|
|
* Copyright IBM, Corp. 2011
|
|
|
|
*
|
|
|
|
* Authors:
|
|
|
|
* Aneesh Kumar K.V <aneesh.kumar@linux.vnet.ibm.com>
|
|
|
|
*
|
|
|
|
* This work is licensed under the terms of the GNU GPL, version 2. See
|
|
|
|
* the COPYING file in the top-level directory.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2021-05-06 15:12:23 +02:00
|
|
|
/*
|
|
|
|
* Not so fast! You might want to read the 9p developer docs first:
|
|
|
|
* https://wiki.qemu.org/Documentation/9p
|
|
|
|
*/
|
|
|
|
|
2016-01-26 19:17:10 +01:00
|
|
|
#include "qemu/osdep.h"
|
2011-05-19 01:04:13 +02:00
|
|
|
#include "fsdev/qemu-fsdev.h"
|
2012-12-17 18:20:00 +01:00
|
|
|
#include "qemu/thread.h"
|
Include qemu/main-loop.h less
In my "build everything" tree, changing qemu/main-loop.h triggers a
recompile of some 5600 out of 6600 objects (not counting tests and
objects that don't depend on qemu/osdep.h). It includes block/aio.h,
which in turn includes qemu/event_notifier.h, qemu/notify.h,
qemu/processor.h, qemu/qsp.h, qemu/queue.h, qemu/thread-posix.h,
qemu/thread.h, qemu/timer.h, and a few more.
Include qemu/main-loop.h only where it's needed. Touching it now
recompiles only some 1700 objects. For block/aio.h and
qemu/event_notifier.h, these numbers drop from 5600 to 2800. For the
others, they shrink only slightly.
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Message-Id: <20190812052359.30071-21-armbru@redhat.com>
Reviewed-by: Alex Bennée <alex.bennee@linaro.org>
Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Tested-by: Philippe Mathieu-Daudé <philmd@redhat.com>
2019-08-12 07:23:50 +02:00
|
|
|
#include "qemu/main-loop.h"
|
2015-11-18 18:57:30 +01:00
|
|
|
#include "coth.h"
|
2011-05-19 01:04:13 +02:00
|
|
|
|
2016-10-17 14:13:58 +02:00
|
|
|
int coroutine_fn v9fs_co_st_gen(V9fsPDU *pdu, V9fsPath *path, mode_t st_mode,
|
|
|
|
V9fsStatDotl *v9stat)
|
2011-10-12 15:41:25 +02:00
|
|
|
{
|
|
|
|
int err = 0;
|
|
|
|
V9fsState *s = pdu->s;
|
|
|
|
|
|
|
|
if (v9fs_request_cancelled(pdu)) {
|
|
|
|
return -EINTR;
|
|
|
|
}
|
|
|
|
if (s->ctx.exops.get_st_gen) {
|
|
|
|
v9fs_path_read_lock(s);
|
|
|
|
v9fs_co_run_in_worker(
|
|
|
|
{
|
|
|
|
err = s->ctx.exops.get_st_gen(&s->ctx, path, st_mode,
|
|
|
|
&v9stat->st_gen);
|
|
|
|
if (err < 0) {
|
|
|
|
err = -errno;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
v9fs_path_unlock(s);
|
|
|
|
}
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
2016-10-17 14:13:58 +02:00
|
|
|
int coroutine_fn v9fs_co_lstat(V9fsPDU *pdu, V9fsPath *path, struct stat *stbuf)
|
2011-05-19 01:04:13 +02:00
|
|
|
{
|
|
|
|
int err;
|
2011-08-02 08:06:17 +02:00
|
|
|
V9fsState *s = pdu->s;
|
2011-05-19 01:04:13 +02:00
|
|
|
|
2011-08-02 08:06:17 +02:00
|
|
|
if (v9fs_request_cancelled(pdu)) {
|
|
|
|
return -EINTR;
|
|
|
|
}
|
2011-08-02 08:05:54 +02:00
|
|
|
v9fs_path_read_lock(s);
|
2011-05-19 01:04:13 +02:00
|
|
|
v9fs_co_run_in_worker(
|
|
|
|
{
|
2011-09-09 11:44:18 +02:00
|
|
|
err = s->ops->lstat(&s->ctx, path, stbuf);
|
2011-05-19 01:04:13 +02:00
|
|
|
if (err < 0) {
|
|
|
|
err = -errno;
|
|
|
|
}
|
|
|
|
});
|
2011-08-02 08:05:54 +02:00
|
|
|
v9fs_path_unlock(s);
|
2011-05-19 01:04:13 +02:00
|
|
|
return err;
|
|
|
|
}
|
2011-08-22 05:44:04 +02:00
|
|
|
|
2016-10-17 14:13:58 +02:00
|
|
|
int coroutine_fn v9fs_co_fstat(V9fsPDU *pdu, V9fsFidState *fidp,
|
|
|
|
struct stat *stbuf)
|
2011-08-22 05:44:04 +02:00
|
|
|
{
|
|
|
|
int err;
|
2011-08-02 08:06:17 +02:00
|
|
|
V9fsState *s = pdu->s;
|
2011-08-22 05:44:04 +02:00
|
|
|
|
2011-08-02 08:06:17 +02:00
|
|
|
if (v9fs_request_cancelled(pdu)) {
|
|
|
|
return -EINTR;
|
|
|
|
}
|
2011-08-22 05:44:04 +02:00
|
|
|
v9fs_co_run_in_worker(
|
|
|
|
{
|
2011-12-04 18:05:28 +01:00
|
|
|
err = s->ops->fstat(&s->ctx, fidp->fid_type, &fidp->fs, stbuf);
|
2011-08-22 05:44:04 +02:00
|
|
|
if (err < 0) {
|
|
|
|
err = -errno;
|
|
|
|
}
|
|
|
|
});
|
2012-01-19 07:51:11 +01:00
|
|
|
/*
|
|
|
|
* Some FS driver (local:mapped-file) can't support fetching attributes
|
|
|
|
* using file descriptor. Use Path name in that case.
|
|
|
|
*/
|
|
|
|
if (err == -EOPNOTSUPP) {
|
|
|
|
err = v9fs_co_lstat(pdu, &fidp->path, stbuf);
|
|
|
|
if (err == -ENOENT) {
|
|
|
|
/*
|
|
|
|
* fstat on an unlinked file. Work with partial results
|
|
|
|
* returned from s->ops->fstat
|
|
|
|
*/
|
|
|
|
err = 0;
|
|
|
|
}
|
|
|
|
}
|
2011-08-22 05:44:04 +02:00
|
|
|
return err;
|
|
|
|
}
|
2011-05-07 14:42:42 +02:00
|
|
|
|
2016-10-17 14:13:58 +02:00
|
|
|
int coroutine_fn v9fs_co_open(V9fsPDU *pdu, V9fsFidState *fidp, int flags)
|
2011-05-07 14:42:42 +02:00
|
|
|
{
|
|
|
|
int err;
|
2011-08-02 08:06:17 +02:00
|
|
|
V9fsState *s = pdu->s;
|
2011-05-07 14:42:42 +02:00
|
|
|
|
2011-08-02 08:06:17 +02:00
|
|
|
if (v9fs_request_cancelled(pdu)) {
|
|
|
|
return -EINTR;
|
|
|
|
}
|
2011-08-02 08:05:54 +02:00
|
|
|
v9fs_path_read_lock(s);
|
2011-05-07 14:42:42 +02:00
|
|
|
v9fs_co_run_in_worker(
|
|
|
|
{
|
2011-10-25 08:40:40 +02:00
|
|
|
err = s->ops->open(&s->ctx, &fidp->path, flags, &fidp->fs);
|
|
|
|
if (err == -1) {
|
2011-05-07 14:42:42 +02:00
|
|
|
err = -errno;
|
|
|
|
} else {
|
|
|
|
err = 0;
|
|
|
|
}
|
|
|
|
});
|
2011-08-02 08:05:54 +02:00
|
|
|
v9fs_path_unlock(s);
|
2011-05-18 12:10:57 +02:00
|
|
|
if (!err) {
|
|
|
|
total_open_fd++;
|
|
|
|
if (total_open_fd > open_fd_hw) {
|
2011-08-02 08:06:17 +02:00
|
|
|
v9fs_reclaim_fd(pdu);
|
2011-05-18 12:10:57 +02:00
|
|
|
}
|
|
|
|
}
|
2011-05-07 14:42:42 +02:00
|
|
|
return err;
|
|
|
|
}
|
2011-08-08 20:22:33 +02:00
|
|
|
|
2016-10-17 14:13:58 +02:00
|
|
|
int coroutine_fn v9fs_co_open2(V9fsPDU *pdu, V9fsFidState *fidp,
|
|
|
|
V9fsString *name, gid_t gid, int flags, int mode,
|
|
|
|
struct stat *stbuf)
|
2011-08-08 20:22:33 +02:00
|
|
|
{
|
|
|
|
int err;
|
|
|
|
FsCred cred;
|
2011-09-09 11:44:18 +02:00
|
|
|
V9fsPath path;
|
2011-08-02 08:06:17 +02:00
|
|
|
V9fsState *s = pdu->s;
|
2011-09-09 11:44:18 +02:00
|
|
|
|
2011-08-02 08:06:17 +02:00
|
|
|
if (v9fs_request_cancelled(pdu)) {
|
|
|
|
return -EINTR;
|
|
|
|
}
|
2011-08-08 20:22:33 +02:00
|
|
|
cred_init(&cred);
|
|
|
|
cred.fc_mode = mode & 07777;
|
|
|
|
cred.fc_uid = fidp->uid;
|
|
|
|
cred.fc_gid = gid;
|
2011-05-24 11:40:56 +02:00
|
|
|
/*
|
|
|
|
* Hold the directory fid lock so that directory path name
|
2018-11-07 01:00:04 +01:00
|
|
|
* don't change. Take the write lock to be sure this fid
|
|
|
|
* cannot be used by another operation.
|
2011-05-24 11:40:56 +02:00
|
|
|
*/
|
2018-11-07 01:00:04 +01:00
|
|
|
v9fs_path_write_lock(s);
|
2011-08-08 20:22:33 +02:00
|
|
|
v9fs_co_run_in_worker(
|
|
|
|
{
|
2011-10-25 08:40:40 +02:00
|
|
|
err = s->ops->open2(&s->ctx, &fidp->path,
|
|
|
|
name->data, flags, &cred, &fidp->fs);
|
|
|
|
if (err < 0) {
|
2011-08-08 20:22:33 +02:00
|
|
|
err = -errno;
|
2011-05-24 11:40:56 +02:00
|
|
|
} else {
|
2011-09-09 11:44:18 +02:00
|
|
|
v9fs_path_init(&path);
|
|
|
|
err = v9fs_name_to_path(s, &fidp->path, name->data, &path);
|
|
|
|
if (!err) {
|
|
|
|
err = s->ops->lstat(&s->ctx, &path, stbuf);
|
|
|
|
if (err < 0) {
|
|
|
|
err = -errno;
|
2011-10-25 08:40:40 +02:00
|
|
|
s->ops->close(&s->ctx, &fidp->fs);
|
2011-09-09 11:44:18 +02:00
|
|
|
} else {
|
|
|
|
v9fs_path_copy(&fidp->path, &path);
|
|
|
|
}
|
2011-05-24 11:40:56 +02:00
|
|
|
} else {
|
2011-10-25 08:40:40 +02:00
|
|
|
s->ops->close(&s->ctx, &fidp->fs);
|
2011-05-24 11:40:56 +02:00
|
|
|
}
|
2011-09-09 11:44:18 +02:00
|
|
|
v9fs_path_free(&path);
|
2011-08-08 20:22:33 +02:00
|
|
|
}
|
|
|
|
});
|
2011-08-02 08:05:54 +02:00
|
|
|
v9fs_path_unlock(s);
|
2011-05-18 12:10:57 +02:00
|
|
|
if (!err) {
|
|
|
|
total_open_fd++;
|
|
|
|
if (total_open_fd > open_fd_hw) {
|
2011-08-02 08:06:17 +02:00
|
|
|
v9fs_reclaim_fd(pdu);
|
2011-05-18 12:10:57 +02:00
|
|
|
}
|
|
|
|
}
|
2011-08-08 20:22:33 +02:00
|
|
|
return err;
|
|
|
|
}
|
2011-05-07 17:39:24 +02:00
|
|
|
|
2016-10-17 14:13:58 +02:00
|
|
|
int coroutine_fn v9fs_co_close(V9fsPDU *pdu, V9fsFidOpenState *fs)
|
2011-05-07 17:39:24 +02:00
|
|
|
{
|
|
|
|
int err;
|
2011-08-02 08:06:17 +02:00
|
|
|
V9fsState *s = pdu->s;
|
2011-05-07 17:39:24 +02:00
|
|
|
|
2011-08-02 08:06:17 +02:00
|
|
|
if (v9fs_request_cancelled(pdu)) {
|
|
|
|
return -EINTR;
|
|
|
|
}
|
2011-05-07 17:39:24 +02:00
|
|
|
v9fs_co_run_in_worker(
|
|
|
|
{
|
2011-10-25 08:40:40 +02:00
|
|
|
err = s->ops->close(&s->ctx, fs);
|
2011-05-07 17:39:24 +02:00
|
|
|
if (err < 0) {
|
|
|
|
err = -errno;
|
|
|
|
}
|
|
|
|
});
|
2011-05-18 12:10:57 +02:00
|
|
|
if (!err) {
|
|
|
|
total_open_fd--;
|
|
|
|
}
|
2011-05-07 17:39:24 +02:00
|
|
|
return err;
|
|
|
|
}
|
2011-05-07 17:59:32 +02:00
|
|
|
|
2016-10-17 14:13:58 +02:00
|
|
|
int coroutine_fn v9fs_co_fsync(V9fsPDU *pdu, V9fsFidState *fidp, int datasync)
|
2011-05-07 17:59:32 +02:00
|
|
|
{
|
2011-10-25 08:40:40 +02:00
|
|
|
int err;
|
2011-08-02 08:06:17 +02:00
|
|
|
V9fsState *s = pdu->s;
|
2011-05-07 17:59:32 +02:00
|
|
|
|
2011-08-02 08:06:17 +02:00
|
|
|
if (v9fs_request_cancelled(pdu)) {
|
|
|
|
return -EINTR;
|
|
|
|
}
|
2011-05-07 17:59:32 +02:00
|
|
|
v9fs_co_run_in_worker(
|
|
|
|
{
|
2011-12-04 18:05:28 +01:00
|
|
|
err = s->ops->fsync(&s->ctx, fidp->fid_type, &fidp->fs, datasync);
|
2011-05-07 17:59:32 +02:00
|
|
|
if (err < 0) {
|
|
|
|
err = -errno;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
return err;
|
|
|
|
}
|
2011-08-08 20:31:22 +02:00
|
|
|
|
2016-10-17 14:13:58 +02:00
|
|
|
int coroutine_fn v9fs_co_link(V9fsPDU *pdu, V9fsFidState *oldfid,
|
|
|
|
V9fsFidState *newdirfid, V9fsString *name)
|
2011-08-08 20:31:22 +02:00
|
|
|
{
|
|
|
|
int err;
|
2011-08-02 08:06:17 +02:00
|
|
|
V9fsState *s = pdu->s;
|
2011-08-08 20:31:22 +02:00
|
|
|
|
2011-08-02 08:06:17 +02:00
|
|
|
if (v9fs_request_cancelled(pdu)) {
|
|
|
|
return -EINTR;
|
|
|
|
}
|
2011-08-02 08:05:54 +02:00
|
|
|
v9fs_path_read_lock(s);
|
2011-08-08 20:31:22 +02:00
|
|
|
v9fs_co_run_in_worker(
|
|
|
|
{
|
2011-09-09 11:44:18 +02:00
|
|
|
err = s->ops->link(&s->ctx, &oldfid->path,
|
|
|
|
&newdirfid->path, name->data);
|
2011-08-08 20:31:22 +02:00
|
|
|
if (err < 0) {
|
|
|
|
err = -errno;
|
|
|
|
}
|
|
|
|
});
|
2011-08-02 08:05:54 +02:00
|
|
|
v9fs_path_unlock(s);
|
2011-08-08 20:31:22 +02:00
|
|
|
return err;
|
|
|
|
}
|
2011-05-08 09:06:59 +02:00
|
|
|
|
2016-10-17 14:13:58 +02:00
|
|
|
int coroutine_fn v9fs_co_pwritev(V9fsPDU *pdu, V9fsFidState *fidp,
|
|
|
|
struct iovec *iov, int iovcnt, int64_t offset)
|
2011-05-08 09:06:59 +02:00
|
|
|
{
|
2011-10-25 08:40:40 +02:00
|
|
|
int err;
|
2011-08-02 08:06:17 +02:00
|
|
|
V9fsState *s = pdu->s;
|
2011-05-08 09:06:59 +02:00
|
|
|
|
2011-08-02 08:06:17 +02:00
|
|
|
if (v9fs_request_cancelled(pdu)) {
|
|
|
|
return -EINTR;
|
|
|
|
}
|
2017-02-28 10:31:46 +01:00
|
|
|
fsdev_co_throttle_request(s->ctx.fst, true, iov, iovcnt);
|
2011-05-08 09:06:59 +02:00
|
|
|
v9fs_co_run_in_worker(
|
|
|
|
{
|
2011-10-25 08:40:40 +02:00
|
|
|
err = s->ops->pwritev(&s->ctx, &fidp->fs, iov, iovcnt, offset);
|
2011-05-08 09:06:59 +02:00
|
|
|
if (err < 0) {
|
|
|
|
err = -errno;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
return err;
|
|
|
|
}
|
2011-05-08 11:46:22 +02:00
|
|
|
|
2016-10-17 14:13:58 +02:00
|
|
|
int coroutine_fn v9fs_co_preadv(V9fsPDU *pdu, V9fsFidState *fidp,
|
|
|
|
struct iovec *iov, int iovcnt, int64_t offset)
|
2011-05-08 11:46:22 +02:00
|
|
|
{
|
2011-10-25 08:40:40 +02:00
|
|
|
int err;
|
2011-08-02 08:06:17 +02:00
|
|
|
V9fsState *s = pdu->s;
|
2011-05-08 11:46:22 +02:00
|
|
|
|
2011-08-02 08:06:17 +02:00
|
|
|
if (v9fs_request_cancelled(pdu)) {
|
|
|
|
return -EINTR;
|
|
|
|
}
|
2017-02-28 10:31:46 +01:00
|
|
|
fsdev_co_throttle_request(s->ctx.fst, false, iov, iovcnt);
|
2011-05-08 11:46:22 +02:00
|
|
|
v9fs_co_run_in_worker(
|
|
|
|
{
|
2011-10-25 08:40:40 +02:00
|
|
|
err = s->ops->preadv(&s->ctx, &fidp->fs, iov, iovcnt, offset);
|
2011-05-08 11:46:22 +02:00
|
|
|
if (err < 0) {
|
|
|
|
err = -errno;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
return err;
|
|
|
|
}
|