]> git.proxmox.com Git - mirror_qemu.git/blame - hw/vfio/common.c
vfio/pci: fix out-of-sync BAR information on reset
[mirror_qemu.git] / hw / vfio / common.c
CommitLineData
e2c7d025
EA
1/*
2 * generic functions used by VFIO devices
3 *
4 * Copyright Red Hat, Inc. 2012
5 *
6 * Authors:
7 * Alex Williamson <alex.williamson@redhat.com>
8 *
9 * This work is licensed under the terms of the GNU GPL, version 2. See
10 * the COPYING file in the top-level directory.
11 *
12 * Based on qemu-kvm device-assignment:
13 * Adapted for KVM by Qumranet.
14 * Copyright (c) 2007, Neocleus, Alex Novik (alex@neocleus.com)
15 * Copyright (c) 2007, Neocleus, Guy Zana (guy@neocleus.com)
16 * Copyright (C) 2008, Qumranet, Amit Shah (amit.shah@qumranet.com)
17 * Copyright (C) 2008, Red Hat, Amit Shah (amit.shah@redhat.com)
18 * Copyright (C) 2008, IBM, Muli Ben-Yehuda (muli@il.ibm.com)
19 */
20
c6eacb1a 21#include "qemu/osdep.h"
e2c7d025 22#include <sys/ioctl.h>
a9c94277
MA
23#ifdef CONFIG_KVM
24#include <linux/kvm.h>
25#endif
e2c7d025
EA
26#include <linux/vfio.h>
27
28#include "hw/vfio/vfio-common.h"
29#include "hw/vfio/vfio.h"
30#include "exec/address-spaces.h"
31#include "exec/memory.h"
32#include "hw/hw.h"
33#include "qemu/error-report.h"
f4ec5e26 34#include "qemu/range.h"
e2c7d025
EA
35#include "sysemu/kvm.h"
36#include "trace.h"
01905f58 37#include "qapi/error.h"
e2c7d025
EA
38
39struct vfio_group_head vfio_group_list =
39cb514f 40 QLIST_HEAD_INITIALIZER(vfio_group_list);
e2c7d025
EA
41struct vfio_as_head vfio_address_spaces =
42 QLIST_HEAD_INITIALIZER(vfio_address_spaces);
43
44#ifdef CONFIG_KVM
45/*
46 * We have a single VFIO pseudo device per KVM VM. Once created it lives
47 * for the life of the VM. Closing the file descriptor only drops our
48 * reference to it and the device's reference to kvm. Therefore once
49 * initialized, this file descriptor is only released on QEMU exit and
50 * we'll re-use it should another vfio device be attached before then.
51 */
52static int vfio_kvm_device_fd = -1;
53#endif
54
55/*
56 * Common VFIO interrupt disable
57 */
58void vfio_disable_irqindex(VFIODevice *vbasedev, int index)
59{
60 struct vfio_irq_set irq_set = {
61 .argsz = sizeof(irq_set),
62 .flags = VFIO_IRQ_SET_DATA_NONE | VFIO_IRQ_SET_ACTION_TRIGGER,
63 .index = index,
64 .start = 0,
65 .count = 0,
66 };
67
68 ioctl(vbasedev->fd, VFIO_DEVICE_SET_IRQS, &irq_set);
69}
70
71void vfio_unmask_single_irqindex(VFIODevice *vbasedev, int index)
72{
73 struct vfio_irq_set irq_set = {
74 .argsz = sizeof(irq_set),
75 .flags = VFIO_IRQ_SET_DATA_NONE | VFIO_IRQ_SET_ACTION_UNMASK,
76 .index = index,
77 .start = 0,
78 .count = 1,
79 };
80
81 ioctl(vbasedev->fd, VFIO_DEVICE_SET_IRQS, &irq_set);
82}
83
84void vfio_mask_single_irqindex(VFIODevice *vbasedev, int index)
85{
86 struct vfio_irq_set irq_set = {
87 .argsz = sizeof(irq_set),
88 .flags = VFIO_IRQ_SET_DATA_NONE | VFIO_IRQ_SET_ACTION_MASK,
89 .index = index,
90 .start = 0,
91 .count = 1,
92 };
93
94 ioctl(vbasedev->fd, VFIO_DEVICE_SET_IRQS, &irq_set);
95}
96
97/*
98 * IO Port/MMIO - Beware of the endians, VFIO is always little endian
99 */
100void vfio_region_write(void *opaque, hwaddr addr,
101 uint64_t data, unsigned size)
102{
103 VFIORegion *region = opaque;
104 VFIODevice *vbasedev = region->vbasedev;
105 union {
106 uint8_t byte;
107 uint16_t word;
108 uint32_t dword;
109 uint64_t qword;
110 } buf;
111
112 switch (size) {
113 case 1:
114 buf.byte = data;
115 break;
116 case 2:
117 buf.word = cpu_to_le16(data);
118 break;
119 case 4:
120 buf.dword = cpu_to_le32(data);
121 break;
122 default:
123 hw_error("vfio: unsupported write size, %d bytes", size);
124 break;
125 }
126
127 if (pwrite(vbasedev->fd, &buf, size, region->fd_offset + addr) != size) {
128 error_report("%s(%s:region%d+0x%"HWADDR_PRIx", 0x%"PRIx64
129 ",%d) failed: %m",
130 __func__, vbasedev->name, region->nr,
131 addr, data, size);
132 }
133
134 trace_vfio_region_write(vbasedev->name, region->nr, addr, data, size);
135
136 /*
137 * A read or write to a BAR always signals an INTx EOI. This will
138 * do nothing if not pending (including not in INTx mode). We assume
139 * that a BAR access is in response to an interrupt and that BAR
140 * accesses will service the interrupt. Unfortunately, we don't know
141 * which access will service the interrupt, so we're potentially
142 * getting quite a few host interrupts per guest interrupt.
143 */
144 vbasedev->ops->vfio_eoi(vbasedev);
145}
146
147uint64_t vfio_region_read(void *opaque,
148 hwaddr addr, unsigned size)
149{
150 VFIORegion *region = opaque;
151 VFIODevice *vbasedev = region->vbasedev;
152 union {
153 uint8_t byte;
154 uint16_t word;
155 uint32_t dword;
156 uint64_t qword;
157 } buf;
158 uint64_t data = 0;
159
160 if (pread(vbasedev->fd, &buf, size, region->fd_offset + addr) != size) {
161 error_report("%s(%s:region%d+0x%"HWADDR_PRIx", %d) failed: %m",
162 __func__, vbasedev->name, region->nr,
163 addr, size);
164 return (uint64_t)-1;
165 }
166 switch (size) {
167 case 1:
168 data = buf.byte;
169 break;
170 case 2:
171 data = le16_to_cpu(buf.word);
172 break;
173 case 4:
174 data = le32_to_cpu(buf.dword);
175 break;
176 default:
177 hw_error("vfio: unsupported read size, %d bytes", size);
178 break;
179 }
180
181 trace_vfio_region_read(vbasedev->name, region->nr, addr, size, data);
182
183 /* Same as write above */
184 vbasedev->ops->vfio_eoi(vbasedev);
185
186 return data;
187}
188
189const MemoryRegionOps vfio_region_ops = {
190 .read = vfio_region_read,
191 .write = vfio_region_write,
192 .endianness = DEVICE_LITTLE_ENDIAN,
193};
194
195/*
196 * DMA - Mapping and unmapping for the "type1" IOMMU interface used on x86
197 */
198static int vfio_dma_unmap(VFIOContainer *container,
199 hwaddr iova, ram_addr_t size)
200{
201 struct vfio_iommu_type1_dma_unmap unmap = {
202 .argsz = sizeof(unmap),
203 .flags = 0,
204 .iova = iova,
205 .size = size,
206 };
207
208 if (ioctl(container->fd, VFIO_IOMMU_UNMAP_DMA, &unmap)) {
78e5b17f 209 error_report("VFIO_UNMAP_DMA: %d", -errno);
e2c7d025
EA
210 return -errno;
211 }
212
213 return 0;
214}
215
216static int vfio_dma_map(VFIOContainer *container, hwaddr iova,
217 ram_addr_t size, void *vaddr, bool readonly)
218{
219 struct vfio_iommu_type1_dma_map map = {
220 .argsz = sizeof(map),
221 .flags = VFIO_DMA_MAP_FLAG_READ,
222 .vaddr = (__u64)(uintptr_t)vaddr,
223 .iova = iova,
224 .size = size,
225 };
226
227 if (!readonly) {
228 map.flags |= VFIO_DMA_MAP_FLAG_WRITE;
229 }
230
231 /*
232 * Try the mapping, if it fails with EBUSY, unmap the region and try
233 * again. This shouldn't be necessary, but we sometimes see it in
b6af0975 234 * the VGA ROM space.
e2c7d025
EA
235 */
236 if (ioctl(container->fd, VFIO_IOMMU_MAP_DMA, &map) == 0 ||
237 (errno == EBUSY && vfio_dma_unmap(container, iova, size) == 0 &&
238 ioctl(container->fd, VFIO_IOMMU_MAP_DMA, &map) == 0)) {
239 return 0;
240 }
241
78e5b17f 242 error_report("VFIO_MAP_DMA: %d", -errno);
e2c7d025
EA
243 return -errno;
244}
245
f4ec5e26
AK
246static void vfio_host_win_add(VFIOContainer *container,
247 hwaddr min_iova, hwaddr max_iova,
248 uint64_t iova_pgsizes)
249{
250 VFIOHostDMAWindow *hostwin;
251
252 QLIST_FOREACH(hostwin, &container->hostwin_list, hostwin_next) {
253 if (ranges_overlap(hostwin->min_iova,
254 hostwin->max_iova - hostwin->min_iova + 1,
255 min_iova,
256 max_iova - min_iova + 1)) {
257 hw_error("%s: Overlapped IOMMU are not enabled", __func__);
258 }
259 }
260
261 hostwin = g_malloc0(sizeof(*hostwin));
262
263 hostwin->min_iova = min_iova;
264 hostwin->max_iova = max_iova;
265 hostwin->iova_pgsizes = iova_pgsizes;
266 QLIST_INSERT_HEAD(&container->hostwin_list, hostwin, hostwin_next);
267}
268
2e4109de
AK
269static int vfio_host_win_del(VFIOContainer *container, hwaddr min_iova,
270 hwaddr max_iova)
271{
272 VFIOHostDMAWindow *hostwin;
273
274 QLIST_FOREACH(hostwin, &container->hostwin_list, hostwin_next) {
275 if (hostwin->min_iova == min_iova && hostwin->max_iova == max_iova) {
276 QLIST_REMOVE(hostwin, hostwin_next);
277 return 0;
278 }
279 }
280
281 return -1;
282}
283
e2c7d025
EA
284static bool vfio_listener_skipped_section(MemoryRegionSection *section)
285{
286 return (!memory_region_is_ram(section->mr) &&
287 !memory_region_is_iommu(section->mr)) ||
288 /*
289 * Sizing an enabled 64-bit BAR can cause spurious mappings to
290 * addresses in the upper part of the 64-bit address space. These
291 * are never accessed by the CPU and beyond the address width of
292 * some IOMMU hardware. TODO: VFIO should tell us the IOMMU width.
293 */
294 section->offset_within_address_space & (1ULL << 63);
295}
296
cdb30812 297static void vfio_iommu_map_notify(IOMMUNotifier *n, IOMMUTLBEntry *iotlb)
e2c7d025
EA
298{
299 VFIOGuestIOMMU *giommu = container_of(n, VFIOGuestIOMMU, n);
300 VFIOContainer *container = giommu->container;
d78c19b5 301 hwaddr iova = iotlb->iova + giommu->iommu_offset;
e2c7d025
EA
302 MemoryRegion *mr;
303 hwaddr xlat;
304 hwaddr len = iotlb->addr_mask + 1;
305 void *vaddr;
306 int ret;
307
d78c19b5 308 trace_vfio_iommu_map_notify(iova, iova + iotlb->addr_mask);
e2c7d025 309
f1f93650
AK
310 if (iotlb->target_as != &address_space_memory) {
311 error_report("Wrong target AS \"%s\", only system memory is allowed",
312 iotlb->target_as->name ? iotlb->target_as->name : "none");
313 return;
314 }
315
e2c7d025
EA
316 /*
317 * The IOMMU TLB entry we have just covers translation through
318 * this IOMMU to its immediate target. We need to translate
319 * it the rest of the way through to memory.
320 */
41063e1e 321 rcu_read_lock();
e2c7d025
EA
322 mr = address_space_translate(&address_space_memory,
323 iotlb->translated_addr,
324 &xlat, &len, iotlb->perm & IOMMU_WO);
325 if (!memory_region_is_ram(mr)) {
78e5b17f 326 error_report("iommu map to non memory area %"HWADDR_PRIx"",
e2c7d025 327 xlat);
41063e1e 328 goto out;
e2c7d025
EA
329 }
330 /*
331 * Translation truncates length to the IOMMU page size,
332 * check that it did not truncate too much.
333 */
334 if (len & iotlb->addr_mask) {
78e5b17f 335 error_report("iommu has granularity incompatible with target AS");
41063e1e 336 goto out;
e2c7d025
EA
337 }
338
339 if ((iotlb->perm & IOMMU_RW) != IOMMU_NONE) {
340 vaddr = memory_region_get_ram_ptr(mr) + xlat;
d78c19b5 341 ret = vfio_dma_map(container, iova,
e2c7d025
EA
342 iotlb->addr_mask + 1, vaddr,
343 !(iotlb->perm & IOMMU_WO) || mr->readonly);
344 if (ret) {
345 error_report("vfio_dma_map(%p, 0x%"HWADDR_PRIx", "
346 "0x%"HWADDR_PRIx", %p) = %d (%m)",
d78c19b5 347 container, iova,
e2c7d025
EA
348 iotlb->addr_mask + 1, vaddr, ret);
349 }
350 } else {
d78c19b5 351 ret = vfio_dma_unmap(container, iova, iotlb->addr_mask + 1);
e2c7d025
EA
352 if (ret) {
353 error_report("vfio_dma_unmap(%p, 0x%"HWADDR_PRIx", "
354 "0x%"HWADDR_PRIx") = %d (%m)",
d78c19b5 355 container, iova,
e2c7d025
EA
356 iotlb->addr_mask + 1, ret);
357 }
358 }
41063e1e
PB
359out:
360 rcu_read_unlock();
e2c7d025
EA
361}
362
363static void vfio_listener_region_add(MemoryListener *listener,
364 MemoryRegionSection *section)
365{
ee0bf0e5 366 VFIOContainer *container = container_of(listener, VFIOContainer, listener);
e2c7d025 367 hwaddr iova, end;
55efcc53 368 Int128 llend, llsize;
e2c7d025
EA
369 void *vaddr;
370 int ret;
f4ec5e26
AK
371 VFIOHostDMAWindow *hostwin;
372 bool hostwin_found;
e2c7d025
EA
373
374 if (vfio_listener_skipped_section(section)) {
375 trace_vfio_listener_region_add_skip(
376 section->offset_within_address_space,
377 section->offset_within_address_space +
378 int128_get64(int128_sub(section->size, int128_one())));
379 return;
380 }
381
382 if (unlikely((section->offset_within_address_space & ~TARGET_PAGE_MASK) !=
383 (section->offset_within_region & ~TARGET_PAGE_MASK))) {
384 error_report("%s received unaligned region", __func__);
385 return;
386 }
387
388 iova = TARGET_PAGE_ALIGN(section->offset_within_address_space);
389 llend = int128_make64(section->offset_within_address_space);
390 llend = int128_add(llend, section->size);
391 llend = int128_and(llend, int128_exts64(TARGET_PAGE_MASK));
392
393 if (int128_ge(int128_make64(iova), llend)) {
394 return;
395 }
55efcc53 396 end = int128_get64(int128_sub(llend, int128_one()));
3898aad3 397
2e4109de
AK
398 if (container->iommu_type == VFIO_SPAPR_TCE_v2_IOMMU) {
399 VFIOHostDMAWindow *hostwin;
400 hwaddr pgsize = 0;
401
402 /* For now intersections are not allowed, we may relax this later */
403 QLIST_FOREACH(hostwin, &container->hostwin_list, hostwin_next) {
404 if (ranges_overlap(hostwin->min_iova,
405 hostwin->max_iova - hostwin->min_iova + 1,
406 section->offset_within_address_space,
407 int128_get64(section->size))) {
408 ret = -1;
409 goto fail;
410 }
411 }
412
413 ret = vfio_spapr_create_window(container, section, &pgsize);
414 if (ret) {
415 goto fail;
416 }
417
418 vfio_host_win_add(container, section->offset_within_address_space,
419 section->offset_within_address_space +
420 int128_get64(section->size) - 1, pgsize);
421 }
422
f4ec5e26
AK
423 hostwin_found = false;
424 QLIST_FOREACH(hostwin, &container->hostwin_list, hostwin_next) {
425 if (hostwin->min_iova <= iova && end <= hostwin->max_iova) {
426 hostwin_found = true;
427 break;
428 }
429 }
430
431 if (!hostwin_found) {
3898aad3
DG
432 error_report("vfio: IOMMU container %p can't map guest IOVA region"
433 " 0x%"HWADDR_PRIx"..0x%"HWADDR_PRIx,
55efcc53 434 container, iova, end);
3898aad3
DG
435 ret = -EFAULT;
436 goto fail;
437 }
e2c7d025
EA
438
439 memory_region_ref(section->mr);
440
441 if (memory_region_is_iommu(section->mr)) {
442 VFIOGuestIOMMU *giommu;
443
55efcc53 444 trace_vfio_listener_region_add_iommu(iova, end);
e2c7d025 445 /*
e2c7d025
EA
446 * FIXME: For VFIO iommu types which have KVM acceleration to
447 * avoid bouncing all map/unmaps through qemu this way, this
448 * would be the right place to wire that up (tell the KVM
449 * device emulation the VFIO iommu handles to use).
450 */
e2c7d025
EA
451 giommu = g_malloc0(sizeof(*giommu));
452 giommu->iommu = section->mr;
d78c19b5
AK
453 giommu->iommu_offset = section->offset_within_address_space -
454 section->offset_within_region;
e2c7d025
EA
455 giommu->container = container;
456 giommu->n.notify = vfio_iommu_map_notify;
cdb30812 457 giommu->n.notifier_flags = IOMMU_NOTIFIER_ALL;
e2c7d025 458 QLIST_INSERT_HEAD(&container->giommu_list, giommu, giommu_next);
508ce5eb 459
e2c7d025 460 memory_region_register_iommu_notifier(giommu->iommu, &giommu->n);
f682e9c2 461 memory_region_iommu_replay(giommu->iommu, &giommu->n, false);
e2c7d025
EA
462
463 return;
464 }
465
466 /* Here we assume that memory_region_is_ram(section->mr)==true */
467
e2c7d025
EA
468 vaddr = memory_region_get_ram_ptr(section->mr) +
469 section->offset_within_region +
470 (iova - section->offset_within_address_space);
471
55efcc53 472 trace_vfio_listener_region_add_ram(iova, end, vaddr);
e2c7d025 473
55efcc53
BD
474 llsize = int128_sub(llend, int128_make64(iova));
475
476 ret = vfio_dma_map(container, iova, int128_get64(llsize),
477 vaddr, section->readonly);
e2c7d025
EA
478 if (ret) {
479 error_report("vfio_dma_map(%p, 0x%"HWADDR_PRIx", "
480 "0x%"HWADDR_PRIx", %p) = %d (%m)",
55efcc53 481 container, iova, int128_get64(llsize), vaddr, ret);
ac6dc389
DG
482 goto fail;
483 }
e2c7d025 484
ac6dc389
DG
485 return;
486
487fail:
488 /*
489 * On the initfn path, store the first error in the container so we
490 * can gracefully fail. Runtime, there's not much we can do other
491 * than throw a hardware error.
492 */
493 if (!container->initialized) {
494 if (!container->error) {
495 container->error = ret;
e2c7d025 496 }
ac6dc389
DG
497 } else {
498 hw_error("vfio: DMA mapping failed, unable to continue");
e2c7d025
EA
499 }
500}
501
502static void vfio_listener_region_del(MemoryListener *listener,
503 MemoryRegionSection *section)
504{
ee0bf0e5 505 VFIOContainer *container = container_of(listener, VFIOContainer, listener);
e2c7d025 506 hwaddr iova, end;
7a057b4f 507 Int128 llend, llsize;
e2c7d025
EA
508 int ret;
509
510 if (vfio_listener_skipped_section(section)) {
511 trace_vfio_listener_region_del_skip(
512 section->offset_within_address_space,
513 section->offset_within_address_space +
514 int128_get64(int128_sub(section->size, int128_one())));
515 return;
516 }
517
518 if (unlikely((section->offset_within_address_space & ~TARGET_PAGE_MASK) !=
519 (section->offset_within_region & ~TARGET_PAGE_MASK))) {
520 error_report("%s received unaligned region", __func__);
521 return;
522 }
523
524 if (memory_region_is_iommu(section->mr)) {
525 VFIOGuestIOMMU *giommu;
526
527 QLIST_FOREACH(giommu, &container->giommu_list, giommu_next) {
528 if (giommu->iommu == section->mr) {
d22d8956
AK
529 memory_region_unregister_iommu_notifier(giommu->iommu,
530 &giommu->n);
e2c7d025
EA
531 QLIST_REMOVE(giommu, giommu_next);
532 g_free(giommu);
533 break;
534 }
535 }
536
537 /*
538 * FIXME: We assume the one big unmap below is adequate to
539 * remove any individual page mappings in the IOMMU which
540 * might have been copied into VFIO. This works for a page table
541 * based IOMMU where a big unmap flattens a large range of IO-PTEs.
542 * That may not be true for all IOMMU types.
543 */
544 }
545
546 iova = TARGET_PAGE_ALIGN(section->offset_within_address_space);
7a057b4f
AK
547 llend = int128_make64(section->offset_within_address_space);
548 llend = int128_add(llend, section->size);
549 llend = int128_and(llend, int128_exts64(TARGET_PAGE_MASK));
e2c7d025 550
7a057b4f 551 if (int128_ge(int128_make64(iova), llend)) {
e2c7d025
EA
552 return;
553 }
7a057b4f
AK
554 end = int128_get64(int128_sub(llend, int128_one()));
555
556 llsize = int128_sub(llend, int128_make64(iova));
e2c7d025 557
7a057b4f 558 trace_vfio_listener_region_del(iova, end);
e2c7d025 559
7a057b4f 560 ret = vfio_dma_unmap(container, iova, int128_get64(llsize));
e2c7d025
EA
561 memory_region_unref(section->mr);
562 if (ret) {
563 error_report("vfio_dma_unmap(%p, 0x%"HWADDR_PRIx", "
564 "0x%"HWADDR_PRIx") = %d (%m)",
7a057b4f 565 container, iova, int128_get64(llsize), ret);
e2c7d025 566 }
2e4109de
AK
567
568 if (container->iommu_type == VFIO_SPAPR_TCE_v2_IOMMU) {
569 vfio_spapr_remove_window(container,
570 section->offset_within_address_space);
571 if (vfio_host_win_del(container,
572 section->offset_within_address_space,
573 section->offset_within_address_space +
574 int128_get64(section->size) - 1) < 0) {
575 hw_error("%s: Cannot delete missing window at %"HWADDR_PRIx,
576 __func__, section->offset_within_address_space);
577 }
578 }
e2c7d025
EA
579}
580
51b833f4 581static const MemoryListener vfio_memory_listener = {
e2c7d025
EA
582 .region_add = vfio_listener_region_add,
583 .region_del = vfio_listener_region_del,
584};
585
51b833f4 586static void vfio_listener_release(VFIOContainer *container)
e2c7d025 587{
ee0bf0e5 588 memory_listener_unregister(&container->listener);
318f67ce
AK
589 if (container->iommu_type == VFIO_SPAPR_TCE_v2_IOMMU) {
590 memory_listener_unregister(&container->prereg_listener);
591 }
e2c7d025
EA
592}
593
b53b0f69
AW
594static struct vfio_info_cap_header *
595vfio_get_region_info_cap(struct vfio_region_info *info, uint16_t id)
596{
597 struct vfio_info_cap_header *hdr;
598 void *ptr = info;
599
600 if (!(info->flags & VFIO_REGION_INFO_FLAG_CAPS)) {
601 return NULL;
602 }
603
604 for (hdr = ptr + info->cap_offset; hdr != ptr; hdr = ptr + hdr->next) {
605 if (hdr->id == id) {
606 return hdr;
607 }
608 }
609
610 return NULL;
611}
612
24acf72b
AW
613static int vfio_setup_region_sparse_mmaps(VFIORegion *region,
614 struct vfio_region_info *info)
b53b0f69
AW
615{
616 struct vfio_info_cap_header *hdr;
617 struct vfio_region_info_cap_sparse_mmap *sparse;
24acf72b 618 int i, j;
b53b0f69
AW
619
620 hdr = vfio_get_region_info_cap(info, VFIO_REGION_INFO_CAP_SPARSE_MMAP);
621 if (!hdr) {
24acf72b 622 return -ENODEV;
b53b0f69
AW
623 }
624
625 sparse = container_of(hdr, struct vfio_region_info_cap_sparse_mmap, header);
626
627 trace_vfio_region_sparse_mmap_header(region->vbasedev->name,
628 region->nr, sparse->nr_areas);
629
24acf72b
AW
630 region->mmaps = g_new0(VFIOMmap, sparse->nr_areas);
631
632 for (i = 0, j = 0; i < sparse->nr_areas; i++) {
633 trace_vfio_region_sparse_mmap_entry(i, sparse->areas[i].offset,
634 sparse->areas[i].offset +
635 sparse->areas[i].size);
b53b0f69 636
24acf72b
AW
637 if (sparse->areas[i].size) {
638 region->mmaps[j].offset = sparse->areas[i].offset;
639 region->mmaps[j].size = sparse->areas[i].size;
640 j++;
641 }
b53b0f69 642 }
24acf72b
AW
643
644 region->nr_mmaps = j;
645 region->mmaps = g_realloc(region->mmaps, j * sizeof(VFIOMmap));
646
647 return 0;
b53b0f69
AW
648}
649
db0da029
AW
650int vfio_region_setup(Object *obj, VFIODevice *vbasedev, VFIORegion *region,
651 int index, const char *name)
e2c7d025 652{
db0da029
AW
653 struct vfio_region_info *info;
654 int ret;
655
656 ret = vfio_get_region_info(vbasedev, index, &info);
657 if (ret) {
658 return ret;
659 }
660
661 region->vbasedev = vbasedev;
662 region->flags = info->flags;
663 region->size = info->size;
664 region->fd_offset = info->offset;
665 region->nr = index;
666
667 if (region->size) {
668 region->mem = g_new0(MemoryRegion, 1);
669 memory_region_init_io(region->mem, obj, &vfio_region_ops,
670 region, name, region->size);
e2c7d025 671
db0da029
AW
672 if (!vbasedev->no_mmap &&
673 region->flags & VFIO_REGION_INFO_FLAG_MMAP &&
674 !(region->size & ~qemu_real_host_page_mask)) {
e2c7d025 675
24acf72b 676 ret = vfio_setup_region_sparse_mmaps(region, info);
db0da029 677
24acf72b 678 if (ret) {
b53b0f69
AW
679 region->nr_mmaps = 1;
680 region->mmaps = g_new0(VFIOMmap, region->nr_mmaps);
681 region->mmaps[0].offset = 0;
682 region->mmaps[0].size = region->size;
683 }
e2c7d025 684 }
db0da029
AW
685 }
686
687 g_free(info);
688
689 trace_vfio_region_setup(vbasedev->name, index, name,
690 region->flags, region->fd_offset, region->size);
691 return 0;
692}
e2c7d025 693
db0da029
AW
694int vfio_region_mmap(VFIORegion *region)
695{
696 int i, prot = 0;
697 char *name;
698
699 if (!region->mem) {
700 return 0;
701 }
702
703 prot |= region->flags & VFIO_REGION_INFO_FLAG_READ ? PROT_READ : 0;
704 prot |= region->flags & VFIO_REGION_INFO_FLAG_WRITE ? PROT_WRITE : 0;
705
706 for (i = 0; i < region->nr_mmaps; i++) {
707 region->mmaps[i].mmap = mmap(NULL, region->mmaps[i].size, prot,
708 MAP_SHARED, region->vbasedev->fd,
709 region->fd_offset +
710 region->mmaps[i].offset);
711 if (region->mmaps[i].mmap == MAP_FAILED) {
712 int ret = -errno;
713
714 trace_vfio_region_mmap_fault(memory_region_name(region->mem), i,
715 region->fd_offset +
716 region->mmaps[i].offset,
717 region->fd_offset +
718 region->mmaps[i].offset +
719 region->mmaps[i].size - 1, ret);
720
721 region->mmaps[i].mmap = NULL;
722
723 for (i--; i >= 0; i--) {
724 memory_region_del_subregion(region->mem, &region->mmaps[i].mem);
725 munmap(region->mmaps[i].mmap, region->mmaps[i].size);
726 object_unparent(OBJECT(&region->mmaps[i].mem));
727 region->mmaps[i].mmap = NULL;
728 }
729
730 return ret;
e2c7d025
EA
731 }
732
db0da029
AW
733 name = g_strdup_printf("%s mmaps[%d]",
734 memory_region_name(region->mem), i);
21e00fa5
AW
735 memory_region_init_ram_device_ptr(&region->mmaps[i].mem,
736 memory_region_owner(region->mem),
737 name, region->mmaps[i].size,
738 region->mmaps[i].mmap);
db0da029 739 g_free(name);
db0da029
AW
740 memory_region_add_subregion(region->mem, region->mmaps[i].offset,
741 &region->mmaps[i].mem);
742
743 trace_vfio_region_mmap(memory_region_name(&region->mmaps[i].mem),
744 region->mmaps[i].offset,
745 region->mmaps[i].offset +
746 region->mmaps[i].size - 1);
747 }
748
749 return 0;
750}
751
752void vfio_region_exit(VFIORegion *region)
753{
754 int i;
755
756 if (!region->mem) {
757 return;
758 }
759
760 for (i = 0; i < region->nr_mmaps; i++) {
761 if (region->mmaps[i].mmap) {
762 memory_region_del_subregion(region->mem, &region->mmaps[i].mem);
e2c7d025 763 }
db0da029 764 }
e2c7d025 765
db0da029
AW
766 trace_vfio_region_exit(region->vbasedev->name, region->nr);
767}
768
769void vfio_region_finalize(VFIORegion *region)
770{
771 int i;
772
773 if (!region->mem) {
774 return;
e2c7d025
EA
775 }
776
db0da029
AW
777 for (i = 0; i < region->nr_mmaps; i++) {
778 if (region->mmaps[i].mmap) {
779 munmap(region->mmaps[i].mmap, region->mmaps[i].size);
780 object_unparent(OBJECT(&region->mmaps[i].mem));
781 }
782 }
783
784 object_unparent(OBJECT(region->mem));
785
786 g_free(region->mem);
787 g_free(region->mmaps);
788
789 trace_vfio_region_finalize(region->vbasedev->name, region->nr);
790}
791
792void vfio_region_mmaps_set_enabled(VFIORegion *region, bool enabled)
793{
794 int i;
795
796 if (!region->mem) {
797 return;
798 }
799
800 for (i = 0; i < region->nr_mmaps; i++) {
801 if (region->mmaps[i].mmap) {
802 memory_region_set_enabled(&region->mmaps[i].mem, enabled);
803 }
804 }
e2c7d025 805
db0da029
AW
806 trace_vfio_region_mmaps_set_enabled(memory_region_name(region->mem),
807 enabled);
e2c7d025
EA
808}
809
810void vfio_reset_handler(void *opaque)
811{
812 VFIOGroup *group;
813 VFIODevice *vbasedev;
814
815 QLIST_FOREACH(group, &vfio_group_list, next) {
816 QLIST_FOREACH(vbasedev, &group->device_list, next) {
817 vbasedev->ops->vfio_compute_needs_reset(vbasedev);
818 }
819 }
820
821 QLIST_FOREACH(group, &vfio_group_list, next) {
822 QLIST_FOREACH(vbasedev, &group->device_list, next) {
823 if (vbasedev->needs_reset) {
824 vbasedev->ops->vfio_hot_reset_multi(vbasedev);
825 }
826 }
827 }
828}
829
830static void vfio_kvm_device_add_group(VFIOGroup *group)
831{
832#ifdef CONFIG_KVM
833 struct kvm_device_attr attr = {
834 .group = KVM_DEV_VFIO_GROUP,
835 .attr = KVM_DEV_VFIO_GROUP_ADD,
836 .addr = (uint64_t)(unsigned long)&group->fd,
837 };
838
839 if (!kvm_enabled()) {
840 return;
841 }
842
843 if (vfio_kvm_device_fd < 0) {
844 struct kvm_create_device cd = {
845 .type = KVM_DEV_TYPE_VFIO,
846 };
847
848 if (kvm_vm_ioctl(kvm_state, KVM_CREATE_DEVICE, &cd)) {
78e5b17f 849 error_report("Failed to create KVM VFIO device: %m");
e2c7d025
EA
850 return;
851 }
852
853 vfio_kvm_device_fd = cd.fd;
854 }
855
856 if (ioctl(vfio_kvm_device_fd, KVM_SET_DEVICE_ATTR, &attr)) {
857 error_report("Failed to add group %d to KVM VFIO device: %m",
858 group->groupid);
859 }
860#endif
861}
862
863static void vfio_kvm_device_del_group(VFIOGroup *group)
864{
865#ifdef CONFIG_KVM
866 struct kvm_device_attr attr = {
867 .group = KVM_DEV_VFIO_GROUP,
868 .attr = KVM_DEV_VFIO_GROUP_DEL,
869 .addr = (uint64_t)(unsigned long)&group->fd,
870 };
871
872 if (vfio_kvm_device_fd < 0) {
873 return;
874 }
875
876 if (ioctl(vfio_kvm_device_fd, KVM_SET_DEVICE_ATTR, &attr)) {
877 error_report("Failed to remove group %d from KVM VFIO device: %m",
878 group->groupid);
879 }
880#endif
881}
882
883static VFIOAddressSpace *vfio_get_address_space(AddressSpace *as)
884{
885 VFIOAddressSpace *space;
886
887 QLIST_FOREACH(space, &vfio_address_spaces, list) {
888 if (space->as == as) {
889 return space;
890 }
891 }
892
893 /* No suitable VFIOAddressSpace, create a new one */
894 space = g_malloc0(sizeof(*space));
895 space->as = as;
896 QLIST_INIT(&space->containers);
897
898 QLIST_INSERT_HEAD(&vfio_address_spaces, space, list);
899
900 return space;
901}
902
903static void vfio_put_address_space(VFIOAddressSpace *space)
904{
905 if (QLIST_EMPTY(&space->containers)) {
906 QLIST_REMOVE(space, list);
907 g_free(space);
908 }
909}
910
01905f58
EA
911static int vfio_connect_container(VFIOGroup *group, AddressSpace *as,
912 Error **errp)
e2c7d025
EA
913{
914 VFIOContainer *container;
915 int ret, fd;
916 VFIOAddressSpace *space;
917
918 space = vfio_get_address_space(as);
919
920 QLIST_FOREACH(container, &space->containers, next) {
921 if (!ioctl(group->fd, VFIO_GROUP_SET_CONTAINER, &container->fd)) {
922 group->container = container;
923 QLIST_INSERT_HEAD(&container->group_list, group, container_next);
924 return 0;
925 }
926 }
927
928 fd = qemu_open("/dev/vfio/vfio", O_RDWR);
929 if (fd < 0) {
01905f58 930 error_setg_errno(errp, errno, "failed to open /dev/vfio/vfio");
e2c7d025
EA
931 ret = -errno;
932 goto put_space_exit;
933 }
934
935 ret = ioctl(fd, VFIO_GET_API_VERSION);
936 if (ret != VFIO_API_VERSION) {
01905f58
EA
937 error_setg(errp, "supported vfio version: %d, "
938 "reported version: %d", VFIO_API_VERSION, ret);
e2c7d025
EA
939 ret = -EINVAL;
940 goto close_fd_exit;
941 }
942
943 container = g_malloc0(sizeof(*container));
944 container->space = space;
945 container->fd = fd;
2e6e697e
AW
946 if (ioctl(fd, VFIO_CHECK_EXTENSION, VFIO_TYPE1_IOMMU) ||
947 ioctl(fd, VFIO_CHECK_EXTENSION, VFIO_TYPE1v2_IOMMU)) {
948 bool v2 = !!ioctl(fd, VFIO_CHECK_EXTENSION, VFIO_TYPE1v2_IOMMU);
7a140a57 949 struct vfio_iommu_type1_info info;
2e6e697e 950
e2c7d025
EA
951 ret = ioctl(group->fd, VFIO_GROUP_SET_CONTAINER, &fd);
952 if (ret) {
01905f58 953 error_setg_errno(errp, errno, "failed to set group container");
e2c7d025
EA
954 ret = -errno;
955 goto free_container_exit;
956 }
957
318f67ce
AK
958 container->iommu_type = v2 ? VFIO_TYPE1v2_IOMMU : VFIO_TYPE1_IOMMU;
959 ret = ioctl(fd, VFIO_SET_IOMMU, container->iommu_type);
e2c7d025 960 if (ret) {
01905f58 961 error_setg_errno(errp, errno, "failed to set iommu for container");
e2c7d025
EA
962 ret = -errno;
963 goto free_container_exit;
964 }
3898aad3
DG
965
966 /*
967 * FIXME: This assumes that a Type1 IOMMU can map any 64-bit
968 * IOVA whatsoever. That's not actually true, but the current
969 * kernel interface doesn't tell us what it can map, and the
970 * existing Type1 IOMMUs generally support any IOVA we're
971 * going to actually try in practice.
972 */
7a140a57
DG
973 info.argsz = sizeof(info);
974 ret = ioctl(fd, VFIO_IOMMU_GET_INFO, &info);
975 /* Ignore errors */
f4ec5e26
AK
976 if (ret || !(info.flags & VFIO_IOMMU_INFO_PGSIZES)) {
977 /* Assume 4k IOVA page size */
978 info.iova_pgsizes = 4096;
7a140a57 979 }
f4ec5e26 980 vfio_host_win_add(container, 0, (hwaddr)-1, info.iova_pgsizes);
318f67ce
AK
981 } else if (ioctl(fd, VFIO_CHECK_EXTENSION, VFIO_SPAPR_TCE_IOMMU) ||
982 ioctl(fd, VFIO_CHECK_EXTENSION, VFIO_SPAPR_TCE_v2_IOMMU)) {
3898aad3 983 struct vfio_iommu_spapr_tce_info info;
318f67ce 984 bool v2 = !!ioctl(fd, VFIO_CHECK_EXTENSION, VFIO_SPAPR_TCE_v2_IOMMU);
3898aad3 985
e2c7d025
EA
986 ret = ioctl(group->fd, VFIO_GROUP_SET_CONTAINER, &fd);
987 if (ret) {
01905f58 988 error_setg_errno(errp, errno, "failed to set group container");
e2c7d025
EA
989 ret = -errno;
990 goto free_container_exit;
991 }
318f67ce
AK
992 container->iommu_type =
993 v2 ? VFIO_SPAPR_TCE_v2_IOMMU : VFIO_SPAPR_TCE_IOMMU;
994 ret = ioctl(fd, VFIO_SET_IOMMU, container->iommu_type);
e2c7d025 995 if (ret) {
01905f58 996 error_setg_errno(errp, errno, "failed to set iommu for container");
e2c7d025
EA
997 ret = -errno;
998 goto free_container_exit;
999 }
1000
1001 /*
1002 * The host kernel code implementing VFIO_IOMMU_DISABLE is called
1003 * when container fd is closed so we do not call it explicitly
1004 * in this file.
1005 */
318f67ce
AK
1006 if (!v2) {
1007 ret = ioctl(fd, VFIO_IOMMU_ENABLE);
1008 if (ret) {
01905f58 1009 error_setg_errno(errp, errno, "failed to enable container");
318f67ce
AK
1010 ret = -errno;
1011 goto free_container_exit;
1012 }
1013 } else {
1014 container->prereg_listener = vfio_prereg_listener;
1015
1016 memory_listener_register(&container->prereg_listener,
1017 &address_space_memory);
1018 if (container->error) {
1019 memory_listener_unregister(&container->prereg_listener);
01905f58
EA
1020 ret = container->error;
1021 error_setg(errp,
1022 "RAM memory listener initialization failed for container");
318f67ce
AK
1023 goto free_container_exit;
1024 }
e2c7d025 1025 }
3898aad3 1026
3898aad3
DG
1027 info.argsz = sizeof(info);
1028 ret = ioctl(fd, VFIO_IOMMU_SPAPR_TCE_GET_INFO, &info);
1029 if (ret) {
01905f58
EA
1030 error_setg_errno(errp, errno,
1031 "VFIO_IOMMU_SPAPR_TCE_GET_INFO failed");
3898aad3 1032 ret = -errno;
318f67ce
AK
1033 if (v2) {
1034 memory_listener_unregister(&container->prereg_listener);
1035 }
3898aad3
DG
1036 goto free_container_exit;
1037 }
7a140a57 1038
2e4109de
AK
1039 if (v2) {
1040 /*
1041 * There is a default window in just created container.
1042 * To make region_add/del simpler, we better remove this
1043 * window now and let those iommu_listener callbacks
1044 * create/remove them when needed.
1045 */
1046 ret = vfio_spapr_remove_window(container, info.dma32_window_start);
1047 if (ret) {
01905f58
EA
1048 error_setg_errno(errp, -ret,
1049 "failed to remove existing window");
2e4109de
AK
1050 goto free_container_exit;
1051 }
1052 } else {
1053 /* The default table uses 4K pages */
1054 vfio_host_win_add(container, info.dma32_window_start,
1055 info.dma32_window_start +
1056 info.dma32_window_size - 1,
1057 0x1000);
1058 }
e2c7d025 1059 } else {
01905f58 1060 error_setg(errp, "No available IOMMU models");
e2c7d025
EA
1061 ret = -EINVAL;
1062 goto free_container_exit;
1063 }
1064
ee0bf0e5
DG
1065 container->listener = vfio_memory_listener;
1066
1067 memory_listener_register(&container->listener, container->space->as);
1068
1069 if (container->error) {
1070 ret = container->error;
01905f58
EA
1071 error_setg_errno(errp, -ret,
1072 "memory listener initialization failed for container");
ee0bf0e5
DG
1073 goto listener_release_exit;
1074 }
1075
1076 container->initialized = true;
1077
e2c7d025
EA
1078 QLIST_INIT(&container->group_list);
1079 QLIST_INSERT_HEAD(&space->containers, container, next);
1080
1081 group->container = container;
1082 QLIST_INSERT_HEAD(&container->group_list, group, container_next);
1083
1084 return 0;
1085listener_release_exit:
1086 vfio_listener_release(container);
1087
1088free_container_exit:
1089 g_free(container);
1090
1091close_fd_exit:
1092 close(fd);
1093
1094put_space_exit:
1095 vfio_put_address_space(space);
1096
1097 return ret;
1098}
1099
1100static void vfio_disconnect_container(VFIOGroup *group)
1101{
1102 VFIOContainer *container = group->container;
1103
1104 if (ioctl(group->fd, VFIO_GROUP_UNSET_CONTAINER, &container->fd)) {
1105 error_report("vfio: error disconnecting group %d from container",
1106 group->groupid);
1107 }
1108
1109 QLIST_REMOVE(group, container_next);
1110 group->container = NULL;
1111
1112 if (QLIST_EMPTY(&container->group_list)) {
1113 VFIOAddressSpace *space = container->space;
f8d8a944 1114 VFIOGuestIOMMU *giommu, *tmp;
e2c7d025 1115
ee0bf0e5 1116 vfio_listener_release(container);
e2c7d025 1117 QLIST_REMOVE(container, next);
f8d8a944
AK
1118
1119 QLIST_FOREACH_SAFE(giommu, &container->giommu_list, giommu_next, tmp) {
d22d8956 1120 memory_region_unregister_iommu_notifier(giommu->iommu, &giommu->n);
f8d8a944
AK
1121 QLIST_REMOVE(giommu, giommu_next);
1122 g_free(giommu);
1123 }
1124
e2c7d025
EA
1125 trace_vfio_disconnect_container(container->fd);
1126 close(container->fd);
1127 g_free(container);
1128
1129 vfio_put_address_space(space);
1130 }
1131}
1132
1b808d5b 1133VFIOGroup *vfio_get_group(int groupid, AddressSpace *as, Error **errp)
e2c7d025
EA
1134{
1135 VFIOGroup *group;
1136 char path[32];
1137 struct vfio_group_status status = { .argsz = sizeof(status) };
1138
1139 QLIST_FOREACH(group, &vfio_group_list, next) {
1140 if (group->groupid == groupid) {
1141 /* Found it. Now is it already in the right context? */
1142 if (group->container->space->as == as) {
1143 return group;
1144 } else {
1b808d5b
EA
1145 error_setg(errp, "group %d used in multiple address spaces",
1146 group->groupid);
e2c7d025
EA
1147 return NULL;
1148 }
1149 }
1150 }
1151
1152 group = g_malloc0(sizeof(*group));
1153
1154 snprintf(path, sizeof(path), "/dev/vfio/%d", groupid);
1155 group->fd = qemu_open(path, O_RDWR);
1156 if (group->fd < 0) {
1b808d5b 1157 error_setg_errno(errp, errno, "failed to open %s", path);
e2c7d025
EA
1158 goto free_group_exit;
1159 }
1160
1161 if (ioctl(group->fd, VFIO_GROUP_GET_STATUS, &status)) {
1b808d5b 1162 error_setg_errno(errp, errno, "failed to get group %d status", groupid);
e2c7d025
EA
1163 goto close_fd_exit;
1164 }
1165
1166 if (!(status.flags & VFIO_GROUP_FLAGS_VIABLE)) {
1b808d5b
EA
1167 error_setg(errp, "group %d is not viable", groupid);
1168 error_append_hint(errp,
1169 "Please ensure all devices within the iommu_group "
1170 "are bound to their vfio bus driver.\n");
e2c7d025
EA
1171 goto close_fd_exit;
1172 }
1173
1174 group->groupid = groupid;
1175 QLIST_INIT(&group->device_list);
1176
1b808d5b
EA
1177 if (vfio_connect_container(group, as, errp)) {
1178 error_prepend(errp, "failed to setup container for group %d: ",
1179 groupid);
e2c7d025
EA
1180 goto close_fd_exit;
1181 }
1182
1183 if (QLIST_EMPTY(&vfio_group_list)) {
1184 qemu_register_reset(vfio_reset_handler, NULL);
1185 }
1186
1187 QLIST_INSERT_HEAD(&vfio_group_list, group, next);
1188
1189 vfio_kvm_device_add_group(group);
1190
1191 return group;
1192
1193close_fd_exit:
1194 close(group->fd);
1195
1196free_group_exit:
1197 g_free(group);
1198
1199 return NULL;
1200}
1201
1202void vfio_put_group(VFIOGroup *group)
1203{
77a10d04 1204 if (!group || !QLIST_EMPTY(&group->device_list)) {
e2c7d025
EA
1205 return;
1206 }
1207
1208 vfio_kvm_device_del_group(group);
1209 vfio_disconnect_container(group);
1210 QLIST_REMOVE(group, next);
1211 trace_vfio_put_group(group->fd);
1212 close(group->fd);
1213 g_free(group);
1214
1215 if (QLIST_EMPTY(&vfio_group_list)) {
1216 qemu_unregister_reset(vfio_reset_handler, NULL);
1217 }
1218}
1219
1220int vfio_get_device(VFIOGroup *group, const char *name,
59f7d674 1221 VFIODevice *vbasedev, Error **errp)
e2c7d025
EA
1222{
1223 struct vfio_device_info dev_info = { .argsz = sizeof(dev_info) };
217e9fdc 1224 int ret, fd;
e2c7d025 1225
217e9fdc
PB
1226 fd = ioctl(group->fd, VFIO_GROUP_GET_DEVICE_FD, name);
1227 if (fd < 0) {
59f7d674
EA
1228 error_setg_errno(errp, errno, "error getting device from group %d",
1229 group->groupid);
1230 error_append_hint(errp,
1231 "Verify all devices in group %d are bound to vfio-<bus> "
1232 "or pci-stub and not already in use\n", group->groupid);
217e9fdc 1233 return fd;
e2c7d025
EA
1234 }
1235
217e9fdc 1236 ret = ioctl(fd, VFIO_DEVICE_GET_INFO, &dev_info);
e2c7d025 1237 if (ret) {
59f7d674 1238 error_setg_errno(errp, errno, "error getting device info");
217e9fdc
PB
1239 close(fd);
1240 return ret;
e2c7d025
EA
1241 }
1242
217e9fdc
PB
1243 vbasedev->fd = fd;
1244 vbasedev->group = group;
1245 QLIST_INSERT_HEAD(&group->device_list, vbasedev, next);
1246
e2c7d025
EA
1247 vbasedev->num_irqs = dev_info.num_irqs;
1248 vbasedev->num_regions = dev_info.num_regions;
1249 vbasedev->flags = dev_info.flags;
1250
1251 trace_vfio_get_device(name, dev_info.flags, dev_info.num_regions,
1252 dev_info.num_irqs);
1253
1254 vbasedev->reset_works = !!(dev_info.flags & VFIO_DEVICE_FLAGS_RESET);
217e9fdc 1255 return 0;
e2c7d025
EA
1256}
1257
1258void vfio_put_base_device(VFIODevice *vbasedev)
1259{
77a10d04
PB
1260 if (!vbasedev->group) {
1261 return;
1262 }
e2c7d025
EA
1263 QLIST_REMOVE(vbasedev, next);
1264 vbasedev->group = NULL;
1265 trace_vfio_put_base_device(vbasedev->fd);
1266 close(vbasedev->fd);
1267}
1268
46900226
AW
1269int vfio_get_region_info(VFIODevice *vbasedev, int index,
1270 struct vfio_region_info **info)
1271{
1272 size_t argsz = sizeof(struct vfio_region_info);
1273
1274 *info = g_malloc0(argsz);
1275
1276 (*info)->index = index;
b53b0f69 1277retry:
46900226
AW
1278 (*info)->argsz = argsz;
1279
1280 if (ioctl(vbasedev->fd, VFIO_DEVICE_GET_REGION_INFO, *info)) {
1281 g_free(*info);
e61a424f 1282 *info = NULL;
46900226
AW
1283 return -errno;
1284 }
1285
b53b0f69
AW
1286 if ((*info)->argsz > argsz) {
1287 argsz = (*info)->argsz;
1288 *info = g_realloc(*info, argsz);
1289
1290 goto retry;
1291 }
1292
46900226
AW
1293 return 0;
1294}
1295
e61a424f
AW
1296int vfio_get_dev_region_info(VFIODevice *vbasedev, uint32_t type,
1297 uint32_t subtype, struct vfio_region_info **info)
1298{
1299 int i;
1300
1301 for (i = 0; i < vbasedev->num_regions; i++) {
1302 struct vfio_info_cap_header *hdr;
1303 struct vfio_region_info_cap_type *cap_type;
1304
1305 if (vfio_get_region_info(vbasedev, i, info)) {
1306 continue;
1307 }
1308
1309 hdr = vfio_get_region_info_cap(*info, VFIO_REGION_INFO_CAP_TYPE);
1310 if (!hdr) {
1311 g_free(*info);
1312 continue;
1313 }
1314
1315 cap_type = container_of(hdr, struct vfio_region_info_cap_type, header);
1316
1317 trace_vfio_get_dev_region(vbasedev->name, i,
1318 cap_type->type, cap_type->subtype);
1319
1320 if (cap_type->type == type && cap_type->subtype == subtype) {
1321 return 0;
1322 }
1323
1324 g_free(*info);
1325 }
1326
1327 *info = NULL;
1328 return -ENODEV;
1329}
1330
3153119e
DG
1331/*
1332 * Interfaces for IBM EEH (Enhanced Error Handling)
1333 */
1334static bool vfio_eeh_container_ok(VFIOContainer *container)
1335{
1336 /*
1337 * As of 2016-03-04 (linux-4.5) the host kernel EEH/VFIO
1338 * implementation is broken if there are multiple groups in a
1339 * container. The hardware works in units of Partitionable
1340 * Endpoints (== IOMMU groups) and the EEH operations naively
1341 * iterate across all groups in the container, without any logic
1342 * to make sure the groups have their state synchronized. For
1343 * certain operations (ENABLE) that might be ok, until an error
1344 * occurs, but for others (GET_STATE) it's clearly broken.
1345 */
1346
1347 /*
1348 * XXX Once fixed kernels exist, test for them here
1349 */
1350
1351 if (QLIST_EMPTY(&container->group_list)) {
1352 return false;
1353 }
1354
1355 if (QLIST_NEXT(QLIST_FIRST(&container->group_list), container_next)) {
1356 return false;
1357 }
1358
1359 return true;
1360}
1361
1362static int vfio_eeh_container_op(VFIOContainer *container, uint32_t op)
1363{
1364 struct vfio_eeh_pe_op pe_op = {
1365 .argsz = sizeof(pe_op),
1366 .op = op,
1367 };
1368 int ret;
1369
1370 if (!vfio_eeh_container_ok(container)) {
1371 error_report("vfio/eeh: EEH_PE_OP 0x%x: "
1372 "kernel requires a container with exactly one group", op);
1373 return -EPERM;
1374 }
1375
1376 ret = ioctl(container->fd, VFIO_EEH_PE_OP, &pe_op);
1377 if (ret < 0) {
1378 error_report("vfio/eeh: EEH_PE_OP 0x%x failed: %m", op);
1379 return -errno;
1380 }
1381
d917e88d 1382 return ret;
3153119e
DG
1383}
1384
1385static VFIOContainer *vfio_eeh_as_container(AddressSpace *as)
1386{
1387 VFIOAddressSpace *space = vfio_get_address_space(as);
1388 VFIOContainer *container = NULL;
1389
1390 if (QLIST_EMPTY(&space->containers)) {
1391 /* No containers to act on */
1392 goto out;
1393 }
1394
1395 container = QLIST_FIRST(&space->containers);
1396
1397 if (QLIST_NEXT(container, next)) {
1398 /* We don't yet have logic to synchronize EEH state across
1399 * multiple containers */
1400 container = NULL;
1401 goto out;
1402 }
1403
1404out:
1405 vfio_put_address_space(space);
1406 return container;
1407}
1408
1409bool vfio_eeh_as_ok(AddressSpace *as)
1410{
1411 VFIOContainer *container = vfio_eeh_as_container(as);
1412
1413 return (container != NULL) && vfio_eeh_container_ok(container);
1414}
1415
1416int vfio_eeh_as_op(AddressSpace *as, uint32_t op)
1417{
1418 VFIOContainer *container = vfio_eeh_as_container(as);
1419
1420 if (!container) {
1421 return -ENODEV;
1422 }
1423 return vfio_eeh_container_op(container, op);
1424}