ivshmem.c 36.4 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
 */
P
Peter Maydell 已提交
19
#include "qemu/osdep.h"
20
#include "qapi/error.h"
21
#include "qemu/cutils.h"
22
#include "hw/hw.h"
P
Paolo Bonzini 已提交
23
#include "hw/i386/pc.h"
24
#include "hw/pci/pci.h"
25
#include "hw/pci/msi.h"
26
#include "hw/pci/msix.h"
27
#include "sysemu/kvm.h"
28
#include "migration/migration.h"
29
#include "qemu/error-report.h"
30
#include "qemu/event_notifier.h"
31
#include "qom/object_interfaces.h"
32
#include "sysemu/char.h"
M
Marc-André Lureau 已提交
33
#include "sysemu/hostmem.h"
34
#include "sysemu/qtest.h"
M
Marc-André Lureau 已提交
35
#include "qapi/visitor.h"
36

37 38
#include "hw/misc/ivshmem.h"

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

42
#define IVSHMEM_MAX_PEERS UINT16_MAX
43 44 45 46 47
#define IVSHMEM_IOEVENTFD   0
#define IVSHMEM_MSI     1

#define IVSHMEM_REG_BAR_SIZE 0x100

48 49 50 51 52 53 54
#define IVSHMEM_DEBUG 0
#define IVSHMEM_DPRINTF(fmt, ...)                       \
    do {                                                \
        if (IVSHMEM_DEBUG) {                            \
            printf("IVSHMEM: " fmt, ## __VA_ARGS__);    \
        }                                               \
    } while (0)
55

56 57 58 59 60 61 62 63 64 65 66 67
#define TYPE_IVSHMEM_COMMON "ivshmem-common"
#define IVSHMEM_COMMON(obj) \
    OBJECT_CHECK(IVShmemState, (obj), TYPE_IVSHMEM_COMMON)

#define TYPE_IVSHMEM_PLAIN "ivshmem-plain"
#define IVSHMEM_PLAIN(obj) \
    OBJECT_CHECK(IVShmemState, (obj), TYPE_IVSHMEM_PLAIN)

#define TYPE_IVSHMEM_DOORBELL "ivshmem-doorbell"
#define IVSHMEM_DOORBELL(obj) \
    OBJECT_CHECK(IVShmemState, (obj), TYPE_IVSHMEM_DOORBELL)

68 69 70 71
#define TYPE_IVSHMEM "ivshmem"
#define IVSHMEM(obj) \
    OBJECT_CHECK(IVShmemState, (obj), TYPE_IVSHMEM)

72 73
typedef struct Peer {
    int nb_eventfds;
74
    EventNotifier *eventfds;
75 76
} Peer;

77
typedef struct MSIVector {
78
    PCIDevice *pdev;
79
    int virq;
80
} MSIVector;
81 82

typedef struct IVShmemState {
83 84 85 86
    /*< private >*/
    PCIDevice parent_obj;
    /*< public >*/

87 88 89 90 91 92 93
    uint32_t features;

    /* exactly one of these two may be set */
    HostMemoryBackend *hostmem; /* with interrupts */
    CharDriverState *server_chr; /* without interrupts */

    /* registers */
94 95
    uint32_t intrmask;
    uint32_t intrstatus;
96
    int vm_id;
97

98 99
    /* BARs */
    MemoryRegion ivshmem_mmio;  /* BAR 0 (registers) */
100 101
    MemoryRegion *ivshmem_bar2; /* BAR 2 (shared memory) */
    MemoryRegion server_bar2;   /* used with server_chr */
102

103
    /* interrupt support */
104
    Peer *peers;
105
    int nb_peers;               /* space in @peers[] */
106
    uint32_t vectors;
107
    MSIVector *msi_vectors;
108 109
    uint64_t msg_buf;           /* buffer for receiving server messages */
    int msg_buffered_bytes;     /* #bytes in @msg_buf */
110

111
    /* migration stuff */
112
    OnOffAuto master;
113 114
    Error *migration_blocker;

115 116 117 118 119 120
    /* legacy cruft */
    char *role;
    char *shmobj;
    char *sizearg;
    size_t legacy_size;
    uint32_t not_legacy_32bit;
121 122 123 124 125 126 127 128 129 130 131 132 133 134 135
} 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));
}

136 137 138 139 140 141
static inline bool ivshmem_is_master(IVShmemState *s)
{
    assert(s->master != ON_OFF_AUTO_AUTO);
    return s->master == ON_OFF_AUTO_ON;
}

142
static void ivshmem_update_irq(IVShmemState *s)
143
{
144
    PCIDevice *d = PCI_DEVICE(s);
145
    uint32_t isr = s->intrstatus & s->intrmask;
146

147 148 149 150 151 152 153 154 155 156 157 158 159 160 161
    /*
     * Do nothing unless the device actually uses INTx.  Here's how
     * the device variants signal interrupts, what they put in PCI
     * config space:
     * Device variant    Interrupt  Interrupt Pin  MSI-X cap.
     * ivshmem-plain         none            0         no
     * ivshmem-doorbell     MSI-X            1        yes(1)
     * ivshmem,msi=off       INTx            1         no
     * ivshmem,msi=on       MSI-X            1(2)     yes(1)
     * (1) if guest enabled MSI-X
     * (2) the device lies
     * Leads to the condition for doing nothing:
     */
    if (ivshmem_has_feature(s, IVSHMEM_MSI)
        || !d->config[PCI_INTERRUPT_PIN]) {
162 163 164
        return;
    }

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

171
    pci_set_irq(d, isr != 0);
172 173 174 175 176 177 178
}

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

    s->intrmask = val;
