kvm-all.c 52.8 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"
J
Jan Kiszka 已提交
28
#include "hw/hw.h"
29
#include "hw/pci/msi.h"
30
#include "exec/gdbstub.h"
31
#include "sysemu/kvm.h"
32
#include "qemu/bswap.h"
33 34
#include "exec/memory.h"
#include "exec/address-spaces.h"
35
#include "qemu/event_notifier.h"
36
#include "trace.h"
A
aliguori 已提交
37

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

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

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

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

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

60 61
#define KVM_MSI_HASHTAB_SIZE    256

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

71 72
typedef struct kvm_dirty_log KVMDirtyLog;

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

108
KVMState *kvm_state;
109
bool kvm_kernel_irqchip;
110
bool kvm_async_interrupts_allowed;
111
bool kvm_halt_in_kernel_allowed;
112
bool kvm_irqfds_allowed;
113
bool kvm_msi_via_irqfd_allowed;
114
bool kvm_gsi_routing_allowed;
115
bool kvm_gsi_direct_mapping;
116
bool kvm_allowed;
117
bool kvm_readonly_mem_allowed;
A
aliguori 已提交
118

119 120 121 122 123 124
static const KVMCapabilityInfo kvm_required_capabilites[] = {
    KVM_CAP_INFO(USER_MEMORY),
    KVM_CAP_INFO(DESTROY_MEMORY_REGION_WORKS),
    KVM_CAP_LAST_INFO
};

A
aliguori 已提交
125 126 127 128
static KVMSlot *kvm_alloc_slot(KVMState *s)
{
    int i;

129
    for (i = 0; i < s->nr_slots; i++) {
J
Jan Kiszka 已提交
130
        if (s->slots[i].memory_size == 0) {
A
aliguori 已提交
131
            return &s->slots[i];
J
Jan Kiszka 已提交
132
        }
A
aliguori 已提交
133 134
    }

135 136 137 138 139
    fprintf(stderr, "%s: no free slot available\n", __func__);
    abort();
}

static KVMSlot *kvm_lookup_matching_slot(KVMState *s,
A
Avi Kivity 已提交
140 141
                                         hwaddr start_addr,
                                         hwaddr end_addr)
142 143 144
{
    int i;

145
    for (i = 0; i < s->nr_slots; i++) {
146 147 148 149 150 151 152 153
        KVMSlot *mem = &s->slots[i];

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

A
aliguori 已提交
154 155 156
    return NULL;
}

157 158 159 160
/*
 * Find overlapping slot with lowest start address
 */
static KVMSlot *kvm_lookup_overlapping_slot(KVMState *s,
A
Avi Kivity 已提交
161 162
                                            hwaddr start_addr,
                                            hwaddr end_addr)
A
aliguori 已提交
163
{
164
    KVMSlot *found = NULL;
A
aliguori 已提交
165 166
    int i;

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

170 171 172 173 174 175 176 177 178
        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 已提交
179 180
    }

181
    return found;
A
aliguori 已提交
182 183
}

184
int kvm_physical_memory_addr_from_host(KVMState *s, void *ram,
A
Avi Kivity 已提交
185
                                       hwaddr *phys_addr)
186 187 188
{
    int i;

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

192 193
        if (ram >= mem->ram && ram < mem->ram + mem->memory_size) {
            *phys_addr = mem->start_addr + (ram - mem->ram);
194 195 196 197 198 199 200
            return 1;
        }
    }

    return 0;
}

201 202 203 204 205 206
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;
207
    mem.userspace_addr = (unsigned long)slot->ram;
208
    mem.flags = slot->flags;
209 210 211
    if (s->migration_log) {
        mem.flags |= KVM_MEM_LOG_DIRTY_PAGES;
    }
212 213

    if (slot->memory_size && mem.flags & KVM_MEM_READONLY) {
214 215 216 217 218 219
        /* 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;
220 221 222
    return kvm_vm_ioctl(s, KVM_SET_USER_MEMORY_REGION, &mem);
}

J
Jan Kiszka 已提交
223 224
static void kvm_reset_vcpu(void *opaque)
{
A
Andreas Färber 已提交
225
    CPUState *cpu = opaque;
J
Jan Kiszka 已提交
226

A
Andreas Färber 已提交
227
    kvm_arch_reset_vcpu(cpu);
J
Jan Kiszka 已提交
228
}
229

230
int kvm_init_vcpu(CPUState *cpu)
A
aliguori 已提交
231 232 233 234 235
{
    KVMState *s = kvm_state;
    long mmap_size;
    int ret;

236
    DPRINTF("kvm_init_vcpu\n");
A
aliguori 已提交
237

238
    ret = kvm_vm_ioctl(s, KVM_CREATE_VCPU, (void *)kvm_arch_vcpu_id(cpu));
A
aliguori 已提交
239
    if (ret < 0) {
240
        DPRINTF("kvm_create_vcpu failed\n");
A
aliguori 已提交
241 242 243
        goto err;
    }

A
Andreas Färber 已提交
244
    cpu->kvm_fd = ret;
245
    cpu->kvm_state = s;
A
Andreas Färber 已提交
246
    cpu->kvm_vcpu_dirty = true;
A
aliguori 已提交
247 248 249

    mmap_size = kvm_ioctl(s, KVM_GET_VCPU_MMAP_SIZE, 0);
    if (mmap_size < 0) {
250
        ret = mmap_size;
251
        DPRINTF("KVM_GET_VCPU_MMAP_SIZE failed\n");
A
aliguori 已提交
252 253 254
        goto err;
    }

A
Andreas Färber 已提交
255
    cpu->kvm_run = mmap(NULL, mmap_size, PROT_READ | PROT_WRITE, MAP_SHARED,
A
Andreas Färber 已提交
256
                        cpu->kvm_fd, 0);
A
Andreas Färber 已提交
257
    if (cpu->kvm_run == MAP_FAILED) {
A
aliguori 已提交
258
        ret = -errno;
259
        DPRINTF("mmap'ing vcpu state failed\n");
A
aliguori 已提交
260 261 262
        goto err;
    }

J
Jan Kiszka 已提交
263 264
    if (s->coalesced_mmio && !s->coalesced_mmio_ring) {
        s->coalesced_mmio_ring =
A
Andreas Färber 已提交
265
            (void *)cpu->kvm_run + s->coalesced_mmio * PAGE_SIZE;
J
Jan Kiszka 已提交
266
    }
267

A
Andreas Färber 已提交
268
    ret = kvm_arch_init_vcpu(cpu);
J
Jan Kiszka 已提交
269
    if (ret == 0) {
A
Andreas Färber 已提交
270 271
        qemu_register_reset(kvm_reset_vcpu, cpu);
        kvm_arch_reset_vcpu(cpu);
J
Jan Kiszka 已提交
272
    }
A
aliguori 已提交
273 274 275 276
err:
    return ret;
}

277 278 279
/*
 * dirty pages logging control
 */
280

281
static int kvm_mem_flags(KVMState *s, bool log_dirty, bool readonly)
282
{
283 284 285 286 287 288
    int flags = 0;
    flags = log_dirty ? KVM_MEM_LOG_DIRTY_PAGES : 0;
    if (readonly && kvm_readonly_mem_allowed) {
        flags |= KVM_MEM_READONLY;
    }
    return flags;
289 290 291
}

static int kvm_slot_dirty_pages_log_change(KVMSlot *mem, bool log_dirty)
292 293
{
    KVMState *s = kvm_state;
294
    int flags, mask = KVM_MEM_LOG_DIRTY_PAGES;
295 296 297
    int old_flags;

    old_flags = mem->flags;
298

299
    flags = (mem->flags & ~mask) | kvm_mem_flags(s, log_dirty, false);
300 301
    mem->flags = flags;

302 303 304 305
    /* If nothing changed effectively, no need to issue ioctl */
    if (s->migration_log) {
        flags |= KVM_MEM_LOG_DIRTY_PAGES;
    }
306

307
    if (flags == old_flags) {
308
        return 0;
309 310
    }

311 312 313
    return kvm_set_user_memory_region(s, mem);
}

A
Avi Kivity 已提交
314
static int kvm_dirty_pages_log_change(hwaddr phys_addr,
315 316 317 318 319 320 321 322
                                      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,
A
Avi Kivity 已提交
323
                (hwaddr)(phys_addr + size - 1));
324 325 326 327 328
        return -EINVAL;
    }
    return kvm_slot_dirty_pages_log_change(mem, log_dirty);
}

