kvm-all.c 42.3 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"
A
aliguori 已提交
25
#include "sysemu.h"
J
Jan Kiszka 已提交
26
#include "hw/hw.h"
27
#include "gdbstub.h"
A
aliguori 已提交
28
#include "kvm.h"
29
#include "bswap.h"
A
Avi Kivity 已提交
30
#include "memory.h"
31
#include "exec-memory.h"
A
aliguori 已提交
32

33 34 35 36 37
/* This check must be after config-host.h is included */
#ifdef CONFIG_EVENTFD
#include <sys/eventfd.h>
#endif

38
/* KVM uses PAGE_SIZE in its definition of COALESCED_MMIO_MAX */
A
aliguori 已提交
39 40
#define PAGE_SIZE TARGET_PAGE_SIZE

A
aliguori 已提交
41 42 43
//#define DEBUG_KVM

#ifdef DEBUG_KVM
44
#define DPRINTF(fmt, ...) \
A
aliguori 已提交
45 46
    do { fprintf(stderr, fmt, ## __VA_ARGS__); } while (0)
#else
47
#define DPRINTF(fmt, ...) \
A
aliguori 已提交
48 49 50
    do { } while (0)
#endif

A
aliguori 已提交
51 52
typedef struct KVMSlot
{
A
Anthony Liguori 已提交
53 54
    target_phys_addr_t start_addr;
    ram_addr_t memory_size;
55
    void *ram;
A
aliguori 已提交
56 57 58
    int slot;
    int flags;
} KVMSlot;
A
aliguori 已提交
59

60 61
typedef struct kvm_dirty_log KVMDirtyLog;

A
aliguori 已提交
62 63 64 65 66
struct KVMState
{
    KVMSlot slots[32];
    int fd;
    int vmfd;
A
aliguori 已提交
67
    int coalesced_mmio;
68
    struct kvm_coalesced_mmio_ring *coalesced_mmio_ring;
69
    bool coalesced_flush_in_progress;
70
    int broken_set_mem_region;
71
    int migration_log;
72
    int vcpu_events;
73
    int robust_singlestep;
74
    int debugregs;
75 76 77
#ifdef KVM_CAP_SET_GUEST_DEBUG
    struct kvm_sw_breakpoint_head kvm_sw_breakpoints;
#endif
78
    int pit_in_kernel;
J
Jan Kiszka 已提交
79
    int pit_state2;
80
    int xsave, xcrs;
81
    int many_ioeventfds;
82 83 84 85 86 87 88
    int irqchip_inject_ioctl;
#ifdef KVM_CAP_IRQ_ROUTING
    struct kvm_irq_routing *irq_routes;
    int nr_allocated_irq_routes;
    uint32_t *used_gsi_bitmap;
    unsigned int max_gsi;
#endif
A
aliguori 已提交
89 90
};

91
KVMState *kvm_state;
92
bool kvm_kernel_irqchip;
A
aliguori 已提交
93

94 95 96 97 98 99
static const KVMCapabilityInfo kvm_required_capabilites[] = {
    KVM_CAP_INFO(USER_MEMORY),
    KVM_CAP_INFO(DESTROY_MEMORY_REGION_WORKS),
    KVM_CAP_LAST_INFO
};

A
aliguori 已提交
100 101 102 103 104
static KVMSlot *kvm_alloc_slot(KVMState *s)
{
    int i;

    for (i = 0; i < ARRAY_SIZE(s->slots); i++) {
J
Jan Kiszka 已提交
105
        if (s->slots[i].memory_size == 0) {
A
aliguori 已提交
106
            return &s->slots[i];
J
Jan Kiszka 已提交
107
        }
A
aliguori 已提交
108 109
    }

110 111 112 113 114
    fprintf(stderr, "%s: no free slot available\n", __func__);
    abort();
}

static KVMSlot *kvm_lookup_matching_slot(KVMState *s,
A
Anthony Liguori 已提交
115 116
                                         target_phys_addr_t start_addr,
                                         target_phys_addr_t end_addr)
117 118 119 120 121 122 123 124 125 126 127 128
{
    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 已提交
129 130 131
    return NULL;
}

132 133 134 135
/*
 * Find overlapping slot with lowest start address
 */
static KVMSlot *kvm_lookup_overlapping_slot(KVMState *s,
A
Anthony Liguori 已提交
136 137
                                            target_phys_addr_t start_addr,
                                            target_phys_addr_t end_addr)
A
aliguori 已提交
138
{
139
    KVMSlot *found = NULL;
A
aliguori 已提交
140 141 142 143 144
    int i;

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

145 146 147 148 149 150 151 152 153
        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 已提交
154 155
    }

156
    return found;
A
aliguori 已提交
157 158
}

159 160
int kvm_physical_memory_addr_from_host(KVMState *s, void *ram,
                                       target_phys_addr_t *phys_addr)
161 162 163 164 165 166
{
    int i;

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

167 168
        if (ram >= mem->ram && ram < mem->ram + mem->memory_size) {
            *phys_addr = mem->start_addr + (ram - mem->ram);
169 170 171 172 173 174 175
            return 1;
        }
    }

    return 0;
}

176 177 178 179 180 181 182
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;
183
    mem.userspace_addr = (unsigned long)slot->ram;
184
    mem.flags = slot->flags;
185 186 187
    if (s->migration_log) {
        mem.flags |= KVM_MEM_LOG_DIRTY_PAGES;
    }
188 189 190
    return kvm_vm_ioctl(s, KVM_SET_USER_MEMORY_REGION, &mem);
}

J
Jan Kiszka 已提交
191 192
static void kvm_reset_vcpu(void *opaque)
{
193
    CPUArchState *env = opaque;
J
Jan Kiszka 已提交
194

J
Jan Kiszka 已提交
195
    kvm_arch_reset_vcpu(env);
J
Jan Kiszka 已提交
196
}
197

198 199 200 201 202
int kvm_pit_in_kernel(void)
{
    return kvm_state->pit_in_kernel;
}

