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
,
68 target_phys_addr_t start_addr
,
69 target_phys_addr_t end_addr
)
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 target_phys_addr_t start_addr
= section
->offset_within_address_space
;
97 target_phys_addr_t 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
;
299 target_phys_addr_t l
;
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 target_phys_addr_t 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 section
->address_space
== get_system_memory()
438 && memory_region_is_ram(section
->mr
);
441 static void vhost_begin(MemoryListener
*listener
)
445 static void vhost_commit(MemoryListener
*listener
)
449 static void vhost_region_add(MemoryListener
*listener
,
450 MemoryRegionSection
*section
)
452 struct vhost_dev
*dev
= container_of(listener
, struct vhost_dev
,
455 if (!vhost_section(section
)) {
459 ++dev
->n_mem_sections
;
460 dev
->mem_sections
= g_renew(MemoryRegionSection
, dev
->mem_sections
,
461 dev
->n_mem_sections
);
462 dev
->mem_sections
[dev
->n_mem_sections
- 1] = *section
;
463 vhost_set_memory(listener
, section
, true);
466 static void vhost_region_del(MemoryListener
*listener
,
467 MemoryRegionSection
*section
)
469 struct vhost_dev
*dev
= container_of(listener
, struct vhost_dev
,
473 if (!vhost_section(section
)) {
477 vhost_set_memory(listener
, section
, false);
478 for (i
= 0; i
< dev
->n_mem_sections
; ++i
) {
479 if (dev
->mem_sections
[i
].offset_within_address_space
480 == section
->offset_within_address_space
) {
481 --dev
->n_mem_sections
;
482 memmove(&dev
->mem_sections
[i
], &dev
->mem_sections
[i
+1],
483 (dev
->n_mem_sections
- i
) * sizeof(*dev
->mem_sections
));
489 static void vhost_region_nop(MemoryListener
*listener
,
490 MemoryRegionSection
*section
)
494 static int vhost_virtqueue_set_addr(struct vhost_dev
*dev
,
495 struct vhost_virtqueue
*vq
,
496 unsigned idx
, bool enable_log
)
498 struct vhost_vring_addr addr
= {
500 .desc_user_addr
= (uint64_t)(unsigned long)vq
->desc
,
501 .avail_user_addr
= (uint64_t)(unsigned long)vq
->avail
,
502 .used_user_addr
= (uint64_t)(unsigned long)vq
->used
,
503 .log_guest_addr
= vq
->used_phys
,
504 .flags
= enable_log
? (1 << VHOST_VRING_F_LOG
) : 0,
506 int r
= ioctl(dev
->control
, VHOST_SET_VRING_ADDR
, &addr
);
513 static int vhost_dev_set_features(struct vhost_dev
*dev
, bool enable_log
)
515 uint64_t features
= dev
->acked_features
;
518 features
|= 0x1 << VHOST_F_LOG_ALL
;
520 r
= ioctl(dev
->control
, VHOST_SET_FEATURES
, &features
);
521 return r
< 0 ? -errno
: 0;
524 static int vhost_dev_set_log(struct vhost_dev
*dev
, bool enable_log
)
527 r
= vhost_dev_set_features(dev
, enable_log
);
531 for (i
= 0; i
< dev
->nvqs
; ++i
) {
532 r
= vhost_virtqueue_set_addr(dev
, dev
->vqs
+ i
, i
,
540 for (; i
>= 0; --i
) {
541 t
= vhost_virtqueue_set_addr(dev
, dev
->vqs
+ i
, i
,
545 t
= vhost_dev_set_features(dev
, dev
->log_enabled
);
551 static int vhost_migration_log(MemoryListener
*listener
, int enable
)
553 struct vhost_dev
*dev
= container_of(listener
, struct vhost_dev
,
556 if (!!enable
== dev
->log_enabled
) {
560 dev
->log_enabled
= enable
;
564 r
= vhost_dev_set_log(dev
, false);
574 vhost_dev_log_resize(dev
, vhost_get_log_size(dev
));
575 r
= vhost_dev_set_log(dev
, true);
580 dev
->log_enabled
= enable
;
584 static void vhost_log_global_start(MemoryListener
*listener
)
588 r
= vhost_migration_log(listener
, true);
594 static void vhost_log_global_stop(MemoryListener
*listener
)
598 r
= vhost_migration_log(listener
, false);
604 static void vhost_log_start(MemoryListener
*listener
,
605 MemoryRegionSection
*section
)
607 /* FIXME: implement */
610 static void vhost_log_stop(MemoryListener
*listener
,
611 MemoryRegionSection
*section
)
613 /* FIXME: implement */
616 static int vhost_virtqueue_init(struct vhost_dev
*dev
,
617 struct VirtIODevice
*vdev
,
618 struct vhost_virtqueue
*vq
,
621 target_phys_addr_t s
, l
, a
;
623 struct vhost_vring_file file
= {
626 struct vhost_vring_state state
= {
629 struct VirtQueue
*vvq
= virtio_get_queue(vdev
, idx
);
631 vq
->num
= state
.num
= virtio_queue_get_num(vdev
, idx
);
632 r
= ioctl(dev
->control
, VHOST_SET_VRING_NUM
, &state
);
637 state
.num
= virtio_queue_get_last_avail_idx(vdev
, idx
);
638 r
= ioctl(dev
->control
, VHOST_SET_VRING_BASE
, &state
);
643 s
= l
= virtio_queue_get_desc_size(vdev
, idx
);
644 a
= virtio_queue_get_desc_addr(vdev
, idx
);
645 vq
->desc
= cpu_physical_memory_map(a
, &l
, 0);
646 if (!vq
->desc
|| l
!= s
) {
648 goto fail_alloc_desc
;
650 s
= l
= virtio_queue_get_avail_size(vdev
, idx
);
651 a
= virtio_queue_get_avail_addr(vdev
, idx
);
652 vq
->avail
= cpu_physical_memory_map(a
, &l
, 0);
653 if (!vq
->avail
|| l
!= s
) {
655 goto fail_alloc_avail
;
657 vq
->used_size
= s
= l
= virtio_queue_get_used_size(vdev
, idx
);
658 vq
->used_phys
= a
= virtio_queue_get_used_addr(vdev
, idx
);
659 vq
->used
= cpu_physical_memory_map(a
, &l
, 1);
660 if (!vq
->used
|| l
!= s
) {
662 goto fail_alloc_used
;
665 vq
->ring_size
= s
= l
= virtio_queue_get_ring_size(vdev
, idx
);
666 vq
->ring_phys
= a
= virtio_queue_get_ring_addr(vdev
, idx
);
667 vq
->ring
= cpu_physical_memory_map(a
, &l
, 1);
668 if (!vq
->ring
|| l
!= s
) {
670 goto fail_alloc_ring
;
673 r
= vhost_virtqueue_set_addr(dev
, vq
, idx
, dev
->log_enabled
);
678 file
.fd
= event_notifier_get_fd(virtio_queue_get_host_notifier(vvq
));
679 r
= ioctl(dev
->control
, VHOST_SET_VRING_KICK
, &file
);
685 file
.fd
= event_notifier_get_fd(virtio_queue_get_guest_notifier(vvq
));
686 r
= ioctl(dev
->control
, VHOST_SET_VRING_CALL
, &file
);
697 cpu_physical_memory_unmap(vq
->ring
, virtio_queue_get_ring_size(vdev
, idx
),
700 cpu_physical_memory_unmap(vq
->used
, virtio_queue_get_used_size(vdev
, idx
),
703 cpu_physical_memory_unmap(vq
->avail
, virtio_queue_get_avail_size(vdev
, idx
),
706 cpu_physical_memory_unmap(vq
->desc
, virtio_queue_get_desc_size(vdev
, idx
),
712 static void vhost_virtqueue_cleanup(struct vhost_dev
*dev
,
713 struct VirtIODevice
*vdev
,
714 struct vhost_virtqueue
*vq
,
717 struct vhost_vring_state state
= {
721 r
= ioctl(dev
->control
, VHOST_GET_VRING_BASE
, &state
);
723 fprintf(stderr
, "vhost VQ %d ring restore failed: %d\n", idx
, r
);
726 virtio_queue_set_last_avail_idx(vdev
, idx
, state
.num
);
728 cpu_physical_memory_unmap(vq
->ring
, virtio_queue_get_ring_size(vdev
, idx
),
729 0, virtio_queue_get_ring_size(vdev
, idx
));
730 cpu_physical_memory_unmap(vq
->used
, virtio_queue_get_used_size(vdev
, idx
),
731 1, virtio_queue_get_used_size(vdev
, idx
));
732 cpu_physical_memory_unmap(vq
->avail
, virtio_queue_get_avail_size(vdev
, idx
),
733 0, virtio_queue_get_avail_size(vdev
, idx
));
734 cpu_physical_memory_unmap(vq
->desc
, virtio_queue_get_desc_size(vdev
, idx
),
735 0, virtio_queue_get_desc_size(vdev
, idx
));
738 static void vhost_eventfd_add(MemoryListener
*listener
,
739 MemoryRegionSection
*section
,
740 bool match_data
, uint64_t data
, EventNotifier
*e
)
744 static void vhost_eventfd_del(MemoryListener
*listener
,
745 MemoryRegionSection
*section
,
746 bool match_data
, uint64_t data
, EventNotifier
*e
)
750 int vhost_dev_init(struct vhost_dev
*hdev
, int devfd
, const char *devpath
,
756 hdev
->control
= devfd
;
758 hdev
->control
= open(devpath
, O_RDWR
);
759 if (hdev
->control
< 0) {
763 r
= ioctl(hdev
->control
, VHOST_SET_OWNER
, NULL
);
768 r
= ioctl(hdev
->control
, VHOST_GET_FEATURES
, &features
);
772 hdev
->features
= features
;
774 hdev
->memory_listener
= (MemoryListener
) {
775 .begin
= vhost_begin
,
776 .commit
= vhost_commit
,
777 .region_add
= vhost_region_add
,
778 .region_del
= vhost_region_del
,
779 .region_nop
= vhost_region_nop
,
780 .log_start
= vhost_log_start
,
781 .log_stop
= vhost_log_stop
,
782 .log_sync
= vhost_log_sync
,
783 .log_global_start
= vhost_log_global_start
,
784 .log_global_stop
= vhost_log_global_stop
,
785 .eventfd_add
= vhost_eventfd_add
,
786 .eventfd_del
= vhost_eventfd_del
,
789 hdev
->mem
= g_malloc0(offsetof(struct vhost_memory
, regions
));
790 hdev
->n_mem_sections
= 0;
791 hdev
->mem_sections
= NULL
;
794 hdev
->log_enabled
= false;
795 hdev
->started
= false;
796 memory_listener_register(&hdev
->memory_listener
, NULL
);
801 close(hdev
->control
);
805 void vhost_dev_cleanup(struct vhost_dev
*hdev
)
807 memory_listener_unregister(&hdev
->memory_listener
);
809 g_free(hdev
->mem_sections
);
810 close(hdev
->control
);
813 bool vhost_dev_query(struct vhost_dev
*hdev
, VirtIODevice
*vdev
)
815 return !vdev
->binding
->query_guest_notifiers
||
816 vdev
->binding
->query_guest_notifiers(vdev
->binding_opaque
) ||
820 /* Stop processing guest IO notifications in qemu.
821 * Start processing them in vhost in kernel.
823 int vhost_dev_enable_notifiers(struct vhost_dev
*hdev
, VirtIODevice
*vdev
)
826 if (!vdev
->binding
->set_host_notifier
) {
827 fprintf(stderr
, "binding does not support host notifiers\n");
832 for (i
= 0; i
< hdev
->nvqs
; ++i
) {
833 r
= vdev
->binding
->set_host_notifier(vdev
->binding_opaque
, i
, true);
835 fprintf(stderr
, "vhost VQ %d notifier binding failed: %d\n", i
, -r
);
843 r
= vdev
->binding
->set_host_notifier(vdev
->binding_opaque
, i
, false);
845 fprintf(stderr
, "vhost VQ %d notifier cleanup error: %d\n", i
, -r
);
854 /* Stop processing guest IO notifications in vhost.
855 * Start processing them in qemu.
856 * This might actually run the qemu handlers right away,
857 * so virtio in qemu must be completely setup when this is called.
859 void vhost_dev_disable_notifiers(struct vhost_dev
*hdev
, VirtIODevice
*vdev
)
863 for (i
= 0; i
< hdev
->nvqs
; ++i
) {
864 r
= vdev
->binding
->set_host_notifier(vdev
->binding_opaque
, i
, false);
866 fprintf(stderr
, "vhost VQ %d notifier cleanup failed: %d\n", i
, -r
);
873 /* Host notifiers must be enabled at this point. */
874 int vhost_dev_start(struct vhost_dev
*hdev
, VirtIODevice
*vdev
)
877 if (!vdev
->binding
->set_guest_notifiers
) {
878 fprintf(stderr
, "binding does not support guest notifiers\n");
883 r
= vdev
->binding
->set_guest_notifiers(vdev
->binding_opaque
, true);
885 fprintf(stderr
, "Error binding guest notifier: %d\n", -r
);
889 r
= vhost_dev_set_features(hdev
, hdev
->log_enabled
);
893 r
= ioctl(hdev
->control
, VHOST_SET_MEM_TABLE
, hdev
->mem
);
898 for (i
= 0; i
< hdev
->nvqs
; ++i
) {
899 r
= vhost_virtqueue_init(hdev
,
908 if (hdev
->log_enabled
) {
909 hdev
->log_size
= vhost_get_log_size(hdev
);
910 hdev
->log
= hdev
->log_size
?
911 g_malloc0(hdev
->log_size
* sizeof *hdev
->log
) : NULL
;
912 r
= ioctl(hdev
->control
, VHOST_SET_LOG_BASE
,
913 (uint64_t)(unsigned long)hdev
->log
);
920 hdev
->started
= true;
926 vhost_virtqueue_cleanup(hdev
,
933 vdev
->binding
->set_guest_notifiers(vdev
->binding_opaque
, false);
939 /* Host notifiers must be enabled at this point. */
940 void vhost_dev_stop(struct vhost_dev
*hdev
, VirtIODevice
*vdev
)
944 for (i
= 0; i
< hdev
->nvqs
; ++i
) {
945 vhost_virtqueue_cleanup(hdev
,
950 for (i
= 0; i
< hdev
->n_mem_sections
; ++i
) {
951 vhost_sync_dirty_bitmap(hdev
, &hdev
->mem_sections
[i
],
952 0, (target_phys_addr_t
)~0x0ull
);
954 r
= vdev
->binding
->set_guest_notifiers(vdev
->binding_opaque
, false);
956 fprintf(stderr
, "vhost guest notifier cleanup failed: %d\n", r
);
961 hdev
->started
= false;