A
Avi Kivity 已提交
329 330
static void kvm_log_start(MemoryListener *listener,
                          MemoryRegionSection *section)
331
{
A
Avi Kivity 已提交
332 333 334
    int r;

    r = kvm_dirty_pages_log_change(section->offset_within_address_space,
335
                                   int128_get64(section->size), true);
A
Avi Kivity 已提交
336 337 338
    if (r < 0) {
        abort();
    }
339 340
}

A
Avi Kivity 已提交
341 342
static void kvm_log_stop(MemoryListener *listener,
                          MemoryRegionSection *section)
343
{
A
Avi Kivity 已提交
344 345 346
    int r;

    r = kvm_dirty_pages_log_change(section->offset_within_address_space,
347
                                   int128_get64(section->size), false);
A
Avi Kivity 已提交
348 349 350
    if (r < 0) {
        abort();
    }
351 352
}

353
static int kvm_set_migration_log(int enable)
354 355 356 357 358 359 360
{
    KVMState *s = kvm_state;
    KVMSlot *mem;
    int i, err;

    s->migration_log = enable;

361
    for (i = 0; i < s->nr_slots; i++) {
362 363
        mem = &s->slots[i];

364 365 366
        if (!mem->memory_size) {
            continue;
        }
367 368 369 370 371 372 373 374 375 376 377
        if (!!(mem->flags & KVM_MEM_LOG_DIRTY_PAGES) == enable) {
            continue;
        }
        err = kvm_set_user_memory_region(s, mem);
        if (err) {
            return err;
        }
    }
    return 0;
}

378
/* get kvm's dirty pages bitmap and update qemu's */
379 380
static int kvm_get_dirty_pages_log_range(MemoryRegionSection *section,
                                         unsigned long *bitmap)
A
Alexander Graf 已提交
381
{
382
    unsigned int i, j;
383
    unsigned long page_number, c;
A
Avi Kivity 已提交
384
    hwaddr addr, addr1;
385 386
    unsigned int pages = int128_get64(section->size) / getpagesize();
    unsigned int len = (pages + HOST_LONG_BITS - 1) / HOST_LONG_BITS;
387
    unsigned long hpratio = getpagesize() / TARGET_PAGE_SIZE;
388 389 390 391 392 393 394 395 396 397 398

    /*
     * 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);
399
                page_number = (i * HOST_LONG_BITS + j) * hpratio;
400
                addr1 = page_number * TARGET_PAGE_SIZE;
401
                addr = section->offset_within_region + addr1;
402 403
                memory_region_set_dirty(section->mr, addr,
                                        TARGET_PAGE_SIZE * hpratio);
404 405 406 407
            } while (c != 0);
        }
    }
    return 0;
A
Alexander Graf 已提交
408 409
}

410 411
#define ALIGN(x, y)  (((x)+(y)-1) & ~((y)-1))

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

431 432 433 434 435 436
    d.dirty_bitmap = NULL;
    while (start_addr < end_addr) {
        mem = kvm_lookup_overlapping_slot(s, start_addr, end_addr);
        if (mem == NULL) {
            break;
        }
437

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

460
        d.slot = mem->slot;
461

462
        if (kvm_vm_ioctl(s, KVM_GET_DIRTY_LOG, &d) == -1) {
463
            DPRINTF("ioctl failed %d\n", errno);
464 465 466
            ret = -1;
            break;
        }
467

468
        kvm_get_dirty_pages_log_range(section, d.dirty_bitmap);
469
        start_addr = mem->start_addr + mem->memory_size;
470
    }
471
    g_free(d.dirty_bitmap);
472 473

    return ret;
474 475
}

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

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

        zone.addr = start;
        zone.size = size;
487
        zone.pad = 0;
A
aliguori 已提交
488

489
        (void)kvm_vm_ioctl(s, KVM_REGISTER_COALESCED_MMIO, &zone);
A
aliguori 已提交
490 491 492
    }
}

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

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

        zone.addr = start;
        zone.size = size;
504
        zone.pad = 0;
A
aliguori 已提交
505

506
        (void)kvm_vm_ioctl(s, KVM_UNREGISTER_COALESCED_MMIO, &zone);
A
aliguori 已提交
507 508 509
    }
}

510 511 512 513 514 515 516 517 518 519 520 521
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;
}

522
static int kvm_set_ioeventfd_mmio(int fd, uint32_t addr, uint32_t val,
523
                                  bool assign, uint32_t size, bool datamatch)
M
Michael S. Tsirkin 已提交
524 525 526 527
{
    int ret;
    struct kvm_ioeventfd iofd;

528
    iofd.datamatch = datamatch ? val : 0;
M
Michael S. Tsirkin 已提交
529 530
    iofd.addr = addr;
    iofd.len = size;
531
    iofd.flags = 0;
M
Michael S. Tsirkin 已提交
532 533 534 535 536 537
    iofd.fd = fd;

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

538 539 540
    if (datamatch) {
        iofd.flags |= KVM_IOEVENTFD_FLAG_DATAMATCH;
    }
M
Michael S. Tsirkin 已提交
541 542 543 544 545 546 547 548 549 550 551 552 553
    if (!assign) {
        iofd.flags |= KVM_IOEVENTFD_FLAG_DEASSIGN;
    }

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

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

    return 0;
}

554
static int kvm_set_ioeventfd_pio(int fd, uint16_t addr, uint16_t val,
555
                                 bool assign, uint32_t size, bool datamatch)
M
Michael S. Tsirkin 已提交
556 557
{
    struct kvm_ioeventfd kick = {
558
        .datamatch = datamatch ? val : 0,
M
Michael S. Tsirkin 已提交
559
        .addr = addr,
560
        .flags = KVM_IOEVENTFD_FLAG_PIO,
561
        .len = size,
M
Michael S. Tsirkin 已提交
562 563 564 565 566 567
        .fd = fd,
    };
    int r;
    if (!kvm_enabled()) {
        return -ENOSYS;
    }
568 569 570
    if (datamatch) {
        kick.flags |= KVM_IOEVENTFD_FLAG_DATAMATCH;
    }
M
Michael S. Tsirkin 已提交
571 572 573 574 575 576 577 578 579 580 581
    if (!assign) {
        kick.flags |= KVM_IOEVENTFD_FLAG_DEASSIGN;
    }
    r = kvm_vm_ioctl(kvm_state, KVM_IOEVENTFD, &kick);
    if (r < 0) {
        return r;
    }
    return 0;
}


582 583
static int kvm_check_many_ioeventfds(void)
{
584 585 586 587 588
    /* 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
589 590
     * can avoid creating too many ioeventfds.
     */
591
#if defined(CONFIG_EVENTFD)
592 593 594 595 596 597 598
    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;
        }
599
        ret = kvm_set_ioeventfd_pio(ioeventfds[i], 0, i, true, 2, true);
