ivshmem.c 28.0 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 "qemu/error-report.h"
26
#include "qemu/event_notifier.h"
27
#include "qemu/fifo8.h"
28
#include "sysemu/char.h"
M
Marc-André Lureau 已提交
29 30
#include "sysemu/hostmem.h"
#include "qapi/visitor.h"
31

32 33
#include "hw/misc/ivshmem.h"

34 35
#include <sys/mman.h>
#include <sys/types.h>
36
#include <limits.h>
37

38 39 40
#define PCI_VENDOR_ID_IVSHMEM   PCI_VENDOR_ID_REDHAT_QUMRANET
#define PCI_DEVICE_ID_IVSHMEM   0x1110

41
#define IVSHMEM_MAX_PEERS G_MAXUINT16
42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57
#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

58 59 60 61
#define TYPE_IVSHMEM "ivshmem"
#define IVSHMEM(obj) \
    OBJECT_CHECK(IVShmemState, (obj), TYPE_IVSHMEM)

M
Marc-André Lureau 已提交
62 63
#define IVSHMEM_MEMDEV_PROP "memdev"

64 65
typedef struct Peer {
    int nb_eventfds;
66
    EventNotifier *eventfds;
67 68 69 70 71 72 73 74
} Peer;

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

typedef struct IVShmemState {
75 76 77 78
    /*< private >*/
    PCIDevice parent_obj;
    /*< public >*/

M
Marc-André Lureau 已提交
79
    HostMemoryBackend *hostmem;
80 81 82 83 84
    uint32_t intrmask;
    uint32_t intrstatus;

    CharDriverState **eventfd_chr;
    CharDriverState *server_chr;
85
    Fifo8 incoming_fifo;
A
Avi Kivity 已提交
86
    MemoryRegion ivshmem_mmio;
87

A
Avi Kivity 已提交
88 89 90 91 92 93
    /* 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;
94
    uint64_t ivshmem_size; /* size of shared memory region */
G
Gerd Hoffmann 已提交
95
    uint32_t ivshmem_64bit;
96 97

    Peer *peers;
98
    int nb_peers; /* how many peers we have space for */
99 100 101 102 103 104

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

105 106
    Error *migration_blocker;

107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126
    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));
}

/* accessing registers - based on rtl8139 */
127
static void ivshmem_update_irq(IVShmemState *s)
128
{
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
}

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

    s->intrmask = val;

148
    ivshmem_update_irq(s);
149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165
}

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;

166
    ivshmem_update_irq(s);
167 168 169 170 171 172 173 174 175
}

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

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

176
    ivshmem_update_irq(s);
177 178 179 180

    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->nb_peers) {
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
            } else {
                IVSHMEM_DPRINTF("Invalid destination vector %d on VM %d\n",
                                vector, dest);
216 217 218
            }
            break;
        default:
219
            IVSHMEM_DPRINTF("Unhandled write " TARGET_FMT_plx "\n", addr);
220 221 222
    }
}

A
Avi Kivity 已提交
223
static uint64_t ivshmem_io_read(void *opaque, hwaddr addr,
A
Avi Kivity 已提交
224
                                unsigned size)
225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241
{

    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 */
242
            if (memory_region_is_mapped(&s->ivshmem)) {
243 244 245 246 247 248 249 250 251 252 253 254 255 256
                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 已提交
257 258 259 260 261 262 263 264
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,
    },
265 266 267 268 269 270
};

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

271
    IVSHMEM_DPRINTF("ivshmem_receive 0x%02x size: %d\n", *buf, size);
272

273
    ivshmem_IntrStatus_write(s, *buf);
274 275 276 277
}

static int ivshmem_can_receive(void * opaque)
{
278
    return sizeof(long);
279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294
}

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

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

    chr = qemu_chr_open_eventfd(eventfd);

    if (chr == NULL) {
306
        error_report("creating chardriver for eventfd %d failed", eventfd);
M
Marc-André Lureau 已提交
307
        return NULL;
308
    }
309
    qemu_chr_fe_claim_no_fail(chr);
310 311 312

    /* if MSI is supported we need multiple interrupts */
    if (ivshmem_has_feature(s, IVSHMEM_MSI)) {
313
        s->eventfd_table[vector].pdev = PCI_DEVICE(s);
314 315 316 317 318 319 320 321 322 323 324 325 326
        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;

}