203
int kvm_init_vcpu(CPUArchState *env)
A
aliguori 已提交
204 205 206 207 208
{
    KVMState *s = kvm_state;
    long mmap_size;
    int ret;

209
    DPRINTF("kvm_init_vcpu\n");
A
aliguori 已提交
210

211
    ret = kvm_vm_ioctl(s, KVM_CREATE_VCPU, env->cpu_index);
A
aliguori 已提交
212
    if (ret < 0) {
213
        DPRINTF("kvm_create_vcpu failed\n");
A
aliguori 已提交
214 215 216 217 218
        goto err;
    }

    env->kvm_fd = ret;
    env->kvm_state = s;
219
    env->kvm_vcpu_dirty = 1;
A
aliguori 已提交
220 221 222

    mmap_size = kvm_ioctl(s, KVM_GET_VCPU_MMAP_SIZE, 0);
    if (mmap_size < 0) {
223
        ret = mmap_size;
224
        DPRINTF("KVM_GET_VCPU_MMAP_SIZE failed\n");
A
aliguori 已提交
225 226 227 228 229 230 231
        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;
232
        DPRINTF("mmap'ing vcpu state failed\n");
A
aliguori 已提交
233 234 235
        goto err;
    }

J
Jan Kiszka 已提交
236 237 238 239
    if (s->coalesced_mmio && !s->coalesced_mmio_ring) {
        s->coalesced_mmio_ring =
            (void *)env->kvm_run + s->coalesced_mmio * PAGE_SIZE;
    }
240

A
aliguori 已提交
241
    ret = kvm_arch_init_vcpu(env);
J
Jan Kiszka 已提交
242
    if (ret == 0) {
243
        qemu_register_reset(kvm_reset_vcpu, env);
J
Jan Kiszka 已提交
244
        kvm_arch_reset_vcpu(env);
J
Jan Kiszka 已提交
245
    }
A
aliguori 已提交
246 247 248 249
err:
    return ret;
}

250 251 252
/*
 * dirty pages logging control
 */
253 254 255 256 257 258 259

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)
260 261
{
    KVMState *s = kvm_state;
262
    int flags, mask = KVM_MEM_LOG_DIRTY_PAGES;
263 264 265
    int old_flags;

    old_flags = mem->flags;
266

267
    flags = (mem->flags & ~mask) | kvm_mem_flags(s, log_dirty);
268 269
    mem->flags = flags;

270 271 272 273
    /* If nothing changed effectively, no need to issue ioctl */
    if (s->migration_log) {
        flags |= KVM_MEM_LOG_DIRTY_PAGES;
    }
274

275
    if (flags == old_flags) {
276
        return 0;
277 278
    }

279 280 281
    return kvm_set_user_memory_region(s, mem);
}

282 283 284 285 286 287 288 289 290 291 292 293 294 295 296
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 已提交
297 298
static void kvm_log_start(MemoryListener *listener,
                          MemoryRegionSection *section)
299
{
A
Avi Kivity 已提交
300 301 302 303 304 305 306
    int r;

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

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

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

321
static int kvm_set_migration_log(int enable)
322 323 324 325 326 327 328 329 330 331
{
    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];

332 333 334
        if (!mem->memory_size) {
            continue;
        }
335 336 337 338 339 340 341 342 343 344 345
        if (!!(mem->flags & KVM_MEM_LOG_DIRTY_PAGES) == enable) {
            continue;
        }
        err = kvm_set_user_memory_region(s, mem);
        if (err) {
            return err;
        }
    }
    return 0;
}

346
/* get kvm's dirty pages bitmap and update qemu's */
347 348
static int kvm_get_dirty_pages_log_range(MemoryRegionSection *section,
                                         unsigned long *bitmap)