600 601 602 603 604 605 606 607 608 609
        if (ret < 0) {
            close(ioeventfds[i]);
            break;
        }
    }

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

    while (i-- > 0) {
610
        kvm_set_ioeventfd_pio(ioeventfds[i], 0, i, false, 2, true);
611 612 613 614 615 616 617 618
        close(ioeventfds[i]);
    }
    return ret;
#else
    return 0;
#endif
}

619 620 621 622 623 624 625 626 627 628 629 630
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 已提交
631
static void kvm_set_phys_mem(MemoryRegionSection *section, bool add)
632 633 634 635
{
    KVMState *s = kvm_state;
    KVMSlot *mem, old;
    int err;
A
Avi Kivity 已提交
636 637
    MemoryRegion *mr = section->mr;
    bool log_dirty = memory_region_is_logging(mr);
638 639
    bool writeable = !mr->readonly && !mr->rom_device;
    bool readonly_flag = mr->readonly || memory_region_is_romd(mr);
A
Avi Kivity 已提交
640
    hwaddr start_addr = section->offset_within_address_space;
641
    ram_addr_t size = int128_get64(section->size);
642
    void *ram = NULL;
A
Avi Kivity 已提交
643
    unsigned delta;
644

645 646
    /* kvm works in page size chunks, but the function may be called
       with sub-page size and unaligned start address. */
A
Avi Kivity 已提交
647 648 649 650 651 652 653 654 655 656
    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;
    }
657

A
Avi Kivity 已提交
658
    if (!memory_region_is_ram(mr)) {
659 660 661 662 663 664 665
        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;
        }
666 667
    }

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

670 671 672 673 674 675
    while (1) {
        mem = kvm_lookup_overlapping_slot(s, start_addr, start_addr + size);
        if (!mem) {
            break;
        }

A
Avi Kivity 已提交
676
        if (add && start_addr >= mem->start_addr &&
677
            (start_addr + size <= mem->start_addr + mem->memory_size) &&
678
            (ram - start_addr == mem->ram - mem->start_addr)) {
679
            /* The new slot fits into the existing one and comes with
680 681
             * identical parameters - update flags and done. */
            kvm_slot_dirty_pages_log_change(mem, log_dirty);
682 683 684 685 686
            return;
        }

        old = *mem;

687 688 689 690
        if (mem->flags & KVM_MEM_LOG_DIRTY_PAGES) {
            kvm_physical_sync_dirty_bitmap(section);
        }

691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708
        /* 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 已提交
709
            old.start_addr == start_addr && old.memory_size < size && add) {
710 711 712
            mem = kvm_alloc_slot(s);
            mem->memory_size = old.memory_size;
            mem->start_addr = old.start_addr;
713
            mem->ram = old.ram;
714
            mem->flags = kvm_mem_flags(s, log_dirty, readonly_flag);
715 716 717 718 719 720 721 722 723

            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;
724
            ram += old.memory_size;
725 726 727 728 729 730 731 732 733
            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;
734
            mem->ram = old.ram;
735
            mem->flags =  kvm_mem_flags(s, log_dirty, readonly_flag);
736 737 738 739 740

            err = kvm_set_user_memory_region(s, mem);
            if (err) {
                fprintf(stderr, "%s: error registering prefix slot: %s\n",
                        __func__, strerror(-err));
741 742 743 744 745
#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
746 747 748 749 750 751 752 753 754 755 756 757
                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;
758
            mem->ram = old.ram + size_delta;
759
            mem->flags = kvm_mem_flags(s, log_dirty, readonly_flag);
760 761 762 763 764 765 766 767 768 769 770

            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 已提交
771
    if (!size) {
772
        return;
J
Jan Kiszka 已提交
773
    }
A
Avi Kivity 已提交
774
    if (!add) {
775
        return;
J
Jan Kiszka 已提交
776
    }
777 778 779
    mem = kvm_alloc_slot(s);
    mem->memory_size = size;
    mem->start_addr = start_addr;
780
    mem->ram = ram;
781
    mem->flags = kvm_mem_flags(s, log_dirty, readonly_flag);
782 783 784 785 786 787 788 789 790

    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 已提交
791 792 793
static void kvm_region_add(MemoryListener *listener,
                           MemoryRegionSection *section)
{
P
Paolo Bonzini 已提交
794
    memory_region_ref(section->mr);
A
Avi Kivity 已提交
795 796 797 798 799 800 801
    kvm_set_phys_mem(section, true);
}

static void kvm_region_del(MemoryListener *listener,
                           MemoryRegionSection *section)
{
    kvm_set_phys_mem(section, false);
P
Paolo Bonzini 已提交
802
    memory_region_unref(section->mr);
A
Avi Kivity 已提交
803 804 805 806
}

static void kvm_log_sync(MemoryListener *listener,
                         MemoryRegionSection *section)
807
{
A
Avi Kivity 已提交
808 809
    int r;

810
    r = kvm_physical_sync_dirty_bitmap(section);
A
Avi Kivity 已提交
811 812 813
    if (r < 0) {
        abort();
    }
814 815
}

A
Avi Kivity 已提交
816
static void kvm_log_global_start(struct MemoryListener *listener)
817
{
A
Avi Kivity 已提交
818 819 820 821
    int r;

    r = kvm_set_migration_log(1);
    assert(r >= 0);
822 823
}

A
Avi Kivity 已提交
824
static void kvm_log_global_stop(struct MemoryListener *listener)
825
{
A
Avi Kivity 已提交
826 827 828 829
    int r;

    r = kvm_set_migration_log(0);
    assert(r >= 0);
830 831
}

832 833 834 835 836 837
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);
838 839
    int r;

840
    r = kvm_set_ioeventfd_mmio(fd, section->offset_within_address_space,
841 842
                               data, true, int128_get64(section->size),
                               match_data);
843
    if (r < 0) {
844 845
        fprintf(stderr, "%s: error adding ioeventfd: %s\n",
                __func__, strerror(-r));
846 847 848 849
        abort();
    }
}

850 851 852 853
static void kvm_mem_ioeventfd_del(MemoryListener *listener,
                                  MemoryRegionSection *section,
                                  bool match_data, uint64_t data,
                                  EventNotifier *e)
854
{
855
    int fd = event_notifier_get_fd(e);
856 857
    int r;

858
    r = kvm_set_ioeventfd_mmio(fd, section->offset_within_address_space,
859 860
                               data, false, int128_get64(section->size),
                               match_data);
861 862 863 864 865
    if (r < 0) {
        abort();
    }
}

866 867 868 869
static void kvm_io_ioeventfd_add(MemoryListener *listener,
                                 MemoryRegionSection *section,
                                 bool match_data, uint64_t data,
                                 EventNotifier *e)
870
{
871
    int fd = event_notifier_get_fd(e);
872 873
    int r;

874
    r = kvm_set_ioeventfd_pio(fd, section->offset_within_address_space,
875 876
                              data, true, int128_get64(section->size),
                              match_data);
877
    if (r < 0) {
878 879
        fprintf(stderr, "%s: error adding ioeventfd: %s\n",
                __func__, strerror(-r));
880 881 882 883
        abort();
    }
}

884 885 886 887
static void kvm_io_ioeventfd_del(MemoryListener *listener,
                                 MemoryRegionSection *section,
                                 bool match_data, uint64_t data,
                                 EventNotifier *e)
888 889

{
890
    int fd = event_notifier_get_fd(e);
891 892
    int r;

893
    r = kvm_set_ioeventfd_pio(fd, section->offset_within_address_space,
894 895
                              data, false, int128_get64(section->size),
                              match_data);
896 897 898 899 900
    if (r < 0) {
        abort();
    }
}

A
Avi Kivity 已提交
901 902 903
static MemoryListener kvm_memory_listener = {
    .region_add = kvm_region_add,
    .region_del = kvm_region_del,
904 905
    .log_start = kvm_log_start,
    .log_stop = kvm_log_stop,
A
Avi Kivity 已提交
906 907 908
    .log_sync = kvm_log_sync,
    .log_global_start = kvm_log_global_start,
    .log_global_stop = kvm_log_global_stop,
909 910
    .eventfd_add = kvm_mem_ioeventfd_add,
    .eventfd_del = kvm_mem_ioeventfd_del,
911 912
    .coalesced_mmio_add = kvm_coalesce_mmio_region,
    .coalesced_mmio_del = kvm_uncoalesce_mmio_region,
913 914 915 916 917 918
    .priority = 10,
};

static MemoryListener kvm_io_listener = {
    .eventfd_add = kvm_io_ioeventfd_add,
    .eventfd_del = kvm_io_ioeventfd_del,
919
    .priority = 10,
920 921
};

922
static void kvm_handle_interrupt(CPUState *cpu, int mask)
923
{
924
    cpu->interrupt_request |= mask;
925

926
    if (!qemu_cpu_is_self(cpu)) {
927
        qemu_cpu_kick(cpu);
928 929 930
    }
}

931
int kvm_set_irq(KVMState *s, int irq, int level)
932 933 934 935
{
    struct kvm_irq_level event;
    int ret;

936
    assert(kvm_async_interrupts_enabled());
937 938 939

    event.level = level;
    event.irq = irq;
940
    ret = kvm_vm_ioctl(s, s->irq_set_ioctl, &event);
941
    if (ret < 0) {
942
        perror("kvm_set_irq");
943 944 945
        abort();
    }

946
    return (s->irq_set_ioctl == KVM_IRQ_LINE) ? 1 : event.status;
947 948 949
}

#ifdef KVM_CAP_IRQ_ROUTING
950 951 952 953 954
typedef struct KVMMSIRoute {
    struct kvm_irq_routing_entry kroute;
    QTAILQ_ENTRY(KVMMSIRoute) entry;
} KVMMSIRoute;

955 956 957 958 959
static void set_gsi(KVMState *s, unsigned int gsi)
{
    s->used_gsi_bitmap[gsi / 32] |= 1U << (gsi % 32);
}

960 961 962 963 964
static void clear_gsi(KVMState *s, unsigned int gsi)
{
    s->used_gsi_bitmap[gsi / 32] &= ~(1U << (gsi % 32));
}

965
void kvm_init_irq_routing(KVMState *s)
966
{
967
    int gsi_count, i;
968 969 970 971 972 973

    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 */
974
        gsi_bits = ALIGN(gsi_count, 32);
975
        s->used_gsi_bitmap = g_malloc0(gsi_bits / 8);
976
        s->gsi_count = gsi_count;
977 978 979 980 981 982 983 984 985 986

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

987 988 989 990
    if (!s->direct_msi) {
        for (i = 0; i < KVM_MSI_HASHTAB_SIZE; i++) {
            QTAILQ_INIT(&s->msi_hashtab[i]);
        }
991 992
    }

993 994 995
    kvm_arch_init_irq_routing(s);
}

