]>
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" |
83c9f4ca | 23 | #include "hw/pci/pci.h" |
660c97ee | 24 | #include "hw/pci/msi.h" |
83c9f4ca | 25 | #include "hw/pci/msix.h" |
9c17d615 | 26 | #include "sysemu/kvm.h" |
795c40b8 | 27 | #include "migration/blocker.h" |
d49b6836 | 28 | #include "qemu/error-report.h" |
1de7afc9 | 29 | #include "qemu/event_notifier.h" |
5503e285 | 30 | #include "qom/object_interfaces.h" |
4d43a603 | 31 | #include "chardev/char-fe.h" |
d9453c93 | 32 | #include "sysemu/hostmem.h" |
5400c02b | 33 | #include "sysemu/qtest.h" |
d9453c93 | 34 | #include "qapi/visitor.h" |
6cbf4c8c | 35 | |
5105b1d8 DM |
36 | #include "hw/misc/ivshmem.h" |
37 | ||
b8ef62a9 PB |
38 | #define PCI_VENDOR_ID_IVSHMEM PCI_VENDOR_ID_REDHAT_QUMRANET |
39 | #define PCI_DEVICE_ID_IVSHMEM 0x1110 | |
40 | ||
cd9953f7 | 41 | #define IVSHMEM_MAX_PEERS UINT16_MAX |
6cbf4c8c CM |
42 | #define IVSHMEM_IOEVENTFD 0 |
43 | #define IVSHMEM_MSI 1 | |
44 | ||
6cbf4c8c CM |
45 | #define IVSHMEM_REG_BAR_SIZE 0x100 |
46 | ||
a4fa93bf MA |
47 | #define IVSHMEM_DEBUG 0 |
48 | #define IVSHMEM_DPRINTF(fmt, ...) \ | |
49 | do { \ | |
50 | if (IVSHMEM_DEBUG) { \ | |
51 | printf("IVSHMEM: " fmt, ## __VA_ARGS__); \ | |
52 | } \ | |
53 | } while (0) | |
6cbf4c8c | 54 | |
5400c02b MA |
55 | #define TYPE_IVSHMEM_COMMON "ivshmem-common" |
56 | #define IVSHMEM_COMMON(obj) \ | |
57 | OBJECT_CHECK(IVShmemState, (obj), TYPE_IVSHMEM_COMMON) | |
58 | ||
59 | #define TYPE_IVSHMEM_PLAIN "ivshmem-plain" | |
60 | #define IVSHMEM_PLAIN(obj) \ | |
61 | OBJECT_CHECK(IVShmemState, (obj), TYPE_IVSHMEM_PLAIN) | |
62 | ||
63 | #define TYPE_IVSHMEM_DOORBELL "ivshmem-doorbell" | |
64 | #define IVSHMEM_DOORBELL(obj) \ | |
65 | OBJECT_CHECK(IVShmemState, (obj), TYPE_IVSHMEM_DOORBELL) | |
66 | ||
eb3fedf3 PC |
67 | #define TYPE_IVSHMEM "ivshmem" |
68 | #define IVSHMEM(obj) \ | |
69 | OBJECT_CHECK(IVShmemState, (obj), TYPE_IVSHMEM) | |
70 | ||
6cbf4c8c CM |
71 | typedef struct Peer { |
72 | int nb_eventfds; | |
563027cc | 73 | EventNotifier *eventfds; |
6cbf4c8c CM |
74 | } Peer; |
75 | ||
0f57350e | 76 | typedef struct MSIVector { |
6cbf4c8c | 77 | PCIDevice *pdev; |
660c97ee | 78 | int virq; |
089fd803 | 79 | bool unmasked; |
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); | |
e6a354be LP |
320 | if (!v->pdev) { |
321 | error_report("ivshmem: vector %d route does not exist", vector); | |
322 | return -EINVAL; | |
323 | } | |
089fd803 | 324 | assert(!v->unmasked); |
660c97ee MAL |
325 | |
326 | ret = kvm_irqchip_update_msi_route(kvm_state, v->virq, msg, dev); | |
327 | if (ret < 0) { | |
328 | return ret; | |
329 | } | |
3f1fea0f | 330 | kvm_irqchip_commit_routes(kvm_state); |
660c97ee | 331 | |
089fd803 LP |
332 | ret = kvm_irqchip_add_irqfd_notifier_gsi(kvm_state, n, NULL, v->virq); |
333 | if (ret < 0) { | |
334 | return ret; | |
335 | } | |
336 | v->unmasked = true; | |
337 | ||
338 | return 0; | |
660c97ee MAL |
339 | } |
340 | ||
341 | static void ivshmem_vector_mask(PCIDevice *dev, unsigned vector) | |
342 | { | |
5400c02b | 343 | IVShmemState *s = IVSHMEM_COMMON(dev); |
660c97ee | 344 | EventNotifier *n = &s->peers[s->vm_id].eventfds[vector]; |
e6a354be | 345 | MSIVector *v = &s->msi_vectors[vector]; |
660c97ee MAL |
346 | int ret; |
347 | ||
348 | IVSHMEM_DPRINTF("vector mask %p %d\n", dev, vector); | |
e6a354be LP |
349 | if (!v->pdev) { |
350 | error_report("ivshmem: vector %d route does not exist", vector); | |
351 | return; | |
352 | } | |
089fd803 | 353 | assert(v->unmasked); |
660c97ee | 354 | |
e6a354be | 355 | ret = kvm_irqchip_remove_irqfd_notifier_gsi(kvm_state, n, v->virq); |
089fd803 | 356 | if (ret < 0) { |
660c97ee | 357 | error_report("remove_irqfd_notifier_gsi failed"); |
089fd803 | 358 | return; |
660c97ee | 359 | } |
089fd803 | 360 | v->unmasked = false; |
660c97ee MAL |
361 | } |
362 | ||
363 | static void ivshmem_vector_poll(PCIDevice *dev, | |
364 | unsigned int vector_start, | |
365 | unsigned int vector_end) | |
366 | { | |
5400c02b | 367 | IVShmemState *s = IVSHMEM_COMMON(dev); |
660c97ee MAL |
368 | unsigned int vector; |
369 | ||
370 | IVSHMEM_DPRINTF("vector poll %p %d-%d\n", dev, vector_start, vector_end); | |
371 | ||
372 | vector_end = MIN(vector_end, s->vectors); | |
373 | ||
374 | for (vector = vector_start; vector < vector_end; vector++) { | |
375 | EventNotifier *notifier = &s->peers[s->vm_id].eventfds[vector]; | |
376 | ||
377 | if (!msix_is_masked(dev, vector)) { | |
378 | continue; | |
379 | } | |
380 | ||
381 | if (event_notifier_test_and_clear(notifier)) { | |
382 | msix_set_pending(dev, vector); | |
383 | } | |
384 | } | |
385 | } | |
386 | ||
9940c323 MAL |
387 | static void watch_vector_notifier(IVShmemState *s, EventNotifier *n, |
388 | int vector) | |
6cbf4c8c | 389 | { |
563027cc | 390 | int eventfd = event_notifier_get_fd(n); |
6cbf4c8c | 391 | |
3c27969b | 392 | assert(!s->msi_vectors[vector].pdev); |
9940c323 | 393 | s->msi_vectors[vector].pdev = PCI_DEVICE(s); |
6cbf4c8c | 394 | |
9940c323 MAL |
395 | qemu_set_fd_handler(eventfd, ivshmem_vector_notify, |
396 | NULL, &s->msi_vectors[vector]); | |
6cbf4c8c CM |
397 | } |
398 | ||
563027cc PB |
399 | static void ivshmem_add_eventfd(IVShmemState *s, int posn, int i) |
400 | { | |
401 | memory_region_add_eventfd(&s->ivshmem_mmio, | |
402 | DOORBELL, | |
403 | 4, | |
404 | true, | |
405 | (posn << 16) | i, | |
753d5e14 | 406 | &s->peers[posn].eventfds[i]); |
563027cc PB |
407 | } |
408 | ||
409 | static void ivshmem_del_eventfd(IVShmemState *s, int posn, int i) | |
410 | { | |
411 | memory_region_del_eventfd(&s->ivshmem_mmio, | |
412 | DOORBELL, | |
413 | 4, | |
414 | true, | |
415 | (posn << 16) | i, | |
753d5e14 | 416 | &s->peers[posn].eventfds[i]); |
563027cc PB |
417 | } |
418 | ||
f456179f | 419 | static void close_peer_eventfds(IVShmemState *s, int posn) |
6cbf4c8c | 420 | { |
f456179f | 421 | int i, n; |
6cbf4c8c | 422 | |
9db51b4d | 423 | assert(posn >= 0 && posn < s->nb_peers); |
f456179f | 424 | n = s->peers[posn].nb_eventfds; |
6cbf4c8c | 425 | |
9db51b4d MA |
426 | if (ivshmem_has_feature(s, IVSHMEM_IOEVENTFD)) { |
427 | memory_region_transaction_begin(); | |
428 | for (i = 0; i < n; i++) { | |
429 | ivshmem_del_eventfd(s, posn, i); | |
430 | } | |
431 | memory_region_transaction_commit(); | |
b6a1f3a5 | 432 | } |
9db51b4d | 433 | |
f456179f | 434 | for (i = 0; i < n; i++) { |
563027cc | 435 | event_notifier_cleanup(&s->peers[posn].eventfds[i]); |
6cbf4c8c CM |
436 | } |
437 | ||
7267c094 | 438 | g_free(s->peers[posn].eventfds); |
6cbf4c8c CM |
439 | s->peers[posn].nb_eventfds = 0; |
440 | } | |
441 | ||
cd9953f7 | 442 | static void resize_peers(IVShmemState *s, int nb_peers) |
34bc07c5 | 443 | { |
cd9953f7 MA |
444 | int old_nb_peers = s->nb_peers; |
445 | int i; | |
6cbf4c8c | 446 | |
cd9953f7 MA |
447 | assert(nb_peers > old_nb_peers); |
448 | IVSHMEM_DPRINTF("bumping storage to %d peers\n", nb_peers); | |
6cbf4c8c | 449 | |
cd9953f7 MA |
450 | s->peers = g_realloc(s->peers, nb_peers * sizeof(Peer)); |
451 | s->nb_peers = nb_peers; | |
1300b273 | 452 | |
cd9953f7 MA |
453 | for (i = old_nb_peers; i < nb_peers; i++) { |
454 | s->peers[i].eventfds = g_new0(EventNotifier, s->vectors); | |
455 | s->peers[i].nb_eventfds = 0; | |
6cbf4c8c CM |
456 | } |
457 | } | |
458 | ||
1309cf44 MA |
459 | static void ivshmem_add_kvm_msi_virq(IVShmemState *s, int vector, |
460 | Error **errp) | |
660c97ee MAL |
461 | { |
462 | PCIDevice *pdev = PCI_DEVICE(s); | |
660c97ee MAL |
463 | int ret; |
464 | ||
465 | IVSHMEM_DPRINTF("ivshmem_add_kvm_msi_virq vector:%d\n", vector); | |
3c27969b | 466 | assert(!s->msi_vectors[vector].pdev); |
660c97ee | 467 | |
d1f6af6a | 468 | ret = kvm_irqchip_add_msi_route(kvm_state, vector, pdev); |
660c97ee | 469 | if (ret < 0) { |
1309cf44 MA |
470 | error_setg(errp, "kvm_irqchip_add_msi_route failed"); |
471 | return; | |
660c97ee MAL |
472 | } |
473 | ||
474 | s->msi_vectors[vector].virq = ret; | |
475 | s->msi_vectors[vector].pdev = pdev; | |
660c97ee MAL |
476 | } |
477 | ||
1309cf44 | 478 | static void setup_interrupt(IVShmemState *s, int vector, Error **errp) |
660c97ee MAL |
479 | { |
480 | EventNotifier *n = &s->peers[s->vm_id].eventfds[vector]; | |
481 | bool with_irqfd = kvm_msi_via_irqfd_enabled() && | |
482 | ivshmem_has_feature(s, IVSHMEM_MSI); | |
483 | PCIDevice *pdev = PCI_DEVICE(s); | |
1309cf44 | 484 | Error *err = NULL; |
660c97ee MAL |
485 | |
486 | IVSHMEM_DPRINTF("setting up interrupt for vector: %d\n", vector); | |
487 | ||
488 | if (!with_irqfd) { | |
97553976 | 489 | IVSHMEM_DPRINTF("with eventfd\n"); |
9940c323 | 490 | watch_vector_notifier(s, n, vector); |
660c97ee | 491 | } else if (msix_enabled(pdev)) { |
97553976 | 492 | IVSHMEM_DPRINTF("with irqfd\n"); |
1309cf44 MA |
493 | ivshmem_add_kvm_msi_virq(s, vector, &err); |
494 | if (err) { | |
495 | error_propagate(errp, err); | |
660c97ee MAL |
496 | return; |
497 | } | |
498 | ||
499 | if (!msix_is_masked(pdev, vector)) { | |
500 | kvm_irqchip_add_irqfd_notifier_gsi(kvm_state, n, NULL, | |
501 | s->msi_vectors[vector].virq); | |
1309cf44 | 502 | /* TODO handle error */ |
660c97ee MAL |
503 | } |
504 | } else { | |
505 | /* it will be delayed until msix is enabled, in write_config */ | |
97553976 | 506 | IVSHMEM_DPRINTF("with irqfd, delayed until msix enabled\n"); |
660c97ee MAL |
507 | } |
508 | } | |
509 | ||
1309cf44 | 510 | static void process_msg_shmem(IVShmemState *s, int fd, Error **errp) |
6cbf4c8c | 511 | { |
8381d89b | 512 | Error *local_err = NULL; |
8baeb22b | 513 | struct stat buf; |
5400c02b | 514 | size_t size; |
6cbf4c8c | 515 | |
c2d8019c | 516 | if (s->ivshmem_bar2) { |
1309cf44 | 517 | error_setg(errp, "server sent unexpected shared memory message"); |
ca0b7566 | 518 | close(fd); |
0f14fd71 | 519 | return; |
a2e9011b SH |
520 | } |
521 | ||
8baeb22b MA |
522 | if (fstat(fd, &buf) < 0) { |
523 | error_setg_errno(errp, errno, | |
524 | "can't determine size of shared memory sent by server"); | |
525 | close(fd); | |
526 | return; | |
527 | } | |
528 | ||
5400c02b MA |
529 | size = buf.st_size; |
530 | ||
531 | /* Legacy cruft */ | |
532 | if (s->legacy_size != SIZE_MAX) { | |
533 | if (size < s->legacy_size) { | |
534 | error_setg(errp, "server sent only %zd bytes of shared memory", | |
535 | (size_t)buf.st_size); | |
536 | close(fd); | |
537 | return; | |
538 | } | |
539 | size = s->legacy_size; | |
cd9953f7 MA |
540 | } |
541 | ||
ca0b7566 | 542 | /* mmap the region and map into the BAR2 */ |
8381d89b MAL |
543 | memory_region_init_ram_from_fd(&s->server_bar2, OBJECT(s), |
544 | "ivshmem.bar2", size, true, fd, &local_err); | |
545 | if (local_err) { | |
546 | error_propagate(errp, local_err); | |
ca0b7566 | 547 | return; |
6cbf4c8c | 548 | } |
8381d89b | 549 | |
c2d8019c | 550 | s->ivshmem_bar2 = &s->server_bar2; |
ca0b7566 MA |
551 | } |
552 | ||
1309cf44 MA |
553 | static void process_msg_disconnect(IVShmemState *s, uint16_t posn, |
554 | Error **errp) | |
ca0b7566 MA |
555 | { |
556 | IVSHMEM_DPRINTF("posn %d has gone away\n", posn); | |
9db51b4d | 557 | if (posn >= s->nb_peers || posn == s->vm_id) { |
1309cf44 | 558 | error_setg(errp, "invalid peer %d", posn); |
9db51b4d MA |
559 | return; |
560 | } | |
ca0b7566 MA |
561 | close_peer_eventfds(s, posn); |
562 | } | |
6cbf4c8c | 563 | |
1309cf44 MA |
564 | static void process_msg_connect(IVShmemState *s, uint16_t posn, int fd, |
565 | Error **errp) | |
ca0b7566 MA |
566 | { |
567 | Peer *peer = &s->peers[posn]; | |
568 | int vector; | |
9a2f0e64 | 569 | |
ca0b7566 MA |
570 | /* |
571 | * The N-th connect message for this peer comes with the file | |
572 | * descriptor for vector N-1. Count messages to find the vector. | |
573 | */ | |
574 | if (peer->nb_eventfds >= s->vectors) { | |
1309cf44 MA |
575 | error_setg(errp, "Too many eventfd received, device has %d vectors", |
576 | s->vectors); | |
ca0b7566 | 577 | close(fd); |
6f8a16d5 | 578 | return; |
6cbf4c8c | 579 | } |
ca0b7566 | 580 | vector = peer->nb_eventfds++; |
6cbf4c8c | 581 | |
ca0b7566 MA |
582 | IVSHMEM_DPRINTF("eventfds[%d][%d] = %d\n", posn, vector, fd); |
583 | event_notifier_init_fd(&peer->eventfds[vector], fd); | |
584 | fcntl_setfl(fd, O_NONBLOCK); /* msix/irqfd poll non block */ | |
945001a1 | 585 | |
ca0b7566 | 586 | if (posn == s->vm_id) { |
1309cf44 MA |
587 | setup_interrupt(s, vector, errp); |
588 | /* TODO do we need to handle the error? */ | |
ca0b7566 | 589 | } |
6cbf4c8c | 590 | |
ca0b7566 MA |
591 | if (ivshmem_has_feature(s, IVSHMEM_IOEVENTFD)) { |
592 | ivshmem_add_eventfd(s, posn, vector); | |
593 | } | |
594 | } | |
6cbf4c8c | 595 | |
1309cf44 | 596 | static void process_msg(IVShmemState *s, int64_t msg, int fd, Error **errp) |
ca0b7566 MA |
597 | { |
598 | IVSHMEM_DPRINTF("posn is %" PRId64 ", fd is %d\n", msg, fd); | |
6cbf4c8c | 599 | |
ca0b7566 | 600 | if (msg < -1 || msg > IVSHMEM_MAX_PEERS) { |
1309cf44 | 601 | error_setg(errp, "server sent invalid message %" PRId64, msg); |
ca0b7566 | 602 | close(fd); |
6cbf4c8c CM |
603 | return; |
604 | } | |
605 | ||
ca0b7566 | 606 | if (msg == -1) { |
1309cf44 | 607 | process_msg_shmem(s, fd, errp); |
1ee57de4 MAL |
608 | return; |
609 | } | |
610 | ||
ca0b7566 MA |
611 | if (msg >= s->nb_peers) { |
612 | resize_peers(s, msg + 1); | |
613 | } | |
6cbf4c8c | 614 | |
ca0b7566 | 615 | if (fd >= 0) { |
1309cf44 | 616 | process_msg_connect(s, msg, fd, errp); |
ca0b7566 | 617 | } else { |
1309cf44 | 618 | process_msg_disconnect(s, msg, errp); |
6cbf4c8c | 619 | } |
ca0b7566 | 620 | } |
6cbf4c8c | 621 | |
ee276391 MA |
622 | static int ivshmem_can_receive(void *opaque) |
623 | { | |
624 | IVShmemState *s = opaque; | |
625 | ||
626 | assert(s->msg_buffered_bytes < sizeof(s->msg_buf)); | |
627 | return sizeof(s->msg_buf) - s->msg_buffered_bytes; | |
628 | } | |
629 | ||
ca0b7566 MA |
630 | static void ivshmem_read(void *opaque, const uint8_t *buf, int size) |
631 | { | |
632 | IVShmemState *s = opaque; | |
1309cf44 | 633 | Error *err = NULL; |
ca0b7566 MA |
634 | int fd; |
635 | int64_t msg; | |
636 | ||
ee276391 MA |
637 | assert(size >= 0 && s->msg_buffered_bytes + size <= sizeof(s->msg_buf)); |
638 | memcpy((unsigned char *)&s->msg_buf + s->msg_buffered_bytes, buf, size); | |
639 | s->msg_buffered_bytes += size; | |
640 | if (s->msg_buffered_bytes < sizeof(s->msg_buf)) { | |
ca0b7566 | 641 | return; |
6cbf4c8c | 642 | } |
ee276391 MA |
643 | msg = le64_to_cpu(s->msg_buf); |
644 | s->msg_buffered_bytes = 0; | |
ca0b7566 | 645 | |
5345fdb4 | 646 | fd = qemu_chr_fe_get_msgfd(&s->server_chr); |
ca0b7566 | 647 | |
1309cf44 MA |
648 | process_msg(s, msg, fd, &err); |
649 | if (err) { | |
650 | error_report_err(err); | |
651 | } | |
6cbf4c8c CM |
652 | } |
653 | ||
1309cf44 | 654 | static int64_t ivshmem_recv_msg(IVShmemState *s, int *pfd, Error **errp) |
5105b1d8 | 655 | { |
3a55fc0f MA |
656 | int64_t msg; |
657 | int n, ret; | |
658 | ||
659 | n = 0; | |
660 | do { | |
5345fdb4 MAL |
661 | ret = qemu_chr_fe_read_all(&s->server_chr, (uint8_t *)&msg + n, |
662 | sizeof(msg) - n); | |
b7b1e9dd PMD |
663 | if (ret < 0) { |
664 | if (ret == -EINTR) { | |
665 | continue; | |
666 | } | |
1309cf44 | 667 | error_setg_errno(errp, -ret, "read from server failed"); |
3a55fc0f MA |
668 | return INT64_MIN; |
669 | } | |
670 | n += ret; | |
671 | } while (n < sizeof(msg)); | |
5105b1d8 | 672 | |
5345fdb4 | 673 | *pfd = qemu_chr_fe_get_msgfd(&s->server_chr); |
51af0ec9 | 674 | return le64_to_cpu(msg); |
3a55fc0f | 675 | } |
5105b1d8 | 676 | |
1309cf44 | 677 | static void ivshmem_recv_setup(IVShmemState *s, Error **errp) |
3a55fc0f | 678 | { |
1309cf44 | 679 | Error *err = NULL; |
3a55fc0f MA |
680 | int64_t msg; |
681 | int fd; | |
682 | ||
1309cf44 MA |
683 | msg = ivshmem_recv_msg(s, &fd, &err); |
684 | if (err) { | |
685 | error_propagate(errp, err); | |
686 | return; | |
687 | } | |
688 | if (msg != IVSHMEM_PROTOCOL_VERSION) { | |
689 | error_setg(errp, "server sent version %" PRId64 ", expecting %d", | |
690 | msg, IVSHMEM_PROTOCOL_VERSION); | |
691 | return; | |
692 | } | |
693 | if (fd != -1) { | |
694 | error_setg(errp, "server sent invalid version message"); | |
5105b1d8 DM |
695 | return; |
696 | } | |
697 | ||
a3feb086 MA |
698 | /* |
699 | * ivshmem-server sends the remaining initial messages in a fixed | |
700 | * order, but the device has always accepted them in any order. | |
701 | * Stay as compatible as practical, just in case people use | |
702 | * servers that behave differently. | |
703 | */ | |
704 | ||
705 | /* | |
706 | * ivshmem_device_spec.txt has always required the ID message | |
707 | * right here, and ivshmem-server has always complied. However, | |
708 | * older versions of the device accepted it out of order, but | |
709 | * broke when an interrupt setup message arrived before it. | |
710 | */ | |
711 | msg = ivshmem_recv_msg(s, &fd, &err); | |
712 | if (err) { | |
713 | error_propagate(errp, err); | |
714 | return; | |
715 | } | |
716 | if (fd != -1 || msg < 0 || msg > IVSHMEM_MAX_PEERS) { | |
717 | error_setg(errp, "server sent invalid ID message"); | |
718 | return; | |
719 | } | |
720 | s->vm_id = msg; | |
721 | ||
3a55fc0f MA |
722 | /* |
723 | * Receive more messages until we got shared memory. | |
724 | */ | |
725 | do { | |
1309cf44 MA |
726 | msg = ivshmem_recv_msg(s, &fd, &err); |
727 | if (err) { | |
728 | error_propagate(errp, err); | |
729 | return; | |
730 | } | |
731 | process_msg(s, msg, fd, &err); | |
732 | if (err) { | |
733 | error_propagate(errp, err); | |
734 | return; | |
735 | } | |
3a55fc0f | 736 | } while (msg != -1); |
1309cf44 MA |
737 | |
738 | /* | |
739 | * This function must either map the shared memory or fail. The | |
740 | * loop above ensures that: it terminates normally only after it | |
741 | * successfully processed the server's shared memory message. | |
742 | * Assert that actually mapped the shared memory: | |
743 | */ | |
c2d8019c | 744 | assert(s->ivshmem_bar2); |
5105b1d8 DM |
745 | } |
746 | ||
4490c711 MT |
747 | /* Select the MSI-X vectors used by device. |
748 | * ivshmem maps events to vectors statically, so | |
749 | * we just enable all vectors on init and after reset. */ | |
082751e8 | 750 | static void ivshmem_msix_vector_use(IVShmemState *s) |
4490c711 | 751 | { |
b7578eaa | 752 | PCIDevice *d = PCI_DEVICE(s); |
4490c711 MT |
753 | int i; |
754 | ||
4490c711 | 755 | for (i = 0; i < s->vectors; i++) { |
b7578eaa | 756 | msix_vector_use(d, i); |
4490c711 MT |
757 | } |
758 | } | |
759 | ||
a4022791 LP |
760 | static void ivshmem_disable_irqfd(IVShmemState *s); |
761 | ||
6cbf4c8c CM |
762 | static void ivshmem_reset(DeviceState *d) |
763 | { | |
5400c02b | 764 | IVShmemState *s = IVSHMEM_COMMON(d); |
6cbf4c8c | 765 | |
a4022791 LP |
766 | ivshmem_disable_irqfd(s); |
767 | ||
6cbf4c8c | 768 | s->intrstatus = 0; |
972ad215 | 769 | s->intrmask = 0; |
082751e8 MA |
770 | if (ivshmem_has_feature(s, IVSHMEM_MSI)) { |
771 | ivshmem_msix_vector_use(s); | |
772 | } | |
6cbf4c8c CM |
773 | } |
774 | ||
ee640c62 | 775 | static int ivshmem_setup_interrupts(IVShmemState *s, Error **errp) |
4490c711 | 776 | { |
fd47bfe5 MAL |
777 | /* allocate QEMU callback data for receiving interrupts */ |
778 | s->msi_vectors = g_malloc0(s->vectors * sizeof(MSIVector)); | |
6cbf4c8c | 779 | |
fd47bfe5 | 780 | if (ivshmem_has_feature(s, IVSHMEM_MSI)) { |
ee640c62 | 781 | if (msix_init_exclusive_bar(PCI_DEVICE(s), s->vectors, 1, errp)) { |
fd47bfe5 MAL |
782 | return -1; |
783 | } | |
1116b539 | 784 | |
fd47bfe5 | 785 | IVSHMEM_DPRINTF("msix initialized (%d vectors)\n", s->vectors); |
082751e8 | 786 | ivshmem_msix_vector_use(s); |
fd47bfe5 | 787 | } |
4490c711 | 788 | |
d58d7e84 | 789 | return 0; |
6cbf4c8c CM |
790 | } |
791 | ||
0b88dd94 LP |
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 | ||
660c97ee MAL |
806 | static void ivshmem_enable_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++) { | |
1309cf44 MA |
812 | Error *err = NULL; |
813 | ||
814 | ivshmem_add_kvm_msi_virq(s, i, &err); | |
815 | if (err) { | |
816 | error_report_err(err); | |
0b88dd94 | 817 | goto undo; |
1309cf44 | 818 | } |
660c97ee MAL |
819 | } |
820 | ||
821 | if (msix_set_vector_notifiers(pdev, | |
822 | ivshmem_vector_unmask, | |
823 | ivshmem_vector_mask, | |
824 | ivshmem_vector_poll)) { | |
825 | error_report("ivshmem: msix_set_vector_notifiers failed"); | |
0b88dd94 | 826 | goto undo; |
660c97ee | 827 | } |
0b88dd94 | 828 | return; |
660c97ee | 829 | |
0b88dd94 LP |
830 | undo: |
831 | while (--i >= 0) { | |
832 | ivshmem_remove_kvm_msi_virq(s, i); | |
660c97ee | 833 | } |
660c97ee MAL |
834 | } |
835 | ||
836 | static void ivshmem_disable_irqfd(IVShmemState *s) | |
837 | { | |
838 | PCIDevice *pdev = PCI_DEVICE(s); | |
839 | int i; | |
840 | ||
0b88dd94 LP |
841 | if (!pdev->msix_vector_use_notifier) { |
842 | return; | |
843 | } | |
844 | ||
089fd803 LP |
845 | msix_unset_vector_notifiers(pdev); |
846 | ||
660c97ee | 847 | for (i = 0; i < s->peers[s->vm_id].nb_eventfds; i++) { |
089fd803 LP |
848 | /* |
849 | * MSI-X is already disabled here so msix_unset_vector_notifiers() | |
850 | * didn't call our release notifier. Do it now to keep our masks and | |
851 | * unmasks balanced. | |
852 | */ | |
853 | if (s->msi_vectors[i].unmasked) { | |
854 | ivshmem_vector_mask(pdev, i); | |
855 | } | |
660c97ee MAL |
856 | ivshmem_remove_kvm_msi_virq(s, i); |
857 | } | |
858 | ||
660c97ee MAL |
859 | } |
860 | ||
861 | static void ivshmem_write_config(PCIDevice *pdev, uint32_t address, | |
d58d7e84 | 862 | uint32_t val, int len) |
4490c711 | 863 | { |
5400c02b | 864 | IVShmemState *s = IVSHMEM_COMMON(pdev); |
660c97ee MAL |
865 | int is_enabled, was_enabled = msix_enabled(pdev); |
866 | ||
867 | pci_default_write_config(pdev, address, val, len); | |
868 | is_enabled = msix_enabled(pdev); | |
869 | ||
1309cf44 | 870 | if (kvm_msi_via_irqfd_enabled()) { |
660c97ee MAL |
871 | if (!was_enabled && is_enabled) { |
872 | ivshmem_enable_irqfd(s); | |
873 | } else if (was_enabled && !is_enabled) { | |
874 | ivshmem_disable_irqfd(s); | |
875 | } | |
876 | } | |
4490c711 MT |
877 | } |
878 | ||
5400c02b | 879 | static void ivshmem_common_realize(PCIDevice *dev, Error **errp) |
6cbf4c8c | 880 | { |
5400c02b | 881 | IVShmemState *s = IVSHMEM_COMMON(dev); |
d855e275 | 882 | Error *err = NULL; |
6cbf4c8c | 883 | uint8_t *pci_conf; |
9113e3f3 MAL |
884 | uint8_t attr = PCI_BASE_ADDRESS_SPACE_MEMORY | |
885 | PCI_BASE_ADDRESS_MEM_PREFETCH; | |
fe44dc91 | 886 | Error *local_err = NULL; |
6cbf4c8c | 887 | |
6cbf4c8c CM |
888 | /* IRQFD requires MSI */ |
889 | if (ivshmem_has_feature(s, IVSHMEM_IOEVENTFD) && | |
890 | !ivshmem_has_feature(s, IVSHMEM_MSI)) { | |
d58d7e84 MAL |
891 | error_setg(errp, "ioeventfd/irqfd requires MSI"); |
892 | return; | |
6cbf4c8c CM |
893 | } |
894 | ||
b7578eaa | 895 | pci_conf = dev->config; |
6cbf4c8c | 896 | pci_conf[PCI_COMMAND] = PCI_COMMAND_IO | PCI_COMMAND_MEMORY; |
6cbf4c8c | 897 | |
3c161542 | 898 | memory_region_init_io(&s->ivshmem_mmio, OBJECT(s), &ivshmem_mmio_ops, s, |
cb06608e AK |
899 | "ivshmem-mmio", IVSHMEM_REG_BAR_SIZE); |
900 | ||
6cbf4c8c | 901 | /* region for registers*/ |
b7578eaa | 902 | pci_register_bar(dev, 0, PCI_BASE_ADDRESS_SPACE_MEMORY, |
e824b2cc | 903 | &s->ivshmem_mmio); |
cb06608e | 904 | |
b2b79a69 | 905 | if (s->not_legacy_32bit) { |
9113e3f3 | 906 | attr |= PCI_BASE_ADDRESS_MEM_TYPE_64; |
c08ba66f | 907 | } |
6cbf4c8c | 908 | |
d9453c93 | 909 | if (s->hostmem != NULL) { |
d9453c93 MAL |
910 | IVSHMEM_DPRINTF("using hostmem\n"); |
911 | ||
c2d8019c MA |
912 | s->ivshmem_bar2 = host_memory_backend_get_memory(s->hostmem, |
913 | &error_abort); | |
5503e285 | 914 | } else { |
0ec7b3e7 | 915 | Chardev *chr = qemu_chr_fe_get_driver(&s->server_chr); |
5345fdb4 | 916 | assert(chr); |
6dc64780 | 917 | |
6cbf4c8c | 918 | IVSHMEM_DPRINTF("using shared memory server (socket = %s)\n", |
5345fdb4 | 919 | chr->filename); |
6cbf4c8c | 920 | |
f456179f | 921 | /* we allocate enough space for 16 peers and grow as needed */ |
1300b273 | 922 | resize_peers(s, 16); |
6cbf4c8c | 923 | |
3a55fc0f MA |
924 | /* |
925 | * Receive setup messages from server synchronously. | |
926 | * Older versions did it asynchronously, but that creates a | |
927 | * number of entertaining race conditions. | |
3a55fc0f | 928 | */ |
1309cf44 MA |
929 | ivshmem_recv_setup(s, &err); |
930 | if (err) { | |
931 | error_propagate(errp, err); | |
932 | return; | |
3a55fc0f MA |
933 | } |
934 | ||
62a830b6 MA |
935 | if (s->master == ON_OFF_AUTO_ON && s->vm_id != 0) { |
936 | error_setg(errp, | |
937 | "master must connect to the server before any peers"); | |
938 | return; | |
939 | } | |
940 | ||
5345fdb4 | 941 | qemu_chr_fe_set_handlers(&s->server_chr, ivshmem_can_receive, |
81517ba3 | 942 | ivshmem_read, NULL, NULL, s, NULL, true); |
1309cf44 | 943 | |
ee640c62 C |
944 | if (ivshmem_setup_interrupts(s, errp) < 0) { |
945 | error_prepend(errp, "Failed to initialize interrupts: "); | |
3a55fc0f MA |
946 | return; |
947 | } | |
d855e275 MA |
948 | } |
949 | ||
2a845da7 MA |
950 | if (s->master == ON_OFF_AUTO_AUTO) { |
951 | s->master = s->vm_id == 0 ? ON_OFF_AUTO_ON : ON_OFF_AUTO_OFF; | |
952 | } | |
953 | ||
954 | if (!ivshmem_is_master(s)) { | |
d855e275 MA |
955 | error_setg(&s->migration_blocker, |
956 | "Migration is disabled when using feature 'peer mode' in device 'ivshmem'"); | |
fe44dc91 AA |
957 | migrate_add_blocker(s->migration_blocker, &local_err); |
958 | if (local_err) { | |
959 | error_propagate(errp, local_err); | |
960 | error_free(s->migration_blocker); | |
961 | return; | |
962 | } | |
6cbf4c8c | 963 | } |
fe44dc91 AA |
964 | |
965 | vmstate_register_ram(s->ivshmem_bar2, DEVICE(s)); | |
966 | pci_register_bar(PCI_DEVICE(s), 2, attr, s->ivshmem_bar2); | |
6cbf4c8c CM |
967 | } |
968 | ||
5400c02b MA |
969 | static void ivshmem_exit(PCIDevice *dev) |
970 | { | |
971 | IVShmemState *s = IVSHMEM_COMMON(dev); | |
f64a078d MAL |
972 | int i; |
973 | ||
38e0735e AL |
974 | if (s->migration_blocker) { |
975 | migrate_del_blocker(s->migration_blocker); | |
976 | error_free(s->migration_blocker); | |
977 | } | |
978 | ||
c2d8019c | 979 | if (memory_region_is_mapped(s->ivshmem_bar2)) { |
d9453c93 | 980 | if (!s->hostmem) { |
c2d8019c | 981 | void *addr = memory_region_get_ram_ptr(s->ivshmem_bar2); |
56a571d9 | 982 | int fd; |
d9453c93 | 983 | |
5400c02b | 984 | if (munmap(addr, memory_region_size(s->ivshmem_bar2) == -1)) { |
d9453c93 MAL |
985 | error_report("Failed to munmap shared memory %s", |
986 | strerror(errno)); | |
987 | } | |
56a571d9 | 988 | |
4ff87573 | 989 | fd = memory_region_get_fd(s->ivshmem_bar2); |
c2d8019c | 990 | close(fd); |
d9453c93 | 991 | } |
f64a078d | 992 | |
c2d8019c | 993 | vmstate_unregister_ram(s->ivshmem_bar2, DEVICE(dev)); |
f64a078d MAL |
994 | } |
995 | ||
f64a078d MAL |
996 | if (s->peers) { |
997 | for (i = 0; i < s->nb_peers; i++) { | |
f456179f | 998 | close_peer_eventfds(s, i); |
f64a078d MAL |
999 | } |
1000 | g_free(s->peers); | |
1001 | } | |
1002 | ||
1003 | if (ivshmem_has_feature(s, IVSHMEM_MSI)) { | |
1004 | msix_uninit_exclusive_bar(dev); | |
1005 | } | |
1006 | ||
0f57350e | 1007 | g_free(s->msi_vectors); |
6cbf4c8c CM |
1008 | } |
1009 | ||
1f8552df MAL |
1010 | static int ivshmem_pre_load(void *opaque) |
1011 | { | |
1012 | IVShmemState *s = opaque; | |
1013 | ||
2a845da7 | 1014 | if (!ivshmem_is_master(s)) { |
1f8552df MAL |
1015 | error_report("'peer' devices are not migratable"); |
1016 | return -EINVAL; | |
1017 | } | |
1018 | ||
1019 | return 0; | |
1020 | } | |
1021 | ||
1022 | static int ivshmem_post_load(void *opaque, int version_id) | |
1023 | { | |
1024 | IVShmemState *s = opaque; | |
1025 | ||
1026 | if (ivshmem_has_feature(s, IVSHMEM_MSI)) { | |
082751e8 | 1027 | ivshmem_msix_vector_use(s); |
1f8552df | 1028 | } |
1f8552df MAL |
1029 | return 0; |
1030 | } | |
1031 | ||
5400c02b | 1032 | static void ivshmem_common_class_init(ObjectClass *klass, void *data) |
40021f08 | 1033 | { |
39bffca2 | 1034 | DeviceClass *dc = DEVICE_CLASS(klass); |
40021f08 AL |
1035 | PCIDeviceClass *k = PCI_DEVICE_CLASS(klass); |
1036 | ||
5400c02b MA |
1037 | k->realize = ivshmem_common_realize; |
1038 | k->exit = ivshmem_exit; | |
d58d7e84 | 1039 | k->config_write = ivshmem_write_config; |
b8ef62a9 PB |
1040 | k->vendor_id = PCI_VENDOR_ID_IVSHMEM; |
1041 | k->device_id = PCI_DEVICE_ID_IVSHMEM; | |
40021f08 | 1042 | k->class_id = PCI_CLASS_MEMORY_RAM; |
5400c02b | 1043 | k->revision = 1; |
39bffca2 | 1044 | dc->reset = ivshmem_reset; |
125ee0ed | 1045 | set_bit(DEVICE_CATEGORY_MISC, dc->categories); |
d383537d | 1046 | dc->desc = "Inter-VM shared memory"; |
40021f08 AL |
1047 | } |
1048 | ||
ddc85284 MA |
1049 | static const TypeInfo ivshmem_common_info = { |
1050 | .name = TYPE_IVSHMEM_COMMON, | |
1051 | .parent = TYPE_PCI_DEVICE, | |
1052 | .instance_size = sizeof(IVShmemState), | |
1053 | .abstract = true, | |
1054 | .class_init = ivshmem_common_class_init, | |
fd3b02c8 EH |
1055 | .interfaces = (InterfaceInfo[]) { |
1056 | { INTERFACE_CONVENTIONAL_PCI_DEVICE }, | |
1057 | { }, | |
1058 | }, | |
ddc85284 | 1059 | }; |
5400c02b | 1060 | |
5400c02b MA |
1061 | static const VMStateDescription ivshmem_plain_vmsd = { |
1062 | .name = TYPE_IVSHMEM_PLAIN, | |
1063 | .version_id = 0, | |
1064 | .minimum_version_id = 0, | |
1065 | .pre_load = ivshmem_pre_load, | |
1066 | .post_load = ivshmem_post_load, | |
1067 | .fields = (VMStateField[]) { | |
1068 | VMSTATE_PCI_DEVICE(parent_obj, IVShmemState), | |
1069 | VMSTATE_UINT32(intrstatus, IVShmemState), | |
1070 | VMSTATE_UINT32(intrmask, IVShmemState), | |
1071 | VMSTATE_END_OF_LIST() | |
1072 | }, | |
1073 | }; | |
1074 | ||
1075 | static Property ivshmem_plain_properties[] = { | |
1076 | DEFINE_PROP_ON_OFF_AUTO("master", IVShmemState, master, ON_OFF_AUTO_OFF), | |
e9cb190a FZ |
1077 | DEFINE_PROP_LINK("memdev", IVShmemState, hostmem, TYPE_MEMORY_BACKEND, |
1078 | HostMemoryBackend *), | |
5400c02b MA |
1079 | DEFINE_PROP_END_OF_LIST(), |
1080 | }; | |
1081 | ||
1082 | static void ivshmem_plain_init(Object *obj) | |
1083 | { | |
1084 | IVShmemState *s = IVSHMEM_PLAIN(obj); | |
1085 | ||
b2b79a69 | 1086 | s->not_legacy_32bit = 1; |
5400c02b MA |
1087 | } |
1088 | ||
6dc64780 MAL |
1089 | static void ivshmem_plain_realize(PCIDevice *dev, Error **errp) |
1090 | { | |
1091 | IVShmemState *s = IVSHMEM_COMMON(dev); | |
1092 | ||
1093 | if (!s->hostmem) { | |
1094 | error_setg(errp, "You must specify a 'memdev'"); | |
1095 | return; | |
e9cb190a FZ |
1096 | } else if (host_memory_backend_is_mapped(s->hostmem)) { |
1097 | char *path = object_get_canonical_path_component(OBJECT(s->hostmem)); | |
1098 | error_setg(errp, "can't use already busy memdev: %s", path); | |
1099 | g_free(path); | |
1100 | return; | |
6dc64780 MAL |
1101 | } |
1102 | ||
1103 | ivshmem_common_realize(dev, errp); | |
2aece63c XG |
1104 | host_memory_backend_set_mapped(s->hostmem, true); |
1105 | } | |
1106 | ||
1107 | static void ivshmem_plain_exit(PCIDevice *pci_dev) | |
1108 | { | |
1109 | IVShmemState *s = IVSHMEM_COMMON(pci_dev); | |
1110 | ||
1111 | host_memory_backend_set_mapped(s->hostmem, false); | |
6dc64780 MAL |
1112 | } |
1113 | ||
5400c02b MA |
1114 | static void ivshmem_plain_class_init(ObjectClass *klass, void *data) |
1115 | { | |
1116 | DeviceClass *dc = DEVICE_CLASS(klass); | |
6dc64780 | 1117 | PCIDeviceClass *k = PCI_DEVICE_CLASS(klass); |
5400c02b | 1118 | |
6dc64780 | 1119 | k->realize = ivshmem_plain_realize; |
2aece63c | 1120 | k->exit = ivshmem_plain_exit; |
5400c02b MA |
1121 | dc->props = ivshmem_plain_properties; |
1122 | dc->vmsd = &ivshmem_plain_vmsd; | |
1123 | } | |
1124 | ||
1125 | static const TypeInfo ivshmem_plain_info = { | |
1126 | .name = TYPE_IVSHMEM_PLAIN, | |
1127 | .parent = TYPE_IVSHMEM_COMMON, | |
1128 | .instance_size = sizeof(IVShmemState), | |
1129 | .instance_init = ivshmem_plain_init, | |
1130 | .class_init = ivshmem_plain_class_init, | |
1131 | }; | |
1132 | ||
1133 | static const VMStateDescription ivshmem_doorbell_vmsd = { | |
1134 | .name = TYPE_IVSHMEM_DOORBELL, | |
1135 | .version_id = 0, | |
1136 | .minimum_version_id = 0, | |
1137 | .pre_load = ivshmem_pre_load, | |
1138 | .post_load = ivshmem_post_load, | |
1139 | .fields = (VMStateField[]) { | |
1140 | VMSTATE_PCI_DEVICE(parent_obj, IVShmemState), | |
1141 | VMSTATE_MSIX(parent_obj, IVShmemState), | |
1142 | VMSTATE_UINT32(intrstatus, IVShmemState), | |
1143 | VMSTATE_UINT32(intrmask, IVShmemState), | |
1144 | VMSTATE_END_OF_LIST() | |
1145 | }, | |
1146 | }; | |
1147 | ||
1148 | static Property ivshmem_doorbell_properties[] = { | |
1149 | DEFINE_PROP_CHR("chardev", IVShmemState, server_chr), | |
1150 | DEFINE_PROP_UINT32("vectors", IVShmemState, vectors, 1), | |
1151 | DEFINE_PROP_BIT("ioeventfd", IVShmemState, features, IVSHMEM_IOEVENTFD, | |
1152 | true), | |
1153 | DEFINE_PROP_ON_OFF_AUTO("master", IVShmemState, master, ON_OFF_AUTO_OFF), | |
1154 | DEFINE_PROP_END_OF_LIST(), | |
1155 | }; | |
1156 | ||
1157 | static void ivshmem_doorbell_init(Object *obj) | |
1158 | { | |
1159 | IVShmemState *s = IVSHMEM_DOORBELL(obj); | |
1160 | ||
1161 | s->features |= (1 << IVSHMEM_MSI); | |
1162 | s->legacy_size = SIZE_MAX; /* whatever the server sends */ | |
b2b79a69 | 1163 | s->not_legacy_32bit = 1; |
5400c02b MA |
1164 | } |
1165 | ||
6dc64780 MAL |
1166 | static void ivshmem_doorbell_realize(PCIDevice *dev, Error **errp) |
1167 | { | |
1168 | IVShmemState *s = IVSHMEM_COMMON(dev); | |
1169 | ||
30650701 | 1170 | if (!qemu_chr_fe_backend_connected(&s->server_chr)) { |
6dc64780 MAL |
1171 | error_setg(errp, "You must specify a 'chardev'"); |
1172 | return; | |
1173 | } | |
1174 | ||
1175 | ivshmem_common_realize(dev, errp); | |
1176 | } | |
1177 | ||
5400c02b MA |
1178 | static void ivshmem_doorbell_class_init(ObjectClass *klass, void *data) |
1179 | { | |
1180 | DeviceClass *dc = DEVICE_CLASS(klass); | |
6dc64780 | 1181 | PCIDeviceClass *k = PCI_DEVICE_CLASS(klass); |
5400c02b | 1182 | |
6dc64780 | 1183 | k->realize = ivshmem_doorbell_realize; |
5400c02b MA |
1184 | dc->props = ivshmem_doorbell_properties; |
1185 | dc->vmsd = &ivshmem_doorbell_vmsd; | |
1186 | } | |
1187 | ||
1188 | static const TypeInfo ivshmem_doorbell_info = { | |
1189 | .name = TYPE_IVSHMEM_DOORBELL, | |
1190 | .parent = TYPE_IVSHMEM_COMMON, | |
1191 | .instance_size = sizeof(IVShmemState), | |
1192 | .instance_init = ivshmem_doorbell_init, | |
1193 | .class_init = ivshmem_doorbell_class_init, | |
1194 | }; | |
1195 | ||
ddc85284 MA |
1196 | static int ivshmem_load_old(QEMUFile *f, void *opaque, int version_id) |
1197 | { | |
1198 | IVShmemState *s = opaque; | |
1199 | PCIDevice *pdev = PCI_DEVICE(s); | |
1200 | int ret; | |
1201 | ||
1202 | IVSHMEM_DPRINTF("ivshmem_load_old\n"); | |
1203 | ||
1204 | if (version_id != 0) { | |
1205 | return -EINVAL; | |
1206 | } | |
1207 | ||
1208 | ret = ivshmem_pre_load(s); | |
1209 | if (ret) { | |
1210 | return ret; | |
1211 | } | |
1212 | ||
1213 | ret = pci_device_load(pdev, f); | |
1214 | if (ret) { | |
1215 | return ret; | |
1216 | } | |
1217 | ||
1218 | if (ivshmem_has_feature(s, IVSHMEM_MSI)) { | |
1219 | msix_load(pdev, f); | |
1220 | ivshmem_msix_vector_use(s); | |
1221 | } else { | |
1222 | s->intrstatus = qemu_get_be32(f); | |
1223 | s->intrmask = qemu_get_be32(f); | |
1224 | } | |
1225 | ||
1226 | return 0; | |
1227 | } | |
1228 | ||
1229 | static bool test_msix(void *opaque, int version_id) | |
1230 | { | |
1231 | IVShmemState *s = opaque; | |
1232 | ||
1233 | return ivshmem_has_feature(s, IVSHMEM_MSI); | |
1234 | } | |
1235 | ||
1236 | static bool test_no_msix(void *opaque, int version_id) | |
1237 | { | |
1238 | return !test_msix(opaque, version_id); | |
1239 | } | |
1240 | ||
1241 | static const VMStateDescription ivshmem_vmsd = { | |
1242 | .name = "ivshmem", | |
1243 | .version_id = 1, | |
1244 | .minimum_version_id = 1, | |
1245 | .pre_load = ivshmem_pre_load, | |
1246 | .post_load = ivshmem_post_load, | |
1247 | .fields = (VMStateField[]) { | |
1248 | VMSTATE_PCI_DEVICE(parent_obj, IVShmemState), | |
1249 | ||
1250 | VMSTATE_MSIX_TEST(parent_obj, IVShmemState, test_msix), | |
1251 | VMSTATE_UINT32_TEST(intrstatus, IVShmemState, test_no_msix), | |
1252 | VMSTATE_UINT32_TEST(intrmask, IVShmemState, test_no_msix), | |
1253 | ||
1254 | VMSTATE_END_OF_LIST() | |
1255 | }, | |
1256 | .load_state_old = ivshmem_load_old, | |
1257 | .minimum_version_id_old = 0 | |
1258 | }; | |
1259 | ||
1260 | static Property ivshmem_properties[] = { | |
1261 | DEFINE_PROP_CHR("chardev", IVShmemState, server_chr), | |
1262 | DEFINE_PROP_STRING("size", IVShmemState, sizearg), | |
1263 | DEFINE_PROP_UINT32("vectors", IVShmemState, vectors, 1), | |
1264 | DEFINE_PROP_BIT("ioeventfd", IVShmemState, features, IVSHMEM_IOEVENTFD, | |
1265 | false), | |
1266 | DEFINE_PROP_BIT("msi", IVShmemState, features, IVSHMEM_MSI, true), | |
1267 | DEFINE_PROP_STRING("shm", IVShmemState, shmobj), | |
1268 | DEFINE_PROP_STRING("role", IVShmemState, role), | |
1269 | DEFINE_PROP_UINT32("use64", IVShmemState, not_legacy_32bit, 1), | |
1270 | DEFINE_PROP_END_OF_LIST(), | |
1271 | }; | |
1272 | ||
1273 | static void desugar_shm(IVShmemState *s) | |
1274 | { | |
1275 | Object *obj; | |
1276 | char *path; | |
1277 | ||
1278 | obj = object_new("memory-backend-file"); | |
1279 | path = g_strdup_printf("/dev/shm/%s", s->shmobj); | |
1280 | object_property_set_str(obj, path, "mem-path", &error_abort); | |
1281 | g_free(path); | |
1282 | object_property_set_int(obj, s->legacy_size, "size", &error_abort); | |
1283 | object_property_set_bool(obj, true, "share", &error_abort); | |
1284 | object_property_add_child(OBJECT(s), "internal-shm-backend", obj, | |
1285 | &error_abort); | |
1286 | user_creatable_complete(obj, &error_abort); | |
1287 | s->hostmem = MEMORY_BACKEND(obj); | |
1288 | } | |
1289 | ||
1290 | static void ivshmem_realize(PCIDevice *dev, Error **errp) | |
1291 | { | |
1292 | IVShmemState *s = IVSHMEM_COMMON(dev); | |
1293 | ||
1294 | if (!qtest_enabled()) { | |
1295 | error_report("ivshmem is deprecated, please use ivshmem-plain" | |
1296 | " or ivshmem-doorbell instead"); | |
1297 | } | |
1298 | ||
30650701 | 1299 | if (qemu_chr_fe_backend_connected(&s->server_chr) + !!s->shmobj != 1) { |
13fd2cb6 | 1300 | error_setg(errp, "You must specify either 'shm' or 'chardev'"); |
ddc85284 MA |
1301 | return; |
1302 | } | |
1303 | ||
13fd2cb6 | 1304 | if (s->sizearg == NULL) { |
ddc85284 MA |
1305 | s->legacy_size = 4 << 20; /* 4 MB default */ |
1306 | } else { | |
f17fd4fd | 1307 | int ret; |
f46bfdbf | 1308 | uint64_t size; |
f17fd4fd MA |
1309 | |
1310 | ret = qemu_strtosz_MiB(s->sizearg, NULL, &size); | |
1311 | if (ret < 0 || (size_t)size != size || !is_power_of_2(size)) { | |
ddc85284 MA |
1312 | error_setg(errp, "Invalid size %s", s->sizearg); |
1313 | return; | |
1314 | } | |
1315 | s->legacy_size = size; | |
1316 | } | |
1317 | ||
1318 | /* check that role is reasonable */ | |
1319 | if (s->role) { | |
1320 | if (strncmp(s->role, "peer", 5) == 0) { | |
1321 | s->master = ON_OFF_AUTO_OFF; | |
1322 | } else if (strncmp(s->role, "master", 7) == 0) { | |
1323 | s->master = ON_OFF_AUTO_ON; | |
1324 | } else { | |
1325 | error_setg(errp, "'role' must be 'peer' or 'master'"); | |
1326 | return; | |
1327 | } | |
1328 | } else { | |
1329 | s->master = ON_OFF_AUTO_AUTO; | |
1330 | } | |
1331 | ||
1332 | if (s->shmobj) { | |
1333 | desugar_shm(s); | |
1334 | } | |
1335 | ||
1336 | /* | |
1337 | * Note: we don't use INTx with IVSHMEM_MSI at all, so this is a | |
1338 | * bald-faced lie then. But it's a backwards compatible lie. | |
1339 | */ | |
1340 | pci_config_set_interrupt_pin(dev->config, 1); | |
1341 | ||
1342 | ivshmem_common_realize(dev, errp); | |
1343 | } | |
1344 | ||
ddc85284 MA |
1345 | static void ivshmem_class_init(ObjectClass *klass, void *data) |
1346 | { | |
1347 | DeviceClass *dc = DEVICE_CLASS(klass); | |
1348 | PCIDeviceClass *k = PCI_DEVICE_CLASS(klass); | |
1349 | ||
1350 | k->realize = ivshmem_realize; | |
1351 | k->revision = 0; | |
1352 | dc->desc = "Inter-VM shared memory (legacy)"; | |
1353 | dc->props = ivshmem_properties; | |
1354 | dc->vmsd = &ivshmem_vmsd; | |
1355 | } | |
1356 | ||
1357 | static const TypeInfo ivshmem_info = { | |
1358 | .name = TYPE_IVSHMEM, | |
1359 | .parent = TYPE_IVSHMEM_COMMON, | |
1360 | .instance_size = sizeof(IVShmemState), | |
ddc85284 MA |
1361 | .class_init = ivshmem_class_init, |
1362 | }; | |
1363 | ||
83f7d43a | 1364 | static void ivshmem_register_types(void) |
6cbf4c8c | 1365 | { |
5400c02b MA |
1366 | type_register_static(&ivshmem_common_info); |
1367 | type_register_static(&ivshmem_plain_info); | |
1368 | type_register_static(&ivshmem_doorbell_info); | |
39bffca2 | 1369 | type_register_static(&ivshmem_info); |
6cbf4c8c CM |
1370 | } |
1371 | ||
83f7d43a | 1372 | type_init(ivshmem_register_types) |