A
Alexander Graf 已提交
349
{
350
    unsigned int i, j;
351 352
    unsigned long page_number, c;
    target_phys_addr_t addr, addr1;
353
    unsigned int len = ((section->size / TARGET_PAGE_SIZE) + HOST_LONG_BITS - 1) / HOST_LONG_BITS;
354 355 356 357 358 359 360 361 362 363 364 365 366

    /*
     * 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);
                page_number = i * HOST_LONG_BITS + j;
                addr1 = page_number * TARGET_PAGE_SIZE;
367
                addr = section->offset_within_region + addr1;
368
                memory_region_set_dirty(section->mr, addr, TARGET_PAGE_SIZE);
369 370 371 372
            } while (c != 0);
        }
    }
    return 0;
A
Alexander Graf 已提交
373 374
}

375 376
#define ALIGN(x, y)  (((x)+(y)-1) & ~((y)-1))

377 378
/**
 * kvm_physical_sync_dirty_bitmap - Grab dirty bitmap from kernel space
379 380 381
 * This function updates qemu's dirty bitmap using
 * memory_region_set_dirty().  This means all bits are set
 * to dirty.
382
 *
383
 * @start_add: start of logged region.
384 385
 * @end_addr: end of logged region.
 */
386
static int kvm_physical_sync_dirty_bitmap(MemoryRegionSection *section)
387 388
{
    KVMState *s = kvm_state;
389 390 391 392
    unsigned long size, allocated_size = 0;
    KVMDirtyLog d;
    KVMSlot *mem;
    int ret = 0;
393 394
    target_phys_addr_t start_addr = section->offset_within_address_space;
    target_phys_addr_t end_addr = start_addr + section->size;
395

396 397 398 399 400 401
    d.dirty_bitmap = NULL;
    while (start_addr < end_addr) {
        mem = kvm_lookup_overlapping_slot(s, start_addr, end_addr);
        if (mem == NULL) {
            break;
        }
402

403 404 405 406 407 408 409 410 411 412 413 414 415 416
        /* 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;
417
        if (!d.dirty_bitmap) {
418
            d.dirty_bitmap = g_malloc(size);
419
        } else if (size > allocated_size) {
420
            d.dirty_bitmap = g_realloc(d.dirty_bitmap, size);
421 422 423
        }
        allocated_size = size;
        memset(d.dirty_bitmap, 0, allocated_size);
424

425
        d.slot = mem->slot;
426

427
        if (kvm_vm_ioctl(s, KVM_GET_DIRTY_LOG, &d) == -1) {
428
            DPRINTF("ioctl failed %d\n", errno);
429 430 431
            ret = -1;
            break;
        }
432

433
        kvm_get_dirty_pages_log_range(section, d.dirty_bitmap);
434
        start_addr = mem->start_addr + mem->memory_size;
435
    }
436
    g_free(d.dirty_bitmap);
437 438

    return ret;
439 440
}

A
Anthony Liguori 已提交
441
int kvm_coalesce_mmio_region(target_phys_addr_t start, ram_addr_t size)
A
aliguori 已提交
442 443 444 445 446 447 448 449 450
{
    int ret = -ENOSYS;
    KVMState *s = kvm_state;

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

        zone.addr = start;
        zone.size = size;
451
        zone.pad = 0;
A
aliguori 已提交
452 453 454 455 456 457 458

        ret = kvm_vm_ioctl(s, KVM_REGISTER_COALESCED_MMIO, &zone);
    }

    return ret;
}

A
Anthony Liguori 已提交
459
int kvm_uncoalesce_mmio_region(target_phys_addr_t start, ram_addr_t size)
A
aliguori 已提交
460 461 462 463 464 465 466 467 468
{
    int ret = -ENOSYS;
    KVMState *s = kvm_state;

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

        zone.addr = start;
        zone.size = size;
469
        zone.pad = 0;
A
aliguori 已提交
470 471 472 473 474 475 476

        ret = kvm_vm_ioctl(s, KVM_UNREGISTER_COALESCED_MMIO, &zone);
    }

    return ret;
}

477 478 479 480 481 482 483 484 485 486 487 488
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;
}

489 490
static int kvm_check_many_ioeventfds(void)
{
491 492 493 494 495
    /* 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
496 497
     * can avoid creating too many ioeventfds.
     */
498
#if defined(CONFIG_EVENTFD)
499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525
    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
}

526 527 528 529 530 531 532 533 534 535 536 537
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 已提交
538
static void kvm_set_phys_mem(MemoryRegionSection *section, bool add)
539 540 541 542
{
    KVMState *s = kvm_state;
    KVMSlot *mem, old;
    int err;
A
Avi Kivity 已提交
543 544 545 546
    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;
547
    void *ram = NULL;
A
Avi Kivity 已提交
548
    unsigned delta;
549

550 551
    /* kvm works in page size chunks, but the function may be called
       with sub-page size and unaligned start address. */
A
Avi Kivity 已提交
552 553 554 555 556 557 558 559 560 561
    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;
    }
562

A
Avi Kivity 已提交
563 564
    if (!memory_region_is_ram(mr)) {
        return;
565 566
    }

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

569 570 571 572 573 574
    while (1) {
        mem = kvm_lookup_overlapping_slot(s, start_addr, start_addr + size);
        if (!mem) {
            break;
        }

A
Avi Kivity 已提交
575
        if (add && start_addr >= mem->start_addr &&
576
            (start_addr + size <= mem->start_addr + mem->memory_size) &&
577
            (ram - start_addr == mem->ram - mem->start_addr)) {
578
            /* The new slot fits into the existing one and comes with
579 580
             * identical parameters - update flags and done. */
            kvm_slot_dirty_pages_log_change(mem, log_dirty);
581 582 583 584 585
            return;
        }

        old = *mem;

586 587 588 589
        if (mem->flags & KVM_MEM_LOG_DIRTY_PAGES) {
            kvm_physical_sync_dirty_bitmap(section);
        }

590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607
        /* 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 已提交
608
            old.start_addr == start_addr && old.memory_size < size && add) {
609 610 611
            mem = kvm_alloc_slot(s);
            mem->memory_size = old.memory_size;
            mem->start_addr = old.start_addr;
612
            mem->ram = old.ram;
613
            mem->flags = kvm_mem_flags(s, log_dirty);
614 615 616 617 618 619 620 621 622

            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;
623
            ram += old.memory_size;
624 625 626 627 628 629 630 631 632
            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;
633
            mem->ram = old.ram;
634
            mem->flags =  kvm_mem_flags(s, log_dirty);
635 636 637 638 639

            err = kvm_set_user_memory_region(s, mem);
            if (err) {
                fprintf(stderr, "%s: error registering prefix slot: %s\n",
                        __func__, strerror(-err));
640 641 642 643 644
#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
645 646 647 648 649 650 651 652 653 654 655 656
                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;
657
            mem->ram = old.ram + size_delta;
658
            mem->flags = kvm_mem_flags(s, log_dirty);
659 660 661 662 663 664 665 666 667 668 669

            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 已提交
670
    if (!size) {
671
        return;
J
Jan Kiszka 已提交
672
    }
A
Avi Kivity 已提交
673
    if (!add) {
674
        return;
J
Jan Kiszka 已提交
675
    }
676 677 678
    mem = kvm_alloc_slot(s);
    mem->memory_size = size;
    mem->start_addr = start_addr;
679
    mem->ram = ram;
680
    mem->flags = kvm_mem_flags(s, log_dirty);
681 682 683 684 685 686 687 688 689

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

690 691 692 693 694 695 696 697
static void kvm_begin(MemoryListener *listener)
{
}

static void kvm_commit(MemoryListener *listener)
{
}

A
Avi Kivity 已提交
698 699 700 701 702 703 704 705 706 707 708 709
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);
}

710 711 712 713 714
static void kvm_region_nop(MemoryListener *listener,
                           MemoryRegionSection *section)
{
}

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

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

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

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

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

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

742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816
static void kvm_mem_ioeventfd_add(MemoryRegionSection *section,
                                  bool match_data, uint64_t data, int fd)
{
    int r;

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

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

static void kvm_mem_ioeventfd_del(MemoryRegionSection *section,
                                  bool match_data, uint64_t data, int fd)
{
    int r;

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

static void kvm_io_ioeventfd_add(MemoryRegionSection *section,
                                 bool match_data, uint64_t data, int fd)
{
    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();
    }
}

static void kvm_io_ioeventfd_del(MemoryRegionSection *section,
                                 bool match_data, uint64_t data, int fd)

{
    int r;

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

static void kvm_eventfd_add(MemoryListener *listener,
                            MemoryRegionSection *section,
                            bool match_data, uint64_t data, int fd)
{
    if (section->address_space == get_system_memory()) {
        kvm_mem_ioeventfd_add(section, match_data, data, fd);
    } else {
        kvm_io_ioeventfd_add(section, match_data, data, fd);
    }
}

static void kvm_eventfd_del(MemoryListener *listener,
                            MemoryRegionSection *section,
                            bool match_data, uint64_t data, int fd)
{
    if (section->address_space == get_system_memory()) {
        kvm_mem_ioeventfd_del(section, match_data, data, fd);
    } else {
        kvm_io_ioeventfd_del(section, match_data, data, fd);
    }
}

A
Avi Kivity 已提交
817
static MemoryListener kvm_memory_listener = {
818 819
    .begin = kvm_begin,
    .commit = kvm_commit,
A
Avi Kivity 已提交
820 821
    .region_add = kvm_region_add,
    .region_del = kvm_region_del,
822
    .region_nop = kvm_region_nop,
823 824
    .log_start = kvm_log_start,
    .log_stop = kvm_log_stop,
A
Avi Kivity 已提交
825 826 827
    .log_sync = kvm_log_sync,
    .log_global_start = kvm_log_global_start,
    .log_global_stop = kvm_log_global_stop,
828 829
    .eventfd_add = kvm_eventfd_add,
    .eventfd_del = kvm_eventfd_del,
830
    .priority = 10,
831 832
};

833
static void kvm_handle_interrupt(CPUArchState *env, int mask)
834 835 836 837 838 839 840 841
{
    env->interrupt_request |= mask;

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

842 843 844 845 846
int kvm_irqchip_set_irq(KVMState *s, int irq, int level)
{
    struct kvm_irq_level event;
    int ret;

847
    assert(kvm_irqchip_in_kernel());
848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 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 937 938 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 965 966

    event.level = level;
    event.irq = irq;
    ret = kvm_vm_ioctl(s, s->irqchip_inject_ioctl, &event);
    if (ret < 0) {
        perror("kvm_set_irqchip_line");
        abort();
    }

    return (s->irqchip_inject_ioctl == KVM_IRQ_LINE) ? 1 : event.status;
}

#ifdef KVM_CAP_IRQ_ROUTING
static void set_gsi(KVMState *s, unsigned int gsi)
{
    assert(gsi < s->max_gsi);

    s->used_gsi_bitmap[gsi / 32] |= 1U << (gsi % 32);
}

static void kvm_init_irq_routing(KVMState *s)
{
    int gsi_count;

    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 */
        gsi_bits = (gsi_count + 31) / 32;
        s->used_gsi_bitmap = g_malloc0(gsi_bits / 8);
        s->max_gsi = gsi_bits;

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

    kvm_arch_init_irq_routing(s);
}

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);
}