996
void kvm_irqchip_commit_routes(KVMState *s)
997 998 999 1000 1001 1002 1003 1004
{
    int ret;

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

1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022
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];
1023 1024

    *new = *entry;
1025 1026 1027 1028

    set_gsi(s, entry->gsi);
}

1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040
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;
        }

1041 1042 1043 1044
        if(!memcmp(entry, new_entry, sizeof *entry)) {
            return 0;
        }

1045
        *entry = *new_entry;
1046 1047 1048 1049 1050 1051 1052 1053 1054

        kvm_irqchip_commit_routes(s);

        return 0;
    }

    return -ESRCH;
}

1055
void kvm_irqchip_add_irq_route(KVMState *s, int irq, int irqchip, int pin)
1056
{
1057
    struct kvm_irq_routing_entry e = {};
1058

1059 1060
    assert(pin < s->gsi_count);

1061 1062 1063 1064 1065 1066 1067 1068
    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);
}

1069
void kvm_irqchip_release_virq(KVMState *s, int virq)
1070 1071 1072 1073
{
    struct kvm_irq_routing_entry *e;
    int i;

1074 1075 1076 1077
    if (kvm_gsi_direct_mapping()) {
        return;
    }

1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125
    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;
    int i, bit;
    bool retry = true;

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

        return bit - 1 + i * 32;
    }
1126
    if (!s->direct_msi && retry) {
1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142
        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) &&
1143
            route->kroute.u.msi.data == le32_to_cpu(msg.data)) {
1144 1145 1146 1147 1148 1149 1150 1151
            return route;
        }
    }
    return NULL;
}