179
    ivshmem_update_irq(s);
180 181 182 183 184 185 186 187 188 189 190 191 192 193 194
}

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;
195
    ivshmem_update_irq(s);
196 197 198 199 200 201 202 203
}

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

    /* reading ISR clears all interrupts */
    s->intrstatus = 0;
204
    ivshmem_update_irq(s);
205 206 207
    return ret;
}

A
Avi Kivity 已提交
208
static void ivshmem_io_write(void *opaque, hwaddr addr,
A
Avi Kivity 已提交
209
                             uint64_t val, unsigned size)
210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230
{
    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 */
231
            if (dest >= s->nb_peers) {
232 233 234 235 236
                IVSHMEM_DPRINTF("Invalid destination VM ID (%d)\n", dest);
                break;
            }

            /* check doorbell range */
237
            if (vector < s->peers[dest].nb_eventfds) {
238 239
                IVSHMEM_DPRINTF("Notifying VM %d on vector %d\n", dest, vector);
                event_notifier_set(&s->peers[dest].eventfds[vector]);
240 241 242
            } else {
                IVSHMEM_DPRINTF("Invalid destination vector %d on VM %d\n",
                                vector, dest);
243 244 245
            }
            break;
        default:
246
            IVSHMEM_DPRINTF("Unhandled write " TARGET_FMT_plx "\n", addr);
247 248 249
    }
}

A
Avi Kivity 已提交
250
static uint64_t ivshmem_io_read(void *opaque, hwaddr addr,
A
Avi Kivity 已提交
251
                                unsigned size)
252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267
{

    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:
268
            ret = s->vm_id;
269 270 271 272 273 274 275 276 277 278
            break;

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

    return ret;
}

A
Avi Kivity 已提交
279 280 281 282 283 284 285 286
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,
    },
287 288
};

289 290
static void ivshmem_vector_notify(void *opaque)
{
291
    MSIVector *entry = opaque;
292
    PCIDevice *pdev = entry->pdev;
293
    IVShmemState *s = IVSHMEM_COMMON(pdev);
294
    int vector = entry - s->msi_vectors;
295 296 297 298 299
    EventNotifier *n = &s->peers[s->vm_id].eventfds[vector];

    if (!event_notifier_test_and_clear(n)) {
        return;
    }
300

301
    IVSHMEM_DPRINTF("interrupt on vector %p %d\n", pdev, vector);
302
    if (ivshmem_has_feature(s, IVSHMEM_MSI)) {
303 304 305
        if (msix_enabled(pdev)) {
            msix_notify(pdev, vector);
        }
306 307 308
    } else {
        ivshmem_IntrStatus_write(s, 1);
    }
309 310
}

311 312 313
static int ivshmem_vector_unmask(PCIDevice *dev, unsigned vector,
                                 MSIMessage msg)
{
314
    IVShmemState *s = IVSHMEM_COMMON(dev);
315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330
    EventNotifier *n = &s->peers[s->vm_id].eventfds[vector];
    MSIVector *v = &s->msi_vectors[vector];
    int ret;

    IVSHMEM_DPRINTF("vector unmask %p %d\n", dev, vector);

    ret = kvm_irqchip_update_msi_route(kvm_state, v->virq, msg, dev);
    if (ret < 0) {
        return ret;
    }

    return kvm_irqchip_add_irqfd_notifier_gsi(kvm_state, n, NULL, v->virq);
}

static void ivshmem_vector_mask(PCIDevice *dev, unsigned vector)
{
331
    IVShmemState *s = IVSHMEM_COMMON(dev);
332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347
    EventNotifier *n = &s->peers[s->vm_id].eventfds[vector];
    int ret;

    IVSHMEM_DPRINTF("vector mask %p %d\n", dev, vector);

    ret = kvm_irqchip_remove_irqfd_notifier_gsi(kvm_state, n,
                                                s->msi_vectors[vector].virq);
    if (ret != 0) {
        error_report("remove_irqfd_notifier_gsi failed");
    }
}

static void ivshmem_vector_poll(PCIDevice *dev,
                                unsigned int vector_start,
                                unsigned int vector_end)
{
348
    IVShmemState *s = IVSHMEM_COMMON(dev);
349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367
    unsigned int vector;

    IVSHMEM_DPRINTF("vector poll %p %d-%d\n", dev, vector_start, vector_end);

    vector_end = MIN(vector_end, s->vectors);

    for (vector = vector_start; vector < vector_end; vector++) {
        EventNotifier *notifier = &s->peers[s->vm_id].eventfds[vector];

        if (!msix_is_masked(dev, vector)) {
            continue;
        }

        if (event_notifier_test_and_clear(notifier)) {
            msix_set_pending(dev, vector);
        }
    }
}

368 369
static void watch_vector_notifier(IVShmemState *s, EventNotifier *n,
                                 int vector)
370
{
371
    int eventfd = event_notifier_get_fd(n);
372

373
    assert(!s->msi_vectors[vector].pdev);
374
    s->msi_vectors[vector].pdev = PCI_DEVICE(s);
375

376 377
    qemu_set_fd_handler(eventfd, ivshmem_vector_notify,
                        NULL, &s->msi_vectors[vector]);
378 379
}