M
Marc-André Lureau 已提交
327 328
static int check_shm_size(IVShmemState *s, int fd, Error **errp)
{
329 330 331 332 333
    /* 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;

334
    if (fstat(fd, &buf) < 0) {
M
Marc-André Lureau 已提交
335 336
        error_setg(errp, "exiting: fstat on fd %d failed: %s",
                   fd, strerror(errno));
337 338
        return -1;
    }
339 340

    if (s->ivshmem_size > buf.st_size) {
M
Marc-André Lureau 已提交
341 342 343
        error_setg(errp, "Requested memory size greater"
                   " than shared object size (%" PRIu64 " > %" PRIu64")",
                   s->ivshmem_size, (uint64_t)buf.st_size);
344 345 346 347 348 349 350 351
        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 */
M
Marc-André Lureau 已提交
352 353 354
static int create_shared_memory_BAR(IVShmemState *s, int fd, uint8_t attr,
                                    Error **errp)
{
355 356 357
    void * ptr;

    ptr = mmap(0, s->ivshmem_size, PROT_READ|PROT_WRITE, MAP_SHARED, fd, 0);
M
Marc-André Lureau 已提交
358 359 360 361 362
    if (ptr == MAP_FAILED) {
        error_setg_errno(errp, errno, "Failed to mmap shared memory");
        return -1;
    }

363
    memory_region_init_ram_ptr(&s->ivshmem, OBJECT(s), "ivshmem.bar2",
A
Avi Kivity 已提交
364
                               s->ivshmem_size, ptr);
365
    vmstate_register_ram(&s->ivshmem, DEVICE(s));
A
Avi Kivity 已提交
366
    memory_region_add_subregion(&s->bar, 0, &s->ivshmem);
367 368

    /* region for shared memory */
369
    pci_register_bar(PCI_DEVICE(s), 2, attr, &s->bar);
M
Marc-André Lureau 已提交
370 371

    return 0;
372 373
}

374 375 376 377 378 379 380
static void ivshmem_add_eventfd(IVShmemState *s, int posn, int i)
{
    memory_region_add_eventfd(&s->ivshmem_mmio,
                              DOORBELL,
                              4,
                              true,
                              (posn << 16) | i,
381
                              &s->peers[posn].eventfds[i]);
382 383 384 385 386 387 388 389 390
}

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

394
static void close_peer_eventfds(IVShmemState *s, int posn)
395
{
396
    int i, n;
397

398 399 400
    if (!ivshmem_has_feature(s, IVSHMEM_IOEVENTFD)) {
        return;
    }
401
    if (posn < 0 || posn >= s->nb_peers) {
402
        error_report("invalid peer %d", posn);
403 404
        return;
    }
405

406
    n = s->peers[posn].nb_eventfds;
407

408
    memory_region_transaction_begin();
409
    for (i = 0; i < n; i++) {
410
        ivshmem_del_eventfd(s, posn, i);
411 412
    }
    memory_region_transaction_commit();
413
    for (i = 0; i < n; i++) {
414
        event_notifier_cleanup(&s->peers[posn].eventfds[i]);
415 416
    }

417
    g_free(s->peers[posn].eventfds);
418 419 420 421
    s->peers[posn].nb_eventfds = 0;
}

/* this function increase the dynamic storage need to store data about other
422
 * peers */
423
static int resize_peers(IVShmemState *s, int new_min_size)
424
{
425

426
    int j, old_size;
427

428 429
    /* limit number of max peers */
    if (new_min_size <= 0 || new_min_size > IVSHMEM_MAX_PEERS) {
430 431
        return -1;
    }
432
    if (new_min_size <= s->nb_peers) {
433 434
        return 0;
    }
435

436 437 438
    old_size = s->nb_peers;
    s->nb_peers = new_min_size;

439
    IVSHMEM_DPRINTF("bumping storage to %d peers\n", s->nb_peers);
440

441
    s->peers = g_realloc(s->peers, s->nb_peers * sizeof(Peer));
442

443
    for (j = old_size; j < s->nb_peers; j++) {
444
        s->peers[j].eventfds = g_new0(EventNotifier, s->vectors);
445 446
        s->peers[j].nb_eventfds = 0;
    }
447 448

    return 0;
449 450
}

451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486
static bool fifo_update_and_get(IVShmemState *s, const uint8_t *buf, int size,
                                void *data, size_t len)
{
    const uint8_t *p;
    uint32_t num;

    assert(len <= sizeof(long)); /* limitation of the fifo */
    if (fifo8_is_empty(&s->incoming_fifo) && size == len) {
        memcpy(data, buf, size);
        return true;
    }

    IVSHMEM_DPRINTF("short read of %d bytes\n", size);

    num = MIN(size, sizeof(long) - fifo8_num_used(&s->incoming_fifo));
    fifo8_push_all(&s->incoming_fifo, buf, num);

    if (fifo8_num_used(&s->incoming_fifo) < len) {
        assert(num == 0);
        return false;
    }

    size -= num;
    buf += num;
    p = fifo8_pop_buf(&s->incoming_fifo, len, &num);
    assert(num == len);

    memcpy(data, p, len);

    if (size > 0) {
        fifo8_push_all(&s->incoming_fifo, buf, size);
    }

    return true;
}

487
static void ivshmem_read(void *opaque, const uint8_t *buf, int size)
488 489
{
    IVShmemState *s = opaque;
490
    int incoming_fd;
491
    int new_eventfd;
492
    long incoming_posn;
M
Marc-André Lureau 已提交
493
    Error *err = NULL;
494
    Peer *peer;
495

496 497 498
    if (!fifo_update_and_get(s, buf, size,
                             &incoming_posn, sizeof(incoming_posn))) {
        return;
499 500
    }

501 502 503 504 505
    if (incoming_posn < -1) {
        IVSHMEM_DPRINTF("invalid incoming_posn %ld\n", incoming_posn);
        return;
    }

506
    /* pick off s->server_chr->msgfd and store it, posn should accompany msg */
507 508
    incoming_fd = qemu_chr_fe_get_msgfd(s->server_chr);
    IVSHMEM_DPRINTF("posn is %ld, fd is %d\n", incoming_posn, incoming_fd);
509

510
    /* make sure we have enough space for this peer */
511
    if (incoming_posn >= s->nb_peers) {
512 513
        if (resize_peers(s, incoming_posn + 1) < 0) {
            error_report("failed to resize peers array");
514 515
            if (incoming_fd != -1) {
                close(incoming_fd);
516 517 518
            }
            return;
        }
519 520
    }

521 522
    peer = &s->peers[incoming_posn];

523
    if (incoming_fd == -1) {
524
        /* if posn is positive and unseen before then this is our posn*/
525
        if (incoming_posn >= 0 && s->vm_id == -1) {
526 527 528
            /* receive our posn */
            s->vm_id = incoming_posn;
        } else {
529
            /* otherwise an fd == -1 means an existing peer has gone away */
530
            IVSHMEM_DPRINTF("posn %ld has gone away\n", incoming_posn);
531
            close_peer_eventfds(s, incoming_posn);
532
        }
M
Marc-André Lureau 已提交
533
        return;
534 535 536 537 538 539
    }

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

540
        if (memory_region_is_mapped(&s->ivshmem)) {
541 542 543 544 545
            error_report("shm already initialized");
            close(incoming_fd);
            return;
        }

M
Marc-André Lureau 已提交
546 547 548 549
        if (check_shm_size(s, incoming_fd, &err) == -1) {
            error_report_err(err);
            close(incoming_fd);
            return;
550 551 552 553 554
        }

        /* mmap the region and map into the BAR2 */
        map_ptr = mmap(0, s->ivshmem_size, PROT_READ|PROT_WRITE, MAP_SHARED,
                                                            incoming_fd, 0);
M
Marc-André Lureau 已提交
555 556 557 558 559
        if (map_ptr == MAP_FAILED) {
            error_report("Failed to mmap shared memory %s", strerror(errno));
            close(incoming_fd);
            return;
        }
560
        memory_region_init_ram_ptr(&s->ivshmem, OBJECT(s),
A
Avi Kivity 已提交
561
                                   "ivshmem.bar2", s->ivshmem_size, map_ptr);
562
        vmstate_register_ram(&s->ivshmem, DEVICE(s));
563

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

A
Avi Kivity 已提交
567
        memory_region_add_subregion(&s->bar, 0, &s->ivshmem);
568

569
        close(incoming_fd);
570 571 572
        return;
    }

573 574 575
    /* each peer has an associated array of eventfds, and we keep
     * track of how many eventfds received so far */
    /* get a new eventfd: */
576 577 578 579 580 581 582
    if (peer->nb_eventfds >= s->vectors) {
        error_report("Too many eventfd received, device has %d vectors",
                     s->vectors);
        close(incoming_fd);
        return;
    }

583
    new_eventfd = peer->nb_eventfds++;
584

585
    /* this is an eventfd for a particular peer VM */
586
    IVSHMEM_DPRINTF("eventfds[%ld][%d] = %d\n", incoming_posn,
587 588
                    new_eventfd, incoming_fd);
    event_notifier_init_fd(&peer->eventfds[new_eventfd], incoming_fd);
589 590

    if (incoming_posn == s->vm_id) {
591 592 593
        s->eventfd_chr[new_eventfd] = create_eventfd_chr_device(s,
                   &s->peers[s->vm_id].eventfds[new_eventfd],
                   new_eventfd);
594 595 596
    }

    if (ivshmem_has_feature(s, IVSHMEM_IOEVENTFD)) {
597
        ivshmem_add_eventfd(s, incoming_posn, new_eventfd);
598 599 600
    }
}