int kvm_irqchip_send_msi(KVMState *s, MSIMessage msg)
{
1152
    struct kvm_msi msi;
1153 1154
    KVMMSIRoute *route;

1155 1156 1157
    if (s->direct_msi) {
        msi.address_lo = (uint32_t)msg.address;
        msi.address_hi = msg.address >> 32;
1158
        msi.data = le32_to_cpu(msg.data);
1159 1160 1161 1162 1163 1164
        msi.flags = 0;
        memset(msi.pad, 0, sizeof(msi.pad));

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

1165 1166
    route = kvm_lookup_msi_route(s, msg);
    if (!route) {
1167
        int virq;
1168 1169 1170 1171 1172 1173

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

1174
        route = g_malloc0(sizeof(KVMMSIRoute));
1175 1176 1177 1178 1179
        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;
1180
        route->kroute.u.msi.data = le32_to_cpu(msg.data);
1181 1182

        kvm_add_routing_entry(s, &route->kroute);
1183
        kvm_irqchip_commit_routes(s);
1184 1185 1186 1187 1188 1189 1190

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

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

1191
    return kvm_set_irq(s, route->kroute.gsi, 1);
1192 1193
}

1194 1195
int kvm_irqchip_add_msi_route(KVMState *s, MSIMessage msg)
{
1196
    struct kvm_irq_routing_entry kroute = {};
1197 1198
    int virq;

1199 1200 1201 1202
    if (kvm_gsi_direct_mapping()) {
        return msg.data & 0xffff;
    }

1203
    if (!kvm_gsi_routing_enabled()) {
1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216
        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;
1217
    kroute.u.msi.data = le32_to_cpu(msg.data);
1218 1219

    kvm_add_routing_entry(s, &kroute);
1220
    kvm_irqchip_commit_routes(s);
1221 1222 1223 1224

    return virq;
}

1225 1226
int kvm_irqchip_update_msi_route(KVMState *s, int virq, MSIMessage msg)
{
1227
    struct kvm_irq_routing_entry kroute = {};
1228

1229 1230 1231 1232
    if (kvm_gsi_direct_mapping()) {
        return 0;
    }

1233 1234 1235 1236 1237 1238 1239 1240 1241
    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;
1242
    kroute.u.msi.data = le32_to_cpu(msg.data);
1243 1244 1245 1246

    return kvm_update_routing_entry(s, &kroute);
}

1247 1248
static int kvm_irqchip_assign_irqfd(KVMState *s, int fd, int rfd, int virq,
                                    bool assign)
1249 1250 1251 1252 1253 1254 1255
{
    struct kvm_irqfd irqfd = {
        .fd = fd,
        .gsi = virq,
        .flags = assign ? 0 : KVM_IRQFD_FLAG_DEASSIGN,
    };

1256 1257 1258 1259 1260
    if (rfd != -1) {
        irqfd.flags |= KVM_IRQFD_FLAG_RESAMPLE;
        irqfd.resamplefd = rfd;
    }

1261
    if (!kvm_irqfds_enabled()) {
1262 1263 1264 1265 1266 1267
        return -ENOSYS;
    }

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

1268 1269
#else /* !KVM_CAP_IRQ_ROUTING */

1270
void kvm_init_irq_routing(KVMState *s)
1271 1272
{
}
1273

1274 1275 1276 1277
void kvm_irqchip_release_virq(KVMState *s, int virq)
{
}

1278 1279 1280 1281
int kvm_irqchip_send_msi(KVMState *s, MSIMessage msg)
{
    abort();
}
1282 1283 1284

int kvm_irqchip_add_msi_route(KVMState *s, MSIMessage msg)
{
1285
    return -ENOSYS;
1286
}
1287 1288 1289 1290 1291

static int kvm_irqchip_assign_irqfd(KVMState *s, int fd, int virq, bool assign)
{
    abort();
}
1292 1293 1294 1295 1296

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

1299 1300
int kvm_irqchip_add_irqfd_notifier(KVMState *s, EventNotifier *n,
                                   EventNotifier *rn, int virq)
1301
{
1302 1303
    return kvm_irqchip_assign_irqfd(s, event_notifier_get_fd(n),
           rn ? event_notifier_get_fd(rn) : -1, virq, true);
1304 1305
}

J
Jan Kiszka 已提交
1306
int kvm_irqchip_remove_irqfd_notifier(KVMState *s, EventNotifier *n, int virq)
1307
{
1308 1309
    return kvm_irqchip_assign_irqfd(s, event_notifier_get_fd(n), -1, virq,
           false);
1310 1311
}

1312 1313 1314 1315
static int kvm_irqchip_create(KVMState *s)
{
    int ret;

1316
    if (!qemu_opt_get_bool(qemu_get_machine_opts(), "kernel_irqchip", true) ||
1317 1318 1319 1320 1321 1322 1323 1324 1325 1326
        !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;
    }

1327
    kvm_kernel_irqchip = true;
1328 1329 1330 1331
    /* 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;
1332
    kvm_halt_in_kernel_allowed = true;
1333 1334 1335 1336 1337 1338

    kvm_init_irq_routing(s);

    return 0;
}

1339 1340 1341 1342 1343
/* 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)
1344
{
1345 1346 1347
    int ret = kvm_check_extension(s, KVM_CAP_NR_VCPUS);
    return (ret) ? ret : 4;
}
1348

1349 1350 1351 1352
static int kvm_max_vcpus(KVMState *s)
{
    int ret = kvm_check_extension(s, KVM_CAP_MAX_VCPUS);
    return (ret) ? ret : kvm_recommended_vcpus(s);
1353 1354
}

1355
int kvm_init(void)
A
aliguori 已提交
1356
{
1357 1358 1359
    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";
1360 1361 1362 1363 1364 1365 1366 1367 1368
    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 已提交
1369
    KVMState *s;
1370
    const KVMCapabilityInfo *missing_cap;
A
aliguori 已提交
1371 1372 1373
    int ret;
    int i;

1374
    s = g_malloc0(sizeof(KVMState));
A
aliguori 已提交
1375

1376 1377 1378 1379 1380 1381 1382 1383
    /*
     * 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());

1384
#ifdef KVM_CAP_SET_GUEST_DEBUG
B
Blue Swirl 已提交
1385
    QTAILQ_INIT(&s->kvm_sw_breakpoints);
1386
#endif
A
aliguori 已提交
1387
    s->vmfd = -1;
K
Kevin Wolf 已提交
1388
    s->fd = qemu_open("/dev/kvm", O_RDWR);
A
aliguori 已提交
1389 1390 1391 1392 1393 1394 1395 1396
    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 已提交
1397
        if (ret > 0) {
A
aliguori 已提交
1398
            ret = -EINVAL;
J
Jan Kiszka 已提交
1399
        }
A
aliguori 已提交
1400 1401 1402 1403 1404 1405 1406 1407 1408 1409
        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;
    }

1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422
    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;
    }

1423 1424 1425
    /* check the vcpu limits */
    soft_vcpus_limit = kvm_recommended_vcpus(s);
    hard_vcpus_limit = kvm_max_vcpus(s);
1426

1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442
    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) {
                ret = -EINVAL;
                fprintf(stderr, "Number of %s cpus requested (%d) exceeds "
                        "the maximum cpus supported by KVM (%d)\n",
                        nc->name, nc->num, hard_vcpus_limit);
                goto err;
            }
        }
        nc++;
1443 1444
    }

A
aliguori 已提交
1445
    s->vmfd = kvm_ioctl(s, KVM_CREATE_VM, 0);
1446 1447 1448 1449 1450
    if (s->vmfd < 0) {
#ifdef TARGET_S390X
        fprintf(stderr, "Please add the 'switch_amode' kernel parameter to "
                        "your host kernel command line\n");
#endif
1451
        ret = s->vmfd;
A
aliguori 已提交
1452
        goto err;
1453
    }
A
aliguori 已提交
1454

1455 1456 1457 1458
    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 已提交
1459
    }
1460
    if (missing_cap) {
1461
        ret = -EINVAL;
1462 1463
        fprintf(stderr, "kvm does not support %s\n%s",
                missing_cap->name, upgrade_note);
1464 1465 1466
        goto err;
    }

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

1469
    s->broken_set_mem_region = 1;
1470
    ret = kvm_check_extension(s, KVM_CAP_JOIN_MEMORY_REGIONS_WORKS);
1471 1472 1473 1474
    if (ret > 0) {
        s->broken_set_mem_region = 0;
    }

1475 1476 1477 1478
#ifdef KVM_CAP_VCPU_EVENTS
    s->vcpu_events = kvm_check_extension(s, KVM_CAP_VCPU_EVENTS);
#endif

1479 1480 1481
    s->robust_singlestep =
        kvm_check_extension(s, KVM_CAP_X86_ROBUST_SINGLESTEP);

1482 1483 1484 1485
#ifdef KVM_CAP_DEBUGREGS
    s->debugregs = kvm_check_extension(s, KVM_CAP_DEBUGREGS);
#endif

1486 1487 1488 1489 1490 1491 1492 1493
#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 已提交
1494 1495 1496 1497
#ifdef KVM_CAP_PIT_STATE2
    s->pit_state2 = kvm_check_extension(s, KVM_CAP_PIT_STATE2);
#endif

1498
#ifdef KVM_CAP_IRQ_ROUTING
1499
    s->direct_msi = (kvm_check_extension(s, KVM_CAP_SIGNAL_MSI) > 0);
1500
#endif
1501

1502 1503
    s->intx_set_mask = kvm_check_extension(s, KVM_CAP_PCI_2_3);

1504
    s->irq_set_ioctl = KVM_IRQ_LINE;
1505
    if (kvm_check_extension(s, KVM_CAP_IRQ_INJECT_STATUS)) {
1506
        s->irq_set_ioctl = KVM_IRQ_LINE_STATUS;
1507 1508
    }

1509 1510 1511 1512 1513
#ifdef KVM_CAP_READONLY_MEM
    kvm_readonly_mem_allowed =
        (kvm_check_extension(s, KVM_CAP_READONLY_MEM) > 0);
#endif

1514
    ret = kvm_arch_init(s);
J
Jan Kiszka 已提交
1515
    if (ret < 0) {
A
aliguori 已提交
1516
        goto err;
J
Jan Kiszka 已提交
1517
    }
A
aliguori 已提交
1518

1519 1520 1521 1522 1523
    ret = kvm_irqchip_create(s);
    if (ret < 0) {
        goto err;
    }

A
aliguori 已提交
1524
    kvm_state = s;
1525 1526
    memory_listener_register(&kvm_memory_listener, &address_space_memory);
    memory_listener_register(&kvm_io_listener, &address_space_io);
A
aliguori 已提交
1527

1528 1529
    s->many_ioeventfds = kvm_check_many_ioeventfds();

1530 1531
    cpu_interrupt_handler = kvm_handle_interrupt;

A
aliguori 已提交
1532 1533 1534
    return 0;

err:
1535 1536 1537 1538 1539
    if (s->vmfd >= 0) {
        close(s->vmfd);
    }
    if (s->fd != -1) {
        close(s->fd);
A
aliguori 已提交
1540
    }
1541
    g_free(s->slots);
1542
    g_free(s);
A
aliguori 已提交
1543 1544 1545 1546

    return ret;
}

