kvm-all.c 50.6 KB
Newer Older
A
aliguori 已提交
1 2 3 4
/*
 * QEMU KVM support
 *
 * Copyright IBM, Corp. 2008
5
 *           Red Hat, Inc. 2008
A
aliguori 已提交
6 7 8
 *
 * Authors:
 *  Anthony Liguori   <aliguori@us.ibm.com>
9
 *  Glauber Costa     <gcosta@redhat.com>
A
aliguori 已提交
10 11 12 13 14 15 16 17 18
 *
 * This work is licensed under the terms of the GNU GPL, version 2 or later.
 * See the COPYING file in the top-level directory.
 *
 */

#include <sys/types.h>
#include <sys/ioctl.h>
#include <sys/mman.h>
19
#include <stdarg.h>
A
aliguori 已提交
20 21 22 23

#include <linux/kvm.h>

#include "qemu-common.h"
24
#include "qemu-barrier.h"
P
Paolo Bonzini 已提交
25 26
#include "qemu-option.h"
#include "qemu-config.h"
A
aliguori 已提交
27
#include "sysemu.h"
J
Jan Kiszka 已提交
28
#include "hw/hw.h"
29
#include "hw/msi.h"
30
#include "gdbstub.h"
A
aliguori 已提交
31
#include "kvm.h"
32
#include "bswap.h"
A
Avi Kivity 已提交
33
#include "memory.h"
34
#include "exec-memory.h"
35
#include "event_notifier.h"
A
aliguori 已提交
36

37 38 39 40 41
/* This check must be after config-host.h is included */
#ifdef CONFIG_EVENTFD
#include <sys/eventfd.h>
#endif

42 43 44 45
#ifdef CONFIG_VALGRIND_H
#include <valgrind/memcheck.h>
#endif

46
/* KVM uses PAGE_SIZE in its definition of COALESCED_MMIO_MAX */
A
aliguori 已提交
47 48
#define PAGE_SIZE TARGET_PAGE_SIZE

A
aliguori 已提交
49 50 51
//#define DEBUG_KVM

