]> git.proxmox.com Git - mirror_qemu.git/blame - hw/9pfs/virtio-9p-device.c
9pfs: make pdu_{,un}marshal proper functions
[mirror_qemu.git] / hw / 9pfs / virtio-9p-device.c
CommitLineData
f4f61d27
AK
1/*
2 * Virtio 9p backend
3 *
4 * Copyright IBM, Corp. 2010
5 *
6 * Authors:
7 * Anthony Liguori <aliguori@us.ibm.com>
8 *
9 * This work is licensed under the terms of the GNU GPL, version 2. See
10 * the COPYING file in the top-level directory.
11 *
12 */
13
0d09e41a
PB
14#include "hw/virtio/virtio.h"
15#include "hw/i386/pc.h"
1de7afc9 16#include "qemu/sockets.h"
f4f61d27
AK
17#include "virtio-9p.h"
18#include "fsdev/qemu-fsdev.h"
267ae092 19#include "9p-xattr.h"
fe52840c 20#include "coth.h"
d64ccb91 21#include "hw/virtio/virtio-access.h"
f4f61d27 22
9d5b731d
JW
23static uint64_t virtio_9p_get_features(VirtIODevice *vdev, uint64_t features,
24 Error **errp)
f4f61d27 25{
0cd09c3a 26 virtio_add_feature(&features, VIRTIO_9P_MOUNT_TAG);
f4f61d27
AK
27 return features;
28}
29
f4f61d27
AK
30static void virtio_9p_get_config(VirtIODevice *vdev, uint8_t *config)
31{
e9a0152b 32 int len;
f4f61d27 33 struct virtio_9p_config *cfg;
13daf6ca 34 V9fsState *s = VIRTIO_9P(vdev);
f4f61d27 35
e9a0152b
AK
36 len = strlen(s->tag);
37 cfg = g_malloc0(sizeof(struct virtio_9p_config) + len);
d64ccb91 38 virtio_stw_p(vdev, &cfg->tag_len, len);
e9a0152b
AK
39 /* We don't copy the terminating null to config space */
40 memcpy(cfg->tag, s->tag, len);
f4f61d27 41 memcpy(config, cfg, s->config_size);
7267c094 42 g_free(cfg);
f4f61d27
AK
43}
44
4652f164
GK
45static void virtio_9p_save(QEMUFile *f, void *opaque)
46{
47 virtio_save(VIRTIO_DEVICE(opaque), f);
48}
49
50static int virtio_9p_load(QEMUFile *f, void *opaque, int version_id)
51{
52 return virtio_load(VIRTIO_DEVICE(opaque), f, version_id);
53}
54
59be7522 55static void virtio_9p_device_realize(DeviceState *dev, Error **errp)
0174fe73 56{
59be7522
AF
57 VirtIODevice *vdev = VIRTIO_DEVICE(dev);
58 V9fsState *s = VIRTIO_9P(dev);
f4f61d27
AK
59 int i, len;
60 struct stat stat;
fbcbf101 61 FsDriverEntry *fse;
7cca27df 62 V9fsPath path;
f4f61d27 63
0f3657ec 64 virtio_init(vdev, "virtio-9p", VIRTIO_ID_9P,
e8111e50 65 sizeof(struct virtio_9p_config) + MAX_TAG_LEN);
e7303c43 66
f4f61d27
AK
67 /* initialize pdu allocator */
68 QLIST_INIT(&s->free_list);
bccacf6c 69 QLIST_INIT(&s->active_list);
f4f61d27
AK
70 for (i = 0; i < (MAX_REQ - 1); i++) {
71 QLIST_INSERT_HEAD(&s->free_list, &s->pdus[i], next);
ad38ce9e 72 s->pdus[i].s = s;
f4f61d27
AK
73 }
74
e8111e50 75 s->vq = virtio_add_queue(vdev, MAX_REQ, handle_9p_output);
f4f61d27 76
27915efb
AF
77 v9fs_path_init(&path);
78
e8111e50 79 fse = get_fsdev_fsentry(s->fsconf.fsdev_id);
f4f61d27
AK
80
81 if (!fse) {
82 /* We don't have a fsdev identified by fsdev_id */
59be7522
AF
83 error_setg(errp, "Virtio-9p device couldn't find fsdev with the "
84 "id = %s",
85 s->fsconf.fsdev_id ? s->fsconf.fsdev_id : "NULL");
92304bf3 86 goto out;
f4f61d27
AK
87 }
88
e8111e50 89 if (!s->fsconf.tag) {
99519f0a 90 /* we haven't specified a mount_tag */
59be7522
AF
91 error_setg(errp, "fsdev with id %s needs mount_tag arguments",
92 s->fsconf.fsdev_id);
92304bf3 93 goto out;
f4f61d27
AK
94 }
95
b97400ca 96 s->ctx.export_flags = fse->export_flags;
c64f50d1 97 s->ctx.fs_root = g_strdup(fse->path);
b97400ca 98 s->ctx.exops.get_st_gen = NULL;
e8111e50 99 len = strlen(s->fsconf.tag);
e9a0152b 100 if (len > MAX_TAG_LEN - 1) {
59be7522
AF
101 error_setg(errp, "mount tag '%s' (%d bytes) is longer than "
102 "maximum (%d bytes)", s->fsconf.tag, len, MAX_TAG_LEN - 1);
92304bf3 103 goto out;
f4f61d27 104 }
e9a0152b 105
92304bf3 106 s->tag = g_strdup(s->fsconf.tag);
f4f61d27
AK
107 s->ctx.uid = -1;
108
109 s->ops = fse->ops;
e9a0152b 110 s->config_size = sizeof(struct virtio_9p_config) + len;
9e5b2247 111 s->fid_list = NULL;
02cb7f3a 112 qemu_co_rwlock_init(&s->rename_lock);
f4f61d27 113
0174fe73 114 if (s->ops->init(&s->ctx) < 0) {
59be7522
AF
115 error_setg(errp, "Virtio-9p Failed to initialize fs-driver with id:%s"
116 " and export path:%s", s->fsconf.fsdev_id, s->ctx.fs_root);
92304bf3 117 goto out;
0174fe73 118 }
7cca27df
MK
119
120 /*
121 * Check details of export path, We need to use fs driver
122 * call back to do that. Since we are in the init path, we don't
123 * use co-routines here.
124 */
7cca27df 125 if (s->ops->name_to_path(&s->ctx, NULL, "/", &path) < 0) {
59be7522
AF
126 error_setg(errp,
127 "error in converting name to path %s", strerror(errno));
92304bf3 128 goto out;
7cca27df
MK
129 }
130 if (s->ops->lstat(&s->ctx, &path, &stat)) {
59be7522 131 error_setg(errp, "share path %s does not exist", fse->path);
92304bf3 132 goto out;
7cca27df 133 } else if (!S_ISDIR(stat.st_mode)) {
59be7522 134 error_setg(errp, "share path %s is not a directory", fse->path);
92304bf3 135 goto out;
7cca27df
MK
136 }
137 v9fs_path_free(&path);
138
4652f164 139 register_savevm(dev, "virtio-9p", -1, 1, virtio_9p_save, virtio_9p_load, s);
59be7522 140 return;
92304bf3
MK
141out:
142 g_free(s->ctx.fs_root);
143 g_free(s->tag);
144 virtio_cleanup(vdev);
145 v9fs_path_free(&path);
e7303c43
FK
146}
147
6cecf093
GK
148static void virtio_9p_device_unrealize(DeviceState *dev, Error **errp)
149{
150 VirtIODevice *vdev = VIRTIO_DEVICE(dev);
151 V9fsState *s = VIRTIO_9P(dev);
152
153 virtio_cleanup(vdev);
154 unregister_savevm(dev, "virtio-9p", s);
155 g_free(s->ctx.fs_root);
156 g_free(s->tag);
157}
158
e7303c43
FK
159/* virtio-9p device */
160
e7303c43 161static Property virtio_9p_properties[] = {
83a84878
SZ
162 DEFINE_PROP_STRING("mount_tag", V9fsState, fsconf.tag),
163 DEFINE_PROP_STRING("fsdev", V9fsState, fsconf.fsdev_id),
e7303c43
FK
164 DEFINE_PROP_END_OF_LIST(),
165};
166
167static void virtio_9p_class_init(ObjectClass *klass, void *data)
168{
169 DeviceClass *dc = DEVICE_CLASS(klass);
170 VirtioDeviceClass *vdc = VIRTIO_DEVICE_CLASS(klass);
59be7522 171
e7303c43 172 dc->props = virtio_9p_properties;
125ee0ed 173 set_bit(DEVICE_CATEGORY_STORAGE, dc->categories);
59be7522 174 vdc->realize = virtio_9p_device_realize;
6cecf093 175 vdc->unrealize = virtio_9p_device_unrealize;
e7303c43
FK
176 vdc->get_features = virtio_9p_get_features;
177 vdc->get_config = virtio_9p_get_config;
178}
179
180static const TypeInfo virtio_device_info = {
181 .name = TYPE_VIRTIO_9P,
182 .parent = TYPE_VIRTIO_DEVICE,
183 .instance_size = sizeof(V9fsState),
184 .class_init = virtio_9p_class_init,
185};
186
187static void virtio_9p_register_types(void)
188{
189 type_register_static(&virtio_device_info);
190}
191
192type_init(virtio_9p_register_types)