1547 1548
static void kvm_handle_io(uint16_t port, void *data, int direction, int size,
                          uint32_t count)
A
aliguori 已提交
1549 1550 1551 1552 1553
{
    int i;
    uint8_t *ptr = data;

    for (i = 0; i < count; i++) {
J
Jan Kiszka 已提交
1554 1555
        address_space_rw(&address_space_io, port, ptr, size,
                         direction == KVM_EXIT_IO_OUT);
A
aliguori 已提交
1556 1557 1558 1559
        ptr += size;
    }
}

1560
static int kvm_handle_internal_error(CPUState *cpu, struct kvm_run *run)
M
Marcelo Tosatti 已提交
1561
{
1562
    fprintf(stderr, "KVM internal error.");
M
Marcelo Tosatti 已提交
1563 1564 1565
    if (kvm_check_extension(kvm_state, KVM_CAP_INTERNAL_ERROR_DATA)) {
        int i;

1566
        fprintf(stderr, " Suberror: %d\n", run->internal.suberror);
M
Marcelo Tosatti 已提交
1567 1568 1569 1570
        for (i = 0; i < run->internal.ndata; ++i) {
            fprintf(stderr, "extra data[%d]: %"PRIx64"\n",
                    i, (uint64_t)run->internal.data[i]);
        }
1571 1572
    } else {
        fprintf(stderr, "\n");
M
Marcelo Tosatti 已提交
1573 1574 1575
    }
    if (run->internal.suberror == KVM_INTERNAL_ERROR_EMULATION) {
        fprintf(stderr, "emulation failure\n");
A
Andreas Färber 已提交
1576
        if (!kvm_arch_stop_on_emulation_error(cpu)) {
1577
            cpu_dump_state(cpu, stderr, fprintf, CPU_DUMP_CODE);
1578
            return EXCP_INTERRUPT;
J
Jan Kiszka 已提交
1579
        }
M
Marcelo Tosatti 已提交
1580 1581 1582 1583
    }
    /* FIXME: Should trigger a qmp message to let management know
     * something went wrong.
     */
J
Jan Kiszka 已提交
1584
    return -1;
M
Marcelo Tosatti 已提交
1585 1586
}

1587
void kvm_flush_coalesced_mmio_buffer(void)
A
aliguori 已提交
1588 1589
{
    KVMState *s = kvm_state;
1590 1591 1592 1593 1594 1595 1596

    if (s->coalesced_flush_in_progress) {
        return;
    }

    s->coalesced_flush_in_progress = true;

1597 1598
    if (s->coalesced_mmio_ring) {
        struct kvm_coalesced_mmio_ring *ring = s->coalesced_mmio_ring;
A
aliguori 已提交
1599 1600 1601 1602 1603 1604
        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);
1605
            smp_wmb();
A
aliguori 已提交
1606 1607 1608
            ring->first = (ring->first + 1) % KVM_COALESCED_MMIO_MAX;
        }
    }
1609 1610

    s->coalesced_flush_in_progress = false;
A
aliguori 已提交
1611 1612
}

A
Andreas Färber 已提交
1613
static void do_kvm_cpu_synchronize_state(void *arg)
1614
{
A
Andreas Färber 已提交
1615
    CPUState *cpu = arg;
1616

A
Andreas Färber 已提交
1617 1618 1619
    if (!cpu->kvm_vcpu_dirty) {
        kvm_arch_get_registers(cpu);
        cpu->kvm_vcpu_dirty = true;
1620 1621 1622
    }
}

1623
void kvm_cpu_synchronize_state(CPUState *cpu)
1624
{
A
Andreas Färber 已提交
1625 1626
    if (!cpu->kvm_vcpu_dirty) {
        run_on_cpu(cpu, do_kvm_cpu_synchronize_state, cpu);
J
Jan Kiszka 已提交
1627
    }
1628 1629
}

1630
void kvm_cpu_synchronize_post_reset(CPUState *cpu)
1631
{
A
Andreas Färber 已提交
1632 1633
    kvm_arch_put_registers(cpu, KVM_PUT_RESET_STATE);
    cpu->kvm_vcpu_dirty = false;
1634 1635
}

1636
void kvm_cpu_synchronize_post_init(CPUState *cpu)
1637
{
A
Andreas Färber 已提交
1638 1639
    kvm_arch_put_registers(cpu, KVM_PUT_FULL_STATE);
    cpu->kvm_vcpu_dirty = false;
1640 1641
}

