4 * Copyright Red Hat, Inc. 2010
7 * Michael S. Tsirkin <mst@redhat.com>
9 * This work is licensed under the terms of the GNU GPL, version 2. See
10 * the COPYING file in the top-level directory.
12 * Contributions after 2012-01-13 are licensed under the terms of the
13 * GNU GPL, version 2 or (at your option) any later version.
16 #include <sys/ioctl.h>
20 #include <linux/vhost.h>
21 #include "exec-memory.h"
23 static void vhost_dev_sync_region(struct vhost_dev
*dev
,
24 MemoryRegionSection
*section
,
25 uint64_t mfirst
, uint64_t mlast
,
26 uint64_t rfirst
, uint64_t rlast
)
28 uint64_t start
= MAX(mfirst
, rfirst
);
29 uint64_t end
= MIN(mlast
, rlast
);
30 vhost_log_chunk_t
*from
= dev
->log
+ start
/ VHOST_LOG_CHUNK
;
31 vhost_log_chunk_t
*to
= dev
->log
+ end
/ VHOST_LOG_CHUNK
+ 1;
32 uint64_t addr
= (start
/ VHOST_LOG_CHUNK
) * VHOST_LOG_CHUNK
;
37 assert(end
/ VHOST_LOG_CHUNK
< dev
->log_size
);
38 assert(start
/ VHOST_LOG_CHUNK
< dev
->log_size
);
40 for (;from
< to
; ++from
) {
41 vhost_log_chunk_t log
;
43 /* We first check with non-atomic: much cheaper,
44 * and we expect non-dirty to be the common case. */
46 addr
+= VHOST_LOG_CHUNK
;
49 /* Data must be read atomically. We don't really
50 * need the barrier semantics of __sync
51 * builtins, but it's easier to use them than
53 log
= __sync_fetch_and_and(from
, 0);
54 while ((bit
= sizeof(log
) > sizeof(int) ?
55 ffsll(log
) : ffs(log
))) {
58 ram_addr
= section
->offset_within_region
+ bit
* VHOST_LOG_PAGE
;
59 memory_region_set_dirty(section
->mr
, ram_addr
, VHOST_LOG_PAGE
);
60 log
&= ~(0x1ull
<< bit
);
62 addr
+= VHOST_LOG_CHUNK
;
66 static int vhost_sync_dirty_bitmap(struct vhost_dev
*dev
,
67 MemoryRegionSection
*section
,
73 if (!dev
->log_enabled
|| !dev
->started
) {
76 for (i
= 0; i
< dev
->mem
->nregions
; ++i
) {
77 struct vhost_memory_region
*reg
= dev
->mem
->regions
+ i
;
78 vhost_dev_sync_region(dev
, section
, start_addr
, end_addr
,
80 range_get_last(reg
->guest_phys_addr
,
83 for (i
= 0; i
< dev
->nvqs
; ++i
) {
84 struct vhost_virtqueue
*vq
= dev
->vqs
+ i
;
85 vhost_dev_sync_region(dev
, section
, start_addr
, end_addr
, vq
->used_phys
,
86 range_get_last(vq
->used_phys
, vq
->used_size
));
91 static void vhost_log_sync(MemoryListener
*listener
,
92 MemoryRegionSection
*section
)
94 struct vhost_dev
*dev
= container_of(listener
, struct vhost_dev
,
96 hwaddr start_addr
= section
->offset_within_address_space
;
97 hwaddr end_addr
= start_addr
+ section
->size
;
99 vhost_sync_dirty_bitmap(dev
, section
, start_addr
, end_addr
);
102 /* Assign/unassign. Keep an unsorted array of non-overlapping
103 * memory regions in dev->mem. */
104 static void vhost_dev_unassign_memory(struct vhost_dev
*dev
,
108 int from
, to
, n
= dev
->mem
->nregions
;
109 /* Track overlapping/split regions for sanity checking. */
110 int overlap_start
= 0, overlap_end
= 0, overlap_middle
= 0, split
= 0;
112 for (from
= 0, to
= 0; from
< n
; ++from
, ++to
) {
113 struct vhost_memory_region
*reg
= dev
->mem
->regions
+ to
;
118 /* clone old region */
120 memcpy(reg
, dev
->mem
->regions
+ from
, sizeof *reg
);
123 /* No overlap is simple */
124 if (!ranges_overlap(reg
->guest_phys_addr
, reg
->memory_size
,
129 /* Split only happens if supplied region
130 * is in the middle of an existing one. Thus it can not
131 * overlap with any other existing region. */
134 reglast
= range_get_last(reg
->guest_phys_addr
, reg
->memory_size
);
135 memlast
= range_get_last(start_addr
, size
);
137 /* Remove whole region */
138 if (start_addr
<= reg
->guest_phys_addr
&& memlast
>= reglast
) {
139 --dev
->mem
->nregions
;
146 if (memlast
>= reglast
) {
147 reg
->memory_size
= start_addr
- reg
->guest_phys_addr
;
148 assert(reg
->memory_size
);
149 assert(!overlap_end
);
155 if (start_addr
<= reg
->guest_phys_addr
) {
156 change
= memlast
+ 1 - reg
->guest_phys_addr
;
157 reg
->memory_size
-= change
;
158 reg
->guest_phys_addr
+= change
;
159 reg
->userspace_addr
+= change
;
160 assert(reg
->memory_size
);
161 assert(!overlap_start
);
166 /* This only happens if supplied region
167 * is in the middle of an existing one. Thus it can not
168 * overlap with any other existing region. */
169 assert(!overlap_start
);
170 assert(!overlap_end
);
171 assert(!overlap_middle
);
172 /* Split region: shrink first part, shift second part. */
173 memcpy(dev
->mem
->regions
+ n
, reg
, sizeof *reg
);
174 reg
->memory_size
= start_addr
- reg
->guest_phys_addr
;
175 assert(reg
->memory_size
);
176 change
= memlast
+ 1 - reg
->guest_phys_addr
;
177 reg
= dev
->mem
->regions
+ n
;
178 reg
->memory_size
-= change
;
179 assert(reg
->memory_size
);
180 reg
->guest_phys_addr
+= change
;
181 reg
->userspace_addr
+= change
;
182 /* Never add more than 1 region */
183 assert(dev
->mem
->nregions
== n
);
184 ++dev
->mem
->nregions
;
189 /* Called after unassign, so no regions overlap the given range. */
190 static void vhost_dev_assign_memory(struct vhost_dev
*dev
,
196 struct vhost_memory_region
*merged
= NULL
;
197 for (from
= 0, to
= 0; from
< dev
->mem
->nregions
; ++from
, ++to
) {
198 struct vhost_memory_region
*reg
= dev
->mem
->regions
+ to
;
199 uint64_t prlast
, urlast
;
200 uint64_t pmlast
, umlast
;
203 /* clone old region */
205 memcpy(reg
, dev
->mem
->regions
+ from
, sizeof *reg
);
207 prlast
= range_get_last(reg
->guest_phys_addr
, reg
->memory_size
);
208 pmlast
= range_get_last(start_addr
, size
);
209 urlast
= range_get_last(reg
->userspace_addr
, reg
->memory_size
);
210 umlast
= range_get_last(uaddr
, size
);
212 /* check for overlapping regions: should never happen. */
213 assert(prlast
< start_addr
|| pmlast
< reg
->guest_phys_addr
);
214 /* Not an adjacent or overlapping region - do not merge. */
215 if ((prlast
+ 1 != start_addr
|| urlast
+ 1 != uaddr
) &&
216 (pmlast
+ 1 != reg
->guest_phys_addr
||
217 umlast
+ 1 != reg
->userspace_addr
)) {
227 u
= MIN(uaddr
, reg
->userspace_addr
);
228 s
= MIN(start_addr
, reg
->guest_phys_addr
);
229 e
= MAX(pmlast
, prlast
);
230 uaddr
= merged
->userspace_addr
= u
;
231 start_addr
= merged
->guest_phys_addr
= s
;
232 size
= merged
->memory_size
= e
- s
+ 1;
233 assert(merged
->memory_size
);
237 struct vhost_memory_region
*reg
= dev
->mem
->regions
+ to
;
238 memset(reg
, 0, sizeof *reg
);
239 reg
->memory_size
= size
;
240 assert(reg
->memory_size
);
241 reg
->guest_phys_addr
= start_addr
;
242 reg
->userspace_addr
= uaddr
;
245 assert(to
<= dev
->mem
->nregions
+ 1);
246 dev
->mem
->nregions
= to
;
249 static uint64_t vhost_get_log_size(struct vhost_dev
*dev
)
251 uint64_t log_size
= 0;
253 for (i
= 0; i
< dev
->mem
->nregions
; ++i
) {
254 struct vhost_memory_region
*reg
= dev
->mem
->regions
+ i
;
255 uint64_t last
= range_get_last(reg
->guest_phys_addr
,
257 log_size
= MAX(log_size
, last
/ VHOST_LOG_CHUNK
+ 1);
259 for (i
= 0; i
< dev
->nvqs
; ++i
) {
260 struct vhost_virtqueue
*vq
= dev
->vqs
+ i
;
261 uint64_t last
= vq
->used_phys
+ vq
->used_size
- 1;
262 log_size
= MAX(log_size
, last
/ VHOST_LOG_CHUNK
+ 1);
267 static inline void vhost_dev_log_resize(struct vhost_dev
* dev
, uint64_t size
)
269 vhost_log_chunk_t
*log
;
273 log
= g_malloc0(size
* sizeof *log
);
277 log_base
= (uint64_t)(unsigned long)log
;
278 r
= ioctl(dev
->control
, VHOST_SET_LOG_BASE
, &log_base
);
280 for (i
= 0; i
< dev
->n_mem_sections
; ++i
) {
281 /* Sync only the range covered by the old log */
282 vhost_sync_dirty_bitmap(dev
, &dev
->mem_sections
[i
], 0,
283 dev
->log_size
* VHOST_LOG_CHUNK
- 1);
289 dev
->log_size
= size
;
292 static int vhost_verify_ring_mappings(struct vhost_dev
*dev
,
297 for (i
= 0; i
< dev
->nvqs
; ++i
) {
298 struct vhost_virtqueue
*vq
= dev
->vqs
+ i
;
302 if (!ranges_overlap(start_addr
, size
, vq
->ring_phys
, vq
->ring_size
)) {
306 p
= cpu_physical_memory_map(vq
->ring_phys
, &l
, 1);
307 if (!p
|| l
!= vq
->ring_size
) {
308 fprintf(stderr
, "Unable to map ring buffer for ring %d\n", i
);
312 fprintf(stderr
, "Ring buffer relocated for ring %d\n", i
);
315 cpu_physical_memory_unmap(p
, l
, 0, 0);
320 static struct vhost_memory_region
*vhost_dev_find_reg(struct vhost_dev
*dev
,
324 int i
, n
= dev
->mem
->nregions
;
325 for (i
= 0; i
< n
; ++i
) {
326 struct vhost_memory_region
*reg
= dev
->mem
->regions
+ i
;
327 if (ranges_overlap(reg
->guest_phys_addr
, reg
->memory_size
,
335 static bool vhost_dev_cmp_memory(struct vhost_dev
*dev
,
340 struct vhost_memory_region
*reg
= vhost_dev_find_reg(dev
, start_addr
, size
);
348 reglast
= range_get_last(reg
->guest_phys_addr
, reg
->memory_size
);
349 memlast
= range_get_last(start_addr
, size
);
351 /* Need to extend region? */
352 if (start_addr
< reg
->guest_phys_addr
|| memlast
> reglast
) {
355 /* userspace_addr changed? */
356 return uaddr
!= reg
->userspace_addr
+ start_addr
- reg
->guest_phys_addr
;
359 static void vhost_set_memory(MemoryListener
*listener
,
360 MemoryRegionSection
*section
,
363 struct vhost_dev
*dev
= container_of(listener
, struct vhost_dev
,
365 hwaddr start_addr
= section
->offset_within_address_space
;
366 ram_addr_t size
= section
->size
;
367 bool log_dirty
= memory_region_is_logging(section
->mr
);
368 int s
= offsetof(struct vhost_memory
, regions
) +
369 (dev
->mem
->nregions
+ 1) * sizeof dev
->mem
->regions
[0];
374 dev
->mem
= g_realloc(dev
->mem
, s
);
382 /* Optimize no-change case. At least cirrus_vga does this a lot at this time. */
383 ram
= memory_region_get_ram_ptr(section
->mr
) + section
->offset_within_region
;
385 if (!vhost_dev_cmp_memory(dev
, start_addr
, size
, (uintptr_t)ram
)) {
386 /* Region exists with same address. Nothing to do. */
390 if (!vhost_dev_find_reg(dev
, start_addr
, size
)) {
391 /* Removing region that we don't access. Nothing to do. */
396 vhost_dev_unassign_memory(dev
, start_addr
, size
);
398 /* Add given mapping, merging adjacent regions if any */
399 vhost_dev_assign_memory(dev
, start_addr
, size
, (uintptr_t)ram
);
401 /* Remove old mapping for this memory, if any. */
402 vhost_dev_unassign_memory(dev
, start_addr
, size
);
410 r
= vhost_verify_ring_mappings(dev
, start_addr
, size
);
414 if (!dev
->log_enabled
) {
415 r
= ioctl(dev
->control
, VHOST_SET_MEM_TABLE
, dev
->mem
);
419 log_size
= vhost_get_log_size(dev
);
420 /* We allocate an extra 4K bytes to log,
421 * to reduce the * number of reallocations. */
422 #define VHOST_LOG_BUFFER (0x1000 / sizeof *dev->log)
423 /* To log more, must increase log size before table update. */
424 if (dev
->log_size
< log_size
) {
425 vhost_dev_log_resize(dev
, log_size
+ VHOST_LOG_BUFFER
);
427 r
= ioctl(dev
->control
, VHOST_SET_MEM_TABLE
, dev
->mem
);
429 /* To log less, can only decrease log size after table update. */
430 if (dev
->log_size
> log_size
+ VHOST_LOG_BUFFER
) {
431 vhost_dev_log_resize(dev
, log_size
);
435 static bool vhost_section(MemoryRegionSection
*section
)
437 return memory_region_is_ram(section
->mr
);
440 static void vhost_begin(MemoryListener
*listener
)
444 static void vhost_commit(MemoryListener
*listener
)
448 static void vhost_region_add(MemoryListener
*listener
,
449 MemoryRegionSection
*section
)
451 struct vhost_dev
*dev
= container_of(listener
, struct vhost_dev
,
454 if (!vhost_section(section
)) {
458 ++dev
->n_mem_sections
;
459 dev
->mem_sections
= g_renew(MemoryRegionSection
, dev
->mem_sections
,
460 dev
->n_mem_sections
);
461 dev
->mem_sections
[dev
->n_mem_sections
- 1] = *section
;
462 vhost_set_memory(listener
, section
, true);
465 static void vhost_region_del(MemoryListener
*listener
,
466 MemoryRegionSection
*section
)
468 struct vhost_dev
*dev
= container_of(listener
, struct vhost_dev
,
472 if (!vhost_section(section
)) {
476 vhost_set_memory(listener
, section
, false);
477 for (i
= 0; i
< dev
->n_mem_sections
; ++i
) {
478 if (dev
->mem_sections
[i
].offset_within_address_space
479 == section
->offset_within_address_space
) {
480 --dev
->n_mem_sections
;
481 memmove(&dev
->mem_sections
[i
], &dev
->mem_sections
[i
+1],
482 (dev
->n_mem_sections
- i
) * sizeof(*dev
->mem_sections
));
488 static void vhost_region_nop(MemoryListener
*listener
,
489 MemoryRegionSection
*section
)
493 static int vhost_virtqueue_set_addr(struct vhost_dev
*dev
,
494 struct vhost_virtqueue
*vq
,
495 unsigned idx
, bool enable_log
)
497 struct vhost_vring_addr addr
= {
499 .desc_user_addr
= (uint64_t)(unsigned long)vq
->desc
,
500 .avail_user_addr
= (uint64_t)(unsigned long)vq
->avail
,
501 .used_user_addr
= (uint64_t)(unsigned long)vq
->used
,
502 .log_guest_addr
= vq
->used_phys
,
503 .flags
= enable_log
? (1 << VHOST_VRING_F_LOG
) : 0,
505 int r
= ioctl(dev
->control
, VHOST_SET_VRING_ADDR
, &addr
);
512 static int vhost_dev_set_features(struct vhost_dev
*dev
, bool enable_log
)
514 uint64_t features
= dev
->acked_features
;
517 features
|= 0x1 << VHOST_F_LOG_ALL
;
519 r
= ioctl(dev
->control
, VHOST_SET_FEATURES
, &features
);
520 return r
< 0 ? -errno
: 0;
523 static int vhost_dev_set_log(struct vhost_dev
*dev
, bool enable_log
)
526 r
= vhost_dev_set_features(dev
, enable_log
);
530 for (i
= 0; i
< dev
->nvqs
; ++i
) {
531 r
= vhost_virtqueue_set_addr(dev
, dev
->vqs
+ i
, i
,
539 for (; i
>= 0; --i
) {
540 t
= vhost_virtqueue_set_addr(dev
, dev
->vqs
+ i
, i
,
544 t
= vhost_dev_set_features(dev
, dev
->log_enabled
);
550 static int vhost_migration_log(MemoryListener
*listener
, int enable
)
552 struct vhost_dev
*dev
= container_of(listener
, struct vhost_dev
,
555 if (!!enable
== dev
->log_enabled
) {
559 dev
->log_enabled
= enable
;
563 r
= vhost_dev_set_log(dev
, false);
573 vhost_dev_log_resize(dev
, vhost_get_log_size(dev
));
574 r
= vhost_dev_set_log(dev
, true);
579 dev
->log_enabled
= enable
;
583 static void vhost_log_global_start(MemoryListener
*listener
)
587 r
= vhost_migration_log(listener
, true);
593 static void vhost_log_global_stop(MemoryListener
*listener
)
597 r
= vhost_migration_log(listener
, false);
603 static void vhost_log_start(MemoryListener
*listener
,
604 MemoryRegionSection
*section
)
606 /* FIXME: implement */
609 static void vhost_log_stop(MemoryListener
*listener
,
610 MemoryRegionSection
*section
)
612 /* FIXME: implement */
615 static int vhost_virtqueue_init(struct vhost_dev
*dev
,
616 struct VirtIODevice
*vdev
,
617 struct vhost_virtqueue
*vq
,
622 struct vhost_vring_file file
= {
625 struct vhost_vring_state state
= {
628 struct VirtQueue
*vvq
= virtio_get_queue(vdev
, idx
);
630 vq
->num
= state
.num
= virtio_queue_get_num(vdev
, idx
);
631 r
= ioctl(dev
->control
, VHOST_SET_VRING_NUM
, &state
);
636 state
.num
= virtio_queue_get_last_avail_idx(vdev
, idx
);
637 r
= ioctl(dev
->control
, VHOST_SET_VRING_BASE
, &state
);
642 s
= l
= virtio_queue_get_desc_size(vdev
, idx
);
643 a
= virtio_queue_get_desc_addr(vdev
, idx
);
644 vq
->desc
= cpu_physical_memory_map(a
, &l
, 0);
645 if (!vq
->desc
|| l
!= s
) {
647 goto fail_alloc_desc
;
649 s
= l
= virtio_queue_get_avail_size(vdev
, idx
);
650 a
= virtio_queue_get_avail_addr(vdev
, idx
);
651 vq
->avail
= cpu_physical_memory_map(a
, &l
, 0);
652 if (!vq
->avail
|| l
!= s
) {
654 goto fail_alloc_avail
;
656 vq
->used_size
= s
= l
= virtio_queue_get_used_size(vdev
, idx
);
657 vq
->used_phys
= a
= virtio_queue_get_used_addr(vdev
, idx
);
658 vq
->used
= cpu_physical_memory_map(a
, &l
, 1);
659 if (!vq
->used
|| l
!= s
) {
661 goto fail_alloc_used
;
664 vq
->ring_size
= s
= l
= virtio_queue_get_ring_size(vdev
, idx
);
665 vq
->ring_phys
= a
= virtio_queue_get_ring_addr(vdev
, idx
);
666 vq
->ring
= cpu_physical_memory_map(a
, &l
, 1);
667 if (!vq
->ring
|| l
!= s
) {
669 goto fail_alloc_ring
;
672 r
= vhost_virtqueue_set_addr(dev
, vq
, idx
, dev
->log_enabled
);
677 file
.fd
= event_notifier_get_fd(virtio_queue_get_host_notifier(vvq
));
678 r
= ioctl(dev
->control
, VHOST_SET_VRING_KICK
, &file
);
684 file
.fd
= event_notifier_get_fd(virtio_queue_get_guest_notifier(vvq
));
685 r
= ioctl(dev
->control
, VHOST_SET_VRING_CALL
, &file
);
696 cpu_physical_memory_unmap(vq
->ring
, virtio_queue_get_ring_size(vdev
, idx
),
699 cpu_physical_memory_unmap(vq
->used
, virtio_queue_get_used_size(vdev
, idx
),
702 cpu_physical_memory_unmap(vq
->avail
, virtio_queue_get_avail_size(vdev
, idx
),
705 cpu_physical_memory_unmap(vq
->desc
, virtio_queue_get_desc_size(vdev
, idx
),
711 static void vhost_virtqueue_cleanup(struct vhost_dev
*dev
,
712 struct VirtIODevice
*vdev
,
713 struct vhost_virtqueue
*vq
,
716 struct vhost_vring_state state
= {
720 r
= ioctl(dev
->control
, VHOST_GET_VRING_BASE
, &state
);
722 fprintf(stderr
, "vhost VQ %d ring restore failed: %d\n", idx
, r
);
725 virtio_queue_set_last_avail_idx(vdev
, idx
, state
.num
);
727 cpu_physical_memory_unmap(vq
->ring
, virtio_queue_get_ring_size(vdev
, idx
),
728 0, virtio_queue_get_ring_size(vdev
, idx
));
729 cpu_physical_memory_unmap(vq
->used
, virtio_queue_get_used_size(vdev
, idx
),
730 1, virtio_queue_get_used_size(vdev
, idx
));
731 cpu_physical_memory_unmap(vq
->avail
, virtio_queue_get_avail_size(vdev
, idx
),
732 0, virtio_queue_get_avail_size(vdev
, idx
));
733 cpu_physical_memory_unmap(vq
->desc
, virtio_queue_get_desc_size(vdev
, idx
),
734 0, virtio_queue_get_desc_size(vdev
, idx
));
737 static void vhost_eventfd_add(MemoryListener
*listener
,
738 MemoryRegionSection
*section
,
739 bool match_data
, uint64_t data
, EventNotifier
*e
)
743 static void vhost_eventfd_del(MemoryListener
*listener
,
744 MemoryRegionSection
*section
,
745 bool match_data
, uint64_t data
, EventNotifier
*e
)
749 int vhost_dev_init(struct vhost_dev
*hdev
, int devfd
, const char *devpath
,
755 hdev
->control
= devfd
;
757 hdev
->control
= open(devpath
, O_RDWR
);
758 if (hdev
->control
< 0) {
762 r
= ioctl(hdev
->control
, VHOST_SET_OWNER
, NULL
);
767 r
= ioctl(hdev
->control
, VHOST_GET_FEATURES
, &features
);
771 hdev
->features
= features
;
773 hdev
->memory_listener
= (MemoryListener
) {
774 .begin
= vhost_begin
,
775 .commit
= vhost_commit
,
776 .region_add
= vhost_region_add
,
777 .region_del
= vhost_region_del
,
778 .region_nop
= vhost_region_nop
,
779 .log_start
= vhost_log_start
,
780 .log_stop
= vhost_log_stop
,
781 .log_sync
= vhost_log_sync
,
782 .log_global_start
= vhost_log_global_start
,
783 .log_global_stop
= vhost_log_global_stop
,
784 .eventfd_add
= vhost_eventfd_add
,
785 .eventfd_del
= vhost_eventfd_del
,
788 hdev
->mem
= g_malloc0(offsetof(struct vhost_memory
, regions
));
789 hdev
->n_mem_sections
= 0;
790 hdev
->mem_sections
= NULL
;
793 hdev
->log_enabled
= false;
794 hdev
->started
= false;
795 memory_listener_register(&hdev
->memory_listener
, &address_space_memory
);
800 close(hdev
->control
);
804 void vhost_dev_cleanup(struct vhost_dev
*hdev
)
806 memory_listener_unregister(&hdev
->memory_listener
);
808 g_free(hdev
->mem_sections
);
809 close(hdev
->control
);
812 bool vhost_dev_query(struct vhost_dev
*hdev
, VirtIODevice
*vdev
)
814 return !vdev
->binding
->query_guest_notifiers
||
815 vdev
->binding
->query_guest_notifiers(vdev
->binding_opaque
) ||
819 /* Stop processing guest IO notifications in qemu.
820 * Start processing them in vhost in kernel.
822 int vhost_dev_enable_notifiers(struct vhost_dev
*hdev
, VirtIODevice
*vdev
)
825 if (!vdev
->binding
->set_host_notifier
) {
826 fprintf(stderr
, "binding does not support host notifiers\n");
831 for (i
= 0; i
< hdev
->nvqs
; ++i
) {
832 r
= vdev
->binding
->set_host_notifier(vdev
->binding_opaque
, i
, true);
834 fprintf(stderr
, "vhost VQ %d notifier binding failed: %d\n", i
, -r
);
842 r
= vdev
->binding
->set_host_notifier(vdev
->binding_opaque
, i
, false);
844 fprintf(stderr
, "vhost VQ %d notifier cleanup error: %d\n", i
, -r
);
853 /* Stop processing guest IO notifications in vhost.
854 * Start processing them in qemu.
855 * This might actually run the qemu handlers right away,
856 * so virtio in qemu must be completely setup when this is called.
858 void vhost_dev_disable_notifiers(struct vhost_dev
*hdev
, VirtIODevice
*vdev
)
862 for (i
= 0; i
< hdev
->nvqs
; ++i
) {
863 r
= vdev
->binding
->set_host_notifier(vdev
->binding_opaque
, i
, false);
865 fprintf(stderr
, "vhost VQ %d notifier cleanup failed: %d\n", i
, -r
);
872 /* Host notifiers must be enabled at this point. */
873 int vhost_dev_start(struct vhost_dev
*hdev
, VirtIODevice
*vdev
)
876 if (!vdev
->binding
->set_guest_notifiers
) {
877 fprintf(stderr
, "binding does not support guest notifiers\n");
882 r
= vdev
->binding
->set_guest_notifiers(vdev
->binding_opaque
, true);
884 fprintf(stderr
, "Error binding guest notifier: %d\n", -r
);
888 r
= vhost_dev_set_features(hdev
, hdev
->log_enabled
);
892 r
= ioctl(hdev
->control
, VHOST_SET_MEM_TABLE
, hdev
->mem
);
897 for (i
= 0; i
< hdev
->nvqs
; ++i
) {
898 r
= vhost_virtqueue_init(hdev
,
907 if (hdev
->log_enabled
) {
908 hdev
->log_size
= vhost_get_log_size(hdev
);
909 hdev
->log
= hdev
->log_size
?
910 g_malloc0(hdev
->log_size
* sizeof *hdev
->log
) : NULL
;
911 r
= ioctl(hdev
->control
, VHOST_SET_LOG_BASE
,
912 (uint64_t)(unsigned long)hdev
->log
);
919 hdev
->started
= true;
925 vhost_virtqueue_cleanup(hdev
,
932 vdev
->binding
->set_guest_notifiers(vdev
->binding_opaque
, false);
938 /* Host notifiers must be enabled at this point. */
939 void vhost_dev_stop(struct vhost_dev
*hdev
, VirtIODevice
*vdev
)
943 for (i
= 0; i
< hdev
->nvqs
; ++i
) {
944 vhost_virtqueue_cleanup(hdev
,
949 for (i
= 0; i
< hdev
->n_mem_sections
; ++i
) {
950 vhost_sync_dirty_bitmap(hdev
, &hdev
->mem_sections
[i
],
953 r
= vdev
->binding
->set_guest_notifiers(vdev
->binding_opaque
, false);
955 fprintf(stderr
, "vhost guest notifier cleanup failed: %d\n", r
);
960 hdev
->started
= false;