601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625
static void ivshmem_check_version(void *opaque, const uint8_t * buf, int size)
{
    IVShmemState *s = opaque;
    int tmp;
    long version;

    if (!fifo_update_and_get(s, buf, size,
                             &version, sizeof(version))) {
        return;
    }

    tmp = qemu_chr_fe_get_msgfd(s->server_chr);
    if (tmp != -1 || version != IVSHMEM_PROTOCOL_VERSION) {
        fprintf(stderr, "incompatible version, you are connecting to a ivshmem-"
                "server using a different protocol please check your setup\n");
        qemu_chr_delete(s->server_chr);
        s->server_chr = NULL;
        return;
    }

    IVSHMEM_DPRINTF("version check ok, switch to real chardev handler\n");
    qemu_chr_add_handlers(s->server_chr, ivshmem_can_receive, ivshmem_read,
                          ivshmem_event, s);
}

626 627 628 629 630
/* 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)
{
631
    PCIDevice *d = PCI_DEVICE(s);
632 633
    int i;

634
    IVSHMEM_DPRINTF("%s, msix present: %d\n", __func__, msix_present(d));
635
    if (!msix_present(d)) {
636 637 638 639
        return;
    }

    for (i = 0; i < s->vectors; i++) {
640
        msix_vector_use(d, i);
641 642 643
    }
}

644 645
static void ivshmem_reset(DeviceState *d)
{
646
    IVShmemState *s = IVSHMEM(d);
647 648

    s->intrstatus = 0;
649
    s->intrmask = 0;
650
    ivshmem_use_msix(s);
651 652
}

M
Marc-André Lureau 已提交
653
static int ivshmem_setup_msi(IVShmemState * s)
654
{
655
    if (msix_init_exclusive_bar(PCI_DEVICE(s), s->vectors, 1)) {
M
Marc-André Lureau 已提交
656
        return -1;
657 658
    }

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

S
Stefan Weil 已提交
661
    /* allocate QEMU char devices for receiving interrupts */
