1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
|
/*
* Virtio 9p backend
*
* 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.
*
*/
#include "fsdev/qemu-fsdev.h"
#include "qemu-thread.h"
#include "qemu-coroutine.h"
#include "virtio-9p-coth.h"
int v9fs_co_readlink(V9fsState *s, V9fsString *path, V9fsString *buf)
{
int err;
ssize_t len;
buf->data = qemu_malloc(PATH_MAX);
v9fs_co_run_in_worker(
{
len = s->ops->readlink(&s->ctx, path->data,
buf->data, PATH_MAX - 1);
if (len > -1) {
buf->size = len;
buf->data[len] = 0;
err = 0;
} else {
err = -errno;
}
});
if (err) {
qemu_free(buf->data);
buf->data = NULL;
buf->size = 0;
}
return err;
}
int v9fs_co_statfs(V9fsState *s, V9fsString *path, struct statfs *stbuf)
{
int err;
v9fs_co_run_in_worker(
{
err = s->ops->statfs(&s->ctx, path->data, stbuf);
if (err < 0) {
err = -errno;
}
});
return err;
}
int v9fs_co_chmod(V9fsState *s, V9fsString *path, mode_t mode)
{
int err;
FsCred cred;
cred_init(&cred);
cred.fc_mode = mode;
v9fs_co_run_in_worker(
{
err = s->ops->chmod(&s->ctx, path->data, &cred);
if (err < 0) {
err = -errno;
}
});
return err;
}
int v9fs_co_utimensat(V9fsState *s, V9fsString *path,
struct timespec times[2])
{
int err;
v9fs_co_run_in_worker(
{
err = s->ops->utimensat(&s->ctx, path->data, times);
if (err < 0) {
err = -errno;
}
});
return err;
}
int v9fs_co_chown(V9fsState *s, V9fsString *path, uid_t uid, gid_t gid)
{
int err;
FsCred cred;
cred_init(&cred);
cred.fc_uid = uid;
cred.fc_gid = gid;
v9fs_co_run_in_worker(
{
err = s->ops->chown(&s->ctx, path->data, &cred);
if (err < 0) {
err = -errno;
}
});
return err;
}
int v9fs_co_truncate(V9fsState *s, V9fsString *path, off_t size)
{
int err;
v9fs_co_run_in_worker(
{
err = s->ops->truncate(&s->ctx, path->data, size);
if (err < 0) {
err = -errno;
}
});
return err;
}
|