kvm-all.c 59.7 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 25 26
#include "qemu/atomic.h"
#include "qemu/option.h"
#include "qemu/config-file.h"
27
#include "sysemu/sysemu.h"
28
#include "sysemu/accel.h"
J
Jan Kiszka 已提交
29
#include "hw/hw.h"
30
#include "hw/pci/msi.h"
31
#include "hw/s390x/adapter.h"
32
#include "exec/gdbstub.h"
33
#include "sysemu/kvm.h"
34
#include "qemu/bswap.h"
35
#include "exec/memory.h"
36
#include "exec/ram_addr.h"
37
#include "exec/address-spaces.h"
38
#include "qemu/event_notifier.h"
39
#include "trace.h"
A
aliguori 已提交
40

41 42
#include "hw/boards.h"

43 44 45 46 47
/* This check must be after config-host.h is included */
#ifdef CONFIG_EVENTFD
#include <sys/eventfd.h>
#endif

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

A
aliguori 已提交
51 52 53
//#define DEBUG_KVM

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

61 62
#define KVM_MSI_HASHTAB_SIZE    256

A
aliguori 已提交
63 64
typedef struct KVMSlot
{
A
Avi Kivity 已提交
65
    hwaddr start_addr;
A
Anthony Liguori 已提交
66
    ram_addr_t memory_size;
67
    void *ram;
A
aliguori 已提交
68 69 70
    int slot;
    int flags;
} KVMSlot;
A
aliguori 已提交
71

72 73
typedef struct kvm_dirty_log KVMDirtyLog;

P
Paolo Bonzini 已提交
74
struct KVMState
A
aliguori 已提交
75
{
76 77
    AccelState parent_obj;

78 79
    KVMSlot *slots;
    int nr_slots;
A
aliguori 已提交
80 81
    int fd;
    int vmfd;
A
aliguori 已提交
82
    int coalesced_mmio;
83
    struct kvm_coalesced_mmio_ring *coalesced_mmio_ring;
84
    bool coalesced_flush_in_progress;
85
    int broken_set_mem_region;
86
    int migration_log;
87
    int vcpu_events;
88
    int robust_singlestep;
89
    int debugregs;
90 91 92
#ifdef KVM_CAP_SET_GUEST_DEBUG
    struct kvm_sw_breakpoint_head kvm_sw_breakpoints;
#endif
J
Jan Kiszka 已提交
93
    int pit_state2;
94
    int xsave, xcrs;
95
    int many_ioeventfds;
96
    int intx_set_mask;
97 98 99
    /* 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 */
100
    unsigned irq_set_ioctl;
101
    unsigned int sigmask_len;
102 103 104 105
#ifdef KVM_CAP_IRQ_ROUTING
    struct kvm_irq_routing *irq_routes;
    int nr_allocated_irq_routes;
    uint32_t *used_gsi_bitmap;
106
    unsigned int gsi_count;
107
    QTAILQ_HEAD(msi_hashtab, KVMMSIRoute) msi_hashtab[KVM_MSI_HASHTAB_SIZE];
108
    bool direct_msi;
109
#endif
P
Paolo Bonzini 已提交
110
};
A
aliguori 已提交
111

112 113
#define TYPE_KVM_ACCEL ACCEL_CLASS_NAME("kvm")

114 115 116
#define KVM_STATE(obj) \
    OBJECT_CHECK(KVMState, (obj), TYPE_KVM_ACCEL)

117
KVMState *kvm_state;
118
bool kvm_kernel_irqchip;
119
bool kvm_async_interrupts_allowed;
120
bool kvm_halt_in_kernel_allowed;
121
bool kvm_eventfds_allowed;
122
bool kvm_irqfds_allowed;
123
bool kvm_resamplefds_allowed;
124
bool kvm_msi_via_irqfd_allowed;
125
bool kvm_gsi_routing_allowed;
126
bool kvm_gsi_direct_mapping;
127
bool kvm_allowed;
128
bool kvm_readonly_mem_allowed;
129
bool kvm_vm_attributes_allowed;
A
aliguori 已提交
130

131 132 133 134 135 136
static const KVMCapabilityInfo kvm_required_capabilites[] = {
    KVM_CAP_INFO(USER_MEMORY),
    KVM_CAP_INFO(DESTROY_MEMORY_REGION_WORKS),
    KVM_CAP_LAST_INFO
};

137
static KVMSlot *kvm_get_free_slot(KVMState *s)
A
aliguori 已提交
138 139 140
{
    int i;

141
    for (i = 0; i < s->nr_slots; i++) {
J
Jan Kiszka 已提交
142
        if (s->slots[i].memory_size == 0) {
A
aliguori 已提交
143
            return &s->slots[i];
J
Jan Kiszka 已提交
144
        }
A
aliguori 已提交
145 146
    }

147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162
    return NULL;
}

bool kvm_has_free_slot(MachineState *ms)
{
    return kvm_get_free_slot(KVM_STATE(ms->accelerator));
}

static KVMSlot *kvm_alloc_slot(KVMState *s)
{
    KVMSlot *slot = kvm_get_free_slot(s);

    if (slot) {
        return slot;
    }

163 164 165 166 167
    fprintf(stderr, "%s: no free slot available\n", __func__);
    abort();
}

static KVMSlot *kvm_lookup_matching_slot(KVMState *s,
A
Avi Kivity 已提交
168 169
                                         hwaddr start_addr,
                                         hwaddr end_addr)
170 171 172
{
    int i;

173
    for (i = 0; i < s->nr_slots; i++) {
174 175 176 177 178 179 180 181
        KVMSlot *mem = &s->slots[i];

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

A
aliguori 已提交
182 183 184
    return NULL;
}

185 186 187 188
/*
 * Find overlapping slot with lowest start address
 */
static KVMSlot *kvm_lookup_overlapping_slot(KVMState *s,
A
Avi Kivity 已提交
189 190
                                            hwaddr start_addr,
                                            hwaddr end_addr)
A
aliguori 已提交
191
{
192
    KVMSlot *found = NULL;
A
aliguori 已提交
193 194
    int i;

195
    for (i = 0; i < s->nr_slots; i++) {
A
aliguori 已提交
196 197
        KVMSlot *mem = &s->slots[i];

198 199 200 201 202 203 204 205 206
        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 已提交
207 208
    }

209
    return found;
A
aliguori 已提交
210 211
}

212
int kvm_physical_memory_addr_from_host(KVMState *s, void *ram,
A
Avi Kivity 已提交
213
                                       hwaddr *phys_addr)
214 215 216
{
    int i;

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

220 221
        if (ram >= mem->ram && ram < mem->ram + mem->memory_size) {
            *phys_addr = mem->start_addr + (ram - mem->ram);
222 223 224 225 226 227 228
            return 1;
        }
    }

    return 0;
}

229 230 231 232 233 234
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;
235
    mem.userspace_addr = (unsigned long)slot->ram;
236
    mem.flags = slot->flags;
237 238 239
    if (s->migration_log) {
        mem.flags |= KVM_MEM_LOG_DIRTY_PAGES;
    }
240 241

    if (slot->memory_size && mem.flags & KVM_MEM_READONLY) {
242 243 244 245 246 247
        /* Set the slot size to 0 before setting the slot to the desired
         * value. This is needed based on KVM commit 75d61fbc. */
        mem.memory_size = 0;
        kvm_vm_ioctl(s, KVM_SET_USER_MEMORY_REGION, &mem);
    }
    mem.memory_size = slot->memory_size;
248 249 250
    return kvm_vm_ioctl(s, KVM_SET_USER_MEMORY_REGION, &mem);
}

251
int kvm_init_vcpu(CPUState *cpu)
A
aliguori 已提交
252 253 254 255 256
{
    KVMState *s = kvm_state;
    long mmap_size;
    int ret;

257
    DPRINTF("kvm_init_vcpu\n");
A
aliguori 已提交
258

259
    ret = kvm_vm_ioctl(s, KVM_CREATE_VCPU, (void *)kvm_arch_vcpu_id(cpu));
A
aliguori 已提交
260
    if (ret < 0) {
261
        DPRINTF("kvm_create_vcpu failed\n");
A
aliguori 已提交
262 263 264
        goto err;
    }

A
Andreas Färber 已提交
265
    cpu->kvm_fd = ret;
266
    cpu->kvm_state = s;
A
Andreas Färber 已提交
267
    cpu->kvm_vcpu_dirty = true;
A
aliguori 已提交
268 269 270

    mmap_size = kvm_ioctl(s, KVM_GET_VCPU_MMAP_SIZE, 0);
    if (mmap_size < 0) {
271
        ret = mmap_size;
272
        DPRINTF("KVM_GET_VCPU_MMAP_SIZE failed\n");
A
aliguori 已提交
273 274 275
        goto err;
    }

A
Andreas Färber 已提交
276
    cpu->kvm_run = mmap(NULL, mmap_size, PROT_READ | PROT_WRITE, MAP_SHARED,
A
Andreas Färber 已提交
277
                        cpu->kvm_fd, 0);
A
Andreas Färber 已提交
278
    if (cpu->kvm_run == MAP_FAILED) {
A
aliguori 已提交
279
        ret = -errno;
280
        DPRINTF("mmap'ing vcpu state failed\n");
A
aliguori 已提交
281 282 283
        goto err;
    }

J
Jan Kiszka 已提交
284 285
    if (s->coalesced_mmio && !s->coalesced_mmio_ring) {
        s->coalesced_mmio_ring =
A
Andreas Färber 已提交
286
            (void *)cpu->kvm_run + s->coalesced_mmio * PAGE_SIZE;
J
Jan Kiszka 已提交
287
    }
288

A
Andreas Färber 已提交
289
    ret = kvm_arch_init_vcpu(cpu);
A
aliguori 已提交
290 291 292 293
err:
    return ret;
}