662
    s->eventfd_table = g_malloc0(s->vectors * sizeof(EventfdEntry));
663 664

    ivshmem_use_msix(s);
M
Marc-André Lureau 已提交
665
    return 0;
666 667
}

668
static void ivshmem_write_config(PCIDevice *pci_dev, uint32_t address,
M
Marc-André Lureau 已提交
669
                                 uint32_t val, int len)
670 671 672 673
{
    pci_default_write_config(pci_dev, address, val, len);
}

M
Marc-André Lureau 已提交
674
static void pci_ivshmem_realize(PCIDevice *dev, Error **errp)
675
{
676
    IVShmemState *s = IVSHMEM(dev);
677
    uint8_t *pci_conf;
678 679
    uint8_t attr = PCI_BASE_ADDRESS_SPACE_MEMORY |
        PCI_BASE_ADDRESS_MEM_PREFETCH;
680

M
Marc-André Lureau 已提交
681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696
    if (!!s->server_chr + !!s->shmobj + !!s->hostmem != 1) {
        error_setg(errp, "You must specify either a shmobj, a chardev"
                   " or a hostmem");
        return;
    }

    if (s->hostmem) {
        MemoryRegion *mr;

        if (s->sizearg) {
            g_warning("size argument ignored with hostmem");
        }

        mr = host_memory_backend_get_memory(s->hostmem, errp);
        s->ivshmem_size = memory_region_size(mr);
    } else if (s->sizearg == NULL) {
697
        s->ivshmem_size = 4 << 20; /* 4 MB default */
M
Marc-André Lureau 已提交
698
    } else {
M
Marc-André Lureau 已提交
699 700 701 702
        char *end;
        int64_t size = qemu_strtosz(s->sizearg, &end);
        if (size < 0 || *end != '\0' || !is_power_of_2(size)) {
            error_setg(errp, "Invalid size %s", s->sizearg);
M
Marc-André Lureau 已提交
703 704
            return;
        }
M
Marc-André Lureau 已提交
705
        s->ivshmem_size = size;
706 707
    }

708
    fifo8_create(&s->incoming_fifo, sizeof(long));
709

710 711 712
    /* IRQFD requires MSI */
    if (ivshmem_has_feature(s, IVSHMEM_IOEVENTFD) &&
        !ivshmem_has_feature(s, IVSHMEM_MSI)) {
M
Marc-André Lureau 已提交
713 714
        error_setg(errp, "ioeventfd/irqfd requires MSI");
        return;
715 716 717 718 719 720 721 722 723
    }

    /* 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 {
M
Marc-André Lureau 已提交
724 725
            error_setg(errp, "'role' must be 'peer' or 'master'");
            return;
726 727 728 729 730 731
        }
    } else {
        s->role_val = IVSHMEM_MASTER; /* default */
    }

    if (s->role_val == IVSHMEM_PEER) {
732 733
        error_setg(&s->migration_blocker,
                   "Migration is disabled when using feature 'peer mode' in device 'ivshmem'");
734
        migrate_add_blocker(s->migration_blocker);
735 736
    }

