2011-05-19 02:42:42 +04:00
|
|
|
/*
|
2016-06-06 12:52:34 +03:00
|
|
|
* 9p backend
|
2011-05-19 02:42:42 +04: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.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2016-01-26 21:17:10 +03:00
|
|
|
#include "qemu/osdep.h"
|
2011-05-19 02:42:42 +04:00
|
|
|
#include "fsdev/qemu-fsdev.h"
|
2012-12-17 21:20:00 +04:00
|
|
|
#include "qemu/thread.h"
|
2015-09-01 16:48:02 +03:00
|
|
|
#include "qemu/coroutine.h"
|
2015-11-18 20:57:30 +03:00
|
|
|
#include "coth.h"
|
2011-05-19 02:42:42 +04:00
|
|
|
|
2016-10-17 15:13:58 +03:00
|
|
|
int coroutine_fn v9fs_co_readdir(V9fsPDU *pdu, V9fsFidState *fidp,
|
|
|
|
struct dirent **dent)
|
2011-05-19 02:42:42 +04:00
|
|
|
{
|
|
|
|
int err;
|
2011-08-02 10:06:17 +04:00
|
|
|
V9fsState *s = pdu->s;
|
2011-05-19 02:42:42 +04:00
|
|
|
|
2011-08-02 10:06:17 +04:00
|
|
|
if (v9fs_request_cancelled(pdu)) {
|
|
|
|
return -EINTR;
|
|
|
|
}
|
2011-05-19 02:42:42 +04:00
|
|
|
v9fs_co_run_in_worker(
|
|
|
|
{
|
2016-06-06 12:52:34 +03:00
|
|
|
struct dirent *entry;
|
|
|
|
|
2011-05-19 02:42:42 +04:00
|
|
|
errno = 0;
|
2016-06-06 12:52:34 +03:00
|
|
|
entry = s->ops->readdir(&s->ctx, &fidp->fs);
|
|
|
|
if (!entry && errno) {
|
2011-05-19 02:42:42 +04:00
|
|
|
err = -errno;
|
|
|
|
} else {
|
2016-06-06 12:52:34 +03:00
|
|
|
*dent = entry;
|
2011-05-19 02:42:42 +04:00
|
|
|
err = 0;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
2011-08-02 10:06:17 +04:00
|
|
|
off_t v9fs_co_telldir(V9fsPDU *pdu, V9fsFidState *fidp)
|
2011-05-19 02:42:42 +04:00
|
|
|
{
|
|
|
|
off_t err;
|
2011-08-02 10:06:17 +04:00
|
|
|
V9fsState *s = pdu->s;
|
2011-05-19 02:42:42 +04:00
|
|
|
|
2011-08-02 10:06:17 +04:00
|
|
|
if (v9fs_request_cancelled(pdu)) {
|
|
|
|
return -EINTR;
|
|
|
|
}
|
2011-05-19 02:42:42 +04:00
|
|
|
v9fs_co_run_in_worker(
|
|
|
|
{
|
2011-10-25 10:40:40 +04:00
|
|
|
err = s->ops->telldir(&s->ctx, &fidp->fs);
|
2011-05-19 02:42:42 +04:00
|
|
|
if (err < 0) {
|
|
|
|
err = -errno;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
2016-10-17 15:13:58 +03:00
|
|
|
void coroutine_fn v9fs_co_seekdir(V9fsPDU *pdu, V9fsFidState *fidp,
|
|
|
|
off_t offset)
|
2011-05-19 02:42:42 +04:00
|
|
|
{
|
2011-08-02 10:06:17 +04:00
|
|
|
V9fsState *s = pdu->s;
|
|
|
|
if (v9fs_request_cancelled(pdu)) {
|
|
|
|
return;
|
|
|
|
}
|
2011-05-19 02:42:42 +04:00
|
|
|
v9fs_co_run_in_worker(
|
|
|
|
{
|
2011-10-25 10:40:40 +04:00
|
|
|
s->ops->seekdir(&s->ctx, &fidp->fs, offset);
|
2011-05-19 02:42:42 +04:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2016-10-17 15:13:58 +03:00
|
|
|
void coroutine_fn v9fs_co_rewinddir(V9fsPDU *pdu, V9fsFidState *fidp)
|
2011-05-19 02:42:42 +04:00
|
|
|
{
|
2011-08-02 10:06:17 +04:00
|
|
|
V9fsState *s = pdu->s;
|
|
|
|
if (v9fs_request_cancelled(pdu)) {
|
|
|
|
return;
|
|
|
|
}
|
2011-05-19 02:42:42 +04:00
|
|
|
v9fs_co_run_in_worker(
|
|
|
|
{
|
2011-10-25 10:40:40 +04:00
|
|
|
s->ops->rewinddir(&s->ctx, &fidp->fs);
|
2011-05-19 02:42:42 +04:00
|
|
|
});
|
|
|
|
}
|
2011-08-08 22:14:24 +04:00
|
|
|
|
2016-10-17 15:13:58 +03:00
|
|
|
int coroutine_fn v9fs_co_mkdir(V9fsPDU *pdu, V9fsFidState *fidp,
|
|
|
|
V9fsString *name, mode_t mode, uid_t uid,
|
|
|
|
gid_t gid, struct stat *stbuf)
|
2011-08-08 22:14:24 +04:00
|
|
|
{
|
|
|
|
int err;
|
|
|
|
FsCred cred;
|
2011-09-09 13:44:18 +04:00
|
|
|
V9fsPath path;
|
2011-08-02 10:06:17 +04:00
|
|
|
V9fsState *s = pdu->s;
|
2011-08-08 22:14:24 +04:00
|
|
|
|
2011-08-02 10:06:17 +04:00
|
|
|
if (v9fs_request_cancelled(pdu)) {
|
2011-11-29 12:52:38 +04:00
|
|
|
return -EINTR;
|
2011-08-02 10:06:17 +04:00
|
|
|
}
|
2011-08-08 22:14:24 +04:00
|
|
|
cred_init(&cred);
|
|
|
|
cred.fc_mode = mode;
|
|
|
|
cred.fc_uid = uid;
|
|
|
|
cred.fc_gid = gid;
|
2011-08-02 10:05:54 +04:00
|
|
|
v9fs_path_read_lock(s);
|
2011-08-08 22:14:24 +04:00
|
|
|
v9fs_co_run_in_worker(
|
|
|
|
{
|
2011-09-09 13:44:18 +04:00
|
|
|
err = s->ops->mkdir(&s->ctx, &fidp->path, name->data, &cred);
|
2011-08-08 22:14:24 +04:00
|
|
|
if (err < 0) {
|
|
|
|
err = -errno;
|
2011-05-24 13:40:56 +04:00
|
|
|
} else {
|
2011-09-09 13:44:18 +04: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-05-24 13:40:56 +04:00
|
|
|
}
|
2011-09-09 13:44:18 +04:00
|
|
|
v9fs_path_free(&path);
|
2011-08-08 22:14:24 +04:00
|
|
|
}
|
|
|
|
});
|
2011-08-02 10:05:54 +04:00
|
|
|
v9fs_path_unlock(s);
|
2011-08-08 22:14:24 +04:00
|
|
|
return err;
|
|
|
|
}
|
2011-05-07 16:42:42 +04:00
|
|
|
|
2016-10-17 15:13:58 +03:00
|
|
|
int coroutine_fn v9fs_co_opendir(V9fsPDU *pdu, V9fsFidState *fidp)
|
2011-05-07 16:42:42 +04:00
|
|
|
{
|
|
|
|
int err;
|
2011-08-02 10:06:17 +04:00
|
|
|
V9fsState *s = pdu->s;
|
2011-05-07 16:42:42 +04:00
|
|
|
|
2011-08-02 10:06:17 +04:00
|
|
|
if (v9fs_request_cancelled(pdu)) {
|
2011-11-29 12:52:38 +04:00
|
|
|
return -EINTR;
|
2011-08-02 10:06:17 +04:00
|
|
|
}
|
2011-08-02 10:05:54 +04:00
|
|
|
v9fs_path_read_lock(s);
|
2011-05-07 16:42:42 +04:00
|
|
|
v9fs_co_run_in_worker(
|
|
|
|
{
|
2011-10-25 10:40:40 +04:00
|
|
|
err = s->ops->opendir(&s->ctx, &fidp->path, &fidp->fs);
|
|
|
|
if (err < 0) {
|
2011-05-07 16:42:42 +04:00
|
|
|
err = -errno;
|
|
|
|
} else {
|
|
|
|
err = 0;
|
|
|
|
}
|
|
|
|
});
|
2011-08-02 10:05:54 +04:00
|
|
|
v9fs_path_unlock(s);
|
2011-05-18 15:38:34 +04:00
|
|
|
if (!err) {
|
|
|
|
total_open_fd++;
|
|
|
|
if (total_open_fd > open_fd_hw) {
|
2011-08-02 10:06:17 +04:00
|
|
|
v9fs_reclaim_fd(pdu);
|
2011-05-18 15:38:34 +04:00
|
|
|
}
|
|
|
|
}
|
2011-05-07 16:42:42 +04:00
|
|
|
return err;
|
|
|
|
}
|
2011-05-07 19:39:24 +04:00
|
|
|
|
2016-10-17 15:13:58 +03:00
|
|
|
int coroutine_fn v9fs_co_closedir(V9fsPDU *pdu, V9fsFidOpenState *fs)
|
2011-05-07 19:39:24 +04:00
|
|
|
{
|
|
|
|
int err;
|
2011-08-02 10:06:17 +04:00
|
|
|
V9fsState *s = pdu->s;
|
2011-05-07 19:39:24 +04:00
|
|
|
|
2011-08-02 10:06:17 +04:00
|
|
|
if (v9fs_request_cancelled(pdu)) {
|
2011-11-29 12:52:38 +04:00
|
|
|
return -EINTR;
|
2011-08-02 10:06:17 +04:00
|
|
|
}
|
2011-05-07 19:39:24 +04:00
|
|
|
v9fs_co_run_in_worker(
|
|
|
|
{
|
2011-10-25 10:40:40 +04:00
|
|
|
err = s->ops->closedir(&s->ctx, fs);
|
2011-05-07 19:39:24 +04:00
|
|
|
if (err < 0) {
|
|
|
|
err = -errno;
|
|
|
|
}
|
|
|
|
});
|
2011-05-18 15:38:34 +04:00
|
|
|
if (!err) {
|
|
|
|
total_open_fd--;
|
|
|
|
}
|
2011-05-07 19:39:24 +04:00
|
|
|
return err;
|
|
|
|
}
|