294 295 296
/*
 * dirty pages logging control
 */
297

298
static int kvm_mem_flags(KVMState *s, bool log_dirty, bool readonly)
299
{
300 301 302 303 304 305
    int flags = 0;
    flags = log_dirty ? KVM_MEM_LOG_DIRTY_PAGES : 0;
    if (readonly && kvm_readonly_mem_allowed) {
        flags |= KVM_MEM_READONLY;
    }
    return flags;
306 307 308
}

static int kvm_slot_dirty_pages_log_change(KVMSlot *mem, bool log_dirty)
309 310
{
    KVMState *s = kvm_state;
311
    int flags, mask = KVM_MEM_LOG_DIRTY_PAGES;
312 313 314
    int old_flags;

    old_flags = mem->flags;
315

316
    flags = (mem->flags & ~mask) | kvm_mem_flags(s, log_dirty, false);
317 318
    mem->flags = flags;

319 320 321 322
    /* If nothing changed effectively, no need to issue ioctl */
    if (s->migration_log) {
        flags |= KVM_MEM_LOG_DIRTY_PAGES;
    }
323

324
    if (flags == old_flags) {
325
        return 0;
326 327
    }

328 329 330
    return kvm_set_user_memory_region(s, mem);
}

A
Avi Kivity 已提交
331
static int kvm_dirty_pages_log_change(hwaddr phys_addr,
332 333 334 335 336 337
                                      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)  {
338 339 340
        return 0;
    } else {
        return kvm_slot_dirty_pages_log_change(mem, log_dirty);
341 342 343
    }
}

A
Avi Kivity 已提交
344
static void kvm_log_start(MemoryListener *listener,
345 346
                          MemoryRegionSection *section,
                          int old, int new)
347
{
A
Avi Kivity 已提交
348 349
    int r;

350 351 352 353
    if (old != 0) {
        return;
    }

A
Avi Kivity 已提交
354
    r = kvm_dirty_pages_log_change(section->offset_within_address_space,
355
                                   int128_get64(section->size), true);
A
Avi Kivity 已提交
356 357 358
    if (r < 0) {
        abort();
    }
359 360
}

A
Avi Kivity 已提交
361
static void kvm_log_stop(MemoryListener *listener,
362 363
                          MemoryRegionSection *section,
                          int old, int new)
364
{
A
Avi Kivity 已提交
365 366
    int r;

367 368 369 370
    if (new != 0) {
        return;
    }

A
Avi Kivity 已提交
371
    r = kvm_dirty_pages_log_change(section->offset_within_address_space,
372
                                   int128_get64(section->size), false);
A
Avi Kivity 已提交
373 374 375
    if (r < 0) {
        abort();
    }
376 377
}

378
static int kvm_set_migration_log(bool enable)
379 380 381 382 383 384 385
{
    KVMState *s = kvm_state;
    KVMSlot *mem;
    int i, err;

    s->migration_log = enable;

386
    for (i = 0; i < s->nr_slots; i++) {
387 388
        mem = &s->slots[i];

389 390 391
        if (!mem->memory_size) {
            continue;
        }
392 393 394 395 396 397 398 399 400 401 402
        if (!!(mem->flags & KVM_MEM_LOG_DIRTY_PAGES) == enable) {
            continue;
        }
        err = kvm_set_user_memory_region(s, mem);
        if (err) {
            return err;
        }
    }
    return 0;
}

403
/* get kvm's dirty pages bitmap and update qemu's */
404 405
static int kvm_get_dirty_pages_log_range(MemoryRegionSection *section,
                                         unsigned long *bitmap)
A
Alexander Graf 已提交
406
{
407
    ram_addr_t start = section->offset_within_region + section->mr->ram_addr;
408 409 410
    ram_addr_t pages = int128_get64(section->size) / getpagesize();

    cpu_physical_memory_set_dirty_lebitmap(bitmap, start, pages);
411
    return 0;
A
Alexander Graf 已提交
412 413
}

414 415
#define ALIGN(x, y)  (((x)+(y)-1) & ~((y)-1))

416 417
/**
 * kvm_physical_sync_dirty_bitmap - Grab dirty bitmap from kernel space
418 419 420
 * This function updates qemu's dirty bitmap using
 * memory_region_set_dirty().  This means all bits are set
 * to dirty.
421
 *
422
 * @start_add: start of logged region.
423 424
 * @end_addr: end of logged region.
 */
425
static int kvm_physical_sync_dirty_bitmap(MemoryRegionSection *section)
426 427
{
    KVMState *s = kvm_state;
428
    unsigned long size, allocated_size = 0;
429
    KVMDirtyLog d = {};
430 431
    KVMSlot *mem;
    int ret = 0;
A
Avi Kivity 已提交
432
    hwaddr start_addr = section->offset_within_address_space;
433
    hwaddr end_addr = start_addr + int128_get64(section->size);
434

435 436 437 438 439 440
    d.dirty_bitmap = NULL;
    while (start_addr < end_addr) {
        mem = kvm_lookup_overlapping_slot(s, start_addr, end_addr);
        if (mem == NULL) {
            break;
        }
441

442 443 444 445 446 447 448 449 450 451 452 453 454 455
        /* 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;
456
        if (!d.dirty_bitmap) {
457
            d.dirty_bitmap = g_malloc(size);
458
        } else if (size > allocated_size) {
459
            d.dirty_bitmap = g_realloc(d.dirty_bitmap, size);
460 461 462
        }
        allocated_size = size;
        memset(d.dirty_bitmap, 0, allocated_size);
463

464
        d.slot = mem->slot;
465

466
        if (kvm_vm_ioctl(s, KVM_GET_DIRTY_LOG, &d) == -1) {
467
            DPRINTF("ioctl failed %d\n", errno);
468 469 470
            ret = -1;
            break;
        }
471

472
        kvm_get_dirty_pages_log_range(section, d.dirty_bitmap);
473
        start_addr = mem->start_addr + mem->memory_size;
474
    }
475
    g_free(d.dirty_bitmap);
476 477

    return ret;
478 479
}

480 481
static void kvm_coalesce_mmio_region(MemoryListener *listener,
                                     MemoryRegionSection *secion,
A
Avi Kivity 已提交
482
                                     hwaddr start, hwaddr size)
A
aliguori 已提交
483 484 485 486 487 488 489 490
{
    KVMState *s = kvm_state;

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

        zone.addr = start;
        zone.size = size;
491
        zone.pad = 0;
A
aliguori 已提交
492

493
        (void)kvm_vm_ioctl(s, KVM_REGISTER_COALESCED_MMIO, &zone);
A
aliguori 已提交
494 495 496
    }
}

497 498
static void kvm_uncoalesce_mmio_region(MemoryListener *listener,
                                       MemoryRegionSection *secion,
A
Avi Kivity 已提交
499
                                       hwaddr start, hwaddr size)
A
aliguori 已提交
500 501 502 503 504 505 506 507
{
    KVMState *s = kvm_state;

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

        zone.addr = start;
        zone.size = size;
508
        zone.pad = 0;
A
aliguori 已提交
509

510
        (void)kvm_vm_ioctl(s, KVM_UNREGISTER_COALESCED_MMIO, &zone);
A
aliguori 已提交
511 512 513
    }
}

514 515 516 517 518 519 520 521 522 523 524 525
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;
}

526 527 528 529 530 531 532 533 534 535 536 537 538
int kvm_vm_check_extension(KVMState *s, unsigned int extension)
{
    int ret;

    ret = kvm_vm_ioctl(s, KVM_CHECK_EXTENSION, extension);
    if (ret < 0) {
        /* VM wide version not implemented, use global one instead */
        ret = kvm_check_extension(s, extension);
    }

    return ret;
}

539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558
static uint32_t adjust_ioeventfd_endianness(uint32_t val, uint32_t size)
{
#if defined(HOST_WORDS_BIGENDIAN) != defined(TARGET_WORDS_BIGENDIAN)
    /* The kernel expects ioeventfd values in HOST_WORDS_BIGENDIAN
     * endianness, but the memory core hands them in target endianness.
     * For example, PPC is always treated as big-endian even if running
     * on KVM and on PPC64LE.  Correct here.
     */
    switch (size) {
    case 2:
        val = bswap16(val);
        break;
    case 4:
        val = bswap32(val);
        break;
    }
#endif
    return val;
}

559
static int kvm_set_ioeventfd_mmio(int fd, hwaddr addr, uint32_t val,
560
                                  bool assign, uint32_t size, bool datamatch)
M
Michael S. Tsirkin 已提交
561 562
{
    int ret;
T
Thomas Huth 已提交
563 564 565 566 567 568 569
    struct kvm_ioeventfd iofd = {
        .datamatch = datamatch ? adjust_ioeventfd_endianness(val, size) : 0,
        .addr = addr,
        .len = size,
        .flags = 0,
        .fd = fd,
    };
M
Michael S. Tsirkin 已提交
570 571 572 573 574

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

575 576 577
    if (datamatch) {
        iofd.flags |= KVM_IOEVENTFD_FLAG_DATAMATCH;
    }
M
Michael S. Tsirkin 已提交
578 579 580 581 582 583 584 585 586 587 588 589 590
    if (!assign) {
        iofd.flags |= KVM_IOEVENTFD_FLAG_DEASSIGN;
    }

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

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

    return 0;
}

591
static int kvm_set_ioeventfd_pio(int fd, uint16_t addr, uint16_t val,
592
                                 bool assign, uint32_t size, bool datamatch)