380 381 382 383 384 385 386
static void ivshmem_add_eventfd(IVShmemState *s, int posn, int i)
{
    memory_region_add_eventfd(&s->ivshmem_mmio,
                              DOORBELL,
                              4,
                              true,
                              (posn << 16) | i,
387
                              &s->peers[posn].eventfds[i]);
388 389 390 391 392 393 394 395 396
}

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

400
static void close_peer_eventfds(IVShmemState *s, int posn)
401
{
402
    int i, n;
403

404
    assert(posn >= 0 && posn < s->nb_peers);
405
    n = s->peers[posn].nb_eventfds;
406

407 408 409 410 411 412
    if (ivshmem_has_feature(s, IVSHMEM_IOEVENTFD)) {
        memory_region_transaction_begin();
        for (i = 0; i < n; i++) {
            ivshmem_del_eventfd(s, posn, i);
        }
        memory_region_transaction_commit();
413
    }
414

415
    for (i = 0; i < n; i++) {
416
        event_notifier_cleanup(&s->peers[posn].eventfds[i]);
417 418
    }

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

423
static void resize_peers(IVShmemState *s, int nb_peers)
424
{
425 426
    int old_nb_peers = s->nb_peers;
    int i;
427

428 429
    assert(nb_peers > old_nb_peers);
    IVSHMEM_DPRINTF("bumping storage to %d peers\n", nb_peers);
430

431 432
    s->peers = g_realloc(s->peers, nb_peers * sizeof(Peer));
    s->nb_peers = nb_peers;
433

434 435 436
    for (i = old_nb_peers; i < nb_peers; i++) {
        s->peers[i].eventfds = g_new0(EventNotifier, s->vectors);
        s->peers[i].nb_eventfds = 0;
437 438 439
    }
}

440 441
static void ivshmem_add_kvm_msi_virq(IVShmemState *s, int vector,
                                     Error **errp)
442 443 444 445 446 447
{
    PCIDevice *pdev = PCI_DEVICE(s);
    MSIMessage msg = msix_get_message(pdev, vector);
    int ret;

    IVSHMEM_DPRINTF("ivshmem_add_kvm_msi_virq vector:%d\n", vector);
448
    assert(!s->msi_vectors[vector].pdev);
449 450 451

    ret = kvm_irqchip_add_msi_route(kvm_state, msg, pdev);
    if (ret < 0) {
452 453
        error_setg(errp, "kvm_irqchip_add_msi_route failed");
        return;
454 455 456 457 458 459
    }

    s->msi_vectors[vector].virq = ret;
    s->msi_vectors[vector].pdev = pdev;
}

460
static void setup_interrupt(IVShmemState *s, int vector, Error **errp)
461 462 463 464 465
{
    EventNotifier *n = &s->peers[s->vm_id].eventfds[vector];
    bool with_irqfd = kvm_msi_via_irqfd_enabled() &&
        ivshmem_has_feature(s, IVSHMEM_MSI);
    PCIDevice *pdev = PCI_DEVICE(s);
466
    Error *err = NULL;
467 468 469 470

    IVSHMEM_DPRINTF("setting up interrupt for vector: %d\n", vector);

    if (!with_irqfd) {
471
        IVSHMEM_DPRINTF("with eventfd\n");
472
        watch_vector_notifier(s, n, vector);
473
    } else if (msix_enabled(pdev)) {
474
        IVSHMEM_DPRINTF("with irqfd\n");
475 476 477
        ivshmem_add_kvm_msi_virq(s, vector, &err);
        if (err) {
            error_propagate(errp, err);
478 479 480 481 482 483
            return;
        }

        if (!msix_is_masked(pdev, vector)) {
            kvm_irqchip_add_irqfd_notifier_gsi(kvm_state, n, NULL,
                                               s->msi_vectors[vector].virq);
484
            /* TODO handle error */
485 486 487
        }
    } else {
        /* it will be delayed until msix is enabled, in write_config */
488
        IVSHMEM_DPRINTF("with irqfd, delayed until msix enabled\n");
489 490 491
    }
}

492
static void process_msg_shmem(IVShmemState *s, int fd, Error **errp)
493
{
494
    struct stat buf;
495
    size_t size;
496
    void *ptr;
497

498
    if (s->ivshmem_bar2) {
499
        error_setg(errp, "server sent unexpected shared memory message");
500
        close(fd);
501
        return;
502 503
    }

504 505 506 507 508 509 510
    if (fstat(fd, &buf) < 0) {
        error_setg_errno(errp, errno,
            "can't determine size of shared memory sent by server");
        close(fd);
        return;
    }

511 512 513 514 515 516 517 518 519 520 521
    size = buf.st_size;

    /* Legacy cruft */
    if (s->legacy_size != SIZE_MAX) {
        if (size < s->legacy_size) {
            error_setg(errp, "server sent only %zd bytes of shared memory",
                       (size_t)buf.st_size);
            close(fd);
            return;
        }
        size = s->legacy_size;
522 523
    }

524
    /* mmap the region and map into the BAR2 */
525
    ptr = mmap(0, size, PROT_READ | PROT_WRITE, MAP_SHARED, fd, 0);
526
    if (ptr == MAP_FAILED) {
527
        error_setg_errno(errp, errno, "Failed to mmap shared memory");
528 529
        close(fd);
        return;
530
    }
531
    memory_region_init_ram_ptr(&s->server_bar2, OBJECT(s),
532
                               "ivshmem.bar2", size, ptr);
533
    memory_region_set_fd(&s->server_bar2, fd);
534
    s->ivshmem_bar2 = &s->server_bar2;
535 536
}

537 538
static void process_msg_disconnect(IVShmemState *s, uint16_t posn,
                                   Error **errp)
539 540
{
    IVSHMEM_DPRINTF("posn %d has gone away\n", posn);
541
    if (posn >= s->nb_peers || posn == s->vm_id) {
542
        error_setg(errp, "invalid peer %d", posn);
543 544
        return;
    }
545 546
    close_peer_eventfds(s, posn);
}
547

548 549
static void process_msg_connect(IVShmemState *s, uint16_t posn, int fd,
                                Error **errp)
550 551 552
{
    Peer *peer = &s->peers[posn];
    int vector;
553

554 555 556 557 558
    /*
     * The N-th connect message for this peer comes with the file
     * descriptor for vector N-1.  Count messages to find the vector.
     */
    if (peer->nb_eventfds >= s->vectors) {
559 560
        error_setg(errp, "Too many eventfd received, device has %d vectors",
                   s->vectors);
561
        close(fd);
M
Marc-André Lureau 已提交
562
        return;
563
    }
564
    vector = peer->nb_eventfds++;
565

566 567 568
    IVSHMEM_DPRINTF("eventfds[%d][%d] = %d\n", posn, vector, fd);
    event_notifier_init_fd(&peer->eventfds[vector], fd);
    fcntl_setfl(fd, O_NONBLOCK); /* msix/irqfd poll non block */
569

570
    if (posn == s->vm_id) {
571 572
        setup_interrupt(s, vector, errp);
        /* TODO do we need to handle the error? */
573
    }
574

575 576 577 578
    if (ivshmem_has_feature(s, IVSHMEM_IOEVENTFD)) {
        ivshmem_add_eventfd(s, posn, vector);
    }
}
579

580
static void process_msg(IVShmemState *s, int64_t msg, int fd, Error **errp)
581 582
{
    IVSHMEM_DPRINTF("posn is %" PRId64 ", fd is %d\n", msg, fd);
583

584
    if (msg < -1 || msg > IVSHMEM_MAX_PEERS) {
585
        error_setg(errp, "server sent invalid message %" PRId64, msg);
586
        close(fd);
587 588 589
        return;
    }

590
    if (msg == -1) {
591
        process_msg_shmem(s, fd, errp);
592 593 594
        return;
    }

595 596 597
    if (msg >= s->nb_peers) {
        resize_peers(s, msg + 1);
    }
598

599
    if (fd >= 0) {
600
        process_msg_connect(s, msg, fd, errp);
601
    } else {
602
        process_msg_disconnect(s, msg, errp);
603
    }
604
}
605

606 607 608 609 610 611 612 613
static int ivshmem_can_receive(void *opaque)
{
    IVShmemState *s = opaque;

    assert(s->msg_buffered_bytes < sizeof(s->msg_buf));
    return sizeof(s->msg_buf) - s->msg_buffered_bytes;
}

614 615 616
static void ivshmem_read(void *opaque, const uint8_t *buf, int size)
{
    IVShmemState *s = opaque;
617
    Error *err = NULL;
618 619 620
    int fd;
    int64_t msg;

621 622 623 624
    assert(size >= 0 && s->msg_buffered_bytes + size <= sizeof(s->msg_buf));
    memcpy((unsigned char *)&s->msg_buf + s->msg_buffered_bytes, buf, size);
    s->msg_buffered_bytes += size;
    if (s->msg_buffered_bytes < sizeof(s->msg_buf)) {
625
        return;
626
    }
627 628
    msg = le64_to_cpu(s->msg_buf);
    s->msg_buffered_bytes = 0;
629 630 631 632

    fd = qemu_chr_fe_get_msgfd(s->server_chr);
    IVSHMEM_DPRINTF("posn is %" PRId64 ", fd is %d\n", msg, fd);

633 634 635 636
    process_msg(s, msg, fd, &err);
    if (err) {
        error_report_err(err);
    }
637 638
}

639
static int64_t ivshmem_recv_msg(IVShmemState *s, int *pfd, Error **errp)
640
{
641 642 643 644 645 646 647 648
    int64_t msg;
    int n, ret;

    n = 0;
    do {
        ret = qemu_chr_fe_read_all(s->server_chr, (uint8_t *)&msg + n,
                                 sizeof(msg) - n);
        if (ret < 0 && ret != -EINTR) {
649
            error_setg_errno(errp, -ret, "read from server failed");
650 651 652 653
            return INT64_MIN;
        }
        n += ret;
    } while (n < sizeof(msg));
654

655 656 657
    *pfd = qemu_chr_fe_get_msgfd(s->server_chr);
    return msg;
}
658

659
static void ivshmem_recv_setup(IVShmemState *s, Error **errp)
660
{
661
    Error *err = NULL;
662 663 664
    int64_t msg;
    int fd;

665 666 667 668 669 670 671 672 673 674 675 676
    msg = ivshmem_recv_msg(s, &fd, &err);
    if (err) {
        error_propagate(errp, err);
        return;
    }
    if (msg != IVSHMEM_PROTOCOL_VERSION) {
        error_setg(errp, "server sent version %" PRId64 ", expecting %d",
                   msg, IVSHMEM_PROTOCOL_VERSION);
        return;
    }
    if (fd != -1) {
        error_setg(errp, "server sent invalid version message");
677 678 679
        return;
    }

680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703
    /*
     * ivshmem-server sends the remaining initial messages in a fixed
     * order, but the device has always accepted them in any order.
     * Stay as compatible as practical, just in case people use
     * servers that behave differently.
     */

    /*
     * ivshmem_device_spec.txt has always required the ID message
     * right here, and ivshmem-server has always complied.  However,
     * older versions of the device accepted it out of order, but
     * broke when an interrupt setup message arrived before it.
     */
    msg = ivshmem_recv_msg(s, &fd, &err);
    if (err) {
        error_propagate(errp, err);
        return;
    }
    if (fd != -1 || msg < 0 || msg > IVSHMEM_MAX_PEERS) {
        error_setg(errp, "server sent invalid ID message");
        return;
    }
    s->vm_id = msg;

704 705 706 707
    /*
     * Receive more messages until we got shared memory.
     */
    do {
708 709 710 711 712 713 714 715 716 717
        msg = ivshmem_recv_msg(s, &fd, &err);
        if (err) {
            error_propagate(errp, err);
            return;
        }
        process_msg(s, msg, fd, &err);
        if (err) {
            error_propagate(errp, err);
            return;
        }
718
    } while (msg != -1);
719 720 721 722 723 724 725

    /*
     * This function must either map the shared memory or fail.  The
     * loop above ensures that: it terminates normally only after it
     * successfully processed the server's shared memory message.
     * Assert that actually mapped the shared memory:
     */
726
    assert(s->ivshmem_bar2);
727 728
}

729 730 731
/* 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. */
732
static void ivshmem_msix_vector_use(IVShmemState *s)
733
{
734
    PCIDevice *d = PCI_DEVICE(s);
735 736 737
    int i;

    for (i = 0; i < s->vectors; i++) {
738
        msix_vector_use(d, i);
739 740 741
    }
}

742 743
static void ivshmem_reset(DeviceState *d)
{
744
    IVShmemState *s = IVSHMEM_COMMON(d);
745 746

    s->intrstatus = 0;
747
    s->intrmask = 0;
748 749 750
    if (ivshmem_has_feature(s, IVSHMEM_MSI)) {
        ivshmem_msix_vector_use(s);
    }
751 752
}

753
static int ivshmem_setup_interrupts(IVShmemState *s)
754
{
755 756
    /* allocate QEMU callback data for receiving interrupts */
    s->msi_vectors = g_malloc0(s->vectors * sizeof(MSIVector));
757

758 759 760 761
    if (ivshmem_has_feature(s, IVSHMEM_MSI)) {
        if (msix_init_exclusive_bar(PCI_DEVICE(s), s->vectors, 1)) {
            return -1;
        }
762

763
        IVSHMEM_DPRINTF("msix initialized (%d vectors)\n", s->vectors);
764
        ivshmem_msix_vector_use(s);
765
    }
766

M
Marc-André Lureau 已提交
767
    return 0;
768 769
}

770 771 772 773 774 775
static void ivshmem_enable_irqfd(IVShmemState *s)
{
    PCIDevice *pdev = PCI_DEVICE(s);
    int i;

    for (i = 0; i < s->peers[s->vm_id].nb_eventfds; i++) {
776 777 778 779 780 781 782
        Error *err = NULL;

        ivshmem_add_kvm_msi_virq(s, i, &err);
        if (err) {
            error_report_err(err);
            /* TODO do we need to handle the error? */
        }
783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819
    }

    if (msix_set_vector_notifiers(pdev,
                                  ivshmem_vector_unmask,
                                  ivshmem_vector_mask,
                                  ivshmem_vector_poll)) {
        error_report("ivshmem: msix_set_vector_notifiers failed");
    }
}

static void ivshmem_remove_kvm_msi_virq(IVShmemState *s, int vector)
{
    IVSHMEM_DPRINTF("ivshmem_remove_kvm_msi_virq vector:%d\n", vector);

    if (s->msi_vectors[vector].pdev == NULL) {
        return;
    }

    /* it was cleaned when masked in the frontend. */
    kvm_irqchip_release_virq(kvm_state, s->msi_vectors[vector].virq);

    s->msi_vectors[vector].pdev = NULL;
}

static void ivshmem_disable_irqfd(IVShmemState *s)
{
    PCIDevice *pdev = PCI_DEVICE(s);
    int i;

    for (i = 0; i < s->peers[s->vm_id].nb_eventfds; i++) {
        ivshmem_remove_kvm_msi_virq(s, i);
    }

    msix_unset_vector_notifiers(pdev);
}

static void ivshmem_write_config(PCIDevice *pdev, uint32_t address,
M
Marc-André Lureau 已提交
820
                                 uint32_t val, int len)
821
{
822
    IVShmemState *s = IVSHMEM_COMMON(pdev);
823 824 825 826 827
    int is_enabled, was_enabled = msix_enabled(pdev);

    pci_default_write_config(pdev, address, val, len);
    is_enabled = msix_enabled(pdev);

828
    if (kvm_msi_via_irqfd_enabled()) {
829 830 831 832 833 834
        if (!was_enabled && is_enabled) {
            ivshmem_enable_irqfd(s);
        } else if (was_enabled && !is_enabled) {
            ivshmem_disable_irqfd(s);
        }
    }
835 836
}

837
static void ivshmem_common_realize(PCIDevice *dev, Error **errp)
838
{
839
    IVShmemState *s = IVSHMEM_COMMON(dev);
840
    Error *err = NULL;
841
    uint8_t *pci_conf;
842 843
    uint8_t attr = PCI_BASE_ADDRESS_SPACE_MEMORY |
        PCI_BASE_ADDRESS_MEM_PREFETCH;
844 845 846 847

    /* IRQFD requires MSI */
    if (ivshmem_has_feature(s, IVSHMEM_IOEVENTFD) &&
        !ivshmem_has_feature(s, IVSHMEM_MSI)) {
M
Marc-André Lureau 已提交
848 849
        error_setg(errp, "ioeventfd/irqfd requires MSI");
        return;
850 851
    }

852
    pci_conf = dev->config;
853 854
    pci_conf[PCI_COMMAND] = PCI_COMMAND_IO | PCI_COMMAND_MEMORY;

855
    memory_region_init_io(&s->ivshmem_mmio, OBJECT(s), &ivshmem_mmio_ops, s,
A
Avi Kivity 已提交
856 857
                          "ivshmem-mmio", IVSHMEM_REG_BAR_SIZE);

858
    /* region for registers*/
859
    pci_register_bar(dev, 0, PCI_BASE_ADDRESS_SPACE_MEMORY,
860
                     &s->ivshmem_mmio);
A
Avi Kivity 已提交
861

862
    if (!s->not_legacy_32bit) {
863
        attr |= PCI_BASE_ADDRESS_MEM_TYPE_64;
G
Gerd Hoffmann 已提交
864
    }
865

M
Marc-André Lureau 已提交
866 867 868
    if (s->hostmem != NULL) {
        IVSHMEM_DPRINTF("using hostmem\n");

869 870
        s->ivshmem_bar2 = host_memory_backend_get_memory(s->hostmem,
                                                         &error_abort);
871
    } else {
872 873
        assert(s->server_chr);

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

877
        /* we allocate enough space for 16 peers and grow as needed */
878
        resize_peers(s, 16);
879

880 881 882 883 884
        /*
         * Receive setup messages from server synchronously.
         * Older versions did it asynchronously, but that creates a
         * number of entertaining race conditions.
         */
885 886 887 888
        ivshmem_recv_setup(s, &err);
        if (err) {
            error_propagate(errp, err);
            return;
889 890
        }

891 892 893 894 895 896
        if (s->master == ON_OFF_AUTO_ON && s->vm_id != 0) {
            error_setg(errp,
                       "master must connect to the server before any peers");
            return;
        }

897 898 899
        qemu_chr_add_handlers(s->server_chr, ivshmem_can_receive,
                              ivshmem_read, NULL, s);

900 901 902 903
        if (ivshmem_setup_interrupts(s) < 0) {
            error_setg(errp, "failed to initialize interrupts");
            return;
        }
904 905
    }

906 907 908
    vmstate_register_ram(s->ivshmem_bar2, DEVICE(s));
    pci_register_bar(PCI_DEVICE(s), 2, attr, s->ivshmem_bar2);

909 910 911 912 913
    if (s->master == ON_OFF_AUTO_AUTO) {
        s->master = s->vm_id == 0 ? ON_OFF_AUTO_ON : ON_OFF_AUTO_OFF;
    }

    if (!ivshmem_is_master(s)) {
914 915 916
        error_setg(&s->migration_blocker,
                   "Migration is disabled when using feature 'peer mode' in device 'ivshmem'");
        migrate_add_blocker(s->migration_blocker);
917 918 919
    }
}

920 921 922
static void ivshmem_exit(PCIDevice *dev)
{
    IVShmemState *s = IVSHMEM_COMMON(dev);
923 924
    int i;

925 926 927 928 929
    if (s->migration_blocker) {
        migrate_del_blocker(s->migration_blocker);
        error_free(s->migration_blocker);
    }

930
    if (memory_region_is_mapped(s->ivshmem_bar2)) {
M
Marc-André Lureau 已提交
931
        if (!s->hostmem) {
932
            void *addr = memory_region_get_ram_ptr(s->ivshmem_bar2);
933
            int fd;
M
Marc-André Lureau 已提交
934

935
            if (munmap(addr, memory_region_size(s->ivshmem_bar2) == -1)) {
M
Marc-André Lureau 已提交
936 937 938
                error_report("Failed to munmap shared memory %s",
                             strerror(errno));
            }
939

940
            fd = memory_region_get_fd(s->ivshmem_bar2);
941
            close(fd);
M
Marc-André Lureau 已提交
942
        }
943

944
        vmstate_unregister_ram(s->ivshmem_bar2, DEVICE(dev));
945 946 947 948
    }

    if (s->peers) {
        for (i = 0; i < s->nb_peers; i++) {
949
            close_peer_eventfds(s, i);
950 951 952 953 954 955 956 957
        }
        g_free(s->peers);
    }

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

958
    g_free(s->msi_vectors);
959 960
}

961 962 963 964
static int ivshmem_pre_load(void *opaque)
{
    IVShmemState *s = opaque;

965
    if (!ivshmem_is_master(s)) {
966 967 968 969 970 971 972 973 974 975 976 977
        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)) {
978
        ivshmem_msix_vector_use(s);
979 980 981 982
    }
    return 0;
}