737
    pci_conf = dev->config;
738 739 740 741
    pci_conf[PCI_COMMAND] = PCI_COMMAND_IO | PCI_COMMAND_MEMORY;

    pci_config_set_interrupt_pin(pci_conf, 1);

742
    memory_region_init_io(&s->ivshmem_mmio, OBJECT(s), &ivshmem_mmio_ops, s,
A
Avi Kivity 已提交
743 744
                          "ivshmem-mmio", IVSHMEM_REG_BAR_SIZE);

745
    /* region for registers*/
746
    pci_register_bar(dev, 0, PCI_BASE_ADDRESS_SPACE_MEMORY,
747
                     &s->ivshmem_mmio);
A
Avi Kivity 已提交
748

749
    memory_region_init(&s->bar, OBJECT(s), "ivshmem-bar2-container", s->ivshmem_size);
G
Gerd Hoffmann 已提交
750
    if (s->ivshmem_64bit) {
751
        attr |= PCI_BASE_ADDRESS_MEM_TYPE_64;
G
Gerd Hoffmann 已提交
752
    }
753

M
Marc-André Lureau 已提交
754 755 756 757 758 759 760 761 762 763
    if (s->hostmem != NULL) {
        MemoryRegion *mr;

        IVSHMEM_DPRINTF("using hostmem\n");

        mr = host_memory_backend_get_memory(MEMORY_BACKEND(s->hostmem), errp);
        vmstate_register_ram(mr, DEVICE(s));
        memory_region_add_subregion(&s->bar, 0, mr);
        pci_register_bar(PCI_DEVICE(s), 2, attr, &s->bar);
    } else if (s->server_chr != NULL) {
764 765 766 767 768
        if (strncmp(s->server_chr->filename, "unix:", 5)) {
            error_setg(errp, "chardev is not a unix client socket");
            return;
        }

769 770 771 772
        /* if we get a UNIX socket as the parameter we will talk
         * to the ivshmem server to receive the memory region */

        IVSHMEM_DPRINTF("using shared memory server (socket = %s)\n",
A
Andrew Jones 已提交
773
                        s->server_chr->filename);
774

M
Marc-André Lureau 已提交
775 776 777 778
        if (ivshmem_has_feature(s, IVSHMEM_MSI) &&
            ivshmem_setup_msi(s)) {
            error_setg(errp, "msix initialization failed");
            return;
779 780
        }

781
        /* we allocate enough space for 16 peers and grow as needed */
782
        resize_peers(s, 16);
783 784
        s->vm_id = -1;

785
        pci_register_bar(dev, 2, attr, &s->bar);
786

787
        s->eventfd_chr = g_malloc0(s->vectors * sizeof(CharDriverState *));
788

789 790
        qemu_chr_add_handlers(s->server_chr, ivshmem_can_receive,
                              ivshmem_check_version, ivshmem_event, s);
791 792 793 794 795 796 797 798 799 800 801 802
    } else {
        /* just map the file immediately, we're not using a server */
        int fd;

        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 已提交
803
                error_report("could not truncate shared file");
804 805 806 807
            }

        } else if ((fd = shm_open(s->shmobj, O_CREAT|O_RDWR,
                        S_IRWXU|S_IRWXG|S_IRWXO)) < 0) {
M
Marc-André Lureau 已提交
808 809
            error_setg(errp, "could not open shared file");
            return;
810 811
        }