M
Michael S. Tsirkin 已提交
593 594
{
    struct kvm_ioeventfd kick = {
595
        .datamatch = datamatch ? adjust_ioeventfd_endianness(val, size) : 0,
M
Michael S. Tsirkin 已提交
596
        .addr = addr,
597
        .flags = KVM_IOEVENTFD_FLAG_PIO,
598
        .len = size,
M
Michael S. Tsirkin 已提交
599 600 601 602 603 604
        .fd = fd,
    };
    int r;
    if (!kvm_enabled()) {
        return -ENOSYS;
    }
605 606 607
    if (datamatch) {
        kick.flags |= KVM_IOEVENTFD_FLAG_DATAMATCH;
    }
M
Michael S. Tsirkin 已提交
608 609 610 611 612 613 614 615 616 617 618
    if (!assign) {
        kick.flags |= KVM_IOEVENTFD_FLAG_DEASSIGN;
    }
    r = kvm_vm_ioctl(kvm_state, KVM_IOEVENTFD, &kick);
    if (r < 0) {
        return r;
    }
    return 0;
}


619 620
static int kvm_check_many_ioeventfds(void)
{
621 622 623 624 625
    /* 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
626 627
     * can avoid creating too many ioeventfds.
     */
628
#if defined(CONFIG_EVENTFD)
629 630 631 632 633 634 635
    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;
        }
636
        ret = kvm_set_ioeventfd_pio(ioeventfds[i], 0, i, true, 2, true);
637 638 639 640 641 642 643 644 645 646
        if (ret < 0) {
            close(ioeventfds[i]);
            break;
        }
    }

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

    while (i-- > 0) {
647
        kvm_set_ioeventfd_pio(ioeventfds[i], 0, i, false, 2, true);
648 649 650 651 652 653 654 655
        close(ioeventfds[i]);
    }
    return ret;
#else
    return 0;
#endif
}

656 657 658 659 660 661 662 663 664 665 666 667
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 已提交
668
static void kvm_set_phys_mem(MemoryRegionSection *section, bool add)
669 670 671 672
{
    KVMState *s = kvm_state;
    KVMSlot *mem, old;
    int err;
A
Avi Kivity 已提交
673
    MemoryRegion *mr = section->mr;
674 675
    bool log_dirty =
        memory_region_get_dirty_log_mask(mr) & ~(1 << DIRTY_MEMORY_MIGRATION);
676 677
    bool writeable = !mr->readonly && !mr->rom_device;
    bool readonly_flag = mr->readonly || memory_region_is_romd(mr);
A
Avi Kivity 已提交
678
    hwaddr start_addr = section->offset_within_address_space;
679
    ram_addr_t size = int128_get64(section->size);
680
    void *ram = NULL;
A
Avi Kivity 已提交
681
    unsigned delta;
682

683
    /* kvm works in page size chunks, but the function may be called
684 685 686 687
       with sub-page size and unaligned start address. Pad the start
       address to next and truncate size to previous page boundary. */
    delta = (TARGET_PAGE_SIZE - (start_addr & ~TARGET_PAGE_MASK));
    delta &= ~TARGET_PAGE_MASK;
A
Avi Kivity 已提交
688 689 690 691 692 693 694 695 696
    if (delta > size) {
        return;
    }
    start_addr += delta;
    size -= delta;
    size &= TARGET_PAGE_MASK;
    if (!size || (start_addr & ~TARGET_PAGE_MASK)) {
        return;
    }
697

A
Avi Kivity 已提交
698
    if (!memory_region_is_ram(mr)) {
699 700 701 702 703 704 705
        if (writeable || !kvm_readonly_mem_allowed) {
            return;
        } else if (!mr->romd_mode) {
            /* If the memory device is not in romd_mode, then we actually want
             * to remove the kvm memory slot so all accesses will trap. */
            add = false;
        }
706 707
    }

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

710 711 712 713 714 715
    while (1) {
        mem = kvm_lookup_overlapping_slot(s, start_addr, start_addr + size);
        if (!mem) {
            break;
        }

A
Avi Kivity 已提交
716
        if (add && start_addr >= mem->start_addr &&
717
            (start_addr + size <= mem->start_addr + mem->memory_size) &&
718
            (ram - start_addr == mem->ram - mem->start_addr)) {
719
            /* The new slot fits into the existing one and comes with
720 721
             * identical parameters - update flags and done. */
            kvm_slot_dirty_pages_log_change(mem, log_dirty);
722 723 724 725 726
            return;
        }

        old = *mem;

727
        if ((mem->flags & KVM_MEM_LOG_DIRTY_PAGES) || s->migration_log) {
728 729 730
            kvm_physical_sync_dirty_bitmap(section);
        }

731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748
        /* 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 已提交
749
            old.start_addr == start_addr && old.memory_size < size && add) {
750 751 752
            mem = kvm_alloc_slot(s);
            mem->memory_size = old.memory_size;
            mem->start_addr = old.start_addr;
753
            mem->ram = old.ram;
754
            mem->flags = kvm_mem_flags(s, log_dirty, readonly_flag);
755 756 757 758 759 760 761 762 763

            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;
764
            ram += old.memory_size;
765 766 767 768 769 770 771 772 773
            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;
774
            mem->ram = old.ram;
775
            mem->flags =  kvm_mem_flags(s, log_dirty, readonly_flag);
776 777 778 779 780

            err = kvm_set_user_memory_region(s, mem);
            if (err) {
                fprintf(stderr, "%s: error registering prefix slot: %s\n",
                        __func__, strerror(-err));
781 782 783 784 785
#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
786 787 788 789 790 791 792 793 794 795 796 797
                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;
798
            mem->ram = old.ram + size_delta;
799
            mem->flags = kvm_mem_flags(s, log_dirty, readonly_flag);
800 801 802 803 804 805 806 807 808 809 810

            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 已提交
811
    if (!size) {
812
        return;
J
Jan Kiszka 已提交
813
    }
A
Avi Kivity 已提交
814
    if (!add) {
815
        return;
J
Jan Kiszka 已提交
816
    }
817 818 819
    mem = kvm_alloc_slot(s);
    mem->memory_size = size;
    mem->start_addr = start_addr;
820
    mem->ram = ram;
821
    mem->flags = kvm_mem_flags(s, log_dirty, readonly_flag);
822 823 824 825 826 827 828 829 830

    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 已提交
831 832 833
static void kvm_region_add(MemoryListener *listener,
                           MemoryRegionSection *section)
{
P
Paolo Bonzini 已提交
834
    memory_region_ref(section->mr);
A
Avi Kivity 已提交
835 836 837 838 839 840 841
    kvm_set_phys_mem(section, true);
}

static void kvm_region_del(MemoryListener *listener,
                           MemoryRegionSection *section)
{
    kvm_set_phys_mem(section, false);
P
Paolo Bonzini 已提交
842
    memory_region_unref(section->mr);
A
Avi Kivity 已提交
843 844 845 846
}

static void kvm_log_sync(MemoryListener *listener,
                         MemoryRegionSection *section)
847
{
A
Avi Kivity 已提交
848 849
    int r;

850
    r = kvm_physical_sync_dirty_bitmap(section);
A
Avi Kivity 已提交
851 852 853
    if (r < 0) {
        abort();
    }
854 855
}

A
Avi Kivity 已提交
856
static void kvm_log_global_start(struct MemoryListener *listener)
857
{
A
Avi Kivity 已提交
858 859 860 861
    int r;

    r = kvm_set_migration_log(1);
    assert(r >= 0);
862 863
}

A
Avi Kivity 已提交
864
static void kvm_log_global_stop(struct MemoryListener *listener)
865
{
A
Avi Kivity 已提交
866 867 868 869
    int r;

    r = kvm_set_migration_log(0);
    assert(r >= 0);
870 871
}

872 873 874 875 876 877
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);
878 879
    int r;

880
    r = kvm_set_ioeventfd_mmio(fd, section->offset_within_address_space,
881 882
                               data, true, int128_get64(section->size),
                               match_data);
883
    if (r < 0) {
884 885
        fprintf(stderr, "%s: error adding ioeventfd: %s\n",
                __func__, strerror(-r));
886 887 888 889
        abort();
    }
}

890 891 892 893
static void kvm_mem_ioeventfd_del(MemoryListener *listener,
                                  MemoryRegionSection *section,
                                  bool match_data, uint64_t data,
                                  EventNotifier *e)
894
{
895
    int fd = event_notifier_get_fd(e);
896 897
    int r;

898
    r = kvm_set_ioeventfd_mmio(fd, section->offset_within_address_space,
899 900
                               data, false, int128_get64(section->size),
                               match_data);
901 902 903 904 905
    if (r < 0) {
        abort();
    }
}

906 907 908 909
static void kvm_io_ioeventfd_add(MemoryListener *listener,
                                 MemoryRegionSection *section,
                                 bool match_data, uint64_t data,
                                 EventNotifier *e)
910
{
911
    int fd = event_notifier_get_fd(e);
912 913
    int r;

914
    r = kvm_set_ioeventfd_pio(fd, section->offset_within_address_space,
915 916
                              data, true, int128_get64(section->size),
                              match_data);
917
    if (r < 0) {
918 919
        fprintf(stderr, "%s: error adding ioeventfd: %s\n",
                __func__, strerror(-r));
920 921 922 923
        abort();
    }
}

924 925 926 927
static void kvm_io_ioeventfd_del(MemoryListener *listener,
                                 MemoryRegionSection *section,
                                 bool match_data, uint64_t data,
                                 EventNotifier *e)
928 929

{
930
    int fd = event_notifier_get_fd(e);
931 932
    int r;

933
    r = kvm_set_ioeventfd_pio(fd, section->offset_within_address_space,
934 935
                              data, false, int128_get64(section->size),
                              match_data);
936 937 938 939 940
    if (r < 0) {
        abort();
    }
}

A
Avi Kivity 已提交
941 942 943
static MemoryListener kvm_memory_listener = {
    .region_add = kvm_region_add,
    .region_del = kvm_region_del,
944 945
    .log_start = kvm_log_start,
    .log_stop = kvm_log_stop,
A
Avi Kivity 已提交
946 947 948
    .log_sync = kvm_log_sync,
    .log_global_start = kvm_log_global_start,
    .log_global_stop = kvm_log_global_stop,
949 950
    .eventfd_add = kvm_mem_ioeventfd_add,
    .eventfd_del = kvm_mem_ioeventfd_del,
951 952
    .coalesced_mmio_add = kvm_coalesce_mmio_region,
    .coalesced_mmio_del = kvm_uncoalesce_mmio_region,
953 954 955 956 957 958
    .priority = 10,
};

static MemoryListener kvm_io_listener = {
    .eventfd_add = kvm_io_ioeventfd_add,
    .eventfd_del = kvm_io_ioeventfd_del,
959
    .priority = 10,
960 961
};

962
static void kvm_handle_interrupt(CPUState *cpu, int mask)
963
{
964
    cpu->interrupt_request |= mask;
965

966
    if (!qemu_cpu_is_self(cpu)) {
967
        qemu_cpu_kick(cpu);
968 969 970
    }
}

971
int kvm_set_irq(KVMState *s, int irq, int level)
972 973 974 975
{
    struct kvm_irq_level event;
    int ret;

976
    assert(kvm_async_interrupts_enabled());
977 978 979

    event.level = level;
    event.irq = irq;
980
    ret = kvm_vm_ioctl(s, s->irq_set_ioctl, &event);
981
    if (ret < 0) {
982
        perror("kvm_set_irq");
983 984 985
        abort();
    }

986
    return (s->irq_set_ioctl == KVM_IRQ_LINE) ? 1 : event.status;
987 988 989
}

#ifdef KVM_CAP_IRQ_ROUTING
990 991 992 993 994
typedef struct KVMMSIRoute {
    struct kvm_irq_routing_entry kroute;
    QTAILQ_ENTRY(KVMMSIRoute) entry;
} KVMMSIRoute;

995 996 997 998 999
static void set_gsi(KVMState *s, unsigned int gsi)
{
    s->used_gsi_bitmap[gsi / 32] |= 1U << (gsi % 32);
}

1000 1001 1002 1003 1004
static void clear_gsi(KVMState *s, unsigned int gsi)
{
    s->used_gsi_bitmap[gsi / 32] &= ~(1U << (gsi % 32));
}

1005
void kvm_init_irq_routing(KVMState *s)
1006
{
1007
    int gsi_count, i;
1008

A
Alexander Graf 已提交
1009
    gsi_count = kvm_check_extension(s, KVM_CAP_IRQ_ROUTING) - 1;
1010 1011 1012 1013
    if (gsi_count > 0) {
        unsigned int gsi_bits, i;

        /* Round up so we can search ints using ffs */
1014
        gsi_bits = ALIGN(gsi_count, 32);
1015
        s->used_gsi_bitmap = g_malloc0(gsi_bits / 8);
1016
        s->gsi_count = gsi_count;
1017 1018 1019 1020 1021 1022 1023 1024 1025 1026

        /* 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;

1027 1028 1029 1030
    if (!s->direct_msi) {
        for (i = 0; i < KVM_MSI_HASHTAB_SIZE; i++) {
            QTAILQ_INIT(&s->msi_hashtab[i]);
        }
1031 1032
    }

1033 1034 1035
    kvm_arch_init_irq_routing(s);
}

1036
void kvm_irqchip_commit_routes(KVMState *s)
1037 1038 1039 1040 1041 1042 1043 1044
{
    int ret;

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

1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062
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];
1063 1064

    *new = *entry;
1065 1066 1067 1068

    set_gsi(s, entry->gsi);
}

1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080
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;
        }

1081 1082 1083 1084
        if(!memcmp(entry, new_entry, sizeof *entry)) {
            return 0;
        }

1085
        *entry = *new_entry;
1086 1087 1088 1089 1090 1091 1092 1093 1094

        kvm_irqchip_commit_routes(s);

        return 0;
    }

    return -ESRCH;
}

1095
void kvm_irqchip_add_irq_route(KVMState *s, int irq, int irqchip, int pin)
1096
{
1097
    struct kvm_irq_routing_entry e = {};
1098

1099 1100
    assert(pin < s->gsi_count);

1101 1102 1103 1104 1105 1106 1107 1108
    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);
}

1109
void kvm_irqchip_release_virq(KVMState *s, int virq)
1110 1111 1112 1113
{
    struct kvm_irq_routing_entry *e;
    int i;

1114 1115 1116 1117
    if (kvm_gsi_direct_mapping()) {
        return;
    }

1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152
    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);
}

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;
1153
    int i, zeroes;
1154 1155 1156 1157 1158
    bool retry = true;

again:
    /* Return the lowest unused GSI in the bitmap */
    for (i = 0; i < max_words; i++) {
1159 1160
        zeroes = ctz32(~word[i]);
        if (zeroes == 32) {
1161 1162 1163
            continue;
        }

1164
        return zeroes + i * 32;
1165
    }
1166
    if (!s->direct_msi && retry) {
1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182
        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) &&
1183
            route->kroute.u.msi.data == le32_to_cpu(msg.data)) {
1184 1185 1186 1187 1188 1189 1190 1191
            return route;
        }
    }
    return NULL;
}

