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_NATIVE_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_realloc(s
->peers
, nb_peers
* sizeof(Peer
));
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
);
429 IVSHMEM_DPRINTF("ivshmem_add_kvm_msi_virq vector:%d\n", vector
);
430 assert(!s
->msi_vectors
[vector
].pdev
);
432 ret
= kvm_irqchip_add_msi_route(kvm_state
, vector
, pdev
);
434 error_setg(errp
, "kvm_irqchip_add_msi_route failed");
438 s
->msi_vectors
[vector
].virq
= ret
;
439 s
->msi_vectors
[vector
].pdev
= pdev
;
442 static void setup_interrupt(IVShmemState
*s
, int vector
, Error
**errp
)
444 EventNotifier
*n
= &s
->peers
[s
->vm_id
].eventfds
[vector
];
445 bool with_irqfd
= kvm_msi_via_irqfd_enabled() &&
446 ivshmem_has_feature(s
, IVSHMEM_MSI
);
447 PCIDevice
*pdev
= PCI_DEVICE(s
);
450 IVSHMEM_DPRINTF("setting up interrupt for vector: %d\n", vector
);
453 IVSHMEM_DPRINTF("with eventfd\n");
454 watch_vector_notifier(s
, n
, vector
);
455 } else if (msix_enabled(pdev
)) {
456 IVSHMEM_DPRINTF("with irqfd\n");
457 ivshmem_add_kvm_msi_virq(s
, vector
, &err
);
459 error_propagate(errp
, err
);
463 if (!msix_is_masked(pdev
, vector
)) {
464 kvm_irqchip_add_irqfd_notifier_gsi(kvm_state
, n
, NULL
,
465 s
->msi_vectors
[vector
].virq
);
466 /* TODO handle error */
469 /* it will be delayed until msix is enabled, in write_config */
470 IVSHMEM_DPRINTF("with irqfd, delayed until msix enabled\n");
474 static void process_msg_shmem(IVShmemState
*s
, int fd
, Error
**errp
)
476 Error
*local_err
= NULL
;
480 if (s
->ivshmem_bar2
) {
481 error_setg(errp
, "server sent unexpected shared memory message");
486 if (fstat(fd
, &buf
) < 0) {
487 error_setg_errno(errp
, errno
,
488 "can't determine size of shared memory sent by server");
495 /* mmap the region and map into the BAR2 */
496 memory_region_init_ram_from_fd(&s
->server_bar2
, OBJECT(s
), "ivshmem.bar2",
497 size
, RAM_SHARED
, fd
, 0, &local_err
);
499 error_propagate(errp
, local_err
);
503 s
->ivshmem_bar2
= &s
->server_bar2
;
506 static void process_msg_disconnect(IVShmemState
*s
, uint16_t posn
,
509 IVSHMEM_DPRINTF("posn %d has gone away\n", posn
);
510 if (posn
>= s
->nb_peers
|| posn
== s
->vm_id
) {
511 error_setg(errp
, "invalid peer %d", posn
);
514 close_peer_eventfds(s
, posn
);
517 static void process_msg_connect(IVShmemState
*s
, uint16_t posn
, int fd
,
520 Peer
*peer
= &s
->peers
[posn
];
524 * The N-th connect message for this peer comes with the file
525 * descriptor for vector N-1. Count messages to find the vector.
527 if (peer
->nb_eventfds
>= s
->vectors
) {
528 error_setg(errp
, "Too many eventfd received, device has %d vectors",
533 vector
= peer
->nb_eventfds
++;
535 IVSHMEM_DPRINTF("eventfds[%d][%d] = %d\n", posn
, vector
, fd
);
536 event_notifier_init_fd(&peer
->eventfds
[vector
], fd
);
537 fcntl_setfl(fd
, O_NONBLOCK
); /* msix/irqfd poll non block */
539 if (posn
== s
->vm_id
) {
540 setup_interrupt(s
, vector
, errp
);
541 /* TODO do we need to handle the error? */
544 if (ivshmem_has_feature(s
, IVSHMEM_IOEVENTFD
)) {
545 ivshmem_add_eventfd(s
, posn
, vector
);
549 static void process_msg(IVShmemState
*s
, int64_t msg
, int fd
, Error
**errp
)
551 IVSHMEM_DPRINTF("posn is %" PRId64
", fd is %d\n", msg
, fd
);
553 if (msg
< -1 || msg
> IVSHMEM_MAX_PEERS
) {
554 error_setg(errp
, "server sent invalid message %" PRId64
, msg
);
560 process_msg_shmem(s
, fd
, errp
);
564 if (msg
>= s
->nb_peers
) {
565 resize_peers(s
, msg
+ 1);
569 process_msg_connect(s
, msg
, fd
, errp
);
571 process_msg_disconnect(s
, msg
, errp
);
575 static int ivshmem_can_receive(void *opaque
)
577 IVShmemState
*s
= opaque
;
579 assert(s
->msg_buffered_bytes
< sizeof(s
->msg_buf
));
580 return sizeof(s
->msg_buf
) - s
->msg_buffered_bytes
;
583 static void ivshmem_read(void *opaque
, const uint8_t *buf
, int size
)
585 IVShmemState
*s
= opaque
;
590 assert(size
>= 0 && s
->msg_buffered_bytes
+ size
<= sizeof(s
->msg_buf
));
591 memcpy((unsigned char *)&s
->msg_buf
+ s
->msg_buffered_bytes
, buf
, size
);
592 s
->msg_buffered_bytes
+= size
;
593 if (s
->msg_buffered_bytes
< sizeof(s
->msg_buf
)) {
596 msg
= le64_to_cpu(s
->msg_buf
);
597 s
->msg_buffered_bytes
= 0;
599 fd
= qemu_chr_fe_get_msgfd(&s
->server_chr
);
601 process_msg(s
, msg
, fd
, &err
);
603 error_report_err(err
);
607 static int64_t ivshmem_recv_msg(IVShmemState
*s
, int *pfd
, Error
**errp
)
614 ret
= qemu_chr_fe_read_all(&s
->server_chr
, (uint8_t *)&msg
+ n
,
620 error_setg_errno(errp
, -ret
, "read from server failed");
624 } while (n
< sizeof(msg
));
626 *pfd
= qemu_chr_fe_get_msgfd(&s
->server_chr
);
627 return le64_to_cpu(msg
);
630 static void ivshmem_recv_setup(IVShmemState
*s
, Error
**errp
)
636 msg
= ivshmem_recv_msg(s
, &fd
, &err
);
638 error_propagate(errp
, err
);
641 if (msg
!= IVSHMEM_PROTOCOL_VERSION
) {
642 error_setg(errp
, "server sent version %" PRId64
", expecting %d",
643 msg
, IVSHMEM_PROTOCOL_VERSION
);
647 error_setg(errp
, "server sent invalid version message");
652 * ivshmem-server sends the remaining initial messages in a fixed
653 * order, but the device has always accepted them in any order.
654 * Stay as compatible as practical, just in case people use
655 * servers that behave differently.
659 * ivshmem_device_spec.txt has always required the ID message
660 * right here, and ivshmem-server has always complied. However,
661 * older versions of the device accepted it out of order, but
662 * broke when an interrupt setup message arrived before it.
664 msg
= ivshmem_recv_msg(s
, &fd
, &err
);
666 error_propagate(errp
, err
);
669 if (fd
!= -1 || msg
< 0 || msg
> IVSHMEM_MAX_PEERS
) {
670 error_setg(errp
, "server sent invalid ID message");
676 * Receive more messages until we got shared memory.
679 msg
= ivshmem_recv_msg(s
, &fd
, &err
);
681 error_propagate(errp
, err
);
684 process_msg(s
, msg
, fd
, &err
);
686 error_propagate(errp
, err
);
692 * This function must either map the shared memory or fail. The
693 * loop above ensures that: it terminates normally only after it
694 * successfully processed the server's shared memory message.
695 * Assert that actually mapped the shared memory:
697 assert(s
->ivshmem_bar2
);
700 /* Select the MSI-X vectors used by device.
701 * ivshmem maps events to vectors statically, so
702 * we just enable all vectors on init and after reset. */
703 static void ivshmem_msix_vector_use(IVShmemState
*s
)
705 PCIDevice
*d
= PCI_DEVICE(s
);
708 for (i
= 0; i
< s
->vectors
; i
++) {
709 msix_vector_use(d
, i
);
713 static void ivshmem_disable_irqfd(IVShmemState
*s
);
715 static void ivshmem_reset(DeviceState
*d
)
717 IVShmemState
*s
= IVSHMEM_COMMON(d
);
719 ivshmem_disable_irqfd(s
);
723 if (ivshmem_has_feature(s
, IVSHMEM_MSI
)) {
724 ivshmem_msix_vector_use(s
);
728 static int ivshmem_setup_interrupts(IVShmemState
*s
, Error
**errp
)
730 /* allocate QEMU callback data for receiving interrupts */
731 s
->msi_vectors
= g_malloc0(s
->vectors
* sizeof(MSIVector
));
733 if (ivshmem_has_feature(s
, IVSHMEM_MSI
)) {
734 if (msix_init_exclusive_bar(PCI_DEVICE(s
), s
->vectors
, 1, errp
)) {
738 IVSHMEM_DPRINTF("msix initialized (%d vectors)\n", s
->vectors
);
739 ivshmem_msix_vector_use(s
);
745 static void ivshmem_remove_kvm_msi_virq(IVShmemState
*s
, int vector
)
747 IVSHMEM_DPRINTF("ivshmem_remove_kvm_msi_virq vector:%d\n", vector
);
749 if (s
->msi_vectors
[vector
].pdev
== NULL
) {
753 /* it was cleaned when masked in the frontend. */
754 kvm_irqchip_release_virq(kvm_state
, s
->msi_vectors
[vector
].virq
);
756 s
->msi_vectors
[vector
].pdev
= NULL
;
759 static void ivshmem_enable_irqfd(IVShmemState
*s
)
761 PCIDevice
*pdev
= PCI_DEVICE(s
);
764 for (i
= 0; i
< s
->peers
[s
->vm_id
].nb_eventfds
; i
++) {
767 ivshmem_add_kvm_msi_virq(s
, i
, &err
);
769 error_report_err(err
);
774 if (msix_set_vector_notifiers(pdev
,
775 ivshmem_vector_unmask
,
777 ivshmem_vector_poll
)) {
778 error_report("ivshmem: msix_set_vector_notifiers failed");
785 ivshmem_remove_kvm_msi_virq(s
, i
);
789 static void ivshmem_disable_irqfd(IVShmemState
*s
)
791 PCIDevice
*pdev
= PCI_DEVICE(s
);
794 if (!pdev
->msix_vector_use_notifier
) {
798 msix_unset_vector_notifiers(pdev
);
800 for (i
= 0; i
< s
->peers
[s
->vm_id
].nb_eventfds
; i
++) {
802 * MSI-X is already disabled here so msix_unset_vector_notifiers()
803 * didn't call our release notifier. Do it now to keep our masks and
806 if (s
->msi_vectors
[i
].unmasked
) {
807 ivshmem_vector_mask(pdev
, i
);
809 ivshmem_remove_kvm_msi_virq(s
, i
);
814 static void ivshmem_write_config(PCIDevice
*pdev
, uint32_t address
,
815 uint32_t val
, int len
)
817 IVShmemState
*s
= IVSHMEM_COMMON(pdev
);
818 int is_enabled
, was_enabled
= msix_enabled(pdev
);
820 pci_default_write_config(pdev
, address
, val
, len
);
821 is_enabled
= msix_enabled(pdev
);
823 if (kvm_msi_via_irqfd_enabled()) {
824 if (!was_enabled
&& is_enabled
) {
825 ivshmem_enable_irqfd(s
);
826 } else if (was_enabled
&& !is_enabled
) {
827 ivshmem_disable_irqfd(s
);
832 static void ivshmem_common_realize(PCIDevice
*dev
, Error
**errp
)
834 IVShmemState
*s
= IVSHMEM_COMMON(dev
);
838 /* IRQFD requires MSI */
839 if (ivshmem_has_feature(s
, IVSHMEM_IOEVENTFD
) &&
840 !ivshmem_has_feature(s
, IVSHMEM_MSI
)) {
841 error_setg(errp
, "ioeventfd/irqfd requires MSI");
845 pci_conf
= dev
->config
;
846 pci_conf
[PCI_COMMAND
] = PCI_COMMAND_IO
| PCI_COMMAND_MEMORY
;
848 memory_region_init_io(&s
->ivshmem_mmio
, OBJECT(s
), &ivshmem_mmio_ops
, s
,
849 "ivshmem-mmio", IVSHMEM_REG_BAR_SIZE
);
851 /* region for registers*/
852 pci_register_bar(dev
, 0, PCI_BASE_ADDRESS_SPACE_MEMORY
,
855 if (s
->hostmem
!= NULL
) {
856 IVSHMEM_DPRINTF("using hostmem\n");
858 s
->ivshmem_bar2
= host_memory_backend_get_memory(s
->hostmem
);
859 host_memory_backend_set_mapped(s
->hostmem
, true);
861 Chardev
*chr
= qemu_chr_fe_get_driver(&s
->server_chr
);
864 IVSHMEM_DPRINTF("using shared memory server (socket = %s)\n",
867 /* we allocate enough space for 16 peers and grow as needed */
871 * Receive setup messages from server synchronously.
872 * Older versions did it asynchronously, but that creates a
873 * number of entertaining race conditions.
875 ivshmem_recv_setup(s
, &err
);
877 error_propagate(errp
, err
);
881 if (s
->master
== ON_OFF_AUTO_ON
&& s
->vm_id
!= 0) {
883 "master must connect to the server before any peers");
887 qemu_chr_fe_set_handlers(&s
->server_chr
, ivshmem_can_receive
,
888 ivshmem_read
, NULL
, NULL
, s
, NULL
, true);
890 if (ivshmem_setup_interrupts(s
, errp
) < 0) {
891 error_prepend(errp
, "Failed to initialize interrupts: ");
896 if (s
->master
== ON_OFF_AUTO_AUTO
) {
897 s
->master
= s
->vm_id
== 0 ? ON_OFF_AUTO_ON
: ON_OFF_AUTO_OFF
;
900 if (!ivshmem_is_master(s
)) {
901 error_setg(&s
->migration_blocker
,
902 "Migration is disabled when using feature 'peer mode' in device 'ivshmem'");
903 if (migrate_add_blocker(s
->migration_blocker
, errp
) < 0) {
904 error_free(s
->migration_blocker
);
909 vmstate_register_ram(s
->ivshmem_bar2
, DEVICE(s
));
910 pci_register_bar(PCI_DEVICE(s
), 2,
911 PCI_BASE_ADDRESS_SPACE_MEMORY
|
912 PCI_BASE_ADDRESS_MEM_PREFETCH
|
913 PCI_BASE_ADDRESS_MEM_TYPE_64
,
917 static void ivshmem_exit(PCIDevice
*dev
)
919 IVShmemState
*s
= IVSHMEM_COMMON(dev
);
922 if (s
->migration_blocker
) {
923 migrate_del_blocker(s
->migration_blocker
);
924 error_free(s
->migration_blocker
);
927 if (memory_region_is_mapped(s
->ivshmem_bar2
)) {
929 void *addr
= memory_region_get_ram_ptr(s
->ivshmem_bar2
);
932 if (munmap(addr
, memory_region_size(s
->ivshmem_bar2
) == -1)) {
933 error_report("Failed to munmap shared memory %s",
937 fd
= memory_region_get_fd(s
->ivshmem_bar2
);
941 vmstate_unregister_ram(s
->ivshmem_bar2
, DEVICE(dev
));
945 host_memory_backend_set_mapped(s
->hostmem
, false);
949 for (i
= 0; i
< s
->nb_peers
; i
++) {
950 close_peer_eventfds(s
, i
);
955 if (ivshmem_has_feature(s
, IVSHMEM_MSI
)) {
956 msix_uninit_exclusive_bar(dev
);
959 g_free(s
->msi_vectors
);
962 static int ivshmem_pre_load(void *opaque
)
964 IVShmemState
*s
= opaque
;
966 if (!ivshmem_is_master(s
)) {
967 error_report("'peer' devices are not migratable");
974 static int ivshmem_post_load(void *opaque
, int version_id
)
976 IVShmemState
*s
= opaque
;
978 if (ivshmem_has_feature(s
, IVSHMEM_MSI
)) {
979 ivshmem_msix_vector_use(s
);
984 static void ivshmem_common_class_init(ObjectClass
*klass
, void *data
)
986 DeviceClass
*dc
= DEVICE_CLASS(klass
);
987 PCIDeviceClass
*k
= PCI_DEVICE_CLASS(klass
);
989 k
->realize
= ivshmem_common_realize
;
990 k
->exit
= ivshmem_exit
;
991 k
->config_write
= ivshmem_write_config
;
992 k
->vendor_id
= PCI_VENDOR_ID_IVSHMEM
;
993 k
->device_id
= PCI_DEVICE_ID_IVSHMEM
;
994 k
->class_id
= PCI_CLASS_MEMORY_RAM
;
996 dc
->reset
= ivshmem_reset
;
997 set_bit(DEVICE_CATEGORY_MISC
, dc
->categories
);
998 dc
->desc
= "Inter-VM shared memory";
1001 static const TypeInfo ivshmem_common_info
= {
1002 .name
= TYPE_IVSHMEM_COMMON
,
1003 .parent
= TYPE_PCI_DEVICE
,
1004 .instance_size
= sizeof(IVShmemState
),
1006 .class_init
= ivshmem_common_class_init
,
1007 .interfaces
= (InterfaceInfo
[]) {
1008 { INTERFACE_CONVENTIONAL_PCI_DEVICE
},
1013 static const VMStateDescription ivshmem_plain_vmsd
= {
1014 .name
= TYPE_IVSHMEM_PLAIN
,
1016 .minimum_version_id
= 0,
1017 .pre_load
= ivshmem_pre_load
,
1018 .post_load
= ivshmem_post_load
,
1019 .fields
= (VMStateField
[]) {
1020 VMSTATE_PCI_DEVICE(parent_obj
, IVShmemState
),
1021 VMSTATE_UINT32(intrstatus
, IVShmemState
),
1022 VMSTATE_UINT32(intrmask
, IVShmemState
),
1023 VMSTATE_END_OF_LIST()
1027 static Property ivshmem_plain_properties
[] = {
1028 DEFINE_PROP_ON_OFF_AUTO("master", IVShmemState
, master
, ON_OFF_AUTO_OFF
),
1029 DEFINE_PROP_LINK("memdev", IVShmemState
, hostmem
, TYPE_MEMORY_BACKEND
,
1030 HostMemoryBackend
*),
1031 DEFINE_PROP_END_OF_LIST(),
1034 static void ivshmem_plain_realize(PCIDevice
*dev
, Error
**errp
)
1036 IVShmemState
*s
= IVSHMEM_COMMON(dev
);
1039 error_setg(errp
, "You must specify a 'memdev'");
1041 } else if (host_memory_backend_is_mapped(s
->hostmem
)) {
1042 error_setg(errp
, "can't use already busy memdev: %s",
1043 object_get_canonical_path_component(OBJECT(s
->hostmem
)));
1047 ivshmem_common_realize(dev
, errp
);
1050 static void ivshmem_plain_class_init(ObjectClass
*klass
, void *data
)
1052 DeviceClass
*dc
= DEVICE_CLASS(klass
);
1053 PCIDeviceClass
*k
= PCI_DEVICE_CLASS(klass
);
1055 k
->realize
= ivshmem_plain_realize
;
1056 device_class_set_props(dc
, ivshmem_plain_properties
);
1057 dc
->vmsd
= &ivshmem_plain_vmsd
;
1060 static const TypeInfo ivshmem_plain_info
= {
1061 .name
= TYPE_IVSHMEM_PLAIN
,
1062 .parent
= TYPE_IVSHMEM_COMMON
,
1063 .instance_size
= sizeof(IVShmemState
),
1064 .class_init
= ivshmem_plain_class_init
,
1067 static const VMStateDescription ivshmem_doorbell_vmsd
= {
1068 .name
= TYPE_IVSHMEM_DOORBELL
,
1070 .minimum_version_id
= 0,
1071 .pre_load
= ivshmem_pre_load
,
1072 .post_load
= ivshmem_post_load
,
1073 .fields
= (VMStateField
[]) {
1074 VMSTATE_PCI_DEVICE(parent_obj
, IVShmemState
),
1075 VMSTATE_MSIX(parent_obj
, IVShmemState
),
1076 VMSTATE_UINT32(intrstatus
, IVShmemState
),
1077 VMSTATE_UINT32(intrmask
, IVShmemState
),
1078 VMSTATE_END_OF_LIST()
1082 static Property ivshmem_doorbell_properties
[] = {
1083 DEFINE_PROP_CHR("chardev", IVShmemState
, server_chr
),
1084 DEFINE_PROP_UINT32("vectors", IVShmemState
, vectors
, 1),
1085 DEFINE_PROP_BIT("ioeventfd", IVShmemState
, features
, IVSHMEM_IOEVENTFD
,
1087 DEFINE_PROP_ON_OFF_AUTO("master", IVShmemState
, master
, ON_OFF_AUTO_OFF
),
1088 DEFINE_PROP_END_OF_LIST(),
1091 static void ivshmem_doorbell_init(Object
*obj
)
1093 IVShmemState
*s
= IVSHMEM_DOORBELL(obj
);
1095 s
->features
|= (1 << IVSHMEM_MSI
);
1098 static void ivshmem_doorbell_realize(PCIDevice
*dev
, Error
**errp
)
1100 IVShmemState
*s
= IVSHMEM_COMMON(dev
);
1102 if (!qemu_chr_fe_backend_connected(&s
->server_chr
)) {
1103 error_setg(errp
, "You must specify a 'chardev'");
1107 ivshmem_common_realize(dev
, errp
);
1110 static void ivshmem_doorbell_class_init(ObjectClass
*klass
, void *data
)
1112 DeviceClass
*dc
= DEVICE_CLASS(klass
);
1113 PCIDeviceClass
*k
= PCI_DEVICE_CLASS(klass
);
1115 k
->realize
= ivshmem_doorbell_realize
;
1116 device_class_set_props(dc
, ivshmem_doorbell_properties
);
1117 dc
->vmsd
= &ivshmem_doorbell_vmsd
;
1120 static const TypeInfo ivshmem_doorbell_info
= {
1121 .name
= TYPE_IVSHMEM_DOORBELL
,
1122 .parent
= TYPE_IVSHMEM_COMMON
,
1123 .instance_size
= sizeof(IVShmemState
),
1124 .instance_init
= ivshmem_doorbell_init
,
1125 .class_init
= ivshmem_doorbell_class_init
,
1128 static void ivshmem_register_types(void)
1130 type_register_static(&ivshmem_common_info
);
1131 type_register_static(&ivshmem_plain_info
);
1132 type_register_static(&ivshmem_doorbell_info
);
1135 type_init(ivshmem_register_types
)