983
static void ivshmem_common_class_init(ObjectClass *klass, void *data)
984
{
985
    DeviceClass *dc = DEVICE_CLASS(klass);
986 987
    PCIDeviceClass *k = PCI_DEVICE_CLASS(klass);

988 989
    k->realize = ivshmem_common_realize;
    k->exit = ivshmem_exit;
M
Marc-André Lureau 已提交
990
    k->config_write = ivshmem_write_config;
991 992
    k->vendor_id = PCI_VENDOR_ID_IVSHMEM;
    k->device_id = PCI_DEVICE_ID_IVSHMEM;
993
    k->class_id = PCI_CLASS_MEMORY_RAM;
994
    k->revision = 1;
995
    dc->reset = ivshmem_reset;
996
    set_bit(DEVICE_CATEGORY_MISC, dc->categories);
997
    dc->desc = "Inter-VM shared memory";
998 999
}

1000 1001 1002 1003 1004 1005 1006
static const TypeInfo ivshmem_common_info = {
    .name          = TYPE_IVSHMEM_COMMON,
    .parent        = TYPE_PCI_DEVICE,
    .instance_size = sizeof(IVShmemState),
    .abstract      = true,
    .class_init    = ivshmem_common_class_init,
};
1007

M
Marc-André Lureau 已提交
1008 1009 1010
static void ivshmem_check_memdev_is_busy(Object *obj, const char *name,
                                         Object *val, Error **errp)
{
1011
    if (host_memory_backend_is_mapped(MEMORY_BACKEND(val))) {
M
Marc-André Lureau 已提交
1012 1013 1014 1015 1016 1017 1018 1019
        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);
    }
}

