vfio: Handle zero-length sparse mmap ranges
[qemu/ar7.git] / hw / vfio / common.c
blobf528309b817f3c3629a8fbb8cfefea637b6d81fc
1 /*
2 * generic functions used by VFIO devices
4 * Copyright Red Hat, Inc. 2012
6 * Authors:
7 * Alex Williamson <alex.williamson@redhat.com>
9 * This work is licensed under the terms of the GNU GPL, version 2. See
10 * the COPYING file in the top-level directory.
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)
21 #include "qemu/osdep.h"
22 #include <sys/ioctl.h>
23 #ifdef CONFIG_KVM
24 #include <linux/kvm.h>
25 #endif
26 #include <linux/vfio.h>
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"
34 #include "qemu/range.h"
35 #include "sysemu/kvm.h"
36 #include "trace.h"
37 #include "qapi/error.h"
39 struct vfio_group_head vfio_group_list =
40 QLIST_HEAD_INITIALIZER(vfio_group_list);
41 struct vfio_as_head vfio_address_spaces =
42 QLIST_HEAD_INITIALIZER(vfio_address_spaces);
44 #ifdef CONFIG_KVM
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.
52 static int vfio_kvm_device_fd = -1;
53 #endif
56 * Common VFIO interrupt disable
58 void vfio_disable_irqindex(VFIODevice *vbasedev, int index)
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,
68 ioctl(vbasedev->fd, VFIO_DEVICE_SET_IRQS, &irq_set);
71 void vfio_unmask_single_irqindex(VFIODevice *vbasedev, int index)
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,
81 ioctl(vbasedev->fd, VFIO_DEVICE_SET_IRQS, &irq_set);
84 void vfio_mask_single_irqindex(VFIODevice *vbasedev, int index)
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,
94 ioctl(vbasedev->fd, VFIO_DEVICE_SET_IRQS, &irq_set);
98 * IO Port/MMIO - Beware of the endians, VFIO is always little endian
100 void vfio_region_write(void *opaque, hwaddr addr,
101 uint64_t data, unsigned size)
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;
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;
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);
134 trace_vfio_region_write(vbasedev->name, region->nr, addr, data, size);
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.
144 vbasedev->ops->vfio_eoi(vbasedev);
147 uint64_t vfio_region_read(void *opaque,
148 hwaddr addr, unsigned size)
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;
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;
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;
181 trace_vfio_region_read(vbasedev->name, region->nr, addr, size, data);
183 /* Same as write above */
184 vbasedev->ops->vfio_eoi(vbasedev);
186 return data;
189 const MemoryRegionOps vfio_region_ops = {
190 .read = vfio_region_read,
191 .write = vfio_region_write,
192 .endianness = DEVICE_LITTLE_ENDIAN,
196 * DMA - Mapping and unmapping for the "type1" IOMMU interface used on x86
198 static int vfio_dma_unmap(VFIOContainer *container,
199 hwaddr iova, ram_addr_t size)
201 struct vfio_iommu_type1_dma_unmap unmap = {
202 .argsz = sizeof(unmap),
203 .flags = 0,
204 .iova = iova,
205 .size = size,
208 if (ioctl(container->fd, VFIO_IOMMU_UNMAP_DMA, &unmap)) {
209 error_report("VFIO_UNMAP_DMA: %d", -errno);
210 return -errno;
213 return 0;
216 static int vfio_dma_map(VFIOContainer *container, hwaddr iova,
217 ram_addr_t size, void *vaddr, bool readonly)
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,
227 if (!readonly) {
228 map.flags |= VFIO_DMA_MAP_FLAG_WRITE;
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
234 * the VGA ROM space.
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;
242 error_report("VFIO_MAP_DMA: %d", -errno);
243 return -errno;
246 static void vfio_host_win_add(VFIOContainer *container,
247 hwaddr min_iova, hwaddr max_iova,
248 uint64_t iova_pgsizes)
250 VFIOHostDMAWindow *hostwin;
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__);
261 hostwin = g_malloc0(sizeof(*hostwin));
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);
269 static int vfio_host_win_del(VFIOContainer *container, hwaddr min_iova,
270 hwaddr max_iova)
272 VFIOHostDMAWindow *hostwin;
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;
281 return -1;
284 static bool vfio_listener_skipped_section(MemoryRegionSection *section)
286 return (!memory_region_is_ram(section->mr) &&
287 !memory_region_is_iommu(section->mr)) ||
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.
294 section->offset_within_address_space & (1ULL << 63);
297 static void vfio_iommu_map_notify(IOMMUNotifier *n, IOMMUTLBEntry *iotlb)
299 VFIOGuestIOMMU *giommu = container_of(n, VFIOGuestIOMMU, n);
300 VFIOContainer *container = giommu->container;
301 hwaddr iova = iotlb->iova + giommu->iommu_offset;
302 MemoryRegion *mr;
303 hwaddr xlat;
304 hwaddr len = iotlb->addr_mask + 1;
305 void *vaddr;
306 int ret;
308 trace_vfio_iommu_map_notify(iova, iova + iotlb->addr_mask);
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;
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.
321 rcu_read_lock();
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)) {
326 error_report("iommu map to non memory area %"HWADDR_PRIx"",
327 xlat);
328 goto out;
331 * Translation truncates length to the IOMMU page size,
332 * check that it did not truncate too much.
334 if (len & iotlb->addr_mask) {
335 error_report("iommu has granularity incompatible with target AS");
336 goto out;
339 if ((iotlb->perm & IOMMU_RW) != IOMMU_NONE) {
340 vaddr = memory_region_get_ram_ptr(mr) + xlat;
341 ret = vfio_dma_map(container, iova,
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)",
347 container, iova,
348 iotlb->addr_mask + 1, vaddr, ret);
350 } else {
351 ret = vfio_dma_unmap(container, iova, iotlb->addr_mask + 1);
352 if (ret) {
353 error_report("vfio_dma_unmap(%p, 0x%"HWADDR_PRIx", "
354 "0x%"HWADDR_PRIx") = %d (%m)",
355 container, iova,
356 iotlb->addr_mask + 1, ret);
359 out:
360 rcu_read_unlock();
363 static void vfio_listener_region_add(MemoryListener *listener,
364 MemoryRegionSection *section)
366 VFIOContainer *container = container_of(listener, VFIOContainer, listener);
367 hwaddr iova, end;
368 Int128 llend, llsize;
369 void *vaddr;
370 int ret;
371 VFIOHostDMAWindow *hostwin;
372 bool hostwin_found;
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;
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;
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));
393 if (int128_ge(int128_make64(iova), llend)) {
394 return;
396 end = int128_get64(int128_sub(llend, int128_one()));
398 if (container->iommu_type == VFIO_SPAPR_TCE_v2_IOMMU) {
399 VFIOHostDMAWindow *hostwin;
400 hwaddr pgsize = 0;
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;
413 ret = vfio_spapr_create_window(container, section, &pgsize);
414 if (ret) {
415 goto fail;
418 vfio_host_win_add(container, section->offset_within_address_space,
419 section->offset_within_address_space +
420 int128_get64(section->size) - 1, pgsize);
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;
431 if (!hostwin_found) {
432 error_report("vfio: IOMMU container %p can't map guest IOVA region"
433 " 0x%"HWADDR_PRIx"..0x%"HWADDR_PRIx,
434 container, iova, end);
435 ret = -EFAULT;
436 goto fail;
439 memory_region_ref(section->mr);
441 if (memory_region_is_iommu(section->mr)) {
442 VFIOGuestIOMMU *giommu;
444 trace_vfio_listener_region_add_iommu(iova, end);
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).
451 giommu = g_malloc0(sizeof(*giommu));
452 giommu->iommu = section->mr;
453 giommu->iommu_offset = section->offset_within_address_space -
454 section->offset_within_region;
455 giommu->container = container;
456 giommu->n.notify = vfio_iommu_map_notify;
457 giommu->n.notifier_flags = IOMMU_NOTIFIER_ALL;
458 QLIST_INSERT_HEAD(&container->giommu_list, giommu, giommu_next);
460 memory_region_register_iommu_notifier(giommu->iommu, &giommu->n);
461 memory_region_iommu_replay(giommu->iommu, &giommu->n, false);
463 return;
466 /* Here we assume that memory_region_is_ram(section->mr)==true */
468 vaddr = memory_region_get_ram_ptr(section->mr) +
469 section->offset_within_region +
470 (iova - section->offset_within_address_space);
472 trace_vfio_listener_region_add_ram(iova, end, vaddr);
474 llsize = int128_sub(llend, int128_make64(iova));
476 ret = vfio_dma_map(container, iova, int128_get64(llsize),
477 vaddr, section->readonly);
478 if (ret) {
479 error_report("vfio_dma_map(%p, 0x%"HWADDR_PRIx", "
480 "0x%"HWADDR_PRIx", %p) = %d (%m)",
481 container, iova, int128_get64(llsize), vaddr, ret);
482 goto fail;
485 return;
487 fail:
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.
493 if (!container->initialized) {
494 if (!container->error) {
495 container->error = ret;
497 } else {
498 hw_error("vfio: DMA mapping failed, unable to continue");
502 static void vfio_listener_region_del(MemoryListener *listener,
503 MemoryRegionSection *section)
505 VFIOContainer *container = container_of(listener, VFIOContainer, listener);
506 hwaddr iova, end;
507 Int128 llend, llsize;
508 int ret;
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;
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;
524 if (memory_region_is_iommu(section->mr)) {
525 VFIOGuestIOMMU *giommu;
527 QLIST_FOREACH(giommu, &container->giommu_list, giommu_next) {
528 if (giommu->iommu == section->mr) {
529 memory_region_unregister_iommu_notifier(giommu->iommu,
530 &giommu->n);
531 QLIST_REMOVE(giommu, giommu_next);
532 g_free(giommu);
533 break;
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.
546 iova = TARGET_PAGE_ALIGN(section->offset_within_address_space);
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));
551 if (int128_ge(int128_make64(iova), llend)) {
552 return;
554 end = int128_get64(int128_sub(llend, int128_one()));
556 llsize = int128_sub(llend, int128_make64(iova));
558 trace_vfio_listener_region_del(iova, end);
560 ret = vfio_dma_unmap(container, iova, int128_get64(llsize));
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)",
565 container, iova, int128_get64(llsize), ret);
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);
581 static const MemoryListener vfio_memory_listener = {
582 .region_add = vfio_listener_region_add,
583 .region_del = vfio_listener_region_del,
586 static void vfio_listener_release(VFIOContainer *container)
588 memory_listener_unregister(&container->listener);
589 if (container->iommu_type == VFIO_SPAPR_TCE_v2_IOMMU) {
590 memory_listener_unregister(&container->prereg_listener);
594 static struct vfio_info_cap_header *
595 vfio_get_region_info_cap(struct vfio_region_info *info, uint16_t id)
597 struct vfio_info_cap_header *hdr;
598 void *ptr = info;
600 if (!(info->flags & VFIO_REGION_INFO_FLAG_CAPS)) {
601 return NULL;
604 for (hdr = ptr + info->cap_offset; hdr != ptr; hdr = ptr + hdr->next) {
605 if (hdr->id == id) {
606 return hdr;
610 return NULL;
613 static int vfio_setup_region_sparse_mmaps(VFIORegion *region,
614 struct vfio_region_info *info)
616 struct vfio_info_cap_header *hdr;
617 struct vfio_region_info_cap_sparse_mmap *sparse;
618 int i, j;
620 hdr = vfio_get_region_info_cap(info, VFIO_REGION_INFO_CAP_SPARSE_MMAP);
621 if (!hdr) {
622 return -ENODEV;
625 sparse = container_of(hdr, struct vfio_region_info_cap_sparse_mmap, header);
627 trace_vfio_region_sparse_mmap_header(region->vbasedev->name,
628 region->nr, sparse->nr_areas);
630 region->mmaps = g_new0(VFIOMmap, sparse->nr_areas);
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);
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++;
644 region->nr_mmaps = j;
645 region->mmaps = g_realloc(region->mmaps, j * sizeof(VFIOMmap));
647 return 0;
650 int vfio_region_setup(Object *obj, VFIODevice *vbasedev, VFIORegion *region,
651 int index, const char *name)
653 struct vfio_region_info *info;
654 int ret;
656 ret = vfio_get_region_info(vbasedev, index, &info);
657 if (ret) {
658 return ret;
661 region->vbasedev = vbasedev;
662 region->flags = info->flags;
663 region->size = info->size;
664 region->fd_offset = info->offset;
665 region->nr = index;
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);
672 if (!vbasedev->no_mmap &&
673 region->flags & VFIO_REGION_INFO_FLAG_MMAP &&
674 !(region->size & ~qemu_real_host_page_mask)) {
676 ret = vfio_setup_region_sparse_mmaps(region, info);
678 if (ret) {
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;
687 g_free(info);
689 trace_vfio_region_setup(vbasedev->name, index, name,
690 region->flags, region->fd_offset, region->size);
691 return 0;
694 int vfio_region_mmap(VFIORegion *region)
696 int i, prot = 0;
697 char *name;
699 if (!region->mem) {
700 return 0;
703 prot |= region->flags & VFIO_REGION_INFO_FLAG_READ ? PROT_READ : 0;
704 prot |= region->flags & VFIO_REGION_INFO_FLAG_WRITE ? PROT_WRITE : 0;
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;
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);
721 region->mmaps[i].mmap = NULL;
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;
730 return ret;
733 name = g_strdup_printf("%s mmaps[%d]",
734 memory_region_name(region->mem), i);
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);
739 g_free(name);
740 memory_region_add_subregion(region->mem, region->mmaps[i].offset,
741 &region->mmaps[i].mem);
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);
749 return 0;
752 void vfio_region_exit(VFIORegion *region)
754 int i;
756 if (!region->mem) {
757 return;
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);
766 trace_vfio_region_exit(region->vbasedev->name, region->nr);
769 void vfio_region_finalize(VFIORegion *region)
771 int i;
773 if (!region->mem) {
774 return;
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));
784 object_unparent(OBJECT(region->mem));
786 g_free(region->mem);
787 g_free(region->mmaps);
789 trace_vfio_region_finalize(region->vbasedev->name, region->nr);
792 void vfio_region_mmaps_set_enabled(VFIORegion *region, bool enabled)
794 int i;
796 if (!region->mem) {
797 return;
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);
806 trace_vfio_region_mmaps_set_enabled(memory_region_name(region->mem),
807 enabled);
810 void vfio_reset_handler(void *opaque)
812 VFIOGroup *group;
813 VFIODevice *vbasedev;
815 QLIST_FOREACH(group, &vfio_group_list, next) {
816 QLIST_FOREACH(vbasedev, &group->device_list, next) {
817 vbasedev->ops->vfio_compute_needs_reset(vbasedev);
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);
830 static void vfio_kvm_device_add_group(VFIOGroup *group)
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,
839 if (!kvm_enabled()) {
840 return;
843 if (vfio_kvm_device_fd < 0) {
844 struct kvm_create_device cd = {
845 .type = KVM_DEV_TYPE_VFIO,
848 if (kvm_vm_ioctl(kvm_state, KVM_CREATE_DEVICE, &cd)) {
849 error_report("Failed to create KVM VFIO device: %m");
850 return;
853 vfio_kvm_device_fd = cd.fd;
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);
860 #endif
863 static void vfio_kvm_device_del_group(VFIOGroup *group)
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,
872 if (vfio_kvm_device_fd < 0) {
873 return;
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);
880 #endif
883 static VFIOAddressSpace *vfio_get_address_space(AddressSpace *as)
885 VFIOAddressSpace *space;
887 QLIST_FOREACH(space, &vfio_address_spaces, list) {
888 if (space->as == as) {
889 return space;
893 /* No suitable VFIOAddressSpace, create a new one */
894 space = g_malloc0(sizeof(*space));
895 space->as = as;
896 QLIST_INIT(&space->containers);
898 QLIST_INSERT_HEAD(&vfio_address_spaces, space, list);
900 return space;
903 static void vfio_put_address_space(VFIOAddressSpace *space)
905 if (QLIST_EMPTY(&space->containers)) {
906 QLIST_REMOVE(space, list);
907 g_free(space);
911 static int vfio_connect_container(VFIOGroup *group, AddressSpace *as,
912 Error **errp)
914 VFIOContainer *container;
915 int ret, fd;
916 VFIOAddressSpace *space;
918 space = vfio_get_address_space(as);
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;
928 fd = qemu_open("/dev/vfio/vfio", O_RDWR);
929 if (fd < 0) {
930 error_setg_errno(errp, errno, "failed to open /dev/vfio/vfio");
931 ret = -errno;
932 goto put_space_exit;
935 ret = ioctl(fd, VFIO_GET_API_VERSION);
936 if (ret != VFIO_API_VERSION) {
937 error_setg(errp, "supported vfio version: %d, "
938 "reported version: %d", VFIO_API_VERSION, ret);
939 ret = -EINVAL;
940 goto close_fd_exit;
943 container = g_malloc0(sizeof(*container));
944 container->space = space;
945 container->fd = fd;
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);
949 struct vfio_iommu_type1_info info;
951 ret = ioctl(group->fd, VFIO_GROUP_SET_CONTAINER, &fd);
952 if (ret) {
953 error_setg_errno(errp, errno, "failed to set group container");
954 ret = -errno;
955 goto free_container_exit;
958 container->iommu_type = v2 ? VFIO_TYPE1v2_IOMMU : VFIO_TYPE1_IOMMU;
959 ret = ioctl(fd, VFIO_SET_IOMMU, container->iommu_type);
960 if (ret) {
961 error_setg_errno(errp, errno, "failed to set iommu for container");
962 ret = -errno;
963 goto free_container_exit;
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.
973 info.argsz = sizeof(info);
974 ret = ioctl(fd, VFIO_IOMMU_GET_INFO, &info);
975 /* Ignore errors */
976 if (ret || !(info.flags & VFIO_IOMMU_INFO_PGSIZES)) {
977 /* Assume 4k IOVA page size */
978 info.iova_pgsizes = 4096;
980 vfio_host_win_add(container, 0, (hwaddr)-1, info.iova_pgsizes);
981 } else if (ioctl(fd, VFIO_CHECK_EXTENSION, VFIO_SPAPR_TCE_IOMMU) ||
982 ioctl(fd, VFIO_CHECK_EXTENSION, VFIO_SPAPR_TCE_v2_IOMMU)) {
983 struct vfio_iommu_spapr_tce_info info;
984 bool v2 = !!ioctl(fd, VFIO_CHECK_EXTENSION, VFIO_SPAPR_TCE_v2_IOMMU);
986 ret = ioctl(group->fd, VFIO_GROUP_SET_CONTAINER, &fd);
987 if (ret) {
988 error_setg_errno(errp, errno, "failed to set group container");
989 ret = -errno;
990 goto free_container_exit;
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);
995 if (ret) {
996 error_setg_errno(errp, errno, "failed to set iommu for container");
997 ret = -errno;
998 goto free_container_exit;
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.
1006 if (!v2) {
1007 ret = ioctl(fd, VFIO_IOMMU_ENABLE);
1008 if (ret) {
1009 error_setg_errno(errp, errno, "failed to enable container");
1010 ret = -errno;
1011 goto free_container_exit;
1013 } else {
1014 container->prereg_listener = vfio_prereg_listener;
1016 memory_listener_register(&container->prereg_listener,
1017 &address_space_memory);
1018 if (container->error) {
1019 memory_listener_unregister(&container->prereg_listener);
1020 ret = container->error;
1021 error_setg(errp,
1022 "RAM memory listener initialization failed for container");
1023 goto free_container_exit;
1027 info.argsz = sizeof(info);
1028 ret = ioctl(fd, VFIO_IOMMU_SPAPR_TCE_GET_INFO, &info);
1029 if (ret) {
1030 error_setg_errno(errp, errno,
1031 "VFIO_IOMMU_SPAPR_TCE_GET_INFO failed");
1032 ret = -errno;
1033 if (v2) {
1034 memory_listener_unregister(&container->prereg_listener);
1036 goto free_container_exit;
1039 if (v2) {
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.
1046 ret = vfio_spapr_remove_window(container, info.dma32_window_start);
1047 if (ret) {
1048 error_setg_errno(errp, -ret,
1049 "failed to remove existing window");
1050 goto free_container_exit;
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);
1059 } else {
1060 error_setg(errp, "No available IOMMU models");
1061 ret = -EINVAL;
1062 goto free_container_exit;
1065 container->listener = vfio_memory_listener;
1067 memory_listener_register(&container->listener, container->space->as);
1069 if (container->error) {
1070 ret = container->error;
1071 error_setg_errno(errp, -ret,
1072 "memory listener initialization failed for container");
1073 goto listener_release_exit;
1076 container->initialized = true;
1078 QLIST_INIT(&container->group_list);
1079 QLIST_INSERT_HEAD(&space->containers, container, next);
1081 group->container = container;
1082 QLIST_INSERT_HEAD(&container->group_list, group, container_next);
1084 return 0;
1085 listener_release_exit:
1086 vfio_listener_release(container);
1088 free_container_exit:
1089 g_free(container);
1091 close_fd_exit:
1092 close(fd);
1094 put_space_exit:
1095 vfio_put_address_space(space);
1097 return ret;
1100 static void vfio_disconnect_container(VFIOGroup *group)
1102 VFIOContainer *container = group->container;
1104 if (ioctl(group->fd, VFIO_GROUP_UNSET_CONTAINER, &container->fd)) {
1105 error_report("vfio: error disconnecting group %d from container",
1106 group->groupid);
1109 QLIST_REMOVE(group, container_next);
1110 group->container = NULL;
1112 if (QLIST_EMPTY(&container->group_list)) {
1113 VFIOAddressSpace *space = container->space;
1114 VFIOGuestIOMMU *giommu, *tmp;
1116 vfio_listener_release(container);
1117 QLIST_REMOVE(container, next);
1119 QLIST_FOREACH_SAFE(giommu, &container->giommu_list, giommu_next, tmp) {
1120 memory_region_unregister_iommu_notifier(giommu->iommu, &giommu->n);
1121 QLIST_REMOVE(giommu, giommu_next);
1122 g_free(giommu);
1125 trace_vfio_disconnect_container(container->fd);
1126 close(container->fd);
1127 g_free(container);
1129 vfio_put_address_space(space);
1133 VFIOGroup *vfio_get_group(int groupid, AddressSpace *as, Error **errp)
1135 VFIOGroup *group;
1136 char path[32];
1137 struct vfio_group_status status = { .argsz = sizeof(status) };
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 {
1145 error_setg(errp, "group %d used in multiple address spaces",
1146 group->groupid);
1147 return NULL;
1152 group = g_malloc0(sizeof(*group));
1154 snprintf(path, sizeof(path), "/dev/vfio/%d", groupid);
1155 group->fd = qemu_open(path, O_RDWR);
1156 if (group->fd < 0) {
1157 error_setg_errno(errp, errno, "failed to open %s", path);
1158 goto free_group_exit;
1161 if (ioctl(group->fd, VFIO_GROUP_GET_STATUS, &status)) {
1162 error_setg_errno(errp, errno, "failed to get group %d status", groupid);
1163 goto close_fd_exit;
1166 if (!(status.flags & VFIO_GROUP_FLAGS_VIABLE)) {
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");
1171 goto close_fd_exit;
1174 group->groupid = groupid;
1175 QLIST_INIT(&group->device_list);
1177 if (vfio_connect_container(group, as, errp)) {
1178 error_prepend(errp, "failed to setup container for group %d: ",
1179 groupid);
1180 goto close_fd_exit;
1183 if (QLIST_EMPTY(&vfio_group_list)) {
1184 qemu_register_reset(vfio_reset_handler, NULL);
1187 QLIST_INSERT_HEAD(&vfio_group_list, group, next);
1189 vfio_kvm_device_add_group(group);
1191 return group;
1193 close_fd_exit:
1194 close(group->fd);
1196 free_group_exit:
1197 g_free(group);
1199 return NULL;
1202 void vfio_put_group(VFIOGroup *group)
1204 if (!group || !QLIST_EMPTY(&group->device_list)) {
1205 return;
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);
1215 if (QLIST_EMPTY(&vfio_group_list)) {
1216 qemu_unregister_reset(vfio_reset_handler, NULL);
1220 int vfio_get_device(VFIOGroup *group, const char *name,
1221 VFIODevice *vbasedev, Error **errp)
1223 struct vfio_device_info dev_info = { .argsz = sizeof(dev_info) };
1224 int ret, fd;
1226 fd = ioctl(group->fd, VFIO_GROUP_GET_DEVICE_FD, name);
1227 if (fd < 0) {
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);
1233 return fd;
1236 ret = ioctl(fd, VFIO_DEVICE_GET_INFO, &dev_info);
1237 if (ret) {
1238 error_setg_errno(errp, errno, "error getting device info");
1239 close(fd);
1240 return ret;
1243 vbasedev->fd = fd;
1244 vbasedev->group = group;
1245 QLIST_INSERT_HEAD(&group->device_list, vbasedev, next);
1247 vbasedev->num_irqs = dev_info.num_irqs;
1248 vbasedev->num_regions = dev_info.num_regions;
1249 vbasedev->flags = dev_info.flags;
1251 trace_vfio_get_device(name, dev_info.flags, dev_info.num_regions,
1252 dev_info.num_irqs);
1254 vbasedev->reset_works = !!(dev_info.flags & VFIO_DEVICE_FLAGS_RESET);
1255 return 0;
1258 void vfio_put_base_device(VFIODevice *vbasedev)
1260 if (!vbasedev->group) {
1261 return;
1263 QLIST_REMOVE(vbasedev, next);
1264 vbasedev->group = NULL;
1265 trace_vfio_put_base_device(vbasedev->fd);
1266 close(vbasedev->fd);
1269 int vfio_get_region_info(VFIODevice *vbasedev, int index,
1270 struct vfio_region_info **info)
1272 size_t argsz = sizeof(struct vfio_region_info);
1274 *info = g_malloc0(argsz);
1276 (*info)->index = index;
1277 retry:
1278 (*info)->argsz = argsz;
1280 if (ioctl(vbasedev->fd, VFIO_DEVICE_GET_REGION_INFO, *info)) {
1281 g_free(*info);
1282 *info = NULL;
1283 return -errno;
1286 if ((*info)->argsz > argsz) {
1287 argsz = (*info)->argsz;
1288 *info = g_realloc(*info, argsz);
1290 goto retry;
1293 return 0;
1296 int vfio_get_dev_region_info(VFIODevice *vbasedev, uint32_t type,
1297 uint32_t subtype, struct vfio_region_info **info)
1299 int i;
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;
1305 if (vfio_get_region_info(vbasedev, i, info)) {
1306 continue;
1309 hdr = vfio_get_region_info_cap(*info, VFIO_REGION_INFO_CAP_TYPE);
1310 if (!hdr) {
1311 g_free(*info);
1312 continue;
1315 cap_type = container_of(hdr, struct vfio_region_info_cap_type, header);
1317 trace_vfio_get_dev_region(vbasedev->name, i,
1318 cap_type->type, cap_type->subtype);
1320 if (cap_type->type == type && cap_type->subtype == subtype) {
1321 return 0;
1324 g_free(*info);
1327 *info = NULL;
1328 return -ENODEV;
1332 * Interfaces for IBM EEH (Enhanced Error Handling)
1334 static bool vfio_eeh_container_ok(VFIOContainer *container)
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.
1348 * XXX Once fixed kernels exist, test for them here
1351 if (QLIST_EMPTY(&container->group_list)) {
1352 return false;
1355 if (QLIST_NEXT(QLIST_FIRST(&container->group_list), container_next)) {
1356 return false;
1359 return true;
1362 static int vfio_eeh_container_op(VFIOContainer *container, uint32_t op)
1364 struct vfio_eeh_pe_op pe_op = {
1365 .argsz = sizeof(pe_op),
1366 .op = op,
1368 int ret;
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;
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;
1382 return ret;
1385 static VFIOContainer *vfio_eeh_as_container(AddressSpace *as)
1387 VFIOAddressSpace *space = vfio_get_address_space(as);
1388 VFIOContainer *container = NULL;
1390 if (QLIST_EMPTY(&space->containers)) {
1391 /* No containers to act on */
1392 goto out;
1395 container = QLIST_FIRST(&space->containers);
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;
1404 out:
1405 vfio_put_address_space(space);
1406 return container;
1409 bool vfio_eeh_as_ok(AddressSpace *as)
1411 VFIOContainer *container = vfio_eeh_as_container(as);
1413 return (container != NULL) && vfio_eeh_container_ok(container);
1416 int vfio_eeh_as_op(AddressSpace *as, uint32_t op)
1418 VFIOContainer *container = vfio_eeh_as_container(as);
1420 if (!container) {
1421 return -ENODEV;
1423 return vfio_eeh_container_op(container, op);