void kvm_irqchip_add_route(KVMState *s, int irq, int irqchip, int pin)
{
    struct kvm_irq_routing_entry e;

    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);
}

int kvm_irqchip_commit_routes(KVMState *s)
{
    s->irq_routes->flags = 0;
    return kvm_vm_ioctl(s, KVM_SET_GSI_ROUTING, s->irq_routes);
}

#else /* !KVM_CAP_IRQ_ROUTING */

static void kvm_init_irq_routing(KVMState *s)
{
}
#endif /* !KVM_CAP_IRQ_ROUTING */

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),
                           "kernel_irqchip", false) ||
        !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;
    }

    s->irqchip_inject_ioctl = KVM_IRQ_LINE;
    if (kvm_check_extension(s, KVM_CAP_IRQ_INJECT_STATUS)) {
        s->irqchip_inject_ioctl = KVM_IRQ_LINE_STATUS;
    }
967
    kvm_kernel_irqchip = true;
968 969 970 971 972 973

    kvm_init_irq_routing(s);

    return 0;
}

974
int kvm_init(void)
A
aliguori 已提交
975
{
976 977 978
    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 已提交
979
    KVMState *s;
980
    const KVMCapabilityInfo *missing_cap;
A
aliguori 已提交
981 982 983
    int ret;
    int i;

984
    s = g_malloc0(sizeof(KVMState));
A
aliguori 已提交
985

986
#ifdef KVM_CAP_SET_GUEST_DEBUG
B
Blue Swirl 已提交
987
    QTAILQ_INIT(&s->kvm_sw_breakpoints);
988
#endif
J
Jan Kiszka 已提交
989
    for (i = 0; i < ARRAY_SIZE(s->slots); i++) {
A
aliguori 已提交
990
        s->slots[i].slot = i;
J
Jan Kiszka 已提交
991
    }
A
aliguori 已提交
992
    s->vmfd = -1;
K
Kevin Wolf 已提交
993
    s->fd = qemu_open("/dev/kvm", O_RDWR);
A
aliguori 已提交
994 995 996 997 998 999 1000 1001
    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 已提交
1002
        if (ret > 0) {
A
aliguori 已提交
1003
            ret = -EINVAL;
J
Jan Kiszka 已提交
1004
        }
A
aliguori 已提交
1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015
        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;
    }

    s->vmfd = kvm_ioctl(s, KVM_CREATE_VM, 0);
1016 1017 1018 1019 1020
    if (s->vmfd < 0) {
#ifdef TARGET_S390X
        fprintf(stderr, "Please add the 'switch_amode' kernel parameter to "
                        "your host kernel command line\n");
#endif
1021
        ret = s->vmfd;
A
aliguori 已提交
1022
        goto err;
1023
    }
A
aliguori 已提交
1024

1025 1026 1027 1028
    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 已提交
1029
    }
1030
    if (missing_cap) {
1031
        ret = -EINVAL;
1032 1033
        fprintf(stderr, "kvm does not support %s\n%s",
                missing_cap->name, upgrade_note);
1034 1035 1036
        goto err;
    }

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

1039
    s->broken_set_mem_region = 1;
1040
    ret = kvm_check_extension(s, KVM_CAP_JOIN_MEMORY_REGIONS_WORKS);
1041 1042 1043 1044
    if (ret > 0) {
        s->broken_set_mem_region = 0;
    }

1045 1046 1047 1048
#ifdef KVM_CAP_VCPU_EVENTS
    s->vcpu_events = kvm_check_extension(s, KVM_CAP_VCPU_EVENTS);
