2011-05-18 16:05:34 -07:00
|
|
|
/*
|
2016-06-06 11:52:34 +02:00
|
|
|
* 9p backend
|
2011-05-18 16:05:34 -07: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 18:17:10 +00:00
|
|
|
#include "qemu/osdep.h"
|
2011-05-18 16:05:34 -07:00
|
|
|
#include "fsdev/qemu-fsdev.h"
|
2012-12-17 18:20:00 +01:00
|
|
|
#include "qemu/thread.h"
|
2015-09-01 14:48:02 +01:00
|
|
|
#include "qemu/coroutine.h"
|
2015-11-18 17:57:30 +00:00
|
|
|
#include "coth.h"
|
2011-05-18 16:05:34 -07:00
|
|
|
|
2011-08-02 11:36:17 +05:30
|
|
|
int v9fs_co_llistxattr(V9fsPDU *pdu, V9fsPath *path, void *value, size_t size)
|
2011-05-18 16:05:34 -07:00
|
|
|
{
|
|
|
|
int err;
|
2011-08-02 11:36:17 +05:30
|
|
|
V9fsState *s = pdu->s;
|
2011-05-18 16:05:34 -07:00
|
|
|
|
2011-08-02 11:36:17 +05:30
|
|
|
if (v9fs_request_cancelled(pdu)) {
|
|
|
|
return -EINTR;
|
|
|
|
}
|
2011-08-02 11:35:54 +05:30
|
|
|
v9fs_path_read_lock(s);
|
2011-05-18 16:05:34 -07:00
|
|
|
v9fs_co_run_in_worker(
|
|
|
|
{
|
2011-09-09 15:14:18 +05:30
|
|
|
err = s->ops->llistxattr(&s->ctx, path, value, size);
|
2011-05-18 16:05:34 -07:00
|
|
|
if (err < 0) {
|
|
|
|
err = -errno;
|
|
|
|
}
|
|
|
|
});
|
2011-08-02 11:35:54 +05:30
|
|
|
v9fs_path_unlock(s);
|
2011-05-18 16:05:34 -07:00
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
2011-08-02 11:36:17 +05:30
|
|
|
int v9fs_co_lgetxattr(V9fsPDU *pdu, V9fsPath *path,
|
2011-05-18 16:05:34 -07:00
|
|
|
V9fsString *xattr_name,
|
|
|
|
void *value, size_t size)
|
|
|
|
{
|
|
|
|
int err;
|
2011-08-02 11:36:17 +05:30
|
|
|
V9fsState *s = pdu->s;
|
2011-05-18 16:05:34 -07:00
|
|
|
|
2011-08-02 11:36:17 +05:30
|
|
|
if (v9fs_request_cancelled(pdu)) {
|
|
|
|
return -EINTR;
|
|
|
|
}
|
2011-08-02 11:35:54 +05:30
|
|
|
v9fs_path_read_lock(s);
|
2011-05-18 16:05:34 -07:00
|
|
|
v9fs_co_run_in_worker(
|
|
|
|
{
|
2011-09-09 15:14:18 +05:30
|
|
|
err = s->ops->lgetxattr(&s->ctx, path,
|
2011-05-18 16:05:34 -07:00
|
|
|
xattr_name->data,
|
|
|
|
value, size);
|
|
|
|
if (err < 0) {
|
|
|
|
err = -errno;
|
|
|
|
}
|
|
|
|
});
|
2011-08-02 11:35:54 +05:30
|
|
|
v9fs_path_unlock(s);
|
2011-05-18 16:05:34 -07:00
|
|
|
return err;
|
|
|
|
}
|
2011-05-07 21:09:24 +05:30
|
|
|
|
2011-08-02 11:36:17 +05:30
|
|
|
int v9fs_co_lsetxattr(V9fsPDU *pdu, V9fsPath *path,
|
2011-05-07 21:09:24 +05:30
|
|
|
V9fsString *xattr_name, void *value,
|
|
|
|
size_t size, int flags)
|
|
|
|
{
|
|
|
|
int err;
|
2011-08-02 11:36:17 +05:30
|
|
|
V9fsState *s = pdu->s;
|
2011-05-07 21:09:24 +05:30
|
|
|
|
2011-08-02 11:36:17 +05:30
|
|
|
if (v9fs_request_cancelled(pdu)) {
|
|
|
|
return -EINTR;
|
|
|
|
}
|
2011-08-02 11:35:54 +05:30
|
|
|
v9fs_path_read_lock(s);
|
2011-05-07 21:09:24 +05:30
|
|
|
v9fs_co_run_in_worker(
|
|
|
|
{
|
2011-09-09 15:14:18 +05:30
|
|
|
err = s->ops->lsetxattr(&s->ctx, path,
|
2011-05-07 21:09:24 +05:30
|
|
|
xattr_name->data, value,
|
|
|
|
size, flags);
|
|
|
|
if (err < 0) {
|
|
|
|
err = -errno;
|
|
|
|
}
|
|
|
|
});
|
2011-08-02 11:35:54 +05:30
|
|
|
v9fs_path_unlock(s);
|
2011-05-07 21:09:24 +05:30
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
2011-08-02 11:36:17 +05:30
|
|
|
int v9fs_co_lremovexattr(V9fsPDU *pdu, V9fsPath *path,
|
2011-05-07 21:09:24 +05:30
|
|
|
V9fsString *xattr_name)
|
|
|
|
{
|
|
|
|
int err;
|
2011-08-02 11:36:17 +05:30
|
|
|
V9fsState *s = pdu->s;
|
2011-05-07 21:09:24 +05:30
|
|
|
|
2011-08-02 11:36:17 +05:30
|
|
|
if (v9fs_request_cancelled(pdu)) {
|
|
|
|
return -EINTR;
|
|
|
|
}
|
2011-08-02 11:35:54 +05:30
|
|
|
v9fs_path_read_lock(s);
|
2011-05-07 21:09:24 +05:30
|
|
|
v9fs_co_run_in_worker(
|
|
|
|
{
|
2011-09-09 15:14:18 +05:30
|
|
|
err = s->ops->lremovexattr(&s->ctx, path, xattr_name->data);
|
2011-05-07 21:09:24 +05:30
|
|
|
if (err < 0) {
|
|
|
|
err = -errno;
|
|
|
|
}
|
|
|
|
});
|
2011-08-02 11:35:54 +05:30
|
|
|
v9fs_path_unlock(s);
|
2011-05-07 21:09:24 +05:30
|
|
|
return err;
|
|
|
|
}
|