docs/cxl: Add switch documentation
[qemu.git] / hw / virtio / vhost-user-fs.c
blobe513e4fdda802559c5c25430fa6a5df930b1917e
1 /*
2 * Vhost-user filesystem virtio device
4 * Copyright 2018-2019 Red Hat, Inc.
6 * Authors:
7 * Stefan Hajnoczi <stefanha@redhat.com>
9 * This work is licensed under the terms of the GNU GPL, version 2 or
10 * (at your option) any later version. See the COPYING file in the
11 * top-level directory.
14 #include "qemu/osdep.h"
15 #include <sys/ioctl.h>
16 #include "standard-headers/linux/virtio_fs.h"
17 #include "qapi/error.h"
18 #include "hw/qdev-properties.h"
19 #include "hw/qdev-properties-system.h"
20 #include "hw/virtio/virtio-bus.h"
21 #include "hw/virtio/virtio-access.h"
22 #include "qemu/error-report.h"
23 #include "hw/virtio/vhost-user-fs.h"
24 #include "monitor/monitor.h"
25 #include "sysemu/sysemu.h"
27 static const int user_feature_bits[] = {
28 VIRTIO_F_VERSION_1,
29 VIRTIO_RING_F_INDIRECT_DESC,
30 VIRTIO_RING_F_EVENT_IDX,
31 VIRTIO_F_NOTIFY_ON_EMPTY,
32 VIRTIO_F_RING_PACKED,
33 VIRTIO_F_IOMMU_PLATFORM,
35 VHOST_INVALID_FEATURE_BIT
38 static void vuf_get_config(VirtIODevice *vdev, uint8_t *config)
40 VHostUserFS *fs = VHOST_USER_FS(vdev);
41 struct virtio_fs_config fscfg = {};
43 memcpy((char *)fscfg.tag, fs->conf.tag,
44 MIN(strlen(fs->conf.tag) + 1, sizeof(fscfg.tag)));
46 virtio_stl_p(vdev, &fscfg.num_request_queues, fs->conf.num_request_queues);
48 memcpy(config, &fscfg, sizeof(fscfg));
51 static void vuf_start(VirtIODevice *vdev)
53 VHostUserFS *fs = VHOST_USER_FS(vdev);
54 BusState *qbus = BUS(qdev_get_parent_bus(DEVICE(vdev)));
55 VirtioBusClass *k = VIRTIO_BUS_GET_CLASS(qbus);
56 int ret;
57 int i;
59 if (!k->set_guest_notifiers) {
60 error_report("binding does not support guest notifiers");
61 return;
64 ret = vhost_dev_enable_notifiers(&fs->vhost_dev, vdev);
65 if (ret < 0) {
66 error_report("Error enabling host notifiers: %d", -ret);
67 return;
70 ret = k->set_guest_notifiers(qbus->parent, fs->vhost_dev.nvqs, true);
71 if (ret < 0) {
72 error_report("Error binding guest notifier: %d", -ret);
73 goto err_host_notifiers;
76 fs->vhost_dev.acked_features = vdev->guest_features;
77 ret = vhost_dev_start(&fs->vhost_dev, vdev);
78 if (ret < 0) {
79 error_report("Error starting vhost: %d", -ret);
80 goto err_guest_notifiers;
84 * guest_notifier_mask/pending not used yet, so just unmask
85 * everything here. virtio-pci will do the right thing by
86 * enabling/disabling irqfd.
88 for (i = 0; i < fs->vhost_dev.nvqs; i++) {
89 vhost_virtqueue_mask(&fs->vhost_dev, vdev, i, false);
92 return;
94 err_guest_notifiers:
95 k->set_guest_notifiers(qbus->parent, fs->vhost_dev.nvqs, false);
96 err_host_notifiers:
97 vhost_dev_disable_notifiers(&fs->vhost_dev, vdev);
100 static void vuf_stop(VirtIODevice *vdev)
102 VHostUserFS *fs = VHOST_USER_FS(vdev);
103 BusState *qbus = BUS(qdev_get_parent_bus(DEVICE(vdev)));
104 VirtioBusClass *k = VIRTIO_BUS_GET_CLASS(qbus);
105 int ret;
107 if (!k->set_guest_notifiers) {
108 return;
111 vhost_dev_stop(&fs->vhost_dev, vdev);
113 ret = k->set_guest_notifiers(qbus->parent, fs->vhost_dev.nvqs, false);
114 if (ret < 0) {
115 error_report("vhost guest notifier cleanup failed: %d", ret);
116 return;
119 vhost_dev_disable_notifiers(&fs->vhost_dev, vdev);
122 static void vuf_set_status(VirtIODevice *vdev, uint8_t status)
124 VHostUserFS *fs = VHOST_USER_FS(vdev);
125 bool should_start = status & VIRTIO_CONFIG_S_DRIVER_OK;
127 if (!vdev->vm_running) {
128 should_start = false;
131 if (fs->vhost_dev.started == should_start) {
132 return;
135 if (should_start) {
136 vuf_start(vdev);
137 } else {
138 vuf_stop(vdev);
142 static uint64_t vuf_get_features(VirtIODevice *vdev,
143 uint64_t features,
144 Error **errp)
146 VHostUserFS *fs = VHOST_USER_FS(vdev);
148 return vhost_get_features(&fs->vhost_dev, user_feature_bits, features);
151 static void vuf_handle_output(VirtIODevice *vdev, VirtQueue *vq)
154 * Not normally called; it's the daemon that handles the queue;
155 * however virtio's cleanup path can call this.
159 static void vuf_guest_notifier_mask(VirtIODevice *vdev, int idx,
160 bool mask)
162 VHostUserFS *fs = VHOST_USER_FS(vdev);
164 vhost_virtqueue_mask(&fs->vhost_dev, vdev, idx, mask);
167 static bool vuf_guest_notifier_pending(VirtIODevice *vdev, int idx)
169 VHostUserFS *fs = VHOST_USER_FS(vdev);
171 return vhost_virtqueue_pending(&fs->vhost_dev, idx);
174 static void vuf_device_realize(DeviceState *dev, Error **errp)
176 VirtIODevice *vdev = VIRTIO_DEVICE(dev);
177 VHostUserFS *fs = VHOST_USER_FS(dev);
178 unsigned int i;
179 size_t len;
180 int ret;
182 if (!fs->conf.chardev.chr) {
183 error_setg(errp, "missing chardev");
184 return;
187 if (!fs->conf.tag) {
188 error_setg(errp, "missing tag property");
189 return;
191 len = strlen(fs->conf.tag);
192 if (len == 0) {
193 error_setg(errp, "tag property cannot be empty");
194 return;
196 if (len > sizeof_field(struct virtio_fs_config, tag)) {
197 error_setg(errp, "tag property must be %zu bytes or less",
198 sizeof_field(struct virtio_fs_config, tag));
199 return;
202 if (fs->conf.num_request_queues == 0) {
203 error_setg(errp, "num-request-queues property must be larger than 0");
204 return;
207 if (!is_power_of_2(fs->conf.queue_size)) {
208 error_setg(errp, "queue-size property must be a power of 2");
209 return;
212 if (fs->conf.queue_size > VIRTQUEUE_MAX_SIZE) {
213 error_setg(errp, "queue-size property must be %u or smaller",
214 VIRTQUEUE_MAX_SIZE);
215 return;
218 if (!vhost_user_init(&fs->vhost_user, &fs->conf.chardev, errp)) {
219 return;
222 virtio_init(vdev, VIRTIO_ID_FS, sizeof(struct virtio_fs_config));
224 /* Hiprio queue */
225 fs->hiprio_vq = virtio_add_queue(vdev, fs->conf.queue_size, vuf_handle_output);
227 /* Request queues */
228 fs->req_vqs = g_new(VirtQueue *, fs->conf.num_request_queues);
229 for (i = 0; i < fs->conf.num_request_queues; i++) {
230 fs->req_vqs[i] = virtio_add_queue(vdev, fs->conf.queue_size, vuf_handle_output);
233 /* 1 high prio queue, plus the number configured */
234 fs->vhost_dev.nvqs = 1 + fs->conf.num_request_queues;
235 fs->vhost_dev.vqs = g_new0(struct vhost_virtqueue, fs->vhost_dev.nvqs);
236 ret = vhost_dev_init(&fs->vhost_dev, &fs->vhost_user,
237 VHOST_BACKEND_TYPE_USER, 0, errp);
238 if (ret < 0) {
239 goto err_virtio;
242 return;
244 err_virtio:
245 vhost_user_cleanup(&fs->vhost_user);
246 virtio_delete_queue(fs->hiprio_vq);
247 for (i = 0; i < fs->conf.num_request_queues; i++) {
248 virtio_delete_queue(fs->req_vqs[i]);
250 g_free(fs->req_vqs);
251 virtio_cleanup(vdev);
252 g_free(fs->vhost_dev.vqs);
253 return;
256 static void vuf_device_unrealize(DeviceState *dev)
258 VirtIODevice *vdev = VIRTIO_DEVICE(dev);
259 VHostUserFS *fs = VHOST_USER_FS(dev);
260 int i;
262 /* This will stop vhost backend if appropriate. */
263 vuf_set_status(vdev, 0);
265 vhost_dev_cleanup(&fs->vhost_dev);
267 vhost_user_cleanup(&fs->vhost_user);
269 virtio_delete_queue(fs->hiprio_vq);
270 for (i = 0; i < fs->conf.num_request_queues; i++) {
271 virtio_delete_queue(fs->req_vqs[i]);
273 g_free(fs->req_vqs);
274 virtio_cleanup(vdev);
275 g_free(fs->vhost_dev.vqs);
276 fs->vhost_dev.vqs = NULL;
279 static struct vhost_dev *vuf_get_vhost(VirtIODevice *vdev)
281 VHostUserFS *fs = VHOST_USER_FS(vdev);
282 return &fs->vhost_dev;
285 static const VMStateDescription vuf_vmstate = {
286 .name = "vhost-user-fs",
287 .unmigratable = 1,
290 static Property vuf_properties[] = {
291 DEFINE_PROP_CHR("chardev", VHostUserFS, conf.chardev),
292 DEFINE_PROP_STRING("tag", VHostUserFS, conf.tag),
293 DEFINE_PROP_UINT16("num-request-queues", VHostUserFS,
294 conf.num_request_queues, 1),
295 DEFINE_PROP_UINT16("queue-size", VHostUserFS, conf.queue_size, 128),
296 DEFINE_PROP_END_OF_LIST(),
299 static void vuf_instance_init(Object *obj)
301 VHostUserFS *fs = VHOST_USER_FS(obj);
303 device_add_bootindex_property(obj, &fs->bootindex, "bootindex",
304 "/filesystem@0", DEVICE(obj));
307 static void vuf_class_init(ObjectClass *klass, void *data)
309 DeviceClass *dc = DEVICE_CLASS(klass);
310 VirtioDeviceClass *vdc = VIRTIO_DEVICE_CLASS(klass);
312 device_class_set_props(dc, vuf_properties);
313 dc->vmsd = &vuf_vmstate;
314 set_bit(DEVICE_CATEGORY_STORAGE, dc->categories);
315 vdc->realize = vuf_device_realize;
316 vdc->unrealize = vuf_device_unrealize;
317 vdc->get_features = vuf_get_features;
318 vdc->get_config = vuf_get_config;
319 vdc->set_status = vuf_set_status;
320 vdc->guest_notifier_mask = vuf_guest_notifier_mask;
321 vdc->guest_notifier_pending = vuf_guest_notifier_pending;
322 vdc->get_vhost = vuf_get_vhost;
325 static const TypeInfo vuf_info = {
326 .name = TYPE_VHOST_USER_FS,
327 .parent = TYPE_VIRTIO_DEVICE,
328 .instance_size = sizeof(VHostUserFS),
329 .instance_init = vuf_instance_init,
330 .class_init = vuf_class_init,
333 static void vuf_register_types(void)
335 type_register_static(&vuf_info);
338 type_init(vuf_register_types)