4 * Copyright IBM, Corp. 2008
8 * Anthony Liguori <aliguori@us.ibm.com>
9 * Glauber Costa <gcosta@redhat.com>
11 * This work is licensed under the terms of the GNU GPL, version 2 or later.
12 * See the COPYING file in the top-level directory.
16 #include <sys/types.h>
17 #include <sys/ioctl.h>
21 #include <linux/kvm.h>
23 #include "qemu-common.h"
24 #include "qemu/atomic.h"
25 #include "qemu/option.h"
26 #include "qemu/config-file.h"
27 #include "qemu/error-report.h"
29 #include "hw/pci/msi.h"
30 #include "hw/s390x/adapter.h"
31 #include "exec/gdbstub.h"
32 #include "sysemu/kvm_int.h"
33 #include "qemu/bswap.h"
34 #include "exec/memory.h"
35 #include "exec/ram_addr.h"
36 #include "exec/address-spaces.h"
37 #include "qemu/event_notifier.h"
41 #include "hw/boards.h"
43 /* This check must be after config-host.h is included */
45 #include <sys/eventfd.h>
48 /* KVM uses PAGE_SIZE in its definition of KVM_COALESCED_MMIO_MAX. We
49 * need to use the real host PAGE_SIZE, as that's what KVM will use.
51 #define PAGE_SIZE getpagesize()
56 #define DPRINTF(fmt, ...) \
57 do { fprintf(stderr, fmt, ## __VA_ARGS__); } while (0)
59 #define DPRINTF(fmt, ...) \
63 #define KVM_MSI_HASHTAB_SIZE 256
67 AccelState parent_obj
;
73 struct kvm_coalesced_mmio_ring
*coalesced_mmio_ring
;
74 bool coalesced_flush_in_progress
;
75 int broken_set_mem_region
;
77 int robust_singlestep
;
79 #ifdef KVM_CAP_SET_GUEST_DEBUG
80 struct kvm_sw_breakpoint_head kvm_sw_breakpoints
;
84 /* The man page (and posix) say ioctl numbers are signed int, but
85 * they're not. Linux, glibc and *BSD all treat ioctl numbers as
86 * unsigned, and treating them as signed here can break things */
87 unsigned irq_set_ioctl
;
88 unsigned int sigmask_len
;
90 #ifdef KVM_CAP_IRQ_ROUTING
91 struct kvm_irq_routing
*irq_routes
;
92 int nr_allocated_irq_routes
;
93 uint32_t *used_gsi_bitmap
;
94 unsigned int gsi_count
;
95 QTAILQ_HEAD(msi_hashtab
, KVMMSIRoute
) msi_hashtab
[KVM_MSI_HASHTAB_SIZE
];
97 KVMMemoryListener memory_listener
;
101 bool kvm_kernel_irqchip
;
102 bool kvm_async_interrupts_allowed
;
103 bool kvm_halt_in_kernel_allowed
;
104 bool kvm_eventfds_allowed
;
105 bool kvm_irqfds_allowed
;
106 bool kvm_resamplefds_allowed
;
107 bool kvm_msi_via_irqfd_allowed
;
108 bool kvm_gsi_routing_allowed
;
109 bool kvm_gsi_direct_mapping
;
111 bool kvm_readonly_mem_allowed
;
112 bool kvm_vm_attributes_allowed
;
113 bool kvm_direct_msi_allowed
;
114 bool kvm_ioeventfd_any_length_allowed
;
116 static const KVMCapabilityInfo kvm_required_capabilites
[] = {
117 KVM_CAP_INFO(USER_MEMORY
),
118 KVM_CAP_INFO(DESTROY_MEMORY_REGION_WORKS
),
122 static KVMSlot
*kvm_get_free_slot(KVMMemoryListener
*kml
)
124 KVMState
*s
= kvm_state
;
127 for (i
= 0; i
< s
->nr_slots
; i
++) {
128 if (kml
->slots
[i
].memory_size
== 0) {
129 return &kml
->slots
[i
];
136 bool kvm_has_free_slot(MachineState
*ms
)
138 KVMState
*s
= KVM_STATE(ms
->accelerator
);
140 return kvm_get_free_slot(&s
->memory_listener
);
143 static KVMSlot
*kvm_alloc_slot(KVMMemoryListener
*kml
)
145 KVMSlot
*slot
= kvm_get_free_slot(kml
);
151 fprintf(stderr
, "%s: no free slot available\n", __func__
);
155 static KVMSlot
*kvm_lookup_matching_slot(KVMMemoryListener
*kml
,
159 KVMState
*s
= kvm_state
;
162 for (i
= 0; i
< s
->nr_slots
; i
++) {
163 KVMSlot
*mem
= &kml
->slots
[i
];
165 if (start_addr
== mem
->start_addr
&&
166 end_addr
== mem
->start_addr
+ mem
->memory_size
) {
175 * Find overlapping slot with lowest start address
177 static KVMSlot
*kvm_lookup_overlapping_slot(KVMMemoryListener
*kml
,
181 KVMState
*s
= kvm_state
;
182 KVMSlot
*found
= NULL
;
185 for (i
= 0; i
< s
->nr_slots
; i
++) {
186 KVMSlot
*mem
= &kml
->slots
[i
];
188 if (mem
->memory_size
== 0 ||
189 (found
&& found
->start_addr
< mem
->start_addr
)) {
193 if (end_addr
> mem
->start_addr
&&
194 start_addr
< mem
->start_addr
+ mem
->memory_size
) {
202 int kvm_physical_memory_addr_from_host(KVMState
*s
, void *ram
,
205 KVMMemoryListener
*kml
= &s
->memory_listener
;
208 for (i
= 0; i
< s
->nr_slots
; i
++) {
209 KVMSlot
*mem
= &kml
->slots
[i
];
211 if (ram
>= mem
->ram
&& ram
< mem
->ram
+ mem
->memory_size
) {
212 *phys_addr
= mem
->start_addr
+ (ram
- mem
->ram
);
220 static int kvm_set_user_memory_region(KVMMemoryListener
*kml
, KVMSlot
*slot
)
222 KVMState
*s
= kvm_state
;
223 struct kvm_userspace_memory_region mem
;
225 mem
.slot
= slot
->slot
| (kml
->as_id
<< 16);
226 mem
.guest_phys_addr
= slot
->start_addr
;
227 mem
.userspace_addr
= (unsigned long)slot
->ram
;
228 mem
.flags
= slot
->flags
;
230 if (slot
->memory_size
&& mem
.flags
& KVM_MEM_READONLY
) {
231 /* Set the slot size to 0 before setting the slot to the desired
232 * value. This is needed based on KVM commit 75d61fbc. */
234 kvm_vm_ioctl(s
, KVM_SET_USER_MEMORY_REGION
, &mem
);
236 mem
.memory_size
= slot
->memory_size
;
237 return kvm_vm_ioctl(s
, KVM_SET_USER_MEMORY_REGION
, &mem
);
240 int kvm_init_vcpu(CPUState
*cpu
)
242 KVMState
*s
= kvm_state
;
246 DPRINTF("kvm_init_vcpu\n");
248 ret
= kvm_vm_ioctl(s
, KVM_CREATE_VCPU
, (void *)kvm_arch_vcpu_id(cpu
));
250 DPRINTF("kvm_create_vcpu failed\n");
256 cpu
->kvm_vcpu_dirty
= true;
258 mmap_size
= kvm_ioctl(s
, KVM_GET_VCPU_MMAP_SIZE
, 0);
261 DPRINTF("KVM_GET_VCPU_MMAP_SIZE failed\n");
265 cpu
->kvm_run
= mmap(NULL
, mmap_size
, PROT_READ
| PROT_WRITE
, MAP_SHARED
,
267 if (cpu
->kvm_run
== MAP_FAILED
) {
269 DPRINTF("mmap'ing vcpu state failed\n");
273 if (s
->coalesced_mmio
&& !s
->coalesced_mmio_ring
) {
274 s
->coalesced_mmio_ring
=
275 (void *)cpu
->kvm_run
+ s
->coalesced_mmio
* PAGE_SIZE
;
278 ret
= kvm_arch_init_vcpu(cpu
);
284 * dirty pages logging control
287 static int kvm_mem_flags(MemoryRegion
*mr
)
289 bool readonly
= mr
->readonly
|| memory_region_is_romd(mr
);
292 if (memory_region_get_dirty_log_mask(mr
) != 0) {
293 flags
|= KVM_MEM_LOG_DIRTY_PAGES
;
295 if (readonly
&& kvm_readonly_mem_allowed
) {
296 flags
|= KVM_MEM_READONLY
;
301 static int kvm_slot_update_flags(KVMMemoryListener
*kml
, KVMSlot
*mem
,
306 old_flags
= mem
->flags
;
307 mem
->flags
= kvm_mem_flags(mr
);
309 /* If nothing changed effectively, no need to issue ioctl */
310 if (mem
->flags
== old_flags
) {
314 return kvm_set_user_memory_region(kml
, mem
);
317 static int kvm_section_update_flags(KVMMemoryListener
*kml
,
318 MemoryRegionSection
*section
)
320 hwaddr phys_addr
= section
->offset_within_address_space
;
321 ram_addr_t size
= int128_get64(section
->size
);
322 KVMSlot
*mem
= kvm_lookup_matching_slot(kml
, phys_addr
, phys_addr
+ size
);
327 return kvm_slot_update_flags(kml
, mem
, section
->mr
);
331 static void kvm_log_start(MemoryListener
*listener
,
332 MemoryRegionSection
*section
,
335 KVMMemoryListener
*kml
= container_of(listener
, KVMMemoryListener
, listener
);
342 r
= kvm_section_update_flags(kml
, section
);
348 static void kvm_log_stop(MemoryListener
*listener
,
349 MemoryRegionSection
*section
,
352 KVMMemoryListener
*kml
= container_of(listener
, KVMMemoryListener
, listener
);
359 r
= kvm_section_update_flags(kml
, section
);
365 /* get kvm's dirty pages bitmap and update qemu's */
366 static int kvm_get_dirty_pages_log_range(MemoryRegionSection
*section
,
367 unsigned long *bitmap
)
369 ram_addr_t start
= section
->offset_within_region
+ section
->mr
->ram_addr
;
370 ram_addr_t pages
= int128_get64(section
->size
) / getpagesize();
372 cpu_physical_memory_set_dirty_lebitmap(bitmap
, start
, pages
);
376 #define ALIGN(x, y) (((x)+(y)-1) & ~((y)-1))
379 * kvm_physical_sync_dirty_bitmap - Grab dirty bitmap from kernel space
380 * This function updates qemu's dirty bitmap using
381 * memory_region_set_dirty(). This means all bits are set
384 * @start_add: start of logged region.
385 * @end_addr: end of logged region.
387 static int kvm_physical_sync_dirty_bitmap(KVMMemoryListener
*kml
,
388 MemoryRegionSection
*section
)
390 KVMState
*s
= kvm_state
;
391 unsigned long size
, allocated_size
= 0;
392 struct kvm_dirty_log d
= {};
395 hwaddr start_addr
= section
->offset_within_address_space
;
396 hwaddr end_addr
= start_addr
+ int128_get64(section
->size
);
398 d
.dirty_bitmap
= NULL
;
399 while (start_addr
< end_addr
) {
400 mem
= kvm_lookup_overlapping_slot(kml
, start_addr
, end_addr
);
405 /* XXX bad kernel interface alert
406 * For dirty bitmap, kernel allocates array of size aligned to
407 * bits-per-long. But for case when the kernel is 64bits and
408 * the userspace is 32bits, userspace can't align to the same
409 * bits-per-long, since sizeof(long) is different between kernel
410 * and user space. This way, userspace will provide buffer which
411 * may be 4 bytes less than the kernel will use, resulting in
412 * userspace memory corruption (which is not detectable by valgrind
413 * too, in most cases).
414 * So for now, let's align to 64 instead of HOST_LONG_BITS here, in
415 * a hope that sizeof(long) wont become >8 any time soon.
417 size
= ALIGN(((mem
->memory_size
) >> TARGET_PAGE_BITS
),
418 /*HOST_LONG_BITS*/ 64) / 8;
419 if (!d
.dirty_bitmap
) {
420 d
.dirty_bitmap
= g_malloc(size
);
421 } else if (size
> allocated_size
) {
422 d
.dirty_bitmap
= g_realloc(d
.dirty_bitmap
, size
);
424 allocated_size
= size
;
425 memset(d
.dirty_bitmap
, 0, allocated_size
);
427 d
.slot
= mem
->slot
| (kml
->as_id
<< 16);
428 if (kvm_vm_ioctl(s
, KVM_GET_DIRTY_LOG
, &d
) == -1) {
429 DPRINTF("ioctl failed %d\n", errno
);
434 kvm_get_dirty_pages_log_range(section
, d
.dirty_bitmap
);
435 start_addr
= mem
->start_addr
+ mem
->memory_size
;
437 g_free(d
.dirty_bitmap
);
442 static void kvm_coalesce_mmio_region(MemoryListener
*listener
,
443 MemoryRegionSection
*secion
,
444 hwaddr start
, hwaddr size
)
446 KVMState
*s
= kvm_state
;
448 if (s
->coalesced_mmio
) {
449 struct kvm_coalesced_mmio_zone zone
;
455 (void)kvm_vm_ioctl(s
, KVM_REGISTER_COALESCED_MMIO
, &zone
);
459 static void kvm_uncoalesce_mmio_region(MemoryListener
*listener
,
460 MemoryRegionSection
*secion
,
461 hwaddr start
, hwaddr size
)
463 KVMState
*s
= kvm_state
;
465 if (s
->coalesced_mmio
) {
466 struct kvm_coalesced_mmio_zone zone
;
472 (void)kvm_vm_ioctl(s
, KVM_UNREGISTER_COALESCED_MMIO
, &zone
);
476 int kvm_check_extension(KVMState
*s
, unsigned int extension
)
480 ret
= kvm_ioctl(s
, KVM_CHECK_EXTENSION
, extension
);
488 int kvm_vm_check_extension(KVMState
*s
, unsigned int extension
)
492 ret
= kvm_vm_ioctl(s
, KVM_CHECK_EXTENSION
, extension
);
494 /* VM wide version not implemented, use global one instead */
495 ret
= kvm_check_extension(s
, extension
);
501 static uint32_t adjust_ioeventfd_endianness(uint32_t val
, uint32_t size
)
503 #if defined(HOST_WORDS_BIGENDIAN) != defined(TARGET_WORDS_BIGENDIAN)
504 /* The kernel expects ioeventfd values in HOST_WORDS_BIGENDIAN
505 * endianness, but the memory core hands them in target endianness.
506 * For example, PPC is always treated as big-endian even if running
507 * on KVM and on PPC64LE. Correct here.
521 static int kvm_set_ioeventfd_mmio(int fd
, hwaddr addr
, uint32_t val
,
522 bool assign
, uint32_t size
, bool datamatch
)
525 struct kvm_ioeventfd iofd
= {
526 .datamatch
= datamatch
? adjust_ioeventfd_endianness(val
, size
) : 0,
533 if (!kvm_enabled()) {
538 iofd
.flags
|= KVM_IOEVENTFD_FLAG_DATAMATCH
;
541 iofd
.flags
|= KVM_IOEVENTFD_FLAG_DEASSIGN
;
544 ret
= kvm_vm_ioctl(kvm_state
, KVM_IOEVENTFD
, &iofd
);
553 static int kvm_set_ioeventfd_pio(int fd
, uint16_t addr
, uint16_t val
,
554 bool assign
, uint32_t size
, bool datamatch
)
556 struct kvm_ioeventfd kick
= {
557 .datamatch
= datamatch
? adjust_ioeventfd_endianness(val
, size
) : 0,
559 .flags
= KVM_IOEVENTFD_FLAG_PIO
,
564 if (!kvm_enabled()) {
568 kick
.flags
|= KVM_IOEVENTFD_FLAG_DATAMATCH
;
571 kick
.flags
|= KVM_IOEVENTFD_FLAG_DEASSIGN
;
573 r
= kvm_vm_ioctl(kvm_state
, KVM_IOEVENTFD
, &kick
);
581 static int kvm_check_many_ioeventfds(void)
583 /* Userspace can use ioeventfd for io notification. This requires a host
584 * that supports eventfd(2) and an I/O thread; since eventfd does not
585 * support SIGIO it cannot interrupt the vcpu.
587 * Older kernels have a 6 device limit on the KVM io bus. Find out so we
588 * can avoid creating too many ioeventfds.
590 #if defined(CONFIG_EVENTFD)
593 for (i
= 0; i
< ARRAY_SIZE(ioeventfds
); i
++) {
594 ioeventfds
[i
] = eventfd(0, EFD_CLOEXEC
);
595 if (ioeventfds
[i
] < 0) {
598 ret
= kvm_set_ioeventfd_pio(ioeventfds
[i
], 0, i
, true, 2, true);
600 close(ioeventfds
[i
]);
605 /* Decide whether many devices are supported or not */
606 ret
= i
== ARRAY_SIZE(ioeventfds
);
609 kvm_set_ioeventfd_pio(ioeventfds
[i
], 0, i
, false, 2, true);
610 close(ioeventfds
[i
]);
618 static const KVMCapabilityInfo
*
619 kvm_check_extension_list(KVMState
*s
, const KVMCapabilityInfo
*list
)
622 if (!kvm_check_extension(s
, list
->value
)) {
630 static void kvm_set_phys_mem(KVMMemoryListener
*kml
,
631 MemoryRegionSection
*section
, bool add
)
633 KVMState
*s
= kvm_state
;
636 MemoryRegion
*mr
= section
->mr
;
637 bool writeable
= !mr
->readonly
&& !mr
->rom_device
;
638 hwaddr start_addr
= section
->offset_within_address_space
;
639 ram_addr_t size
= int128_get64(section
->size
);
643 /* kvm works in page size chunks, but the function may be called
644 with sub-page size and unaligned start address. Pad the start
645 address to next and truncate size to previous page boundary. */
646 delta
= qemu_real_host_page_size
- (start_addr
& ~qemu_real_host_page_mask
);
647 delta
&= ~qemu_real_host_page_mask
;
653 size
&= qemu_real_host_page_mask
;
654 if (!size
|| (start_addr
& ~qemu_real_host_page_mask
)) {
658 if (!memory_region_is_ram(mr
)) {
659 if (writeable
|| !kvm_readonly_mem_allowed
) {
661 } else if (!mr
->romd_mode
) {
662 /* If the memory device is not in romd_mode, then we actually want
663 * to remove the kvm memory slot so all accesses will trap. */
668 ram
= memory_region_get_ram_ptr(mr
) + section
->offset_within_region
+ delta
;
671 mem
= kvm_lookup_overlapping_slot(kml
, start_addr
, start_addr
+ size
);
676 if (add
&& start_addr
>= mem
->start_addr
&&
677 (start_addr
+ size
<= mem
->start_addr
+ mem
->memory_size
) &&
678 (ram
- start_addr
== mem
->ram
- mem
->start_addr
)) {
679 /* The new slot fits into the existing one and comes with
680 * identical parameters - update flags and done. */
681 kvm_slot_update_flags(kml
, mem
, mr
);
687 if (mem
->flags
& KVM_MEM_LOG_DIRTY_PAGES
) {
688 kvm_physical_sync_dirty_bitmap(kml
, section
);
691 /* unregister the overlapping slot */
692 mem
->memory_size
= 0;
693 err
= kvm_set_user_memory_region(kml
, mem
);
695 fprintf(stderr
, "%s: error unregistering overlapping slot: %s\n",
696 __func__
, strerror(-err
));
700 /* Workaround for older KVM versions: we can't join slots, even not by
701 * unregistering the previous ones and then registering the larger
702 * slot. We have to maintain the existing fragmentation. Sigh.
704 * This workaround assumes that the new slot starts at the same
705 * address as the first existing one. If not or if some overlapping
706 * slot comes around later, we will fail (not seen in practice so far)
707 * - and actually require a recent KVM version. */
708 if (s
->broken_set_mem_region
&&
709 old
.start_addr
== start_addr
&& old
.memory_size
< size
&& add
) {
710 mem
= kvm_alloc_slot(kml
);
711 mem
->memory_size
= old
.memory_size
;
712 mem
->start_addr
= old
.start_addr
;
714 mem
->flags
= kvm_mem_flags(mr
);
716 err
= kvm_set_user_memory_region(kml
, mem
);
718 fprintf(stderr
, "%s: error updating slot: %s\n", __func__
,
723 start_addr
+= old
.memory_size
;
724 ram
+= old
.memory_size
;
725 size
-= old
.memory_size
;
729 /* register prefix slot */
730 if (old
.start_addr
< start_addr
) {
731 mem
= kvm_alloc_slot(kml
);
732 mem
->memory_size
= start_addr
- old
.start_addr
;
733 mem
->start_addr
= old
.start_addr
;
735 mem
->flags
= kvm_mem_flags(mr
);
737 err
= kvm_set_user_memory_region(kml
, mem
);
739 fprintf(stderr
, "%s: error registering prefix slot: %s\n",
740 __func__
, strerror(-err
));
742 fprintf(stderr
, "%s: This is probably because your kernel's " \
743 "PAGE_SIZE is too big. Please try to use 4k " \
744 "PAGE_SIZE!\n", __func__
);
750 /* register suffix slot */
751 if (old
.start_addr
+ old
.memory_size
> start_addr
+ size
) {
752 ram_addr_t size_delta
;
754 mem
= kvm_alloc_slot(kml
);
755 mem
->start_addr
= start_addr
+ size
;
756 size_delta
= mem
->start_addr
- old
.start_addr
;
757 mem
->memory_size
= old
.memory_size
- size_delta
;
758 mem
->ram
= old
.ram
+ size_delta
;
759 mem
->flags
= kvm_mem_flags(mr
);
761 err
= kvm_set_user_memory_region(kml
, mem
);
763 fprintf(stderr
, "%s: error registering suffix slot: %s\n",
764 __func__
, strerror(-err
));
770 /* in case the KVM bug workaround already "consumed" the new slot */
777 mem
= kvm_alloc_slot(kml
);
778 mem
->memory_size
= size
;
779 mem
->start_addr
= start_addr
;
781 mem
->flags
= kvm_mem_flags(mr
);
783 err
= kvm_set_user_memory_region(kml
, mem
);
785 fprintf(stderr
, "%s: error registering slot: %s\n", __func__
,
791 static void kvm_region_add(MemoryListener
*listener
,
792 MemoryRegionSection
*section
)
794 KVMMemoryListener
*kml
= container_of(listener
, KVMMemoryListener
, listener
);
796 memory_region_ref(section
->mr
);
797 kvm_set_phys_mem(kml
, section
, true);
800 static void kvm_region_del(MemoryListener
*listener
,
801 MemoryRegionSection
*section
)
803 KVMMemoryListener
*kml
= container_of(listener
, KVMMemoryListener
, listener
);
805 kvm_set_phys_mem(kml
, section
, false);
806 memory_region_unref(section
->mr
);
809 static void kvm_log_sync(MemoryListener
*listener
,
810 MemoryRegionSection
*section
)
812 KVMMemoryListener
*kml
= container_of(listener
, KVMMemoryListener
, listener
);
815 r
= kvm_physical_sync_dirty_bitmap(kml
, section
);
821 static void kvm_mem_ioeventfd_add(MemoryListener
*listener
,
822 MemoryRegionSection
*section
,
823 bool match_data
, uint64_t data
,
826 int fd
= event_notifier_get_fd(e
);
829 r
= kvm_set_ioeventfd_mmio(fd
, section
->offset_within_address_space
,
830 data
, true, int128_get64(section
->size
),
833 fprintf(stderr
, "%s: error adding ioeventfd: %s\n",
834 __func__
, strerror(-r
));
839 static void kvm_mem_ioeventfd_del(MemoryListener
*listener
,
840 MemoryRegionSection
*section
,
841 bool match_data
, uint64_t data
,
844 int fd
= event_notifier_get_fd(e
);
847 r
= kvm_set_ioeventfd_mmio(fd
, section
->offset_within_address_space
,
848 data
, false, int128_get64(section
->size
),
855 static void kvm_io_ioeventfd_add(MemoryListener
*listener
,
856 MemoryRegionSection
*section
,
857 bool match_data
, uint64_t data
,
860 int fd
= event_notifier_get_fd(e
);
863 r
= kvm_set_ioeventfd_pio(fd
, section
->offset_within_address_space
,
864 data
, true, int128_get64(section
->size
),
867 fprintf(stderr
, "%s: error adding ioeventfd: %s\n",
868 __func__
, strerror(-r
));
873 static void kvm_io_ioeventfd_del(MemoryListener
*listener
,
874 MemoryRegionSection
*section
,
875 bool match_data
, uint64_t data
,
879 int fd
= event_notifier_get_fd(e
);
882 r
= kvm_set_ioeventfd_pio(fd
, section
->offset_within_address_space
,
883 data
, false, int128_get64(section
->size
),
890 void kvm_memory_listener_register(KVMState
*s
, KVMMemoryListener
*kml
,
891 AddressSpace
*as
, int as_id
)
895 kml
->slots
= g_malloc0(s
->nr_slots
* sizeof(KVMSlot
));
898 for (i
= 0; i
< s
->nr_slots
; i
++) {
899 kml
->slots
[i
].slot
= i
;
902 kml
->listener
.region_add
= kvm_region_add
;
903 kml
->listener
.region_del
= kvm_region_del
;
904 kml
->listener
.log_start
= kvm_log_start
;
905 kml
->listener
.log_stop
= kvm_log_stop
;
906 kml
->listener
.log_sync
= kvm_log_sync
;
907 kml
->listener
.priority
= 10;
909 memory_listener_register(&kml
->listener
, as
);
912 static MemoryListener kvm_io_listener
= {
913 .eventfd_add
= kvm_io_ioeventfd_add
,
914 .eventfd_del
= kvm_io_ioeventfd_del
,
918 static void kvm_handle_interrupt(CPUState
*cpu
, int mask
)
920 cpu
->interrupt_request
|= mask
;
922 if (!qemu_cpu_is_self(cpu
)) {
927 int kvm_set_irq(KVMState
*s
, int irq
, int level
)
929 struct kvm_irq_level event
;
932 assert(kvm_async_interrupts_enabled());
936 ret
= kvm_vm_ioctl(s
, s
->irq_set_ioctl
, &event
);
938 perror("kvm_set_irq");
942 return (s
->irq_set_ioctl
== KVM_IRQ_LINE
) ? 1 : event
.status
;
945 #ifdef KVM_CAP_IRQ_ROUTING
946 typedef struct KVMMSIRoute
{
947 struct kvm_irq_routing_entry kroute
;
948 QTAILQ_ENTRY(KVMMSIRoute
) entry
;
951 static void set_gsi(KVMState
*s
, unsigned int gsi
)
953 s
->used_gsi_bitmap
[gsi
/ 32] |= 1U << (gsi
% 32);
956 static void clear_gsi(KVMState
*s
, unsigned int gsi
)
958 s
->used_gsi_bitmap
[gsi
/ 32] &= ~(1U << (gsi
% 32));
961 void kvm_init_irq_routing(KVMState
*s
)
965 gsi_count
= kvm_check_extension(s
, KVM_CAP_IRQ_ROUTING
) - 1;
967 unsigned int gsi_bits
, i
;
969 /* Round up so we can search ints using ffs */
970 gsi_bits
= ALIGN(gsi_count
, 32);
971 s
->used_gsi_bitmap
= g_malloc0(gsi_bits
/ 8);
972 s
->gsi_count
= gsi_count
;
974 /* Mark any over-allocated bits as already in use */
975 for (i
= gsi_count
; i
< gsi_bits
; i
++) {
980 s
->irq_routes
= g_malloc0(sizeof(*s
->irq_routes
));
981 s
->nr_allocated_irq_routes
= 0;
983 if (!kvm_direct_msi_allowed
) {
984 for (i
= 0; i
< KVM_MSI_HASHTAB_SIZE
; i
++) {
985 QTAILQ_INIT(&s
->msi_hashtab
[i
]);
989 kvm_arch_init_irq_routing(s
);
992 void kvm_irqchip_commit_routes(KVMState
*s
)
996 s
->irq_routes
->flags
= 0;
997 ret
= kvm_vm_ioctl(s
, KVM_SET_GSI_ROUTING
, s
->irq_routes
);
1001 static void kvm_add_routing_entry(KVMState
*s
,
1002 struct kvm_irq_routing_entry
*entry
)
1004 struct kvm_irq_routing_entry
*new;
1007 if (s
->irq_routes
->nr
== s
->nr_allocated_irq_routes
) {
1008 n
= s
->nr_allocated_irq_routes
* 2;
1012 size
= sizeof(struct kvm_irq_routing
);
1013 size
+= n
* sizeof(*new);
1014 s
->irq_routes
= g_realloc(s
->irq_routes
, size
);
1015 s
->nr_allocated_irq_routes
= n
;
1017 n
= s
->irq_routes
->nr
++;
1018 new = &s
->irq_routes
->entries
[n
];
1022 set_gsi(s
, entry
->gsi
);
1025 static int kvm_update_routing_entry(KVMState
*s
,
1026 struct kvm_irq_routing_entry
*new_entry
)
1028 struct kvm_irq_routing_entry
*entry
;
1031 for (n
= 0; n
< s
->irq_routes
->nr
; n
++) {
1032 entry
= &s
->irq_routes
->entries
[n
];
1033 if (entry
->gsi
!= new_entry
->gsi
) {
1037 if(!memcmp(entry
, new_entry
, sizeof *entry
)) {
1041 *entry
= *new_entry
;
1043 kvm_irqchip_commit_routes(s
);
1051 void kvm_irqchip_add_irq_route(KVMState
*s
, int irq
, int irqchip
, int pin
)
1053 struct kvm_irq_routing_entry e
= {};
1055 assert(pin
< s
->gsi_count
);
1058 e
.type
= KVM_IRQ_ROUTING_IRQCHIP
;
1060 e
.u
.irqchip
.irqchip
= irqchip
;
1061 e
.u
.irqchip
.pin
= pin
;
1062 kvm_add_routing_entry(s
, &e
);
1065 void kvm_irqchip_release_virq(KVMState
*s
, int virq
)
1067 struct kvm_irq_routing_entry
*e
;
1070 if (kvm_gsi_direct_mapping()) {
1074 for (i
= 0; i
< s
->irq_routes
->nr
; i
++) {
1075 e
= &s
->irq_routes
->entries
[i
];
1076 if (e
->gsi
== virq
) {
1077 s
->irq_routes
->nr
--;
1078 *e
= s
->irq_routes
->entries
[s
->irq_routes
->nr
];
1084 static unsigned int kvm_hash_msi(uint32_t data
)
1086 /* This is optimized for IA32 MSI layout. However, no other arch shall
1087 * repeat the mistake of not providing a direct MSI injection API. */
1091 static void kvm_flush_dynamic_msi_routes(KVMState
*s
)
1093 KVMMSIRoute
*route
, *next
;
1096 for (hash
= 0; hash
< KVM_MSI_HASHTAB_SIZE
; hash
++) {
1097 QTAILQ_FOREACH_SAFE(route
, &s
->msi_hashtab
[hash
], entry
, next
) {
1098 kvm_irqchip_release_virq(s
, route
->kroute
.gsi
);
1099 QTAILQ_REMOVE(&s
->msi_hashtab
[hash
], route
, entry
);
1105 static int kvm_irqchip_get_virq(KVMState
*s
)
1107 uint32_t *word
= s
->used_gsi_bitmap
;
1108 int max_words
= ALIGN(s
->gsi_count
, 32) / 32;
1112 * PIC and IOAPIC share the first 16 GSI numbers, thus the available
1113 * GSI numbers are more than the number of IRQ route. Allocating a GSI
1114 * number can succeed even though a new route entry cannot be added.
1115 * When this happens, flush dynamic MSI entries to free IRQ route entries.
1117 if (!kvm_direct_msi_allowed
&& s
->irq_routes
->nr
== s
->gsi_count
) {
1118 kvm_flush_dynamic_msi_routes(s
);
1121 /* Return the lowest unused GSI in the bitmap */
1122 for (i
= 0; i
< max_words
; i
++) {
1123 zeroes
= ctz32(~word
[i
]);
1128 return zeroes
+ i
* 32;
1134 static KVMMSIRoute
*kvm_lookup_msi_route(KVMState
*s
, MSIMessage msg
)
1136 unsigned int hash
= kvm_hash_msi(msg
.data
);
1139 QTAILQ_FOREACH(route
, &s
->msi_hashtab
[hash
], entry
) {
1140 if (route
->kroute
.u
.msi
.address_lo
== (uint32_t)msg
.address
&&
1141 route
->kroute
.u
.msi
.address_hi
== (msg
.address
>> 32) &&
1142 route
->kroute
.u
.msi
.data
== le32_to_cpu(msg
.data
)) {
1149 int kvm_irqchip_send_msi(KVMState
*s
, MSIMessage msg
)
1154 if (kvm_direct_msi_allowed
) {
1155 msi
.address_lo
= (uint32_t)msg
.address
;
1156 msi
.address_hi
= msg
.address
>> 32;
1157 msi
.data
= le32_to_cpu(msg
.data
);
1159 memset(msi
.pad
, 0, sizeof(msi
.pad
));
1161 return kvm_vm_ioctl(s
, KVM_SIGNAL_MSI
, &msi
);
1164 route
= kvm_lookup_msi_route(s
, msg
);
1168 virq
= kvm_irqchip_get_virq(s
);
1173 route
= g_malloc0(sizeof(KVMMSIRoute
));
1174 route
->kroute
.gsi
= virq
;
1175 route
->kroute
.type
= KVM_IRQ_ROUTING_MSI
;
1176 route
->kroute
.flags
= 0;
1177 route
->kroute
.u
.msi
.address_lo
= (uint32_t)msg
.address
;
1178 route
->kroute
.u
.msi
.address_hi
= msg
.address
>> 32;
1179 route
->kroute
.u
.msi
.data
= le32_to_cpu(msg
.data
);
1181 kvm_add_routing_entry(s
, &route
->kroute
);
1182 kvm_irqchip_commit_routes(s
);
1184 QTAILQ_INSERT_TAIL(&s
->msi_hashtab
[kvm_hash_msi(msg
.data
)], route
,
1188 assert(route
->kroute
.type
== KVM_IRQ_ROUTING_MSI
);
1190 return kvm_set_irq(s
, route
->kroute
.gsi
, 1);
1193 int kvm_irqchip_add_msi_route(KVMState
*s
, MSIMessage msg
, PCIDevice
*dev
)
1195 struct kvm_irq_routing_entry kroute
= {};
1198 if (kvm_gsi_direct_mapping()) {
1199 return kvm_arch_msi_data_to_gsi(msg
.data
);
1202 if (!kvm_gsi_routing_enabled()) {
1206 virq
= kvm_irqchip_get_virq(s
);
1212 kroute
.type
= KVM_IRQ_ROUTING_MSI
;
1214 kroute
.u
.msi
.address_lo
= (uint32_t)msg
.address
;
1215 kroute
.u
.msi
.address_hi
= msg
.address
>> 32;
1216 kroute
.u
.msi
.data
= le32_to_cpu(msg
.data
);
1217 if (kvm_arch_fixup_msi_route(&kroute
, msg
.address
, msg
.data
, dev
)) {
1218 kvm_irqchip_release_virq(s
, virq
);
1222 kvm_add_routing_entry(s
, &kroute
);
1223 kvm_irqchip_commit_routes(s
);
1228 int kvm_irqchip_update_msi_route(KVMState
*s
, int virq
, MSIMessage msg
,
1231 struct kvm_irq_routing_entry kroute
= {};
1233 if (kvm_gsi_direct_mapping()) {
1237 if (!kvm_irqchip_in_kernel()) {
1242 kroute
.type
= KVM_IRQ_ROUTING_MSI
;
1244 kroute
.u
.msi
.address_lo
= (uint32_t)msg
.address
;
1245 kroute
.u
.msi
.address_hi
= msg
.address
>> 32;
1246 kroute
.u
.msi
.data
= le32_to_cpu(msg
.data
);
1247 if (kvm_arch_fixup_msi_route(&kroute
, msg
.address
, msg
.data
, dev
)) {
1251 return kvm_update_routing_entry(s
, &kroute
);
1254 static int kvm_irqchip_assign_irqfd(KVMState
*s
, int fd
, int rfd
, int virq
,
1257 struct kvm_irqfd irqfd
= {
1260 .flags
= assign
? 0 : KVM_IRQFD_FLAG_DEASSIGN
,
1264 irqfd
.flags
|= KVM_IRQFD_FLAG_RESAMPLE
;
1265 irqfd
.resamplefd
= rfd
;
1268 if (!kvm_irqfds_enabled()) {
1272 return kvm_vm_ioctl(s
, KVM_IRQFD
, &irqfd
);
1275 int kvm_irqchip_add_adapter_route(KVMState
*s
, AdapterInfo
*adapter
)
1277 struct kvm_irq_routing_entry kroute
= {};
1280 if (!kvm_gsi_routing_enabled()) {
1284 virq
= kvm_irqchip_get_virq(s
);
1290 kroute
.type
= KVM_IRQ_ROUTING_S390_ADAPTER
;
1292 kroute
.u
.adapter
.summary_addr
= adapter
->summary_addr
;
1293 kroute
.u
.adapter
.ind_addr
= adapter
->ind_addr
;
1294 kroute
.u
.adapter
.summary_offset
= adapter
->summary_offset
;
1295 kroute
.u
.adapter
.ind_offset
= adapter
->ind_offset
;
1296 kroute
.u
.adapter
.adapter_id
= adapter
->adapter_id
;
1298 kvm_add_routing_entry(s
, &kroute
);
1303 int kvm_irqchip_add_hv_sint_route(KVMState
*s
, uint32_t vcpu
, uint32_t sint
)
1305 struct kvm_irq_routing_entry kroute
= {};
1308 if (!kvm_gsi_routing_enabled()) {
1311 if (!kvm_check_extension(s
, KVM_CAP_HYPERV_SYNIC
)) {
1314 virq
= kvm_irqchip_get_virq(s
);
1320 kroute
.type
= KVM_IRQ_ROUTING_HV_SINT
;
1322 kroute
.u
.hv_sint
.vcpu
= vcpu
;
1323 kroute
.u
.hv_sint
.sint
= sint
;
1325 kvm_add_routing_entry(s
, &kroute
);
1326 kvm_irqchip_commit_routes(s
);
1331 #else /* !KVM_CAP_IRQ_ROUTING */
1333 void kvm_init_irq_routing(KVMState
*s
)
1337 void kvm_irqchip_release_virq(KVMState
*s
, int virq
)
1341 int kvm_irqchip_send_msi(KVMState
*s
, MSIMessage msg
)
1346 int kvm_irqchip_add_msi_route(KVMState
*s
, MSIMessage msg
)
1351 int kvm_irqchip_add_adapter_route(KVMState
*s
, AdapterInfo
*adapter
)
1356 int kvm_irqchip_add_hv_sint_route(KVMState
*s
, uint32_t vcpu
, uint32_t sint
)
1361 static int kvm_irqchip_assign_irqfd(KVMState
*s
, int fd
, int virq
, bool assign
)
1366 int kvm_irqchip_update_msi_route(KVMState
*s
, int virq
, MSIMessage msg
)
1370 #endif /* !KVM_CAP_IRQ_ROUTING */
1372 int kvm_irqchip_add_irqfd_notifier_gsi(KVMState
*s
, EventNotifier
*n
,
1373 EventNotifier
*rn
, int virq
)
1375 return kvm_irqchip_assign_irqfd(s
, event_notifier_get_fd(n
),
1376 rn
? event_notifier_get_fd(rn
) : -1, virq
, true);
1379 int kvm_irqchip_remove_irqfd_notifier_gsi(KVMState
*s
, EventNotifier
*n
,
1382 return kvm_irqchip_assign_irqfd(s
, event_notifier_get_fd(n
), -1, virq
,
1386 int kvm_irqchip_add_irqfd_notifier(KVMState
*s
, EventNotifier
*n
,
1387 EventNotifier
*rn
, qemu_irq irq
)
1390 gboolean found
= g_hash_table_lookup_extended(s
->gsimap
, irq
, &key
, &gsi
);
1395 return kvm_irqchip_add_irqfd_notifier_gsi(s
, n
, rn
, GPOINTER_TO_INT(gsi
));
1398 int kvm_irqchip_remove_irqfd_notifier(KVMState
*s
, EventNotifier
*n
,
1402 gboolean found
= g_hash_table_lookup_extended(s
->gsimap
, irq
, &key
, &gsi
);
1407 return kvm_irqchip_remove_irqfd_notifier_gsi(s
, n
, GPOINTER_TO_INT(gsi
));
1410 void kvm_irqchip_set_qemuirq_gsi(KVMState
*s
, qemu_irq irq
, int gsi
)
1412 g_hash_table_insert(s
->gsimap
, irq
, GINT_TO_POINTER(gsi
));
1415 static void kvm_irqchip_create(MachineState
*machine
, KVMState
*s
)
1419 if (kvm_check_extension(s
, KVM_CAP_IRQCHIP
)) {
1421 } else if (kvm_check_extension(s
, KVM_CAP_S390_IRQCHIP
)) {
1422 ret
= kvm_vm_enable_cap(s
, KVM_CAP_S390_IRQCHIP
, 0);
1424 fprintf(stderr
, "Enable kernel irqchip failed: %s\n", strerror(-ret
));
1431 /* First probe and see if there's a arch-specific hook to create the
1432 * in-kernel irqchip for us */
1433 ret
= kvm_arch_irqchip_create(s
);
1435 ret
= kvm_vm_ioctl(s
, KVM_CREATE_IRQCHIP
);
1438 fprintf(stderr
, "Create kernel irqchip failed: %s\n", strerror(-ret
));
1442 kvm_kernel_irqchip
= true;
1443 /* If we have an in-kernel IRQ chip then we must have asynchronous
1444 * interrupt delivery (though the reverse is not necessarily true)
1446 kvm_async_interrupts_allowed
= true;
1447 kvm_halt_in_kernel_allowed
= true;
1449 kvm_init_irq_routing(s
);
1451 s
->gsimap
= g_hash_table_new(g_direct_hash
, g_direct_equal
);
1454 /* Find number of supported CPUs using the recommended
1455 * procedure from the kernel API documentation to cope with
1456 * older kernels that may be missing capabilities.
1458 static int kvm_recommended_vcpus(KVMState
*s
)
1460 int ret
= kvm_check_extension(s
, KVM_CAP_NR_VCPUS
);
1461 return (ret
) ? ret
: 4;
1464 static int kvm_max_vcpus(KVMState
*s
)
1466 int ret
= kvm_check_extension(s
, KVM_CAP_MAX_VCPUS
);
1467 return (ret
) ? ret
: kvm_recommended_vcpus(s
);
1470 static int kvm_init(MachineState
*ms
)
1472 MachineClass
*mc
= MACHINE_GET_CLASS(ms
);
1473 static const char upgrade_note
[] =
1474 "Please upgrade to at least kernel 2.6.29 or recent kvm-kmod\n"
1475 "(see http://sourceforge.net/projects/kvm).\n";
1480 { "SMP", smp_cpus
},
1481 { "hotpluggable", max_cpus
},
1484 int soft_vcpus_limit
, hard_vcpus_limit
;
1486 const KVMCapabilityInfo
*missing_cap
;
1489 const char *kvm_type
;
1491 s
= KVM_STATE(ms
->accelerator
);
1494 * On systems where the kernel can support different base page
1495 * sizes, host page size may be different from TARGET_PAGE_SIZE,
1496 * even with KVM. TARGET_PAGE_SIZE is assumed to be the minimum
1497 * page size for the system though.
1499 assert(TARGET_PAGE_SIZE
<= getpagesize());
1503 #ifdef KVM_CAP_SET_GUEST_DEBUG
1504 QTAILQ_INIT(&s
->kvm_sw_breakpoints
);
1507 s
->fd
= qemu_open("/dev/kvm", O_RDWR
);
1509 fprintf(stderr
, "Could not access KVM kernel module: %m\n");
1514 ret
= kvm_ioctl(s
, KVM_GET_API_VERSION
, 0);
1515 if (ret
< KVM_API_VERSION
) {
1519 fprintf(stderr
, "kvm version too old\n");
1523 if (ret
> KVM_API_VERSION
) {
1525 fprintf(stderr
, "kvm version not supported\n");
1529 s
->nr_slots
= kvm_check_extension(s
, KVM_CAP_NR_MEMSLOTS
);
1531 /* If unspecified, use the default value */
1536 /* check the vcpu limits */
1537 soft_vcpus_limit
= kvm_recommended_vcpus(s
);
1538 hard_vcpus_limit
= kvm_max_vcpus(s
);
1541 if (nc
->num
> soft_vcpus_limit
) {
1543 "Warning: Number of %s cpus requested (%d) exceeds "
1544 "the recommended cpus supported by KVM (%d)\n",
1545 nc
->name
, nc
->num
, soft_vcpus_limit
);
1547 if (nc
->num
> hard_vcpus_limit
) {
1548 fprintf(stderr
, "Number of %s cpus requested (%d) exceeds "
1549 "the maximum cpus supported by KVM (%d)\n",
1550 nc
->name
, nc
->num
, hard_vcpus_limit
);
1557 kvm_type
= qemu_opt_get(qemu_get_machine_opts(), "kvm-type");
1559 type
= mc
->kvm_type(kvm_type
);
1560 } else if (kvm_type
) {
1562 fprintf(stderr
, "Invalid argument kvm-type=%s\n", kvm_type
);
1567 ret
= kvm_ioctl(s
, KVM_CREATE_VM
, type
);
1568 } while (ret
== -EINTR
);
1571 fprintf(stderr
, "ioctl(KVM_CREATE_VM) failed: %d %s\n", -ret
,
1575 if (ret
== -EINVAL
) {
1577 "Host kernel setup problem detected. Please verify:\n");
1578 fprintf(stderr
, "- for kernels supporting the switch_amode or"
1579 " user_mode parameters, whether\n");
1581 " user space is running in primary address space\n");
1583 "- for kernels supporting the vm.allocate_pgste sysctl, "
1584 "whether it is enabled\n");
1591 missing_cap
= kvm_check_extension_list(s
, kvm_required_capabilites
);
1594 kvm_check_extension_list(s
, kvm_arch_required_capabilities
);
1598 fprintf(stderr
, "kvm does not support %s\n%s",
1599 missing_cap
->name
, upgrade_note
);
1603 s
->coalesced_mmio
= kvm_check_extension(s
, KVM_CAP_COALESCED_MMIO
);
1605 s
->broken_set_mem_region
= 1;
1606 ret
= kvm_check_extension(s
, KVM_CAP_JOIN_MEMORY_REGIONS_WORKS
);
1608 s
->broken_set_mem_region
= 0;
1611 #ifdef KVM_CAP_VCPU_EVENTS
1612 s
->vcpu_events
= kvm_check_extension(s
, KVM_CAP_VCPU_EVENTS
);
1615 s
->robust_singlestep
=
1616 kvm_check_extension(s
, KVM_CAP_X86_ROBUST_SINGLESTEP
);
1618 #ifdef KVM_CAP_DEBUGREGS
1619 s
->debugregs
= kvm_check_extension(s
, KVM_CAP_DEBUGREGS
);
1622 #ifdef KVM_CAP_IRQ_ROUTING
1623 kvm_direct_msi_allowed
= (kvm_check_extension(s
, KVM_CAP_SIGNAL_MSI
) > 0);
1626 s
->intx_set_mask
= kvm_check_extension(s
, KVM_CAP_PCI_2_3
);
1628 s
->irq_set_ioctl
= KVM_IRQ_LINE
;
1629 if (kvm_check_extension(s
, KVM_CAP_IRQ_INJECT_STATUS
)) {
1630 s
->irq_set_ioctl
= KVM_IRQ_LINE_STATUS
;
1633 #ifdef KVM_CAP_READONLY_MEM
1634 kvm_readonly_mem_allowed
=
1635 (kvm_check_extension(s
, KVM_CAP_READONLY_MEM
) > 0);
1638 kvm_eventfds_allowed
=
1639 (kvm_check_extension(s
, KVM_CAP_IOEVENTFD
) > 0);
1641 kvm_irqfds_allowed
=
1642 (kvm_check_extension(s
, KVM_CAP_IRQFD
) > 0);
1644 kvm_resamplefds_allowed
=
1645 (kvm_check_extension(s
, KVM_CAP_IRQFD_RESAMPLE
) > 0);
1647 kvm_vm_attributes_allowed
=
1648 (kvm_check_extension(s
, KVM_CAP_VM_ATTRIBUTES
) > 0);
1650 kvm_ioeventfd_any_length_allowed
=
1651 (kvm_check_extension(s
, KVM_CAP_IOEVENTFD_ANY_LENGTH
) > 0);
1653 ret
= kvm_arch_init(ms
, s
);
1658 if (machine_kernel_irqchip_allowed(ms
)) {
1659 kvm_irqchip_create(ms
, s
);
1664 if (kvm_eventfds_allowed
) {
1665 s
->memory_listener
.listener
.eventfd_add
= kvm_mem_ioeventfd_add
;
1666 s
->memory_listener
.listener
.eventfd_del
= kvm_mem_ioeventfd_del
;
1668 s
->memory_listener
.listener
.coalesced_mmio_add
= kvm_coalesce_mmio_region
;
1669 s
->memory_listener
.listener
.coalesced_mmio_del
= kvm_uncoalesce_mmio_region
;
1671 kvm_memory_listener_register(s
, &s
->memory_listener
,
1672 &address_space_memory
, 0);
1673 memory_listener_register(&kvm_io_listener
,
1676 s
->many_ioeventfds
= kvm_check_many_ioeventfds();
1678 cpu_interrupt_handler
= kvm_handle_interrupt
;
1690 g_free(s
->memory_listener
.slots
);
1695 void kvm_set_sigmask_len(KVMState
*s
, unsigned int sigmask_len
)
1697 s
->sigmask_len
= sigmask_len
;
1700 static void kvm_handle_io(uint16_t port
, MemTxAttrs attrs
, void *data
, int direction
,
1701 int size
, uint32_t count
)
1704 uint8_t *ptr
= data
;
1706 for (i
= 0; i
< count
; i
++) {
1707 address_space_rw(&address_space_io
, port
, attrs
,
1709 direction
== KVM_EXIT_IO_OUT
);
1714 static int kvm_handle_internal_error(CPUState
*cpu
, struct kvm_run
*run
)
1716 fprintf(stderr
, "KVM internal error. Suberror: %d\n",
1717 run
->internal
.suberror
);
1719 if (kvm_check_extension(kvm_state
, KVM_CAP_INTERNAL_ERROR_DATA
)) {
1722 for (i
= 0; i
< run
->internal
.ndata
; ++i
) {
1723 fprintf(stderr
, "extra data[%d]: %"PRIx64
"\n",
1724 i
, (uint64_t)run
->internal
.data
[i
]);
1727 if (run
->internal
.suberror
== KVM_INTERNAL_ERROR_EMULATION
) {
1728 fprintf(stderr
, "emulation failure\n");
1729 if (!kvm_arch_stop_on_emulation_error(cpu
)) {
1730 cpu_dump_state(cpu
, stderr
, fprintf
, CPU_DUMP_CODE
);
1731 return EXCP_INTERRUPT
;
1734 /* FIXME: Should trigger a qmp message to let management know
1735 * something went wrong.
1740 void kvm_flush_coalesced_mmio_buffer(void)
1742 KVMState
*s
= kvm_state
;
1744 if (s
->coalesced_flush_in_progress
) {
1748 s
->coalesced_flush_in_progress
= true;
1750 if (s
->coalesced_mmio_ring
) {
1751 struct kvm_coalesced_mmio_ring
*ring
= s
->coalesced_mmio_ring
;
1752 while (ring
->first
!= ring
->last
) {
1753 struct kvm_coalesced_mmio
*ent
;
1755 ent
= &ring
->coalesced_mmio
[ring
->first
];
1757 cpu_physical_memory_write(ent
->phys_addr
, ent
->data
, ent
->len
);
1759 ring
->first
= (ring
->first
+ 1) % KVM_COALESCED_MMIO_MAX
;
1763 s
->coalesced_flush_in_progress
= false;
1766 static void do_kvm_cpu_synchronize_state(void *arg
)
1768 CPUState
*cpu
= arg
;
1770 if (!cpu
->kvm_vcpu_dirty
) {
1771 kvm_arch_get_registers(cpu
);
1772 cpu
->kvm_vcpu_dirty
= true;
1776 void kvm_cpu_synchronize_state(CPUState
*cpu
)
1778 if (!cpu
->kvm_vcpu_dirty
) {
1779 run_on_cpu(cpu
, do_kvm_cpu_synchronize_state
, cpu
);
1783 static void do_kvm_cpu_synchronize_post_reset(void *arg
)
1785 CPUState
*cpu
= arg
;
1787 kvm_arch_put_registers(cpu
, KVM_PUT_RESET_STATE
);
1788 cpu
->kvm_vcpu_dirty
= false;
1791 void kvm_cpu_synchronize_post_reset(CPUState
*cpu
)
1793 run_on_cpu(cpu
, do_kvm_cpu_synchronize_post_reset
, cpu
);
1796 static void do_kvm_cpu_synchronize_post_init(void *arg
)
1798 CPUState
*cpu
= arg
;
1800 kvm_arch_put_registers(cpu
, KVM_PUT_FULL_STATE
);
1801 cpu
->kvm_vcpu_dirty
= false;
1804 void kvm_cpu_synchronize_post_init(CPUState
*cpu
)
1806 run_on_cpu(cpu
, do_kvm_cpu_synchronize_post_init
, cpu
);
1809 int kvm_cpu_exec(CPUState
*cpu
)
1811 struct kvm_run
*run
= cpu
->kvm_run
;
1814 DPRINTF("kvm_cpu_exec()\n");
1816 if (kvm_arch_process_async_events(cpu
)) {
1817 cpu
->exit_request
= 0;
1821 qemu_mutex_unlock_iothread();
1826 if (cpu
->kvm_vcpu_dirty
) {
1827 kvm_arch_put_registers(cpu
, KVM_PUT_RUNTIME_STATE
);
1828 cpu
->kvm_vcpu_dirty
= false;
1831 kvm_arch_pre_run(cpu
, run
);
1832 if (cpu
->exit_request
) {
1833 DPRINTF("interrupt exit requested\n");
1835 * KVM requires us to reenter the kernel after IO exits to complete
1836 * instruction emulation. This self-signal will ensure that we
1839 qemu_cpu_kick_self();
1842 run_ret
= kvm_vcpu_ioctl(cpu
, KVM_RUN
, 0);
1844 attrs
= kvm_arch_post_run(cpu
, run
);
1847 if (run_ret
== -EINTR
|| run_ret
== -EAGAIN
) {
1848 DPRINTF("io window exit\n");
1849 ret
= EXCP_INTERRUPT
;
1852 fprintf(stderr
, "error: kvm run failed %s\n",
1853 strerror(-run_ret
));
1855 if (run_ret
== -EBUSY
) {
1857 "This is probably because your SMT is enabled.\n"
1858 "VCPU can only run on primary threads with all "
1859 "secondary threads offline.\n");
1866 trace_kvm_run_exit(cpu
->cpu_index
, run
->exit_reason
);
1867 switch (run
->exit_reason
) {
1869 DPRINTF("handle_io\n");
1870 /* Called outside BQL */
1871 kvm_handle_io(run
->io
.port
, attrs
,
1872 (uint8_t *)run
+ run
->io
.data_offset
,
1879 DPRINTF("handle_mmio\n");
1880 /* Called outside BQL */
1881 address_space_rw(&address_space_memory
,
1882 run
->mmio
.phys_addr
, attrs
,
1885 run
->mmio
.is_write
);
1888 case KVM_EXIT_IRQ_WINDOW_OPEN
:
1889 DPRINTF("irq_window_open\n");
1890 ret
= EXCP_INTERRUPT
;
1892 case KVM_EXIT_SHUTDOWN
:
1893 DPRINTF("shutdown\n");
1894 qemu_system_reset_request();
1895 ret
= EXCP_INTERRUPT
;
1897 case KVM_EXIT_UNKNOWN
:
1898 fprintf(stderr
, "KVM: unknown exit, hardware reason %" PRIx64
"\n",
1899 (uint64_t)run
->hw
.hardware_exit_reason
);
1902 case KVM_EXIT_INTERNAL_ERROR
:
1903 ret
= kvm_handle_internal_error(cpu
, run
);
1905 case KVM_EXIT_SYSTEM_EVENT
:
1906 switch (run
->system_event
.type
) {
1907 case KVM_SYSTEM_EVENT_SHUTDOWN
:
1908 qemu_system_shutdown_request();
1909 ret
= EXCP_INTERRUPT
;
1911 case KVM_SYSTEM_EVENT_RESET
:
1912 qemu_system_reset_request();
1913 ret
= EXCP_INTERRUPT
;
1915 case KVM_SYSTEM_EVENT_CRASH
:
1916 qemu_mutex_lock_iothread();
1917 qemu_system_guest_panicked();
1918 qemu_mutex_unlock_iothread();
1922 DPRINTF("kvm_arch_handle_exit\n");
1923 ret
= kvm_arch_handle_exit(cpu
, run
);
1928 DPRINTF("kvm_arch_handle_exit\n");
1929 ret
= kvm_arch_handle_exit(cpu
, run
);
1934 qemu_mutex_lock_iothread();
1937 cpu_dump_state(cpu
, stderr
, fprintf
, CPU_DUMP_CODE
);
1938 vm_stop(RUN_STATE_INTERNAL_ERROR
);
1941 cpu
->exit_request
= 0;
1945 int kvm_ioctl(KVMState
*s
, int type
, ...)
1952 arg
= va_arg(ap
, void *);
1955 trace_kvm_ioctl(type
, arg
);
1956 ret
= ioctl(s
->fd
, type
, arg
);
1963 int kvm_vm_ioctl(KVMState
*s
, int type
, ...)
1970 arg
= va_arg(ap
, void *);
1973 trace_kvm_vm_ioctl(type
, arg
);
1974 ret
= ioctl(s
->vmfd
, type
, arg
);
1981 int kvm_vcpu_ioctl(CPUState
*cpu
, int type
, ...)
1988 arg
= va_arg(ap
, void *);
1991 trace_kvm_vcpu_ioctl(cpu
->cpu_index
, type
, arg
);
1992 ret
= ioctl(cpu
->kvm_fd
, type
, arg
);
1999 int kvm_device_ioctl(int fd
, int type
, ...)
2006 arg
= va_arg(ap
, void *);
2009 trace_kvm_device_ioctl(fd
, type
, arg
);
2010 ret
= ioctl(fd
, type
, arg
);
2017 int kvm_vm_check_attr(KVMState
*s
, uint32_t group
, uint64_t attr
)
2020 struct kvm_device_attr attribute
= {
2025 if (!kvm_vm_attributes_allowed
) {
2029 ret
= kvm_vm_ioctl(s
, KVM_HAS_DEVICE_ATTR
, &attribute
);
2030 /* kvm returns 0 on success for HAS_DEVICE_ATTR */
2034 int kvm_device_check_attr(int dev_fd
, uint32_t group
, uint64_t attr
)
2036 struct kvm_device_attr attribute
= {
2042 return kvm_device_ioctl(dev_fd
, KVM_HAS_DEVICE_ATTR
, &attribute
) ? 0 : 1;
2045 void kvm_device_access(int fd
, int group
, uint64_t attr
,
2046 void *val
, bool write
)
2048 struct kvm_device_attr kvmattr
;
2052 kvmattr
.group
= group
;
2053 kvmattr
.attr
= attr
;
2054 kvmattr
.addr
= (uintptr_t)val
;
2056 err
= kvm_device_ioctl(fd
,
2057 write
? KVM_SET_DEVICE_ATTR
: KVM_GET_DEVICE_ATTR
,
2060 error_report("KVM_%s_DEVICE_ATTR failed: %s\n"
2061 "Group %d attr 0x%016" PRIx64
, write
? "SET" : "GET",
2062 strerror(-err
), group
, attr
);
2067 int kvm_has_sync_mmu(void)
2069 return kvm_check_extension(kvm_state
, KVM_CAP_SYNC_MMU
);
2072 int kvm_has_vcpu_events(void)
2074 return kvm_state
->vcpu_events
;
2077 int kvm_has_robust_singlestep(void)
2079 return kvm_state
->robust_singlestep
;
2082 int kvm_has_debugregs(void)
2084 return kvm_state
->debugregs
;
2087 int kvm_has_many_ioeventfds(void)
2089 if (!kvm_enabled()) {
2092 return kvm_state
->many_ioeventfds
;
2095 int kvm_has_gsi_routing(void)
2097 #ifdef KVM_CAP_IRQ_ROUTING
2098 return kvm_check_extension(kvm_state
, KVM_CAP_IRQ_ROUTING
);
2104 int kvm_has_intx_set_mask(void)
2106 return kvm_state
->intx_set_mask
;
2109 void kvm_setup_guest_memory(void *start
, size_t size
)
2111 if (!kvm_has_sync_mmu()) {
2112 int ret
= qemu_madvise(start
, size
, QEMU_MADV_DONTFORK
);
2115 perror("qemu_madvise");
2117 "Need MADV_DONTFORK in absence of synchronous KVM MMU\n");
2123 #ifdef KVM_CAP_SET_GUEST_DEBUG
2124 struct kvm_sw_breakpoint
*kvm_find_sw_breakpoint(CPUState
*cpu
,
2127 struct kvm_sw_breakpoint
*bp
;
2129 QTAILQ_FOREACH(bp
, &cpu
->kvm_state
->kvm_sw_breakpoints
, entry
) {
2137 int kvm_sw_breakpoints_active(CPUState
*cpu
)
2139 return !QTAILQ_EMPTY(&cpu
->kvm_state
->kvm_sw_breakpoints
);
2142 struct kvm_set_guest_debug_data
{
2143 struct kvm_guest_debug dbg
;
2148 static void kvm_invoke_set_guest_debug(void *data
)
2150 struct kvm_set_guest_debug_data
*dbg_data
= data
;
2152 dbg_data
->err
= kvm_vcpu_ioctl(dbg_data
->cpu
, KVM_SET_GUEST_DEBUG
,
2156 int kvm_update_guest_debug(CPUState
*cpu
, unsigned long reinject_trap
)
2158 struct kvm_set_guest_debug_data data
;
2160 data
.dbg
.control
= reinject_trap
;
2162 if (cpu
->singlestep_enabled
) {
2163 data
.dbg
.control
|= KVM_GUESTDBG_ENABLE
| KVM_GUESTDBG_SINGLESTEP
;
2165 kvm_arch_update_guest_debug(cpu
, &data
.dbg
);
2168 run_on_cpu(cpu
, kvm_invoke_set_guest_debug
, &data
);
2172 int kvm_insert_breakpoint(CPUState
*cpu
, target_ulong addr
,
2173 target_ulong len
, int type
)
2175 struct kvm_sw_breakpoint
*bp
;
2178 if (type
== GDB_BREAKPOINT_SW
) {
2179 bp
= kvm_find_sw_breakpoint(cpu
, addr
);
2185 bp
= g_malloc(sizeof(struct kvm_sw_breakpoint
));
2188 err
= kvm_arch_insert_sw_breakpoint(cpu
, bp
);
2194 QTAILQ_INSERT_HEAD(&cpu
->kvm_state
->kvm_sw_breakpoints
, bp
, entry
);
2196 err
= kvm_arch_insert_hw_breakpoint(addr
, len
, type
);
2203 err
= kvm_update_guest_debug(cpu
, 0);
2211 int kvm_remove_breakpoint(CPUState
*cpu
, target_ulong addr
,
2212 target_ulong len
, int type
)
2214 struct kvm_sw_breakpoint
*bp
;
2217 if (type
== GDB_BREAKPOINT_SW
) {
2218 bp
= kvm_find_sw_breakpoint(cpu
, addr
);
2223 if (bp
->use_count
> 1) {
2228 err
= kvm_arch_remove_sw_breakpoint(cpu
, bp
);
2233 QTAILQ_REMOVE(&cpu
->kvm_state
->kvm_sw_breakpoints
, bp
, entry
);
2236 err
= kvm_arch_remove_hw_breakpoint(addr
, len
, type
);
2243 err
= kvm_update_guest_debug(cpu
, 0);
2251 void kvm_remove_all_breakpoints(CPUState
*cpu
)
2253 struct kvm_sw_breakpoint
*bp
, *next
;
2254 KVMState
*s
= cpu
->kvm_state
;
2257 QTAILQ_FOREACH_SAFE(bp
, &s
->kvm_sw_breakpoints
, entry
, next
) {
2258 if (kvm_arch_remove_sw_breakpoint(cpu
, bp
) != 0) {
2259 /* Try harder to find a CPU that currently sees the breakpoint. */
2260 CPU_FOREACH(tmpcpu
) {
2261 if (kvm_arch_remove_sw_breakpoint(tmpcpu
, bp
) == 0) {
2266 QTAILQ_REMOVE(&s
->kvm_sw_breakpoints
, bp
, entry
);
2269 kvm_arch_remove_all_hw_breakpoints();
2272 kvm_update_guest_debug(cpu
, 0);
2276 #else /* !KVM_CAP_SET_GUEST_DEBUG */
2278 int kvm_update_guest_debug(CPUState
*cpu
, unsigned long reinject_trap
)
2283 int kvm_insert_breakpoint(CPUState
*cpu
, target_ulong addr
,
2284 target_ulong len
, int type
)
2289 int kvm_remove_breakpoint(CPUState
*cpu
, target_ulong addr
,
2290 target_ulong len
, int type
)
2295 void kvm_remove_all_breakpoints(CPUState
*cpu
)
2298 #endif /* !KVM_CAP_SET_GUEST_DEBUG */
2300 int kvm_set_signal_mask(CPUState
*cpu
, const sigset_t
*sigset
)
2302 KVMState
*s
= kvm_state
;
2303 struct kvm_signal_mask
*sigmask
;
2307 return kvm_vcpu_ioctl(cpu
, KVM_SET_SIGNAL_MASK
, NULL
);
2310 sigmask
= g_malloc(sizeof(*sigmask
) + sizeof(*sigset
));
2312 sigmask
->len
= s
->sigmask_len
;
2313 memcpy(sigmask
->sigset
, sigset
, sizeof(*sigset
));
2314 r
= kvm_vcpu_ioctl(cpu
, KVM_SET_SIGNAL_MASK
, sigmask
);
2319 int kvm_on_sigbus_vcpu(CPUState
*cpu
, int code
, void *addr
)
2321 return kvm_arch_on_sigbus_vcpu(cpu
, code
, addr
);
2324 int kvm_on_sigbus(int code
, void *addr
)
2326 return kvm_arch_on_sigbus(code
, addr
);
2329 int kvm_create_device(KVMState
*s
, uint64_t type
, bool test
)
2332 struct kvm_create_device create_dev
;
2334 create_dev
.type
= type
;
2336 create_dev
.flags
= test
? KVM_CREATE_DEVICE_TEST
: 0;
2338 if (!kvm_check_extension(s
, KVM_CAP_DEVICE_CTRL
)) {
2342 ret
= kvm_vm_ioctl(s
, KVM_CREATE_DEVICE
, &create_dev
);
2347 return test
? 0 : create_dev
.fd
;
2350 int kvm_set_one_reg(CPUState
*cs
, uint64_t id
, void *source
)
2352 struct kvm_one_reg reg
;
2356 reg
.addr
= (uintptr_t) source
;
2357 r
= kvm_vcpu_ioctl(cs
, KVM_SET_ONE_REG
, ®
);
2359 trace_kvm_failed_reg_set(id
, strerror(r
));
2364 int kvm_get_one_reg(CPUState
*cs
, uint64_t id
, void *target
)
2366 struct kvm_one_reg reg
;
2370 reg
.addr
= (uintptr_t) target
;
2371 r
= kvm_vcpu_ioctl(cs
, KVM_GET_ONE_REG
, ®
);
2373 trace_kvm_failed_reg_get(id
, strerror(r
));
2378 static void kvm_accel_class_init(ObjectClass
*oc
, void *data
)
2380 AccelClass
*ac
= ACCEL_CLASS(oc
);
2382 ac
->init_machine
= kvm_init
;
2383 ac
->allowed
= &kvm_allowed
;
2386 static const TypeInfo kvm_accel_type
= {
2387 .name
= TYPE_KVM_ACCEL
,
2388 .parent
= TYPE_ACCEL
,
2389 .class_init
= kvm_accel_class_init
,
2390 .instance_size
= sizeof(KVMState
),
2393 static void kvm_type_init(void)
2395 type_register_static(&kvm_accel_type
);
2398 type_init(kvm_type_init
);