#endif

1049 1050 1051
    s->robust_singlestep =
        kvm_check_extension(s, KVM_CAP_X86_ROBUST_SINGLESTEP);

1052 1053 1054 1055
#ifdef KVM_CAP_DEBUGREGS
    s->debugregs = kvm_check_extension(s, KVM_CAP_DEBUGREGS);
#endif

1056 1057 1058 1059 1060 1061 1062 1063
#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 已提交
1064 1065 1066 1067
#ifdef KVM_CAP_PIT_STATE2
    s->pit_state2 = kvm_check_extension(s, KVM_CAP_PIT_STATE2);
#endif

1068
    ret = kvm_arch_init(s);
J
Jan Kiszka 已提交
1069
    if (ret < 0) {
A
aliguori 已提交
1070
        goto err;
J
Jan Kiszka 已提交
1071
    }
A
aliguori 已提交
1072

1073 1074 1075 1076 1077
    ret = kvm_irqchip_create(s);
    if (ret < 0) {
        goto err;
    }

A
aliguori 已提交
1078
    kvm_state = s;
1079
    memory_listener_register(&kvm_memory_listener, NULL);
A
aliguori 已提交
1080

1081 1082
    s->many_ioeventfds = kvm_check_many_ioeventfds();

1083 1084
    cpu_interrupt_handler = kvm_handle_interrupt;

A
aliguori 已提交
1085 1086 1087 1088
    return 0;

err:
    if (s) {
1089
        if (s->vmfd >= 0) {
A
aliguori 已提交
1090
            close(s->vmfd);
J
Jan Kiszka 已提交
1091 1092
        }
        if (s->fd != -1) {
A
aliguori 已提交
1093
            close(s->fd);
J
Jan Kiszka 已提交
1094
        }
A
aliguori 已提交
1095
    }
1096
    g_free(s);
A
aliguori 已提交
1097 1098 1099 1100

    return ret;
}

1101 1102
static void kvm_handle_io(uint16_t port, void *data, int direction, int size,
                          uint32_t count)
A
aliguori 已提交
1103 1104 1105 1106 1107 1108 1109 1110
{
    int i;
    uint8_t *ptr = data;

    for (i = 0; i < count; i++) {
        if (direction == KVM_EXIT_IO_IN) {
            switch (size) {
            case 1:
1111
                stb_p(ptr, cpu_inb(port));
A
aliguori 已提交
1112 1113
                break;
            case 2:
1114
                stw_p(ptr, cpu_inw(port));
A
aliguori 已提交
1115 1116
                break;
            case 4:
1117
                stl_p(ptr, cpu_inl(port));
A
aliguori 已提交
1118 1119 1120 1121 1122
                break;
            }
        } else {
            switch (size) {
            case 1:
1123
                cpu_outb(port, ldub_p(ptr));
A
aliguori 已提交
1124 1125
                break;
            case 2:
1126
                cpu_outw(port, lduw_p(ptr));
A
aliguori 已提交
1127 1128
                break;
            case 4:
1129
                cpu_outl(port, ldl_p(ptr));
A
aliguori 已提交
1130 1131 1132 1133 1134 1135 1136 1137
                break;
            }
        }

        ptr += size;
    }
}

1138
static int kvm_handle_internal_error(CPUArchState *env, struct kvm_run *run)
M
Marcelo Tosatti 已提交
1139
{
1140
    fprintf(stderr, "KVM internal error.");
M
Marcelo Tosatti 已提交
1141 1142 1143
    if (kvm_check_extension(kvm_state, KVM_CAP_INTERNAL_ERROR_DATA)) {
        int i;

1144
        fprintf(stderr, " Suberror: %d\n", run->internal.suberror);
M
Marcelo Tosatti 已提交
1145 1146 1147 1148
        for (i = 0; i < run->internal.ndata; ++i) {
            fprintf(stderr, "extra data[%d]: %"PRIx64"\n",
                    i, (uint64_t)run->internal.data[i]);
        }
1149 1150
    } else {
        fprintf(stderr, "\n");
M
Marcelo Tosatti 已提交
1151 1152 1153
    }
    if (run->internal.suberror == KVM_INTERNAL_ERROR_EMULATION) {
        fprintf(stderr, "emulation failure\n");
J
Jan Kiszka 已提交
1154
        if (!kvm_arch_stop_on_emulation_error(env)) {
1155
            cpu_dump_state(env, stderr, fprintf, CPU_DUMP_CODE);
1156
            return EXCP_INTERRUPT;
J
Jan Kiszka 已提交
1157
        }
M
Marcelo Tosatti 已提交
1158 1159 1160 1161
    }
    /* FIXME: Should trigger a qmp message to let management know
     * something went wrong.
     */
J
Jan Kiszka 已提交
1162
    return -1;
M
Marcelo Tosatti 已提交
1163 1164
}

1165
void kvm_flush_coalesced_mmio_buffer(void)
A
aliguori 已提交
1166 1167
{
    KVMState *s = kvm_state;
1168 1169 1170 1171 1172 1173 1174

    if (s->coalesced_flush_in_progress) {
        return;
    }

    s->coalesced_flush_in_progress = true;

1175 1176
    if (s->coalesced_mmio_ring) {
        struct kvm_coalesced_mmio_ring *ring = s->coalesced_mmio_ring;
A
aliguori 已提交
1177 1178 1179 1180 1181 1182
        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);
1183
            smp_wmb();
A
aliguori 已提交
1184 1185 1186
            ring->first = (ring->first + 1) % KVM_COALESCED_MMIO_MAX;
        }
    }
1187 1188

    s->coalesced_flush_in_progress = false;
A
aliguori 已提交
1189 1190
}

1191
static void do_kvm_cpu_synchronize_state(void *_env)
1192
{
1193
    CPUArchState *env = _env;
1194

J
Jan Kiszka 已提交
1195
    if (!env->kvm_vcpu_dirty) {
1196
        kvm_arch_get_registers(env);
J
Jan Kiszka 已提交
1197
        env->kvm_vcpu_dirty = 1;
1198 1199 1200
    }
}

