Avoid a gcc 3 format warning
[qemu/hppa.git] / kvm-all.c
blobb24d8766f46f1069ce79dac2ea991669ddbd64a3
1 /*
2 * QEMU KVM support
4 * Copyright IBM, Corp. 2008
5 * Red Hat, Inc. 2008
7 * Authors:
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>
18 #include <sys/mman.h>
19 #include <stdarg.h>
21 #include <linux/kvm.h>
23 #include "qemu-common.h"
24 #include "sysemu.h"
25 #include "hw/hw.h"
26 #include "gdbstub.h"
27 #include "kvm.h"
29 /* KVM uses PAGE_SIZE in it's definition of COALESCED_MMIO_MAX */
30 #define PAGE_SIZE TARGET_PAGE_SIZE
32 //#define DEBUG_KVM
34 #ifdef DEBUG_KVM
35 #define dprintf(fmt, ...) \
36 do { fprintf(stderr, fmt, ## __VA_ARGS__); } while (0)
37 #else
38 #define dprintf(fmt, ...) \
39 do { } while (0)
40 #endif
42 typedef struct KVMSlot
44 target_phys_addr_t start_addr;
45 ram_addr_t memory_size;
46 ram_addr_t phys_offset;
47 int slot;
48 int flags;
49 } KVMSlot;
51 typedef struct kvm_dirty_log KVMDirtyLog;
53 int kvm_allowed = 0;
55 struct KVMState
57 KVMSlot slots[32];
58 int fd;
59 int vmfd;
60 int coalesced_mmio;
61 int broken_set_mem_region;
62 int migration_log;
63 #ifdef KVM_CAP_SET_GUEST_DEBUG
64 struct kvm_sw_breakpoint_head kvm_sw_breakpoints;
65 #endif
68 static KVMState *kvm_state;
70 static KVMSlot *kvm_alloc_slot(KVMState *s)
72 int i;
74 for (i = 0; i < ARRAY_SIZE(s->slots); i++) {
75 /* KVM private memory slots */
76 if (i >= 8 && i < 12)
77 continue;
78 if (s->slots[i].memory_size == 0)
79 return &s->slots[i];
82 fprintf(stderr, "%s: no free slot available\n", __func__);
83 abort();
86 static KVMSlot *kvm_lookup_matching_slot(KVMState *s,
87 target_phys_addr_t start_addr,
88 target_phys_addr_t end_addr)
90 int i;
92 for (i = 0; i < ARRAY_SIZE(s->slots); i++) {
93 KVMSlot *mem = &s->slots[i];
95 if (start_addr == mem->start_addr &&
96 end_addr == mem->start_addr + mem->memory_size) {
97 return mem;
101 return NULL;
105 * Find overlapping slot with lowest start address
107 static KVMSlot *kvm_lookup_overlapping_slot(KVMState *s,
108 target_phys_addr_t start_addr,
109 target_phys_addr_t end_addr)
111 KVMSlot *found = NULL;
112 int i;
114 for (i = 0; i < ARRAY_SIZE(s->slots); i++) {
115 KVMSlot *mem = &s->slots[i];
117 if (mem->memory_size == 0 ||
118 (found && found->start_addr < mem->start_addr)) {
119 continue;
122 if (end_addr > mem->start_addr &&
123 start_addr < mem->start_addr + mem->memory_size) {
124 found = mem;
128 return found;
131 static int kvm_set_user_memory_region(KVMState *s, KVMSlot *slot)
133 struct kvm_userspace_memory_region mem;
135 mem.slot = slot->slot;
136 mem.guest_phys_addr = slot->start_addr;
137 mem.memory_size = slot->memory_size;
138 mem.userspace_addr = (unsigned long)qemu_get_ram_ptr(slot->phys_offset);
139 mem.flags = slot->flags;
140 if (s->migration_log) {
141 mem.flags |= KVM_MEM_LOG_DIRTY_PAGES;
143 return kvm_vm_ioctl(s, KVM_SET_USER_MEMORY_REGION, &mem);
147 int kvm_init_vcpu(CPUState *env)
149 KVMState *s = kvm_state;
150 long mmap_size;
151 int ret;
153 dprintf("kvm_init_vcpu\n");
155 ret = kvm_vm_ioctl(s, KVM_CREATE_VCPU, env->cpu_index);
156 if (ret < 0) {
157 dprintf("kvm_create_vcpu failed\n");
158 goto err;
161 env->kvm_fd = ret;
162 env->kvm_state = s;
164 mmap_size = kvm_ioctl(s, KVM_GET_VCPU_MMAP_SIZE, 0);
165 if (mmap_size < 0) {
166 dprintf("KVM_GET_VCPU_MMAP_SIZE failed\n");
167 goto err;
170 env->kvm_run = mmap(NULL, mmap_size, PROT_READ | PROT_WRITE, MAP_SHARED,
171 env->kvm_fd, 0);
172 if (env->kvm_run == MAP_FAILED) {
173 ret = -errno;
174 dprintf("mmap'ing vcpu state failed\n");
175 goto err;
178 ret = kvm_arch_init_vcpu(env);
180 err:
181 return ret;
184 int kvm_put_mp_state(CPUState *env)
186 struct kvm_mp_state mp_state = { .mp_state = env->mp_state };
188 return kvm_vcpu_ioctl(env, KVM_SET_MP_STATE, &mp_state);
191 int kvm_get_mp_state(CPUState *env)
193 struct kvm_mp_state mp_state;
194 int ret;
196 ret = kvm_vcpu_ioctl(env, KVM_GET_MP_STATE, &mp_state);
197 if (ret < 0) {
198 return ret;
200 env->mp_state = mp_state.mp_state;
201 return 0;
204 int kvm_sync_vcpus(void)
206 CPUState *env;
208 for (env = first_cpu; env != NULL; env = env->next_cpu) {
209 int ret;
211 ret = kvm_arch_put_registers(env);
212 if (ret)
213 return ret;
216 return 0;
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);
227 int old_flags;
229 if (mem == NULL) {
230 fprintf(stderr, "BUG: %s: invalid parameters " TARGET_FMT_plx "-"
231 TARGET_FMT_plx "\n", __func__, phys_addr,
232 phys_addr + size - 1);
233 return -EINVAL;
236 old_flags = mem->flags;
238 flags = (mem->flags & ~mask) | flags;
239 mem->flags = 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) {
246 return 0;
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 int kvm_set_migration_log(int enable)
268 KVMState *s = kvm_state;
269 KVMSlot *mem;
270 int i, err;
272 s->migration_log = enable;
274 for (i = 0; i < ARRAY_SIZE(s->slots); i++) {
275 mem = &s->slots[i];
277 if (!!(mem->flags & KVM_MEM_LOG_DIRTY_PAGES) == enable) {
278 continue;
280 err = kvm_set_user_memory_region(s, mem);
281 if (err) {
282 return err;
285 return 0;
289 * kvm_physical_sync_dirty_bitmap - Grab dirty bitmap from kernel space
290 * This function updates qemu's dirty bitmap using cpu_physical_memory_set_dirty().
291 * This means all bits are set to dirty.
293 * @start_add: start of logged region.
294 * @end_addr: end of logged region.
296 int kvm_physical_sync_dirty_bitmap(target_phys_addr_t start_addr,
297 target_phys_addr_t end_addr)
299 KVMState *s = kvm_state;
300 unsigned long size, allocated_size = 0;
301 target_phys_addr_t phys_addr;
302 ram_addr_t addr;
303 KVMDirtyLog d;
304 KVMSlot *mem;
305 int ret = 0;
307 d.dirty_bitmap = NULL;
308 while (start_addr < end_addr) {
309 mem = kvm_lookup_overlapping_slot(s, start_addr, end_addr);
310 if (mem == NULL) {
311 break;
314 size = ((mem->memory_size >> TARGET_PAGE_BITS) + 7) / 8;
315 if (!d.dirty_bitmap) {
316 d.dirty_bitmap = qemu_malloc(size);
317 } else if (size > allocated_size) {
318 d.dirty_bitmap = qemu_realloc(d.dirty_bitmap, size);
320 allocated_size = size;
321 memset(d.dirty_bitmap, 0, allocated_size);
323 d.slot = mem->slot;
325 if (kvm_vm_ioctl(s, KVM_GET_DIRTY_LOG, &d) == -1) {
326 dprintf("ioctl failed %d\n", errno);
327 ret = -1;
328 break;
331 for (phys_addr = mem->start_addr, addr = mem->phys_offset;
332 phys_addr < mem->start_addr + mem->memory_size;
333 phys_addr += TARGET_PAGE_SIZE, addr += TARGET_PAGE_SIZE) {
334 unsigned long *bitmap = (unsigned long *)d.dirty_bitmap;
335 unsigned nr = (phys_addr - mem->start_addr) >> TARGET_PAGE_BITS;
336 unsigned word = nr / (sizeof(*bitmap) * 8);
337 unsigned bit = nr % (sizeof(*bitmap) * 8);
339 if ((bitmap[word] >> bit) & 1) {
340 cpu_physical_memory_set_dirty(addr);
343 start_addr = phys_addr;
345 qemu_free(d.dirty_bitmap);
347 return ret;
350 int kvm_coalesce_mmio_region(target_phys_addr_t start, ram_addr_t size)
352 int ret = -ENOSYS;
353 #ifdef KVM_CAP_COALESCED_MMIO
354 KVMState *s = kvm_state;
356 if (s->coalesced_mmio) {
357 struct kvm_coalesced_mmio_zone zone;
359 zone.addr = start;
360 zone.size = size;
362 ret = kvm_vm_ioctl(s, KVM_REGISTER_COALESCED_MMIO, &zone);
364 #endif
366 return ret;
369 int kvm_uncoalesce_mmio_region(target_phys_addr_t start, ram_addr_t size)
371 int ret = -ENOSYS;
372 #ifdef KVM_CAP_COALESCED_MMIO
373 KVMState *s = kvm_state;
375 if (s->coalesced_mmio) {
376 struct kvm_coalesced_mmio_zone zone;
378 zone.addr = start;
379 zone.size = size;
381 ret = kvm_vm_ioctl(s, KVM_UNREGISTER_COALESCED_MMIO, &zone);
383 #endif
385 return ret;
388 int kvm_check_extension(KVMState *s, unsigned int extension)
390 int ret;
392 ret = kvm_ioctl(s, KVM_CHECK_EXTENSION, extension);
393 if (ret < 0) {
394 ret = 0;
397 return ret;
400 static void kvm_reset_vcpus(void *opaque)
402 kvm_sync_vcpus();
405 int kvm_init(int smp_cpus)
407 static const char upgrade_note[] =
408 "Please upgrade to at least kernel 2.6.29 or recent kvm-kmod\n"
409 "(see http://sourceforge.net/projects/kvm).\n";
410 KVMState *s;
411 int ret;
412 int i;
414 if (smp_cpus > 1) {
415 fprintf(stderr, "No SMP KVM support, use '-smp 1'\n");
416 return -EINVAL;
419 s = qemu_mallocz(sizeof(KVMState));
421 #ifdef KVM_CAP_SET_GUEST_DEBUG
422 TAILQ_INIT(&s->kvm_sw_breakpoints);
423 #endif
424 for (i = 0; i < ARRAY_SIZE(s->slots); i++)
425 s->slots[i].slot = i;
427 s->vmfd = -1;
428 s->fd = open("/dev/kvm", O_RDWR);
429 if (s->fd == -1) {
430 fprintf(stderr, "Could not access KVM kernel module: %m\n");
431 ret = -errno;
432 goto err;
435 ret = kvm_ioctl(s, KVM_GET_API_VERSION, 0);
436 if (ret < KVM_API_VERSION) {
437 if (ret > 0)
438 ret = -EINVAL;
439 fprintf(stderr, "kvm version too old\n");
440 goto err;
443 if (ret > KVM_API_VERSION) {
444 ret = -EINVAL;
445 fprintf(stderr, "kvm version not supported\n");
446 goto err;
449 s->vmfd = kvm_ioctl(s, KVM_CREATE_VM, 0);
450 if (s->vmfd < 0)
451 goto err;
453 /* initially, KVM allocated its own memory and we had to jump through
454 * hooks to make phys_ram_base point to this. Modern versions of KVM
455 * just use a user allocated buffer so we can use regular pages
456 * unmodified. Make sure we have a sufficiently modern version of KVM.
458 if (!kvm_check_extension(s, KVM_CAP_USER_MEMORY)) {
459 ret = -EINVAL;
460 fprintf(stderr, "kvm does not support KVM_CAP_USER_MEMORY\n%s",
461 upgrade_note);
462 goto err;
465 /* There was a nasty bug in < kvm-80 that prevents memory slots from being
466 * destroyed properly. Since we rely on this capability, refuse to work
467 * with any kernel without this capability. */
468 if (!kvm_check_extension(s, KVM_CAP_DESTROY_MEMORY_REGION_WORKS)) {
469 ret = -EINVAL;
471 fprintf(stderr,
472 "KVM kernel module broken (DESTROY_MEMORY_REGION).\n%s",
473 upgrade_note);
474 goto err;
477 #ifdef KVM_CAP_COALESCED_MMIO
478 s->coalesced_mmio = kvm_check_extension(s, KVM_CAP_COALESCED_MMIO);
479 #else
480 s->coalesced_mmio = 0;
481 #endif
483 s->broken_set_mem_region = 1;
484 #ifdef KVM_CAP_JOIN_MEMORY_REGIONS_WORKS
485 ret = kvm_ioctl(s, KVM_CHECK_EXTENSION, KVM_CAP_JOIN_MEMORY_REGIONS_WORKS);
486 if (ret > 0) {
487 s->broken_set_mem_region = 0;
489 #endif
491 ret = kvm_arch_init(s, smp_cpus);
492 if (ret < 0)
493 goto err;
495 qemu_register_reset(kvm_reset_vcpus, INT_MAX, NULL);
497 kvm_state = s;
499 return 0;
501 err:
502 if (s) {
503 if (s->vmfd != -1)
504 close(s->vmfd);
505 if (s->fd != -1)
506 close(s->fd);
508 qemu_free(s);
510 return ret;
513 static int kvm_handle_io(CPUState *env, uint16_t port, void *data,
514 int direction, int size, uint32_t count)
516 int i;
517 uint8_t *ptr = data;
519 for (i = 0; i < count; i++) {
520 if (direction == KVM_EXIT_IO_IN) {
521 switch (size) {
522 case 1:
523 stb_p(ptr, cpu_inb(env, port));
524 break;
525 case 2:
526 stw_p(ptr, cpu_inw(env, port));
527 break;
528 case 4:
529 stl_p(ptr, cpu_inl(env, port));
530 break;
532 } else {
533 switch (size) {
534 case 1:
535 cpu_outb(env, port, ldub_p(ptr));
536 break;
537 case 2:
538 cpu_outw(env, port, lduw_p(ptr));
539 break;
540 case 4:
541 cpu_outl(env, port, ldl_p(ptr));
542 break;
546 ptr += size;
549 return 1;
552 static void kvm_run_coalesced_mmio(CPUState *env, struct kvm_run *run)
554 #ifdef KVM_CAP_COALESCED_MMIO
555 KVMState *s = kvm_state;
556 if (s->coalesced_mmio) {
557 struct kvm_coalesced_mmio_ring *ring;
559 ring = (void *)run + (s->coalesced_mmio * TARGET_PAGE_SIZE);
560 while (ring->first != ring->last) {
561 struct kvm_coalesced_mmio *ent;
563 ent = &ring->coalesced_mmio[ring->first];
565 cpu_physical_memory_write(ent->phys_addr, ent->data, ent->len);
566 /* FIXME smp_wmb() */
567 ring->first = (ring->first + 1) % KVM_COALESCED_MMIO_MAX;
570 #endif
573 int kvm_cpu_exec(CPUState *env)
575 struct kvm_run *run = env->kvm_run;
576 int ret;
578 dprintf("kvm_cpu_exec()\n");
580 do {
581 kvm_arch_pre_run(env, run);
583 if (env->exit_request) {
584 dprintf("interrupt exit requested\n");
585 ret = 0;
586 break;
589 ret = kvm_vcpu_ioctl(env, KVM_RUN, 0);
590 kvm_arch_post_run(env, run);
592 if (ret == -EINTR || ret == -EAGAIN) {
593 dprintf("io window exit\n");
594 ret = 0;
595 break;
598 if (ret < 0) {
599 dprintf("kvm run failed %s\n", strerror(-ret));
600 abort();
603 kvm_run_coalesced_mmio(env, run);
605 ret = 0; /* exit loop */
606 switch (run->exit_reason) {
607 case KVM_EXIT_IO:
608 dprintf("handle_io\n");
609 ret = kvm_handle_io(env, run->io.port,
610 (uint8_t *)run + run->io.data_offset,
611 run->io.direction,
612 run->io.size,
613 run->io.count);
614 break;
615 case KVM_EXIT_MMIO:
616 dprintf("handle_mmio\n");
617 cpu_physical_memory_rw(run->mmio.phys_addr,
618 run->mmio.data,
619 run->mmio.len,
620 run->mmio.is_write);
621 ret = 1;
622 break;
623 case KVM_EXIT_IRQ_WINDOW_OPEN:
624 dprintf("irq_window_open\n");
625 break;
626 case KVM_EXIT_SHUTDOWN:
627 dprintf("shutdown\n");
628 qemu_system_reset_request();
629 ret = 1;
630 break;
631 case KVM_EXIT_UNKNOWN:
632 dprintf("kvm_exit_unknown\n");
633 break;
634 case KVM_EXIT_FAIL_ENTRY:
635 dprintf("kvm_exit_fail_entry\n");
636 break;
637 case KVM_EXIT_EXCEPTION:
638 dprintf("kvm_exit_exception\n");
639 break;
640 case KVM_EXIT_DEBUG:
641 dprintf("kvm_exit_debug\n");
642 #ifdef KVM_CAP_SET_GUEST_DEBUG
643 if (kvm_arch_debug(&run->debug.arch)) {
644 gdb_set_stop_cpu(env);
645 vm_stop(EXCP_DEBUG);
646 env->exception_index = EXCP_DEBUG;
647 return 0;
649 /* re-enter, this exception was guest-internal */
650 ret = 1;
651 #endif /* KVM_CAP_SET_GUEST_DEBUG */
652 break;
653 default:
654 dprintf("kvm_arch_handle_exit\n");
655 ret = kvm_arch_handle_exit(env, run);
656 break;
658 } while (ret > 0);
660 if (env->exit_request) {
661 env->exit_request = 0;
662 env->exception_index = EXCP_INTERRUPT;
665 return ret;
668 void kvm_set_phys_mem(target_phys_addr_t start_addr,
669 ram_addr_t size,
670 ram_addr_t phys_offset)
672 KVMState *s = kvm_state;
673 ram_addr_t flags = phys_offset & ~TARGET_PAGE_MASK;
674 KVMSlot *mem, old;
675 int err;
677 if (start_addr & ~TARGET_PAGE_MASK) {
678 if (flags >= IO_MEM_UNASSIGNED) {
679 if (!kvm_lookup_overlapping_slot(s, start_addr,
680 start_addr + size)) {
681 return;
683 fprintf(stderr, "Unaligned split of a KVM memory slot\n");
684 } else {
685 fprintf(stderr, "Only page-aligned memory slots supported\n");
687 abort();
690 /* KVM does not support read-only slots */
691 phys_offset &= ~IO_MEM_ROM;
693 while (1) {
694 mem = kvm_lookup_overlapping_slot(s, start_addr, start_addr + size);
695 if (!mem) {
696 break;
699 if (flags < IO_MEM_UNASSIGNED && start_addr >= mem->start_addr &&
700 (start_addr + size <= mem->start_addr + mem->memory_size) &&
701 (phys_offset - start_addr == mem->phys_offset - mem->start_addr)) {
702 /* The new slot fits into the existing one and comes with
703 * identical parameters - nothing to be done. */
704 return;
707 old = *mem;
709 /* unregister the overlapping slot */
710 mem->memory_size = 0;
711 err = kvm_set_user_memory_region(s, mem);
712 if (err) {
713 fprintf(stderr, "%s: error unregistering overlapping slot: %s\n",
714 __func__, strerror(-err));
715 abort();
718 /* Workaround for older KVM versions: we can't join slots, even not by
719 * unregistering the previous ones and then registering the larger
720 * slot. We have to maintain the existing fragmentation. Sigh.
722 * This workaround assumes that the new slot starts at the same
723 * address as the first existing one. If not or if some overlapping
724 * slot comes around later, we will fail (not seen in practice so far)
725 * - and actually require a recent KVM version. */
726 if (s->broken_set_mem_region &&
727 old.start_addr == start_addr && old.memory_size < size &&
728 flags < IO_MEM_UNASSIGNED) {
729 mem = kvm_alloc_slot(s);
730 mem->memory_size = old.memory_size;
731 mem->start_addr = old.start_addr;
732 mem->phys_offset = old.phys_offset;
733 mem->flags = 0;
735 err = kvm_set_user_memory_region(s, mem);
736 if (err) {
737 fprintf(stderr, "%s: error updating slot: %s\n", __func__,
738 strerror(-err));
739 abort();
742 start_addr += old.memory_size;
743 phys_offset += old.memory_size;
744 size -= old.memory_size;
745 continue;
748 /* register prefix slot */
749 if (old.start_addr < start_addr) {
750 mem = kvm_alloc_slot(s);
751 mem->memory_size = start_addr - old.start_addr;
752 mem->start_addr = old.start_addr;
753 mem->phys_offset = old.phys_offset;
754 mem->flags = 0;
756 err = kvm_set_user_memory_region(s, mem);
757 if (err) {
758 fprintf(stderr, "%s: error registering prefix slot: %s\n",
759 __func__, strerror(-err));
760 abort();
764 /* register suffix slot */
765 if (old.start_addr + old.memory_size > start_addr + size) {
766 ram_addr_t size_delta;
768 mem = kvm_alloc_slot(s);
769 mem->start_addr = start_addr + size;
770 size_delta = mem->start_addr - old.start_addr;
771 mem->memory_size = old.memory_size - size_delta;
772 mem->phys_offset = old.phys_offset + size_delta;
773 mem->flags = 0;
775 err = kvm_set_user_memory_region(s, mem);
776 if (err) {
777 fprintf(stderr, "%s: error registering suffix slot: %s\n",
778 __func__, strerror(-err));
779 abort();
784 /* in case the KVM bug workaround already "consumed" the new slot */
785 if (!size)
786 return;
788 /* KVM does not need to know about this memory */
789 if (flags >= IO_MEM_UNASSIGNED)
790 return;
792 mem = kvm_alloc_slot(s);
793 mem->memory_size = size;
794 mem->start_addr = start_addr;
795 mem->phys_offset = phys_offset;
796 mem->flags = 0;
798 err = kvm_set_user_memory_region(s, mem);
799 if (err) {
800 fprintf(stderr, "%s: error registering slot: %s\n", __func__,
801 strerror(-err));
802 abort();
806 int kvm_ioctl(KVMState *s, int type, ...)
808 int ret;
809 void *arg;
810 va_list ap;
812 va_start(ap, type);
813 arg = va_arg(ap, void *);
814 va_end(ap);
816 ret = ioctl(s->fd, type, arg);
817 if (ret == -1)
818 ret = -errno;
820 return ret;
823 int kvm_vm_ioctl(KVMState *s, int type, ...)
825 int ret;
826 void *arg;
827 va_list ap;
829 va_start(ap, type);
830 arg = va_arg(ap, void *);
831 va_end(ap);
833 ret = ioctl(s->vmfd, type, arg);
834 if (ret == -1)
835 ret = -errno;
837 return ret;
840 int kvm_vcpu_ioctl(CPUState *env, int type, ...)
842 int ret;
843 void *arg;
844 va_list ap;
846 va_start(ap, type);
847 arg = va_arg(ap, void *);
848 va_end(ap);
850 ret = ioctl(env->kvm_fd, type, arg);
851 if (ret == -1)
852 ret = -errno;
854 return ret;
857 int kvm_has_sync_mmu(void)
859 #ifdef KVM_CAP_SYNC_MMU
860 KVMState *s = kvm_state;
862 return kvm_check_extension(s, KVM_CAP_SYNC_MMU);
863 #else
864 return 0;
865 #endif
868 void kvm_setup_guest_memory(void *start, size_t size)
870 if (!kvm_has_sync_mmu()) {
871 #ifdef MADV_DONTFORK
872 int ret = madvise(start, size, MADV_DONTFORK);
874 if (ret) {
875 perror("madvice");
876 exit(1);
878 #else
879 fprintf(stderr,
880 "Need MADV_DONTFORK in absence of synchronous KVM MMU\n");
881 exit(1);
882 #endif
886 #ifdef KVM_CAP_SET_GUEST_DEBUG
887 struct kvm_sw_breakpoint *kvm_find_sw_breakpoint(CPUState *env,
888 target_ulong pc)
890 struct kvm_sw_breakpoint *bp;
892 TAILQ_FOREACH(bp, &env->kvm_state->kvm_sw_breakpoints, entry) {
893 if (bp->pc == pc)
894 return bp;
896 return NULL;
899 int kvm_sw_breakpoints_active(CPUState *env)
901 return !TAILQ_EMPTY(&env->kvm_state->kvm_sw_breakpoints);
904 int kvm_update_guest_debug(CPUState *env, unsigned long reinject_trap)
906 struct kvm_guest_debug dbg;
908 dbg.control = 0;
909 if (env->singlestep_enabled)
910 dbg.control = KVM_GUESTDBG_ENABLE | KVM_GUESTDBG_SINGLESTEP;
912 kvm_arch_update_guest_debug(env, &dbg);
913 dbg.control |= reinject_trap;
915 return kvm_vcpu_ioctl(env, KVM_SET_GUEST_DEBUG, &dbg);
918 int kvm_insert_breakpoint(CPUState *current_env, target_ulong addr,
919 target_ulong len, int type)
921 struct kvm_sw_breakpoint *bp;
922 CPUState *env;
923 int err;
925 if (type == GDB_BREAKPOINT_SW) {
926 bp = kvm_find_sw_breakpoint(current_env, addr);
927 if (bp) {
928 bp->use_count++;
929 return 0;
932 bp = qemu_malloc(sizeof(struct kvm_sw_breakpoint));
933 if (!bp)
934 return -ENOMEM;
936 bp->pc = addr;
937 bp->use_count = 1;
938 err = kvm_arch_insert_sw_breakpoint(current_env, bp);
939 if (err) {
940 free(bp);
941 return err;
944 TAILQ_INSERT_HEAD(&current_env->kvm_state->kvm_sw_breakpoints,
945 bp, entry);
946 } else {
947 err = kvm_arch_insert_hw_breakpoint(addr, len, type);
948 if (err)
949 return err;
952 for (env = first_cpu; env != NULL; env = env->next_cpu) {
953 err = kvm_update_guest_debug(env, 0);
954 if (err)
955 return err;
957 return 0;
960 int kvm_remove_breakpoint(CPUState *current_env, target_ulong addr,
961 target_ulong len, int type)
963 struct kvm_sw_breakpoint *bp;
964 CPUState *env;
965 int err;
967 if (type == GDB_BREAKPOINT_SW) {
968 bp = kvm_find_sw_breakpoint(current_env, addr);
969 if (!bp)
970 return -ENOENT;
972 if (bp->use_count > 1) {
973 bp->use_count--;
974 return 0;
977 err = kvm_arch_remove_sw_breakpoint(current_env, bp);
978 if (err)
979 return err;
981 TAILQ_REMOVE(&current_env->kvm_state->kvm_sw_breakpoints, bp, entry);
982 qemu_free(bp);
983 } else {
984 err = kvm_arch_remove_hw_breakpoint(addr, len, type);
985 if (err)
986 return err;
989 for (env = first_cpu; env != NULL; env = env->next_cpu) {
990 err = kvm_update_guest_debug(env, 0);
991 if (err)
992 return err;
994 return 0;
997 void kvm_remove_all_breakpoints(CPUState *current_env)
999 struct kvm_sw_breakpoint *bp, *next;
1000 KVMState *s = current_env->kvm_state;
1001 CPUState *env;
1003 TAILQ_FOREACH_SAFE(bp, &s->kvm_sw_breakpoints, entry, next) {
1004 if (kvm_arch_remove_sw_breakpoint(current_env, bp) != 0) {
1005 /* Try harder to find a CPU that currently sees the breakpoint. */
1006 for (env = first_cpu; env != NULL; env = env->next_cpu) {
1007 if (kvm_arch_remove_sw_breakpoint(env, bp) == 0)
1008 break;
1012 kvm_arch_remove_all_hw_breakpoints();
1014 for (env = first_cpu; env != NULL; env = env->next_cpu)
1015 kvm_update_guest_debug(env, 0);
1018 #else /* !KVM_CAP_SET_GUEST_DEBUG */
1020 int kvm_update_guest_debug(CPUState *env, unsigned long reinject_trap)
1022 return -EINVAL;
1025 int kvm_insert_breakpoint(CPUState *current_env, target_ulong addr,
1026 target_ulong len, int type)
1028 return -EINVAL;
1031 int kvm_remove_breakpoint(CPUState *current_env, target_ulong addr,
1032 target_ulong len, int type)
1034 return -EINVAL;
1037 void kvm_remove_all_breakpoints(CPUState *current_env)
1040 #endif /* !KVM_CAP_SET_GUEST_DEBUG */