M
Marc-André Lureau 已提交
812 813
        if (check_shm_size(s, fd, errp) == -1) {
            return;
814 815
        }

M
Marc-André Lureau 已提交
816
        create_shared_memory_BAR(s, fd, attr, errp);
817
        close(fd);
818 819 820
    }
}

M
Marc-André Lureau 已提交
821
static void pci_ivshmem_exit(PCIDevice *dev)
822
{
823
    IVShmemState *s = IVSHMEM(dev);
824 825 826
    int i;

    fifo8_destroy(&s->incoming_fifo);
827

828 829 830 831 832
    if (s->migration_blocker) {
        migrate_del_blocker(s->migration_blocker);
        error_free(s->migration_blocker);
    }

833
    if (memory_region_is_mapped(&s->ivshmem)) {
M
Marc-André Lureau 已提交
834 835 836 837 838 839 840 841
        if (!s->hostmem) {
            void *addr = memory_region_get_ram_ptr(&s->ivshmem);

            if (munmap(addr, s->ivshmem_size) == -1) {
                error_report("Failed to munmap shared memory %s",
                             strerror(errno));
            }
        }
842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857

        vmstate_unregister_ram(&s->ivshmem, DEVICE(dev));
        memory_region_del_subregion(&s->bar, &s->ivshmem);
    }

    if (s->eventfd_chr) {
        for (i = 0; i < s->vectors; i++) {
            if (s->eventfd_chr[i]) {
                qemu_chr_free(s->eventfd_chr[i]);
            }
        }
        g_free(s->eventfd_chr);
    }

    if (s->peers) {
        for (i = 0; i < s->nb_peers; i++) {
858
            close_peer_eventfds(s, i);
859 860 861 862 863 864 865 866 867
        }
        g_free(s->peers);
    }

    if (ivshmem_has_feature(s, IVSHMEM_MSI)) {
        msix_uninit_exclusive_bar(dev);
    }

    g_free(s->eventfd_table);
868 869
}

870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956
static bool test_msix(void *opaque, int version_id)
{
    IVShmemState *s = opaque;

    return ivshmem_has_feature(s, IVSHMEM_MSI);
}

static bool test_no_msix(void *opaque, int version_id)
{
    return !test_msix(opaque, version_id);
}

static int ivshmem_pre_load(void *opaque)
{
    IVShmemState *s = opaque;

    if (s->role_val == IVSHMEM_PEER) {
        error_report("'peer' devices are not migratable");
        return -EINVAL;
    }

    return 0;
}

static int ivshmem_post_load(void *opaque, int version_id)
{
    IVShmemState *s = opaque;

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

    return 0;
}