1201
void kvm_cpu_synchronize_state(CPUArchState *env)
1202
{
J
Jan Kiszka 已提交
1203
    if (!env->kvm_vcpu_dirty) {
1204
        run_on_cpu(env, do_kvm_cpu_synchronize_state, env);
J
Jan Kiszka 已提交
1205
    }
1206 1207
}

1208
void kvm_cpu_synchronize_post_reset(CPUArchState *env)
1209 1210 1211 1212 1213
{
    kvm_arch_put_registers(env, KVM_PUT_RESET_STATE);
    env->kvm_vcpu_dirty = 0;
}

1214
void kvm_cpu_synchronize_post_init(CPUArchState *env)
1215 1216 1217 1218 1219
{
    kvm_arch_put_registers(env, KVM_PUT_FULL_STATE);
    env->kvm_vcpu_dirty = 0;
}

1220
int kvm_cpu_exec(CPUArchState *env)
A
aliguori 已提交
1221 1222
{
    struct kvm_run *run = env->kvm_run;
1223
    int ret, run_ret;
A
aliguori 已提交
1224

1225
    DPRINTF("kvm_cpu_exec()\n");
A
aliguori 已提交
1226

1227
    if (kvm_arch_process_async_events(env)) {
1228
        env->exit_request = 0;
1229
        return EXCP_HLT;
1230
    }
M
Marcelo Tosatti 已提交
1231

1232
    do {
J
Jan Kiszka 已提交
1233
        if (env->kvm_vcpu_dirty) {
1234
            kvm_arch_put_registers(env, KVM_PUT_RUNTIME_STATE);
J
Jan Kiszka 已提交
1235
            env->kvm_vcpu_dirty = 0;
1236 1237
        }

1238
        kvm_arch_pre_run(env, run);
1239 1240 1241 1242 1243 1244 1245 1246 1247
        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();
        }
1248
        qemu_mutex_unlock_iothread();
1249

1250
        run_ret = kvm_vcpu_ioctl(env, KVM_RUN, 0);
1251

1252
        qemu_mutex_lock_iothread();
A
aliguori 已提交
1253 1254
        kvm_arch_post_run(env, run);

1255 1256
        kvm_flush_coalesced_mmio_buffer();

1257
        if (run_ret < 0) {
1258 1259
            if (run_ret == -EINTR || run_ret == -EAGAIN) {
                DPRINTF("io window exit\n");
1260
                ret = EXCP_INTERRUPT;
1261 1262
                break;
            }
1263 1264
            fprintf(stderr, "error: kvm run failed %s\n",
                    strerror(-run_ret));
A
aliguori 已提交
1265 1266 1267 1268 1269
            abort();
        }

        switch (run->exit_reason) {
        case KVM_EXIT_IO:
1270
            DPRINTF("handle_io\n");
1271 1272 1273 1274 1275
            kvm_handle_io(run->io.port,
                          (uint8_t *)run + run->io.data_offset,
                          run->io.direction,
                          run->io.size,
                          run->io.count);
1276
            ret = 0;
A
aliguori 已提交
1277 1278
            break;
        case KVM_EXIT_MMIO:
1279
            DPRINTF("handle_mmio\n");
A
aliguori 已提交
1280 1281 1282 1283
            cpu_physical_memory_rw(run->mmio.phys_addr,
                                   run->mmio.data,
                                   run->mmio.len,
                                   run->mmio.is_write);
1284
            ret = 0;
A
aliguori 已提交
1285 1286
            break;
        case KVM_EXIT_IRQ_WINDOW_OPEN:
1287
            DPRINTF("irq_window_open\n");
1288
            ret = EXCP_INTERRUPT;
A
aliguori 已提交
1289 1290
            break;
        case KVM_EXIT_SHUTDOWN:
1291
            DPRINTF("shutdown\n");
A
aliguori 已提交
1292
            qemu_system_reset_request();
1293
            ret = EXCP_INTERRUPT;
A
aliguori 已提交
1294 1295
            break;
        case KVM_EXIT_UNKNOWN:
1296 1297
            fprintf(stderr, "KVM: unknown exit, hardware reason %" PRIx64 "\n",
                    (uint64_t)run->hw.hardware_exit_reason);
J
Jan Kiszka 已提交
1298
            ret = -1;
A
aliguori 已提交
1299
            break;
M
Marcelo Tosatti 已提交
1300
        case KVM_EXIT_INTERNAL_ERROR:
J
Jan Kiszka 已提交
1301
            ret = kvm_handle_internal_error(env, run);
M
Marcelo Tosatti 已提交
1302
            break;
A
aliguori 已提交
1303
        default:
1304
            DPRINTF("kvm_arch_handle_exit\n");
A
aliguori 已提交
1305 1306 1307
            ret = kvm_arch_handle_exit(env, run);
            break;
        }
1308
    } while (ret == 0);
A
aliguori 已提交
1309

J
Jan Kiszka 已提交
1310
    if (ret < 0) {
1311
        cpu_dump_state(env, stderr, fprintf, CPU_DUMP_CODE);
1312
        vm_stop(RUN_STATE_INTERNAL_ERROR);
A
aliguori 已提交
1313 1314
    }

1315
    env->exit_request = 0;
A
aliguori 已提交
1316 1317 1318
    return ret;
}

1319
int kvm_ioctl(KVMState *s, int type, ...)
A
aliguori 已提交
1320 1321
{
    int ret;
1322 1323
    void *arg;
    va_list ap;
A
aliguori 已提交
1324

1325 1326 1327 1328 1329
    va_start(ap, type);
    arg = va_arg(ap, void *);
    va_end(ap);

    ret = ioctl(s->fd, type, arg);
J
Jan Kiszka 已提交
1330
    if (ret == -1) {
A
aliguori 已提交
1331
        ret = -errno;
J
Jan Kiszka 已提交
1332
    }
A
aliguori 已提交
1333 1334 1335
    return ret;
}

1336
int kvm_vm_ioctl(KVMState *s, int type, ...)
A
aliguori 已提交
1337 1338
{
    int ret;
1339 1340 1341 1342 1343 1344
    void *arg;
    va_list ap;

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

1346
    ret = ioctl(s->vmfd, type, arg);
J
Jan Kiszka 已提交
1347
    if (ret == -1) {
A
aliguori 已提交
1348
        ret = -errno;
J
Jan Kiszka 已提交
1349
    }
A
aliguori 已提交
1350 1351 1352
    return ret;
}

