xref: /openbmc/qemu/hw/virtio/vhost-user-vsock.c (revision d0b9b28a)
1 /*
2  * Vhost-user vsock virtio device
3  *
4  * Copyright 2020 Red Hat, Inc.
5  *
6  * This work is licensed under the terms of the GNU GPL, version 2 or
7  * (at your option) any later version.  See the COPYING file in the
8  * top-level directory.
9  */
10 
11 #include "qemu/osdep.h"
12 
13 #include "qapi/error.h"
14 #include "qemu/error-report.h"
15 #include "hw/qdev-properties.h"
16 #include "hw/qdev-properties-system.h"
17 #include "hw/virtio/vhost-user-vsock.h"
18 
19 static const int user_feature_bits[] = {
20     VIRTIO_F_VERSION_1,
21     VIRTIO_RING_F_INDIRECT_DESC,
22     VIRTIO_RING_F_EVENT_IDX,
23     VIRTIO_F_NOTIFY_ON_EMPTY,
24     VIRTIO_F_NOTIFICATION_DATA,
25     VHOST_INVALID_FEATURE_BIT
26 };
27 
28 static void vuv_get_config(VirtIODevice *vdev, uint8_t *config)
29 {
30     VHostUserVSock *vsock = VHOST_USER_VSOCK(vdev);
31 
32     memcpy(config, &vsock->vsockcfg, sizeof(struct virtio_vsock_config));
33 }
34 
35 static int vuv_handle_config_change(struct vhost_dev *dev)
36 {
37     VHostUserVSock *vsock = VHOST_USER_VSOCK(dev->vdev);
38     Error *local_err = NULL;
39     int ret = vhost_dev_get_config(dev, (uint8_t *)&vsock->vsockcfg,
40                                    sizeof(struct virtio_vsock_config),
41                                    &local_err);
42     if (ret < 0) {
43         error_report_err(local_err);
44         return -1;
45     }
46 
47     virtio_notify_config(dev->vdev);
48 
49     return 0;
50 }
51 
52 const VhostDevConfigOps vsock_ops = {
53     .vhost_dev_config_notifier = vuv_handle_config_change,
54 };
55 
56 static void vuv_set_status(VirtIODevice *vdev, uint8_t status)
57 {
58     VHostVSockCommon *vvc = VHOST_VSOCK_COMMON(vdev);
59     bool should_start = virtio_device_should_start(vdev, status);
60 
61     if (vhost_dev_is_started(&vvc->vhost_dev) == should_start) {
62         return;
63     }
64 
65     if (should_start) {
66         int ret = vhost_vsock_common_start(vdev);
67         if (ret < 0) {
68             return;
69         }
70     } else {
71         vhost_vsock_common_stop(vdev);
72     }
73 }
74 
75 static uint64_t vuv_get_features(VirtIODevice *vdev,
76                                  uint64_t features,
77                                  Error **errp)
78 {
79     VHostVSockCommon *vvc = VHOST_VSOCK_COMMON(vdev);
80 
81     features = vhost_get_features(&vvc->vhost_dev, user_feature_bits, features);
82 
83     return vhost_vsock_common_get_features(vdev, features, errp);
84 }
85 
86 static const VMStateDescription vuv_vmstate = {
87     .name = "vhost-user-vsock",
88     .unmigratable = 1,
89 };
90 
91 static void vuv_device_realize(DeviceState *dev, Error **errp)
92 {
93     VHostVSockCommon *vvc = VHOST_VSOCK_COMMON(dev);
94     VirtIODevice *vdev = VIRTIO_DEVICE(dev);
95     VHostUserVSock *vsock = VHOST_USER_VSOCK(dev);
96     int ret;
97 
98     if (!vsock->conf.chardev.chr) {
99         error_setg(errp, "missing chardev");
100         return;
101     }
102 
103     if (!vhost_user_init(&vsock->vhost_user, &vsock->conf.chardev, errp)) {
104         return;
105     }
106 
107     vhost_vsock_common_realize(vdev);
108 
109     vhost_dev_set_config_notifier(&vvc->vhost_dev, &vsock_ops);
110 
111     ret = vhost_dev_init(&vvc->vhost_dev, &vsock->vhost_user,
112                          VHOST_BACKEND_TYPE_USER, 0, errp);
113     if (ret < 0) {
114         goto err_virtio;
115     }
116 
117     ret = vhost_dev_get_config(&vvc->vhost_dev, (uint8_t *)&vsock->vsockcfg,
118                                sizeof(struct virtio_vsock_config), errp);
119     if (ret < 0) {
120         goto err_vhost_dev;
121     }
122 
123     return;
124 
125 err_vhost_dev:
126     vhost_dev_cleanup(&vvc->vhost_dev);
127 err_virtio:
128     vhost_vsock_common_unrealize(vdev);
129     vhost_user_cleanup(&vsock->vhost_user);
130     return;
131 }
132 
133 static void vuv_device_unrealize(DeviceState *dev)
134 {
135     VHostVSockCommon *vvc = VHOST_VSOCK_COMMON(dev);
136     VirtIODevice *vdev = VIRTIO_DEVICE(dev);
137     VHostUserVSock *vsock = VHOST_USER_VSOCK(dev);
138 
139     /* This will stop vhost backend if appropriate. */
140     vuv_set_status(vdev, 0);
141 
142     vhost_dev_cleanup(&vvc->vhost_dev);
143 
144     vhost_vsock_common_unrealize(vdev);
145 
146     vhost_user_cleanup(&vsock->vhost_user);
147 
148 }
149 
150 static Property vuv_properties[] = {
151     DEFINE_PROP_CHR("chardev", VHostUserVSock, conf.chardev),
152     DEFINE_PROP_END_OF_LIST(),
153 };
154 
155 static void vuv_class_init(ObjectClass *klass, void *data)
156 {
157     DeviceClass *dc = DEVICE_CLASS(klass);
158     VirtioDeviceClass *vdc = VIRTIO_DEVICE_CLASS(klass);
159 
160     device_class_set_props(dc, vuv_properties);
161     dc->vmsd = &vuv_vmstate;
162     vdc->realize = vuv_device_realize;
163     vdc->unrealize = vuv_device_unrealize;
164     vdc->get_features = vuv_get_features;
165     vdc->get_config = vuv_get_config;
166     vdc->set_status = vuv_set_status;
167 }
168 
169 static const TypeInfo vuv_info = {
170     .name = TYPE_VHOST_USER_VSOCK,
171     .parent = TYPE_VHOST_VSOCK_COMMON,
172     .instance_size = sizeof(VHostUserVSock),
173     .class_init = vuv_class_init,
174 };
175 
176 static void vuv_register_types(void)
177 {
178     type_register_static(&vuv_info);
179 }
180 
181 type_init(vuv_register_types)
182