]>
Commit | Line | Data |
---|---|---|
6cbf4c8c CM |
1 | /* |
2 | * Inter-VM Shared Memory PCI device. | |
3 | * | |
4 | * Author: | |
5 | * Cam Macdonell <[email protected]> | |
6 | * | |
7 | * Based On: cirrus_vga.c | |
8 | * Copyright (c) 2004 Fabrice Bellard | |
9 | * Copyright (c) 2004 Makoto Suzuki (suzu) | |
10 | * | |
11 | * and rtl8139.c | |
12 | * Copyright (c) 2006 Igor Kovalenko | |
13 | * | |
14 | * This code is licensed under the GNU GPL v2. | |
6b620ca3 PB |
15 | * |
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. | |
6cbf4c8c | 18 | */ |
0d1c9782 | 19 | #include "qemu/osdep.h" |
da34e65c | 20 | #include "qapi/error.h" |
f348b6d1 | 21 | #include "qemu/cutils.h" |
83c9f4ca | 22 | #include "hw/hw.h" |
0d09e41a | 23 | #include "hw/i386/pc.h" |
83c9f4ca | 24 | #include "hw/pci/pci.h" |
660c97ee | 25 | #include "hw/pci/msi.h" |
83c9f4ca | 26 | #include "hw/pci/msix.h" |
9c17d615 | 27 | #include "sysemu/kvm.h" |
caf71f86 | 28 | #include "migration/migration.h" |
d49b6836 | 29 | #include "qemu/error-report.h" |
1de7afc9 | 30 | #include "qemu/event_notifier.h" |
5503e285 | 31 | #include "qom/object_interfaces.h" |
dccfcd0e | 32 | #include "sysemu/char.h" |
d9453c93 | 33 | #include "sysemu/hostmem.h" |
5400c02b | 34 | #include "sysemu/qtest.h" |
d9453c93 | 35 | #include "qapi/visitor.h" |
6cbf4c8c | 36 | |
5105b1d8 DM |
37 | #include "hw/misc/ivshmem.h" |
38 | ||
b8ef62a9 PB |
39 | #define PCI_VENDOR_ID_IVSHMEM PCI_VENDOR_ID_REDHAT_QUMRANET |
40 | #define PCI_DEVICE_ID_IVSHMEM 0x1110 | |
41 | ||
cd9953f7 | 42 | #define IVSHMEM_MAX_PEERS UINT16_MAX |
6cbf4c8c CM |
43 | #define IVSHMEM_IOEVENTFD 0 |
44 | #define IVSHMEM_MSI 1 | |
45 | ||
6cbf4c8c CM |
46 | #define IVSHMEM_REG_BAR_SIZE 0x100 |
47 | ||
a4fa93bf MA |
48 | #define IVSHMEM_DEBUG 0 |
49 | #define IVSHMEM_DPRINTF(fmt, ...) \ | |
50 | do { \ | |
51 | if (IVSHMEM_DEBUG) { \ | |
52 | printf("IVSHMEM: " fmt, ## __VA_ARGS__); \ | |
53 | } \ | |
54 | } while (0) | |
6cbf4c8c | 55 | |
5400c02b MA |
56 | #define TYPE_IVSHMEM_COMMON "ivshmem-common" |
57 | #define IVSHMEM_COMMON(obj) \ | |
58 | OBJECT_CHECK(IVShmemState, (obj), TYPE_IVSHMEM_COMMON) | |
59 | ||
60 | #define TYPE_IVSHMEM_PLAIN "ivshmem-plain" | |
61 | #define IVSHMEM_PLAIN(obj) \ | |
62 | OBJECT_CHECK(IVShmemState, (obj), TYPE_IVSHMEM_PLAIN) | |
63 | ||
64 | #define TYPE_IVSHMEM_DOORBELL "ivshmem-doorbell" | |
65 | #define IVSHMEM_DOORBELL(obj) \ | |
66 | OBJECT_CHECK(IVShmemState, (obj), TYPE_IVSHMEM_DOORBELL) | |
67 | ||
eb3fedf3 PC |
68 | #define TYPE_IVSHMEM "ivshmem" |
69 | #define IVSHMEM(obj) \ | |
70 | OBJECT_CHECK(IVShmemState, (obj), TYPE_IVSHMEM) | |
71 | ||
6cbf4c8c CM |
72 | typedef struct Peer { |
73 | int nb_eventfds; | |
563027cc | 74 | EventNotifier *eventfds; |
6cbf4c8c CM |
75 | } Peer; |
76 | ||
0f57350e | 77 | typedef struct MSIVector { |
6cbf4c8c | 78 | PCIDevice *pdev; |
660c97ee | 79 | int virq; |
0f57350e | 80 | } MSIVector; |
6cbf4c8c CM |
81 | |
82 | typedef struct IVShmemState { | |
b7578eaa AF |
83 | /*< private >*/ |
84 | PCIDevice parent_obj; | |
85 | /*< public >*/ | |
86 | ||
ddc85284 MA |
87 | uint32_t features; |
88 | ||
89 | /* exactly one of these two may be set */ | |
90 | HostMemoryBackend *hostmem; /* with interrupts */ | |
becdfa00 | 91 | CharBackend server_chr; /* without interrupts */ |
ddc85284 MA |
92 | |
93 | /* registers */ | |
6cbf4c8c CM |
94 | uint32_t intrmask; |
95 | uint32_t intrstatus; | |
ddc85284 | 96 | int vm_id; |
6cbf4c8c | 97 | |
ddc85284 MA |
98 | /* BARs */ |
99 | MemoryRegion ivshmem_mmio; /* BAR 0 (registers) */ | |
c2d8019c MA |
100 | MemoryRegion *ivshmem_bar2; /* BAR 2 (shared memory) */ |
101 | MemoryRegion server_bar2; /* used with server_chr */ | |
6cbf4c8c | 102 | |
ddc85284 | 103 | /* interrupt support */ |
6cbf4c8c | 104 | Peer *peers; |
cd9953f7 | 105 | int nb_peers; /* space in @peers[] */ |
6cbf4c8c | 106 | uint32_t vectors; |
0f57350e | 107 | MSIVector *msi_vectors; |
ee276391 MA |
108 | uint64_t msg_buf; /* buffer for receiving server messages */ |
109 | int msg_buffered_bytes; /* #bytes in @msg_buf */ | |
6cbf4c8c | 110 | |
ddc85284 | 111 | /* migration stuff */ |
2a845da7 | 112 | OnOffAuto master; |
38e0735e AL |
113 | Error *migration_blocker; |
114 | ||
5400c02b MA |
115 | /* legacy cruft */ |
116 | char *role; | |
117 | char *shmobj; | |
118 | char *sizearg; | |
119 | size_t legacy_size; | |
120 | uint32_t not_legacy_32bit; | |
6cbf4c8c CM |
121 | } IVShmemState; |
122 | ||
123 | /* registers for the Inter-VM shared memory device */ | |
124 | enum ivshmem_registers { | |
125 | INTRMASK = 0, | |
126 | INTRSTATUS = 4, | |
127 | IVPOSITION = 8, | |
128 | DOORBELL = 12, | |
129 | }; | |
130 | ||
131 | static inline uint32_t ivshmem_has_feature(IVShmemState *ivs, | |
132 | unsigned int feature) { | |
133 | return (ivs->features & (1 << feature)); | |
134 | } | |
135 | ||
2a845da7 MA |
136 | static inline bool ivshmem_is_master(IVShmemState *s) |
137 | { | |
138 | assert(s->master != ON_OFF_AUTO_AUTO); | |
139 | return s->master == ON_OFF_AUTO_ON; | |
140 | } | |
141 | ||
d8a5da07 | 142 | static void ivshmem_update_irq(IVShmemState *s) |
6cbf4c8c | 143 | { |
b7578eaa | 144 | PCIDevice *d = PCI_DEVICE(s); |
434ad76d | 145 | uint32_t isr = s->intrstatus & s->intrmask; |
6cbf4c8c | 146 | |
5400c02b MA |
147 | /* |
148 | * Do nothing unless the device actually uses INTx. Here's how | |
149 | * the device variants signal interrupts, what they put in PCI | |
150 | * config space: | |
151 | * Device variant Interrupt Interrupt Pin MSI-X cap. | |
152 | * ivshmem-plain none 0 no | |
153 | * ivshmem-doorbell MSI-X 1 yes(1) | |
154 | * ivshmem,msi=off INTx 1 no | |
155 | * ivshmem,msi=on MSI-X 1(2) yes(1) | |
156 | * (1) if guest enabled MSI-X | |
157 | * (2) the device lies | |
158 | * Leads to the condition for doing nothing: | |
159 | */ | |
160 | if (ivshmem_has_feature(s, IVSHMEM_MSI) | |
161 | || !d->config[PCI_INTERRUPT_PIN]) { | |
2d1d422d MA |
162 | return; |
163 | } | |
164 | ||
6cbf4c8c CM |
165 | /* don't print ISR resets */ |
166 | if (isr) { | |
167 | IVSHMEM_DPRINTF("Set IRQ to %d (%04x %04x)\n", | |
dbc464d4 | 168 | isr ? 1 : 0, s->intrstatus, s->intrmask); |
6cbf4c8c CM |
169 | } |
170 | ||
434ad76d | 171 | pci_set_irq(d, isr != 0); |
6cbf4c8c CM |
172 | } |
173 | ||
174 | static void ivshmem_IntrMask_write(IVShmemState *s, uint32_t val) | |
175 | { | |
176 | IVSHMEM_DPRINTF("IntrMask write(w) val = 0x%04x\n", val); | |
177 | ||
178 | s->intrmask = val; | |
d8a5da07 | 179 | ivshmem_update_irq(s); |
6cbf4c8c CM |
180 | } |
181 | ||
182 | static uint32_t ivshmem_IntrMask_read(IVShmemState *s) | |
183 | { | |
184 | uint32_t ret = s->intrmask; | |
185 | ||
186 | IVSHMEM_DPRINTF("intrmask read(w) val = 0x%04x\n", ret); | |
6cbf4c8c CM |
187 | return ret; |
188 | } | |
189 | ||
190 | static void ivshmem_IntrStatus_write(IVShmemState *s, uint32_t val) | |
191 | { | |
192 | IVSHMEM_DPRINTF("IntrStatus write(w) val = 0x%04x\n", val); | |
193 | ||
194 | s->intrstatus = val; | |
d8a5da07 | 195 | ivshmem_update_irq(s); |
6cbf4c8c CM |
196 | } |
197 | ||
198 | static uint32_t ivshmem_IntrStatus_read(IVShmemState *s) | |
199 | { | |
200 | uint32_t ret = s->intrstatus; | |
201 | ||
202 | /* reading ISR clears all interrupts */ | |
203 | s->intrstatus = 0; | |
d8a5da07 | 204 | ivshmem_update_irq(s); |
6cbf4c8c CM |
205 | return ret; |
206 | } | |
207 | ||
a8170e5e | 208 | static void ivshmem_io_write(void *opaque, hwaddr addr, |
cb06608e | 209 | uint64_t val, unsigned size) |
6cbf4c8c CM |
210 | { |
211 | IVShmemState *s = opaque; | |
212 | ||
6cbf4c8c CM |
213 | uint16_t dest = val >> 16; |
214 | uint16_t vector = val & 0xff; | |
215 | ||
216 | addr &= 0xfc; | |
217 | ||
218 | IVSHMEM_DPRINTF("writing to addr " TARGET_FMT_plx "\n", addr); | |
219 | switch (addr) | |
220 | { | |
221 | case INTRMASK: | |
222 | ivshmem_IntrMask_write(s, val); | |
223 | break; | |
224 | ||
225 | case INTRSTATUS: | |
226 | ivshmem_IntrStatus_write(s, val); | |
227 | break; | |
228 | ||
229 | case DOORBELL: | |
230 | /* check that dest VM ID is reasonable */ | |
95c8425c | 231 | if (dest >= s->nb_peers) { |
6cbf4c8c CM |
232 | IVSHMEM_DPRINTF("Invalid destination VM ID (%d)\n", dest); |
233 | break; | |
234 | } | |
235 | ||
236 | /* check doorbell range */ | |
1b27d7a1 | 237 | if (vector < s->peers[dest].nb_eventfds) { |
563027cc PB |
238 | IVSHMEM_DPRINTF("Notifying VM %d on vector %d\n", dest, vector); |
239 | event_notifier_set(&s->peers[dest].eventfds[vector]); | |
f59bb378 MAL |
240 | } else { |
241 | IVSHMEM_DPRINTF("Invalid destination vector %d on VM %d\n", | |
242 | vector, dest); | |
6cbf4c8c CM |
243 | } |
244 | break; | |
245 | default: | |
f59bb378 | 246 | IVSHMEM_DPRINTF("Unhandled write " TARGET_FMT_plx "\n", addr); |
6cbf4c8c CM |
247 | } |
248 | } | |
249 | ||
a8170e5e | 250 | static uint64_t ivshmem_io_read(void *opaque, hwaddr addr, |
cb06608e | 251 | unsigned size) |
6cbf4c8c CM |
252 | { |
253 | ||
254 | IVShmemState *s = opaque; | |
255 | uint32_t ret; | |
256 | ||
257 | switch (addr) | |
258 | { | |
259 | case INTRMASK: | |
260 | ret = ivshmem_IntrMask_read(s); | |
261 | break; | |
262 | ||
263 | case INTRSTATUS: | |
264 | ret = ivshmem_IntrStatus_read(s); | |
265 | break; | |
266 | ||
267 | case IVPOSITION: | |
1309cf44 | 268 | ret = s->vm_id; |
6cbf4c8c CM |
269 | break; |
270 | ||
271 | default: | |
272 | IVSHMEM_DPRINTF("why are we reading " TARGET_FMT_plx "\n", addr); | |
273 | ret = 0; | |
274 | } | |
275 | ||
276 | return ret; | |
277 | } | |
278 | ||
cb06608e AK |
279 | static const MemoryRegionOps ivshmem_mmio_ops = { |
280 | .read = ivshmem_io_read, | |
281 | .write = ivshmem_io_write, | |
282 | .endianness = DEVICE_NATIVE_ENDIAN, | |
283 | .impl = { | |
284 | .min_access_size = 4, | |
285 | .max_access_size = 4, | |
286 | }, | |
6cbf4c8c CM |
287 | }; |
288 | ||
9940c323 MAL |
289 | static void ivshmem_vector_notify(void *opaque) |
290 | { | |
0f57350e | 291 | MSIVector *entry = opaque; |
6cbf4c8c | 292 | PCIDevice *pdev = entry->pdev; |
5400c02b | 293 | IVShmemState *s = IVSHMEM_COMMON(pdev); |
0f57350e | 294 | int vector = entry - s->msi_vectors; |
9940c323 MAL |
295 | EventNotifier *n = &s->peers[s->vm_id].eventfds[vector]; |
296 | ||
297 | if (!event_notifier_test_and_clear(n)) { | |
298 | return; | |
299 | } | |
6cbf4c8c | 300 | |
d160f3f7 | 301 | IVSHMEM_DPRINTF("interrupt on vector %p %d\n", pdev, vector); |
9940c323 | 302 | if (ivshmem_has_feature(s, IVSHMEM_MSI)) { |
082751e8 MA |
303 | if (msix_enabled(pdev)) { |
304 | msix_notify(pdev, vector); | |
305 | } | |
9940c323 MAL |
306 | } else { |
307 | ivshmem_IntrStatus_write(s, 1); | |
308 | } | |
6cbf4c8c CM |
309 | } |
310 | ||
660c97ee MAL |
311 | static int ivshmem_vector_unmask(PCIDevice *dev, unsigned vector, |
312 | MSIMessage msg) | |
313 | { | |
5400c02b | 314 | IVShmemState *s = IVSHMEM_COMMON(dev); |
660c97ee MAL |
315 | EventNotifier *n = &s->peers[s->vm_id].eventfds[vector]; |
316 | MSIVector *v = &s->msi_vectors[vector]; | |
317 | int ret; | |
318 | ||
319 | IVSHMEM_DPRINTF("vector unmask %p %d\n", dev, vector); | |
320 | ||
321 | ret = kvm_irqchip_update_msi_route(kvm_state, v->virq, msg, dev); | |
322 | if (ret < 0) { | |
323 | return ret; | |
324 | } | |
3f1fea0f | 325 | kvm_irqchip_commit_routes(kvm_state); |
660c97ee MAL |
326 | |
327 | return kvm_irqchip_add_irqfd_notifier_gsi(kvm_state, n, NULL, v->virq); | |
328 | } | |
329 | ||
330 | static void ivshmem_vector_mask(PCIDevice *dev, unsigned vector) | |
331 | { | |
5400c02b | 332 | IVShmemState *s = IVSHMEM_COMMON(dev); |
660c97ee MAL |
333 | EventNotifier *n = &s->peers[s->vm_id].eventfds[vector]; |
334 | int ret; | |
335 | ||
336 | IVSHMEM_DPRINTF("vector mask %p %d\n", dev, vector); | |
337 | ||
338 | ret = kvm_irqchip_remove_irqfd_notifier_gsi(kvm_state, n, | |
339 | s->msi_vectors[vector].virq); | |
340 | if (ret != 0) { | |
341 | error_report("remove_irqfd_notifier_gsi failed"); | |
342 | } | |
343 | } | |
344 | ||
345 | static void ivshmem_vector_poll(PCIDevice *dev, | |
346 | unsigned int vector_start, | |
347 | unsigned int vector_end) | |
348 | { | |
5400c02b | 349 | IVShmemState *s = IVSHMEM_COMMON(dev); |
660c97ee MAL |
350 | unsigned int vector; |
351 | ||
352 | IVSHMEM_DPRINTF("vector poll %p %d-%d\n", dev, vector_start, vector_end); | |
353 | ||
354 | vector_end = MIN(vector_end, s->vectors); | |
355 | ||
356 | for (vector = vector_start; vector < vector_end; vector++) { | |
357 | EventNotifier *notifier = &s->peers[s->vm_id].eventfds[vector]; | |
358 | ||
359 | if (!msix_is_masked(dev, vector)) { | |
360 | continue; | |
361 | } | |
362 | ||
363 | if (event_notifier_test_and_clear(notifier)) { | |
364 | msix_set_pending(dev, vector); | |
365 | } | |
366 | } | |
367 | } | |
368 | ||
9940c323 MAL |
369 | static void watch_vector_notifier(IVShmemState *s, EventNotifier *n, |
370 | int vector) | |
6cbf4c8c | 371 | { |
563027cc | 372 | int eventfd = event_notifier_get_fd(n); |
6cbf4c8c | 373 | |
3c27969b | 374 | assert(!s->msi_vectors[vector].pdev); |
9940c323 | 375 | s->msi_vectors[vector].pdev = PCI_DEVICE(s); |
6cbf4c8c | 376 | |
9940c323 MAL |
377 | qemu_set_fd_handler(eventfd, ivshmem_vector_notify, |
378 | NULL, &s->msi_vectors[vector]); | |
6cbf4c8c CM |
379 | } |
380 | ||
563027cc PB |
381 | static void ivshmem_add_eventfd(IVShmemState *s, int posn, int i) |
382 | { | |
383 | memory_region_add_eventfd(&s->ivshmem_mmio, | |
384 | DOORBELL, | |
385 | 4, | |
386 | true, | |
387 | (posn << 16) | i, | |
753d5e14 | 388 | &s->peers[posn].eventfds[i]); |
563027cc PB |
389 | } |
390 | ||
391 | static void ivshmem_del_eventfd(IVShmemState *s, int posn, int i) | |
392 | { | |
393 | memory_region_del_eventfd(&s->ivshmem_mmio, | |
394 | DOORBELL, | |
395 | 4, | |
396 | true, | |
397 | (posn << 16) | i, | |
753d5e14 | 398 | &s->peers[posn].eventfds[i]); |
563027cc PB |
399 | } |
400 | ||
f456179f | 401 | static void close_peer_eventfds(IVShmemState *s, int posn) |
6cbf4c8c | 402 | { |
f456179f | 403 | int i, n; |
6cbf4c8c | 404 | |
9db51b4d | 405 | assert(posn >= 0 && posn < s->nb_peers); |
f456179f | 406 | n = s->peers[posn].nb_eventfds; |
6cbf4c8c | 407 | |
9db51b4d MA |
408 | if (ivshmem_has_feature(s, IVSHMEM_IOEVENTFD)) { |
409 | memory_region_transaction_begin(); | |
410 | for (i = 0; i < n; i++) { | |
411 | ivshmem_del_eventfd(s, posn, i); | |
412 | } | |
413 | memory_region_transaction_commit(); | |
b6a1f3a5 | 414 | } |
9db51b4d | 415 | |
f456179f | 416 | for (i = 0; i < n; i++) { |
563027cc | 417 | event_notifier_cleanup(&s->peers[posn].eventfds[i]); |
6cbf4c8c CM |
418 | } |
419 | ||
7267c094 | 420 | g_free(s->peers[posn].eventfds); |
6cbf4c8c CM |
421 | s->peers[posn].nb_eventfds = 0; |
422 | } | |
423 | ||
cd9953f7 | 424 | static void resize_peers(IVShmemState *s, int nb_peers) |
34bc07c5 | 425 | { |
cd9953f7 MA |
426 | int old_nb_peers = s->nb_peers; |
427 | int i; | |
6cbf4c8c | 428 | |
cd9953f7 MA |
429 | assert(nb_peers > old_nb_peers); |
430 | IVSHMEM_DPRINTF("bumping storage to %d peers\n", nb_peers); | |
6cbf4c8c | 431 | |
cd9953f7 MA |
432 | s->peers = g_realloc(s->peers, nb_peers * sizeof(Peer)); |
433 | s->nb_peers = nb_peers; | |
1300b273 | 434 | |
cd9953f7 MA |
435 | for (i = old_nb_peers; i < nb_peers; i++) { |
436 | s->peers[i].eventfds = g_new0(EventNotifier, s->vectors); | |
437 | s->peers[i].nb_eventfds = 0; | |
6cbf4c8c CM |
438 | } |
439 | } | |
440 | ||
1309cf44 MA |
441 | static void ivshmem_add_kvm_msi_virq(IVShmemState *s, int vector, |
442 | Error **errp) | |
660c97ee MAL |
443 | { |
444 | PCIDevice *pdev = PCI_DEVICE(s); | |
660c97ee MAL |
445 | int ret; |
446 | ||
447 | IVSHMEM_DPRINTF("ivshmem_add_kvm_msi_virq vector:%d\n", vector); | |
3c27969b | 448 | assert(!s->msi_vectors[vector].pdev); |
660c97ee | 449 | |
d1f6af6a | 450 | ret = kvm_irqchip_add_msi_route(kvm_state, vector, pdev); |
660c97ee | 451 | if (ret < 0) { |
1309cf44 MA |
452 | error_setg(errp, "kvm_irqchip_add_msi_route failed"); |
453 | return; | |
660c97ee MAL |
454 | } |
455 | ||
456 | s->msi_vectors[vector].virq = ret; | |
457 | s->msi_vectors[vector].pdev = pdev; | |
660c97ee MAL |
458 | } |
459 | ||
1309cf44 | 460 | static void setup_interrupt(IVShmemState *s, int vector, Error **errp) |
660c97ee MAL |
461 | { |
462 | EventNotifier *n = &s->peers[s->vm_id].eventfds[vector]; | |
463 | bool with_irqfd = kvm_msi_via_irqfd_enabled() && | |
464 | ivshmem_has_feature(s, IVSHMEM_MSI); | |
465 | PCIDevice *pdev = PCI_DEVICE(s); | |
1309cf44 | 466 | Error *err = NULL; |
660c97ee MAL |
467 | |
468 | IVSHMEM_DPRINTF("setting up interrupt for vector: %d\n", vector); | |
469 | ||
470 | if (!with_irqfd) { | |
97553976 | 471 | IVSHMEM_DPRINTF("with eventfd\n"); |
9940c323 | 472 | watch_vector_notifier(s, n, vector); |
660c97ee | 473 | } else if (msix_enabled(pdev)) { |
97553976 | 474 | IVSHMEM_DPRINTF("with irqfd\n"); |
1309cf44 MA |
475 | ivshmem_add_kvm_msi_virq(s, vector, &err); |
476 | if (err) { | |
477 | error_propagate(errp, err); | |
660c97ee MAL |
478 | return; |
479 | } | |
480 | ||
481 | if (!msix_is_masked(pdev, vector)) { | |
482 | kvm_irqchip_add_irqfd_notifier_gsi(kvm_state, n, NULL, | |
483 | s->msi_vectors[vector].virq); | |
1309cf44 | 484 | /* TODO handle error */ |
660c97ee MAL |
485 | } |
486 | } else { | |
487 | /* it will be delayed until msix is enabled, in write_config */ | |
97553976 | 488 | IVSHMEM_DPRINTF("with irqfd, delayed until msix enabled\n"); |
660c97ee MAL |
489 | } |
490 | } | |
491 | ||
1309cf44 | 492 | static void process_msg_shmem(IVShmemState *s, int fd, Error **errp) |
6cbf4c8c | 493 | { |
8baeb22b | 494 | struct stat buf; |
5400c02b | 495 | size_t size; |
ca0b7566 | 496 | void *ptr; |
6cbf4c8c | 497 | |
c2d8019c | 498 | if (s->ivshmem_bar2) { |
1309cf44 | 499 | error_setg(errp, "server sent unexpected shared memory message"); |
ca0b7566 | 500 | close(fd); |
0f14fd71 | 501 | return; |
a2e9011b SH |
502 | } |
503 | ||
8baeb22b MA |
504 | if (fstat(fd, &buf) < 0) { |
505 | error_setg_errno(errp, errno, | |
506 | "can't determine size of shared memory sent by server"); | |
507 | close(fd); | |
508 | return; | |
509 | } | |
510 | ||
5400c02b MA |
511 | size = buf.st_size; |
512 | ||
513 | /* Legacy cruft */ | |
514 | if (s->legacy_size != SIZE_MAX) { | |
515 | if (size < s->legacy_size) { | |
516 | error_setg(errp, "server sent only %zd bytes of shared memory", | |
517 | (size_t)buf.st_size); | |
518 | close(fd); | |
519 | return; | |
520 | } | |
521 | size = s->legacy_size; | |
cd9953f7 MA |
522 | } |
523 | ||
ca0b7566 | 524 | /* mmap the region and map into the BAR2 */ |
5400c02b | 525 | ptr = mmap(0, size, PROT_READ | PROT_WRITE, MAP_SHARED, fd, 0); |
ca0b7566 | 526 | if (ptr == MAP_FAILED) { |
1309cf44 | 527 | error_setg_errno(errp, errno, "Failed to mmap shared memory"); |
ca0b7566 MA |
528 | close(fd); |
529 | return; | |
6cbf4c8c | 530 | } |
c2d8019c | 531 | memory_region_init_ram_ptr(&s->server_bar2, OBJECT(s), |
5400c02b | 532 | "ivshmem.bar2", size, ptr); |
4ff87573 | 533 | memory_region_set_fd(&s->server_bar2, fd); |
c2d8019c | 534 | s->ivshmem_bar2 = &s->server_bar2; |
ca0b7566 MA |
535 | } |
536 | ||
1309cf44 MA |
537 | static void process_msg_disconnect(IVShmemState *s, uint16_t posn, |
538 | Error **errp) | |
ca0b7566 MA |
539 | { |
540 | IVSHMEM_DPRINTF("posn %d has gone away\n", posn); | |
9db51b4d | 541 | if (posn >= s->nb_peers || posn == s->vm_id) { |
1309cf44 | 542 | error_setg(errp, "invalid peer %d", posn); |
9db51b4d MA |
543 | return; |
544 | } | |
ca0b7566 MA |
545 | close_peer_eventfds(s, posn); |
546 | } | |
6cbf4c8c | 547 | |
1309cf44 MA |
548 | static void process_msg_connect(IVShmemState *s, uint16_t posn, int fd, |
549 | Error **errp) | |
ca0b7566 MA |
550 | { |
551 | Peer *peer = &s->peers[posn]; | |
552 | int vector; | |
9a2f0e64 | 553 | |
ca0b7566 MA |
554 | /* |
555 | * The N-th connect message for this peer comes with the file | |
556 | * descriptor for vector N-1. Count messages to find the vector. | |
557 | */ | |
558 | if (peer->nb_eventfds >= s->vectors) { | |
1309cf44 MA |
559 | error_setg(errp, "Too many eventfd received, device has %d vectors", |
560 | s->vectors); | |
ca0b7566 | 561 | close(fd); |
6f8a16d5 | 562 | return; |
6cbf4c8c | 563 | } |
ca0b7566 | 564 | vector = peer->nb_eventfds++; |
6cbf4c8c | 565 | |
ca0b7566 MA |
566 | IVSHMEM_DPRINTF("eventfds[%d][%d] = %d\n", posn, vector, fd); |
567 | event_notifier_init_fd(&peer->eventfds[vector], fd); | |
568 | fcntl_setfl(fd, O_NONBLOCK); /* msix/irqfd poll non block */ | |
945001a1 | 569 | |
ca0b7566 | 570 | if (posn == s->vm_id) { |
1309cf44 MA |
571 | setup_interrupt(s, vector, errp); |
572 | /* TODO do we need to handle the error? */ | |
ca0b7566 | 573 | } |
6cbf4c8c | 574 | |
ca0b7566 MA |
575 | if (ivshmem_has_feature(s, IVSHMEM_IOEVENTFD)) { |
576 | ivshmem_add_eventfd(s, posn, vector); | |
577 | } | |
578 | } | |
6cbf4c8c | 579 | |
1309cf44 | 580 | static void process_msg(IVShmemState *s, int64_t msg, int fd, Error **errp) |
ca0b7566 MA |
581 | { |
582 | IVSHMEM_DPRINTF("posn is %" PRId64 ", fd is %d\n", msg, fd); | |
6cbf4c8c | 583 | |
ca0b7566 | 584 | if (msg < -1 || msg > IVSHMEM_MAX_PEERS) { |
1309cf44 | 585 | error_setg(errp, "server sent invalid message %" PRId64, msg); |
ca0b7566 | 586 | close(fd); |
6cbf4c8c CM |
587 | return; |
588 | } | |
589 | ||
ca0b7566 | 590 | if (msg == -1) { |
1309cf44 | 591 | process_msg_shmem(s, fd, errp); |
1ee57de4 MAL |
592 | return; |
593 | } | |
594 | ||
ca0b7566 MA |
595 | if (msg >= s->nb_peers) { |
596 | resize_peers(s, msg + 1); | |
597 | } | |
6cbf4c8c | 598 | |
ca0b7566 | 599 | if (fd >= 0) { |
1309cf44 | 600 | process_msg_connect(s, msg, fd, errp); |
ca0b7566 | 601 | } else { |
1309cf44 | 602 | process_msg_disconnect(s, msg, errp); |
6cbf4c8c | 603 | } |
ca0b7566 | 604 | } |
6cbf4c8c | 605 | |
ee276391 MA |
606 | static int ivshmem_can_receive(void *opaque) |
607 | { | |
608 | IVShmemState *s = opaque; | |
609 | ||
610 | assert(s->msg_buffered_bytes < sizeof(s->msg_buf)); | |
611 | return sizeof(s->msg_buf) - s->msg_buffered_bytes; | |
612 | } | |
613 | ||
ca0b7566 MA |
614 | static void ivshmem_read(void *opaque, const uint8_t *buf, int size) |
615 | { | |
616 | IVShmemState *s = opaque; | |
1309cf44 | 617 | Error *err = NULL; |
ca0b7566 MA |
618 | int fd; |
619 | int64_t msg; | |
620 | ||
ee276391 MA |
621 | assert(size >= 0 && s->msg_buffered_bytes + size <= sizeof(s->msg_buf)); |
622 | memcpy((unsigned char *)&s->msg_buf + s->msg_buffered_bytes, buf, size); | |
623 | s->msg_buffered_bytes += size; | |
624 | if (s->msg_buffered_bytes < sizeof(s->msg_buf)) { | |
ca0b7566 | 625 | return; |
6cbf4c8c | 626 | } |
ee276391 MA |
627 | msg = le64_to_cpu(s->msg_buf); |
628 | s->msg_buffered_bytes = 0; | |
ca0b7566 | 629 | |
becdfa00 | 630 | fd = qemu_chr_fe_get_msgfd(s->server_chr.chr); |
ca0b7566 | 631 | |
1309cf44 MA |
632 | process_msg(s, msg, fd, &err); |
633 | if (err) { | |
634 | error_report_err(err); | |
635 | } | |
6cbf4c8c CM |
636 | } |
637 | ||
1309cf44 | 638 | static int64_t ivshmem_recv_msg(IVShmemState *s, int *pfd, Error **errp) |
5105b1d8 | 639 | { |
3a55fc0f MA |
640 | int64_t msg; |
641 | int n, ret; | |
642 | ||
643 | n = 0; | |
644 | do { | |
becdfa00 | 645 | ret = qemu_chr_fe_read_all(s->server_chr.chr, (uint8_t *)&msg + n, |
3a55fc0f MA |
646 | sizeof(msg) - n); |
647 | if (ret < 0 && ret != -EINTR) { | |
1309cf44 | 648 | error_setg_errno(errp, -ret, "read from server failed"); |
3a55fc0f MA |
649 | return INT64_MIN; |
650 | } | |
651 | n += ret; | |
652 | } while (n < sizeof(msg)); | |
5105b1d8 | 653 | |
becdfa00 | 654 | *pfd = qemu_chr_fe_get_msgfd(s->server_chr.chr); |
3a55fc0f MA |
655 | return msg; |
656 | } | |
5105b1d8 | 657 | |
1309cf44 | 658 | static void ivshmem_recv_setup(IVShmemState *s, Error **errp) |
3a55fc0f | 659 | { |
1309cf44 | 660 | Error *err = NULL; |
3a55fc0f MA |
661 | int64_t msg; |
662 | int fd; | |
663 | ||
1309cf44 MA |
664 | msg = ivshmem_recv_msg(s, &fd, &err); |
665 | if (err) { | |
666 | error_propagate(errp, err); | |
667 | return; | |
668 | } | |
669 | if (msg != IVSHMEM_PROTOCOL_VERSION) { | |
670 | error_setg(errp, "server sent version %" PRId64 ", expecting %d", | |
671 | msg, IVSHMEM_PROTOCOL_VERSION); | |
672 | return; | |
673 | } | |
674 | if (fd != -1) { | |
675 | error_setg(errp, "server sent invalid version message"); | |
5105b1d8 DM |
676 | return; |
677 | } | |
678 | ||
a3feb086 MA |
679 | /* |
680 | * ivshmem-server sends the remaining initial messages in a fixed | |
681 | * order, but the device has always accepted them in any order. | |
682 | * Stay as compatible as practical, just in case people use | |
683 | * servers that behave differently. | |
684 | */ | |
685 | ||
686 | /* | |
687 | * ivshmem_device_spec.txt has always required the ID message | |
688 | * right here, and ivshmem-server has always complied. However, | |
689 | * older versions of the device accepted it out of order, but | |
690 | * broke when an interrupt setup message arrived before it. | |
691 | */ | |
692 | msg = ivshmem_recv_msg(s, &fd, &err); | |
693 | if (err) { | |
694 | error_propagate(errp, err); | |
695 | return; | |
696 | } | |
697 | if (fd != -1 || msg < 0 || msg > IVSHMEM_MAX_PEERS) { | |
698 | error_setg(errp, "server sent invalid ID message"); | |
699 | return; | |
700 | } | |
701 | s->vm_id = msg; | |
702 | ||
3a55fc0f MA |
703 | /* |
704 | * Receive more messages until we got shared memory. | |
705 | */ | |
706 | do { | |
1309cf44 MA |
707 | msg = ivshmem_recv_msg(s, &fd, &err); |
708 | if (err) { | |
709 | error_propagate(errp, err); | |
710 | return; | |
711 | } | |
712 | process_msg(s, msg, fd, &err); | |
713 | if (err) { | |
714 | error_propagate(errp, err); | |
715 | return; | |
716 | } | |
3a55fc0f | 717 | } while (msg != -1); |
1309cf44 MA |
718 | |
719 | /* | |
720 | * This function must either map the shared memory or fail. The | |
721 | * loop above ensures that: it terminates normally only after it | |
722 | * successfully processed the server's shared memory message. | |
723 | * Assert that actually mapped the shared memory: | |
724 | */ | |
c2d8019c | 725 | assert(s->ivshmem_bar2); |
5105b1d8 DM |
726 | } |
727 | ||
4490c711 MT |
728 | /* Select the MSI-X vectors used by device. |
729 | * ivshmem maps events to vectors statically, so | |
730 | * we just enable all vectors on init and after reset. */ | |
082751e8 | 731 | static void ivshmem_msix_vector_use(IVShmemState *s) |
4490c711 | 732 | { |
b7578eaa | 733 | PCIDevice *d = PCI_DEVICE(s); |
4490c711 MT |
734 | int i; |
735 | ||
4490c711 | 736 | for (i = 0; i < s->vectors; i++) { |
b7578eaa | 737 | msix_vector_use(d, i); |
4490c711 MT |
738 | } |
739 | } | |
740 | ||
6cbf4c8c CM |
741 | static void ivshmem_reset(DeviceState *d) |
742 | { | |
5400c02b | 743 | IVShmemState *s = IVSHMEM_COMMON(d); |
6cbf4c8c CM |
744 | |
745 | s->intrstatus = 0; | |
972ad215 | 746 | s->intrmask = 0; |
082751e8 MA |
747 | if (ivshmem_has_feature(s, IVSHMEM_MSI)) { |
748 | ivshmem_msix_vector_use(s); | |
749 | } | |
6cbf4c8c CM |
750 | } |
751 | ||
fd47bfe5 | 752 | static int ivshmem_setup_interrupts(IVShmemState *s) |
4490c711 | 753 | { |
fd47bfe5 MAL |
754 | /* allocate QEMU callback data for receiving interrupts */ |
755 | s->msi_vectors = g_malloc0(s->vectors * sizeof(MSIVector)); | |
6cbf4c8c | 756 | |
fd47bfe5 MAL |
757 | if (ivshmem_has_feature(s, IVSHMEM_MSI)) { |
758 | if (msix_init_exclusive_bar(PCI_DEVICE(s), s->vectors, 1)) { | |
759 | return -1; | |
760 | } | |
1116b539 | 761 | |
fd47bfe5 | 762 | IVSHMEM_DPRINTF("msix initialized (%d vectors)\n", s->vectors); |
082751e8 | 763 | ivshmem_msix_vector_use(s); |
fd47bfe5 | 764 | } |
4490c711 | 765 | |
d58d7e84 | 766 | return 0; |
6cbf4c8c CM |
767 | } |
768 | ||
660c97ee MAL |
769 | static void ivshmem_enable_irqfd(IVShmemState *s) |
770 | { | |
771 | PCIDevice *pdev = PCI_DEVICE(s); | |
772 | int i; | |
773 | ||
774 | for (i = 0; i < s->peers[s->vm_id].nb_eventfds; i++) { | |
1309cf44 MA |
775 | Error *err = NULL; |
776 | ||
777 | ivshmem_add_kvm_msi_virq(s, i, &err); | |
778 | if (err) { | |
779 | error_report_err(err); | |
780 | /* TODO do we need to handle the error? */ | |
781 | } | |
660c97ee MAL |
782 | } |
783 | ||
784 | if (msix_set_vector_notifiers(pdev, | |
785 | ivshmem_vector_unmask, | |
786 | ivshmem_vector_mask, | |
787 | ivshmem_vector_poll)) { | |
788 | error_report("ivshmem: msix_set_vector_notifiers failed"); | |
789 | } | |
790 | } | |
791 | ||
792 | static void ivshmem_remove_kvm_msi_virq(IVShmemState *s, int vector) | |
793 | { | |
794 | IVSHMEM_DPRINTF("ivshmem_remove_kvm_msi_virq vector:%d\n", vector); | |
795 | ||
796 | if (s->msi_vectors[vector].pdev == NULL) { | |
797 | return; | |
798 | } | |
799 | ||
800 | /* it was cleaned when masked in the frontend. */ | |
801 | kvm_irqchip_release_virq(kvm_state, s->msi_vectors[vector].virq); | |
802 | ||
803 | s->msi_vectors[vector].pdev = NULL; | |
804 | } | |
805 | ||
806 | static void ivshmem_disable_irqfd(IVShmemState *s) | |
807 | { | |
808 | PCIDevice *pdev = PCI_DEVICE(s); | |
809 | int i; | |
810 | ||
811 | for (i = 0; i < s->peers[s->vm_id].nb_eventfds; i++) { | |
812 | ivshmem_remove_kvm_msi_virq(s, i); | |
813 | } | |
814 | ||
815 | msix_unset_vector_notifiers(pdev); | |
816 | } | |
817 | ||
818 | static void ivshmem_write_config(PCIDevice *pdev, uint32_t address, | |
d58d7e84 | 819 | uint32_t val, int len) |
4490c711 | 820 | { |
5400c02b | 821 | IVShmemState *s = IVSHMEM_COMMON(pdev); |
660c97ee MAL |
822 | int is_enabled, was_enabled = msix_enabled(pdev); |
823 | ||
824 | pci_default_write_config(pdev, address, val, len); | |
825 | is_enabled = msix_enabled(pdev); | |
826 | ||
1309cf44 | 827 | if (kvm_msi_via_irqfd_enabled()) { |
660c97ee MAL |
828 | if (!was_enabled && is_enabled) { |
829 | ivshmem_enable_irqfd(s); | |
830 | } else if (was_enabled && !is_enabled) { | |
831 | ivshmem_disable_irqfd(s); | |
832 | } | |
833 | } | |
4490c711 MT |
834 | } |
835 | ||
5400c02b | 836 | static void ivshmem_common_realize(PCIDevice *dev, Error **errp) |
6cbf4c8c | 837 | { |
5400c02b | 838 | IVShmemState *s = IVSHMEM_COMMON(dev); |
d855e275 | 839 | Error *err = NULL; |
6cbf4c8c | 840 | uint8_t *pci_conf; |
9113e3f3 MAL |
841 | uint8_t attr = PCI_BASE_ADDRESS_SPACE_MEMORY | |
842 | PCI_BASE_ADDRESS_MEM_PREFETCH; | |
6cbf4c8c | 843 | |
6cbf4c8c CM |
844 | /* IRQFD requires MSI */ |
845 | if (ivshmem_has_feature(s, IVSHMEM_IOEVENTFD) && | |
846 | !ivshmem_has_feature(s, IVSHMEM_MSI)) { | |
d58d7e84 MAL |
847 | error_setg(errp, "ioeventfd/irqfd requires MSI"); |
848 | return; | |
6cbf4c8c CM |
849 | } |
850 | ||
b7578eaa | 851 | pci_conf = dev->config; |
6cbf4c8c | 852 | pci_conf[PCI_COMMAND] = PCI_COMMAND_IO | PCI_COMMAND_MEMORY; |
6cbf4c8c | 853 | |
3c161542 | 854 | memory_region_init_io(&s->ivshmem_mmio, OBJECT(s), &ivshmem_mmio_ops, s, |
cb06608e AK |
855 | "ivshmem-mmio", IVSHMEM_REG_BAR_SIZE); |
856 | ||
6cbf4c8c | 857 | /* region for registers*/ |
b7578eaa | 858 | pci_register_bar(dev, 0, PCI_BASE_ADDRESS_SPACE_MEMORY, |
e824b2cc | 859 | &s->ivshmem_mmio); |
cb06608e | 860 | |
5400c02b | 861 | if (!s->not_legacy_32bit) { |
9113e3f3 | 862 | attr |= PCI_BASE_ADDRESS_MEM_TYPE_64; |
c08ba66f | 863 | } |
6cbf4c8c | 864 | |
d9453c93 | 865 | if (s->hostmem != NULL) { |
d9453c93 MAL |
866 | IVSHMEM_DPRINTF("using hostmem\n"); |
867 | ||
c2d8019c MA |
868 | s->ivshmem_bar2 = host_memory_backend_get_memory(s->hostmem, |
869 | &error_abort); | |
5503e285 | 870 | } else { |
becdfa00 | 871 | assert(s->server_chr.chr); |
6dc64780 | 872 | |
6cbf4c8c | 873 | IVSHMEM_DPRINTF("using shared memory server (socket = %s)\n", |
becdfa00 | 874 | s->server_chr.chr->filename); |
6cbf4c8c | 875 | |
f456179f | 876 | /* we allocate enough space for 16 peers and grow as needed */ |
1300b273 | 877 | resize_peers(s, 16); |
6cbf4c8c | 878 | |
3a55fc0f MA |
879 | /* |
880 | * Receive setup messages from server synchronously. | |
881 | * Older versions did it asynchronously, but that creates a | |
882 | * number of entertaining race conditions. | |
3a55fc0f | 883 | */ |
1309cf44 MA |
884 | ivshmem_recv_setup(s, &err); |
885 | if (err) { | |
886 | error_propagate(errp, err); | |
887 | return; | |
3a55fc0f MA |
888 | } |
889 | ||
62a830b6 MA |
890 | if (s->master == ON_OFF_AUTO_ON && s->vm_id != 0) { |
891 | error_setg(errp, | |
892 | "master must connect to the server before any peers"); | |
893 | return; | |
894 | } | |
895 | ||
becdfa00 | 896 | qemu_chr_add_handlers(s->server_chr.chr, ivshmem_can_receive, |
1309cf44 MA |
897 | ivshmem_read, NULL, s); |
898 | ||
3a55fc0f MA |
899 | if (ivshmem_setup_interrupts(s) < 0) { |
900 | error_setg(errp, "failed to initialize interrupts"); | |
901 | return; | |
902 | } | |
d855e275 MA |
903 | } |
904 | ||
c2d8019c MA |
905 | vmstate_register_ram(s->ivshmem_bar2, DEVICE(s)); |
906 | pci_register_bar(PCI_DEVICE(s), 2, attr, s->ivshmem_bar2); | |
907 | ||
2a845da7 MA |
908 | if (s->master == ON_OFF_AUTO_AUTO) { |
909 | s->master = s->vm_id == 0 ? ON_OFF_AUTO_ON : ON_OFF_AUTO_OFF; | |
910 | } | |
911 | ||
912 | if (!ivshmem_is_master(s)) { | |
d855e275 MA |
913 | error_setg(&s->migration_blocker, |
914 | "Migration is disabled when using feature 'peer mode' in device 'ivshmem'"); | |
915 | migrate_add_blocker(s->migration_blocker); | |
6cbf4c8c | 916 | } |
6cbf4c8c CM |
917 | } |
918 | ||
5400c02b MA |
919 | static void ivshmem_exit(PCIDevice *dev) |
920 | { | |
921 | IVShmemState *s = IVSHMEM_COMMON(dev); | |
f64a078d MAL |
922 | int i; |
923 | ||
38e0735e AL |
924 | if (s->migration_blocker) { |
925 | migrate_del_blocker(s->migration_blocker); | |
926 | error_free(s->migration_blocker); | |
927 | } | |
928 | ||
c2d8019c | 929 | if (memory_region_is_mapped(s->ivshmem_bar2)) { |
d9453c93 | 930 | if (!s->hostmem) { |
c2d8019c | 931 | void *addr = memory_region_get_ram_ptr(s->ivshmem_bar2); |
56a571d9 | 932 | int fd; |
d9453c93 | 933 | |
5400c02b | 934 | if (munmap(addr, memory_region_size(s->ivshmem_bar2) == -1)) { |
d9453c93 MAL |
935 | error_report("Failed to munmap shared memory %s", |
936 | strerror(errno)); | |
937 | } | |
56a571d9 | 938 | |
4ff87573 | 939 | fd = memory_region_get_fd(s->ivshmem_bar2); |
c2d8019c | 940 | close(fd); |
d9453c93 | 941 | } |
f64a078d | 942 | |
c2d8019c | 943 | vmstate_unregister_ram(s->ivshmem_bar2, DEVICE(dev)); |
f64a078d MAL |
944 | } |
945 | ||
f64a078d MAL |
946 | if (s->peers) { |
947 | for (i = 0; i < s->nb_peers; i++) { | |
f456179f | 948 | close_peer_eventfds(s, i); |
f64a078d MAL |
949 | } |
950 | g_free(s->peers); | |
951 | } | |
952 | ||
953 | if (ivshmem_has_feature(s, IVSHMEM_MSI)) { | |
954 | msix_uninit_exclusive_bar(dev); | |
955 | } | |
956 | ||
0f57350e | 957 | g_free(s->msi_vectors); |
6cbf4c8c CM |
958 | } |
959 | ||
1f8552df MAL |
960 | static int ivshmem_pre_load(void *opaque) |
961 | { | |
962 | IVShmemState *s = opaque; | |
963 | ||
2a845da7 | 964 | if (!ivshmem_is_master(s)) { |
1f8552df MAL |
965 | error_report("'peer' devices are not migratable"); |
966 | return -EINVAL; | |
967 | } | |
968 | ||
969 | return 0; | |
970 | } | |
971 | ||
972 | static int ivshmem_post_load(void *opaque, int version_id) | |
973 | { | |
974 | IVShmemState *s = opaque; | |
975 | ||
976 | if (ivshmem_has_feature(s, IVSHMEM_MSI)) { | |
082751e8 | 977 | ivshmem_msix_vector_use(s); |
1f8552df | 978 | } |
1f8552df MAL |
979 | return 0; |
980 | } | |
981 | ||
5400c02b | 982 | static void ivshmem_common_class_init(ObjectClass *klass, void *data) |
40021f08 | 983 | { |
39bffca2 | 984 | DeviceClass *dc = DEVICE_CLASS(klass); |
40021f08 AL |
985 | PCIDeviceClass *k = PCI_DEVICE_CLASS(klass); |
986 | ||
5400c02b MA |
987 | k->realize = ivshmem_common_realize; |
988 | k->exit = ivshmem_exit; | |
d58d7e84 | 989 | k->config_write = ivshmem_write_config; |
b8ef62a9 PB |
990 | k->vendor_id = PCI_VENDOR_ID_IVSHMEM; |
991 | k->device_id = PCI_DEVICE_ID_IVSHMEM; | |
40021f08 | 992 | k->class_id = PCI_CLASS_MEMORY_RAM; |
5400c02b | 993 | k->revision = 1; |
39bffca2 | 994 | dc->reset = ivshmem_reset; |
125ee0ed | 995 | set_bit(DEVICE_CATEGORY_MISC, dc->categories); |
d383537d | 996 | dc->desc = "Inter-VM shared memory"; |
40021f08 AL |
997 | } |
998 | ||
ddc85284 MA |
999 | static const TypeInfo ivshmem_common_info = { |
1000 | .name = TYPE_IVSHMEM_COMMON, | |
1001 | .parent = TYPE_PCI_DEVICE, | |
1002 | .instance_size = sizeof(IVShmemState), | |
1003 | .abstract = true, | |
1004 | .class_init = ivshmem_common_class_init, | |
1005 | }; | |
5400c02b | 1006 | |
d9453c93 MAL |
1007 | static void ivshmem_check_memdev_is_busy(Object *obj, const char *name, |
1008 | Object *val, Error **errp) | |
1009 | { | |
2aece63c | 1010 | if (host_memory_backend_is_mapped(MEMORY_BACKEND(val))) { |
d9453c93 MAL |
1011 | char *path = object_get_canonical_path_component(val); |
1012 | error_setg(errp, "can't use already busy memdev: %s", path); | |
1013 | g_free(path); | |
1014 | } else { | |
1015 | qdev_prop_allow_set_link_before_realize(obj, name, val, errp); | |
1016 | } | |
1017 | } | |
1018 | ||
5400c02b MA |
1019 | static const VMStateDescription ivshmem_plain_vmsd = { |
1020 | .name = TYPE_IVSHMEM_PLAIN, | |
1021 | .version_id = 0, | |
1022 | .minimum_version_id = 0, | |
1023 | .pre_load = ivshmem_pre_load, | |
1024 | .post_load = ivshmem_post_load, | |
1025 | .fields = (VMStateField[]) { | |
1026 | VMSTATE_PCI_DEVICE(parent_obj, IVShmemState), | |
1027 | VMSTATE_UINT32(intrstatus, IVShmemState), | |
1028 | VMSTATE_UINT32(intrmask, IVShmemState), | |
1029 | VMSTATE_END_OF_LIST() | |
1030 | }, | |
1031 | }; | |
1032 | ||
1033 | static Property ivshmem_plain_properties[] = { | |
1034 | DEFINE_PROP_ON_OFF_AUTO("master", IVShmemState, master, ON_OFF_AUTO_OFF), | |
1035 | DEFINE_PROP_END_OF_LIST(), | |
1036 | }; | |
1037 | ||
1038 | static void ivshmem_plain_init(Object *obj) | |
1039 | { | |
1040 | IVShmemState *s = IVSHMEM_PLAIN(obj); | |
1041 | ||
1042 | object_property_add_link(obj, "memdev", TYPE_MEMORY_BACKEND, | |
1043 | (Object **)&s->hostmem, | |
1044 | ivshmem_check_memdev_is_busy, | |
1045 | OBJ_PROP_LINK_UNREF_ON_RELEASE, | |
1046 | &error_abort); | |
1047 | } | |
1048 | ||
6dc64780 MAL |
1049 | static void ivshmem_plain_realize(PCIDevice *dev, Error **errp) |
1050 | { | |
1051 | IVShmemState *s = IVSHMEM_COMMON(dev); | |
1052 | ||
1053 | if (!s->hostmem) { | |
1054 | error_setg(errp, "You must specify a 'memdev'"); | |
1055 | return; | |
1056 | } | |
1057 | ||
1058 | ivshmem_common_realize(dev, errp); | |
2aece63c XG |
1059 | host_memory_backend_set_mapped(s->hostmem, true); |
1060 | } | |
1061 | ||
1062 | static void ivshmem_plain_exit(PCIDevice *pci_dev) | |
1063 | { | |
1064 | IVShmemState *s = IVSHMEM_COMMON(pci_dev); | |
1065 | ||
1066 | host_memory_backend_set_mapped(s->hostmem, false); | |
6dc64780 MAL |
1067 | } |
1068 | ||
5400c02b MA |
1069 | static void ivshmem_plain_class_init(ObjectClass *klass, void *data) |
1070 | { | |
1071 | DeviceClass *dc = DEVICE_CLASS(klass); | |
6dc64780 | 1072 | PCIDeviceClass *k = PCI_DEVICE_CLASS(klass); |
5400c02b | 1073 | |
6dc64780 | 1074 | k->realize = ivshmem_plain_realize; |
2aece63c | 1075 | k->exit = ivshmem_plain_exit; |
5400c02b MA |
1076 | dc->props = ivshmem_plain_properties; |
1077 | dc->vmsd = &ivshmem_plain_vmsd; | |
1078 | } | |
1079 | ||
1080 | static const TypeInfo ivshmem_plain_info = { | |
1081 | .name = TYPE_IVSHMEM_PLAIN, | |
1082 | .parent = TYPE_IVSHMEM_COMMON, | |
1083 | .instance_size = sizeof(IVShmemState), | |
1084 | .instance_init = ivshmem_plain_init, | |
1085 | .class_init = ivshmem_plain_class_init, | |
1086 | }; | |
1087 | ||
1088 | static const VMStateDescription ivshmem_doorbell_vmsd = { | |
1089 | .name = TYPE_IVSHMEM_DOORBELL, | |
1090 | .version_id = 0, | |
1091 | .minimum_version_id = 0, | |
1092 | .pre_load = ivshmem_pre_load, | |
1093 | .post_load = ivshmem_post_load, | |
1094 | .fields = (VMStateField[]) { | |
1095 | VMSTATE_PCI_DEVICE(parent_obj, IVShmemState), | |
1096 | VMSTATE_MSIX(parent_obj, IVShmemState), | |
1097 | VMSTATE_UINT32(intrstatus, IVShmemState), | |
1098 | VMSTATE_UINT32(intrmask, IVShmemState), | |
1099 | VMSTATE_END_OF_LIST() | |
1100 | }, | |
1101 | }; | |
1102 | ||
1103 | static Property ivshmem_doorbell_properties[] = { | |
1104 | DEFINE_PROP_CHR("chardev", IVShmemState, server_chr), | |
1105 | DEFINE_PROP_UINT32("vectors", IVShmemState, vectors, 1), | |
1106 | DEFINE_PROP_BIT("ioeventfd", IVShmemState, features, IVSHMEM_IOEVENTFD, | |
1107 | true), | |
1108 | DEFINE_PROP_ON_OFF_AUTO("master", IVShmemState, master, ON_OFF_AUTO_OFF), | |
1109 | DEFINE_PROP_END_OF_LIST(), | |
1110 | }; | |
1111 | ||
1112 | static void ivshmem_doorbell_init(Object *obj) | |
1113 | { | |
1114 | IVShmemState *s = IVSHMEM_DOORBELL(obj); | |
1115 | ||
1116 | s->features |= (1 << IVSHMEM_MSI); | |
1117 | s->legacy_size = SIZE_MAX; /* whatever the server sends */ | |
1118 | } | |
1119 | ||
6dc64780 MAL |
1120 | static void ivshmem_doorbell_realize(PCIDevice *dev, Error **errp) |
1121 | { | |
1122 | IVShmemState *s = IVSHMEM_COMMON(dev); | |
1123 | ||
becdfa00 | 1124 | if (!s->server_chr.chr) { |
6dc64780 MAL |
1125 | error_setg(errp, "You must specify a 'chardev'"); |
1126 | return; | |
1127 | } | |
1128 | ||
1129 | ivshmem_common_realize(dev, errp); | |
1130 | } | |
1131 | ||
5400c02b MA |
1132 | static void ivshmem_doorbell_class_init(ObjectClass *klass, void *data) |
1133 | { | |
1134 | DeviceClass *dc = DEVICE_CLASS(klass); | |
6dc64780 | 1135 | PCIDeviceClass *k = PCI_DEVICE_CLASS(klass); |
5400c02b | 1136 | |
6dc64780 | 1137 | k->realize = ivshmem_doorbell_realize; |
5400c02b MA |
1138 | dc->props = ivshmem_doorbell_properties; |
1139 | dc->vmsd = &ivshmem_doorbell_vmsd; | |
1140 | } | |
1141 | ||
1142 | static const TypeInfo ivshmem_doorbell_info = { | |
1143 | .name = TYPE_IVSHMEM_DOORBELL, | |
1144 | .parent = TYPE_IVSHMEM_COMMON, | |
1145 | .instance_size = sizeof(IVShmemState), | |
1146 | .instance_init = ivshmem_doorbell_init, | |
1147 | .class_init = ivshmem_doorbell_class_init, | |
1148 | }; | |
1149 | ||
ddc85284 MA |
1150 | static int ivshmem_load_old(QEMUFile *f, void *opaque, int version_id) |
1151 | { | |
1152 | IVShmemState *s = opaque; | |
1153 | PCIDevice *pdev = PCI_DEVICE(s); | |
1154 | int ret; | |
1155 | ||
1156 | IVSHMEM_DPRINTF("ivshmem_load_old\n"); | |
1157 | ||
1158 | if (version_id != 0) { | |
1159 | return -EINVAL; | |
1160 | } | |
1161 | ||
1162 | ret = ivshmem_pre_load(s); | |
1163 | if (ret) { | |
1164 | return ret; | |
1165 | } | |
1166 | ||
1167 | ret = pci_device_load(pdev, f); | |
1168 | if (ret) { | |
1169 | return ret; | |
1170 | } | |
1171 | ||
1172 | if (ivshmem_has_feature(s, IVSHMEM_MSI)) { | |
1173 | msix_load(pdev, f); | |
1174 | ivshmem_msix_vector_use(s); | |
1175 | } else { | |
1176 | s->intrstatus = qemu_get_be32(f); | |
1177 | s->intrmask = qemu_get_be32(f); | |
1178 | } | |
1179 | ||
1180 | return 0; | |
1181 | } | |
1182 | ||
1183 | static bool test_msix(void *opaque, int version_id) | |
1184 | { | |
1185 | IVShmemState *s = opaque; | |
1186 | ||
1187 | return ivshmem_has_feature(s, IVSHMEM_MSI); | |
1188 | } | |
1189 | ||
1190 | static bool test_no_msix(void *opaque, int version_id) | |
1191 | { | |
1192 | return !test_msix(opaque, version_id); | |
1193 | } | |
1194 | ||
1195 | static const VMStateDescription ivshmem_vmsd = { | |
1196 | .name = "ivshmem", | |
1197 | .version_id = 1, | |
1198 | .minimum_version_id = 1, | |
1199 | .pre_load = ivshmem_pre_load, | |
1200 | .post_load = ivshmem_post_load, | |
1201 | .fields = (VMStateField[]) { | |
1202 | VMSTATE_PCI_DEVICE(parent_obj, IVShmemState), | |
1203 | ||
1204 | VMSTATE_MSIX_TEST(parent_obj, IVShmemState, test_msix), | |
1205 | VMSTATE_UINT32_TEST(intrstatus, IVShmemState, test_no_msix), | |
1206 | VMSTATE_UINT32_TEST(intrmask, IVShmemState, test_no_msix), | |
1207 | ||
1208 | VMSTATE_END_OF_LIST() | |
1209 | }, | |
1210 | .load_state_old = ivshmem_load_old, | |
1211 | .minimum_version_id_old = 0 | |
1212 | }; | |
1213 | ||
1214 | static Property ivshmem_properties[] = { | |
1215 | DEFINE_PROP_CHR("chardev", IVShmemState, server_chr), | |
1216 | DEFINE_PROP_STRING("size", IVShmemState, sizearg), | |
1217 | DEFINE_PROP_UINT32("vectors", IVShmemState, vectors, 1), | |
1218 | DEFINE_PROP_BIT("ioeventfd", IVShmemState, features, IVSHMEM_IOEVENTFD, | |
1219 | false), | |
1220 | DEFINE_PROP_BIT("msi", IVShmemState, features, IVSHMEM_MSI, true), | |
1221 | DEFINE_PROP_STRING("shm", IVShmemState, shmobj), | |
1222 | DEFINE_PROP_STRING("role", IVShmemState, role), | |
1223 | DEFINE_PROP_UINT32("use64", IVShmemState, not_legacy_32bit, 1), | |
1224 | DEFINE_PROP_END_OF_LIST(), | |
1225 | }; | |
1226 | ||
1227 | static void desugar_shm(IVShmemState *s) | |
1228 | { | |
1229 | Object *obj; | |
1230 | char *path; | |
1231 | ||
1232 | obj = object_new("memory-backend-file"); | |
1233 | path = g_strdup_printf("/dev/shm/%s", s->shmobj); | |
1234 | object_property_set_str(obj, path, "mem-path", &error_abort); | |
1235 | g_free(path); | |
1236 | object_property_set_int(obj, s->legacy_size, "size", &error_abort); | |
1237 | object_property_set_bool(obj, true, "share", &error_abort); | |
1238 | object_property_add_child(OBJECT(s), "internal-shm-backend", obj, | |
1239 | &error_abort); | |
1240 | user_creatable_complete(obj, &error_abort); | |
1241 | s->hostmem = MEMORY_BACKEND(obj); | |
1242 | } | |
1243 | ||
1244 | static void ivshmem_realize(PCIDevice *dev, Error **errp) | |
1245 | { | |
1246 | IVShmemState *s = IVSHMEM_COMMON(dev); | |
1247 | ||
1248 | if (!qtest_enabled()) { | |
1249 | error_report("ivshmem is deprecated, please use ivshmem-plain" | |
1250 | " or ivshmem-doorbell instead"); | |
1251 | } | |
1252 | ||
becdfa00 | 1253 | if (!!s->server_chr.chr + !!s->shmobj != 1) { |
13fd2cb6 | 1254 | error_setg(errp, "You must specify either 'shm' or 'chardev'"); |
ddc85284 MA |
1255 | return; |
1256 | } | |
1257 | ||
13fd2cb6 | 1258 | if (s->sizearg == NULL) { |
ddc85284 MA |
1259 | s->legacy_size = 4 << 20; /* 4 MB default */ |
1260 | } else { | |
1261 | char *end; | |
1262 | int64_t size = qemu_strtosz(s->sizearg, &end); | |
1263 | if (size < 0 || (size_t)size != size || *end != '\0' | |
1264 | || !is_power_of_2(size)) { | |
1265 | error_setg(errp, "Invalid size %s", s->sizearg); | |
1266 | return; | |
1267 | } | |
1268 | s->legacy_size = size; | |
1269 | } | |
1270 | ||
1271 | /* check that role is reasonable */ | |
1272 | if (s->role) { | |
1273 | if (strncmp(s->role, "peer", 5) == 0) { | |
1274 | s->master = ON_OFF_AUTO_OFF; | |
1275 | } else if (strncmp(s->role, "master", 7) == 0) { | |
1276 | s->master = ON_OFF_AUTO_ON; | |
1277 | } else { | |
1278 | error_setg(errp, "'role' must be 'peer' or 'master'"); | |
1279 | return; | |
1280 | } | |
1281 | } else { | |
1282 | s->master = ON_OFF_AUTO_AUTO; | |
1283 | } | |
1284 | ||
1285 | if (s->shmobj) { | |
1286 | desugar_shm(s); | |
1287 | } | |
1288 | ||
1289 | /* | |
1290 | * Note: we don't use INTx with IVSHMEM_MSI at all, so this is a | |
1291 | * bald-faced lie then. But it's a backwards compatible lie. | |
1292 | */ | |
1293 | pci_config_set_interrupt_pin(dev->config, 1); | |
1294 | ||
1295 | ivshmem_common_realize(dev, errp); | |
1296 | } | |
1297 | ||
ddc85284 MA |
1298 | static void ivshmem_class_init(ObjectClass *klass, void *data) |
1299 | { | |
1300 | DeviceClass *dc = DEVICE_CLASS(klass); | |
1301 | PCIDeviceClass *k = PCI_DEVICE_CLASS(klass); | |
1302 | ||
1303 | k->realize = ivshmem_realize; | |
1304 | k->revision = 0; | |
1305 | dc->desc = "Inter-VM shared memory (legacy)"; | |
1306 | dc->props = ivshmem_properties; | |
1307 | dc->vmsd = &ivshmem_vmsd; | |
1308 | } | |
1309 | ||
1310 | static const TypeInfo ivshmem_info = { | |
1311 | .name = TYPE_IVSHMEM, | |
1312 | .parent = TYPE_IVSHMEM_COMMON, | |
1313 | .instance_size = sizeof(IVShmemState), | |
ddc85284 MA |
1314 | .class_init = ivshmem_class_init, |
1315 | }; | |
1316 | ||
83f7d43a | 1317 | static void ivshmem_register_types(void) |
6cbf4c8c | 1318 | { |
5400c02b MA |
1319 | type_register_static(&ivshmem_common_info); |
1320 | type_register_static(&ivshmem_plain_info); | |
1321 | type_register_static(&ivshmem_doorbell_info); | |
39bffca2 | 1322 | type_register_static(&ivshmem_info); |
6cbf4c8c CM |
1323 | } |
1324 | ||
83f7d43a | 1325 | type_init(ivshmem_register_types) |