ivshmem.c 24.3 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14
/*
 * Inter-VM Shared Memory PCI device.
 *
 * Author:
 *      Cam Macdonell <cam@cs.ualberta.ca>
 *
 * Based On: cirrus_vga.c
 *          Copyright (c) 2004 Fabrice Bellard
 *          Copyright (c) 2004 Makoto Suzuki (suzu)
 *
 *      and rtl8139.c
 *          Copyright (c) 2006 Igor Kovalenko
 *
 * This code is licensed under the GNU GPL v2.
15 16 17
 *
 * Contributions after 2012-01-13 are licensed under the terms of the
 * GNU GPL, version 2 or (at your option) any later version.
18
 */
19
#include "hw/hw.h"
P
Paolo Bonzini 已提交
20
#include "hw/i386/pc.h"
21 22
#include "hw/pci/pci.h"
#include "hw/pci/msix.h"
23
#include "sysemu/kvm.h"
24
#include "migration/migration.h"
25
#include "qapi/qmp/qerror.h"
26
#include "qemu/event_notifier.h"
27
#include "qemu/fifo8.h"
28
#include "sysemu/char.h"
29 30 31

#include <sys/mman.h>
#include <sys/types.h>
32
#include <limits.h>
33

34 35 36
#define PCI_VENDOR_ID_IVSHMEM   PCI_VENDOR_ID_REDHAT_QUMRANET
#define PCI_DEVICE_ID_IVSHMEM   0x1110

37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52
#define IVSHMEM_IOEVENTFD   0
#define IVSHMEM_MSI     1

#define IVSHMEM_PEER    0
#define IVSHMEM_MASTER  1

#define IVSHMEM_REG_BAR_SIZE 0x100

