2 * Inter-VM Shared Memory PCI device.
5 * Cam Macdonell <cam@cs.ualberta.ca>
7 * Based On: cirrus_vga.c
8 * Copyright (c) 2004 Fabrice Bellard
9 * Copyright (c) 2004 Makoto Suzuki (suzu)
12 * Copyright (c) 2006 Igor Kovalenko
14 * This code is licensed under the GNU GPL v2.
16 * Contributions after 2012-01-13 are licensed under the terms of the
17 * GNU GPL, version 2 or (at your option) any later version.
20 #include "qemu/osdep.h"
21 #include "qemu/units.h"
22 #include "qapi/error.h"
23 #include "qemu/cutils.h"
24 #include "hw/pci/pci.h"
25 #include "hw/qdev-properties.h"
26 #include "hw/qdev-properties-system.h"
27 #include "hw/pci/msi.h"
28 #include "hw/pci/msix.h"
29 #include "sysemu/kvm.h"
30 #include "migration/blocker.h"
31 #include "migration/vmstate.h"
32 #include "qemu/error-report.h"
33 #include "qemu/event_notifier.h"
34 #include "qemu/module.h"
35 #include "qom/object_interfaces.h"
36 #include "chardev/char-fe.h"
37 #include "sysemu/hostmem.h"
38 #include "qapi/visitor.h"
40 #include "hw/misc/ivshmem.h"
41 #include "qom/object.h"
43 #define PCI_VENDOR_ID_IVSHMEM PCI_VENDOR_ID_REDHAT_QUMRANET
44 #define PCI_DEVICE_ID_IVSHMEM 0x1110
46 #define IVSHMEM_MAX_PEERS UINT16_MAX
47 #define IVSHMEM_IOEVENTFD 0
50 #define IVSHMEM_REG_BAR_SIZE 0x100
52 #define IVSHMEM_DEBUG 0
53 #define IVSHMEM_DPRINTF(fmt, ...) \
55 if (IVSHMEM_DEBUG) { \
56 printf("IVSHMEM: " fmt, ## __VA_ARGS__); \
60 #define TYPE_IVSHMEM_COMMON "ivshmem-common"
61 typedef struct IVShmemState IVShmemState
;
62 DECLARE_INSTANCE_CHECKER(IVShmemState
, IVSHMEM_COMMON
,
65 #define TYPE_IVSHMEM_PLAIN "ivshmem-plain"
66 DECLARE_INSTANCE_CHECKER(IVShmemState
, IVSHMEM_PLAIN
,
69 #define TYPE_IVSHMEM_DOORBELL "ivshmem-doorbell"
70 DECLARE_INSTANCE_CHECKER(IVShmemState
, IVSHMEM_DOORBELL
,
71 TYPE_IVSHMEM_DOORBELL
)
73 #define TYPE_IVSHMEM "ivshmem"
74 DECLARE_INSTANCE_CHECKER(IVShmemState
, IVSHMEM
,
79 EventNotifier
*eventfds
;
82 typedef struct MSIVector
{
95 /* exactly one of these two may be set */
96 HostMemoryBackend
*hostmem
; /* with interrupts */
97 CharBackend server_chr
; /* without interrupts */
105 MemoryRegion ivshmem_mmio
; /* BAR 0 (registers) */
106 MemoryRegion
*ivshmem_bar2
; /* BAR 2 (shared memory) */
107 MemoryRegion server_bar2
; /* used with server_chr */
109 /* interrupt support */
111 int nb_peers
; /* space in @peers[] */
113 MSIVector
*msi_vectors
;
114 uint64_t msg_buf
; /* buffer for receiving server messages */
115 int msg_buffered_bytes
; /* #bytes in @msg_buf */
117 /* migration stuff */
119 Error
*migration_blocker
;
122 /* registers for the Inter-VM shared memory device */
123 enum ivshmem_registers
{
130 static inline uint32_t ivshmem_has_feature(IVShmemState
*ivs
,
131 unsigned int feature
) {
132 return (ivs
->features
& (1 << feature
));
135 static inline bool ivshmem_is_master(IVShmemState
*s
)
137 assert(s
->master
!= ON_OFF_AUTO_AUTO
);
138 return s
->master
== ON_OFF_AUTO_ON
;
141 static void ivshmem_IntrMask_write(IVShmemState
*s
, uint32_t val
)
143 IVSHMEM_DPRINTF("IntrMask write(w) val = 0x%04x\n", val
);
148 static uint32_t ivshmem_IntrMask_read(IVShmemState
*s
)
150 uint32_t ret
= s
->intrmask
;
152 IVSHMEM_DPRINTF("intrmask read(w) val = 0x%04x\n", ret
);
156 static void ivshmem_IntrStatus_write(IVShmemState
*s
, uint32_t val
)
158 IVSHMEM_DPRINTF("IntrStatus write(w) val = 0x%04x\n", val
);
163 static uint32_t ivshmem_IntrStatus_read(IVShmemState
*s
)
165 uint32_t ret
= s
->intrstatus
;
167 /* reading ISR clears all interrupts */
172 static void ivshmem_io_write(void *opaque
, hwaddr addr
,
173 uint64_t val
, unsigned size
)
175 IVShmemState
*s
= opaque
;
177 uint16_t dest
= val
>> 16;
178 uint16_t vector
= val
& 0xff;
182 IVSHMEM_DPRINTF("writing to addr " TARGET_FMT_plx
"\n", addr
);
186 ivshmem_IntrMask_write(s
, val
);
190 ivshmem_IntrStatus_write(s
, val
);
194 /* check that dest VM ID is reasonable */
195 if (dest
>= s
->nb_peers
) {
196 IVSHMEM_DPRINTF("Invalid destination VM ID (%d)\n", dest
);
200 /* check doorbell range */
201 if (vector
< s
->peers
[dest
].nb_eventfds
) {
202 IVSHMEM_DPRINTF("Notifying VM %d on vector %d\n", dest
, vector
);
203 event_notifier_set(&s
->peers
[dest
].eventfds
[vector
]);
205 IVSHMEM_DPRINTF("Invalid destination vector %d on VM %d\n",
210 IVSHMEM_DPRINTF("Unhandled write " TARGET_FMT_plx
"\n", addr
);
214 static uint64_t ivshmem_io_read(void *opaque
, hwaddr addr
,
218 IVShmemState
*s
= opaque
;
224 ret
= ivshmem_IntrMask_read(s
);
228 ret
= ivshmem_IntrStatus_read(s
);
236 IVSHMEM_DPRINTF("why are we reading " TARGET_FMT_plx
"\n", addr
);
243 static const MemoryRegionOps ivshmem_mmio_ops
= {
244 .read
= ivshmem_io_read
,
245 .write
= ivshmem_io_write
,
246 .endianness
= DEVICE_LITTLE_ENDIAN
,
248 .min_access_size
= 4,
249 .max_access_size
= 4,
253 static void ivshmem_vector_notify(void *opaque
)
255 MSIVector
*entry
= opaque
;
256 PCIDevice
*pdev
= entry
->pdev
;
257 IVShmemState
*s
= IVSHMEM_COMMON(pdev
);
258 int vector
= entry
- s
->msi_vectors
;
259 EventNotifier
*n
= &s
->peers
[s
->vm_id
].eventfds
[vector
];
261 if (!event_notifier_test_and_clear(n
)) {
265 IVSHMEM_DPRINTF("interrupt on vector %p %d\n", pdev
, vector
);
266 if (ivshmem_has_feature(s
, IVSHMEM_MSI
)) {
267 if (msix_enabled(pdev
)) {
268 msix_notify(pdev
, vector
);
271 ivshmem_IntrStatus_write(s
, 1);
275 static int ivshmem_vector_unmask(PCIDevice
*dev
, unsigned vector
,
278 IVShmemState
*s
= IVSHMEM_COMMON(dev
);
279 EventNotifier
*n
= &s
->peers
[s
->vm_id
].eventfds
[vector
];
280 MSIVector
*v
= &s
->msi_vectors
[vector
];
283 IVSHMEM_DPRINTF("vector unmask %p %d\n", dev
, vector
);
285 error_report("ivshmem: vector %d route does not exist", vector
);
288 assert(!v
->unmasked
);
290 ret
= kvm_irqchip_update_msi_route(kvm_state
, v
->virq
, msg
, dev
);
294 kvm_irqchip_commit_routes(kvm_state
);
296 ret
= kvm_irqchip_add_irqfd_notifier_gsi(kvm_state
, n
, NULL
, v
->virq
);
305 static void ivshmem_vector_mask(PCIDevice
*dev
, unsigned vector
)
307 IVShmemState
*s
= IVSHMEM_COMMON(dev
);
308 EventNotifier
*n
= &s
->peers
[s
->vm_id
].eventfds
[vector
];
309 MSIVector
*v
= &s
->msi_vectors
[vector
];
312 IVSHMEM_DPRINTF("vector mask %p %d\n", dev
, vector
);
314 error_report("ivshmem: vector %d route does not exist", vector
);
319 ret
= kvm_irqchip_remove_irqfd_notifier_gsi(kvm_state
, n
, v
->virq
);
321 error_report("remove_irqfd_notifier_gsi failed");
327 static void ivshmem_vector_poll(PCIDevice
*dev
,
328 unsigned int vector_start
,
329 unsigned int vector_end
)
331 IVShmemState
*s
= IVSHMEM_COMMON(dev
);
334 IVSHMEM_DPRINTF("vector poll %p %d-%d\n", dev
, vector_start
, vector_end
);
336 vector_end
= MIN(vector_end
, s
->vectors
);
338 for (vector
= vector_start
; vector
< vector_end
; vector
++) {
339 EventNotifier
*notifier
= &s
->peers
[s
->vm_id
].eventfds
[vector
];
341 if (!msix_is_masked(dev
, vector
)) {
345 if (event_notifier_test_and_clear(notifier
)) {
346 msix_set_pending(dev
, vector
);
351 static void watch_vector_notifier(IVShmemState
*s
, EventNotifier
*n
,
354 int eventfd
= event_notifier_get_fd(n
);
356 assert(!s
->msi_vectors
[vector
].pdev
);
357 s
->msi_vectors
[vector
].pdev
= PCI_DEVICE(s
);
359 qemu_set_fd_handler(eventfd
, ivshmem_vector_notify
,
360 NULL
, &s
->msi_vectors
[vector
]);
363 static void ivshmem_add_eventfd(IVShmemState
*s
, int posn
, int i
)
365 memory_region_add_eventfd(&s
->ivshmem_mmio
,
370 &s
->peers
[posn
].eventfds
[i
]);
373 static void ivshmem_del_eventfd(IVShmemState
*s
, int posn
, int i
)
375 memory_region_del_eventfd(&s
->ivshmem_mmio
,
380 &s
->peers
[posn
].eventfds
[i
]);
383 static void close_peer_eventfds(IVShmemState
*s
, int posn
)
387 assert(posn
>= 0 && posn
< s
->nb_peers
);
388 n
= s
->peers
[posn
].nb_eventfds
;
390 if (ivshmem_has_feature(s
, IVSHMEM_IOEVENTFD
)) {
391 memory_region_transaction_begin();
392 for (i
= 0; i
< n
; i
++) {
393 ivshmem_del_eventfd(s
, posn
, i
);
395 memory_region_transaction_commit();
398 for (i
= 0; i
< n
; i
++) {
399 event_notifier_cleanup(&s
->peers
[posn
].eventfds
[i
]);
402 g_free(s
->peers
[posn
].eventfds
);
403 s
->peers
[posn
].nb_eventfds
= 0;
406 static void resize_peers(IVShmemState
*s
, int nb_peers
)
408 int old_nb_peers
= s
->nb_peers
;
411 assert(nb_peers
> old_nb_peers
);
412 IVSHMEM_DPRINTF("bumping storage to %d peers\n", nb_peers
);
414 s
->peers
= g_renew(Peer
, s
->peers
, nb_peers
);
415 s
->nb_peers
= nb_peers
;
417 for (i
= old_nb_peers
; i
< nb_peers
; i
++) {
418 s
->peers
[i
].eventfds
= g_new0(EventNotifier
, s
->vectors
);
419 s
->peers
[i
].nb_eventfds
= 0;
423 static void ivshmem_add_kvm_msi_virq(IVShmemState
*s
, int vector
,
426 PCIDevice
*pdev
= PCI_DEVICE(s
);
430 IVSHMEM_DPRINTF("ivshmem_add_kvm_msi_virq vector:%d\n", vector
);
431 assert(!s
->msi_vectors
[vector
].pdev
);
433 c
= kvm_irqchip_begin_route_changes(kvm_state
);
434 ret
= kvm_irqchip_add_msi_route(&c
, vector
, pdev
);
436 error_setg(errp
, "kvm_irqchip_add_msi_route failed");
439 kvm_irqchip_commit_route_changes(&c
);
441 s
->msi_vectors
[vector
].virq
= ret
;
442 s
->msi_vectors
[vector
].pdev
= pdev
;
445 static void setup_interrupt(IVShmemState
*s
, int vector
, Error
**errp
)
447 EventNotifier
*n
= &s
->peers
[s
->vm_id
].eventfds
[vector
];
448 bool with_irqfd
= kvm_msi_via_irqfd_enabled() &&
449 ivshmem_has_feature(s
, IVSHMEM_MSI
);
450 PCIDevice
*pdev
= PCI_DEVICE(s
);
453 IVSHMEM_DPRINTF("setting up interrupt for vector: %d\n", vector
);
456 IVSHMEM_DPRINTF("with eventfd\n");
457 watch_vector_notifier(s
, n
, vector
);
458 } else if (msix_enabled(pdev
)) {
459 IVSHMEM_DPRINTF("with irqfd\n");
460 ivshmem_add_kvm_msi_virq(s
, vector
, &err
);
462 error_propagate(errp
, err
);
466 if (!msix_is_masked(pdev
, vector
)) {
467 kvm_irqchip_add_irqfd_notifier_gsi(kvm_state
, n
, NULL
,
468 s
->msi_vectors
[vector
].virq
);
469 /* TODO handle error */
472 /* it will be delayed until msix is enabled, in write_config */
473 IVSHMEM_DPRINTF("with irqfd, delayed until msix enabled\n");
477 static void process_msg_shmem(IVShmemState
*s
, int fd
, Error
**errp
)
479 Error
*local_err
= NULL
;
483 if (s
->ivshmem_bar2
) {
484 error_setg(errp
, "server sent unexpected shared memory message");
489 if (fstat(fd
, &buf
) < 0) {
490 error_setg_errno(errp
, errno
,
491 "can't determine size of shared memory sent by server");
498 /* mmap the region and map into the BAR2 */
499 memory_region_init_ram_from_fd(&s
->server_bar2
, OBJECT(s
), "ivshmem.bar2",
500 size
, RAM_SHARED
, fd
, 0, &local_err
);
502 error_propagate(errp
, local_err
);
506 s
->ivshmem_bar2
= &s
->server_bar2
;
509 static void process_msg_disconnect(IVShmemState
*s
, uint16_t posn
,
512 IVSHMEM_DPRINTF("posn %d has gone away\n", posn
);
513 if (posn
>= s
->nb_peers
|| posn
== s
->vm_id
) {
514 error_setg(errp
, "invalid peer %d", posn
);
517 close_peer_eventfds(s
, posn
);
520 static void process_msg_connect(IVShmemState
*s
, uint16_t posn
, int fd
,
523 Peer
*peer
= &s
->peers
[posn
];
527 * The N-th connect message for this peer comes with the file
528 * descriptor for vector N-1. Count messages to find the vector.
530 if (peer
->nb_eventfds
>= s
->vectors
) {
531 error_setg(errp
, "Too many eventfd received, device has %d vectors",
536 vector
= peer
->nb_eventfds
++;
538 IVSHMEM_DPRINTF("eventfds[%d][%d] = %d\n", posn
, vector
, fd
);
539 event_notifier_init_fd(&peer
->eventfds
[vector
], fd
);
540 g_unix_set_fd_nonblocking(fd
, true, NULL
); /* msix/irqfd poll non block */
542 if (posn
== s
->vm_id
) {
543 setup_interrupt(s
, vector
, errp
);
544 /* TODO do we need to handle the error? */
547 if (ivshmem_has_feature(s
, IVSHMEM_IOEVENTFD
)) {
548 ivshmem_add_eventfd(s
, posn
, vector
);
552 static void process_msg(IVShmemState
*s
, int64_t msg
, int fd
, Error
**errp
)
554 IVSHMEM_DPRINTF("posn is %" PRId64
", fd is %d\n", msg
, fd
);
556 if (msg
< -1 || msg
> IVSHMEM_MAX_PEERS
) {
557 error_setg(errp
, "server sent invalid message %" PRId64
, msg
);
563 process_msg_shmem(s
, fd
, errp
);
567 if (msg
>= s
->nb_peers
) {
568 resize_peers(s
, msg
+ 1);
572 process_msg_connect(s
, msg
, fd
, errp
);
574 process_msg_disconnect(s
, msg
, errp
);
578 static int ivshmem_can_receive(void *opaque
)
580 IVShmemState
*s
= opaque
;
582 assert(s
->msg_buffered_bytes
< sizeof(s
->msg_buf
));
583 return sizeof(s
->msg_buf
) - s
->msg_buffered_bytes
;
586 static void ivshmem_read(void *opaque
, const uint8_t *buf
, int size
)
588 IVShmemState
*s
= opaque
;
593 assert(size
>= 0 && s
->msg_buffered_bytes
+ size
<= sizeof(s
->msg_buf
));
594 memcpy((unsigned char *)&s
->msg_buf
+ s
->msg_buffered_bytes
, buf
, size
);
595 s
->msg_buffered_bytes
+= size
;
596 if (s
->msg_buffered_bytes
< sizeof(s
->msg_buf
)) {
599 msg
= le64_to_cpu(s
->msg_buf
);
600 s
->msg_buffered_bytes
= 0;
602 fd
= qemu_chr_fe_get_msgfd(&s
->server_chr
);
604 process_msg(s
, msg
, fd
, &err
);
606 error_report_err(err
);
610 static int64_t ivshmem_recv_msg(IVShmemState
*s
, int *pfd
, Error
**errp
)
617 ret
= qemu_chr_fe_read_all(&s
->server_chr
, (uint8_t *)&msg
+ n
,
623 error_setg_errno(errp
, -ret
, "read from server failed");
627 } while (n
< sizeof(msg
));
629 *pfd
= qemu_chr_fe_get_msgfd(&s
->server_chr
);
630 return le64_to_cpu(msg
);
633 static void ivshmem_recv_setup(IVShmemState
*s
, Error
**errp
)
639 msg
= ivshmem_recv_msg(s
, &fd
, &err
);
641 error_propagate(errp
, err
);
644 if (msg
!= IVSHMEM_PROTOCOL_VERSION
) {
645 error_setg(errp
, "server sent version %" PRId64
", expecting %d",
646 msg
, IVSHMEM_PROTOCOL_VERSION
);
650 error_setg(errp
, "server sent invalid version message");
655 * ivshmem-server sends the remaining initial messages in a fixed
656 * order, but the device has always accepted them in any order.
657 * Stay as compatible as practical, just in case people use
658 * servers that behave differently.
662 * ivshmem_device_spec.txt has always required the ID message
663 * right here, and ivshmem-server has always complied. However,
664 * older versions of the device accepted it out of order, but
665 * broke when an interrupt setup message arrived before it.
667 msg
= ivshmem_recv_msg(s
, &fd
, &err
);
669 error_propagate(errp
, err
);
672 if (fd
!= -1 || msg
< 0 || msg
> IVSHMEM_MAX_PEERS
) {
673 error_setg(errp
, "server sent invalid ID message");
679 * Receive more messages until we got shared memory.
682 msg
= ivshmem_recv_msg(s
, &fd
, &err
);
684 error_propagate(errp
, err
);
687 process_msg(s
, msg
, fd
, &err
);
689 error_propagate(errp
, err
);
695 * This function must either map the shared memory or fail. The
696 * loop above ensures that: it terminates normally only after it
697 * successfully processed the server's shared memory message.
698 * Assert that actually mapped the shared memory:
700 assert(s
->ivshmem_bar2
);
703 /* Select the MSI-X vectors used by device.
704 * ivshmem maps events to vectors statically, so
705 * we just enable all vectors on init and after reset. */
706 static void ivshmem_msix_vector_use(IVShmemState
*s
)
708 PCIDevice
*d
= PCI_DEVICE(s
);
711 for (i
= 0; i
< s
->vectors
; i
++) {
712 msix_vector_use(d
, i
);
716 static void ivshmem_disable_irqfd(IVShmemState
*s
);
718 static void ivshmem_reset(DeviceState
*d
)
720 IVShmemState
*s
= IVSHMEM_COMMON(d
);
722 ivshmem_disable_irqfd(s
);
726 if (ivshmem_has_feature(s
, IVSHMEM_MSI
)) {
727 ivshmem_msix_vector_use(s
);
731 static int ivshmem_setup_interrupts(IVShmemState
*s
, Error
**errp
)
733 /* allocate QEMU callback data for receiving interrupts */
734 s
->msi_vectors
= g_new0(MSIVector
, s
->vectors
);
736 if (ivshmem_has_feature(s
, IVSHMEM_MSI
)) {
737 if (msix_init_exclusive_bar(PCI_DEVICE(s
), s
->vectors
, 1, errp
)) {
741 IVSHMEM_DPRINTF("msix initialized (%d vectors)\n", s
->vectors
);
742 ivshmem_msix_vector_use(s
);
748 static void ivshmem_remove_kvm_msi_virq(IVShmemState
*s
, int vector
)
750 IVSHMEM_DPRINTF("ivshmem_remove_kvm_msi_virq vector:%d\n", vector
);
752 if (s
->msi_vectors
[vector
].pdev
== NULL
) {
756 /* it was cleaned when masked in the frontend. */
757 kvm_irqchip_release_virq(kvm_state
, s
->msi_vectors
[vector
].virq
);
759 s
->msi_vectors
[vector
].pdev
= NULL
;
762 static void ivshmem_enable_irqfd(IVShmemState
*s
)
764 PCIDevice
*pdev
= PCI_DEVICE(s
);
767 for (i
= 0; i
< s
->peers
[s
->vm_id
].nb_eventfds
; i
++) {
770 ivshmem_add_kvm_msi_virq(s
, i
, &err
);
772 error_report_err(err
);
777 if (msix_set_vector_notifiers(pdev
,
778 ivshmem_vector_unmask
,
780 ivshmem_vector_poll
)) {
781 error_report("ivshmem: msix_set_vector_notifiers failed");
788 ivshmem_remove_kvm_msi_virq(s
, i
);
792 static void ivshmem_disable_irqfd(IVShmemState
*s
)
794 PCIDevice
*pdev
= PCI_DEVICE(s
);
797 if (!pdev
->msix_vector_use_notifier
) {
801 msix_unset_vector_notifiers(pdev
);
803 for (i
= 0; i
< s
->peers
[s
->vm_id
].nb_eventfds
; i
++) {
805 * MSI-X is already disabled here so msix_unset_vector_notifiers()
806 * didn't call our release notifier. Do it now to keep our masks and
809 if (s
->msi_vectors
[i
].unmasked
) {
810 ivshmem_vector_mask(pdev
, i
);
812 ivshmem_remove_kvm_msi_virq(s
, i
);
817 static void ivshmem_write_config(PCIDevice
*pdev
, uint32_t address
,
818 uint32_t val
, int len
)
820 IVShmemState
*s
= IVSHMEM_COMMON(pdev
);
821 int is_enabled
, was_enabled
= msix_enabled(pdev
);
823 pci_default_write_config(pdev
, address
, val
, len
);
824 is_enabled
= msix_enabled(pdev
);
826 if (kvm_msi_via_irqfd_enabled()) {
827 if (!was_enabled
&& is_enabled
) {
828 ivshmem_enable_irqfd(s
);
829 } else if (was_enabled
&& !is_enabled
) {
830 ivshmem_disable_irqfd(s
);
835 static void ivshmem_common_realize(PCIDevice
*dev
, Error
**errp
)
837 IVShmemState
*s
= IVSHMEM_COMMON(dev
);
841 /* IRQFD requires MSI */
842 if (ivshmem_has_feature(s
, IVSHMEM_IOEVENTFD
) &&
843 !ivshmem_has_feature(s
, IVSHMEM_MSI
)) {
844 error_setg(errp
, "ioeventfd/irqfd requires MSI");
848 pci_conf
= dev
->config
;
849 pci_conf
[PCI_COMMAND
] = PCI_COMMAND_IO
| PCI_COMMAND_MEMORY
;
851 memory_region_init_io(&s
->ivshmem_mmio
, OBJECT(s
), &ivshmem_mmio_ops
, s
,
852 "ivshmem-mmio", IVSHMEM_REG_BAR_SIZE
);
854 /* region for registers*/
855 pci_register_bar(dev
, 0, PCI_BASE_ADDRESS_SPACE_MEMORY
,
858 if (s
->hostmem
!= NULL
) {
859 IVSHMEM_DPRINTF("using hostmem\n");
861 s
->ivshmem_bar2
= host_memory_backend_get_memory(s
->hostmem
);
862 host_memory_backend_set_mapped(s
->hostmem
, true);
864 Chardev
*chr
= qemu_chr_fe_get_driver(&s
->server_chr
);
867 IVSHMEM_DPRINTF("using shared memory server (socket = %s)\n",
870 /* we allocate enough space for 16 peers and grow as needed */
874 * Receive setup messages from server synchronously.
875 * Older versions did it asynchronously, but that creates a
876 * number of entertaining race conditions.
878 ivshmem_recv_setup(s
, &err
);
880 error_propagate(errp
, err
);
884 if (s
->master
== ON_OFF_AUTO_ON
&& s
->vm_id
!= 0) {
886 "master must connect to the server before any peers");
890 qemu_chr_fe_set_handlers(&s
->server_chr
, ivshmem_can_receive
,
891 ivshmem_read
, NULL
, NULL
, s
, NULL
, true);
893 if (ivshmem_setup_interrupts(s
, errp
) < 0) {
894 error_prepend(errp
, "Failed to initialize interrupts: ");
899 if (s
->master
== ON_OFF_AUTO_AUTO
) {
900 s
->master
= s
->vm_id
== 0 ? ON_OFF_AUTO_ON
: ON_OFF_AUTO_OFF
;
903 if (!ivshmem_is_master(s
)) {
904 error_setg(&s
->migration_blocker
,
905 "Migration is disabled when using feature 'peer mode' in device 'ivshmem'");
906 if (migrate_add_blocker(s
->migration_blocker
, errp
) < 0) {
907 error_free(s
->migration_blocker
);
912 vmstate_register_ram(s
->ivshmem_bar2
, DEVICE(s
));
913 pci_register_bar(PCI_DEVICE(s
), 2,
914 PCI_BASE_ADDRESS_SPACE_MEMORY
|
915 PCI_BASE_ADDRESS_MEM_PREFETCH
|
916 PCI_BASE_ADDRESS_MEM_TYPE_64
,
920 static void ivshmem_exit(PCIDevice
*dev
)
922 IVShmemState
*s
= IVSHMEM_COMMON(dev
);
925 if (s
->migration_blocker
) {
926 migrate_del_blocker(s
->migration_blocker
);
927 error_free(s
->migration_blocker
);
930 if (memory_region_is_mapped(s
->ivshmem_bar2
)) {
932 void *addr
= memory_region_get_ram_ptr(s
->ivshmem_bar2
);
935 if (munmap(addr
, memory_region_size(s
->ivshmem_bar2
) == -1)) {
936 error_report("Failed to munmap shared memory %s",
940 fd
= memory_region_get_fd(s
->ivshmem_bar2
);
944 vmstate_unregister_ram(s
->ivshmem_bar2
, DEVICE(dev
));
948 host_memory_backend_set_mapped(s
->hostmem
, false);
952 for (i
= 0; i
< s
->nb_peers
; i
++) {
953 close_peer_eventfds(s
, i
);
958 if (ivshmem_has_feature(s
, IVSHMEM_MSI
)) {
959 msix_uninit_exclusive_bar(dev
);
962 g_free(s
->msi_vectors
);
965 static int ivshmem_pre_load(void *opaque
)
967 IVShmemState
*s
= opaque
;
969 if (!ivshmem_is_master(s
)) {
970 error_report("'peer' devices are not migratable");
977 static int ivshmem_post_load(void *opaque
, int version_id
)
979 IVShmemState
*s
= opaque
;
981 if (ivshmem_has_feature(s
, IVSHMEM_MSI
)) {
982 ivshmem_msix_vector_use(s
);
987 static void ivshmem_common_class_init(ObjectClass
*klass
, void *data
)
989 DeviceClass
*dc
= DEVICE_CLASS(klass
);
990 PCIDeviceClass
*k
= PCI_DEVICE_CLASS(klass
);
992 k
->realize
= ivshmem_common_realize
;
993 k
->exit
= ivshmem_exit
;
994 k
->config_write
= ivshmem_write_config
;
995 k
->vendor_id
= PCI_VENDOR_ID_IVSHMEM
;
996 k
->device_id
= PCI_DEVICE_ID_IVSHMEM
;
997 k
->class_id
= PCI_CLASS_MEMORY_RAM
;
999 dc
->reset
= ivshmem_reset
;
1000 set_bit(DEVICE_CATEGORY_MISC
, dc
->categories
);
1001 dc
->desc
= "Inter-VM shared memory";
1004 static const TypeInfo ivshmem_common_info
= {
1005 .name
= TYPE_IVSHMEM_COMMON
,
1006 .parent
= TYPE_PCI_DEVICE
,
1007 .instance_size
= sizeof(IVShmemState
),
1009 .class_init
= ivshmem_common_class_init
,
1010 .interfaces
= (InterfaceInfo
[]) {
1011 { INTERFACE_CONVENTIONAL_PCI_DEVICE
},
1016 static const VMStateDescription ivshmem_plain_vmsd
= {
1017 .name
= TYPE_IVSHMEM_PLAIN
,
1019 .minimum_version_id
= 0,
1020 .pre_load
= ivshmem_pre_load
,
1021 .post_load
= ivshmem_post_load
,
1022 .fields
= (VMStateField
[]) {
1023 VMSTATE_PCI_DEVICE(parent_obj
, IVShmemState
),
1024 VMSTATE_UINT32(intrstatus
, IVShmemState
),
1025 VMSTATE_UINT32(intrmask
, IVShmemState
),
1026 VMSTATE_END_OF_LIST()
1030 static Property ivshmem_plain_properties
[] = {
1031 DEFINE_PROP_ON_OFF_AUTO("master", IVShmemState
, master
, ON_OFF_AUTO_OFF
),
1032 DEFINE_PROP_LINK("memdev", IVShmemState
, hostmem
, TYPE_MEMORY_BACKEND
,
1033 HostMemoryBackend
*),
1034 DEFINE_PROP_END_OF_LIST(),
1037 static void ivshmem_plain_realize(PCIDevice
*dev
, Error
**errp
)
1039 IVShmemState
*s
= IVSHMEM_COMMON(dev
);
1042 error_setg(errp
, "You must specify a 'memdev'");
1044 } else if (host_memory_backend_is_mapped(s
->hostmem
)) {
1045 error_setg(errp
, "can't use already busy memdev: %s",
1046 object_get_canonical_path_component(OBJECT(s
->hostmem
)));
1050 ivshmem_common_realize(dev
, errp
);
1053 static void ivshmem_plain_class_init(ObjectClass
*klass
, void *data
)
1055 DeviceClass
*dc
= DEVICE_CLASS(klass
);
1056 PCIDeviceClass
*k
= PCI_DEVICE_CLASS(klass
);
1058 k
->realize
= ivshmem_plain_realize
;
1059 device_class_set_props(dc
, ivshmem_plain_properties
);
1060 dc
->vmsd
= &ivshmem_plain_vmsd
;
1063 static const TypeInfo ivshmem_plain_info
= {
1064 .name
= TYPE_IVSHMEM_PLAIN
,
1065 .parent
= TYPE_IVSHMEM_COMMON
,
1066 .instance_size
= sizeof(IVShmemState
),
1067 .class_init
= ivshmem_plain_class_init
,
1070 static const VMStateDescription ivshmem_doorbell_vmsd
= {
1071 .name
= TYPE_IVSHMEM_DOORBELL
,
1073 .minimum_version_id
= 0,
1074 .pre_load
= ivshmem_pre_load
,
1075 .post_load
= ivshmem_post_load
,
1076 .fields
= (VMStateField
[]) {
1077 VMSTATE_PCI_DEVICE(parent_obj
, IVShmemState
),
1078 VMSTATE_MSIX(parent_obj
, IVShmemState
),
1079 VMSTATE_UINT32(intrstatus
, IVShmemState
),
1080 VMSTATE_UINT32(intrmask
, IVShmemState
),
1081 VMSTATE_END_OF_LIST()
1085 static Property ivshmem_doorbell_properties
[] = {
1086 DEFINE_PROP_CHR("chardev", IVShmemState
, server_chr
),
1087 DEFINE_PROP_UINT32("vectors", IVShmemState
, vectors
, 1),
1088 DEFINE_PROP_BIT("ioeventfd", IVShmemState
, features
, IVSHMEM_IOEVENTFD
,
1090 DEFINE_PROP_ON_OFF_AUTO("master", IVShmemState
, master
, ON_OFF_AUTO_OFF
),
1091 DEFINE_PROP_END_OF_LIST(),
1094 static void ivshmem_doorbell_init(Object
*obj
)
1096 IVShmemState
*s
= IVSHMEM_DOORBELL(obj
);
1098 s
->features
|= (1 << IVSHMEM_MSI
);
1101 static void ivshmem_doorbell_realize(PCIDevice
*dev
, Error
**errp
)
1103 IVShmemState
*s
= IVSHMEM_COMMON(dev
);
1105 if (!qemu_chr_fe_backend_connected(&s
->server_chr
)) {
1106 error_setg(errp
, "You must specify a 'chardev'");
1110 ivshmem_common_realize(dev
, errp
);
1113 static void ivshmem_doorbell_class_init(ObjectClass
*klass
, void *data
)
1115 DeviceClass
*dc
= DEVICE_CLASS(klass
);
1116 PCIDeviceClass
*k
= PCI_DEVICE_CLASS(klass
);
1118 k
->realize
= ivshmem_doorbell_realize
;
1119 device_class_set_props(dc
, ivshmem_doorbell_properties
);
1120 dc
->vmsd
= &ivshmem_doorbell_vmsd
;
1123 static const TypeInfo ivshmem_doorbell_info
= {
1124 .name
= TYPE_IVSHMEM_DOORBELL
,
1125 .parent
= TYPE_IVSHMEM_COMMON
,
1126 .instance_size
= sizeof(IVShmemState
),
1127 .instance_init
= ivshmem_doorbell_init
,
1128 .class_init
= ivshmem_doorbell_class_init
,
1131 static void ivshmem_register_types(void)
1133 type_register_static(&ivshmem_common_info
);
1134 type_register_static(&ivshmem_plain_info
);
1135 type_register_static(&ivshmem_doorbell_info
);
1138 type_init(ivshmem_register_types
)