1642
int kvm_cpu_exec(CPUState *cpu)
A
aliguori 已提交
1643
{
A
Andreas Färber 已提交
1644
    struct kvm_run *run = cpu->kvm_run;
1645
    int ret, run_ret;
A
aliguori 已提交
1646

1647
    DPRINTF("kvm_cpu_exec()\n");
A
aliguori 已提交
1648

A
Andreas Färber 已提交
1649
    if (kvm_arch_process_async_events(cpu)) {
1650
        cpu->exit_request = 0;
1651
        return EXCP_HLT;
1652
    }
M
Marcelo Tosatti 已提交
1653

1654
    do {
A
Andreas Färber 已提交
1655 1656 1657
        if (cpu->kvm_vcpu_dirty) {
            kvm_arch_put_registers(cpu, KVM_PUT_RUNTIME_STATE);
            cpu->kvm_vcpu_dirty = false;
1658 1659
        }

A
Andreas Färber 已提交
1660
        kvm_arch_pre_run(cpu, run);
1661
        if (cpu->exit_request) {
1662 1663 1664 1665 1666 1667 1668 1669
            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();
        }
1670
        qemu_mutex_unlock_iothread();
1671

1672
        run_ret = kvm_vcpu_ioctl(cpu, KVM_RUN, 0);
1673

1674
        qemu_mutex_lock_iothread();
A
Andreas Färber 已提交
1675
        kvm_arch_post_run(cpu, run);
A
aliguori 已提交
1676

1677
        if (run_ret < 0) {
1678 1679
            if (run_ret == -EINTR || run_ret == -EAGAIN) {
                DPRINTF("io window exit\n");
1680
                ret = EXCP_INTERRUPT;
1681 1682
                break;
            }
1683 1684
            fprintf(stderr, "error: kvm run failed %s\n",
                    strerror(-run_ret));
A
aliguori 已提交
1685 1686 1687
            abort();
        }

1688
        trace_kvm_run_exit(cpu->cpu_index, run->exit_reason);
A
aliguori 已提交
1689 1690
        switch (run->exit_reason) {
        case KVM_EXIT_IO:
1691
            DPRINTF("handle_io\n");
1692 1693 1694 1695 1696
            kvm_handle_io(run->io.port,
                          (uint8_t *)run + run->io.data_offset,
                          run->io.direction,
                          run->io.size,
                          run->io.count);
1697
            ret = 0;
A
aliguori 已提交
1698 1699
            break;
        case KVM_EXIT_MMIO:
1700
            DPRINTF("handle_mmio\n");
A
aliguori 已提交
1701 1702 1703 1704
            cpu_physical_memory_rw(run->mmio.phys_addr,
                                   run->mmio.data,
                                   run->mmio.len,
                                   run->mmio.is_write);
1705
            ret = 0;
A
aliguori 已提交
1706 1707
            break;
        case KVM_EXIT_IRQ_WINDOW_OPEN:
1708
            DPRINTF("irq_window_open\n");
1709
            ret = EXCP_INTERRUPT;
A
aliguori 已提交
1710 1711
            break;
        case KVM_EXIT_SHUTDOWN:
1712
            DPRINTF("shutdown\n");
A
aliguori 已提交
1713
            qemu_system_reset_request();
1714
            ret = EXCP_INTERRUPT;
A
aliguori 已提交
1715 1716
            break;
        case KVM_EXIT_UNKNOWN:
1717 1718
            fprintf(stderr, "KVM: unknown exit, hardware reason %" PRIx64 "\n",
                    (uint64_t)run->hw.hardware_exit_reason);
J
Jan Kiszka 已提交
1719
            ret = -1;
A
aliguori 已提交
1720
            break;
M
Marcelo Tosatti 已提交
1721
        case KVM_EXIT_INTERNAL_ERROR:
1722
            ret = kvm_handle_internal_error(cpu, run);
M
Marcelo Tosatti 已提交
1723
            break;
A
aliguori 已提交
1724
        default:
1725
            DPRINTF("kvm_arch_handle_exit\n");
A
Andreas Färber 已提交
1726
            ret = kvm_arch_handle_exit(cpu, run);
A
aliguori 已提交
1727 1728
            break;
        }
1729
    } while (ret == 0);
A
aliguori 已提交
1730

J
Jan Kiszka 已提交
1731
    if (ret < 0) {
1732
        cpu_dump_state(cpu, stderr, fprintf, CPU_DUMP_CODE);
1733
        vm_stop(RUN_STATE_INTERNAL_ERROR);
A
aliguori 已提交
1734 1735
    }

1736
    cpu->exit_request = 0;
A
aliguori 已提交
1737 1738 1739
    return ret;
}

1740
int kvm_ioctl(KVMState *s, int type, ...)
A
aliguori 已提交
1741 1742
{
    int ret;
1743 1744
    void *arg;
    va_list ap;
A
aliguori 已提交
1745

1746 1747 1748 1749
    va_start(ap, type);
    arg = va_arg(ap, void *);
    va_end(ap);

1750
    trace_kvm_ioctl(type, arg);
1751
    ret = ioctl(s->fd, type, arg);
J
Jan Kiszka 已提交
1752
    if (ret == -1) {
A
aliguori 已提交
1753
        ret = -errno;
J
Jan Kiszka 已提交
1754
    }
A
aliguori 已提交
1755 1756 1757
    return ret;
}

1758
int kvm_vm_ioctl(KVMState *s, int type, ...)
A
aliguori 已提交
1759 1760
{
    int ret;
1761 1762 1763 1764 1765 1766
    void *arg;
    va_list ap;

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

1768
    trace_kvm_vm_ioctl(type, arg);
1769
    ret = ioctl(s->vmfd, type, arg);
J
Jan Kiszka 已提交
1770
    if (ret == -1) {
A
aliguori 已提交
1771
        ret = -errno;
J
Jan Kiszka 已提交
1772
    }
A
aliguori 已提交
1773 1774 1775
    return ret;
}

1776
int kvm_vcpu_ioctl(CPUState *cpu, int type, ...)
A
aliguori 已提交
1777 1778
{
    int ret;
1779 1780 1781 1782 1783 1784
    void *arg;
    va_list ap;

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

1786
    trace_kvm_vcpu_ioctl(cpu->cpu_index, type, arg);
A
Andreas Färber 已提交
1787
    ret = ioctl(cpu->kvm_fd, type, arg);
J
Jan Kiszka 已提交
1788
    if (ret == -1) {
A
aliguori 已提交
1789
        ret = -errno;
J
Jan Kiszka 已提交
1790
    }
A
aliguori 已提交
1791 1792
    return ret;
}
A
aliguori 已提交
1793 1794 1795

int kvm_has_sync_mmu(void)
{
1796
    return kvm_check_extension(kvm_state, KVM_CAP_SYNC_MMU);
A
aliguori 已提交
1797
}
1798

1799 1800 1801 1802 1803
int kvm_has_vcpu_events(void)
{
    return kvm_state->vcpu_events;
}

1804 1805 1806 1807 1808
int kvm_has_robust_singlestep(void)
{
    return kvm_state->robust_singlestep;
}

1809 1810 1811 1812 1813
int kvm_has_debugregs(void)
{
    return kvm_state->debugregs;
}

1814 1815 1816 1817 1818 1819 1820 1821 1822 1823
int kvm_has_xsave(void)
{
    return kvm_state->xsave;
}

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

J
Jan Kiszka 已提交
1824 1825 1826 1827 1828
int kvm_has_pit_state2(void)
{
    return kvm_state->pit_state2;
}

1829 1830 1831 1832 1833 1834 1835 1836
int kvm_has_many_ioeventfds(void)
{
    if (!kvm_enabled()) {
        return 0;
    }
    return kvm_state->many_ioeventfds;
}

1837 1838
int kvm_has_gsi_routing(void)
{
A
Alexander Graf 已提交
1839
#ifdef KVM_CAP_IRQ_ROUTING
1840
    return kvm_check_extension(kvm_state, KVM_CAP_IRQ_ROUTING);
A
Alexander Graf 已提交
1841 1842 1843
#else
    return false;
#endif
1844 1845
}

1846 1847 1848 1849 1850
int kvm_has_intx_set_mask(void)
{
    return kvm_state->intx_set_mask;
}

1851 1852
void kvm_setup_guest_memory(void *start, size_t size)
{
1853 1854 1855
#ifdef CONFIG_VALGRIND_H
    VALGRIND_MAKE_MEM_DEFINED(start, size);
#endif
1856
    if (!kvm_has_sync_mmu()) {
A
Andreas Färber 已提交
1857
        int ret = qemu_madvise(start, size, QEMU_MADV_DONTFORK);
1858 1859

        if (ret) {
A
Andreas Färber 已提交
1860 1861 1862
            perror("qemu_madvise");
            fprintf(stderr,
                    "Need MADV_DONTFORK in absence of synchronous KVM MMU\n");
1863 1864 1865 1866 1867
            exit(1);
        }
    }
}

1868
#ifdef KVM_CAP_SET_GUEST_DEBUG
1869
struct kvm_sw_breakpoint *kvm_find_sw_breakpoint(CPUState *cpu,
1870 1871 1872 1873
                                                 target_ulong pc)
{
    struct kvm_sw_breakpoint *bp;

1874
    QTAILQ_FOREACH(bp, &cpu->kvm_state->kvm_sw_breakpoints, entry) {
J
Jan Kiszka 已提交
1875
        if (bp->pc == pc) {
1876
            return bp;
J
Jan Kiszka 已提交
1877
        }
1878 1879 1880 1881
    }
    return NULL;
}

1882
int kvm_sw_breakpoints_active(CPUState *cpu)
1883
{
1884
    return !QTAILQ_EMPTY(&cpu->kvm_state->kvm_sw_breakpoints);
1885 1886
}