1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049
static const VMStateDescription ivshmem_plain_vmsd = {
    .name = TYPE_IVSHMEM_PLAIN,
    .version_id = 0,
    .minimum_version_id = 0,
    .pre_load = ivshmem_pre_load,
    .post_load = ivshmem_post_load,
    .fields = (VMStateField[]) {
        VMSTATE_PCI_DEVICE(parent_obj, IVShmemState),
        VMSTATE_UINT32(intrstatus, IVShmemState),
        VMSTATE_UINT32(intrmask, IVShmemState),
        VMSTATE_END_OF_LIST()
    },
};

static Property ivshmem_plain_properties[] = {
    DEFINE_PROP_ON_OFF_AUTO("master", IVShmemState, master, ON_OFF_AUTO_OFF),
    DEFINE_PROP_END_OF_LIST(),
};

static void ivshmem_plain_init(Object *obj)
{
    IVShmemState *s = IVSHMEM_PLAIN(obj);

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

1050 1051 1052 1053 1054 1055 1056 1057 1058 1059
static void ivshmem_plain_realize(PCIDevice *dev, Error **errp)
{
    IVShmemState *s = IVSHMEM_COMMON(dev);

    if (!s->hostmem) {
        error_setg(errp, "You must specify a 'memdev'");
        return;
    }

    ivshmem_common_realize(dev, errp);
1060 1061 1062 1063 1064 1065 1066 1067
    host_memory_backend_set_mapped(s->hostmem, true);
}

static void ivshmem_plain_exit(PCIDevice *pci_dev)
{
    IVShmemState *s = IVSHMEM_COMMON(pci_dev);

    host_memory_backend_set_mapped(s->hostmem, false);
1068 1069
}

1070 1071 1072
static void ivshmem_plain_class_init(ObjectClass *klass, void *data)
{
    DeviceClass *dc = DEVICE_CLASS(klass);
1073
    PCIDeviceClass *k = PCI_DEVICE_CLASS(klass);
1074

1075
    k->realize = ivshmem_plain_realize;
1076
    k->exit = ivshmem_plain_exit;
1077 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
    dc->props = ivshmem_plain_properties;
    dc->vmsd = &ivshmem_plain_vmsd;
}

static const TypeInfo ivshmem_plain_info = {
    .name          = TYPE_IVSHMEM_PLAIN,
    .parent        = TYPE_IVSHMEM_COMMON,
    .instance_size = sizeof(IVShmemState),
    .instance_init = ivshmem_plain_init,
    .class_init    = ivshmem_plain_class_init,
};

static const VMStateDescription ivshmem_doorbell_vmsd = {
    .name = TYPE_IVSHMEM_DOORBELL,
    .version_id = 0,
    .minimum_version_id = 0,
    .pre_load = ivshmem_pre_load,
    .post_load = ivshmem_post_load,
    .fields = (VMStateField[]) {
        VMSTATE_PCI_DEVICE(parent_obj, IVShmemState),
        VMSTATE_MSIX(parent_obj, IVShmemState),
        VMSTATE_UINT32(intrstatus, IVShmemState),
        VMSTATE_UINT32(intrmask, IVShmemState),
        VMSTATE_END_OF_LIST()
    },
};

static Property ivshmem_doorbell_properties[] = {
    DEFINE_PROP_CHR("chardev", IVShmemState, server_chr),
    DEFINE_PROP_UINT32("vectors", IVShmemState, vectors, 1),
    DEFINE_PROP_BIT("ioeventfd", IVShmemState, features, IVSHMEM_IOEVENTFD,
                    true),
    DEFINE_PROP_ON_OFF_AUTO("master", IVShmemState, master, ON_OFF_AUTO_OFF),
    DEFINE_PROP_END_OF_LIST(),
};

static void ivshmem_doorbell_init(Object *obj)
{
    IVShmemState *s = IVSHMEM_DOORBELL(obj);

    s->features |= (1 << IVSHMEM_MSI);
    s->legacy_size = SIZE_MAX;  /* whatever the server sends */
}

1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132
static void ivshmem_doorbell_realize(PCIDevice *dev, Error **errp)
{
    IVShmemState *s = IVSHMEM_COMMON(dev);

    if (!s->server_chr) {
        error_setg(errp, "You must specify a 'chardev'");
        return;
    }

    ivshmem_common_realize(dev, errp);
}

1133 1134 1135
static void ivshmem_doorbell_class_init(ObjectClass *klass, void *data)
{
    DeviceClass *dc = DEVICE_CLASS(klass);
1136
    PCIDeviceClass *k = PCI_DEVICE_CLASS(klass);
1137

1138
    k->realize = ivshmem_doorbell_realize;
1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150
    dc->props = ivshmem_doorbell_properties;
    dc->vmsd = &ivshmem_doorbell_vmsd;
}

static const TypeInfo ivshmem_doorbell_info = {
    .name          = TYPE_IVSHMEM_DOORBELL,
    .parent        = TYPE_IVSHMEM_COMMON,
    .instance_size = sizeof(IVShmemState),
    .instance_init = ivshmem_doorbell_init,
    .class_init    = ivshmem_doorbell_class_init,
};

1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253
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;
    }

    ret = ivshmem_pre_load(s);
    if (ret) {
        return ret;
    }

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

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

    return 0;
}

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

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),
    DEFINE_PROP_UINT32("use64", IVShmemState, not_legacy_32bit, 1),
    DEFINE_PROP_END_OF_LIST(),
};

