4 * Copyright (c) 2013 Virtual Open Systems Sarl.
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.
11 #include "hw/virtio/vhost.h"
12 #include "hw/virtio/vhost-backend.h"
13 #include "hw/virtio/virtio-net.h"
14 #include "sysemu/char.h"
15 #include "sysemu/kvm.h"
16 #include "qemu/error-report.h"
17 #include "qemu/sockets.h"
18 #include "exec/ram_addr.h"
19 #include "migration/migration.h"
23 #include <sys/ioctl.h>
24 #include <sys/socket.h>
26 #include <linux/vhost.h>
28 #define VHOST_MEMORY_MAX_NREGIONS 8
29 #define VHOST_USER_F_PROTOCOL_FEATURES 30
31 enum VhostUserProtocolFeature
{
32 VHOST_USER_PROTOCOL_F_MQ
= 0,
33 VHOST_USER_PROTOCOL_F_LOG_SHMFD
= 1,
34 VHOST_USER_PROTOCOL_F_RARP
= 2,
36 VHOST_USER_PROTOCOL_F_MAX
39 #define VHOST_USER_PROTOCOL_FEATURE_MASK ((1 << VHOST_USER_PROTOCOL_F_MAX) - 1)
41 typedef enum VhostUserRequest
{
43 VHOST_USER_GET_FEATURES
= 1,
44 VHOST_USER_SET_FEATURES
= 2,
45 VHOST_USER_SET_OWNER
= 3,
46 VHOST_USER_RESET_OWNER
= 4,
47 VHOST_USER_SET_MEM_TABLE
= 5,
48 VHOST_USER_SET_LOG_BASE
= 6,
49 VHOST_USER_SET_LOG_FD
= 7,
50 VHOST_USER_SET_VRING_NUM
= 8,
51 VHOST_USER_SET_VRING_ADDR
= 9,
52 VHOST_USER_SET_VRING_BASE
= 10,
53 VHOST_USER_GET_VRING_BASE
= 11,
54 VHOST_USER_SET_VRING_KICK
= 12,
55 VHOST_USER_SET_VRING_CALL
= 13,
56 VHOST_USER_SET_VRING_ERR
= 14,
57 VHOST_USER_GET_PROTOCOL_FEATURES
= 15,
58 VHOST_USER_SET_PROTOCOL_FEATURES
= 16,
59 VHOST_USER_GET_QUEUE_NUM
= 17,
60 VHOST_USER_SET_VRING_ENABLE
= 18,
61 VHOST_USER_SEND_RARP
= 19,
65 typedef struct VhostUserMemoryRegion
{
66 uint64_t guest_phys_addr
;
68 uint64_t userspace_addr
;
70 } VhostUserMemoryRegion
;
72 typedef struct VhostUserMemory
{
75 VhostUserMemoryRegion regions
[VHOST_MEMORY_MAX_NREGIONS
];
78 typedef struct VhostUserLog
{
83 typedef struct VhostUserMsg
{
84 VhostUserRequest request
;
86 #define VHOST_USER_VERSION_MASK (0x3)
87 #define VHOST_USER_REPLY_MASK (0x1<<2)
89 uint32_t size
; /* the following payload size */
91 #define VHOST_USER_VRING_IDX_MASK (0xff)
92 #define VHOST_USER_VRING_NOFD_MASK (0x1<<8)
94 struct vhost_vring_state state
;
95 struct vhost_vring_addr addr
;
96 VhostUserMemory memory
;
99 } QEMU_PACKED VhostUserMsg
;
101 static VhostUserMsg m
__attribute__ ((unused
));
102 #define VHOST_USER_HDR_SIZE (sizeof(m.request) \
106 #define VHOST_USER_PAYLOAD_SIZE (sizeof(m) - VHOST_USER_HDR_SIZE)
108 /* The version of the protocol we support */
109 #define VHOST_USER_VERSION (0x1)
111 static bool ioeventfd_enabled(void)
113 return kvm_enabled() && kvm_eventfds_enabled();
116 static int vhost_user_read(struct vhost_dev
*dev
, VhostUserMsg
*msg
)
118 CharDriverState
*chr
= dev
->opaque
;
119 uint8_t *p
= (uint8_t *) msg
;
120 int r
, size
= VHOST_USER_HDR_SIZE
;
122 r
= qemu_chr_fe_read_all(chr
, p
, size
);
124 error_report("Failed to read msg header. Read %d instead of %d."
125 " Original request %d.", r
, size
, msg
->request
);
129 /* validate received flags */
130 if (msg
->flags
!= (VHOST_USER_REPLY_MASK
| VHOST_USER_VERSION
)) {
131 error_report("Failed to read msg header."
132 " Flags 0x%x instead of 0x%x.", msg
->flags
,
133 VHOST_USER_REPLY_MASK
| VHOST_USER_VERSION
);
137 /* validate message size is sane */
138 if (msg
->size
> VHOST_USER_PAYLOAD_SIZE
) {
139 error_report("Failed to read msg header."
140 " Size %d exceeds the maximum %zu.", msg
->size
,
141 VHOST_USER_PAYLOAD_SIZE
);
146 p
+= VHOST_USER_HDR_SIZE
;
148 r
= qemu_chr_fe_read_all(chr
, p
, size
);
150 error_report("Failed to read msg payload."
151 " Read %d instead of %d.", r
, msg
->size
);
162 static bool vhost_user_one_time_request(VhostUserRequest request
)
165 case VHOST_USER_SET_OWNER
:
166 case VHOST_USER_RESET_OWNER
:
167 case VHOST_USER_SET_MEM_TABLE
:
168 case VHOST_USER_GET_QUEUE_NUM
:
175 /* most non-init callers ignore the error */
176 static int vhost_user_write(struct vhost_dev
*dev
, VhostUserMsg
*msg
,
177 int *fds
, int fd_num
)
179 CharDriverState
*chr
= dev
->opaque
;
180 int size
= VHOST_USER_HDR_SIZE
+ msg
->size
;
183 * For non-vring specific requests, like VHOST_USER_SET_MEM_TABLE,
184 * we just need send it once in the first time. For later such
185 * request, we just ignore it.
187 if (vhost_user_one_time_request(msg
->request
) && dev
->vq_index
!= 0) {
192 qemu_chr_fe_set_msgfds(chr
, fds
, fd_num
);
195 return qemu_chr_fe_write_all(chr
, (const uint8_t *) msg
, size
) == size
?
199 static int vhost_user_set_log_base(struct vhost_dev
*dev
, uint64_t base
,
200 struct vhost_log
*log
)
202 int fds
[VHOST_MEMORY_MAX_NREGIONS
];
204 bool shmfd
= virtio_has_feature(dev
->protocol_features
,
205 VHOST_USER_PROTOCOL_F_LOG_SHMFD
);
207 .request
= VHOST_USER_SET_LOG_BASE
,
208 .flags
= VHOST_USER_VERSION
,
209 .payload
.log
.mmap_size
= log
->size
* sizeof(*(log
->log
)),
210 .payload
.log
.mmap_offset
= 0,
211 .size
= sizeof(msg
.payload
.log
),
214 if (shmfd
&& log
->fd
!= -1) {
215 fds
[fd_num
++] = log
->fd
;
218 vhost_user_write(dev
, &msg
, fds
, fd_num
);
222 if (vhost_user_read(dev
, &msg
) < 0) {
226 if (msg
.request
!= VHOST_USER_SET_LOG_BASE
) {
227 error_report("Received unexpected msg type. "
228 "Expected %d received %d",
229 VHOST_USER_SET_LOG_BASE
, msg
.request
);
237 static int vhost_user_set_mem_table(struct vhost_dev
*dev
,
238 struct vhost_memory
*mem
)
240 int fds
[VHOST_MEMORY_MAX_NREGIONS
];
244 .request
= VHOST_USER_SET_MEM_TABLE
,
245 .flags
= VHOST_USER_VERSION
,
248 for (i
= 0; i
< dev
->mem
->nregions
; ++i
) {
249 struct vhost_memory_region
*reg
= dev
->mem
->regions
+ i
;
252 assert((uintptr_t)reg
->userspace_addr
== reg
->userspace_addr
);
253 qemu_ram_addr_from_host((void *)(uintptr_t)reg
->userspace_addr
,
255 fd
= qemu_get_ram_fd(ram_addr
);
257 msg
.payload
.memory
.regions
[fd_num
].userspace_addr
= reg
->userspace_addr
;
258 msg
.payload
.memory
.regions
[fd_num
].memory_size
= reg
->memory_size
;
259 msg
.payload
.memory
.regions
[fd_num
].guest_phys_addr
= reg
->guest_phys_addr
;
260 msg
.payload
.memory
.regions
[fd_num
].mmap_offset
= reg
->userspace_addr
-
261 (uintptr_t) qemu_get_ram_block_host_ptr(ram_addr
);
262 assert(fd_num
< VHOST_MEMORY_MAX_NREGIONS
);
267 msg
.payload
.memory
.nregions
= fd_num
;
270 error_report("Failed initializing vhost-user memory map, "
271 "consider using -object memory-backend-file share=on");
275 msg
.size
= sizeof(msg
.payload
.memory
.nregions
);
276 msg
.size
+= sizeof(msg
.payload
.memory
.padding
);
277 msg
.size
+= fd_num
* sizeof(VhostUserMemoryRegion
);
279 vhost_user_write(dev
, &msg
, fds
, fd_num
);
284 static int vhost_user_set_vring_addr(struct vhost_dev
*dev
,
285 struct vhost_vring_addr
*addr
)
288 .request
= VHOST_USER_SET_VRING_ADDR
,
289 .flags
= VHOST_USER_VERSION
,
290 .payload
.addr
= *addr
,
291 .size
= sizeof(msg
.payload
.addr
),
294 vhost_user_write(dev
, &msg
, NULL
, 0);
299 static int vhost_user_set_vring_endian(struct vhost_dev
*dev
,
300 struct vhost_vring_state
*ring
)
302 error_report("vhost-user trying to send unhandled ioctl");
306 static int vhost_set_vring(struct vhost_dev
*dev
,
307 unsigned long int request
,
308 struct vhost_vring_state
*ring
)
312 .flags
= VHOST_USER_VERSION
,
313 .payload
.state
= *ring
,
314 .size
= sizeof(msg
.payload
.state
),
317 vhost_user_write(dev
, &msg
, NULL
, 0);
322 static int vhost_user_set_vring_num(struct vhost_dev
*dev
,
323 struct vhost_vring_state
*ring
)
325 return vhost_set_vring(dev
, VHOST_USER_SET_VRING_NUM
, ring
);
328 static int vhost_user_set_vring_base(struct vhost_dev
*dev
,
329 struct vhost_vring_state
*ring
)
331 return vhost_set_vring(dev
, VHOST_USER_SET_VRING_BASE
, ring
);
334 static int vhost_user_set_vring_enable(struct vhost_dev
*dev
, int enable
)
338 if (!virtio_has_feature(dev
->features
, VHOST_USER_F_PROTOCOL_FEATURES
)) {
342 for (i
= 0; i
< dev
->nvqs
; ++i
) {
343 struct vhost_vring_state state
= {
344 .index
= dev
->vq_index
+ i
,
348 vhost_set_vring(dev
, VHOST_USER_SET_VRING_ENABLE
, &state
);
354 static int vhost_user_get_vring_base(struct vhost_dev
*dev
,
355 struct vhost_vring_state
*ring
)
358 .request
= VHOST_USER_GET_VRING_BASE
,
359 .flags
= VHOST_USER_VERSION
,
360 .payload
.state
= *ring
,
361 .size
= sizeof(msg
.payload
.state
),
364 vhost_user_write(dev
, &msg
, NULL
, 0);
366 if (vhost_user_read(dev
, &msg
) < 0) {
370 if (msg
.request
!= VHOST_USER_GET_VRING_BASE
) {
371 error_report("Received unexpected msg type. Expected %d received %d",
372 VHOST_USER_GET_VRING_BASE
, msg
.request
);
376 if (msg
.size
!= sizeof(msg
.payload
.state
)) {
377 error_report("Received bad msg size.");
381 *ring
= msg
.payload
.state
;
386 static int vhost_set_vring_file(struct vhost_dev
*dev
,
387 VhostUserRequest request
,
388 struct vhost_vring_file
*file
)
390 int fds
[VHOST_MEMORY_MAX_NREGIONS
];
394 .flags
= VHOST_USER_VERSION
,
395 .payload
.u64
= file
->index
& VHOST_USER_VRING_IDX_MASK
,
396 .size
= sizeof(msg
.payload
.u64
),
399 if (ioeventfd_enabled() && file
->fd
> 0) {
400 fds
[fd_num
++] = file
->fd
;
402 msg
.payload
.u64
|= VHOST_USER_VRING_NOFD_MASK
;
405 vhost_user_write(dev
, &msg
, fds
, fd_num
);
410 static int vhost_user_set_vring_kick(struct vhost_dev
*dev
,
411 struct vhost_vring_file
*file
)
413 return vhost_set_vring_file(dev
, VHOST_USER_SET_VRING_KICK
, file
);
416 static int vhost_user_set_vring_call(struct vhost_dev
*dev
,
417 struct vhost_vring_file
*file
)
419 return vhost_set_vring_file(dev
, VHOST_USER_SET_VRING_CALL
, file
);
422 static int vhost_user_set_u64(struct vhost_dev
*dev
, int request
, uint64_t u64
)
426 .flags
= VHOST_USER_VERSION
,
428 .size
= sizeof(msg
.payload
.u64
),
431 vhost_user_write(dev
, &msg
, NULL
, 0);
436 static int vhost_user_set_features(struct vhost_dev
*dev
,
439 return vhost_user_set_u64(dev
, VHOST_USER_SET_FEATURES
, features
);
442 static int vhost_user_set_protocol_features(struct vhost_dev
*dev
,
445 return vhost_user_set_u64(dev
, VHOST_USER_SET_PROTOCOL_FEATURES
, features
);
448 static int vhost_user_get_u64(struct vhost_dev
*dev
, int request
, uint64_t *u64
)
452 .flags
= VHOST_USER_VERSION
,
455 if (vhost_user_one_time_request(request
) && dev
->vq_index
!= 0) {
459 vhost_user_write(dev
, &msg
, NULL
, 0);
461 if (vhost_user_read(dev
, &msg
) < 0) {
465 if (msg
.request
!= request
) {
466 error_report("Received unexpected msg type. Expected %d received %d",
467 request
, msg
.request
);
471 if (msg
.size
!= sizeof(msg
.payload
.u64
)) {
472 error_report("Received bad msg size.");
476 *u64
= msg
.payload
.u64
;
481 static int vhost_user_get_features(struct vhost_dev
*dev
, uint64_t *features
)
483 return vhost_user_get_u64(dev
, VHOST_USER_GET_FEATURES
, features
);
486 static int vhost_user_set_owner(struct vhost_dev
*dev
)
489 .request
= VHOST_USER_SET_OWNER
,
490 .flags
= VHOST_USER_VERSION
,
493 vhost_user_write(dev
, &msg
, NULL
, 0);
498 static int vhost_user_reset_device(struct vhost_dev
*dev
)
501 .request
= VHOST_USER_RESET_OWNER
,
502 .flags
= VHOST_USER_VERSION
,
505 vhost_user_write(dev
, &msg
, NULL
, 0);
510 static int vhost_user_init(struct vhost_dev
*dev
, void *opaque
)
515 assert(dev
->vhost_ops
->backend_type
== VHOST_BACKEND_TYPE_USER
);
517 dev
->opaque
= opaque
;
519 err
= vhost_user_get_features(dev
, &features
);
524 if (virtio_has_feature(features
, VHOST_USER_F_PROTOCOL_FEATURES
)) {
525 dev
->backend_features
|= 1ULL << VHOST_USER_F_PROTOCOL_FEATURES
;
527 err
= vhost_user_get_u64(dev
, VHOST_USER_GET_PROTOCOL_FEATURES
,
533 dev
->protocol_features
= features
& VHOST_USER_PROTOCOL_FEATURE_MASK
;
534 err
= vhost_user_set_protocol_features(dev
, dev
->protocol_features
);
539 /* query the max queues we support if backend supports Multiple Queue */
540 if (dev
->protocol_features
& (1ULL << VHOST_USER_PROTOCOL_F_MQ
)) {
541 err
= vhost_user_get_u64(dev
, VHOST_USER_GET_QUEUE_NUM
,
549 if (dev
->migration_blocker
== NULL
&&
550 !virtio_has_feature(dev
->protocol_features
,
551 VHOST_USER_PROTOCOL_F_LOG_SHMFD
)) {
552 error_setg(&dev
->migration_blocker
,
553 "Migration disabled: vhost-user backend lacks "
554 "VHOST_USER_PROTOCOL_F_LOG_SHMFD feature.");
560 static int vhost_user_cleanup(struct vhost_dev
*dev
)
562 assert(dev
->vhost_ops
->backend_type
== VHOST_BACKEND_TYPE_USER
);
569 static int vhost_user_get_vq_index(struct vhost_dev
*dev
, int idx
)
571 assert(idx
>= dev
->vq_index
&& idx
< dev
->vq_index
+ dev
->nvqs
);
576 static int vhost_user_memslots_limit(struct vhost_dev
*dev
)
578 return VHOST_MEMORY_MAX_NREGIONS
;
581 static bool vhost_user_requires_shm_log(struct vhost_dev
*dev
)
583 assert(dev
->vhost_ops
->backend_type
== VHOST_BACKEND_TYPE_USER
);
585 return virtio_has_feature(dev
->protocol_features
,
586 VHOST_USER_PROTOCOL_F_LOG_SHMFD
);
589 static int vhost_user_migration_done(struct vhost_dev
*dev
, char* mac_addr
)
591 VhostUserMsg msg
= { 0 };
594 assert(dev
->vhost_ops
->backend_type
== VHOST_BACKEND_TYPE_USER
);
596 /* If guest supports GUEST_ANNOUNCE do nothing */
597 if (virtio_has_feature(dev
->acked_features
, VIRTIO_NET_F_GUEST_ANNOUNCE
)) {
601 /* if backend supports VHOST_USER_PROTOCOL_F_RARP ask it to send the RARP */
602 if (virtio_has_feature(dev
->protocol_features
,
603 VHOST_USER_PROTOCOL_F_RARP
)) {
604 msg
.request
= VHOST_USER_SEND_RARP
;
605 msg
.flags
= VHOST_USER_VERSION
;
606 memcpy((char *)&msg
.payload
.u64
, mac_addr
, 6);
607 msg
.size
= sizeof(msg
.payload
.u64
);
609 err
= vhost_user_write(dev
, &msg
, NULL
, 0);
615 const VhostOps user_ops
= {
616 .backend_type
= VHOST_BACKEND_TYPE_USER
,
617 .vhost_backend_init
= vhost_user_init
,
618 .vhost_backend_cleanup
= vhost_user_cleanup
,
619 .vhost_backend_memslots_limit
= vhost_user_memslots_limit
,
620 .vhost_set_log_base
= vhost_user_set_log_base
,
621 .vhost_set_mem_table
= vhost_user_set_mem_table
,
622 .vhost_set_vring_addr
= vhost_user_set_vring_addr
,
623 .vhost_set_vring_endian
= vhost_user_set_vring_endian
,
624 .vhost_set_vring_num
= vhost_user_set_vring_num
,
625 .vhost_set_vring_base
= vhost_user_set_vring_base
,
626 .vhost_get_vring_base
= vhost_user_get_vring_base
,
627 .vhost_set_vring_kick
= vhost_user_set_vring_kick
,
628 .vhost_set_vring_call
= vhost_user_set_vring_call
,
629 .vhost_set_features
= vhost_user_set_features
,
630 .vhost_get_features
= vhost_user_get_features
,
631 .vhost_set_owner
= vhost_user_set_owner
,
632 .vhost_reset_device
= vhost_user_reset_device
,
633 .vhost_get_vq_index
= vhost_user_get_vq_index
,
634 .vhost_set_vring_enable
= vhost_user_set_vring_enable
,
635 .vhost_requires_shm_log
= vhost_user_requires_shm_log
,
636 .vhost_migration_done
= vhost_user_migration_done
,