G
Glauber Costa 已提交
1887 1888
struct kvm_set_guest_debug_data {
    struct kvm_guest_debug dbg;
1889
    CPUState *cpu;
G
Glauber Costa 已提交
1890 1891 1892 1893 1894 1895
    int err;
};

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

1897 1898
    dbg_data->err = kvm_vcpu_ioctl(dbg_data->cpu, KVM_SET_GUEST_DEBUG,
                                   &dbg_data->dbg);
G
Glauber Costa 已提交
1899 1900
}

1901
int kvm_update_guest_debug(CPUState *cpu, unsigned long reinject_trap)
1902
{
G
Glauber Costa 已提交
1903
    struct kvm_set_guest_debug_data data;
1904

1905
    data.dbg.control = reinject_trap;
1906

1907
    if (cpu->singlestep_enabled) {
1908 1909
        data.dbg.control |= KVM_GUESTDBG_ENABLE | KVM_GUESTDBG_SINGLESTEP;
    }
A
Andreas Färber 已提交
1910
    kvm_arch_update_guest_debug(cpu, &data.dbg);
1911
    data.cpu = cpu;
1912

1913
    run_on_cpu(cpu, kvm_invoke_set_guest_debug, &data);
G
Glauber Costa 已提交
1914
    return data.err;
1915 1916
}

1917
int kvm_insert_breakpoint(CPUState *cpu, target_ulong addr,
1918 1919 1920 1921 1922 1923
                          target_ulong len, int type)
{
    struct kvm_sw_breakpoint *bp;
    int err;

    if (type == GDB_BREAKPOINT_SW) {
1924
        bp = kvm_find_sw_breakpoint(cpu, addr);
1925 1926 1927 1928 1929
        if (bp) {
            bp->use_count++;
            return 0;
        }

1930
        bp = g_malloc(sizeof(struct kvm_sw_breakpoint));
J
Jan Kiszka 已提交
1931
        if (!bp) {
1932
            return -ENOMEM;
J
Jan Kiszka 已提交
1933
        }
1934 1935 1936

        bp->pc = addr;
        bp->use_count = 1;
1937
        err = kvm_arch_insert_sw_breakpoint(cpu, bp);
1938
        if (err) {
1939
            g_free(bp);
1940 1941 1942
            return err;
        }

1943
        QTAILQ_INSERT_HEAD(&cpu->kvm_state->kvm_sw_breakpoints, bp, entry);
1944 1945
    } else {
        err = kvm_arch_insert_hw_breakpoint(addr, len, type);
J
Jan Kiszka 已提交
1946
        if (err) {
1947
            return err;
J
Jan Kiszka 已提交
1948
        }
1949 1950
    }

A
Andreas Färber 已提交
1951
    CPU_FOREACH(cpu) {
1952
        err = kvm_update_guest_debug(cpu, 0);
J
Jan Kiszka 已提交
1953
        if (err) {
1954
            return err;
J
Jan Kiszka 已提交
1955
        }
1956 1957 1958 1959
    }
    return 0;
}

1960
int kvm_remove_breakpoint(CPUState *cpu, target_ulong addr,
1961 1962 1963 1964 1965 1966
                          target_ulong len, int type)
{
    struct kvm_sw_breakpoint *bp;
    int err;

    if (type == GDB_BREAKPOINT_SW) {
1967
        bp = kvm_find_sw_breakpoint(cpu, addr);
J
Jan Kiszka 已提交
1968
        if (!bp) {
1969
            return -ENOENT;
J
Jan Kiszka 已提交
1970
        }
1971 1972 1973 1974 1975 1976

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

1977
        err = kvm_arch_remove_sw_breakpoint(cpu, bp);
J
Jan Kiszka 已提交
1978
        if (err) {
1979
            return err;
J
Jan Kiszka 已提交
1980
        }
1981

1982
        QTAILQ_REMOVE(&cpu->kvm_state->kvm_sw_breakpoints, bp, entry);
1983
        g_free(bp);
1984 1985
    } else {
        err = kvm_arch_remove_hw_breakpoint(addr, len, type);
J
Jan Kiszka 已提交
1986
        if (err) {
1987
            return err;
J
Jan Kiszka 已提交
1988
        }
1989 1990
    }

A
Andreas Färber 已提交
1991
    CPU_FOREACH(cpu) {
1992
        err = kvm_update_guest_debug(cpu, 0);
J
Jan Kiszka 已提交
1993
        if (err) {
1994
            return err;
J
Jan Kiszka 已提交
1995
        }
1996 1997 1998 1999
    }
    return 0;
}

2000
void kvm_remove_all_breakpoints(CPUState *cpu)
2001 2002
{
    struct kvm_sw_breakpoint *bp, *next;
2003
    KVMState *s = cpu->kvm_state;
2004

B
Blue Swirl 已提交
2005
    QTAILQ_FOREACH_SAFE(bp, &s->kvm_sw_breakpoints, entry, next) {
2006
        if (kvm_arch_remove_sw_breakpoint(cpu, bp) != 0) {
2007
            /* Try harder to find a CPU that currently sees the breakpoint. */
A
Andreas Färber 已提交
2008
            CPU_FOREACH(cpu) {
A
Andreas Färber 已提交
2009
                if (kvm_arch_remove_sw_breakpoint(cpu, bp) == 0) {
2010
                    break;
J
Jan Kiszka 已提交
2011
                }
2012 2013
            }
        }
2014 2015
        QTAILQ_REMOVE(&s->kvm_sw_breakpoints, bp, entry);
        g_free(bp);
2016 2017 2018
    }
    kvm_arch_remove_all_hw_breakpoints();

A
Andreas Färber 已提交
2019
    CPU_FOREACH(cpu) {
2020
        kvm_update_guest_debug(cpu, 0);
J
Jan Kiszka 已提交
2021
    }
2022 2023 2024 2025
}

#else /* !KVM_CAP_SET_GUEST_DEBUG */

2026
int kvm_update_guest_debug(CPUState *cpu, unsigned long reinject_trap)
2027 2028 2029 2030
{
    return -EINVAL;
}

2031
int kvm_insert_breakpoint(CPUState *cpu, target_ulong addr,
2032 2033 2034 2035 2036
                          target_ulong len, int type)
{
    return -EINVAL;
}

2037
int kvm_remove_breakpoint(CPUState *cpu, target_ulong addr,
2038 2039 2040 2041 2042
                          target_ulong len, int type)
{
    return -EINVAL;
}

2043
void kvm_remove_all_breakpoints(CPUState *cpu)
2044 2045 2046
{
}
#endif /* !KVM_CAP_SET_GUEST_DEBUG */
2047

2048
int kvm_set_signal_mask(CPUState *cpu, const sigset_t *sigset)
2049 2050 2051 2052
{
    struct kvm_signal_mask *sigmask;
    int r;

J
Jan Kiszka 已提交
2053
    if (!sigset) {
2054
        return kvm_vcpu_ioctl(cpu, KVM_SET_SIGNAL_MASK, NULL);
J
Jan Kiszka 已提交
2055
    }
2056

2057
    sigmask = g_malloc(sizeof(*sigmask) + sizeof(*sigset));
2058 2059 2060

    sigmask->len = 8;
    memcpy(sigmask->sigset, sigset, sizeof(*sigset));
2061
    r = kvm_vcpu_ioctl(cpu, KVM_SET_SIGNAL_MASK, sigmask);
2062
    g_free(sigmask);
2063 2064 2065

    return r;
}
2066
int kvm_on_sigbus_vcpu(CPUState *cpu, int code, void *addr)
2067
{
A
Andreas Färber 已提交
2068
    return kvm_arch_on_sigbus_vcpu(cpu, code, addr);
2069 2070 2071 2072 2073 2074
}

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