]> git.proxmox.com Git - mirror_qemu.git/blame - hw/virtio/vhost-backend.c
hw/virtio: add boilerplate for vhost-user-i2c device
[mirror_qemu.git] / hw / virtio / vhost-backend.c
CommitLineData
1a1bfac9
NN
1/*
2 * vhost-backend
3 *
4 * Copyright (c) 2013 Virtual Open Systems Sarl.
5 *
6 * This work is licensed under the terms of the GNU GPL, version 2 or later.
7 * See the COPYING file in the top-level directory.
8 *
9 */
10
9b8bfe21 11#include "qemu/osdep.h"
1a1bfac9
NN
12#include "hw/virtio/vhost.h"
13#include "hw/virtio/vhost-backend.h"
14#include "qemu/error-report.h"
db725815 15#include "qemu/main-loop.h"
18658a3c
PB
16#include "standard-headers/linux/vhost_types.h"
17
108a6481 18#include "hw/virtio/vhost-vdpa.h"
299e6f19 19#ifdef CONFIG_VHOST_KERNEL
18658a3c
PB
20#include <linux/vhost.h>
21#include <sys/ioctl.h>
1a1bfac9
NN
22
23static int vhost_kernel_call(struct vhost_dev *dev, unsigned long int request,
24 void *arg)
25{
26 int fd = (uintptr_t) dev->opaque;
f2a6e6c4 27 int ret;
1a1bfac9
NN
28
29 assert(dev->vhost_ops->backend_type == VHOST_BACKEND_TYPE_KERNEL);
30
f2a6e6c4
KW
31 ret = ioctl(fd, request, arg);
32 return ret < 0 ? -errno : ret;
1a1bfac9
NN
33}
34
28770ff9 35static int vhost_kernel_init(struct vhost_dev *dev, void *opaque, Error **errp)
1a1bfac9
NN
36{
37 assert(dev->vhost_ops->backend_type == VHOST_BACKEND_TYPE_KERNEL);
38
39 dev->opaque = opaque;
40
41 return 0;
42}
43
44static int vhost_kernel_cleanup(struct vhost_dev *dev)
45{
46 int fd = (uintptr_t) dev->opaque;
47
48 assert(dev->vhost_ops->backend_type == VHOST_BACKEND_TYPE_KERNEL);
49
50 return close(fd);
51}
52
2ce68e4c
IM
53static int vhost_kernel_memslots_limit(struct vhost_dev *dev)
54{
55 int limit = 64;
56 char *s;
57
58 if (g_file_get_contents("/sys/module/vhost/parameters/max_mem_regions",
59 &s, NULL, NULL)) {
60 uint64_t val = g_ascii_strtoull(s, NULL, 10);
61 if (!((val == G_MAXUINT64 || !val) && errno)) {
08b9e0ba 62 g_free(s);
2ce68e4c
IM
63 return val;
64 }
65 error_report("ignoring invalid max_mem_regions value in vhost module:"
66 " %s", s);
67 }
08b9e0ba 68 g_free(s);
2ce68e4c
IM
69 return limit;
70}
71
21e70425
MAL
72static int vhost_kernel_net_set_backend(struct vhost_dev *dev,
73 struct vhost_vring_file *file)
74{
75 return vhost_kernel_call(dev, VHOST_NET_SET_BACKEND, file);
76}
77
78static int vhost_kernel_scsi_set_endpoint(struct vhost_dev *dev,
79 struct vhost_scsi_target *target)
80{
81 return vhost_kernel_call(dev, VHOST_SCSI_SET_ENDPOINT, target);
82}
83
84static int vhost_kernel_scsi_clear_endpoint(struct vhost_dev *dev,
85 struct vhost_scsi_target *target)
86{
87 return vhost_kernel_call(dev, VHOST_SCSI_CLEAR_ENDPOINT, target);
88}
89
90static int vhost_kernel_scsi_get_abi_version(struct vhost_dev *dev, int *version)
91{
92 return vhost_kernel_call(dev, VHOST_SCSI_GET_ABI_VERSION, version);
93}
94
95static int vhost_kernel_set_log_base(struct vhost_dev *dev, uint64_t base,
96 struct vhost_log *log)
c2bea314
MAL
97{
98 return vhost_kernel_call(dev, VHOST_SET_LOG_BASE, &base);
99}
100
21e70425
MAL
101static int vhost_kernel_set_mem_table(struct vhost_dev *dev,
102 struct vhost_memory *mem)
103{
104 return vhost_kernel_call(dev, VHOST_SET_MEM_TABLE, mem);
105}
106
107static int vhost_kernel_set_vring_addr(struct vhost_dev *dev,
108 struct vhost_vring_addr *addr)
109{
110 return vhost_kernel_call(dev, VHOST_SET_VRING_ADDR, addr);
111}
112
113static int vhost_kernel_set_vring_endian(struct vhost_dev *dev,
114 struct vhost_vring_state *ring)
115{
116 return vhost_kernel_call(dev, VHOST_SET_VRING_ENDIAN, ring);
117}
118
119static int vhost_kernel_set_vring_num(struct vhost_dev *dev,
120 struct vhost_vring_state *ring)
121{
122 return vhost_kernel_call(dev, VHOST_SET_VRING_NUM, ring);
123}
124
125static int vhost_kernel_set_vring_base(struct vhost_dev *dev,
126 struct vhost_vring_state *ring)
127{
128 return vhost_kernel_call(dev, VHOST_SET_VRING_BASE, ring);
129}
130
131static int vhost_kernel_get_vring_base(struct vhost_dev *dev,
132 struct vhost_vring_state *ring)
133{
134 return vhost_kernel_call(dev, VHOST_GET_VRING_BASE, ring);
135}
136
137static int vhost_kernel_set_vring_kick(struct vhost_dev *dev,
138 struct vhost_vring_file *file)
139{
140 return vhost_kernel_call(dev, VHOST_SET_VRING_KICK, file);
141}
142
143static int vhost_kernel_set_vring_call(struct vhost_dev *dev,
144 struct vhost_vring_file *file)
145{
146 return vhost_kernel_call(dev, VHOST_SET_VRING_CALL, file);
147}
148
69e87b32
JW
149static int vhost_kernel_set_vring_busyloop_timeout(struct vhost_dev *dev,
150 struct vhost_vring_state *s)
151{
152 return vhost_kernel_call(dev, VHOST_SET_VRING_BUSYLOOP_TIMEOUT, s);
153}
154
21e70425
MAL
155static int vhost_kernel_set_features(struct vhost_dev *dev,
156 uint64_t features)
157{
158 return vhost_kernel_call(dev, VHOST_SET_FEATURES, &features);
159}
160
b37556ed
JW
161static int vhost_kernel_set_backend_cap(struct vhost_dev *dev)
162{
163 uint64_t features;
164 uint64_t f = 0x1ULL << VHOST_BACKEND_F_IOTLB_MSG_V2;
165 int r;
166
167 if (vhost_kernel_call(dev, VHOST_GET_BACKEND_FEATURES, &features)) {
168 return 0;
169 }
170
171 features &= f;
172 r = vhost_kernel_call(dev, VHOST_SET_BACKEND_FEATURES,
173 &features);
174 if (r) {
175 return 0;
176 }
177
178 dev->backend_cap = features;
179
180 return 0;
181}
182
21e70425
MAL
183static int vhost_kernel_get_features(struct vhost_dev *dev,
184 uint64_t *features)
185{
186 return vhost_kernel_call(dev, VHOST_GET_FEATURES, features);
187}
188
189static int vhost_kernel_set_owner(struct vhost_dev *dev)
190{
191 return vhost_kernel_call(dev, VHOST_SET_OWNER, NULL);
192}
193
194static int vhost_kernel_reset_device(struct vhost_dev *dev)
195{
60915dc4 196 return vhost_kernel_call(dev, VHOST_RESET_OWNER, NULL);
21e70425
MAL
197}
198
199static int vhost_kernel_get_vq_index(struct vhost_dev *dev, int idx)
200{
201 assert(idx >= dev->vq_index && idx < dev->vq_index + dev->nvqs);
202
203 return idx - dev->vq_index;
204}
205
fc0b9b0e
SH
206#ifdef CONFIG_VHOST_VSOCK
207static int vhost_kernel_vsock_set_guest_cid(struct vhost_dev *dev,
208 uint64_t guest_cid)
209{
210 return vhost_kernel_call(dev, VHOST_VSOCK_SET_GUEST_CID, &guest_cid);
211}
212
213static int vhost_kernel_vsock_set_running(struct vhost_dev *dev, int start)
214{
215 return vhost_kernel_call(dev, VHOST_VSOCK_SET_RUNNING, &start);
216}
217#endif /* CONFIG_VHOST_VSOCK */
218
c471ad0e
JW
219static void vhost_kernel_iotlb_read(void *opaque)
220{
221 struct vhost_dev *dev = opaque;
c471ad0e
JW
222 ssize_t len;
223
b37556ed
JW
224 if (dev->backend_cap &
225 (0x1ULL << VHOST_BACKEND_F_IOTLB_MSG_V2)) {
226 struct vhost_msg_v2 msg;
227
228 while ((len = read((uintptr_t)dev->opaque, &msg, sizeof msg)) > 0) {
229 if (len < sizeof msg) {
230 error_report("Wrong vhost message len: %d", (int)len);
231 break;
232 }
233 if (msg.type != VHOST_IOTLB_MSG_V2) {
234 error_report("Unknown vhost iotlb message type");
235 break;
236 }
237
238 vhost_backend_handle_iotlb_msg(dev, &msg.iotlb);
c471ad0e 239 }
b37556ed
JW
240 } else {
241 struct vhost_msg msg;
242
243 while ((len = read((uintptr_t)dev->opaque, &msg, sizeof msg)) > 0) {
244 if (len < sizeof msg) {
245 error_report("Wrong vhost message len: %d", (int)len);
246 break;
247 }
248 if (msg.type != VHOST_IOTLB_MSG) {
249 error_report("Unknown vhost iotlb message type");
250 break;
251 }
252
253 vhost_backend_handle_iotlb_msg(dev, &msg.iotlb);
c471ad0e 254 }
c471ad0e 255 }
c471ad0e
JW
256}
257
020e571b
MC
258static int vhost_kernel_send_device_iotlb_msg(struct vhost_dev *dev,
259 struct vhost_iotlb_msg *imsg)
c471ad0e 260{
b37556ed 261 if (dev->backend_cap & (1ULL << VHOST_BACKEND_F_IOTLB_MSG_V2)) {
8faf2f1d 262 struct vhost_msg_v2 msg = {};
c471ad0e 263
b37556ed
JW
264 msg.type = VHOST_IOTLB_MSG_V2;
265 msg.iotlb = *imsg;
c471ad0e 266
b37556ed
JW
267 if (write((uintptr_t)dev->opaque, &msg, sizeof msg) != sizeof msg) {
268 error_report("Fail to update device iotlb");
269 return -EFAULT;
270 }
271 } else {
8faf2f1d 272 struct vhost_msg msg = {};
b37556ed
JW
273
274 msg.type = VHOST_IOTLB_MSG;
275 msg.iotlb = *imsg;
276
277 if (write((uintptr_t)dev->opaque, &msg, sizeof msg) != sizeof msg) {
278 error_report("Fail to update device iotlb");
279 return -EFAULT;
280 }
c471ad0e
JW
281 }
282
283 return 0;
284}
285
286static void vhost_kernel_set_iotlb_callback(struct vhost_dev *dev,
287 int enabled)
288{
289 if (enabled)
290 qemu_set_fd_handler((uintptr_t)dev->opaque,
291 vhost_kernel_iotlb_read, NULL, dev);
292 else
293 qemu_set_fd_handler((uintptr_t)dev->opaque, NULL, NULL, NULL);
294}
295
1a1bfac9
NN
296static const VhostOps kernel_ops = {
297 .backend_type = VHOST_BACKEND_TYPE_KERNEL,
1a1bfac9 298 .vhost_backend_init = vhost_kernel_init,
fc57fd99 299 .vhost_backend_cleanup = vhost_kernel_cleanup,
2ce68e4c 300 .vhost_backend_memslots_limit = vhost_kernel_memslots_limit,
21e70425
MAL
301 .vhost_net_set_backend = vhost_kernel_net_set_backend,
302 .vhost_scsi_set_endpoint = vhost_kernel_scsi_set_endpoint,
303 .vhost_scsi_clear_endpoint = vhost_kernel_scsi_clear_endpoint,
304 .vhost_scsi_get_abi_version = vhost_kernel_scsi_get_abi_version,
305 .vhost_set_log_base = vhost_kernel_set_log_base,
306 .vhost_set_mem_table = vhost_kernel_set_mem_table,
307 .vhost_set_vring_addr = vhost_kernel_set_vring_addr,
308 .vhost_set_vring_endian = vhost_kernel_set_vring_endian,
309 .vhost_set_vring_num = vhost_kernel_set_vring_num,
310 .vhost_set_vring_base = vhost_kernel_set_vring_base,
311 .vhost_get_vring_base = vhost_kernel_get_vring_base,
312 .vhost_set_vring_kick = vhost_kernel_set_vring_kick,
313 .vhost_set_vring_call = vhost_kernel_set_vring_call,
69e87b32
JW
314 .vhost_set_vring_busyloop_timeout =
315 vhost_kernel_set_vring_busyloop_timeout,
21e70425
MAL
316 .vhost_set_features = vhost_kernel_set_features,
317 .vhost_get_features = vhost_kernel_get_features,
b37556ed 318 .vhost_set_backend_cap = vhost_kernel_set_backend_cap,
21e70425
MAL
319 .vhost_set_owner = vhost_kernel_set_owner,
320 .vhost_reset_device = vhost_kernel_reset_device,
321 .vhost_get_vq_index = vhost_kernel_get_vq_index,
fc0b9b0e
SH
322#ifdef CONFIG_VHOST_VSOCK
323 .vhost_vsock_set_guest_cid = vhost_kernel_vsock_set_guest_cid,
324 .vhost_vsock_set_running = vhost_kernel_vsock_set_running,
325#endif /* CONFIG_VHOST_VSOCK */
c471ad0e 326 .vhost_set_iotlb_callback = vhost_kernel_set_iotlb_callback,
020e571b 327 .vhost_send_device_iotlb_msg = vhost_kernel_send_device_iotlb_msg,
1a1bfac9 328};
18658a3c 329#endif
1a1bfac9
NN
330
331int vhost_set_backend_type(struct vhost_dev *dev, VhostBackendType backend_type)
332{
333 int r = 0;
334
335 switch (backend_type) {
299e6f19 336#ifdef CONFIG_VHOST_KERNEL
1a1bfac9
NN
337 case VHOST_BACKEND_TYPE_KERNEL:
338 dev->vhost_ops = &kernel_ops;
339 break;
18658a3c
PB
340#endif
341#ifdef CONFIG_VHOST_USER
5f6f6664
NN
342 case VHOST_BACKEND_TYPE_USER:
343 dev->vhost_ops = &user_ops;
344 break;
108a6481
CL
345#endif
346#ifdef CONFIG_VHOST_VDPA
347 case VHOST_BACKEND_TYPE_VDPA:
348 dev->vhost_ops = &vdpa_ops;
349 break;
18658a3c 350#endif
1a1bfac9 351 default:
c6547661 352 error_report("Unknown vhost backend type");
1a1bfac9
NN
353 r = -1;
354 }
355
356 return r;
357}
020e571b
MC
358
359int vhost_backend_update_device_iotlb(struct vhost_dev *dev,
360 uint64_t iova, uint64_t uaddr,
361 uint64_t len,
362 IOMMUAccessFlags perm)
363{
364 struct vhost_iotlb_msg imsg;
365
366 imsg.iova = iova;
367 imsg.uaddr = uaddr;
368 imsg.size = len;
369 imsg.type = VHOST_IOTLB_UPDATE;
370
371 switch (perm) {
372 case IOMMU_RO:
373 imsg.perm = VHOST_ACCESS_RO;
374 break;
375 case IOMMU_WO:
376 imsg.perm = VHOST_ACCESS_WO;
377 break;
378 case IOMMU_RW:
379 imsg.perm = VHOST_ACCESS_RW;
380 break;
381 default:
382 return -EINVAL;
383 }
384
384b557d
MC
385 if (dev->vhost_ops && dev->vhost_ops->vhost_send_device_iotlb_msg)
386 return dev->vhost_ops->vhost_send_device_iotlb_msg(dev, &imsg);
387
388 return -ENODEV;
020e571b
MC
389}
390
391int vhost_backend_invalidate_device_iotlb(struct vhost_dev *dev,
392 uint64_t iova, uint64_t len)
393{
394 struct vhost_iotlb_msg imsg;
395
396 imsg.iova = iova;
397 imsg.size = len;
398 imsg.type = VHOST_IOTLB_INVALIDATE;
399
384b557d
MC
400 if (dev->vhost_ops && dev->vhost_ops->vhost_send_device_iotlb_msg)
401 return dev->vhost_ops->vhost_send_device_iotlb_msg(dev, &imsg);
402
403 return -ENODEV;
020e571b
MC
404}
405
406int vhost_backend_handle_iotlb_msg(struct vhost_dev *dev,
407 struct vhost_iotlb_msg *imsg)
408{
409 int ret = 0;
410
4d1ccc17
EP
411 if (unlikely(!dev->vdev)) {
412 error_report("Unexpected IOTLB message when virtio device is stopped");
413 return -EINVAL;
414 }
415
020e571b
MC
416 switch (imsg->type) {
417 case VHOST_IOTLB_MISS:
418 ret = vhost_device_iotlb_miss(dev, imsg->iova,
419 imsg->perm != VHOST_ACCESS_RO);
420 break;
421 case VHOST_IOTLB_ACCESS_FAIL:
422 /* FIXME: report device iotlb error */
423 error_report("Access failure IOTLB message type not supported");
424 ret = -ENOTSUP;
425 break;
426 case VHOST_IOTLB_UPDATE:
427 case VHOST_IOTLB_INVALIDATE:
428 default:
429 error_report("Unexpected IOTLB message type");
430 ret = -EINVAL;
431 break;
432 }
433
434 return ret;
435}