1353
int kvm_vcpu_ioctl(CPUArchState *env, int type, ...)
A
aliguori 已提交
1354 1355
{
    int ret;
1356 1357 1358 1359 1360 1361
    void *arg;
    va_list ap;

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

1363
    ret = ioctl(env->kvm_fd, type, arg);
J
Jan Kiszka 已提交
1364
    if (ret == -1) {
A
aliguori 已提交
1365
        ret = -errno;
J
Jan Kiszka 已提交
1366
    }
A
aliguori 已提交
1367 1368
    return ret;
}
A
aliguori 已提交
1369 1370 1371

int kvm_has_sync_mmu(void)
{
1372
    return kvm_check_extension(kvm_state, KVM_CAP_SYNC_MMU);
A
aliguori 已提交
1373
}
1374

1375 1376 1377 1378 1379
int kvm_has_vcpu_events(void)
{
    return kvm_state->vcpu_events;
}

1380 1381 1382 1383 1384
int kvm_has_robust_singlestep(void)
{
    return kvm_state->robust_singlestep;
}

1385 1386 1387 1388 1389
int kvm_has_debugregs(void)
{
    return kvm_state->debugregs;
}

1390 1391 1392 1393 1394 1395 1396 1397 1398 1399
int kvm_has_xsave(void)
{
    return kvm_state->xsave;
}

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

J
Jan Kiszka 已提交
1400 1401 1402 1403 1404
int kvm_has_pit_state2(void)
{
    return kvm_state->pit_state2;
}

1405 1406 1407 1408 1409 1410 1411 1412
int kvm_has_many_ioeventfds(void)
{
    if (!kvm_enabled()) {
        return 0;
    }
    return kvm_state->many_ioeventfds;
}

1413 1414
int kvm_has_gsi_routing(void)
{
A
Alexander Graf 已提交
1415
#ifdef KVM_CAP_IRQ_ROUTING
1416
    return kvm_check_extension(kvm_state, KVM_CAP_IRQ_ROUTING);
A
Alexander Graf 已提交
1417 1418 1419
#else
    return false;
#endif
1420 1421
}

1422 1423
int kvm_allows_irq0_override(void)
{
1424
    return !kvm_irqchip_in_kernel() || kvm_has_gsi_routing();
1425 1426
}

1427 1428 1429
void kvm_setup_guest_memory(void *start, size_t size)
{
    if (!kvm_has_sync_mmu()) {
A
Andreas Färber 已提交
1430
        int ret = qemu_madvise(start, size, QEMU_MADV_DONTFORK);
1431 1432

        if (ret) {
A
Andreas Färber 已提交
1433 1434 1435
            perror("qemu_madvise");
            fprintf(stderr,
                    "Need MADV_DONTFORK in absence of synchronous KVM MMU\n");
1436 1437 1438 1439 1440
            exit(1);
        }
    }
}

1441
#ifdef KVM_CAP_SET_GUEST_DEBUG
1442
struct kvm_sw_breakpoint *kvm_find_sw_breakpoint(CPUArchState *env,
1443 1444 1445 1446
                                                 target_ulong pc)
{
    struct kvm_sw_breakpoint *bp;

B
Blue Swirl 已提交
1447
    QTAILQ_FOREACH(bp, &env->kvm_state->kvm_sw_breakpoints, entry) {
J
Jan Kiszka 已提交
1448
        if (bp->pc == pc) {
1449
            return bp;
J
Jan Kiszka 已提交
1450
        }
1451 1452 1453 1454
    }
    return NULL;
}

1455
int kvm_sw_breakpoints_active(CPUArchState *env)
1456
{
B
Blue Swirl 已提交
1457
    return !QTAILQ_EMPTY(&env->kvm_state->kvm_sw_breakpoints);
1458 1459
}

G
Glauber Costa 已提交
1460 1461
struct kvm_set_guest_debug_data {
    struct kvm_guest_debug dbg;
1462
    CPUArchState *env;
G
Glauber Costa 已提交
1463 1464 1465 1466 1467 1468
    int err;
};

static void kvm_invoke_set_guest_debug(void *data)
{
    struct kvm_set_guest_debug_data *dbg_data = data;
1469
    CPUArchState *env = dbg_data->env;
J
Jan Kiszka 已提交
1470 1471

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

1474
int kvm_update_guest_debug(CPUArchState *env, unsigned long reinject_trap)
1475
{
G
Glauber Costa 已提交
1476
    struct kvm_set_guest_debug_data data;
1477

1478
    data.dbg.control = reinject_trap;
1479

1480 1481 1482
    if (env->singlestep_enabled) {
        data.dbg.control |= KVM_GUESTDBG_ENABLE | KVM_GUESTDBG_SINGLESTEP;
    }
G
Glauber Costa 已提交
1483 1484
    kvm_arch_update_guest_debug(env, &data.dbg);
    data.env = env;
1485

1486
    run_on_cpu(env, kvm_invoke_set_guest_debug, &data);
G
Glauber Costa 已提交
1487
    return data.err;
1488 1489
}

1490
int kvm_insert_breakpoint(CPUArchState *current_env, target_ulong addr,
1491 1492 1493
                          target_ulong len, int type)
{
    struct kvm_sw_breakpoint *bp;
1494
    CPUArchState *env;
1495 1496 1497 1498 1499 1500 1501 1502 1503
    int err;

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

1504
        bp = g_malloc(sizeof(struct kvm_sw_breakpoint));
J
Jan Kiszka 已提交
1505
        if (!bp) {
1506
            return -ENOMEM;
J
Jan Kiszka 已提交
1507
        }
1508 1509 1510 1511 1512

        bp->pc = addr;
        bp->use_count = 1;
        err = kvm_arch_insert_sw_breakpoint(current_env, bp);
        if (err) {
1513
            g_free(bp);
1514 1515 1516
            return err;
        }

B
Blue Swirl 已提交
1517
        QTAILQ_INSERT_HEAD(&current_env->kvm_state->kvm_sw_breakpoints,
1518 1519 1520
                          bp, entry);
    } else {
        err = kvm_arch_insert_hw_breakpoint(addr, len, type);
J
Jan Kiszka 已提交
1521
        if (err) {
1522
            return err;
J
Jan Kiszka 已提交
1523
        }
1524 1525 1526 1527
    }

    for (env = first_cpu; env != NULL; env = env->next_cpu) {
        err = kvm_update_guest_debug(env, 0);
J
Jan Kiszka 已提交
1528
        if (err) {
1529
            return err;
J
Jan Kiszka 已提交
1530
        }
1531 1532 1533 1534
    }
    return 0;
}