#ifdef DEBUG_KVM
52
#define DPRINTF(fmt, ...) \
A
aliguori 已提交
53 54
    do { fprintf(stderr, fmt, ## __VA_ARGS__); } while (0)
#else
55
#define DPRINTF(fmt, ...) \
A
aliguori 已提交
56 57 58
    do { } while (0)
#endif

59 60
#define KVM_MSI_HASHTAB_SIZE    256

A
aliguori 已提交
61 62
typedef struct KVMSlot
{
A
Anthony Liguori 已提交
63 64
    target_phys_addr_t start_addr;
    ram_addr_t memory_size;
65
    void *ram;
A
aliguori 已提交
66 67 68
    int slot;
    int flags;
} KVMSlot;
A
aliguori 已提交
69

70 71
typedef struct kvm_dirty_log KVMDirtyLog;

A
aliguori 已提交
72 73 74 75 76
struct KVMState
{
    KVMSlot slots[32];
    int fd;
    int vmfd;
A
aliguori 已提交
77
    int coalesced_mmio;
78
    struct kvm_coalesced_mmio_ring *coalesced_mmio_ring;
79
    bool coalesced_flush_in_progress;
80
    int broken_set_mem_region;
81
    int migration_log;
82
    int vcpu_events;
83
    int robust_singlestep;
84
    int debugregs;
85 86 87
#ifdef KVM_CAP_SET_GUEST_DEBUG
    struct kvm_sw_breakpoint_head kvm_sw_breakpoints;
#endif
J
Jan Kiszka 已提交
88
    int pit_state2;
89
    int xsave, xcrs;
90
    int many_ioeventfds;
91
    int intx_set_mask;
92 93 94
    /* The man page (and posix) say ioctl numbers are signed int, but
     * they're not.  Linux, glibc and *BSD all treat ioctl numbers as
     * unsigned, and treating them as signed here can break things */
95
    unsigned irq_set_ioctl;
96 97 98 99
#ifdef KVM_CAP_IRQ_ROUTING
    struct kvm_irq_routing *irq_routes;
    int nr_allocated_irq_routes;
    uint32_t *used_gsi_bitmap;
100
    unsigned int gsi_count;
101
    QTAILQ_HEAD(msi_hashtab, KVMMSIRoute) msi_hashtab[KVM_MSI_HASHTAB_SIZE];
102
    bool direct_msi;
103
#endif
A
aliguori 已提交
104 105
};

106
KVMState *kvm_state;
107
bool kvm_kernel_irqchip;
108
bool kvm_async_interrupts_allowed;
109
bool kvm_irqfds_allowed;
110
bool kvm_msi_via_irqfd_allowed;
111
bool kvm_gsi_routing_allowed;
A
aliguori 已提交
112

113 114 115 116 117 118
static const KVMCapabilityInfo kvm_required_capabilites[] = {
    KVM_CAP_INFO(USER_MEMORY),
    KVM_CAP_INFO(DESTROY_MEMORY_REGION_WORKS),
    KVM_CAP_LAST_INFO
};

A
aliguori 已提交
119 120 121 122 123
static KVMSlot *kvm_alloc_slot(KVMState *s)
{
    int i;

    for (i = 0; i < ARRAY_SIZE(s->slots); i++) {
J
Jan Kiszka 已提交
124
        if (s->slots[i].memory_size == 0) {
A
aliguori 已提交
125
            return &s->slots[i];
J
Jan Kiszka 已提交
126
        }
A
aliguori 已提交
127 128
    }

129 130 131 132 133
    fprintf(stderr, "%s: no free slot available\n", __func__);
    abort();
}

static KVMSlot *kvm_lookup_matching_slot(KVMState *s,
A
Anthony Liguori 已提交
134 135
                                         target_phys_addr_t start_addr,
                                         target_phys_addr_t end_addr)
136 137 138 139 140 141 142 143 144 145 146 147
{
    int i;

    for (i = 0; i < ARRAY_SIZE(s->slots); i++) {
        KVMSlot *mem = &s->slots[i];

        if (start_addr == mem->start_addr &&
            end_addr == mem->start_addr + mem->memory_size) {
            return mem;
        }
    }

A
aliguori 已提交
148 149 150
    return NULL;
}

151 152 153 154
/*
 * Find overlapping slot with lowest start address
 */
static KVMSlot *kvm_lookup_overlapping_slot(KVMState *s,
A
Anthony Liguori 已提交
155 156
                                            target_phys_addr_t start_addr,
                                            target_phys_addr_t end_addr)
A
aliguori 已提交
157
{
158
    KVMSlot *found = NULL;
A
aliguori 已提交
159 160 161 162 163
    int i;

    for (i = 0; i < ARRAY_SIZE(s->slots); i++) {
        KVMSlot *mem = &s->slots[i];

164 165 166 167 168 169 170 171 172
        if (mem->memory_size == 0 ||
            (found && found->start_addr < mem->start_addr)) {
            continue;
        }

        if (end_addr > mem->start_addr &&
            start_addr < mem->start_addr + mem->memory_size) {
            found = mem;
        }
A
aliguori 已提交
173 174
    }

175
    return found;
A
aliguori 已提交
176 177
}

178 179
int kvm_physical_memory_addr_from_host(KVMState *s, void *ram,
                                       target_phys_addr_t *phys_addr)
180 181 182 183 184 185
{
    int i;

    for (i = 0; i < ARRAY_SIZE(s->slots); i++) {
        KVMSlot *mem = &s->slots[i];

186 187
        if (ram >= mem->ram && ram < mem->ram + mem->memory_size) {
            *phys_addr = mem->start_addr + (ram - mem->ram);
188 189 190 191 192 193 194
            return 1;
        }
    }

    return 0;
}

195 196 197 198 199 200 201
static int kvm_set_user_memory_region(KVMState *s, KVMSlot *slot)
{
    struct kvm_userspace_memory_region mem;

    mem.slot = slot->slot;
    mem.guest_phys_addr = slot->start_addr;
    mem.memory_size = slot->memory_size;
202
    mem.userspace_addr = (unsigned long)slot->ram;
203
    mem.flags = slot->flags;
204 205 206
    if (s->migration_log) {
        mem.flags |= KVM_MEM_LOG_DIRTY_PAGES;
    }
207 208 209
    return kvm_vm_ioctl(s, KVM_SET_USER_MEMORY_REGION, &mem);
}

J
Jan Kiszka 已提交
210 211
static void kvm_reset_vcpu(void *opaque)
{
212
    CPUArchState *env = opaque;
J
Jan Kiszka 已提交
213

J
Jan Kiszka 已提交
214
    kvm_arch_reset_vcpu(env);
J
Jan Kiszka 已提交
215
}
216

217
int kvm_init_vcpu(CPUArchState *env)
A
aliguori 已提交
218 219 220 221 222
{
    KVMState *s = kvm_state;
    long mmap_size;
    int ret;

223
    DPRINTF("kvm_init_vcpu\n");
A
aliguori 已提交
224

225
    ret = kvm_vm_ioctl(s, KVM_CREATE_VCPU, env->cpu_index);
A
aliguori 已提交
226
    if (ret < 0) {
227
        DPRINTF("kvm_create_vcpu failed\n");
A
aliguori 已提交
228 229 230 231 232
        goto err;
    }

    env->kvm_fd = ret;
    env->kvm_state = s;
233
    env->kvm_vcpu_dirty = 1;
A
aliguori 已提交
234 235 236

    mmap_size = kvm_ioctl(s, KVM_GET_VCPU_MMAP_SIZE, 0);
    if (mmap_size < 0) {
237
        ret = mmap_size;
238
        DPRINTF("KVM_GET_VCPU_MMAP_SIZE failed\n");
A
aliguori 已提交
239 240 241 242 243 244 245
        goto err;
    }

    env->kvm_run = mmap(NULL, mmap_size, PROT_READ | PROT_WRITE, MAP_SHARED,
                        env->kvm_fd, 0);
    if (env->kvm_run == MAP_FAILED) {
        ret = -errno;
246
        DPRINTF("mmap'ing vcpu state failed\n");
A
aliguori 已提交
247 248 249
        goto err;
    }

J
Jan Kiszka 已提交
250 251 252 253
    if (s->coalesced_mmio && !s->coalesced_mmio_ring) {
        s->coalesced_mmio_ring =
            (void *)env->kvm_run + s->coalesced_mmio * PAGE_SIZE;
    }
254

A
aliguori 已提交
255
    ret = kvm_arch_init_vcpu(env);
J
Jan Kiszka 已提交
256
    if (ret == 0) {
257
        qemu_register_reset(kvm_reset_vcpu, env);
J
Jan Kiszka 已提交
258
        kvm_arch_reset_vcpu(env);
J
Jan Kiszka 已提交
259
    }
A
aliguori 已提交
260 261 262 263
err:
    return ret;
}

264 265 266
/*
 * dirty pages logging control
 */
267 268 269 270 271 272 273

static int kvm_mem_flags(KVMState *s, bool log_dirty)
{
    return log_dirty ? KVM_MEM_LOG_DIRTY_PAGES : 0;
}

static int kvm_slot_dirty_pages_log_change(KVMSlot *mem, bool log_dirty)
274 275
{
    KVMState *s = kvm_state;
276
    int flags, mask = KVM_MEM_LOG_DIRTY_PAGES;
277 278 279
    int old_flags;

    old_flags = mem->flags;
280

281
    flags = (mem->flags & ~mask) | kvm_mem_flags(s, log_dirty);
282 283
    mem->flags = flags;

284 285 286 287
    /* If nothing changed effectively, no need to issue ioctl */
    if (s->migration_log) {
        flags |= KVM_MEM_LOG_DIRTY_PAGES;
    }
288

289
    if (flags == old_flags) {
290
        return 0;
291 292
    }

293 294 295
    return kvm_set_user_memory_region(s, mem);
}

296 297 298 299 300 301 302 303 304 305 306 307 308 309 310
static int kvm_dirty_pages_log_change(target_phys_addr_t phys_addr,
                                      ram_addr_t size, bool log_dirty)
{
    KVMState *s = kvm_state;
    KVMSlot *mem = kvm_lookup_matching_slot(s, phys_addr, phys_addr + size);

    if (mem == NULL)  {
        fprintf(stderr, "BUG: %s: invalid parameters " TARGET_FMT_plx "-"
                TARGET_FMT_plx "\n", __func__, phys_addr,
                (target_phys_addr_t)(phys_addr + size - 1));
        return -EINVAL;
    }
    return kvm_slot_dirty_pages_log_change(mem, log_dirty);
}

A
Avi Kivity 已提交
311 312
static void kvm_log_start(MemoryListener *listener,
                          MemoryRegionSection *section)
313
{
A
Avi Kivity 已提交
314 315 316 317 318 319 320
    int r;

    r = kvm_dirty_pages_log_change(section->offset_within_address_space,
                                   section->size, true);
    if (r < 0) {
        abort();
    }
321 322
}

A
Avi Kivity 已提交
323 324
static void kvm_log_stop(MemoryListener *listener,
                          MemoryRegionSection *section)
325
{
A
Avi Kivity 已提交
326 327 328 329 330 331 332
    int r;

    r = kvm_dirty_pages_log_change(section->offset_within_address_space,
                                   section->size, false);
    if (r < 0) {
        abort();
    }
333 334
}

335
static int kvm_set_migration_log(int enable)
336 337 338 339 340 341 342 343 344 345
{
    KVMState *s = kvm_state;
    KVMSlot *mem;
    int i, err;

    s->migration_log = enable;

    for (i = 0; i < ARRAY_SIZE(s->slots); i++) {
        mem = &s->slots[i];

346 347 348
        if (!mem->memory_size) {
            continue;
        }
349 350 351 352 353 354 355 356 357 358 359
        if (!!(mem->flags & KVM_MEM_LOG_DIRTY_PAGES) == enable) {
            continue;
        }
        err = kvm_set_user_memory_region(s, mem);
        if (err) {
            return err;
        }
    }
    return 0;
}

360
/* get kvm's dirty pages bitmap and update qemu's */
361 362
static int kvm_get_dirty_pages_log_range(MemoryRegionSection *section,
                                         unsigned long *bitmap)
A
Alexander Graf 已提交
363
{
364
    unsigned int i, j;
365 366
    unsigned long page_number, c;
    target_phys_addr_t addr, addr1;
367
    unsigned int len = ((section->size / TARGET_PAGE_SIZE) + HOST_LONG_BITS - 1) / HOST_LONG_BITS;
368
    unsigned long hpratio = getpagesize() / TARGET_PAGE_SIZE;
369 370 371 372 373 374 375 376 377 378 379

    /*
     * bitmap-traveling is faster than memory-traveling (for addr...)
     * especially when most of the memory is not dirty.
     */
    for (i = 0; i < len; i++) {
        if (bitmap[i] != 0) {
            c = leul_to_cpu(bitmap[i]);
            do {
                j = ffsl(c) - 1;
                c &= ~(1ul << j);
380
                page_number = (i * HOST_LONG_BITS + j) * hpratio;
381
                addr1 = page_number * TARGET_PAGE_SIZE;
382
                addr = section->offset_within_region + addr1;
383 384
                memory_region_set_dirty(section->mr, addr,
                                        TARGET_PAGE_SIZE * hpratio);
385 386 387 388
            } while (c != 0);
        }
    }
    return 0;
A
Alexander Graf 已提交
389 390
}

391 392
#define ALIGN(x, y)  (((x)+(y)-1) & ~((y)-1))

393 394
/**
 * kvm_physical_sync_dirty_bitmap - Grab dirty bitmap from kernel space
395 396 397
 * This function updates qemu's dirty bitmap using
 * memory_region_set_dirty().  This means all bits are set
 * to dirty.
398
 *
399
 * @start_add: start of logged region.
400 401
 * @end_addr: end of logged region.
 */
402
static int kvm_physical_sync_dirty_bitmap(MemoryRegionSection *section)
403 404
{
    KVMState *s = kvm_state;
405 406 407 408
    unsigned long size, allocated_size = 0;
    KVMDirtyLog d;
    KVMSlot *mem;
    int ret = 0;
409 410
    target_phys_addr_t start_addr = section->offset_within_address_space;
    target_phys_addr_t end_addr = start_addr + section->size;
411

412 413 414 415 416 417
    d.dirty_bitmap = NULL;
    while (start_addr < end_addr) {
        mem = kvm_lookup_overlapping_slot(s, start_addr, end_addr);
        if (mem == NULL) {
            break;
        }
418

419 420 421 422 423 424 425 426 427 428 429 430 431 432
        /* XXX bad kernel interface alert
         * For dirty bitmap, kernel allocates array of size aligned to
         * bits-per-long.  But for case when the kernel is 64bits and
         * the userspace is 32bits, userspace can't align to the same
         * bits-per-long, since sizeof(long) is different between kernel
         * and user space.  This way, userspace will provide buffer which
         * may be 4 bytes less than the kernel will use, resulting in
         * userspace memory corruption (which is not detectable by valgrind
         * too, in most cases).
         * So for now, let's align to 64 instead of HOST_LONG_BITS here, in
         * a hope that sizeof(long) wont become >8 any time soon.
         */
        size = ALIGN(((mem->memory_size) >> TARGET_PAGE_BITS),
                     /*HOST_LONG_BITS*/ 64) / 8;
433
        if (!d.dirty_bitmap) {
434
            d.dirty_bitmap = g_malloc(size);
435
        } else if (size > allocated_size) {
436
            d.dirty_bitmap = g_realloc(d.dirty_bitmap, size);
437 438 439
        }
        allocated_size = size;
        memset(d.dirty_bitmap, 0, allocated_size);
440

441
        d.slot = mem->slot;
442

443
        if (kvm_vm_ioctl(s, KVM_GET_DIRTY_LOG, &d) == -1) {
444
            DPRINTF("ioctl failed %d\n", errno);
445 446 447
            ret = -1;
            break;
        }
448

449
        kvm_get_dirty_pages_log_range(section, d.dirty_bitmap);
450
        start_addr = mem->start_addr + mem->memory_size;
451
    }
452
    g_free(d.dirty_bitmap);
453 454

    return ret;
455 456
}

457 458 459
static void kvm_coalesce_mmio_region(MemoryListener *listener,
                                     MemoryRegionSection *secion,
                                     target_phys_addr_t start, target_phys_addr_t size)
A
aliguori 已提交
460 461 462 463 464 465 466 467
{
    KVMState *s = kvm_state;

    if (s->coalesced_mmio) {
        struct kvm_coalesced_mmio_zone zone;

        zone.addr = start;
        zone.size = size;
468
        zone.pad = 0;
A
aliguori 已提交
469

470
        (void)kvm_vm_ioctl(s, KVM_REGISTER_COALESCED_MMIO, &zone);
A
aliguori 已提交
471 472 473
    }
}

474 475 476
static void kvm_uncoalesce_mmio_region(MemoryListener *listener,
                                       MemoryRegionSection *secion,
                                       target_phys_addr_t start, target_phys_addr_t size)
A
aliguori 已提交
477 478 479 480 481 482 483 484
{
    KVMState *s = kvm_state;

    if (s->coalesced_mmio) {
        struct kvm_coalesced_mmio_zone zone;

        zone.addr = start;
        zone.size = size;
485
        zone.pad = 0;
A
aliguori 已提交
486

487
        (void)kvm_vm_ioctl(s, KVM_UNREGISTER_COALESCED_MMIO, &zone);
A
aliguori 已提交
488 489 490
    }
}

491 492 493 494 495 496 497 498 499 500 501 502
int kvm_check_extension(KVMState *s, unsigned int extension)
{
    int ret;

    ret = kvm_ioctl(s, KVM_CHECK_EXTENSION, extension);
    if (ret < 0) {
        ret = 0;
    }

    return ret;
}

503 504
static int kvm_check_many_ioeventfds(void)
{
505 506 507 508 509
    /* Userspace can use ioeventfd for io notification.  This requires a host
     * that supports eventfd(2) and an I/O thread; since eventfd does not
     * support SIGIO it cannot interrupt the vcpu.
     *
     * Older kernels have a 6 device limit on the KVM io bus.  Find out so we
510 511
     * can avoid creating too many ioeventfds.
     */
512
#if defined(CONFIG_EVENTFD)
513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539
    int ioeventfds[7];
    int i, ret = 0;
    for (i = 0; i < ARRAY_SIZE(ioeventfds); i++) {
        ioeventfds[i] = eventfd(0, EFD_CLOEXEC);
        if (ioeventfds[i] < 0) {
            break;
        }
        ret = kvm_set_ioeventfd_pio_word(ioeventfds[i], 0, i, true);
        if (ret < 0) {
            close(ioeventfds[i]);
            break;
        }
    }

    /* Decide whether many devices are supported or not */
    ret = i == ARRAY_SIZE(ioeventfds);

    while (i-- > 0) {
        kvm_set_ioeventfd_pio_word(ioeventfds[i], 0, i, false);
        close(ioeventfds[i]);
    }
    return ret;
#else
    return 0;
#endif
}

540 541 542 543 544 545 546 547 548 549 550 551
static const KVMCapabilityInfo *
kvm_check_extension_list(KVMState *s, const KVMCapabilityInfo *list)
{
    while (list->name) {
        if (!kvm_check_extension(s, list->value)) {
            return list;
        }
        list++;
    }
    return NULL;
}

A
Avi Kivity 已提交
552
static void kvm_set_phys_mem(MemoryRegionSection *section, bool add)
553 554 555 556
{
    KVMState *s = kvm_state;
    KVMSlot *mem, old;
    int err;
A
Avi Kivity 已提交
557 558 559 560
    MemoryRegion *mr = section->mr;
    bool log_dirty = memory_region_is_logging(mr);
    target_phys_addr_t start_addr = section->offset_within_address_space;
    ram_addr_t size = section->size;
561
    void *ram = NULL;
A
Avi Kivity 已提交
562
    unsigned delta;
563

564 565
    /* kvm works in page size chunks, but the function may be called
       with sub-page size and unaligned start address. */
A
Avi Kivity 已提交
566 567 568 569 570 571 572 573 574 575
    delta = TARGET_PAGE_ALIGN(size) - size;
    if (delta > size) {
        return;
    }
    start_addr += delta;
    size -= delta;
    size &= TARGET_PAGE_MASK;
    if (!size || (start_addr & ~TARGET_PAGE_MASK)) {
        return;
    }
576

A
Avi Kivity 已提交
577 578
    if (!memory_region_is_ram(mr)) {
        return;
579 580
    }

A
Avi Kivity 已提交
581
    ram = memory_region_get_ram_ptr(mr) + section->offset_within_region + delta;
A
Avi Kivity 已提交
582

583 584 585 586 587 588
    while (1) {
        mem = kvm_lookup_overlapping_slot(s, start_addr, start_addr + size);
        if (!mem) {
            break;
        }

A
Avi Kivity 已提交
589
        if (add && start_addr >= mem->start_addr &&
590
            (start_addr + size <= mem->start_addr + mem->memory_size) &&
591
            (ram - start_addr == mem->ram - mem->start_addr)) {
592
            /* The new slot fits into the existing one and comes with
593 594
             * identical parameters - update flags and done. */
            kvm_slot_dirty_pages_log_change(mem, log_dirty);
595 596 597 598 599
            return;
        }

        old = *mem;

600 601 602 603
        if (mem->flags & KVM_MEM_LOG_DIRTY_PAGES) {
            kvm_physical_sync_dirty_bitmap(section);
        }

604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621
        /* unregister the overlapping slot */
        mem->memory_size = 0;
        err = kvm_set_user_memory_region(s, mem);
        if (err) {
            fprintf(stderr, "%s: error unregistering overlapping slot: %s\n",
                    __func__, strerror(-err));
            abort();
        }

        /* Workaround for older KVM versions: we can't join slots, even not by
         * unregistering the previous ones and then registering the larger
         * slot. We have to maintain the existing fragmentation. Sigh.
         *
         * This workaround assumes that the new slot starts at the same
         * address as the first existing one. If not or if some overlapping
         * slot comes around later, we will fail (not seen in practice so far)
         * - and actually require a recent KVM version. */
        if (s->broken_set_mem_region &&
A
Avi Kivity 已提交
622
            old.start_addr == start_addr && old.memory_size < size && add) {
623 624 625
            mem = kvm_alloc_slot(s);
            mem->memory_size = old.memory_size;
            mem->start_addr = old.start_addr;
626
            mem->ram = old.ram;
627
            mem->flags = kvm_mem_flags(s, log_dirty);
628 629 630 631 632 633 634 635 636

            err = kvm_set_user_memory_region(s, mem);
            if (err) {
                fprintf(stderr, "%s: error updating slot: %s\n", __func__,
                        strerror(-err));
                abort();
            }

            start_addr += old.memory_size;
637
            ram += old.memory_size;
638 639 640 641 642 643 644 645 646
            size -= old.memory_size;
            continue;
        }

        /* register prefix slot */
        if (old.start_addr < start_addr) {
            mem = kvm_alloc_slot(s);
            mem->memory_size = start_addr - old.start_addr;
            mem->start_addr = old.start_addr;
647
            mem->ram = old.ram;
648
            mem->flags =  kvm_mem_flags(s, log_dirty);
649 650 651 652 653

            err = kvm_set_user_memory_region(s, mem);
            if (err) {
                fprintf(stderr, "%s: error registering prefix slot: %s\n",
                        __func__, strerror(-err));
654 655 656 657 658
#ifdef TARGET_PPC
                fprintf(stderr, "%s: This is probably because your kernel's " \
                                "PAGE_SIZE is too big. Please try to use 4k " \
                                "PAGE_SIZE!\n", __func__);
#endif
659 660 661 662 663 664 665 666 667 668 669 670
                abort();
            }
        }

        /* register suffix slot */
        if (old.start_addr + old.memory_size > start_addr + size) {
            ram_addr_t size_delta;

            mem = kvm_alloc_slot(s);
            mem->start_addr = start_addr + size;
            size_delta = mem->start_addr - old.start_addr;
            mem->memory_size = old.memory_size - size_delta;
671
            mem->ram = old.ram + size_delta;
672
            mem->flags = kvm_mem_flags(s, log_dirty);
673 674 675 676 677 678 679 680 681 682 683

            err = kvm_set_user_memory_region(s, mem);
            if (err) {
                fprintf(stderr, "%s: error registering suffix slot: %s\n",
                        __func__, strerror(-err));
                abort();
            }
        }
    }

    /* in case the KVM bug workaround already "consumed" the new slot */
J
Jan Kiszka 已提交
684
    if (!size) {
685
        return;
J
Jan Kiszka 已提交
686
    }
A
Avi Kivity 已提交
687
    if (!add) {
688
        return;
J
Jan Kiszka 已提交
689
    }
690 691 692
    mem = kvm_alloc_slot(s);
    mem->memory_size = size;
    mem->start_addr = start_addr;
693
    mem->ram = ram;
694
    mem->flags = kvm_mem_flags(s, log_dirty);
695 696 697 698 699 700 701 702 703

    err = kvm_set_user_memory_region(s, mem);
    if (err) {
        fprintf(stderr, "%s: error registering slot: %s\n", __func__,
                strerror(-err));
        abort();
    }
}

A
Avi Kivity 已提交
704 705 706 707 708 709 710 711 712 713 714 715 716 717
static void kvm_region_add(MemoryListener *listener,
                           MemoryRegionSection *section)
{
    kvm_set_phys_mem(section, true);
}

static void kvm_region_del(MemoryListener *listener,
                           MemoryRegionSection *section)
{
    kvm_set_phys_mem(section, false);
}

static void kvm_log_sync(MemoryListener *listener,
                         MemoryRegionSection *section)
718
{
A
Avi Kivity 已提交
719 720
    int r;

721
    r = kvm_physical_sync_dirty_bitmap(section);
A
Avi Kivity 已提交
722 723 724
    if (r < 0) {
        abort();
    }
725 726
}

A
Avi Kivity 已提交
727
static void kvm_log_global_start(struct MemoryListener *listener)
728
{
A
Avi Kivity 已提交
729 730 731 732
    int r;

    r = kvm_set_migration_log(1);
    assert(r >= 0);
733 734
}

A
Avi Kivity 已提交
735
static void kvm_log_global_stop(struct MemoryListener *listener)
736
{
A
Avi Kivity 已提交
737 738 739 740
    int r;

    r = kvm_set_migration_log(0);
    assert(r >= 0);
741 742
}

743 744 745 746 747 748
static void kvm_mem_ioeventfd_add(MemoryListener *listener,
                                  MemoryRegionSection *section,
                                  bool match_data, uint64_t data,
                                  EventNotifier *e)
{
    int fd = event_notifier_get_fd(e);
749 750
    int r;

751
    assert(match_data && section->size <= 8);
752

753 754
    r = kvm_set_ioeventfd_mmio(fd, section->offset_within_address_space,
                               data, true, section->size);
755 756 757 758 759
    if (r < 0) {
        abort();
    }
}

760 761 762 763
static void kvm_mem_ioeventfd_del(MemoryListener *listener,
                                  MemoryRegionSection *section,
                                  bool match_data, uint64_t data,
                                  EventNotifier *e)
764
{
765
    int fd = event_notifier_get_fd(e);
766 767
    int r;

768 769
    r = kvm_set_ioeventfd_mmio(fd, section->offset_within_address_space,
                               data, false, section->size);
770 771 772 773 774
    if (r < 0) {
        abort();
    }
}

775 776 777 778
static void kvm_io_ioeventfd_add(MemoryListener *listener,
                                 MemoryRegionSection *section,
                                 bool match_data, uint64_t data,
                                 EventNotifier *e)
779
{
780
    int fd = event_notifier_get_fd(e);
781 782 783 784 785 786 787 788 789 790 791
    int r;

    assert(match_data && section->size == 2);

    r = kvm_set_ioeventfd_pio_word(fd, section->offset_within_address_space,
                                   data, true);
    if (r < 0) {
        abort();
    }
}

792 793 794 795
static void kvm_io_ioeventfd_del(MemoryListener *listener,
                                 MemoryRegionSection *section,
                                 bool match_data, uint64_t data,
                                 EventNotifier *e)
796 797

{
798
    int fd = event_notifier_get_fd(e);
799 800 801 802 803 804 805 806 807
    int r;

    r = kvm_set_ioeventfd_pio_word(fd, section->offset_within_address_space,
                                   data, false);
    if (r < 0) {
        abort();
    }
}

A
Avi Kivity 已提交
808 809 810
static MemoryListener kvm_memory_listener = {
    .region_add = kvm_region_add,
    .region_del = kvm_region_del,
811 812
    .log_start = kvm_log_start,
    .log_stop = kvm_log_stop,
A
Avi Kivity 已提交
813 814 815
    .log_sync = kvm_log_sync,
    .log_global_start = kvm_log_global_start,
    .log_global_stop = kvm_log_global_stop,
816 817
    .eventfd_add = kvm_mem_ioeventfd_add,
    .eventfd_del = kvm_mem_ioeventfd_del,
818 819
    .coalesced_mmio_add = kvm_coalesce_mmio_region,
    .coalesced_mmio_del = kvm_uncoalesce_mmio_region,
820 821 822 823 824 825
    .priority = 10,
};

static MemoryListener kvm_io_listener = {
    .eventfd_add = kvm_io_ioeventfd_add,
    .eventfd_del = kvm_io_ioeventfd_del,
826
    .priority = 10,
827 828
};

829
static void kvm_handle_interrupt(CPUArchState *env, int mask)
830 831 832 833 834 835 836 837
{
    env->interrupt_request |= mask;

    if (!qemu_cpu_is_self(env)) {
        qemu_cpu_kick(env);
    }
}

838
int kvm_set_irq(KVMState *s, int irq, int level)
839 840 841 842
{
    struct kvm_irq_level event;
    int ret;

843
    assert(kvm_async_interrupts_enabled());
844 845 846

    event.level = level;
    event.irq = irq;
847
    ret = kvm_vm_ioctl(s, s->irq_set_ioctl, &event);
848
    if (ret < 0) {
849
        perror("kvm_set_irq");
850 851 852
        abort();
    }

853
    return (s->irq_set_ioctl == KVM_IRQ_LINE) ? 1 : event.status;
854 855 856
}

#ifdef KVM_CAP_IRQ_ROUTING
857 858 859 860 861
typedef struct KVMMSIRoute {
    struct kvm_irq_routing_entry kroute;
    QTAILQ_ENTRY(KVMMSIRoute) entry;
} KVMMSIRoute;

862 863 864 865 866
static void set_gsi(KVMState *s, unsigned int gsi)
{
    s->used_gsi_bitmap[gsi / 32] |= 1U << (gsi % 32);
}

867 868 869 870 871
static void clear_gsi(KVMState *s, unsigned int gsi)
{
    s->used_gsi_bitmap[gsi / 32] &= ~(1U << (gsi % 32));
}

872 873
static void kvm_init_irq_routing(KVMState *s)
{
874
    int gsi_count, i;
875 876 877 878 879 880

    gsi_count = kvm_check_extension(s, KVM_CAP_IRQ_ROUTING);
    if (gsi_count > 0) {
        unsigned int gsi_bits, i;

        /* Round up so we can search ints using ffs */
881
        gsi_bits = ALIGN(gsi_count, 32);
882
        s->used_gsi_bitmap = g_malloc0(gsi_bits / 8);
883
        s->gsi_count = gsi_count;
884 885 886 887 888 889 890 891 892 893

        /* Mark any over-allocated bits as already in use */
        for (i = gsi_count; i < gsi_bits; i++) {
            set_gsi(s, i);
        }
    }

    s->irq_routes = g_malloc0(sizeof(*s->irq_routes));
    s->nr_allocated_irq_routes = 0;

894 895 896 897
    if (!s->direct_msi) {
        for (i = 0; i < KVM_MSI_HASHTAB_SIZE; i++) {
            QTAILQ_INIT(&s->msi_hashtab[i]);
        }
898 899
    }

900 901 902
    kvm_arch_init_irq_routing(s);
}

903 904 905 906 907 908 909 910 911
static void kvm_irqchip_commit_routes(KVMState *s)
{
    int ret;

    s->irq_routes->flags = 0;
    ret = kvm_vm_ioctl(s, KVM_SET_GSI_ROUTING, s->irq_routes);
    assert(ret == 0);
}

912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936
static void kvm_add_routing_entry(KVMState *s,
                                  struct kvm_irq_routing_entry *entry)
{
    struct kvm_irq_routing_entry *new;
    int n, size;

    if (s->irq_routes->nr == s->nr_allocated_irq_routes) {
        n = s->nr_allocated_irq_routes * 2;
        if (n < 64) {
            n = 64;
        }
        size = sizeof(struct kvm_irq_routing);
        size += n * sizeof(*new);
        s->irq_routes = g_realloc(s->irq_routes, size);
        s->nr_allocated_irq_routes = n;
    }
    n = s->irq_routes->nr++;
    new = &s->irq_routes->entries[n];
    memset(new, 0, sizeof(*new));
    new->gsi = entry->gsi;
    new->type = entry->type;
    new->flags = entry->flags;
    new->u = entry->u;

    set_gsi(s, entry->gsi);
937 938

    kvm_irqchip_commit_routes(s);
939 940
}

941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964
static int kvm_update_routing_entry(KVMState *s,
                                    struct kvm_irq_routing_entry *new_entry)
{
    struct kvm_irq_routing_entry *entry;
    int n;

    for (n = 0; n < s->irq_routes->nr; n++) {
        entry = &s->irq_routes->entries[n];
        if (entry->gsi != new_entry->gsi) {
            continue;
        }

        entry->type = new_entry->type;
        entry->flags = new_entry->flags;
        entry->u = new_entry->u;

        kvm_irqchip_commit_routes(s);

        return 0;
    }

    return -ESRCH;
}

965
void kvm_irqchip_add_irq_route(KVMState *s, int irq, int irqchip, int pin)
966 967 968
{
    struct kvm_irq_routing_entry e;

969 970
    assert(pin < s->gsi_count);

971 972 973 974 975 976 977 978
    e.gsi = irq;
    e.type = KVM_IRQ_ROUTING_IRQCHIP;
    e.flags = 0;
    e.u.irqchip.irqchip = irqchip;
    e.u.irqchip.pin = pin;
    kvm_add_routing_entry(s, &e);
}

979
void kvm_irqchip_release_virq(KVMState *s, int virq)
980 981 982 983 984 985 986 987 988 989 990 991
{
    struct kvm_irq_routing_entry *e;
    int i;

    for (i = 0; i < s->irq_routes->nr; i++) {
        e = &s->irq_routes->entries[i];
        if (e->gsi == virq) {
            s->irq_routes->nr--;
            *e = s->irq_routes->entries[s->irq_routes->nr];
        }
    }
    clear_gsi(s, virq);
992 993

    kvm_irqchip_commit_routes(s);
994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033
}

static unsigned int kvm_hash_msi(uint32_t data)
{
    /* This is optimized for IA32 MSI layout. However, no other arch shall
     * repeat the mistake of not providing a direct MSI injection API. */
    return data & 0xff;
}

static void kvm_flush_dynamic_msi_routes(KVMState *s)
{
    KVMMSIRoute *route, *next;
    unsigned int hash;

    for (hash = 0; hash < KVM_MSI_HASHTAB_SIZE; hash++) {
        QTAILQ_FOREACH_SAFE(route, &s->msi_hashtab[hash], entry, next) {
            kvm_irqchip_release_virq(s, route->kroute.gsi);
            QTAILQ_REMOVE(&s->msi_hashtab[hash], route, entry);
            g_free(route);
        }
    }
}

static int kvm_irqchip_get_virq(KVMState *s)
{
    uint32_t *word = s->used_gsi_bitmap;
    int max_words = ALIGN(s->gsi_count, 32) / 32;
    int i, bit;
    bool retry = true;

again:
    /* Return the lowest unused GSI in the bitmap */
    for (i = 0; i < max_words; i++) {
        bit = ffs(~word[i]);
        if (!bit) {
            continue;
        }

        return bit - 1 + i * 32;
    }
1034
    if (!s->direct_msi && retry) {
1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059
        retry = false;
        kvm_flush_dynamic_msi_routes(s);
        goto again;
    }
    return -ENOSPC;

}

static KVMMSIRoute *kvm_lookup_msi_route(KVMState *s, MSIMessage msg)
{
    unsigned int hash = kvm_hash_msi(msg.data);
    KVMMSIRoute *route;

    QTAILQ_FOREACH(route, &s->msi_hashtab[hash], entry) {
        if (route->kroute.u.msi.address_lo == (uint32_t)msg.address &&
            route->kroute.u.msi.address_hi == (msg.address >> 32) &&
            route->kroute.u.msi.data == msg.data) {
            return route;
        }
    }
    return NULL;
}

int kvm_irqchip_send_msi(KVMState *s, MSIMessage msg)
{
1060
    struct kvm_msi msi;
1061 1062
    KVMMSIRoute *route;

1063 1064 1065 1066 1067 1068 1069 1070 1071 1072
    if (s->direct_msi) {
        msi.address_lo = (uint32_t)msg.address;
        msi.address_hi = msg.address >> 32;
        msi.data = msg.data;
        msi.flags = 0;
        memset(msi.pad, 0, sizeof(msi.pad));

        return kvm_vm_ioctl(s, KVM_SIGNAL_MSI, &msi);
    }

1073 1074
    route = kvm_lookup_msi_route(s, msg);
    if (!route) {
1075
        int virq;
1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097

        virq = kvm_irqchip_get_virq(s);
        if (virq < 0) {
            return virq;
        }

        route = g_malloc(sizeof(KVMMSIRoute));
        route->kroute.gsi = virq;
        route->kroute.type = KVM_IRQ_ROUTING_MSI;
        route->kroute.flags = 0;
        route->kroute.u.msi.address_lo = (uint32_t)msg.address;
        route->kroute.u.msi.address_hi = msg.address >> 32;
        route->kroute.u.msi.data = msg.data;

        kvm_add_routing_entry(s, &route->kroute);

        QTAILQ_INSERT_TAIL(&s->msi_hashtab[kvm_hash_msi(msg.data)], route,
                           entry);
    }

    assert(route->kroute.type == KVM_IRQ_ROUTING_MSI);

1098
    return kvm_set_irq(s, route->kroute.gsi, 1);
1099 1100
}

1101 1102 1103 1104 1105
int kvm_irqchip_add_msi_route(KVMState *s, MSIMessage msg)
{
    struct kvm_irq_routing_entry kroute;
    int virq;

1106
    if (!kvm_gsi_routing_enabled()) {
1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126
        return -ENOSYS;
    }

    virq = kvm_irqchip_get_virq(s);
    if (virq < 0) {
        return virq;
    }

    kroute.gsi = virq;
    kroute.type = KVM_IRQ_ROUTING_MSI;
    kroute.flags = 0;
    kroute.u.msi.address_lo = (uint32_t)msg.address;
    kroute.u.msi.address_hi = msg.address >> 32;
    kroute.u.msi.data = msg.data;

    kvm_add_routing_entry(s, &kroute);

    return virq;
}

1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144
int kvm_irqchip_update_msi_route(KVMState *s, int virq, MSIMessage msg)
{
    struct kvm_irq_routing_entry kroute;

    if (!kvm_irqchip_in_kernel()) {
        return -ENOSYS;
    }

    kroute.gsi = virq;
    kroute.type = KVM_IRQ_ROUTING_MSI;
    kroute.flags = 0;
    kroute.u.msi.address_lo = (uint32_t)msg.address;
    kroute.u.msi.address_hi = msg.address >> 32;
    kroute.u.msi.data = msg.data;

    return kvm_update_routing_entry(s, &kroute);
}

1145 1146 1147 1148 1149 1150 1151 1152
static int kvm_irqchip_assign_irqfd(KVMState *s, int fd, int virq, bool assign)
{
    struct kvm_irqfd irqfd = {
        .fd = fd,
        .gsi = virq,
        .flags = assign ? 0 : KVM_IRQFD_FLAG_DEASSIGN,
    };

1153
    if (!kvm_irqfds_enabled()) {
1154 1155 1156 1157 1158 1159
        return -ENOSYS;
    }

    return kvm_vm_ioctl(s, KVM_IRQFD, &irqfd);
}

1160 1161 1162 1163 1164
#else /* !KVM_CAP_IRQ_ROUTING */

static void kvm_init_irq_routing(KVMState *s)
{
}
1165

1166 1167 1168 1169
void kvm_irqchip_release_virq(KVMState *s, int virq)
{
}

1170 1171 1172 1173
int kvm_irqchip_send_msi(KVMState *s, MSIMessage msg)
{
    abort();
}
1174 1175 1176

int kvm_irqchip_add_msi_route(KVMState *s, MSIMessage msg)
{
1177
    return -ENOSYS;
1178
}
1179 1180 1181 1182 1183

static int kvm_irqchip_assign_irqfd(KVMState *s, int fd, int virq, bool assign)
{
    abort();
}
1184 1185
#endif /* !KVM_CAP_IRQ_ROUTING */

J
Jan Kiszka 已提交
1186
int kvm_irqchip_add_irqfd_notifier(KVMState *s, EventNotifier *n, int virq)
1187
{
J
Jan Kiszka 已提交
1188
    return kvm_irqchip_assign_irqfd(s, event_notifier_get_fd(n), virq, true);
1189 1190
}

J
Jan Kiszka 已提交
1191
int kvm_irqchip_remove_irqfd_notifier(KVMState *s, EventNotifier *n, int virq)
1192
{
J
Jan Kiszka 已提交
1193
    return kvm_irqchip_assign_irqfd(s, event_notifier_get_fd(n), virq, false);
1194 1195
}

1196 1197 1198 1199 1200 1201 1202
static int kvm_irqchip_create(KVMState *s)
{
    QemuOptsList *list = qemu_find_opts("machine");
    int ret;

    if (QTAILQ_EMPTY(&list->head) ||
        !qemu_opt_get_bool(QTAILQ_FIRST(&list->head),
1203
                           "kernel_irqchip", true) ||
1204 1205 1206 1207 1208 1209 1210 1211 1212 1213
        !kvm_check_extension(s, KVM_CAP_IRQCHIP)) {
        return 0;
    }

    ret = kvm_vm_ioctl(s, KVM_CREATE_IRQCHIP);
    if (ret < 0) {
        fprintf(stderr, "Create kernel irqchip failed\n");
        return ret;
    }

1214
    kvm_kernel_irqchip = true;
1215 1216 1217 1218
    /* If we have an in-kernel IRQ chip then we must have asynchronous
     * interrupt delivery (though the reverse is not necessarily true)
     */
    kvm_async_interrupts_allowed = true;
1219 1220 1221 1222 1223 1224

    kvm_init_irq_routing(s);

    return 0;
}

1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244
static int kvm_max_vcpus(KVMState *s)
{
    int ret;

    /* Find number of supported CPUs using the recommended
     * procedure from the kernel API documentation to cope with
     * older kernels that may be missing capabilities.
     */
    ret = kvm_check_extension(s, KVM_CAP_MAX_VCPUS);
    if (ret) {
        return ret;
    }
    ret = kvm_check_extension(s, KVM_CAP_NR_VCPUS);
    if (ret) {
        return ret;
    }

    return 4;
}

1245
int kvm_init(void)
A
aliguori 已提交
1246
{
1247 1248 1249
    static const char upgrade_note[] =
        "Please upgrade to at least kernel 2.6.29 or recent kvm-kmod\n"
        "(see http://sourceforge.net/projects/kvm).\n";
A
aliguori 已提交
1250
    KVMState *s;
1251
    const KVMCapabilityInfo *missing_cap;
A
aliguori 已提交
1252 1253
    int ret;
    int i;
1254
    int max_vcpus;
A
aliguori 已提交
1255

1256
    s = g_malloc0(sizeof(KVMState));
A
aliguori 已提交
1257

1258 1259 1260 1261 1262 1263 1264 1265
    /*
     * On systems where the kernel can support different base page
     * sizes, host page size may be different from TARGET_PAGE_SIZE,
     * even with KVM.  TARGET_PAGE_SIZE is assumed to be the minimum
     * page size for the system though.
     */
    assert(TARGET_PAGE_SIZE <= getpagesize());

1266
#ifdef KVM_CAP_SET_GUEST_DEBUG
B
Blue Swirl 已提交
1267
    QTAILQ_INIT(&s->kvm_sw_breakpoints);
1268
#endif
J
Jan Kiszka 已提交
1269
    for (i = 0; i < ARRAY_SIZE(s->slots); i++) {
A
aliguori 已提交
1270
        s->slots[i].slot = i;
J
Jan Kiszka 已提交
1271
    }
A
aliguori 已提交
1272
    s->vmfd = -1;
K
Kevin Wolf 已提交
1273
    s->fd = qemu_open("/dev/kvm", O_RDWR);
A
aliguori 已提交
1274 1275 1276 1277 1278 1279 1280 1281
    if (s->fd == -1) {
        fprintf(stderr, "Could not access KVM kernel module: %m\n");
        ret = -errno;
        goto err;
    }

    ret = kvm_ioctl(s, KVM_GET_API_VERSION, 0);
    if (ret < KVM_API_VERSION) {
J
Jan Kiszka 已提交
1282
        if (ret > 0) {
A
aliguori 已提交
1283
            ret = -EINVAL;
J
Jan Kiszka 已提交
1284
        }
A
aliguori 已提交
1285 1286 1287 1288 1289 1290 1291 1292 1293 1294
        fprintf(stderr, "kvm version too old\n");
        goto err;
    }

    if (ret > KVM_API_VERSION) {
        ret = -EINVAL;
        fprintf(stderr, "kvm version not supported\n");
        goto err;
    }

1295 1296 1297 1298 1299 1300 1301 1302
    max_vcpus = kvm_max_vcpus(s);
    if (smp_cpus > max_vcpus) {
        ret = -EINVAL;
        fprintf(stderr, "Number of SMP cpus requested (%d) exceeds max cpus "
                "supported by KVM (%d)\n", smp_cpus, max_vcpus);
        goto err;
    }

A
aliguori 已提交
1303
    s->vmfd = kvm_ioctl(s, KVM_CREATE_VM, 0);
1304 1305 1306 1307 1308
    if (s->vmfd < 0) {
#ifdef TARGET_S390X
        fprintf(stderr, "Please add the 'switch_amode' kernel parameter to "
                        "your host kernel command line\n");
#endif
1309
        ret = s->vmfd;
A
aliguori 已提交
1310
        goto err;
1311
    }
A
aliguori 已提交
1312

1313 1314 1315 1316
    missing_cap = kvm_check_extension_list(s, kvm_required_capabilites);
    if (!missing_cap) {
        missing_cap =
            kvm_check_extension_list(s, kvm_arch_required_capabilities);
A
aliguori 已提交
1317
    }
1318
    if (missing_cap) {
1319
        ret = -EINVAL;
1320 1321
        fprintf(stderr, "kvm does not support %s\n%s",
                missing_cap->name, upgrade_note);
1322 1323 1324
        goto err;
    }

1325
    s->coalesced_mmio = kvm_check_extension(s, KVM_CAP_COALESCED_MMIO);
A
aliguori 已提交
1326

1327
    s->broken_set_mem_region = 1;
1328
    ret = kvm_check_extension(s, KVM_CAP_JOIN_MEMORY_REGIONS_WORKS);
1329 1330 1331 1332
    if (ret > 0) {
        s->broken_set_mem_region = 0;
    }

1333 1334 1335 1336
#ifdef KVM_CAP_VCPU_EVENTS
    s->vcpu_events = kvm_check_extension(s, KVM_CAP_VCPU_EVENTS);
#endif

1337 1338 1339
    s->robust_singlestep =
        kvm_check_extension(s, KVM_CAP_X86_ROBUST_SINGLESTEP);

1340 1341 1342 1343
#ifdef KVM_CAP_DEBUGREGS
    s->debugregs = kvm_check_extension(s, KVM_CAP_DEBUGREGS);
#endif

1344 1345 1346 1347 1348 1349 1350 1351
#ifdef KVM_CAP_XSAVE
    s->xsave = kvm_check_extension(s, KVM_CAP_XSAVE);
#endif

#ifdef KVM_CAP_XCRS
    s->xcrs = kvm_check_extension(s, KVM_CAP_XCRS);
#endif

J
Jan Kiszka 已提交
1352 1353 1354 1355
#ifdef KVM_CAP_PIT_STATE2
    s->pit_state2 = kvm_check_extension(s, KVM_CAP_PIT_STATE2);
#endif

1356
#ifdef KVM_CAP_IRQ_ROUTING
1357
    s->direct_msi = (kvm_check_extension(s, KVM_CAP_SIGNAL_MSI) > 0);
1358
#endif
1359

1360 1361
    s->intx_set_mask = kvm_check_extension(s, KVM_CAP_PCI_2_3);

1362
    s->irq_set_ioctl = KVM_IRQ_LINE;
1363
    if (kvm_check_extension(s, KVM_CAP_IRQ_INJECT_STATUS)) {
1364
        s->irq_set_ioctl = KVM_IRQ_LINE_STATUS;
1365 1366
    }

1367
    ret = kvm_arch_init(s);
J
Jan Kiszka 已提交
1368
    if (ret < 0) {
A
aliguori 已提交
1369
        goto err;
J
Jan Kiszka 已提交
1370
    }
A
aliguori 已提交
1371

1372 1373 1374 1375 1376
    ret = kvm_irqchip_create(s);
    if (ret < 0) {
        goto err;
    }

A
aliguori 已提交
1377
    kvm_state = s;
1378 1379
    memory_listener_register(&kvm_memory_listener, &address_space_memory);
    memory_listener_register(&kvm_io_listener, &address_space_io);
A
aliguori 已提交
1380

1381 1382
    s->many_ioeventfds = kvm_check_many_ioeventfds();

1383 1384
    cpu_interrupt_handler = kvm_handle_interrupt;

A
aliguori 已提交
1385 1386 1387
    return 0;

err:
1388 1389 1390 1391 1392
    if (s->vmfd >= 0) {
        close(s->vmfd);
    }
    if (s->fd != -1) {
        close(s->fd);
A
aliguori 已提交
1393
    }
1394
    g_free(s);
A
aliguori 已提交
1395 1396 1397 1398

    return ret;
}

1399 1400
static void kvm_handle_io(uint16_t port, void *data, int direction, int size,
                          uint32_t count)
A
aliguori 已提交
1401 1402 1403 1404 1405 1406 1407 1408
{
    int i;
    uint8_t *ptr = data;

    for (i = 0; i < count; i++) {
        if (direction == KVM_EXIT_IO_IN) {
            switch (size) {
            case 1:
1409
                stb_p(ptr, cpu_inb(port));
A
aliguori 已提交
1410 1411
                break;
            case 2:
1412
                stw_p(ptr, cpu_inw(port));
A
aliguori 已提交
1413 1414
                break;
            case 4:
1415
                stl_p(ptr, cpu_inl(port));
A
aliguori 已提交
1416 1417 1418 1419 1420
                break;
            }
        } else {
            switch (size) {
            case 1:
1421
                cpu_outb(port, ldub_p(ptr));
A
aliguori 已提交
1422 1423
                break;
            case 2:
1424
                cpu_outw(port, lduw_p(ptr));
A
aliguori 已提交
1425 1426
                break;
            case 4:
1427
                cpu_outl(port, ldl_p(ptr));
A
aliguori 已提交
1428 1429 1430 1431 1432 1433 1434 1435
                break;
            }
        }

        ptr += size;
    }
}

1436
static int kvm_handle_internal_error(CPUArchState *env, struct kvm_run *run)
M
Marcelo Tosatti 已提交
1437
{
1438
    fprintf(stderr, "KVM internal error.");
M
Marcelo Tosatti 已提交
1439 1440 1441
    if (kvm_check_extension(kvm_state, KVM_CAP_INTERNAL_ERROR_DATA)) {
        int i;

1442
        fprintf(stderr, " Suberror: %d\n", run->internal.suberror);
M
Marcelo Tosatti 已提交
1443 1444 1445 1446
        for (i = 0; i < run->internal.ndata; ++i) {
            fprintf(stderr, "extra data[%d]: %"PRIx64"\n",
                    i, (uint64_t)run->internal.data[i]);
        }
1447 1448
    } else {
        fprintf(stderr, "\n");
M
Marcelo Tosatti 已提交
1449 1450 1451
    }
    if (run->internal.suberror == KVM_INTERNAL_ERROR_EMULATION) {
        fprintf(stderr, "emulation failure\n");
J
Jan Kiszka 已提交
1452
        if (!kvm_arch_stop_on_emulation_error(env)) {
1453
            cpu_dump_state(env, stderr, fprintf, CPU_DUMP_CODE);
1454
            return EXCP_INTERRUPT;
J
Jan Kiszka 已提交
1455
        }
M
Marcelo Tosatti 已提交
1456 1457 1458 1459
    }
    /* FIXME: Should trigger a qmp message to let management know
     * something went wrong.
     */
J
Jan Kiszka 已提交
1460
    return -1;
M
Marcelo Tosatti 已提交
1461 1462
}

1463
void kvm_flush_coalesced_mmio_buffer(void)
A
aliguori 已提交
1464 1465
{
    KVMState *s = kvm_state;
1466 1467 1468 1469 1470 1471 1472

    if (s->coalesced_flush_in_progress) {
        return;
    }

    s->coalesced_flush_in_progress = true;

1473 1474
    if (s->coalesced_mmio_ring) {
        struct kvm_coalesced_mmio_ring *ring = s->coalesced_mmio_ring;
A
aliguori 已提交
1475 1476 1477 1478 1479 1480
        while (ring->first != ring->last) {
            struct kvm_coalesced_mmio *ent;

            ent = &ring->coalesced_mmio[ring->first];

            cpu_physical_memory_write(ent->phys_addr, ent->data, ent->len);
1481
            smp_wmb();
A
aliguori 已提交
1482 1483 1484
            ring->first = (ring->first + 1) % KVM_COALESCED_MMIO_MAX;
        }
    }
1485 1486

    s->coalesced_flush_in_progress = false;
A
aliguori 已提交
1487 1488
}

1489
static void do_kvm_cpu_synchronize_state(void *_env)
1490
{
1491
    CPUArchState *env = _env;
1492

J
Jan Kiszka 已提交
1493
    if (!env->kvm_vcpu_dirty) {
1494
        kvm_arch_get_registers(env);
J
Jan Kiszka 已提交
1495
        env->kvm_vcpu_dirty = 1;
1496 1497 1498
    }
}

1499
void kvm_cpu_synchronize_state(CPUArchState *env)
1500
{
J
Jan Kiszka 已提交
1501
    if (!env->kvm_vcpu_dirty) {
1502
        run_on_cpu(env, do_kvm_cpu_synchronize_state, env);
J
Jan Kiszka 已提交
1503
    }
1504 1505
}

1506
void kvm_cpu_synchronize_post_reset(CPUArchState *env)
1507 1508 1509 1510 1511
{
    kvm_arch_put_registers(env, KVM_PUT_RESET_STATE);
    env->kvm_vcpu_dirty = 0;
}

1512
void kvm_cpu_synchronize_post_init(CPUArchState *env)
1513 1514 1515 1516 1517
{
    kvm_arch_put_registers(env, KVM_PUT_FULL_STATE);
    env->kvm_vcpu_dirty = 0;
}

1518
int kvm_cpu_exec(CPUArchState *env)
A
aliguori 已提交
1519 1520
{
    struct kvm_run *run = env->kvm_run;
1521
    int ret, run_ret;
A
aliguori 已提交
1522

1523
    DPRINTF("kvm_cpu_exec()\n");
A
aliguori 已提交
1524

1525
    if (kvm_arch_process_async_events(env)) {
1526
        env->exit_request = 0;
1527
        return EXCP_HLT;
1528
    }
M
Marcelo Tosatti 已提交
1529

1530
    do {
J
Jan Kiszka 已提交
1531
        if (env->kvm_vcpu_dirty) {
1532
            kvm_arch_put_registers(env, KVM_PUT_RUNTIME_STATE);
J
Jan Kiszka 已提交
1533
            env->kvm_vcpu_dirty = 0;
1534 1535
        }

1536
        kvm_arch_pre_run(env, run);
1537 1538 1539 1540 1541 1542 1543 1544 1545
        if (env->exit_request) {
            DPRINTF("interrupt exit requested\n");
            /*
             * KVM requires us to reenter the kernel after IO exits to complete
             * instruction emulation. This self-signal will ensure that we
             * leave ASAP again.
             */
            qemu_cpu_kick_self();
        }
1546
        qemu_mutex_unlock_iothread();
1547

1548
        run_ret = kvm_vcpu_ioctl(env, KVM_RUN, 0);
1549

1550
        qemu_mutex_lock_iothread();
A
aliguori 已提交
1551 1552
        kvm_arch_post_run(env, run);

1553
        if (run_ret < 0) {
1554 1555
            if (run_ret == -EINTR || run_ret == -EAGAIN) {
                DPRINTF("io window exit\n");
1556
                ret = EXCP_INTERRUPT;
1557 1558
                break;
            }
1559 1560
            fprintf(stderr, "error: kvm run failed %s\n",
                    strerror(-run_ret));
A
aliguori 已提交
1561 1562 1563 1564 1565
            abort();
        }

        switch (run->exit_reason) {
        case KVM_EXIT_IO:
1566
            DPRINTF("handle_io\n");
1567 1568 1569 1570 1571
            kvm_handle_io(run->io.port,
                          (uint8_t *)run + run->io.data_offset,
                          run->io.direction,
                          run->io.size,
                          run->io.count);
1572
            ret = 0;
A
aliguori 已提交
1573 1574
            break;
        case KVM_EXIT_MMIO:
1575
            DPRINTF("handle_mmio\n");
A
aliguori 已提交
1576 1577 1578 1579
            cpu_physical_memory_rw(run->mmio.phys_addr,
                                   run->mmio.data,
                                   run->mmio.len,
                                   run->mmio.is_write);
1580
            ret = 0;
A
aliguori 已提交
1581 1582
            break;
        case KVM_EXIT_IRQ_WINDOW_OPEN:
1583
            DPRINTF("irq_window_open\n");
1584
            ret = EXCP_INTERRUPT;
A
aliguori 已提交
1585 1586
            break;
        case KVM_EXIT_SHUTDOWN:
1587
            DPRINTF("shutdown\n");
A
aliguori 已提交
1588
            qemu_system_reset_request();
1589
            ret = EXCP_INTERRUPT;
A
aliguori 已提交
1590 1591
            break;
        case KVM_EXIT_UNKNOWN:
1592 1593
            fprintf(stderr, "KVM: unknown exit, hardware reason %" PRIx64 "\n",
                    (uint64_t)run->hw.hardware_exit_reason);
J
Jan Kiszka 已提交
1594
            ret = -1;
A
aliguori 已提交
1595
            break;
M
Marcelo Tosatti 已提交
1596
        case KVM_EXIT_INTERNAL_ERROR:
J
Jan Kiszka 已提交
1597
            ret = kvm_handle_internal_error(env, run);
M
Marcelo Tosatti 已提交
1598
            break;
A
aliguori 已提交
1599
        default:
1600
            DPRINTF("kvm_arch_handle_exit\n");
A
aliguori 已提交
1601 1602 1603
            ret = kvm_arch_handle_exit(env, run);
            break;
        }
1604
    } while (ret == 0);
A
aliguori 已提交
1605

J
Jan Kiszka 已提交
1606
    if (ret < 0) {
1607
        cpu_dump_state(env, stderr, fprintf, CPU_DUMP_CODE);
1608
        vm_stop(RUN_STATE_INTERNAL_ERROR);
A
aliguori 已提交
1609 1610
    }

1611
    env->exit_request = 0;
A
aliguori 已提交
1612 1613 1614
    return ret;
}

1615
int kvm_ioctl(KVMState *s, int type, ...)
A
aliguori 已提交
1616 1617
{
    int ret;
1618 1619
    void *arg;
    va_list ap;
A
aliguori 已提交
1620

1621 1622 1623 1624 1625
    va_start(ap, type);
    arg = va_arg(ap, void *);
    va_end(ap);

    ret = ioctl(s->fd, type, arg);
J
Jan Kiszka 已提交
1626
    if (ret == -1) {
A
aliguori 已提交
1627
        ret = -errno;
J
Jan Kiszka 已提交
1628
    }
A
aliguori 已提交
1629 1630 1631
    return ret;
}

1632
int kvm_vm_ioctl(KVMState *s, int type, ...)
A
aliguori 已提交
1633 1634
{
    int ret;
1635 1636 1637 1638 1639 1640
    void *arg;
    va_list ap;

    va_start(ap, type);
    arg = va_arg(ap, void *);
    va_end(ap);
A
aliguori 已提交
1641

1642
    ret = ioctl(s->vmfd, type, arg);
J
Jan Kiszka 已提交
1643
    if (ret == -1) {
A
aliguori 已提交
1644
        ret = -errno;
J
Jan Kiszka 已提交
1645
    }
A
aliguori 已提交
1646 1647 1648
    return ret;
}

1649
int kvm_vcpu_ioctl(CPUArchState *env, int type, ...)
A
aliguori 已提交
1650 1651
{
    int ret;
1652 1653 1654 1655 1656 1657
    void *arg;
    va_list ap;

    va_start(ap, type);
    arg = va_arg(ap, void *);
    va_end(ap);
A
aliguori 已提交
1658

1659
    ret = ioctl(env->kvm_fd, type, arg);
J
Jan Kiszka 已提交
1660
    if (ret == -1) {
A
aliguori 已提交
1661
        ret = -errno;
J
Jan Kiszka 已提交
1662
    }
A
aliguori 已提交
1663 1664
    return ret;
}
A
aliguori 已提交
1665 1666 1667

int kvm_has_sync_mmu(void)
{
1668
    return kvm_check_extension(kvm_state, KVM_CAP_SYNC_MMU);
A
aliguori 已提交
1669
}
1670

1671 1672 1673 1674 1675
int kvm_has_vcpu_events(void)
{
    return kvm_state->vcpu_events;
}

1676 1677 1678 1679 1680
int kvm_has_robust_singlestep(void)
{
    return kvm_state->robust_singlestep;
}

1681 1682 1683 1684 1685
int kvm_has_debugregs(void)
{
    return kvm_state->debugregs;
}

1686 1687 1688 1689 1690 1691 1692 1693 1694 1695
int kvm_has_xsave(void)
{
    return kvm_state->xsave;
}

int kvm_has_xcrs(void)
{
    return kvm_state->xcrs;
}

J
Jan Kiszka 已提交
1696 1697 1698 1699 1700
int kvm_has_pit_state2(void)
{
    return kvm_state->pit_state2;
}

1701 1702 1703 1704 1705 1706 1707 1708
int kvm_has_many_ioeventfds(void)
{
    if (!kvm_enabled()) {
        return 0;
    }
    return kvm_state->many_ioeventfds;
}

1709 1710
int kvm_has_gsi_routing(void)
{
A
Alexander Graf 已提交
1711
#ifdef KVM_CAP_IRQ_ROUTING
1712
    return kvm_check_extension(kvm_state, KVM_CAP_IRQ_ROUTING);
A
Alexander Graf 已提交
1713 1714 1715
#else
    return false;
#endif
1716 1717
}

1718 1719 1720 1721 1722
int kvm_has_intx_set_mask(void)
{
    return kvm_state->intx_set_mask;
}

1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735
void *kvm_vmalloc(ram_addr_t size)
{
#ifdef TARGET_S390X
    void *mem;

    mem = kvm_arch_vmalloc(size);
    if (mem) {
        return mem;
    }
#endif
    return qemu_vmalloc(size);
}

1736 1737
void kvm_setup_guest_memory(void *start, size_t size)
{
1738 1739 1740
#ifdef CONFIG_VALGRIND_H
    VALGRIND_MAKE_MEM_DEFINED(start, size);
#endif
1741
    if (!kvm_has_sync_mmu()) {
A
Andreas Färber 已提交
1742
        int ret = qemu_madvise(start, size, QEMU_MADV_DONTFORK);
1743 1744

        if (ret) {
A
Andreas Färber 已提交
1745 1746 1747
            perror("qemu_madvise");
            fprintf(stderr,
                    "Need MADV_DONTFORK in absence of synchronous KVM MMU\n");
1748 1749 1750 1751 1752
            exit(1);
        }
    }
}

1753
#ifdef KVM_CAP_SET_GUEST_DEBUG
1754
struct kvm_sw_breakpoint *kvm_find_sw_breakpoint(CPUArchState *env,
1755 1756 1757 1758
                                                 target_ulong pc)
{
    struct kvm_sw_breakpoint *bp;

B
Blue Swirl 已提交
1759
    QTAILQ_FOREACH(bp, &env->kvm_state->kvm_sw_breakpoints, entry) {
J
Jan Kiszka 已提交
1760
        if (bp->pc == pc) {
1761
            return bp;
J
Jan Kiszka 已提交
1762
        }
1763 1764 1765 1766
    }
    return NULL;
}

1767
int kvm_sw_breakpoints_active(CPUArchState *env)
1768
{
B
Blue Swirl 已提交
1769
    return !QTAILQ_EMPTY(&env->kvm_state->kvm_sw_breakpoints);
1770 1771
}

G
Glauber Costa 已提交
1772 1773
struct kvm_set_guest_debug_data {
    struct kvm_guest_debug dbg;
1774
    CPUArchState *env;
G
Glauber Costa 已提交
1775 1776 1777 1778 1779 1780
    int err;
};

static void kvm_invoke_set_guest_debug(void *data)
{
    struct kvm_set_guest_debug_data *dbg_data = data;
1781
    CPUArchState *env = dbg_data->env;
J
Jan Kiszka 已提交
1782 1783

    dbg_data->err = kvm_vcpu_ioctl(env, KVM_SET_GUEST_DEBUG, &dbg_data->dbg);
G
Glauber Costa 已提交
1784 1785
}

1786
int kvm_update_guest_debug(CPUArchState *env, unsigned long reinject_trap)
1787
{
G
Glauber Costa 已提交
1788
    struct kvm_set_guest_debug_data data;
1789

1790
    data.dbg.control = reinject_trap;
1791

1792 1793 1794
    if (env->singlestep_enabled) {
        data.dbg.control |= KVM_GUESTDBG_ENABLE | KVM_GUESTDBG_SINGLESTEP;
    }
G
Glauber Costa 已提交
1795 1796
    kvm_arch_update_guest_debug(env, &data.dbg);
    data.env = env;
1797

1798
    run_on_cpu(env, kvm_invoke_set_guest_debug, &data);
G
Glauber Costa 已提交
1799
    return data.err;
1800 1801
}

1802
int kvm_insert_breakpoint(CPUArchState *current_env, target_ulong addr,
1803 1804 1805
                          target_ulong len, int type)
{
    struct kvm_sw_breakpoint *bp;
1806
    CPUArchState *env;
1807 1808 1809 1810 1811 1812 1813 1814 1815
    int err;

    if (type == GDB_BREAKPOINT_SW) {
        bp = kvm_find_sw_breakpoint(current_env, addr);
        if (bp) {
            bp->use_count++;
            return 0;
        }

1816
        bp = g_malloc(sizeof(struct kvm_sw_breakpoint));
J
Jan Kiszka 已提交
1817
        if (!bp) {
1818
            return -ENOMEM;
J
Jan Kiszka 已提交
1819
        }
1820 1821 1822 1823 1824

        bp->pc = addr;
        bp->use_count = 1;
        err = kvm_arch_insert_sw_breakpoint(current_env, bp);
        if (err) {
1825
            g_free(bp);
1826 1827 1828
            return err;
        }

B
Blue Swirl 已提交
1829
        QTAILQ_INSERT_HEAD(&current_env->kvm_state->kvm_sw_breakpoints,
1830 1831 1832
                          bp, entry);
    } else {
        err = kvm_arch_insert_hw_breakpoint(addr, len, type);
J
Jan Kiszka 已提交
1833
        if (err) {
1834
            return err;
J
Jan Kiszka 已提交
1835
        }
1836 1837 1838 1839
    }

    for (env = first_cpu; env != NULL; env = env->next_cpu) {
        err = kvm_update_guest_debug(env, 0);
J
Jan Kiszka 已提交
1840
        if (err) {
1841
            return err;
J
Jan Kiszka 已提交
1842
        }
1843 1844 1845 1846
    }
    return 0;
}

1847
int kvm_remove_breakpoint(CPUArchState *current_env, target_ulong addr,
1848 1849 1850
                          target_ulong len, int type)
{
    struct kvm_sw_breakpoint *bp;
1851
    CPUArchState *env;
1852 1853 1854 1855
    int err;

    if (type == GDB_BREAKPOINT_SW) {
        bp = kvm_find_sw_breakpoint(current_env, addr);
J
Jan Kiszka 已提交
1856
        if (!bp) {
1857
            return -ENOENT;
J
Jan Kiszka 已提交
1858
        }
1859 1860 1861 1862 1863 1864 1865

        if (bp->use_count > 1) {
            bp->use_count--;
            return 0;
        }

        err = kvm_arch_remove_sw_breakpoint(current_env, bp);
J
Jan Kiszka 已提交
1866
        if (err) {
1867
            return err;
J
Jan Kiszka 已提交
1868
        }
1869

B
Blue Swirl 已提交
1870
        QTAILQ_REMOVE(&current_env->kvm_state->kvm_sw_breakpoints, bp, entry);
1871
        g_free(bp);
1872 1873
    } else {
        err = kvm_arch_remove_hw_breakpoint(addr, len, type);
J
Jan Kiszka 已提交
1874
        if (err) {
1875
            return err;
J
Jan Kiszka 已提交
1876
        }
1877 1878 1879 1880
    }

    for (env = first_cpu; env != NULL; env = env->next_cpu) {
        err = kvm_update_guest_debug(env, 0);
J
Jan Kiszka 已提交
1881
        if (err) {
1882
            return err;
J
Jan Kiszka 已提交
1883
        }
1884 1885 1886 1887
    }
    return 0;
}

1888
void kvm_remove_all_breakpoints(CPUArchState *current_env)
1889 1890 1891
{
    struct kvm_sw_breakpoint *bp, *next;
    KVMState *s = current_env->kvm_state;
1892
    CPUArchState *env;
1893

B
Blue Swirl 已提交
1894
    QTAILQ_FOREACH_SAFE(bp, &s->kvm_sw_breakpoints, entry, next) {
1895 1896 1897
        if (kvm_arch_remove_sw_breakpoint(current_env, bp) != 0) {
            /* Try harder to find a CPU that currently sees the breakpoint. */
            for (env = first_cpu; env != NULL; env = env->next_cpu) {
J
Jan Kiszka 已提交
1898
                if (kvm_arch_remove_sw_breakpoint(env, bp) == 0) {
1899
                    break;
J
Jan Kiszka 已提交
1900
                }
1901 1902 1903 1904 1905
            }
        }
    }
    kvm_arch_remove_all_hw_breakpoints();

J
Jan Kiszka 已提交
1906
    for (env = first_cpu; env != NULL; env = env->next_cpu) {
1907
        kvm_update_guest_debug(env, 0);
J
Jan Kiszka 已提交
1908
    }
1909 1910 1911 1912
}

#else /* !KVM_CAP_SET_GUEST_DEBUG */

1913
int kvm_update_guest_debug(CPUArchState *env, unsigned long reinject_trap)
1914 1915 1916 1917
{
    return -EINVAL;
}

1918
int kvm_insert_breakpoint(CPUArchState *current_env, target_ulong addr,
1919 1920 1921 1922 1923
                          target_ulong len, int type)
{
    return -EINVAL;
}

1924
int kvm_remove_breakpoint(CPUArchState *current_env, target_ulong addr,
1925 1926 1927 1928 1929
                          target_ulong len, int type)
{
    return -EINVAL;
}

1930
void kvm_remove_all_breakpoints(CPUArchState *current_env)
1931 1932 1933
{
}
#endif /* !KVM_CAP_SET_GUEST_DEBUG */
1934

1935
int kvm_set_signal_mask(CPUArchState *env, const sigset_t *sigset)
1936 1937 1938 1939
{
    struct kvm_signal_mask *sigmask;
    int r;

J
Jan Kiszka 已提交
1940
    if (!sigset) {
1941
        return kvm_vcpu_ioctl(env, KVM_SET_SIGNAL_MASK, NULL);
J
Jan Kiszka 已提交
1942
    }
1943

1944
    sigmask = g_malloc(sizeof(*sigmask) + sizeof(*sigset));
1945 1946 1947 1948

    sigmask->len = 8;
    memcpy(sigmask->sigset, sigset, sizeof(*sigset));
    r = kvm_vcpu_ioctl(env, KVM_SET_SIGNAL_MASK, sigmask);
1949
    g_free(sigmask);
1950 1951 1952

    return r;
}
1953

1954 1955
int kvm_set_ioeventfd_mmio(int fd, uint32_t addr, uint32_t val, bool assign,
                           uint32_t size)
1956 1957 1958 1959 1960 1961
{
    int ret;
    struct kvm_ioeventfd iofd;

    iofd.datamatch = val;
    iofd.addr = addr;
1962
    iofd.len = size;
1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982
    iofd.flags = KVM_IOEVENTFD_FLAG_DATAMATCH;
    iofd.fd = fd;

    if (!kvm_enabled()) {
        return -ENOSYS;
    }

    if (!assign) {
        iofd.flags |= KVM_IOEVENTFD_FLAG_DEASSIGN;
    }

    ret = kvm_vm_ioctl(kvm_state, KVM_IOEVENTFD, &iofd);

    if (ret < 0) {
        return -errno;
    }

    return 0;
}

1983 1984 1985 1986 1987 1988 1989 1990 1991 1992
int kvm_set_ioeventfd_pio_word(int fd, uint16_t addr, uint16_t val, bool assign)
{
    struct kvm_ioeventfd kick = {
        .datamatch = val,
        .addr = addr,
        .len = 2,
        .flags = KVM_IOEVENTFD_FLAG_DATAMATCH | KVM_IOEVENTFD_FLAG_PIO,
        .fd = fd,
    };
    int r;
J
Jan Kiszka 已提交
1993
    if (!kvm_enabled()) {
1994
        return -ENOSYS;
J
Jan Kiszka 已提交
1995 1996
    }
    if (!assign) {
1997
        kick.flags |= KVM_IOEVENTFD_FLAG_DEASSIGN;
J
Jan Kiszka 已提交
1998
    }
1999
    r = kvm_vm_ioctl(kvm_state, KVM_IOEVENTFD, &kick);
J
Jan Kiszka 已提交
2000
    if (r < 0) {
2001
        return r;
J
Jan Kiszka 已提交
2002
    }
2003
    return 0;
2004
}
2005

2006
int kvm_on_sigbus_vcpu(CPUArchState *env, int code, void *addr)
2007 2008 2009 2010 2011 2012 2013 2014
{
    return kvm_arch_on_sigbus_vcpu(env, code, addr);
}

int kvm_on_sigbus(int code, void *addr)
{
    return kvm_arch_on_sigbus(code, addr);
}