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-barrier.h"
31 /* KVM uses PAGE_SIZE in it's definition of COALESCED_MMIO_MAX */
32 #define PAGE_SIZE TARGET_PAGE_SIZE
37 #define DPRINTF(fmt, ...) \
38 do { fprintf(stderr, fmt, ## __VA_ARGS__); } while (0)
40 #define DPRINTF(fmt, ...) \
44 typedef struct KVMSlot
46 target_phys_addr_t start_addr
;
47 ram_addr_t memory_size
;
48 ram_addr_t phys_offset
;
53 typedef struct kvm_dirty_log KVMDirtyLog
;
61 #ifdef KVM_CAP_COALESCED_MMIO
62 struct kvm_coalesced_mmio_ring
*coalesced_mmio_ring
;
64 int broken_set_mem_region
;
67 int robust_singlestep
;
69 #ifdef KVM_CAP_SET_GUEST_DEBUG
70 struct kvm_sw_breakpoint_head kvm_sw_breakpoints
;
72 int irqchip_in_kernel
;
77 static KVMState
*kvm_state
;
79 static KVMSlot
*kvm_alloc_slot(KVMState
*s
)
83 for (i
= 0; i
< ARRAY_SIZE(s
->slots
); i
++) {
84 /* KVM private memory slots */
87 if (s
->slots
[i
].memory_size
== 0)
91 fprintf(stderr
, "%s: no free slot available\n", __func__
);
95 static KVMSlot
*kvm_lookup_matching_slot(KVMState
*s
,
96 target_phys_addr_t start_addr
,
97 target_phys_addr_t end_addr
)
101 for (i
= 0; i
< ARRAY_SIZE(s
->slots
); i
++) {
102 KVMSlot
*mem
= &s
->slots
[i
];
104 if (start_addr
== mem
->start_addr
&&
105 end_addr
== mem
->start_addr
+ mem
->memory_size
) {
114 * Find overlapping slot with lowest start address
116 static KVMSlot
*kvm_lookup_overlapping_slot(KVMState
*s
,
117 target_phys_addr_t start_addr
,
118 target_phys_addr_t end_addr
)
120 KVMSlot
*found
= NULL
;
123 for (i
= 0; i
< ARRAY_SIZE(s
->slots
); i
++) {
124 KVMSlot
*mem
= &s
->slots
[i
];
126 if (mem
->memory_size
== 0 ||
127 (found
&& found
->start_addr
< mem
->start_addr
)) {
131 if (end_addr
> mem
->start_addr
&&
132 start_addr
< mem
->start_addr
+ mem
->memory_size
) {
140 static int kvm_set_user_memory_region(KVMState
*s
, KVMSlot
*slot
)
142 struct kvm_userspace_memory_region mem
;
144 mem
.slot
= slot
->slot
;
145 mem
.guest_phys_addr
= slot
->start_addr
;
146 mem
.memory_size
= slot
->memory_size
;
147 mem
.userspace_addr
= (unsigned long)qemu_get_ram_ptr(slot
->phys_offset
);
148 mem
.flags
= slot
->flags
;
149 if (s
->migration_log
) {
150 mem
.flags
|= KVM_MEM_LOG_DIRTY_PAGES
;
152 return kvm_vm_ioctl(s
, KVM_SET_USER_MEMORY_REGION
, &mem
);
155 static void kvm_reset_vcpu(void *opaque
)
157 CPUState
*env
= opaque
;
159 kvm_arch_reset_vcpu(env
);
162 int kvm_irqchip_in_kernel(void)
164 return kvm_state
->irqchip_in_kernel
;
167 int kvm_pit_in_kernel(void)
169 return kvm_state
->pit_in_kernel
;
173 int kvm_init_vcpu(CPUState
*env
)
175 KVMState
*s
= kvm_state
;
179 DPRINTF("kvm_init_vcpu\n");
181 ret
= kvm_vm_ioctl(s
, KVM_CREATE_VCPU
, env
->cpu_index
);
183 DPRINTF("kvm_create_vcpu failed\n");
190 mmap_size
= kvm_ioctl(s
, KVM_GET_VCPU_MMAP_SIZE
, 0);
192 DPRINTF("KVM_GET_VCPU_MMAP_SIZE failed\n");
196 env
->kvm_run
= mmap(NULL
, mmap_size
, PROT_READ
| PROT_WRITE
, MAP_SHARED
,
198 if (env
->kvm_run
== MAP_FAILED
) {
200 DPRINTF("mmap'ing vcpu state failed\n");
204 #ifdef KVM_CAP_COALESCED_MMIO
205 if (s
->coalesced_mmio
&& !s
->coalesced_mmio_ring
)
206 s
->coalesced_mmio_ring
= (void *) env
->kvm_run
+
207 s
->coalesced_mmio
* PAGE_SIZE
;
210 ret
= kvm_arch_init_vcpu(env
);
212 qemu_register_reset(kvm_reset_vcpu
, env
);
213 kvm_arch_reset_vcpu(env
);
220 * dirty pages logging control
222 static int kvm_dirty_pages_log_change(target_phys_addr_t phys_addr
,
223 ram_addr_t size
, int flags
, int mask
)
225 KVMState
*s
= kvm_state
;
226 KVMSlot
*mem
= kvm_lookup_matching_slot(s
, phys_addr
, phys_addr
+ size
);
230 fprintf(stderr
, "BUG: %s: invalid parameters " TARGET_FMT_plx
"-"
231 TARGET_FMT_plx
"\n", __func__
, phys_addr
,
232 (target_phys_addr_t
)(phys_addr
+ size
- 1));
236 old_flags
= mem
->flags
;
238 flags
= (mem
->flags
& ~mask
) | flags
;
241 /* If nothing changed effectively, no need to issue ioctl */
242 if (s
->migration_log
) {
243 flags
|= KVM_MEM_LOG_DIRTY_PAGES
;
245 if (flags
== old_flags
) {
249 return kvm_set_user_memory_region(s
, mem
);
252 int kvm_log_start(target_phys_addr_t phys_addr
, ram_addr_t size
)
254 return kvm_dirty_pages_log_change(phys_addr
, size
,
255 KVM_MEM_LOG_DIRTY_PAGES
,
256 KVM_MEM_LOG_DIRTY_PAGES
);
259 int kvm_log_stop(target_phys_addr_t phys_addr
, ram_addr_t size
)
261 return kvm_dirty_pages_log_change(phys_addr
, size
,
263 KVM_MEM_LOG_DIRTY_PAGES
);
266 static int kvm_set_migration_log(int enable
)
268 KVMState
*s
= kvm_state
;
272 s
->migration_log
= enable
;
274 for (i
= 0; i
< ARRAY_SIZE(s
->slots
); i
++) {
277 if (!!(mem
->flags
& KVM_MEM_LOG_DIRTY_PAGES
) == enable
) {
280 err
= kvm_set_user_memory_region(s
, mem
);
288 /* get kvm's dirty pages bitmap and update qemu's */
289 static int kvm_get_dirty_pages_log_range(unsigned long start_addr
,
290 unsigned long *bitmap
,
291 unsigned long offset
,
292 unsigned long mem_size
)
295 unsigned long page_number
, addr
, addr1
, c
;
297 unsigned int len
= ((mem_size
/ TARGET_PAGE_SIZE
) + HOST_LONG_BITS
- 1) /
301 * bitmap-traveling is faster than memory-traveling (for addr...)
302 * especially when most of the memory is not dirty.
304 for (i
= 0; i
< len
; i
++) {
305 if (bitmap
[i
] != 0) {
306 c
= leul_to_cpu(bitmap
[i
]);
310 page_number
= i
* HOST_LONG_BITS
+ j
;
311 addr1
= page_number
* TARGET_PAGE_SIZE
;
312 addr
= offset
+ addr1
;
313 ram_addr
= cpu_get_physical_page_desc(addr
);
314 cpu_physical_memory_set_dirty(ram_addr
);
321 #define ALIGN(x, y) (((x)+(y)-1) & ~((y)-1))
324 * kvm_physical_sync_dirty_bitmap - Grab dirty bitmap from kernel space
325 * This function updates qemu's dirty bitmap using cpu_physical_memory_set_dirty().
326 * This means all bits are set to dirty.
328 * @start_add: start of logged region.
329 * @end_addr: end of logged region.
331 static int kvm_physical_sync_dirty_bitmap(target_phys_addr_t start_addr
,
332 target_phys_addr_t end_addr
)
334 KVMState
*s
= kvm_state
;
335 unsigned long size
, allocated_size
= 0;
340 d
.dirty_bitmap
= NULL
;
341 while (start_addr
< end_addr
) {
342 mem
= kvm_lookup_overlapping_slot(s
, start_addr
, end_addr
);
347 size
= ALIGN(((mem
->memory_size
) >> TARGET_PAGE_BITS
), HOST_LONG_BITS
) / 8;
348 if (!d
.dirty_bitmap
) {
349 d
.dirty_bitmap
= qemu_malloc(size
);
350 } else if (size
> allocated_size
) {
351 d
.dirty_bitmap
= qemu_realloc(d
.dirty_bitmap
, size
);
353 allocated_size
= size
;
354 memset(d
.dirty_bitmap
, 0, allocated_size
);
358 if (kvm_vm_ioctl(s
, KVM_GET_DIRTY_LOG
, &d
) == -1) {
359 DPRINTF("ioctl failed %d\n", errno
);
364 kvm_get_dirty_pages_log_range(mem
->start_addr
, d
.dirty_bitmap
,
365 mem
->start_addr
, mem
->memory_size
);
366 start_addr
= mem
->start_addr
+ mem
->memory_size
;
368 qemu_free(d
.dirty_bitmap
);
373 int kvm_coalesce_mmio_region(target_phys_addr_t start
, ram_addr_t size
)
376 #ifdef KVM_CAP_COALESCED_MMIO
377 KVMState
*s
= kvm_state
;
379 if (s
->coalesced_mmio
) {
380 struct kvm_coalesced_mmio_zone zone
;
385 ret
= kvm_vm_ioctl(s
, KVM_REGISTER_COALESCED_MMIO
, &zone
);
392 int kvm_uncoalesce_mmio_region(target_phys_addr_t start
, ram_addr_t size
)
395 #ifdef KVM_CAP_COALESCED_MMIO
396 KVMState
*s
= kvm_state
;
398 if (s
->coalesced_mmio
) {
399 struct kvm_coalesced_mmio_zone zone
;
404 ret
= kvm_vm_ioctl(s
, KVM_UNREGISTER_COALESCED_MMIO
, &zone
);
411 int kvm_check_extension(KVMState
*s
, unsigned int extension
)
415 ret
= kvm_ioctl(s
, KVM_CHECK_EXTENSION
, extension
);
423 static void kvm_set_phys_mem(target_phys_addr_t start_addr
,
425 ram_addr_t phys_offset
)
427 KVMState
*s
= kvm_state
;
428 ram_addr_t flags
= phys_offset
& ~TARGET_PAGE_MASK
;
432 if (start_addr
& ~TARGET_PAGE_MASK
) {
433 if (flags
>= IO_MEM_UNASSIGNED
) {
434 if (!kvm_lookup_overlapping_slot(s
, start_addr
,
435 start_addr
+ size
)) {
438 fprintf(stderr
, "Unaligned split of a KVM memory slot\n");
440 fprintf(stderr
, "Only page-aligned memory slots supported\n");
445 /* KVM does not support read-only slots */
446 phys_offset
&= ~IO_MEM_ROM
;
449 mem
= kvm_lookup_overlapping_slot(s
, start_addr
, start_addr
+ size
);
454 if (flags
< IO_MEM_UNASSIGNED
&& start_addr
>= mem
->start_addr
&&
455 (start_addr
+ size
<= mem
->start_addr
+ mem
->memory_size
) &&
456 (phys_offset
- start_addr
== mem
->phys_offset
- mem
->start_addr
)) {
457 /* The new slot fits into the existing one and comes with
458 * identical parameters - nothing to be done. */
464 /* unregister the overlapping slot */
465 mem
->memory_size
= 0;
466 err
= kvm_set_user_memory_region(s
, mem
);
468 fprintf(stderr
, "%s: error unregistering overlapping slot: %s\n",
469 __func__
, strerror(-err
));
473 /* Workaround for older KVM versions: we can't join slots, even not by
474 * unregistering the previous ones and then registering the larger
475 * slot. We have to maintain the existing fragmentation. Sigh.
477 * This workaround assumes that the new slot starts at the same
478 * address as the first existing one. If not or if some overlapping
479 * slot comes around later, we will fail (not seen in practice so far)
480 * - and actually require a recent KVM version. */
481 if (s
->broken_set_mem_region
&&
482 old
.start_addr
== start_addr
&& old
.memory_size
< size
&&
483 flags
< IO_MEM_UNASSIGNED
) {
484 mem
= kvm_alloc_slot(s
);
485 mem
->memory_size
= old
.memory_size
;
486 mem
->start_addr
= old
.start_addr
;
487 mem
->phys_offset
= old
.phys_offset
;
490 err
= kvm_set_user_memory_region(s
, mem
);
492 fprintf(stderr
, "%s: error updating slot: %s\n", __func__
,
497 start_addr
+= old
.memory_size
;
498 phys_offset
+= old
.memory_size
;
499 size
-= old
.memory_size
;
503 /* register prefix slot */
504 if (old
.start_addr
< start_addr
) {
505 mem
= kvm_alloc_slot(s
);
506 mem
->memory_size
= start_addr
- old
.start_addr
;
507 mem
->start_addr
= old
.start_addr
;
508 mem
->phys_offset
= old
.phys_offset
;
511 err
= kvm_set_user_memory_region(s
, mem
);
513 fprintf(stderr
, "%s: error registering prefix slot: %s\n",
514 __func__
, strerror(-err
));
519 /* register suffix slot */
520 if (old
.start_addr
+ old
.memory_size
> start_addr
+ size
) {
521 ram_addr_t size_delta
;
523 mem
= kvm_alloc_slot(s
);
524 mem
->start_addr
= start_addr
+ size
;
525 size_delta
= mem
->start_addr
- old
.start_addr
;
526 mem
->memory_size
= old
.memory_size
- size_delta
;
527 mem
->phys_offset
= old
.phys_offset
+ size_delta
;
530 err
= kvm_set_user_memory_region(s
, mem
);
532 fprintf(stderr
, "%s: error registering suffix slot: %s\n",
533 __func__
, strerror(-err
));
539 /* in case the KVM bug workaround already "consumed" the new slot */
543 /* KVM does not need to know about this memory */
544 if (flags
>= IO_MEM_UNASSIGNED
)
547 mem
= kvm_alloc_slot(s
);
548 mem
->memory_size
= size
;
549 mem
->start_addr
= start_addr
;
550 mem
->phys_offset
= phys_offset
;
553 err
= kvm_set_user_memory_region(s
, mem
);
555 fprintf(stderr
, "%s: error registering slot: %s\n", __func__
,
561 static void kvm_client_set_memory(struct CPUPhysMemoryClient
*client
,
562 target_phys_addr_t start_addr
,
564 ram_addr_t phys_offset
)
566 kvm_set_phys_mem(start_addr
, size
, phys_offset
);
569 static int kvm_client_sync_dirty_bitmap(struct CPUPhysMemoryClient
*client
,
570 target_phys_addr_t start_addr
,
571 target_phys_addr_t end_addr
)
573 return kvm_physical_sync_dirty_bitmap(start_addr
, end_addr
);
576 static int kvm_client_migration_log(struct CPUPhysMemoryClient
*client
,
579 return kvm_set_migration_log(enable
);
582 static CPUPhysMemoryClient kvm_cpu_phys_memory_client
= {
583 .set_memory
= kvm_client_set_memory
,
584 .sync_dirty_bitmap
= kvm_client_sync_dirty_bitmap
,
585 .migration_log
= kvm_client_migration_log
,
588 int kvm_init(int smp_cpus
)
590 static const char upgrade_note
[] =
591 "Please upgrade to at least kernel 2.6.29 or recent kvm-kmod\n"
592 "(see http://sourceforge.net/projects/kvm).\n";
597 s
= qemu_mallocz(sizeof(KVMState
));
599 #ifdef KVM_CAP_SET_GUEST_DEBUG
600 QTAILQ_INIT(&s
->kvm_sw_breakpoints
);
602 for (i
= 0; i
< ARRAY_SIZE(s
->slots
); i
++)
603 s
->slots
[i
].slot
= i
;
606 s
->fd
= qemu_open("/dev/kvm", O_RDWR
);
608 fprintf(stderr
, "Could not access KVM kernel module: %m\n");
613 ret
= kvm_ioctl(s
, KVM_GET_API_VERSION
, 0);
614 if (ret
< KVM_API_VERSION
) {
617 fprintf(stderr
, "kvm version too old\n");
621 if (ret
> KVM_API_VERSION
) {
623 fprintf(stderr
, "kvm version not supported\n");
627 s
->vmfd
= kvm_ioctl(s
, KVM_CREATE_VM
, 0);
630 fprintf(stderr
, "Please add the 'switch_amode' kernel parameter to "
631 "your host kernel command line\n");
636 /* initially, KVM allocated its own memory and we had to jump through
637 * hooks to make phys_ram_base point to this. Modern versions of KVM
638 * just use a user allocated buffer so we can use regular pages
639 * unmodified. Make sure we have a sufficiently modern version of KVM.
641 if (!kvm_check_extension(s
, KVM_CAP_USER_MEMORY
)) {
643 fprintf(stderr
, "kvm does not support KVM_CAP_USER_MEMORY\n%s",
648 /* There was a nasty bug in < kvm-80 that prevents memory slots from being
649 * destroyed properly. Since we rely on this capability, refuse to work
650 * with any kernel without this capability. */
651 if (!kvm_check_extension(s
, KVM_CAP_DESTROY_MEMORY_REGION_WORKS
)) {
655 "KVM kernel module broken (DESTROY_MEMORY_REGION).\n%s",
660 s
->coalesced_mmio
= 0;
661 #ifdef KVM_CAP_COALESCED_MMIO
662 s
->coalesced_mmio
= kvm_check_extension(s
, KVM_CAP_COALESCED_MMIO
);
663 s
->coalesced_mmio_ring
= NULL
;
666 s
->broken_set_mem_region
= 1;
667 #ifdef KVM_CAP_JOIN_MEMORY_REGIONS_WORKS
668 ret
= kvm_ioctl(s
, KVM_CHECK_EXTENSION
, KVM_CAP_JOIN_MEMORY_REGIONS_WORKS
);
670 s
->broken_set_mem_region
= 0;
675 #ifdef KVM_CAP_VCPU_EVENTS
676 s
->vcpu_events
= kvm_check_extension(s
, KVM_CAP_VCPU_EVENTS
);
679 s
->robust_singlestep
= 0;
680 #ifdef KVM_CAP_X86_ROBUST_SINGLESTEP
681 s
->robust_singlestep
=
682 kvm_check_extension(s
, KVM_CAP_X86_ROBUST_SINGLESTEP
);
686 #ifdef KVM_CAP_DEBUGREGS
687 s
->debugregs
= kvm_check_extension(s
, KVM_CAP_DEBUGREGS
);
692 s
->xsave
= kvm_check_extension(s
, KVM_CAP_XSAVE
);
697 s
->xcrs
= kvm_check_extension(s
, KVM_CAP_XCRS
);
700 ret
= kvm_arch_init(s
, smp_cpus
);
705 cpu_register_phys_memory_client(&kvm_cpu_phys_memory_client
);
721 static int kvm_handle_io(uint16_t port
, void *data
, int direction
, int size
,
727 for (i
= 0; i
< count
; i
++) {
728 if (direction
== KVM_EXIT_IO_IN
) {
731 stb_p(ptr
, cpu_inb(port
));
734 stw_p(ptr
, cpu_inw(port
));
737 stl_p(ptr
, cpu_inl(port
));
743 cpu_outb(port
, ldub_p(ptr
));
746 cpu_outw(port
, lduw_p(ptr
));
749 cpu_outl(port
, ldl_p(ptr
));
760 #ifdef KVM_CAP_INTERNAL_ERROR_DATA
761 static void kvm_handle_internal_error(CPUState
*env
, struct kvm_run
*run
)
764 if (kvm_check_extension(kvm_state
, KVM_CAP_INTERNAL_ERROR_DATA
)) {
767 fprintf(stderr
, "KVM internal error. Suberror: %d\n",
768 run
->internal
.suberror
);
770 for (i
= 0; i
< run
->internal
.ndata
; ++i
) {
771 fprintf(stderr
, "extra data[%d]: %"PRIx64
"\n",
772 i
, (uint64_t)run
->internal
.data
[i
]);
775 cpu_dump_state(env
, stderr
, fprintf
, 0);
776 if (run
->internal
.suberror
== KVM_INTERNAL_ERROR_EMULATION
) {
777 fprintf(stderr
, "emulation failure\n");
778 if (!kvm_arch_stop_on_emulation_error(env
))
781 /* FIXME: Should trigger a qmp message to let management know
782 * something went wrong.
788 void kvm_flush_coalesced_mmio_buffer(void)
790 #ifdef KVM_CAP_COALESCED_MMIO
791 KVMState
*s
= kvm_state
;
792 if (s
->coalesced_mmio_ring
) {
793 struct kvm_coalesced_mmio_ring
*ring
= s
->coalesced_mmio_ring
;
794 while (ring
->first
!= ring
->last
) {
795 struct kvm_coalesced_mmio
*ent
;
797 ent
= &ring
->coalesced_mmio
[ring
->first
];
799 cpu_physical_memory_write(ent
->phys_addr
, ent
->data
, ent
->len
);
801 ring
->first
= (ring
->first
+ 1) % KVM_COALESCED_MMIO_MAX
;
807 static void do_kvm_cpu_synchronize_state(void *_env
)
809 CPUState
*env
= _env
;
811 if (!env
->kvm_vcpu_dirty
) {
812 kvm_arch_get_registers(env
);
813 env
->kvm_vcpu_dirty
= 1;
817 void kvm_cpu_synchronize_state(CPUState
*env
)
819 if (!env
->kvm_vcpu_dirty
)
820 run_on_cpu(env
, do_kvm_cpu_synchronize_state
, env
);
823 void kvm_cpu_synchronize_post_reset(CPUState
*env
)
825 kvm_arch_put_registers(env
, KVM_PUT_RESET_STATE
);
826 env
->kvm_vcpu_dirty
= 0;
829 void kvm_cpu_synchronize_post_init(CPUState
*env
)
831 kvm_arch_put_registers(env
, KVM_PUT_FULL_STATE
);
832 env
->kvm_vcpu_dirty
= 0;
835 int kvm_cpu_exec(CPUState
*env
)
837 struct kvm_run
*run
= env
->kvm_run
;
840 DPRINTF("kvm_cpu_exec()\n");
843 #ifndef CONFIG_IOTHREAD
844 if (env
->exit_request
) {
845 DPRINTF("interrupt exit requested\n");
851 if (kvm_arch_process_irqchip_events(env
)) {
856 if (env
->kvm_vcpu_dirty
) {
857 kvm_arch_put_registers(env
, KVM_PUT_RUNTIME_STATE
);
858 env
->kvm_vcpu_dirty
= 0;
861 kvm_arch_pre_run(env
, run
);
862 cpu_single_env
= NULL
;
863 qemu_mutex_unlock_iothread();
864 ret
= kvm_vcpu_ioctl(env
, KVM_RUN
, 0);
865 qemu_mutex_lock_iothread();
866 cpu_single_env
= env
;
867 kvm_arch_post_run(env
, run
);
869 if (ret
== -EINTR
|| ret
== -EAGAIN
) {
871 DPRINTF("io window exit\n");
877 DPRINTF("kvm run failed %s\n", strerror(-ret
));
881 kvm_flush_coalesced_mmio_buffer();
883 ret
= 0; /* exit loop */
884 switch (run
->exit_reason
) {
886 DPRINTF("handle_io\n");
887 ret
= kvm_handle_io(run
->io
.port
,
888 (uint8_t *)run
+ run
->io
.data_offset
,
894 DPRINTF("handle_mmio\n");
895 cpu_physical_memory_rw(run
->mmio
.phys_addr
,
901 case KVM_EXIT_IRQ_WINDOW_OPEN
:
902 DPRINTF("irq_window_open\n");
904 case KVM_EXIT_SHUTDOWN
:
905 DPRINTF("shutdown\n");
906 qemu_system_reset_request();
909 case KVM_EXIT_UNKNOWN
:
910 DPRINTF("kvm_exit_unknown\n");
912 case KVM_EXIT_FAIL_ENTRY
:
913 DPRINTF("kvm_exit_fail_entry\n");
915 case KVM_EXIT_EXCEPTION
:
916 DPRINTF("kvm_exit_exception\n");
918 #ifdef KVM_CAP_INTERNAL_ERROR_DATA
919 case KVM_EXIT_INTERNAL_ERROR
:
920 kvm_handle_internal_error(env
, run
);
924 DPRINTF("kvm_exit_debug\n");
925 #ifdef KVM_CAP_SET_GUEST_DEBUG
926 if (kvm_arch_debug(&run
->debug
.arch
)) {
927 env
->exception_index
= EXCP_DEBUG
;
930 /* re-enter, this exception was guest-internal */
932 #endif /* KVM_CAP_SET_GUEST_DEBUG */
935 DPRINTF("kvm_arch_handle_exit\n");
936 ret
= kvm_arch_handle_exit(env
, run
);
941 if (env
->exit_request
) {
942 env
->exit_request
= 0;
943 env
->exception_index
= EXCP_INTERRUPT
;
949 int kvm_ioctl(KVMState
*s
, int type
, ...)
956 arg
= va_arg(ap
, void *);
959 ret
= ioctl(s
->fd
, type
, arg
);
966 int kvm_vm_ioctl(KVMState
*s
, int type
, ...)
973 arg
= va_arg(ap
, void *);
976 ret
= ioctl(s
->vmfd
, type
, arg
);
983 int kvm_vcpu_ioctl(CPUState
*env
, int type
, ...)
990 arg
= va_arg(ap
, void *);
993 ret
= ioctl(env
->kvm_fd
, type
, arg
);
1000 int kvm_has_sync_mmu(void)
1002 #ifdef KVM_CAP_SYNC_MMU
1003 KVMState
*s
= kvm_state
;
1005 return kvm_check_extension(s
, KVM_CAP_SYNC_MMU
);
1011 int kvm_has_vcpu_events(void)
1013 return kvm_state
->vcpu_events
;
1016 int kvm_has_robust_singlestep(void)
1018 return kvm_state
->robust_singlestep
;
1021 int kvm_has_debugregs(void)
1023 return kvm_state
->debugregs
;
1026 int kvm_has_xsave(void)
1028 return kvm_state
->xsave
;
1031 int kvm_has_xcrs(void)
1033 return kvm_state
->xcrs
;
1036 void kvm_setup_guest_memory(void *start
, size_t size
)
1038 if (!kvm_has_sync_mmu()) {
1039 #ifdef MADV_DONTFORK
1040 int ret
= madvise(start
, size
, MADV_DONTFORK
);
1048 "Need MADV_DONTFORK in absence of synchronous KVM MMU\n");
1054 #ifdef KVM_CAP_SET_GUEST_DEBUG
1055 struct kvm_sw_breakpoint
*kvm_find_sw_breakpoint(CPUState
*env
,
1058 struct kvm_sw_breakpoint
*bp
;
1060 QTAILQ_FOREACH(bp
, &env
->kvm_state
->kvm_sw_breakpoints
, entry
) {
1067 int kvm_sw_breakpoints_active(CPUState
*env
)
1069 return !QTAILQ_EMPTY(&env
->kvm_state
->kvm_sw_breakpoints
);
1072 struct kvm_set_guest_debug_data
{
1073 struct kvm_guest_debug dbg
;
1078 static void kvm_invoke_set_guest_debug(void *data
)
1080 struct kvm_set_guest_debug_data
*dbg_data
= data
;
1081 CPUState
*env
= dbg_data
->env
;
1083 dbg_data
->err
= kvm_vcpu_ioctl(env
, KVM_SET_GUEST_DEBUG
, &dbg_data
->dbg
);
1086 int kvm_update_guest_debug(CPUState
*env
, unsigned long reinject_trap
)
1088 struct kvm_set_guest_debug_data data
;
1090 data
.dbg
.control
= reinject_trap
;
1092 if (env
->singlestep_enabled
) {
1093 data
.dbg
.control
|= KVM_GUESTDBG_ENABLE
| KVM_GUESTDBG_SINGLESTEP
;
1095 kvm_arch_update_guest_debug(env
, &data
.dbg
);
1098 run_on_cpu(env
, kvm_invoke_set_guest_debug
, &data
);
1102 int kvm_insert_breakpoint(CPUState
*current_env
, target_ulong addr
,
1103 target_ulong len
, int type
)
1105 struct kvm_sw_breakpoint
*bp
;
1109 if (type
== GDB_BREAKPOINT_SW
) {
1110 bp
= kvm_find_sw_breakpoint(current_env
, addr
);
1116 bp
= qemu_malloc(sizeof(struct kvm_sw_breakpoint
));
1122 err
= kvm_arch_insert_sw_breakpoint(current_env
, bp
);
1128 QTAILQ_INSERT_HEAD(¤t_env
->kvm_state
->kvm_sw_breakpoints
,
1131 err
= kvm_arch_insert_hw_breakpoint(addr
, len
, type
);
1136 for (env
= first_cpu
; env
!= NULL
; env
= env
->next_cpu
) {
1137 err
= kvm_update_guest_debug(env
, 0);
1144 int kvm_remove_breakpoint(CPUState
*current_env
, target_ulong addr
,
1145 target_ulong len
, int type
)
1147 struct kvm_sw_breakpoint
*bp
;
1151 if (type
== GDB_BREAKPOINT_SW
) {
1152 bp
= kvm_find_sw_breakpoint(current_env
, addr
);
1156 if (bp
->use_count
> 1) {
1161 err
= kvm_arch_remove_sw_breakpoint(current_env
, bp
);
1165 QTAILQ_REMOVE(¤t_env
->kvm_state
->kvm_sw_breakpoints
, bp
, entry
);
1168 err
= kvm_arch_remove_hw_breakpoint(addr
, len
, type
);
1173 for (env
= first_cpu
; env
!= NULL
; env
= env
->next_cpu
) {
1174 err
= kvm_update_guest_debug(env
, 0);
1181 void kvm_remove_all_breakpoints(CPUState
*current_env
)
1183 struct kvm_sw_breakpoint
*bp
, *next
;
1184 KVMState
*s
= current_env
->kvm_state
;
1187 QTAILQ_FOREACH_SAFE(bp
, &s
->kvm_sw_breakpoints
, entry
, next
) {
1188 if (kvm_arch_remove_sw_breakpoint(current_env
, bp
) != 0) {
1189 /* Try harder to find a CPU that currently sees the breakpoint. */
1190 for (env
= first_cpu
; env
!= NULL
; env
= env
->next_cpu
) {
1191 if (kvm_arch_remove_sw_breakpoint(env
, bp
) == 0)
1196 kvm_arch_remove_all_hw_breakpoints();
1198 for (env
= first_cpu
; env
!= NULL
; env
= env
->next_cpu
)
1199 kvm_update_guest_debug(env
, 0);
1202 #else /* !KVM_CAP_SET_GUEST_DEBUG */
1204 int kvm_update_guest_debug(CPUState
*env
, unsigned long reinject_trap
)
1209 int kvm_insert_breakpoint(CPUState
*current_env
, target_ulong addr
,
1210 target_ulong len
, int type
)
1215 int kvm_remove_breakpoint(CPUState
*current_env
, target_ulong addr
,
1216 target_ulong len
, int type
)
1221 void kvm_remove_all_breakpoints(CPUState
*current_env
)
1224 #endif /* !KVM_CAP_SET_GUEST_DEBUG */
1226 int kvm_set_signal_mask(CPUState
*env
, const sigset_t
*sigset
)
1228 struct kvm_signal_mask
*sigmask
;
1232 return kvm_vcpu_ioctl(env
, KVM_SET_SIGNAL_MASK
, NULL
);
1234 sigmask
= qemu_malloc(sizeof(*sigmask
) + sizeof(*sigset
));
1237 memcpy(sigmask
->sigset
, sigset
, sizeof(*sigset
));
1238 r
= kvm_vcpu_ioctl(env
, KVM_SET_SIGNAL_MASK
, sigmask
);
1244 int kvm_set_ioeventfd_pio_word(int fd
, uint16_t addr
, uint16_t val
, bool assign
)
1246 #ifdef KVM_IOEVENTFD
1247 struct kvm_ioeventfd kick
= {
1251 .flags
= KVM_IOEVENTFD_FLAG_DATAMATCH
| KVM_IOEVENTFD_FLAG_PIO
,
1258 kick
.flags
|= KVM_IOEVENTFD_FLAG_DEASSIGN
;
1259 r
= kvm_vm_ioctl(kvm_state
, KVM_IOEVENTFD
, &kick
);