static void desugar_shm(IVShmemState *s)
{
    Object *obj;
    char *path;

    obj = object_new("memory-backend-file");
    path = g_strdup_printf("/dev/shm/%s", s->shmobj);
    object_property_set_str(obj, path, "mem-path", &error_abort);
    g_free(path);
    object_property_set_int(obj, s->legacy_size, "size", &error_abort);
    object_property_set_bool(obj, true, "share", &error_abort);
    object_property_add_child(OBJECT(s), "internal-shm-backend", obj,
                              &error_abort);
    user_creatable_complete(obj, &error_abort);
    s->hostmem = MEMORY_BACKEND(obj);
}

static void ivshmem_realize(PCIDevice *dev, Error **errp)
{
    IVShmemState *s = IVSHMEM_COMMON(dev);

    if (!qtest_enabled()) {
        error_report("ivshmem is deprecated, please use ivshmem-plain"
                     " or ivshmem-doorbell instead");
    }

1254 1255
    if (!!s->server_chr + !!s->shmobj != 1) {
        error_setg(errp, "You must specify either 'shm' or 'chardev'");
1256 1257 1258
        return;
    }

1259
    if (s->sizearg == NULL) {
1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317
        s->legacy_size = 4 << 20; /* 4 MB default */
    } else {
        char *end;
        int64_t size = qemu_strtosz(s->sizearg, &end);
        if (size < 0 || (size_t)size != size || *end != '\0'
            || !is_power_of_2(size)) {
            error_setg(errp, "Invalid size %s", s->sizearg);
            return;
        }
        s->legacy_size = size;
    }

    /* check that role is reasonable */
    if (s->role) {
        if (strncmp(s->role, "peer", 5) == 0) {
            s->master = ON_OFF_AUTO_OFF;
        } else if (strncmp(s->role, "master", 7) == 0) {
            s->master = ON_OFF_AUTO_ON;
        } else {
            error_setg(errp, "'role' must be 'peer' or 'master'");
            return;
        }
    } else {
        s->master = ON_OFF_AUTO_AUTO;
    }

    if (s->shmobj) {
        desugar_shm(s);
    }

    /*
     * Note: we don't use INTx with IVSHMEM_MSI at all, so this is a
     * bald-faced lie then.  But it's a backwards compatible lie.
     */
    pci_config_set_interrupt_pin(dev->config, 1);

    ivshmem_common_realize(dev, errp);
}

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

    k->realize = ivshmem_realize;
    k->revision = 0;
    dc->desc = "Inter-VM shared memory (legacy)";
    dc->props = ivshmem_properties;
    dc->vmsd = &ivshmem_vmsd;
}

static const TypeInfo ivshmem_info = {
    .name          = TYPE_IVSHMEM,
    .parent        = TYPE_IVSHMEM_COMMON,
    .instance_size = sizeof(IVShmemState),
    .class_init    = ivshmem_class_init,
};

A
Andreas Färber 已提交
1318
static void ivshmem_register_types(void)
1319
{
1320 1321 1322
    type_register_static(&ivshmem_common_info);
    type_register_static(&ivshmem_plain_info);
    type_register_static(&ivshmem_doorbell_info);
1323
    type_register_static(&ivshmem_info);
1324 1325
}

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