static int ivshmem_load_old(QEMUFile *f, void *opaque, int version_id)
{
    IVShmemState *s = opaque;
    PCIDevice *pdev = PCI_DEVICE(s);
    int ret;

    IVSHMEM_DPRINTF("ivshmem_load_old\n");

    if (version_id != 0) {
        return -EINVAL;
    }

    if (s->role_val == IVSHMEM_PEER) {
        error_report("'peer' devices are not migratable");
        return -EINVAL;
    }

    ret = pci_device_load(pdev, f);
    if (ret) {
        return ret;
    }

    if (ivshmem_has_feature(s, IVSHMEM_MSI)) {
        msix_load(pdev, f);
        ivshmem_use_msix(s);
    } else {
        s->intrstatus = qemu_get_be32(f);
        s->intrmask = qemu_get_be32(f);
    }

    return 0;
}

static const VMStateDescription ivshmem_vmsd = {
    .name = "ivshmem",
    .version_id = 1,
    .minimum_version_id = 1,
    .pre_load = ivshmem_pre_load,
    .post_load = ivshmem_post_load,
    .fields = (VMStateField[]) {
        VMSTATE_PCI_DEVICE(parent_obj, IVShmemState),

        VMSTATE_MSIX_TEST(parent_obj, IVShmemState, test_msix),
        VMSTATE_UINT32_TEST(intrstatus, IVShmemState, test_no_msix),
        VMSTATE_UINT32_TEST(intrmask, IVShmemState, test_no_msix),

        VMSTATE_END_OF_LIST()
    },
    .load_state_old = ivshmem_load_old,
    .minimum_version_id_old = 0
};

957 958 959 960 961 962 963 964
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 已提交
965
    DEFINE_PROP_UINT32("use64", IVShmemState, ivshmem_64bit, 1),
966 967 968 969 970
    DEFINE_PROP_END_OF_LIST(),
};

static void ivshmem_class_init(ObjectClass *klass, void *data)
{
971
    DeviceClass *dc = DEVICE_CLASS(klass);
972 973
    PCIDeviceClass *k = PCI_DEVICE_CLASS(klass);

M
Marc-André Lureau 已提交
974 975 976
    k->realize = pci_ivshmem_realize;
    k->exit = pci_ivshmem_exit;
    k->config_write = ivshmem_write_config;
977 978
    k->vendor_id = PCI_VENDOR_ID_IVSHMEM;
    k->device_id = PCI_DEVICE_ID_IVSHMEM;
979
    k->class_id = PCI_CLASS_MEMORY_RAM;
980 981
    dc->reset = ivshmem_reset;
    dc->props = ivshmem_properties;
982
    dc->vmsd = &ivshmem_vmsd;
983
    set_bit(DEVICE_CATEGORY_MISC, dc->categories);
984
    dc->desc = "Inter-VM shared memory";
985 986
}

M
Marc-André Lureau 已提交
987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012
static void ivshmem_check_memdev_is_busy(Object *obj, const char *name,
                                         Object *val, Error **errp)
{
    MemoryRegion *mr;

    mr = host_memory_backend_get_memory(MEMORY_BACKEND(val), errp);
    if (memory_region_is_mapped(mr)) {
        char *path = object_get_canonical_path_component(val);
        error_setg(errp, "can't use already busy memdev: %s", path);
        g_free(path);
    } else {
        qdev_prop_allow_set_link_before_realize(obj, name, val, errp);
    }
}

static void ivshmem_init(Object *obj)
{
    IVShmemState *s = IVSHMEM(obj);

    object_property_add_link(obj, IVSHMEM_MEMDEV_PROP, TYPE_MEMORY_BACKEND,
                             (Object **)&s->hostmem,
                             ivshmem_check_memdev_is_busy,
                             OBJ_PROP_LINK_UNREF_ON_RELEASE,
                             &error_abort);
}

1013
static const TypeInfo ivshmem_info = {
1014
    .name          = TYPE_IVSHMEM,
1015 1016
    .parent        = TYPE_PCI_DEVICE,
    .instance_size = sizeof(IVShmemState),
M
Marc-André Lureau 已提交
1017
    .instance_init = ivshmem_init,
1018
    .class_init    = ivshmem_class_init,
1019 1020
};

A
Andreas Färber 已提交
1021
static void ivshmem_register_types(void)
1022
{
1023
    type_register_static(&ivshmem_info);
1024 1025
}

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