1535
int kvm_remove_breakpoint(CPUArchState *current_env, target_ulong addr,
1536 1537 1538
                          target_ulong len, int type)
{
    struct kvm_sw_breakpoint *bp;
1539
    CPUArchState *env;
1540 1541 1542 1543
    int err;

    if (type == GDB_BREAKPOINT_SW) {
        bp = kvm_find_sw_breakpoint(current_env, addr);
J
Jan Kiszka 已提交
1544
        if (!bp) {
1545
            return -ENOENT;
J
Jan Kiszka 已提交
1546
        }
1547 1548 1549 1550 1551 1552 1553

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

        err = kvm_arch_remove_sw_breakpoint(current_env, bp);
J
Jan Kiszka 已提交
1554
        if (err) {
1555
            return err;
J
Jan Kiszka 已提交
1556
        }
1557

B
Blue Swirl 已提交
1558
        QTAILQ_REMOVE(&current_env->kvm_state->kvm_sw_breakpoints, bp, entry);
1559
        g_free(bp);
1560 1561
    } else {
        err = kvm_arch_remove_hw_breakpoint(addr, len, type);
J
Jan Kiszka 已提交
1562
        if (err) {
1563
            return err;
J
Jan Kiszka 已提交
1564
        }
1565 1566 1567 1568
    }

    for (env = first_cpu; env != NULL; env = env->next_cpu) {
        err = kvm_update_guest_debug(env, 0);
J
Jan Kiszka 已提交
1569
        if (err) {
1570
            return err;
J
Jan Kiszka 已提交
1571
        }
1572 1573 1574 1575
    }
    return 0;
}

1576
void kvm_remove_all_breakpoints(CPUArchState *current_env)
1577 1578 1579
{
    struct kvm_sw_breakpoint *bp, *next;
    KVMState *s = current_env->kvm_state;
1580
    CPUArchState *env;
1581

B
Blue Swirl 已提交
1582
    QTAILQ_FOREACH_SAFE(bp, &s->kvm_sw_breakpoints, entry, next) {
1583 1584 1585
        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 已提交
1586
                if (kvm_arch_remove_sw_breakpoint(env, bp) == 0) {
1587
                    break;
J
Jan Kiszka 已提交
1588
                }
1589 1590 1591 1592 1593
            }
        }
    }
    kvm_arch_remove_all_hw_breakpoints();

J
Jan Kiszka 已提交
1594
    for (env = first_cpu; env != NULL; env = env->next_cpu) {
1595
        kvm_update_guest_debug(env, 0);
J
Jan Kiszka 已提交
1596
    }
1597 1598 1599 1600
}

#else /* !KVM_CAP_SET_GUEST_DEBUG */

1601
int kvm_update_guest_debug(CPUArchState *env, unsigned long reinject_trap)
1602 1603 1604 1605
{
    return -EINVAL;
}

1606
int kvm_insert_breakpoint(CPUArchState *current_env, target_ulong addr,
1607 1608 1609 1610 1611
                          target_ulong len, int type)
{
    return -EINVAL;
}

1612
int kvm_remove_breakpoint(CPUArchState *current_env, target_ulong addr,
1613 1614 1615 1616 1617
                          target_ulong len, int type)
{
    return -EINVAL;
}

1618
void kvm_remove_all_breakpoints(CPUArchState *current_env)
1619 1620 1621
{
}
#endif /* !KVM_CAP_SET_GUEST_DEBUG */
1622

1623
int kvm_set_signal_mask(CPUArchState *env, const sigset_t *sigset)
1624 1625 1626 1627
{
    struct kvm_signal_mask *sigmask;
    int r;

J
Jan Kiszka 已提交
1628
    if (!sigset) {
1629
        return kvm_vcpu_ioctl(env, KVM_SET_SIGNAL_MASK, NULL);
J
Jan Kiszka 已提交
1630
    }
1631

1632
    sigmask = g_malloc(sizeof(*sigmask) + sizeof(*sigset));
1633 1634 1635 1636

    sigmask->len = 8;
    memcpy(sigmask->sigset, sigset, sizeof(*sigset));
    r = kvm_vcpu_ioctl(env, KVM_SET_SIGNAL_MASK, sigmask);
1637
    g_free(sigmask);
1638 1639 1640

    return r;
}
1641

1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669
int kvm_set_ioeventfd_mmio_long(int fd, uint32_t addr, uint32_t val, bool assign)
{
    int ret;
    struct kvm_ioeventfd iofd;

    iofd.datamatch = val;
    iofd.addr = addr;
    iofd.len = 4;
    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;
}

1670 1671 1672 1673 1674 1675 1676 1677 1678 1679
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 已提交
1680
    if (!kvm_enabled()) {
1681
        return -ENOSYS;
J
Jan Kiszka 已提交
1682 1683
    }
    if (!assign) {
1684
        kick.flags |= KVM_IOEVENTFD_FLAG_DEASSIGN;
J
Jan Kiszka 已提交
1685
    }
1686
    r = kvm_vm_ioctl(kvm_state, KVM_IOEVENTFD, &kick);
J
Jan Kiszka 已提交
1687
    if (r < 0) {
1688
        return r;
J
Jan Kiszka 已提交
1689
    }
1690
    return 0;
1691
}
1692

1693
int kvm_on_sigbus_vcpu(CPUArchState *env, int code, void *addr)
1694 1695 1696 1697 1698 1699 1700 1701
{
    return kvm_arch_on_sigbus_vcpu(env, code, addr);
}

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