int kvm_irqchip_send_msi(KVMState *s, MSIMessage msg)
{
1192
    struct kvm_msi msi;
1193 1194
    KVMMSIRoute *route;

1195 1196 1197
    if (s->direct_msi) {
        msi.address_lo = (uint32_t)msg.address;
        msi.address_hi = msg.address >> 32;
1198
        msi.data = le32_to_cpu(msg.data);
1199 1200 1201 1202 1203 1204
        msi.flags = 0;
        memset(msi.pad, 0, sizeof(msi.pad));

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

1205 1206
    route = kvm_lookup_msi_route(s, msg);
    if (!route) {
1207
        int virq;
1208 1209 1210 1211 1212 1213

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

1214
        route = g_malloc0(sizeof(KVMMSIRoute));
1215 1216 1217 1218 1219
        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;
1220
        route->kroute.u.msi.data = le32_to_cpu(msg.data);
1221 1222

        kvm_add_routing_entry(s, &route->kroute);
1223
        kvm_irqchip_commit_routes(s);
1224 1225 1226 1227 1228 1229 1230

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

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

1231
    return kvm_set_irq(s, route->kroute.gsi, 1);
1232 1233
}

1234 1235
int kvm_irqchip_add_msi_route(KVMState *s, MSIMessage msg)
{
1236
    struct kvm_irq_routing_entry kroute = {};
1237 1238
    int virq;

1239
    if (kvm_gsi_direct_mapping()) {
1240
        return kvm_arch_msi_data_to_gsi(msg.data);
1241 1242
    }

1243
    if (!kvm_gsi_routing_enabled()) {
1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256
        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;
1257
    kroute.u.msi.data = le32_to_cpu(msg.data);
1258 1259 1260 1261
    if (kvm_arch_fixup_msi_route(&kroute, msg.address, msg.data)) {
        kvm_irqchip_release_virq(s, virq);
        return -EINVAL;
    }
1262 1263

    kvm_add_routing_entry(s, &kroute);
1264
    kvm_irqchip_commit_routes(s);
1265 1266 1267 1268

    return virq;
}

1269 1270
int kvm_irqchip_update_msi_route(KVMState *s, int virq, MSIMessage msg)
{
1271
    struct kvm_irq_routing_entry kroute = {};
1272

1273 1274 1275 1276
    if (kvm_gsi_direct_mapping()) {
        return 0;
    }

1277 1278 1279 1280 1281 1282 1283 1284 1285
    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;
1286
    kroute.u.msi.data = le32_to_cpu(msg.data);
1287 1288 1289
    if (kvm_arch_fixup_msi_route(&kroute, msg.address, msg.data)) {
        return -EINVAL;
    }
1290 1291 1292 1293

    return kvm_update_routing_entry(s, &kroute);
}

1294 1295
static int kvm_irqchip_assign_irqfd(KVMState *s, int fd, int rfd, int virq,
                                    bool assign)
1296 1297 1298 1299 1300 1301 1302
{
    struct kvm_irqfd irqfd = {
        .fd = fd,
        .gsi = virq,
        .flags = assign ? 0 : KVM_IRQFD_FLAG_DEASSIGN,
    };

1303 1304 1305 1306 1307
    if (rfd != -1) {
        irqfd.flags |= KVM_IRQFD_FLAG_RESAMPLE;
        irqfd.resamplefd = rfd;
    }

1308
    if (!kvm_irqfds_enabled()) {
1309 1310 1311 1312 1313 1314
        return -ENOSYS;
    }

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

1315 1316
int kvm_irqchip_add_adapter_route(KVMState *s, AdapterInfo *adapter)
{
1317
    struct kvm_irq_routing_entry kroute = {};
1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343
    int virq;

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

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

    kroute.gsi = virq;
    kroute.type = KVM_IRQ_ROUTING_S390_ADAPTER;
    kroute.flags = 0;
    kroute.u.adapter.summary_addr = adapter->summary_addr;
    kroute.u.adapter.ind_addr = adapter->ind_addr;
    kroute.u.adapter.summary_offset = adapter->summary_offset;
    kroute.u.adapter.ind_offset = adapter->ind_offset;
    kroute.u.adapter.adapter_id = adapter->adapter_id;

    kvm_add_routing_entry(s, &kroute);
    kvm_irqchip_commit_routes(s);

    return virq;
}

1344 1345
#else /* !KVM_CAP_IRQ_ROUTING */

1346
void kvm_init_irq_routing(KVMState *s)
1347 1348
{
}
1349

1350 1351 1352 1353
void kvm_irqchip_release_virq(KVMState *s, int virq)
{
}

1354 1355 1356 1357
int kvm_irqchip_send_msi(KVMState *s, MSIMessage msg)
{
    abort();
}
1358 1359 1360

int kvm_irqchip_add_msi_route(KVMState *s, MSIMessage msg)
{
1361
    return -ENOSYS;
1362
}
1363

1364 1365 1366 1367 1368
int kvm_irqchip_add_adapter_route(KVMState *s, AdapterInfo *adapter)
{
    return -ENOSYS;
}

1369 1370 1371 1372
static int kvm_irqchip_assign_irqfd(KVMState *s, int fd, int virq, bool assign)
{
    abort();
}
1373 1374 1375 1376 1377

int kvm_irqchip_update_msi_route(KVMState *s, int virq, MSIMessage msg)
{
    return -ENOSYS;
}
1378 1379
#endif /* !KVM_CAP_IRQ_ROUTING */

1380 1381
int kvm_irqchip_add_irqfd_notifier(KVMState *s, EventNotifier *n,
                                   EventNotifier *rn, int virq)
1382
{
1383 1384
    return kvm_irqchip_assign_irqfd(s, event_notifier_get_fd(n),
           rn ? event_notifier_get_fd(rn) : -1, virq, true);
1385 1386
}

J
Jan Kiszka 已提交
1387
int kvm_irqchip_remove_irqfd_notifier(KVMState *s, EventNotifier *n, int virq)
1388
{
1389 1390
    return kvm_irqchip_assign_irqfd(s, event_notifier_get_fd(n), -1, virq,
           false);
1391 1392
}

1393
static int kvm_irqchip_create(MachineState *machine, KVMState *s)
1394 1395 1396
{
    int ret;

1397
    if (!machine_kernel_irqchip_allowed(machine) ||
1398 1399
        (!kvm_check_extension(s, KVM_CAP_IRQCHIP) &&
         (kvm_vm_enable_cap(s, KVM_CAP_S390_IRQCHIP, 0) < 0))) {
1400 1401 1402
        return 0;
    }

1403 1404 1405
    /* First probe and see if there's a arch-specific hook to create the
     * in-kernel irqchip for us */
    ret = kvm_arch_irqchip_create(s);
1406 1407
    if (ret < 0) {
        return ret;
1408 1409 1410 1411 1412 1413
    } else if (ret == 0) {
        ret = kvm_vm_ioctl(s, KVM_CREATE_IRQCHIP);
        if (ret < 0) {
            fprintf(stderr, "Create kernel irqchip failed\n");
            return ret;
        }
1414 1415
    }

1416
    kvm_kernel_irqchip = true;
1417 1418 1419 1420
    /* 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;
1421
    kvm_halt_in_kernel_allowed = true;
1422 1423 1424 1425 1426 1427

    kvm_init_irq_routing(s);

    return 0;
}

1428 1429 1430 1431 1432
/* Find number of supported CPUs using the recommended
 * procedure from the kernel API documentation to cope with
 * older kernels that may be missing capabilities.
 */
static int kvm_recommended_vcpus(KVMState *s)
1433
{
1434 1435 1436
    int ret = kvm_check_extension(s, KVM_CAP_NR_VCPUS);
    return (ret) ? ret : 4;
}
1437

1438 1439 1440 1441
static int kvm_max_vcpus(KVMState *s)
{
    int ret = kvm_check_extension(s, KVM_CAP_MAX_VCPUS);
    return (ret) ? ret : kvm_recommended_vcpus(s);
1442 1443
}

1444
static int kvm_init(MachineState *ms)
A
aliguori 已提交
1445
{
1446
    MachineClass *mc = MACHINE_GET_CLASS(ms);
1447 1448 1449
    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";
1450 1451 1452 1453 1454 1455 1456 1457 1458
    struct {
        const char *name;
        int num;
    } num_cpus[] = {
        { "SMP",          smp_cpus },
        { "hotpluggable", max_cpus },
        { NULL, }
    }, *nc = num_cpus;
    int soft_vcpus_limit, hard_vcpus_limit;
A
aliguori 已提交
1459
    KVMState *s;
1460
    const KVMCapabilityInfo *missing_cap;
A
aliguori 已提交
1461
    int ret;
1462 1463
    int i, type = 0;
    const char *kvm_type;
A
aliguori 已提交
1464

1465
    s = KVM_STATE(ms->accelerator);
A
aliguori 已提交
1466

1467 1468 1469 1470 1471 1472 1473
    /*
     * 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());
1474
    page_size_init();
1475

1476 1477
    s->sigmask_len = 8;

1478
#ifdef KVM_CAP_SET_GUEST_DEBUG
B
Blue Swirl 已提交
1479
    QTAILQ_INIT(&s->kvm_sw_breakpoints);
1480
#endif
A
aliguori 已提交
1481
    s->vmfd = -1;
K
Kevin Wolf 已提交
1482
    s->fd = qemu_open("/dev/kvm", O_RDWR);
A
aliguori 已提交
1483 1484 1485 1486 1487 1488 1489 1490
    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) {
1491
        if (ret >= 0) {
A
aliguori 已提交
1492
            ret = -EINVAL;
J
Jan Kiszka 已提交
1493
        }
A
aliguori 已提交
1494 1495 1496 1497 1498 1499 1500 1501 1502 1503
        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;
    }

1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516
    s->nr_slots = kvm_check_extension(s, KVM_CAP_NR_MEMSLOTS);

    /* If unspecified, use the default value */
    if (!s->nr_slots) {
        s->nr_slots = 32;
    }

    s->slots = g_malloc0(s->nr_slots * sizeof(KVMSlot));

    for (i = 0; i < s->nr_slots; i++) {
        s->slots[i].slot = i;
    }

1517 1518 1519
    /* check the vcpu limits */
    soft_vcpus_limit = kvm_recommended_vcpus(s);
    hard_vcpus_limit = kvm_max_vcpus(s);
1520

1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531
    while (nc->name) {
        if (nc->num > soft_vcpus_limit) {
            fprintf(stderr,
                    "Warning: Number of %s cpus requested (%d) exceeds "
                    "the recommended cpus supported by KVM (%d)\n",
                    nc->name, nc->num, soft_vcpus_limit);

            if (nc->num > hard_vcpus_limit) {
                fprintf(stderr, "Number of %s cpus requested (%d) exceeds "
                        "the maximum cpus supported by KVM (%d)\n",
                        nc->name, nc->num, hard_vcpus_limit);
1532
                exit(1);
1533 1534 1535
            }
        }
        nc++;
1536 1537
    }

1538
    kvm_type = qemu_opt_get(qemu_get_machine_opts(), "kvm-type");
1539 1540
    if (mc->kvm_type) {
        type = mc->kvm_type(kvm_type);
1541
    } else if (kvm_type) {
1542
        ret = -EINVAL;
1543 1544 1545 1546
        fprintf(stderr, "Invalid argument kvm-type=%s\n", kvm_type);
        goto err;
    }

T
thomas knych 已提交
1547
    do {
1548
        ret = kvm_ioctl(s, KVM_CREATE_VM, type);
T
thomas knych 已提交
1549 1550 1551
    } while (ret == -EINTR);

    if (ret < 0) {
1552
        fprintf(stderr, "ioctl(KVM_CREATE_VM) failed: %d %s\n", -ret,
T
thomas knych 已提交
1553 1554
                strerror(-ret));

1555
#ifdef TARGET_S390X
1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566
        if (ret == -EINVAL) {
            fprintf(stderr,
                    "Host kernel setup problem detected. Please verify:\n");
            fprintf(stderr, "- for kernels supporting the switch_amode or"
                    " user_mode parameters, whether\n");
            fprintf(stderr,
                    "  user space is running in primary address space\n");
            fprintf(stderr,
                    "- for kernels supporting the vm.allocate_pgste sysctl, "
                    "whether it is enabled\n");
        }
1567
#endif
A
aliguori 已提交
1568
        goto err;
1569
    }
A
aliguori 已提交
1570

T
thomas knych 已提交
1571
    s->vmfd = ret;
1572 1573 1574 1575
    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 已提交
1576
    }
1577
    if (missing_cap) {
1578
        ret = -EINVAL;
1579 1580
        fprintf(stderr, "kvm does not support %s\n%s",
                missing_cap->name, upgrade_note);
1581 1582 1583
        goto err;
    }

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

1586
    s->broken_set_mem_region = 1;
1587
    ret = kvm_check_extension(s, KVM_CAP_JOIN_MEMORY_REGIONS_WORKS);
1588 1589 1590 1591
    if (ret > 0) {
        s->broken_set_mem_region = 0;
    }

1592 1593 1594 1595
#ifdef KVM_CAP_VCPU_EVENTS
    s->vcpu_events = kvm_check_extension(s, KVM_CAP_VCPU_EVENTS);
#endif

1596 1597 1598
    s->robust_singlestep =
        kvm_check_extension(s, KVM_CAP_X86_ROBUST_SINGLESTEP);

1599 1600 1601 1602
#ifdef KVM_CAP_DEBUGREGS
    s->debugregs = kvm_check_extension(s, KVM_CAP_DEBUGREGS);
#endif

1603 1604 1605 1606 1607 1608 1609 1610
#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 已提交
1611 1612 1613 1614
#ifdef KVM_CAP_PIT_STATE2
    s->pit_state2 = kvm_check_extension(s, KVM_CAP_PIT_STATE2);
#endif

1615
#ifdef KVM_CAP_IRQ_ROUTING
1616
    s->direct_msi = (kvm_check_extension(s, KVM_CAP_SIGNAL_MSI) > 0);
1617
#endif
1618

1619 1620
    s->intx_set_mask = kvm_check_extension(s, KVM_CAP_PCI_2_3);

1621
    s->irq_set_ioctl = KVM_IRQ_LINE;
1622
    if (kvm_check_extension(s, KVM_CAP_IRQ_INJECT_STATUS)) {
1623
        s->irq_set_ioctl = KVM_IRQ_LINE_STATUS;
1624 1625
    }

1626 1627 1628 1629 1630
#ifdef KVM_CAP_READONLY_MEM
    kvm_readonly_mem_allowed =
        (kvm_check_extension(s, KVM_CAP_READONLY_MEM) > 0);
#endif

1631 1632 1633
    kvm_eventfds_allowed =
        (kvm_check_extension(s, KVM_CAP_IOEVENTFD) > 0);

1634 1635 1636 1637 1638 1639
    kvm_irqfds_allowed =
        (kvm_check_extension(s, KVM_CAP_IRQFD) > 0);

    kvm_resamplefds_allowed =
        (kvm_check_extension(s, KVM_CAP_IRQFD_RESAMPLE) > 0);

1640 1641 1642
    kvm_vm_attributes_allowed =
        (kvm_check_extension(s, KVM_CAP_VM_ATTRIBUTES) > 0);

1643
    ret = kvm_arch_init(ms, s);
J
Jan Kiszka 已提交
1644
    if (ret < 0) {
A
aliguori 已提交
1645
        goto err;
J
Jan Kiszka 已提交
1646
    }
A
aliguori 已提交
1647

1648
    ret = kvm_irqchip_create(ms, s);
1649 1650 1651 1652
    if (ret < 0) {
        goto err;
    }

A
aliguori 已提交
1653
    kvm_state = s;
1654 1655
    memory_listener_register(&kvm_memory_listener, &address_space_memory);
    memory_listener_register(&kvm_io_listener, &address_space_io);
A
aliguori 已提交
1656

1657 1658
    s->many_ioeventfds = kvm_check_many_ioeventfds();

1659 1660
    cpu_interrupt_handler = kvm_handle_interrupt;

A
aliguori 已提交
1661 1662 1663
    return 0;

err:
1664
    assert(ret < 0);
1665 1666 1667 1668 1669
    if (s->vmfd >= 0) {
        close(s->vmfd);
    }
    if (s->fd != -1) {
        close(s->fd);
A
aliguori 已提交
1670
    }
1671
    g_free(s->slots);
A
aliguori 已提交
1672 1673 1674 1675

    return ret;
}

1676 1677 1678 1679 1680
void kvm_set_sigmask_len(KVMState *s, unsigned int sigmask_len)
{
    s->sigmask_len = sigmask_len;
}

1681 1682
static void kvm_handle_io(uint16_t port, MemTxAttrs attrs, void *data, int direction,
                          int size, uint32_t count)
A
aliguori 已提交
1683 1684 1685 1686 1687
{
    int i;
    uint8_t *ptr = data;

    for (i = 0; i < count; i++) {
1688
        address_space_rw(&address_space_io, port, attrs,
1689
                         ptr, size,
J
Jan Kiszka 已提交
1690
                         direction == KVM_EXIT_IO_OUT);
A
aliguori 已提交
1691 1692 1693 1694
        ptr += size;
    }
}

1695
static int kvm_handle_internal_error(CPUState *cpu, struct kvm_run *run)
M
Marcelo Tosatti 已提交
1696
{
1697 1698 1699
    fprintf(stderr, "KVM internal error. Suberror: %d\n",
            run->internal.suberror);

M
Marcelo Tosatti 已提交
1700 1701 1702 1703 1704 1705 1706 1707 1708 1709
    if (kvm_check_extension(kvm_state, KVM_CAP_INTERNAL_ERROR_DATA)) {
        int i;

        for (i = 0; i < run->internal.ndata; ++i) {
            fprintf(stderr, "extra data[%d]: %"PRIx64"\n",
                    i, (uint64_t)run->internal.data[i]);
        }
    }
    if (run->internal.suberror == KVM_INTERNAL_ERROR_EMULATION) {
        fprintf(stderr, "emulation failure\n");
A
Andreas Färber 已提交
1710
        if (!kvm_arch_stop_on_emulation_error(cpu)) {
1711
            cpu_dump_state(cpu, stderr, fprintf, CPU_DUMP_CODE);
1712
            return EXCP_INTERRUPT;
J
Jan Kiszka 已提交
1713
        }
M
Marcelo Tosatti 已提交
1714 1715 1716 1717
    }
    /* FIXME: Should trigger a qmp message to let management know
     * something went wrong.
     */
J
Jan Kiszka 已提交
1718
    return -1;
M
Marcelo Tosatti 已提交
1719 1720
}

1721
void kvm_flush_coalesced_mmio_buffer(void)
A
aliguori 已提交
1722 1723
{
    KVMState *s = kvm_state;
1724 1725 1726 1727 1728 1729 1730

    if (s->coalesced_flush_in_progress) {
        return;
    }

    s->coalesced_flush_in_progress = true;

1731 1732
    if (s->coalesced_mmio_ring) {
        struct kvm_coalesced_mmio_ring *ring = s->coalesced_mmio_ring;
A
aliguori 已提交
1733 1734 1735 1736 1737 1738
        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);
1739
            smp_wmb();
A
aliguori 已提交
1740 1741 1742
            ring->first = (ring->first + 1) % KVM_COALESCED_MMIO_MAX;
        }
    }
1743 1744

    s->coalesced_flush_in_progress = false;
A
aliguori 已提交
1745 1746
}

A
Andreas Färber 已提交
1747
static void do_kvm_cpu_synchronize_state(void *arg)
1748
{
A
Andreas Färber 已提交
1749
    CPUState *cpu = arg;
1750

A
Andreas Färber 已提交
1751 1752 1753
    if (!cpu->kvm_vcpu_dirty) {
        kvm_arch_get_registers(cpu);
        cpu->kvm_vcpu_dirty = true;
1754 1755 1756
    }
}

1757
void kvm_cpu_synchronize_state(CPUState *cpu)
1758
{
A
Andreas Färber 已提交
1759 1760
    if (!cpu->kvm_vcpu_dirty) {
        run_on_cpu(cpu, do_kvm_cpu_synchronize_state, cpu);
J
Jan Kiszka 已提交
1761
    }
1762 1763
}

1764
static void do_kvm_cpu_synchronize_post_reset(void *arg)
1765
{
1766 1767
    CPUState *cpu = arg;

A
Andreas Färber 已提交
1768 1769
    kvm_arch_put_registers(cpu, KVM_PUT_RESET_STATE);
    cpu->kvm_vcpu_dirty = false;
1770 1771
}

1772 1773 1774 1775 1776 1777
void kvm_cpu_synchronize_post_reset(CPUState *cpu)
{
    run_on_cpu(cpu, do_kvm_cpu_synchronize_post_reset, cpu);
}

static void do_kvm_cpu_synchronize_post_init(void *arg)
1778
{
1779 1780
    CPUState *cpu = arg;

A
Andreas Färber 已提交
1781 1782
    kvm_arch_put_registers(cpu, KVM_PUT_FULL_STATE);
    cpu->kvm_vcpu_dirty = false;
1783 1784
}

1785 1786 1787 1788 1789
void kvm_cpu_synchronize_post_init(CPUState *cpu)
{
    run_on_cpu(cpu, do_kvm_cpu_synchronize_post_init, cpu);
}

M
Marcelo Tosatti 已提交
1790 1791 1792 1793 1794
void kvm_cpu_clean_state(CPUState *cpu)
{
    cpu->kvm_vcpu_dirty = false;
}

1795
int kvm_cpu_exec(CPUState *cpu)
A
aliguori 已提交
1796
{
A
Andreas Färber 已提交
1797
    struct kvm_run *run = cpu->kvm_run;
1798
    int ret, run_ret;
A
aliguori 已提交
1799

1800
    DPRINTF("kvm_cpu_exec()\n");
A
aliguori 已提交
1801

A
Andreas Färber 已提交
1802
    if (kvm_arch_process_async_events(cpu)) {
1803
        cpu->exit_request = 0;
1804
        return EXCP_HLT;
1805
    }
M
Marcelo Tosatti 已提交
1806

1807
    do {
1808 1809
        MemTxAttrs attrs;

A
Andreas Färber 已提交
1810 1811 1812
        if (cpu->kvm_vcpu_dirty) {
            kvm_arch_put_registers(cpu, KVM_PUT_RUNTIME_STATE);
            cpu->kvm_vcpu_dirty = false;
1813 1814
        }

A
Andreas Färber 已提交
1815
        kvm_arch_pre_run(cpu, run);
1816
        if (cpu->exit_request) {
1817 1818 1819 1820 1821 1822 1823 1824
            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();
        }
1825
        qemu_mutex_unlock_iothread();
1826

1827
        run_ret = kvm_vcpu_ioctl(cpu, KVM_RUN, 0);
1828

1829
        qemu_mutex_lock_iothread();
1830
        attrs = kvm_arch_post_run(cpu, run);
A
aliguori 已提交
1831

1832
        if (run_ret < 0) {
1833 1834
            if (run_ret == -EINTR || run_ret == -EAGAIN) {
                DPRINTF("io window exit\n");
1835
                ret = EXCP_INTERRUPT;
1836 1837
                break;
            }
1838 1839
            fprintf(stderr, "error: kvm run failed %s\n",
                    strerror(-run_ret));
1840 1841 1842 1843 1844 1845 1846 1847
#ifdef TARGET_PPC
            if (run_ret == -EBUSY) {
                fprintf(stderr,
                        "This is probably because your SMT is enabled.\n"
                        "VCPU can only run on primary threads with all "
                        "secondary threads offline.\n");
            }
#endif
1848 1849
            ret = -1;
            break;
A
aliguori 已提交
1850 1851
        }

1852
        trace_kvm_run_exit(cpu->cpu_index, run->exit_reason);
A
aliguori 已提交
1853 1854
        switch (run->exit_reason) {
        case KVM_EXIT_IO:
1855
            DPRINTF("handle_io\n");
1856
            kvm_handle_io(run->io.port, attrs,
1857 1858 1859 1860
                          (uint8_t *)run + run->io.data_offset,
                          run->io.direction,
                          run->io.size,
                          run->io.count);
1861
            ret = 0;
A
aliguori 已提交
1862 1863
            break;
        case KVM_EXIT_MMIO:
1864
            DPRINTF("handle_mmio\n");
1865 1866 1867 1868 1869
            address_space_rw(&address_space_memory,
                             run->mmio.phys_addr, attrs,
                             run->mmio.data,
                             run->mmio.len,
                             run->mmio.is_write);
1870
            ret = 0;
A
aliguori 已提交
1871 1872
            break;
        case KVM_EXIT_IRQ_WINDOW_OPEN:
1873
            DPRINTF("irq_window_open\n");
1874
            ret = EXCP_INTERRUPT;
A
aliguori 已提交
1875 1876
            break;
        case KVM_EXIT_SHUTDOWN:
1877
            DPRINTF("shutdown\n");
A
aliguori 已提交
1878
            qemu_system_reset_request();
1879
            ret = EXCP_INTERRUPT;
A
aliguori 已提交
1880 1881
            break;
        case KVM_EXIT_UNKNOWN:
1882 1883
            fprintf(stderr, "KVM: unknown exit, hardware reason %" PRIx64 "\n",
                    (uint64_t)run->hw.hardware_exit_reason);
J
Jan Kiszka 已提交
1884
            ret = -1;
A
aliguori 已提交
1885
            break;
M
Marcelo Tosatti 已提交
1886
        case KVM_EXIT_INTERNAL_ERROR:
1887
            ret = kvm_handle_internal_error(cpu, run);
M
Marcelo Tosatti 已提交
1888
            break;
1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904
        case KVM_EXIT_SYSTEM_EVENT:
            switch (run->system_event.type) {
            case KVM_SYSTEM_EVENT_SHUTDOWN:
                qemu_system_shutdown_request();
                ret = EXCP_INTERRUPT;
                break;
            case KVM_SYSTEM_EVENT_RESET:
                qemu_system_reset_request();
                ret = EXCP_INTERRUPT;
                break;
            default:
                DPRINTF("kvm_arch_handle_exit\n");
                ret = kvm_arch_handle_exit(cpu, run);
                break;
            }
            break;
A
aliguori 已提交
1905
        default:
1906
            DPRINTF("kvm_arch_handle_exit\n");
A
Andreas Färber 已提交
1907
            ret = kvm_arch_handle_exit(cpu, run);
A
aliguori 已提交
1908 1909
            break;
        }
1910
    } while (ret == 0);
A
aliguori 已提交
1911

J
Jan Kiszka 已提交
1912
    if (ret < 0) {
1913
        cpu_dump_state(cpu, stderr, fprintf, CPU_DUMP_CODE);
1914
        vm_stop(RUN_STATE_INTERNAL_ERROR);
A
aliguori 已提交
1915 1916
    }

1917
    cpu->exit_request = 0;
A
aliguori 已提交
1918 1919 1920
    return ret;
}

1921
int kvm_ioctl(KVMState *s, int type, ...)
A
aliguori 已提交
1922 1923
{
    int ret;
1924 1925
    void *arg;
    va_list ap;
A
aliguori 已提交
1926

1927 1928 1929 1930
    va_start(ap, type);
    arg = va_arg(ap, void *);
    va_end(ap);

1931
    trace_kvm_ioctl(type, arg);
1932
    ret = ioctl(s->fd, type, arg);
J
Jan Kiszka 已提交
1933
    if (ret == -1) {
A
aliguori 已提交
1934
        ret = -errno;
J
Jan Kiszka 已提交
1935
    }
A
aliguori 已提交
1936 1937 1938
    return ret;
}

1939
int kvm_vm_ioctl(KVMState *s, int type, ...)
A
aliguori 已提交
1940 1941
{
    int ret;
1942 1943 1944 1945 1946 1947
    void *arg;
    va_list ap;

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

1949
    trace_kvm_vm_ioctl(type, arg);
1950
    ret = ioctl(s->vmfd, type, arg);
J
Jan Kiszka 已提交
1951
    if (ret == -1) {
A
aliguori 已提交
1952
        ret = -errno;
J
Jan Kiszka 已提交
1953
    }
A
aliguori 已提交
1954 1955 1956
    return ret;
}

1957
int kvm_vcpu_ioctl(CPUState *cpu, int type, ...)
A
aliguori 已提交
1958 1959
{
    int ret;
1960 1961 1962 1963 1964 1965
    void *arg;
    va_list ap;

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

1967
    trace_kvm_vcpu_ioctl(cpu->cpu_index, type, arg);
A
Andreas Färber 已提交
1968
    ret = ioctl(cpu->kvm_fd, type, arg);
J
Jan Kiszka 已提交
1969
    if (ret == -1) {
A
aliguori 已提交
1970
        ret = -errno;
J
Jan Kiszka 已提交
1971
    }
A
aliguori 已提交
1972 1973
    return ret;
}
A
aliguori 已提交
1974

1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992
int kvm_device_ioctl(int fd, int type, ...)
{
    int ret;
    void *arg;
    va_list ap;

    va_start(ap, type);
    arg = va_arg(ap, void *);
    va_end(ap);

    trace_kvm_device_ioctl(fd, type, arg);
    ret = ioctl(fd, type, arg);
    if (ret == -1) {
        ret = -errno;
    }
    return ret;
}

1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009
int kvm_vm_check_attr(KVMState *s, uint32_t group, uint64_t attr)
{
    int ret;
    struct kvm_device_attr attribute = {
        .group = group,
        .attr = attr,
    };

    if (!kvm_vm_attributes_allowed) {
        return 0;
    }

    ret = kvm_vm_ioctl(s, KVM_HAS_DEVICE_ATTR, &attribute);
    /* kvm returns 0 on success for HAS_DEVICE_ATTR */
    return ret ? 0 : 1;
}

A
aliguori 已提交
2010 2011
int kvm_has_sync_mmu(void)
{
2012
    return kvm_check_extension(kvm_state, KVM_CAP_SYNC_MMU);
A
aliguori 已提交
2013
}
2014

2015 2016 2017 2018 2019
int kvm_has_vcpu_events(void)
{
    return kvm_state->vcpu_events;
}

2020 2021 2022 2023 2024
int kvm_has_robust_singlestep(void)
{
    return kvm_state->robust_singlestep;
}

2025 2026 2027 2028 2029
int kvm_has_debugregs(void)
{
    return kvm_state->debugregs;
}

2030 2031 2032 2033 2034 2035 2036 2037 2038 2039
int kvm_has_xsave(void)
{
    return kvm_state->xsave;
}

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

J
Jan Kiszka 已提交
2040 2041 2042 2043 2044
int kvm_has_pit_state2(void)
{
    return kvm_state->pit_state2;
}

2045 2046 2047 2048 2049 2050 2051 2052
int kvm_has_many_ioeventfds(void)
{
    if (!kvm_enabled()) {
        return 0;
    }
    return kvm_state->many_ioeventfds;
}

2053 2054
int kvm_has_gsi_routing(void)
{
A
Alexander Graf 已提交
2055
#ifdef KVM_CAP_IRQ_ROUTING
2056
    return kvm_check_extension(kvm_state, KVM_CAP_IRQ_ROUTING);
A
Alexander Graf 已提交
2057 2058 2059
#else
    return false;
#endif
2060 2061
}

2062 2063 2064 2065 2066
int kvm_has_intx_set_mask(void)
{
    return kvm_state->intx_set_mask;
}

2067 2068 2069
void kvm_setup_guest_memory(void *start, size_t size)
{
    if (!kvm_has_sync_mmu()) {
A
Andreas Färber 已提交
2070
        int ret = qemu_madvise(start, size, QEMU_MADV_DONTFORK);
2071 2072

        if (ret) {
A
Andreas Färber 已提交
2073 2074 2075
            perror("qemu_madvise");
            fprintf(stderr,
                    "Need MADV_DONTFORK in absence of synchronous KVM MMU\n");
2076 2077 2078 2079 2080
            exit(1);
        }
    }
}

2081
#ifdef KVM_CAP_SET_GUEST_DEBUG
2082
struct kvm_sw_breakpoint *kvm_find_sw_breakpoint(CPUState *cpu,
2083 2084 2085 2086
                                                 target_ulong pc)
{
    struct kvm_sw_breakpoint *bp;

2087
    QTAILQ_FOREACH(bp, &cpu->kvm_state->kvm_sw_breakpoints, entry) {
J
Jan Kiszka 已提交
2088
        if (bp->pc == pc) {
2089
            return bp;
J
Jan Kiszka 已提交
2090
        }
2091 2092 2093 2094
    }
    return NULL;
}

2095
int kvm_sw_breakpoints_active(CPUState *cpu)
2096
{
2097
    return !QTAILQ_EMPTY(&cpu->kvm_state->kvm_sw_breakpoints);
2098 2099
}

G
Glauber Costa 已提交
2100 2101
struct kvm_set_guest_debug_data {
    struct kvm_guest_debug dbg;
2102
    CPUState *cpu;
G
Glauber Costa 已提交
2103 2104 2105 2106 2107 2108
    int err;
};

static void kvm_invoke_set_guest_debug(void *data)
{
    struct kvm_set_guest_debug_data *dbg_data = data;
J
Jan Kiszka 已提交
2109

2110 2111
    dbg_data->err = kvm_vcpu_ioctl(dbg_data->cpu, KVM_SET_GUEST_DEBUG,
                                   &dbg_data->dbg);
G
Glauber Costa 已提交
2112 2113
}

2114
int kvm_update_guest_debug(CPUState *cpu, unsigned long reinject_trap)
2115
{
G
Glauber Costa 已提交
2116
    struct kvm_set_guest_debug_data data;
2117

2118
    data.dbg.control = reinject_trap;
2119

2120
    if (cpu->singlestep_enabled) {
2121 2122
        data.dbg.control |= KVM_GUESTDBG_ENABLE | KVM_GUESTDBG_SINGLESTEP;
    }
A
Andreas Färber 已提交
2123
    kvm_arch_update_guest_debug(cpu, &data.dbg);
2124
    data.cpu = cpu;
2125

2126
    run_on_cpu(cpu, kvm_invoke_set_guest_debug, &data);
G
Glauber Costa 已提交
2127
    return data.err;
2128 2129
}

2130
int kvm_insert_breakpoint(CPUState *cpu, target_ulong addr,
2131 2132 2133 2134 2135 2136
                          target_ulong len, int type)
{
    struct kvm_sw_breakpoint *bp;
    int err;

    if (type == GDB_BREAKPOINT_SW) {
2137
        bp = kvm_find_sw_breakpoint(cpu, addr);
2138 2139 2140 2141 2142
        if (bp) {
            bp->use_count++;
            return 0;
        }

2143
        bp = g_malloc(sizeof(struct kvm_sw_breakpoint));
2144 2145
        bp->pc = addr;
        bp->use_count = 1;
2146
        err = kvm_arch_insert_sw_breakpoint(cpu, bp);
2147
        if (err) {
2148
            g_free(bp);
2149 2150 2151
            return err;
        }

2152
        QTAILQ_INSERT_HEAD(&cpu->kvm_state->kvm_sw_breakpoints, bp, entry);
2153 2154
    } else {
        err = kvm_arch_insert_hw_breakpoint(addr, len, type);
J
Jan Kiszka 已提交
2155
        if (err) {
2156
            return err;
J
Jan Kiszka 已提交
2157
        }
2158 2159
    }

A
Andreas Färber 已提交
2160
    CPU_FOREACH(cpu) {
2161
        err = kvm_update_guest_debug(cpu, 0);
J
Jan Kiszka 已提交
2162
        if (err) {
2163
            return err;
J
Jan Kiszka 已提交
2164
        }
2165 2166 2167 2168
    }
    return 0;
}

2169
int kvm_remove_breakpoint(CPUState *cpu, target_ulong addr,
2170 2171 2172 2173 2174 2175
                          target_ulong len, int type)
{
    struct kvm_sw_breakpoint *bp;
    int err;

    if (type == GDB_BREAKPOINT_SW) {
2176
        bp = kvm_find_sw_breakpoint(cpu, addr);
J
Jan Kiszka 已提交
2177
        if (!bp) {
2178
            return -ENOENT;
J
Jan Kiszka 已提交
2179
        }
2180 2181 2182 2183 2184 2185

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

2186
        err = kvm_arch_remove_sw_breakpoint(cpu, bp);
J
Jan Kiszka 已提交
2187
        if (err) {
2188
            return err;
J
Jan Kiszka 已提交
2189
        }
2190

2191
        QTAILQ_REMOVE(&cpu->kvm_state->kvm_sw_breakpoints, bp, entry);
2192
        g_free(bp);
2193 2194
    } else {
        err = kvm_arch_remove_hw_breakpoint(addr, len, type);
J
Jan Kiszka 已提交
2195
        if (err) {
2196
            return err;
J
Jan Kiszka 已提交
2197
        }
2198 2199
    }

A
Andreas Färber 已提交
2200
    CPU_FOREACH(cpu) {
2201
        err = kvm_update_guest_debug(cpu, 0);
J
Jan Kiszka 已提交
2202
        if (err) {
2203
            return err;
J
Jan Kiszka 已提交
2204
        }
2205 2206 2207 2208
    }
    return 0;
}

2209
void kvm_remove_all_breakpoints(CPUState *cpu)
2210 2211
{
    struct kvm_sw_breakpoint *bp, *next;
2212
    KVMState *s = cpu->kvm_state;
2213
    CPUState *tmpcpu;
2214

B
Blue Swirl 已提交
2215
    QTAILQ_FOREACH_SAFE(bp, &s->kvm_sw_breakpoints, entry, next) {
2216
        if (kvm_arch_remove_sw_breakpoint(cpu, bp) != 0) {
2217
            /* Try harder to find a CPU that currently sees the breakpoint. */
2218 2219
            CPU_FOREACH(tmpcpu) {
                if (kvm_arch_remove_sw_breakpoint(tmpcpu, bp) == 0) {
2220
                    break;
J
Jan Kiszka 已提交
2221
                }
2222 2223
            }
        }
2224 2225
        QTAILQ_REMOVE(&s->kvm_sw_breakpoints, bp, entry);
        g_free(bp);
2226 2227 2228
    }
    kvm_arch_remove_all_hw_breakpoints();

A
Andreas Färber 已提交
2229
    CPU_FOREACH(cpu) {
2230
        kvm_update_guest_debug(cpu, 0);
J
Jan Kiszka 已提交
2231
    }
2232 2233 2234 2235
}

#else /* !KVM_CAP_SET_GUEST_DEBUG */

2236
int kvm_update_guest_debug(CPUState *cpu, unsigned long reinject_trap)
2237 2238 2239 2240
{
    return -EINVAL;
}

2241
int kvm_insert_breakpoint(CPUState *cpu, target_ulong addr,
2242 2243 2244 2245 2246
                          target_ulong len, int type)
{
    return -EINVAL;
}

2247
int kvm_remove_breakpoint(CPUState *cpu, target_ulong addr,
2248 2249 2250 2251 2252
                          target_ulong len, int type)
{
    return -EINVAL;
}

2253
void kvm_remove_all_breakpoints(CPUState *cpu)
2254 2255 2256
{
}
#endif /* !KVM_CAP_SET_GUEST_DEBUG */
2257

2258
int kvm_set_signal_mask(CPUState *cpu, const sigset_t *sigset)
2259
{
2260
    KVMState *s = kvm_state;
2261 2262 2263
    struct kvm_signal_mask *sigmask;
    int r;

J
Jan Kiszka 已提交
2264
    if (!sigset) {
2265
        return kvm_vcpu_ioctl(cpu, KVM_SET_SIGNAL_MASK, NULL);
J
Jan Kiszka 已提交
2266
    }
2267

2268
    sigmask = g_malloc(sizeof(*sigmask) + sizeof(*sigset));
2269

2270
    sigmask->len = s->sigmask_len;
2271
    memcpy(sigmask->sigset, sigset, sizeof(*sigset));
2272
    r = kvm_vcpu_ioctl(cpu, KVM_SET_SIGNAL_MASK, sigmask);
2273
    g_free(sigmask);
2274 2275 2276

    return r;
}
2277
int kvm_on_sigbus_vcpu(CPUState *cpu, int code, void *addr)
2278
{
A
Andreas Färber 已提交
2279
    return kvm_arch_on_sigbus_vcpu(cpu, code, addr);
2280 2281 2282 2283 2284 2285
}

int kvm_on_sigbus(int code, void *addr)
{
    return kvm_arch_on_sigbus(code, addr);
}
2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306

int kvm_create_device(KVMState *s, uint64_t type, bool test)
{
    int ret;
    struct kvm_create_device create_dev;

    create_dev.type = type;
    create_dev.fd = -1;
    create_dev.flags = test ? KVM_CREATE_DEVICE_TEST : 0;

    if (!kvm_check_extension(s, KVM_CAP_DEVICE_CTRL)) {
        return -ENOTSUP;
    }

    ret = kvm_vm_ioctl(s, KVM_CREATE_DEVICE, &create_dev);
    if (ret) {
        return ret;
    }

    return test ? 0 : create_dev.fd;
}
2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334

int kvm_set_one_reg(CPUState *cs, uint64_t id, void *source)
{
    struct kvm_one_reg reg;
    int r;

    reg.id = id;
    reg.addr = (uintptr_t) source;
    r = kvm_vcpu_ioctl(cs, KVM_SET_ONE_REG, &reg);
    if (r) {
        trace_kvm_failed_reg_set(id, strerror(r));
    }
    return r;
}

int kvm_get_one_reg(CPUState *cs, uint64_t id, void *target)
{
    struct kvm_one_reg reg;
    int r;

    reg.id = id;
    reg.addr = (uintptr_t) target;
    r = kvm_vcpu_ioctl(cs, KVM_GET_ONE_REG, &reg);
    if (r) {
        trace_kvm_failed_reg_get(id, strerror(r));
    }
    return r;
}
2335 2336 2337 2338 2339

static void kvm_accel_class_init(ObjectClass *oc, void *data)
{
    AccelClass *ac = ACCEL_CLASS(oc);
    ac->name = "KVM";
2340
    ac->init_machine = kvm_init;
2341 2342 2343 2344 2345 2346 2347
    ac->allowed = &kvm_allowed;
}

static const TypeInfo kvm_accel_type = {
    .name = TYPE_KVM_ACCEL,
    .parent = TYPE_ACCEL,
    .class_init = kvm_accel_class_init,
2348
    .instance_size = sizeof(KVMState),
2349 2350 2351 2352 2353 2354 2355 2356
};

static void kvm_type_init(void)
{
    type_register_static(&kvm_accel_type);
}

type_init(kvm_type_init);