//#define DEBUG_IVSHMEM
#ifdef DEBUG_IVSHMEM
#define IVSHMEM_DPRINTF(fmt, ...)        \
    do {printf("IVSHMEM: " fmt, ## __VA_ARGS__); } while (0)
#else
#define IVSHMEM_DPRINTF(fmt, ...)
#endif

53 54 55 56
#define TYPE_IVSHMEM "ivshmem"
#define IVSHMEM(obj) \
    OBJECT_CHECK(IVShmemState, (obj), TYPE_IVSHMEM)

57 58
typedef struct Peer {
    int nb_eventfds;
59
    EventNotifier *eventfds;
60 61 62 63 64 65 66 67
} Peer;

typedef struct EventfdEntry {
    PCIDevice *pdev;
    int vector;
} EventfdEntry;

typedef struct IVShmemState {
68 69 70 71
    /*< private >*/
    PCIDevice parent_obj;
    /*< public >*/

72 73 74 75 76 77
    uint32_t intrmask;
    uint32_t intrstatus;
    uint32_t doorbell;

    CharDriverState **eventfd_chr;
    CharDriverState *server_chr;
78
    Fifo8 incoming_fifo;
A
Avi Kivity 已提交
79
    MemoryRegion ivshmem_mmio;
80

A
Avi Kivity 已提交
81 82 83 84 85 86
    /* We might need to register the BAR before we actually have the memory.
     * So prepare a container MemoryRegion for the BAR immediately and
     * add a subregion when we have the memory.
     */
    MemoryRegion bar;
    MemoryRegion ivshmem;
87
    uint64_t ivshmem_size; /* size of shared memory region */
G
Gerd Hoffmann 已提交
88 89
    uint32_t ivshmem_attr;
    uint32_t ivshmem_64bit;
90 91 92 93 94 95 96 97 98 99 100
    int shm_fd; /* shared memory file descriptor */

    Peer *peers;
    int nb_peers; /* how many guests we have space for */
    int max_peer; /* maximum numbered peer */

    int vm_id;
    uint32_t vectors;
    uint32_t features;
    EventfdEntry *eventfd_table;

101 102
    Error *migration_blocker;

103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128
    char * shmobj;
    char * sizearg;
    char * role;
    int role_val;   /* scalar to avoid multiple string comparisons */
} IVShmemState;

/* registers for the Inter-VM shared memory device */
enum ivshmem_registers {
    INTRMASK = 0,
    INTRSTATUS = 4,
    IVPOSITION = 8,
    DOORBELL = 12,
};

static inline uint32_t ivshmem_has_feature(IVShmemState *ivs,
                                                    unsigned int feature) {
    return (ivs->features & (1 << feature));
}

static inline bool is_power_of_two(uint64_t x) {
    return (x & (x - 1)) == 0;
}

/* accessing registers - based on rtl8139 */
static void ivshmem_update_irq(IVShmemState *s, int val)
{
129
    PCIDevice *d = PCI_DEVICE(s);
130 131 132 133 134 135
    int isr;
    isr = (s->intrstatus & s->intrmask) & 0xffffffff;

    /* don't print ISR resets */
    if (isr) {
        IVSHMEM_DPRINTF("Set IRQ to %d (%04x %04x)\n",
A
Andrew Jones 已提交
136
                        isr ? 1 : 0, s->intrstatus, s->intrmask);
137 138
    }

139
    pci_set_irq(d, (isr != 0));
140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180
}

static void ivshmem_IntrMask_write(IVShmemState *s, uint32_t val)
{
    IVSHMEM_DPRINTF("IntrMask write(w) val = 0x%04x\n", val);

    s->intrmask = val;

    ivshmem_update_irq(s, val);
}

static uint32_t ivshmem_IntrMask_read(IVShmemState *s)
{
    uint32_t ret = s->intrmask;

    IVSHMEM_DPRINTF("intrmask read(w) val = 0x%04x\n", ret);

    return ret;
}

static void ivshmem_IntrStatus_write(IVShmemState *s, uint32_t val)
{
    IVSHMEM_DPRINTF("IntrStatus write(w) val = 0x%04x\n", val);

    s->intrstatus = val;

    ivshmem_update_irq(s, val);
}

static uint32_t ivshmem_IntrStatus_read(IVShmemState *s)
{
    uint32_t ret = s->intrstatus;

    /* reading ISR clears all interrupts */
    s->intrstatus = 0;

    ivshmem_update_irq(s, 0);

    return ret;
}

A
Avi Kivity 已提交
181
static void ivshmem_io_write(void *opaque, hwaddr addr,
A
Avi Kivity 已提交
182
                             uint64_t val, unsigned size)
183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203
{
    IVShmemState *s = opaque;

    uint16_t dest = val >> 16;
    uint16_t vector = val & 0xff;

    addr &= 0xfc;

    IVSHMEM_DPRINTF("writing to addr " TARGET_FMT_plx "\n", addr);
    switch (addr)
    {
        case INTRMASK:
            ivshmem_IntrMask_write(s, val);
            break;

        case INTRSTATUS:
            ivshmem_IntrStatus_write(s, val);
            break;

        case DOORBELL:
            /* check that dest VM ID is reasonable */
204
            if (dest > s->max_peer) {
205 206 207 208 209
                IVSHMEM_DPRINTF("Invalid destination VM ID (%d)\n", dest);
                break;
            }

            /* check doorbell range */
210
            if (vector < s->peers[dest].nb_eventfds) {
211 212
                IVSHMEM_DPRINTF("Notifying VM %d on vector %d\n", dest, vector);
                event_notifier_set(&s->peers[dest].eventfds[vector]);
213 214 215 216 217 218 219
            }
            break;
        default:
            IVSHMEM_DPRINTF("Invalid VM Doorbell VM %d\n", dest);
    }
}

A
Avi Kivity 已提交
220
static uint64_t ivshmem_io_read(void *opaque, hwaddr addr,
A
Avi Kivity 已提交
221
                                unsigned size)
222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253
{

    IVShmemState *s = opaque;
    uint32_t ret;

    switch (addr)
    {
        case INTRMASK:
            ret = ivshmem_IntrMask_read(s);
            break;

        case INTRSTATUS:
            ret = ivshmem_IntrStatus_read(s);
            break;

        case IVPOSITION:
            /* return my VM ID if the memory is mapped */
            if (s->shm_fd > 0) {
                ret = s->vm_id;
            } else {
                ret = -1;
            }
            break;

        default:
            IVSHMEM_DPRINTF("why are we reading " TARGET_FMT_plx "\n", addr);
            ret = 0;
    }

    return ret;
}

A
Avi Kivity 已提交
254 255 256 257 258 259 260 261
static const MemoryRegionOps ivshmem_mmio_ops = {
    .read = ivshmem_io_read,
    .write = ivshmem_io_write,
    .endianness = DEVICE_NATIVE_ENDIAN,
    .impl = {
        .min_access_size = 4,
        .max_access_size = 4,
    },
262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291
};

static void ivshmem_receive(void *opaque, const uint8_t *buf, int size)
{
    IVShmemState *s = opaque;

    ivshmem_IntrStatus_write(s, *buf);

    IVSHMEM_DPRINTF("ivshmem_receive 0x%02x\n", *buf);
}

static int ivshmem_can_receive(void * opaque)
{
    return 8;
}

static void ivshmem_event(void *opaque, int event)
{
    IVSHMEM_DPRINTF("ivshmem_event %d\n", event);
}

static void fake_irqfd(void *opaque, const uint8_t *buf, int size) {

    EventfdEntry *entry = opaque;
    PCIDevice *pdev = entry->pdev;

    IVSHMEM_DPRINTF("interrupt on vector %p %d\n", pdev, entry->vector);
    msix_notify(pdev, entry->vector);
}

292 293
static CharDriverState* create_eventfd_chr_device(void * opaque, EventNotifier *n,
                                                  int vector)
294 295 296 297
{
    /* create a event character device based on the passed eventfd */
    IVShmemState *s = opaque;
    CharDriverState * chr;
298
    int eventfd = event_notifier_get_fd(n);
299 300 301 302

    chr = qemu_chr_open_eventfd(eventfd);

    if (chr == NULL) {
A
Andrew Jones 已提交
303 304
        error_report("creating eventfd for eventfd %d failed", eventfd);
        exit(1);
305
    }
306
    qemu_chr_fe_claim_no_fail(chr);
307 308 309

    /* if MSI is supported we need multiple interrupts */
    if (ivshmem_has_feature(s, IVSHMEM_MSI)) {
310
        s->eventfd_table[vector].pdev = PCI_DEVICE(s);
311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329
        s->eventfd_table[vector].vector = vector;

        qemu_chr_add_handlers(chr, ivshmem_can_receive, fake_irqfd,
                      ivshmem_event, &s->eventfd_table[vector]);
    } else {
        qemu_chr_add_handlers(chr, ivshmem_can_receive, ivshmem_receive,
                      ivshmem_event, s);
    }

    return chr;

}

static int check_shm_size(IVShmemState *s, int fd) {
    /* check that the guest isn't going to try and map more memory than the
     * the object has allocated return -1 to indicate error */

    struct stat buf;

330
    if (fstat(fd, &buf) < 0) {
A
Andrew Jones 已提交
331 332
        error_report("exiting: fstat on fd %d failed: %s",
                     fd, strerror(errno));
333 334
        return -1;
    }
335 336

    if (s->ivshmem_size > buf.st_size) {
A
Andrew Jones 已提交
337 338 339
        error_report("Requested memory size greater"
                     " than shared object size (%" PRIu64 " > %" PRIu64")",
                     s->ivshmem_size, (uint64_t)buf.st_size);
340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355
        return -1;
    } else {
        return 0;
    }
}

/* create the shared memory BAR when we are not using the server, so we can
 * create the BAR and map the memory immediately */
static void create_shared_memory_BAR(IVShmemState *s, int fd) {

    void * ptr;

    s->shm_fd = fd;

    ptr = mmap(0, s->ivshmem_size, PROT_READ|PROT_WRITE, MAP_SHARED, fd, 0);

356
    memory_region_init_ram_ptr(&s->ivshmem, OBJECT(s), "ivshmem.bar2",
A
Avi Kivity 已提交
357
                               s->ivshmem_size, ptr);
358
    vmstate_register_ram(&s->ivshmem, DEVICE(s));
A
Avi Kivity 已提交
359
    memory_region_add_subregion(&s->bar, 0, &s->ivshmem);
360 361

    /* region for shared memory */
362
    pci_register_bar(PCI_DEVICE(s), 2, s->ivshmem_attr, &s->bar);
363 364
}

365 366 367 368 369 370 371
static void ivshmem_add_eventfd(IVShmemState *s, int posn, int i)
{
    memory_region_add_eventfd(&s->ivshmem_mmio,
                              DOORBELL,
                              4,
                              true,
                              (posn << 16) | i,
372
                              &s->peers[posn].eventfds[i]);
373 374 375 376 377 378 379 380 381
}

static void ivshmem_del_eventfd(IVShmemState *s, int posn, int i)
{
    memory_region_del_eventfd(&s->ivshmem_mmio,
                              DOORBELL,
                              4,
                              true,
                              (posn << 16) | i,
382
                              &s->peers[posn].eventfds[i]);
383 384
}

385 386 387 388
static void close_guest_eventfds(IVShmemState *s, int posn)
{
    int i, guest_curr_max;

389 390 391
    if (!ivshmem_has_feature(s, IVSHMEM_IOEVENTFD)) {
        return;
    }
392 393 394
    if (posn < 0 || posn >= s->nb_peers) {
        return;
    }
395

396 397
    guest_curr_max = s->peers[posn].nb_eventfds;

398
    memory_region_transaction_begin();
399
    for (i = 0; i < guest_curr_max; i++) {
400
        ivshmem_del_eventfd(s, posn, i);
401 402 403
    }
    memory_region_transaction_commit();
    for (i = 0; i < guest_curr_max; i++) {
404
        event_notifier_cleanup(&s->peers[posn].eventfds[i]);
405 406
    }

407
    g_free(s->peers[posn].eventfds);
408 409 410 411 412
    s->peers[posn].nb_eventfds = 0;
}

/* this function increase the dynamic storage need to store data about other
 * guests */
413 414
static int increase_dynamic_storage(IVShmemState *s, int new_min_size)
{
415 416 417

    int j, old_nb_alloc;

418 419 420 421 422
    /* check for integer overflow */
    if (new_min_size >= INT_MAX / sizeof(Peer) - 1 || new_min_size <= 0) {
        return -1;
    }

423 424
    old_nb_alloc = s->nb_peers;

425 426 427 428 429 430
    if (new_min_size >= s->nb_peers) {
        /* +1 because #new_min_size is used as last array index */
        s->nb_peers = new_min_size + 1;
    } else {
        return 0;
    }
431 432

    IVSHMEM_DPRINTF("bumping storage to %d guests\n", s->nb_peers);
433
    s->peers = g_realloc(s->peers, s->nb_peers * sizeof(Peer));
434 435 436 437 438 439

    /* zero out new pointers */
    for (j = old_nb_alloc; j < s->nb_peers; j++) {
        s->peers[j].eventfds = NULL;
        s->peers[j].nb_eventfds = 0;
    }
440 441

    return 0;
442 443
}

444
static void ivshmem_read(void *opaque, const uint8_t *buf, int size)
445 446 447 448 449 450
{
    IVShmemState *s = opaque;
    int incoming_fd, tmp_fd;
    int guest_max_eventfd;
    long incoming_posn;

451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472
    if (fifo8_is_empty(&s->incoming_fifo) && size == sizeof(incoming_posn)) {
        memcpy(&incoming_posn, buf, size);
    } else {
        const uint8_t *p;
        uint32_t num;

        IVSHMEM_DPRINTF("short read of %d bytes\n", size);
        num = MAX(size, sizeof(long) - fifo8_num_used(&s->incoming_fifo));
        fifo8_push_all(&s->incoming_fifo, buf, num);
        if (fifo8_num_used(&s->incoming_fifo) < sizeof(incoming_posn)) {
            return;
        }
        size -= num;
        buf += num;
        p = fifo8_pop_buf(&s->incoming_fifo, sizeof(incoming_posn), &num);
        g_assert(num == sizeof(incoming_posn));
        memcpy(&incoming_posn, p, sizeof(incoming_posn));
        if (size > 0) {
            fifo8_push_all(&s->incoming_fifo, buf, size);
        }
    }

473 474 475 476 477
    if (incoming_posn < -1) {
        IVSHMEM_DPRINTF("invalid incoming_posn %ld\n", incoming_posn);
        return;
    }

478
    /* pick off s->server_chr->msgfd and store it, posn should accompany msg */
479
    tmp_fd = qemu_chr_fe_get_msgfd(s->server_chr);
480 481 482 483
    IVSHMEM_DPRINTF("posn is %ld, fd is %d\n", incoming_posn, tmp_fd);

    /* make sure we have enough space for this guest */
    if (incoming_posn >= s->nb_peers) {
484 485 486 487 488 489 490
        if (increase_dynamic_storage(s, incoming_posn) < 0) {
            error_report("increase_dynamic_storage() failed");
            if (tmp_fd != -1) {
                close(tmp_fd);
            }
            return;
        }
491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511
    }

    if (tmp_fd == -1) {
        /* if posn is positive and unseen before then this is our posn*/
        if ((incoming_posn >= 0) &&
                            (s->peers[incoming_posn].eventfds == NULL)) {
            /* receive our posn */
            s->vm_id = incoming_posn;
            return;
        } else {
            /* otherwise an fd == -1 means an existing guest has gone away */
            IVSHMEM_DPRINTF("posn %ld has gone away\n", incoming_posn);
            close_guest_eventfds(s, incoming_posn);
            return;
        }
    }

    /* because of the implementation of get_msgfd, we need a dup */
    incoming_fd = dup(tmp_fd);

    if (incoming_fd == -1) {
A
Andrew Jones 已提交
512
        error_report("could not allocate file descriptor %s", strerror(errno));
A
Andreas Färber 已提交
513
        close(tmp_fd);
514 515 516 517 518 519 520 521 522 523 524
        return;
    }

    /* if the position is -1, then it's shared memory region fd */
    if (incoming_posn == -1) {

        void * map_ptr;

        s->max_peer = 0;

        if (check_shm_size(s, incoming_fd) == -1) {
A
Andrew Jones 已提交
525
            exit(1);
526 527 528 529 530
        }

        /* mmap the region and map into the BAR2 */
        map_ptr = mmap(0, s->ivshmem_size, PROT_READ|PROT_WRITE, MAP_SHARED,
                                                            incoming_fd, 0);
531
        memory_region_init_ram_ptr(&s->ivshmem, OBJECT(s),
A
Avi Kivity 已提交
532
                                   "ivshmem.bar2", s->ivshmem_size, map_ptr);
533
        vmstate_register_ram(&s->ivshmem, DEVICE(s));
534

535
        IVSHMEM_DPRINTF("guest h/w addr = %p, size = %" PRIu64 "\n",
A
Andrew Jones 已提交
536
                        map_ptr, s->ivshmem_size);
537

A
Avi Kivity 已提交
538
        memory_region_add_subregion(&s->bar, 0, &s->ivshmem);
539 540 541 542 543 544 545 546 547 548 549 550 551

        /* only store the fd if it is successfully mapped */
        s->shm_fd = incoming_fd;

        return;
    }

    /* each guest has an array of eventfds, and we keep track of how many
     * guests for each VM */
    guest_max_eventfd = s->peers[incoming_posn].nb_eventfds;

    if (guest_max_eventfd == 0) {
        /* one eventfd per MSI vector */
552
        s->peers[incoming_posn].eventfds = g_new(EventNotifier, s->vectors);
553 554 555 556
    }

    /* this is an eventfd for a particular guest VM */
    IVSHMEM_DPRINTF("eventfds[%ld][%d] = %d\n", incoming_posn,
A
Andrew Jones 已提交
557
                    guest_max_eventfd, incoming_fd);
558 559
    event_notifier_init_fd(&s->peers[incoming_posn].eventfds[guest_max_eventfd],
                           incoming_fd);
560 561 562 563 564 565 566 567 568 569 570

    /* increment count for particular guest */
    s->peers[incoming_posn].nb_eventfds++;

    /* keep track of the maximum VM ID */
    if (incoming_posn > s->max_peer) {
        s->max_peer = incoming_posn;
    }

    if (incoming_posn == s->vm_id) {
        s->eventfd_chr[guest_max_eventfd] = create_eventfd_chr_device(s,
571
                   &s->peers[s->vm_id].eventfds[guest_max_eventfd],
572 573 574 575
                   guest_max_eventfd);
    }

    if (ivshmem_has_feature(s, IVSHMEM_IOEVENTFD)) {
576
        ivshmem_add_eventfd(s, incoming_posn, guest_max_eventfd);
577 578 579
    }
}

580 581 582 583 584
/* Select the MSI-X vectors used by device.
 * ivshmem maps events to vectors statically, so
 * we just enable all vectors on init and after reset. */
static void ivshmem_use_msix(IVShmemState * s)
{
585
    PCIDevice *d = PCI_DEVICE(s);
586 587
    int i;

588
    if (!msix_present(d)) {
589 590 591 592
        return;
    }

    for (i = 0; i < s->vectors; i++) {
593
        msix_vector_use(d, i);
594 595 596
    }
}

597 598
static void ivshmem_reset(DeviceState *d)
{
599
    IVShmemState *s = IVSHMEM(d);
600 601

    s->intrstatus = 0;
602
    ivshmem_use_msix(s);
603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618
}

static uint64_t ivshmem_get_size(IVShmemState * s) {

    uint64_t value;
    char *ptr;

    value = strtoull(s->sizearg, &ptr, 10);
    switch (*ptr) {
        case 0: case 'M': case 'm':
            value <<= 20;
            break;
        case 'G': case 'g':
            value <<= 30;
            break;
        default:
A
Andrew Jones 已提交
619
            error_report("invalid ram size: %s", s->sizearg);
620 621 622 623 624
            exit(1);
    }

    /* BARs must be a power of 2 */
    if (!is_power_of_two(value)) {
A
Andrew Jones 已提交
625
        error_report("size must be power of 2");
626 627 628 629 630 631
        exit(1);
    }

    return value;
}

632 633
static void ivshmem_setup_msi(IVShmemState * s)
{
634
    if (msix_init_exclusive_bar(PCI_DEVICE(s), s->vectors, 1)) {
635 636 637 638
        IVSHMEM_DPRINTF("msix initialization failed\n");
        exit(1);
    }

639 640
    IVSHMEM_DPRINTF("msix initialized (%d vectors)\n", s->vectors);

S
Stefan Weil 已提交
641
    /* allocate QEMU char devices for receiving interrupts */
642
    s->eventfd_table = g_malloc0(s->vectors * sizeof(EventfdEntry));
643 644

    ivshmem_use_msix(s);
645 646 647 648 649
}

static void ivshmem_save(QEMUFile* f, void *opaque)
{
    IVShmemState *proxy = opaque;
650
    PCIDevice *pci_dev = PCI_DEVICE(proxy);
651 652

    IVSHMEM_DPRINTF("ivshmem_save\n");
653
    pci_device_save(pci_dev, f);
654 655

    if (ivshmem_has_feature(proxy, IVSHMEM_MSI)) {
656
        msix_save(pci_dev, f);
657 658 659 660 661 662 663 664 665 666 667 668
    } else {
        qemu_put_be32(f, proxy->intrstatus);
        qemu_put_be32(f, proxy->intrmask);
    }

}

static int ivshmem_load(QEMUFile* f, void *opaque, int version_id)
{
    IVSHMEM_DPRINTF("ivshmem_load\n");

    IVShmemState *proxy = opaque;
669
    PCIDevice *pci_dev = PCI_DEVICE(proxy);
670
    int ret;
671 672 673 674 675 676

    if (version_id > 0) {
        return -EINVAL;
    }

    if (proxy->role_val == IVSHMEM_PEER) {
A
Andrew Jones 已提交
677
        error_report("'peer' devices are not migratable");
678 679 680
        return -EINVAL;
    }

681
    ret = pci_device_load(pci_dev, f);
682 683 684 685 686
    if (ret) {
        return ret;
    }

    if (ivshmem_has_feature(proxy, IVSHMEM_MSI)) {
687
        msix_load(pci_dev, f);
688
	ivshmem_use_msix(proxy);
689 690 691 692 693 694 695 696
    } else {
        proxy->intrstatus = qemu_get_be32(f);
        proxy->intrmask = qemu_get_be32(f);
    }

    return 0;
}

697 698 699 700 701 702 703
static void ivshmem_write_config(PCIDevice *pci_dev, uint32_t address,
				 uint32_t val, int len)
{
    pci_default_write_config(pci_dev, address, val, len);
    msix_write_config(pci_dev, address, val, len);
}

704 705
static int pci_ivshmem_init(PCIDevice *dev)
{
706
    IVShmemState *s = IVSHMEM(dev);
707 708 709 710 711 712 713 714
    uint8_t *pci_conf;

    if (s->sizearg == NULL)
        s->ivshmem_size = 4 << 20; /* 4 MB default */
    else {
        s->ivshmem_size = ivshmem_get_size(s);
    }

715 716
    fifo8_create(&s->incoming_fifo, sizeof(long));

717
    register_savevm(DEVICE(dev), "ivshmem", 0, 0, ivshmem_save, ivshmem_load,
718 719 720 721 722
                                                                        dev);

    /* IRQFD requires MSI */
    if (ivshmem_has_feature(s, IVSHMEM_IOEVENTFD) &&
        !ivshmem_has_feature(s, IVSHMEM_MSI)) {
A
Andrew Jones 已提交
723
        error_report("ioeventfd/irqfd requires MSI");
724 725 726 727 728 729 730 731 732 733
        exit(1);
    }

    /* check that role is reasonable */
    if (s->role) {
        if (strncmp(s->role, "peer", 5) == 0) {
            s->role_val = IVSHMEM_PEER;
        } else if (strncmp(s->role, "master", 7) == 0) {
            s->role_val = IVSHMEM_MASTER;
        } else {
A
Andrew Jones 已提交
734
            error_report("'role' must be 'peer' or 'master'");
735 736 737 738 739 740 741
            exit(1);
        }
    } else {
        s->role_val = IVSHMEM_MASTER; /* default */
    }

    if (s->role_val == IVSHMEM_PEER) {
742 743
        error_setg(&s->migration_blocker,
                   "Migration is disabled when using feature 'peer mode' in device 'ivshmem'");
744
        migrate_add_blocker(s->migration_blocker);
745 746
    }

747
    pci_conf = dev->config;
748 749 750 751 752 753
    pci_conf[PCI_COMMAND] = PCI_COMMAND_IO | PCI_COMMAND_MEMORY;

    pci_config_set_interrupt_pin(pci_conf, 1);

    s->shm_fd = 0;

754
    memory_region_init_io(&s->ivshmem_mmio, OBJECT(s), &ivshmem_mmio_ops, s,
A
Avi Kivity 已提交
755 756
                          "ivshmem-mmio", IVSHMEM_REG_BAR_SIZE);

757
    /* region for registers*/
758
    pci_register_bar(dev, 0, PCI_BASE_ADDRESS_SPACE_MEMORY,
759
                     &s->ivshmem_mmio);
A
Avi Kivity 已提交
760

761
    memory_region_init(&s->bar, OBJECT(s), "ivshmem-bar2-container", s->ivshmem_size);
G
Gerd Hoffmann 已提交
762 763 764 765 766
    s->ivshmem_attr = PCI_BASE_ADDRESS_SPACE_MEMORY |
        PCI_BASE_ADDRESS_MEM_PREFETCH;
    if (s->ivshmem_64bit) {
        s->ivshmem_attr |= PCI_BASE_ADDRESS_MEM_TYPE_64;
    }
767 768 769 770 771 772 773

    if ((s->server_chr != NULL) &&
                        (strncmp(s->server_chr->filename, "unix:", 5) == 0)) {
        /* if we get a UNIX socket as the parameter we will talk
         * to the ivshmem server to receive the memory region */

        if (s->shmobj != NULL) {
A
Andrew Jones 已提交
774 775
            error_report("WARNING: do not specify both 'chardev' "
                         "and 'shm' with ivshmem");
776 777 778
        }

        IVSHMEM_DPRINTF("using shared memory server (socket = %s)\n",
A
Andrew Jones 已提交
779
                        s->server_chr->filename);
780 781 782 783 784 785 786 787 788 789

        if (ivshmem_has_feature(s, IVSHMEM_MSI)) {
            ivshmem_setup_msi(s);
        }

        /* we allocate enough space for 16 guests and grow as needed */
        s->nb_peers = 16;
        s->vm_id = -1;

        /* allocate/initialize space for interrupt handling */
790
        s->peers = g_malloc0(s->nb_peers * sizeof(Peer));
791

792
        pci_register_bar(dev, 2, s->ivshmem_attr, &s->bar);
793

794
        s->eventfd_chr = g_malloc0(s->vectors * sizeof(CharDriverState *));
795 796 797 798 799 800 801 802

        qemu_chr_add_handlers(s->server_chr, ivshmem_can_receive, ivshmem_read,
                     ivshmem_event, s);
    } else {
        /* just map the file immediately, we're not using a server */
        int fd;

        if (s->shmobj == NULL) {
A
Andrew Jones 已提交
803
            error_report("Must specify 'chardev' or 'shm' to ivshmem");
804
            exit(1);
805 806 807 808 809 810 811 812 813 814
        }

        IVSHMEM_DPRINTF("using shm_open (shm object = %s)\n", s->shmobj);

        /* try opening with O_EXCL and if it succeeds zero the memory
         * by truncating to 0 */
        if ((fd = shm_open(s->shmobj, O_CREAT|O_RDWR|O_EXCL,
                        S_IRWXU|S_IRWXG|S_IRWXO)) > 0) {
           /* truncate file to length PCI device's memory */
            if (ftruncate(fd, s->ivshmem_size) != 0) {
A
Andrew Jones 已提交
815
                error_report("could not truncate shared file");
816 817 818 819
            }

        } else if ((fd = shm_open(s->shmobj, O_CREAT|O_RDWR,
                        S_IRWXU|S_IRWXG|S_IRWXO)) < 0) {
A
Andrew Jones 已提交
820 821
            error_report("could not open shared file");
            exit(1);
822 823 824 825

        }

        if (check_shm_size(s, fd) == -1) {
A
Andrew Jones 已提交
826
            exit(1);
827 828 829 830 831 832
        }

        create_shared_memory_BAR(s, fd);

    }

833
    dev->config_write = ivshmem_write_config;
834

835 836 837
    return 0;
}

838
static void pci_ivshmem_uninit(PCIDevice *dev)
839
{
840
    IVShmemState *s = IVSHMEM(dev);
841

842 843 844 845 846
    if (s->migration_blocker) {
        migrate_del_blocker(s->migration_blocker);
        error_free(s->migration_blocker);
    }

A
Avi Kivity 已提交
847
    memory_region_del_subregion(&s->bar, &s->ivshmem);
848 849
    vmstate_unregister_ram(&s->ivshmem, DEVICE(dev));
    unregister_savevm(DEVICE(dev), "ivshmem", s);
850
    fifo8_destroy(&s->incoming_fifo);
851 852
}

853 854 855 856 857 858 859 860
static Property ivshmem_properties[] = {
    DEFINE_PROP_CHR("chardev", IVShmemState, server_chr),
    DEFINE_PROP_STRING("size", IVShmemState, sizearg),
    DEFINE_PROP_UINT32("vectors", IVShmemState, vectors, 1),
    DEFINE_PROP_BIT("ioeventfd", IVShmemState, features, IVSHMEM_IOEVENTFD, false),
    DEFINE_PROP_BIT("msi", IVShmemState, features, IVSHMEM_MSI, true),
    DEFINE_PROP_STRING("shm", IVShmemState, shmobj),
    DEFINE_PROP_STRING("role", IVShmemState, role),
G
Gerd Hoffmann 已提交
861
    DEFINE_PROP_UINT32("use64", IVShmemState, ivshmem_64bit, 1),
862 863 864 865 866
    DEFINE_PROP_END_OF_LIST(),
};

static void ivshmem_class_init(ObjectClass *klass, void *data)
{
867
    DeviceClass *dc = DEVICE_CLASS(klass);
868 869 870 871
    PCIDeviceClass *k = PCI_DEVICE_CLASS(klass);

    k->init = pci_ivshmem_init;
    k->exit = pci_ivshmem_uninit;
872 873
    k->vendor_id = PCI_VENDOR_ID_IVSHMEM;
    k->device_id = PCI_DEVICE_ID_IVSHMEM;
874
    k->class_id = PCI_CLASS_MEMORY_RAM;
875 876
    dc->reset = ivshmem_reset;
    dc->props = ivshmem_properties;
877
    set_bit(DEVICE_CATEGORY_MISC, dc->categories);
878 879
}

880
static const TypeInfo ivshmem_info = {
881
    .name          = TYPE_IVSHMEM,
882 883 884
    .parent        = TYPE_PCI_DEVICE,
    .instance_size = sizeof(IVShmemState),
    .class_init    = ivshmem_class_init,
885 886
};

A
Andreas Färber 已提交
887
static void ivshmem_register_types(void)
888
{
889
    type_register_static(&ivshmem_info);
890 891
}

A
Andreas Färber 已提交
892
type_init(ivshmem_register_types)