| /* |
| * generic functions used by VFIO devices |
| * |
| * Copyright Red Hat, Inc. 2012 |
| * |
| * Authors: |
| * Alex Williamson <alex.williamson@redhat.com> |
| * |
| * This work is licensed under the terms of the GNU GPL, version 2. See |
| * the COPYING file in the top-level directory. |
| * |
| * Based on qemu-kvm device-assignment: |
| * Adapted for KVM by Qumranet. |
| * Copyright (c) 2007, Neocleus, Alex Novik (alex@neocleus.com) |
| * Copyright (c) 2007, Neocleus, Guy Zana (guy@neocleus.com) |
| * Copyright (C) 2008, Qumranet, Amit Shah (amit.shah@qumranet.com) |
| * Copyright (C) 2008, Red Hat, Amit Shah (amit.shah@redhat.com) |
| * Copyright (C) 2008, IBM, Muli Ben-Yehuda (muli@il.ibm.com) |
| */ |
| |
| #include "qemu/osdep.h" |
| #include <sys/ioctl.h> |
| #ifdef CONFIG_KVM |
| #include <linux/kvm.h> |
| #endif |
| #include <linux/vfio.h> |
| |
| #include "hw/vfio/vfio-common.h" |
| #include "hw/vfio/vfio.h" |
| #include "hw/vfio/pci.h" |
| #include "exec/address-spaces.h" |
| #include "exec/memory.h" |
| #include "exec/ram_addr.h" |
| #include "hw/hw.h" |
| #include "qemu/error-report.h" |
| #include "qemu/main-loop.h" |
| #include "qemu/range.h" |
| #include "sysemu/kvm.h" |
| #include "sysemu/reset.h" |
| #include "sysemu/runstate.h" |
| #include "trace.h" |
| #include "qapi/error.h" |
| #include "migration/migration.h" |
| #include "migration/misc.h" |
| #include "migration/blocker.h" |
| #include "migration/qemu-file.h" |
| #include "sysemu/tpm.h" |
| |
| VFIOGroupList vfio_group_list = |
| QLIST_HEAD_INITIALIZER(vfio_group_list); |
| static QLIST_HEAD(, VFIOAddressSpace) vfio_address_spaces = |
| QLIST_HEAD_INITIALIZER(vfio_address_spaces); |
| |
| #ifdef CONFIG_KVM |
| /* |
| * We have a single VFIO pseudo device per KVM VM. Once created it lives |
| * for the life of the VM. Closing the file descriptor only drops our |
| * reference to it and the device's reference to kvm. Therefore once |
| * initialized, this file descriptor is only released on QEMU exit and |
| * we'll re-use it should another vfio device be attached before then. |
| */ |
| static int vfio_kvm_device_fd = -1; |
| #endif |
| |
| static int vfio_ram_block_discard_disable(VFIOContainer *container, bool state) |
| { |
| switch (container->iommu_type) { |
| case VFIO_TYPE1v2_IOMMU: |
| case VFIO_TYPE1_IOMMU: |
| /* |
| * We support coordinated discarding of RAM via the RamDiscardManager. |
| */ |
| return ram_block_uncoordinated_discard_disable(state); |
| default: |
| /* |
| * VFIO_SPAPR_TCE_IOMMU most probably works just fine with |
| * RamDiscardManager, however, it is completely untested. |
| * |
| * VFIO_SPAPR_TCE_v2_IOMMU with "DMA memory preregistering" does |
| * completely the opposite of managing mapping/pinning dynamically as |
| * required by RamDiscardManager. We would have to special-case sections |
| * with a RamDiscardManager. |
| */ |
| return ram_block_discard_disable(state); |
| } |
| } |
| |
| /* |
| * Device state interfaces |
| */ |
| |
| static int vfio_get_dirty_bitmap(VFIOContainer *container, uint64_t iova, |
| uint64_t size, ram_addr_t ram_addr); |
| |
| bool vfio_mig_active(void) |
| { |
| VFIOGroup *group; |
| VFIODevice *vbasedev; |
| |
| if (QLIST_EMPTY(&vfio_group_list)) { |
| return false; |
| } |
| |
| QLIST_FOREACH(group, &vfio_group_list, next) { |
| QLIST_FOREACH(vbasedev, &group->device_list, next) { |
| if (vbasedev->migration_blocker) { |
| return false; |
| } |
| } |
| } |
| return true; |
| } |
| |
| static Error *multiple_devices_migration_blocker; |
| |
| /* |
| * Multiple devices migration is allowed only if all devices support P2P |
| * migration. Single device migration is allowed regardless of P2P migration |
| * support. |
| */ |
| static bool vfio_multiple_devices_migration_is_supported(void) |
| { |
| VFIOGroup *group; |
| VFIODevice *vbasedev; |
| unsigned int device_num = 0; |
| bool all_support_p2p = true; |
| |
| QLIST_FOREACH(group, &vfio_group_list, next) { |
| QLIST_FOREACH(vbasedev, &group->device_list, next) { |
| if (vbasedev->migration) { |
| device_num++; |
| |
| if (!(vbasedev->migration->mig_flags & VFIO_MIGRATION_P2P)) { |
| all_support_p2p = false; |
| } |
| } |
| } |
| } |
| |
| return all_support_p2p || device_num <= 1; |
| } |
| |
| int vfio_block_multiple_devices_migration(VFIODevice *vbasedev, Error **errp) |
| { |
| int ret; |
| |
| if (vfio_multiple_devices_migration_is_supported()) { |
| return 0; |
| } |
| |
| if (vbasedev->enable_migration == ON_OFF_AUTO_ON) { |
| error_setg(errp, "Multiple VFIO devices migration is supported only if " |
| "all of them support P2P migration"); |
| return -EINVAL; |
| } |
| |
| if (multiple_devices_migration_blocker) { |
| return 0; |
| } |
| |
| error_setg(&multiple_devices_migration_blocker, |
| "Multiple VFIO devices migration is supported only if all of " |
| "them support P2P migration"); |
| ret = migrate_add_blocker(multiple_devices_migration_blocker, errp); |
| if (ret < 0) { |
| error_free(multiple_devices_migration_blocker); |
| multiple_devices_migration_blocker = NULL; |
| } |
| |
| return ret; |
| } |
| |
| void vfio_unblock_multiple_devices_migration(void) |
| { |
| if (!multiple_devices_migration_blocker || |
| !vfio_multiple_devices_migration_is_supported()) { |
| return; |
| } |
| |
| migrate_del_blocker(multiple_devices_migration_blocker); |
| error_free(multiple_devices_migration_blocker); |
| multiple_devices_migration_blocker = NULL; |
| } |
| |
| bool vfio_viommu_preset(VFIODevice *vbasedev) |
| { |
| return vbasedev->group->container->space->as != &address_space_memory; |
| } |
| |
| static void vfio_set_migration_error(int err) |
| { |
| MigrationState *ms = migrate_get_current(); |
| |
| if (migration_is_setup_or_active(ms->state)) { |
| WITH_QEMU_LOCK_GUARD(&ms->qemu_file_lock) { |
| if (ms->to_dst_file) { |
| qemu_file_set_error(ms->to_dst_file, err); |
| } |
| } |
| } |
| } |
| |
| bool vfio_device_state_is_running(VFIODevice *vbasedev) |
| { |
| VFIOMigration *migration = vbasedev->migration; |
| |
| return migration->device_state == VFIO_DEVICE_STATE_RUNNING || |
| migration->device_state == VFIO_DEVICE_STATE_RUNNING_P2P; |
| } |
| |
| bool vfio_device_state_is_precopy(VFIODevice *vbasedev) |
| { |
| VFIOMigration *migration = vbasedev->migration; |
| |
| return migration->device_state == VFIO_DEVICE_STATE_PRE_COPY || |
| migration->device_state == VFIO_DEVICE_STATE_PRE_COPY_P2P; |
| } |
| |
| static bool vfio_devices_all_dirty_tracking(VFIOContainer *container) |
| { |
| VFIOGroup *group; |
| VFIODevice *vbasedev; |
| MigrationState *ms = migrate_get_current(); |
| |
| if (ms->state != MIGRATION_STATUS_ACTIVE && |
| ms->state != MIGRATION_STATUS_DEVICE) { |
| return false; |
| } |
| |
| QLIST_FOREACH(group, &container->group_list, container_next) { |
| QLIST_FOREACH(vbasedev, &group->device_list, next) { |
| VFIOMigration *migration = vbasedev->migration; |
| |
| if (!migration) { |
| return false; |
| } |
| |
| if (vbasedev->pre_copy_dirty_page_tracking == ON_OFF_AUTO_OFF && |
| (vfio_device_state_is_running(vbasedev) || |
| vfio_device_state_is_precopy(vbasedev))) { |
| return false; |
| } |
| } |
| } |
| return true; |
| } |
| |
| static bool vfio_devices_all_device_dirty_tracking(VFIOContainer *container) |
| { |
| VFIOGroup *group; |
| VFIODevice *vbasedev; |
| |
| QLIST_FOREACH(group, &container->group_list, container_next) { |
| QLIST_FOREACH(vbasedev, &group->device_list, next) { |
| if (!vbasedev->dirty_pages_supported) { |
| return false; |
| } |
| } |
| } |
| |
| return true; |
| } |
| |
| /* |
| * Check if all VFIO devices are running and migration is active, which is |
| * essentially equivalent to the migration being in pre-copy phase. |
| */ |
| static bool vfio_devices_all_running_and_mig_active(VFIOContainer *container) |
| { |
| VFIOGroup *group; |
| VFIODevice *vbasedev; |
| |
| if (!migration_is_active(migrate_get_current())) { |
| return false; |
| } |
| |
| QLIST_FOREACH(group, &container->group_list, container_next) { |
| QLIST_FOREACH(vbasedev, &group->device_list, next) { |
| VFIOMigration *migration = vbasedev->migration; |
| |
| if (!migration) { |
| return false; |
| } |
| |
| if (vfio_device_state_is_running(vbasedev) || |
| vfio_device_state_is_precopy(vbasedev)) { |
| continue; |
| } else { |
| return false; |
| } |
| } |
| } |
| return true; |
| } |
| |
| static int vfio_dma_unmap_bitmap(VFIOContainer *container, |
| hwaddr iova, ram_addr_t size, |
| IOMMUTLBEntry *iotlb) |
| { |
| struct vfio_iommu_type1_dma_unmap *unmap; |
| struct vfio_bitmap *bitmap; |
| VFIOBitmap vbmap; |
| int ret; |
| |
| ret = vfio_bitmap_alloc(&vbmap, size); |
| if (ret) { |
| return ret; |
| } |
| |
| unmap = g_malloc0(sizeof(*unmap) + sizeof(*bitmap)); |
| |
| unmap->argsz = sizeof(*unmap) + sizeof(*bitmap); |
| unmap->iova = iova; |
| unmap->size = size; |
| unmap->flags |= VFIO_DMA_UNMAP_FLAG_GET_DIRTY_BITMAP; |
| bitmap = (struct vfio_bitmap *)&unmap->data; |
| |
| /* |
| * cpu_physical_memory_set_dirty_lebitmap() supports pages in bitmap of |
| * qemu_real_host_page_size to mark those dirty. Hence set bitmap_pgsize |
| * to qemu_real_host_page_size. |
| */ |
| bitmap->pgsize = qemu_real_host_page_size(); |
| bitmap->size = vbmap.size; |
| bitmap->data = (__u64 *)vbmap.bitmap; |
| |
| if (vbmap.size > container->max_dirty_bitmap_size) { |
| error_report("UNMAP: Size of bitmap too big 0x%"PRIx64, vbmap.size); |
| ret = -E2BIG; |
| goto unmap_exit; |
| } |
| |
| ret = ioctl(container->fd, VFIO_IOMMU_UNMAP_DMA, unmap); |
| if (!ret) { |
| cpu_physical_memory_set_dirty_lebitmap(vbmap.bitmap, |
| iotlb->translated_addr, vbmap.pages); |
| } else { |
| error_report("VFIO_UNMAP_DMA with DIRTY_BITMAP : %m"); |
| } |
| |
| unmap_exit: |
| g_free(unmap); |
| g_free(vbmap.bitmap); |
| |
| return ret; |
| } |
| |
| /* |
| * DMA - Mapping and unmapping for the "type1" IOMMU interface used on x86 |
| */ |
| static int vfio_dma_unmap(VFIOContainer *container, |
| hwaddr iova, ram_addr_t size, |
| IOMMUTLBEntry *iotlb) |
| { |
| struct vfio_iommu_type1_dma_unmap unmap = { |
| .argsz = sizeof(unmap), |
| .flags = 0, |
| .iova = iova, |
| .size = size, |
| }; |
| bool need_dirty_sync = false; |
| int ret; |
| |
| if (iotlb && vfio_devices_all_running_and_mig_active(container)) { |
| if (!vfio_devices_all_device_dirty_tracking(container) && |
| container->dirty_pages_supported) { |
| return vfio_dma_unmap_bitmap(container, iova, size, iotlb); |
| } |
| |
| need_dirty_sync = true; |
| } |
| |
| while (ioctl(container->fd, VFIO_IOMMU_UNMAP_DMA, &unmap)) { |
| /* |
| * The type1 backend has an off-by-one bug in the kernel (71a7d3d78e3c |
| * v4.15) where an overflow in its wrap-around check prevents us from |
| * unmapping the last page of the address space. Test for the error |
| * condition and re-try the unmap excluding the last page. The |
| * expectation is that we've never mapped the last page anyway and this |
| * unmap request comes via vIOMMU support which also makes it unlikely |
| * that this page is used. This bug was introduced well after type1 v2 |
| * support was introduced, so we shouldn't need to test for v1. A fix |
| * is queued for kernel v5.0 so this workaround can be removed once |
| * affected kernels are sufficiently deprecated. |
| */ |
| if (errno == EINVAL && unmap.size && !(unmap.iova + unmap.size) && |
| container->iommu_type == VFIO_TYPE1v2_IOMMU) { |
| trace_vfio_dma_unmap_overflow_workaround(); |
| unmap.size -= 1ULL << ctz64(container->pgsizes); |
| continue; |
| } |
| error_report("VFIO_UNMAP_DMA failed: %s", strerror(errno)); |
| return -errno; |
| } |
| |
| if (need_dirty_sync) { |
| ret = vfio_get_dirty_bitmap(container, iova, size, |
| iotlb->translated_addr); |
| if (ret) { |
| return ret; |
| } |
| } |
| |
| return 0; |
| } |
| |
| static int vfio_dma_map(VFIOContainer *container, hwaddr iova, |
| ram_addr_t size, void *vaddr, bool readonly) |
| { |
| struct vfio_iommu_type1_dma_map map = { |
| .argsz = sizeof(map), |
| .flags = VFIO_DMA_MAP_FLAG_READ, |
| .vaddr = (__u64)(uintptr_t)vaddr, |
| .iova = iova, |
| .size = size, |
| }; |
| |
| if (!readonly) { |
| map.flags |= VFIO_DMA_MAP_FLAG_WRITE; |
| } |
| |
| /* |
| * Try the mapping, if it fails with EBUSY, unmap the region and try |
| * again. This shouldn't be necessary, but we sometimes see it in |
| * the VGA ROM space. |
| */ |
| if (ioctl(container->fd, VFIO_IOMMU_MAP_DMA, &map) == 0 || |
| (errno == EBUSY && vfio_dma_unmap(container, iova, size, NULL) == 0 && |
| ioctl(container->fd, VFIO_IOMMU_MAP_DMA, &map) == 0)) { |
| return 0; |
| } |
| |
| error_report("VFIO_MAP_DMA failed: %s", strerror(errno)); |
| return -errno; |
| } |
| |
| static void vfio_host_win_add(VFIOContainer *container, |
| hwaddr min_iova, hwaddr max_iova, |
| uint64_t iova_pgsizes) |
| { |
| VFIOHostDMAWindow *hostwin; |
| |
| QLIST_FOREACH(hostwin, &container->hostwin_list, hostwin_next) { |
| if (ranges_overlap(hostwin->min_iova, |
| hostwin->max_iova - hostwin->min_iova + 1, |
| min_iova, |
| max_iova - min_iova + 1)) { |
| hw_error("%s: Overlapped IOMMU are not enabled", __func__); |
| } |
| } |
| |
| hostwin = g_malloc0(sizeof(*hostwin)); |
| |
| hostwin->min_iova = min_iova; |
| hostwin->max_iova = max_iova; |
| hostwin->iova_pgsizes = iova_pgsizes; |
| QLIST_INSERT_HEAD(&container->hostwin_list, hostwin, hostwin_next); |
| } |
| |
| static int vfio_host_win_del(VFIOContainer *container, hwaddr min_iova, |
| hwaddr max_iova) |
| { |
| VFIOHostDMAWindow *hostwin; |
| |
| QLIST_FOREACH(hostwin, &container->hostwin_list, hostwin_next) { |
| if (hostwin->min_iova == min_iova && hostwin->max_iova == max_iova) { |
| QLIST_REMOVE(hostwin, hostwin_next); |
| g_free(hostwin); |
| return 0; |
| } |
| } |
| |
| return -1; |
| } |
| |
| static bool vfio_listener_skipped_section(MemoryRegionSection *section) |
| { |
| return (!memory_region_is_ram(section->mr) && |
| !memory_region_is_iommu(section->mr)) || |
| memory_region_is_protected(section->mr) || |
| /* |
| * Sizing an enabled 64-bit BAR can cause spurious mappings to |
| * addresses in the upper part of the 64-bit address space. These |
| * are never accessed by the CPU and beyond the address width of |
| * some IOMMU hardware. TODO: VFIO should tell us the IOMMU width. |
| */ |
| section->offset_within_address_space & (1ULL << 63); |
| } |
| |
| /* Called with rcu_read_lock held. */ |
| static bool vfio_get_xlat_addr(IOMMUTLBEntry *iotlb, void **vaddr, |
| ram_addr_t *ram_addr, bool *read_only) |
| { |
| bool ret, mr_has_discard_manager; |
| |
| ret = memory_get_xlat_addr(iotlb, vaddr, ram_addr, read_only, |
| &mr_has_discard_manager); |
| if (ret && mr_has_discard_manager) { |
| /* |
| * Malicious VMs might trigger discarding of IOMMU-mapped memory. The |
| * pages will remain pinned inside vfio until unmapped, resulting in a |
| * higher memory consumption than expected. If memory would get |
| * populated again later, there would be an inconsistency between pages |
| * pinned by vfio and pages seen by QEMU. This is the case until |
| * unmapped from the IOMMU (e.g., during device reset). |
| * |
| * With malicious guests, we really only care about pinning more memory |
| * than expected. RLIMIT_MEMLOCK set for the user/process can never be |
| * exceeded and can be used to mitigate this problem. |
| */ |
| warn_report_once("Using vfio with vIOMMUs and coordinated discarding of" |
| " RAM (e.g., virtio-mem) works, however, malicious" |
| " guests can trigger pinning of more memory than" |
| " intended via an IOMMU. It's possible to mitigate " |
| " by setting/adjusting RLIMIT_MEMLOCK."); |
| } |
| return ret; |
| } |
| |
| static void vfio_iommu_map_notify(IOMMUNotifier *n, IOMMUTLBEntry *iotlb) |
| { |
| VFIOGuestIOMMU *giommu = container_of(n, VFIOGuestIOMMU, n); |
| VFIOContainer *container = giommu->container; |
| hwaddr iova = iotlb->iova + giommu->iommu_offset; |
| void *vaddr; |
| int ret; |
| |
| trace_vfio_iommu_map_notify(iotlb->perm == IOMMU_NONE ? "UNMAP" : "MAP", |
| iova, iova + iotlb->addr_mask); |
| |
| if (iotlb->target_as != &address_space_memory) { |
| error_report("Wrong target AS \"%s\", only system memory is allowed", |
| iotlb->target_as->name ? iotlb->target_as->name : "none"); |
| vfio_set_migration_error(-EINVAL); |
| return; |
| } |
| |
| rcu_read_lock(); |
| |
| if ((iotlb->perm & IOMMU_RW) != IOMMU_NONE) { |
| bool read_only; |
| |
| if (!vfio_get_xlat_addr(iotlb, &vaddr, NULL, &read_only)) { |
| goto out; |
| } |
| /* |
| * vaddr is only valid until rcu_read_unlock(). But after |
| * vfio_dma_map has set up the mapping the pages will be |
| * pinned by the kernel. This makes sure that the RAM backend |
| * of vaddr will always be there, even if the memory object is |
| * destroyed and its backing memory munmap-ed. |
| */ |
| ret = vfio_dma_map(container, iova, |
| iotlb->addr_mask + 1, vaddr, |
| read_only); |
| if (ret) { |
| error_report("vfio_dma_map(%p, 0x%"HWADDR_PRIx", " |
| "0x%"HWADDR_PRIx", %p) = %d (%s)", |
| container, iova, |
| iotlb->addr_mask + 1, vaddr, ret, strerror(-ret)); |
| } |
| } else { |
| ret = vfio_dma_unmap(container, iova, iotlb->addr_mask + 1, iotlb); |
| if (ret) { |
| error_report("vfio_dma_unmap(%p, 0x%"HWADDR_PRIx", " |
| "0x%"HWADDR_PRIx") = %d (%s)", |
| container, iova, |
| iotlb->addr_mask + 1, ret, strerror(-ret)); |
| vfio_set_migration_error(ret); |
| } |
| } |
| out: |
| rcu_read_unlock(); |
| } |
| |
| static void vfio_ram_discard_notify_discard(RamDiscardListener *rdl, |
| MemoryRegionSection *section) |
| { |
| VFIORamDiscardListener *vrdl = container_of(rdl, VFIORamDiscardListener, |
| listener); |
| const hwaddr size = int128_get64(section->size); |
| const hwaddr iova = section->offset_within_address_space; |
| int ret; |
| |
| /* Unmap with a single call. */ |
| ret = vfio_dma_unmap(vrdl->container, iova, size , NULL); |
| if (ret) { |
| error_report("%s: vfio_dma_unmap() failed: %s", __func__, |
| strerror(-ret)); |
| } |
| } |
| |
| static int vfio_ram_discard_notify_populate(RamDiscardListener *rdl, |
| MemoryRegionSection *section) |
| { |
| VFIORamDiscardListener *vrdl = container_of(rdl, VFIORamDiscardListener, |
| listener); |
| const hwaddr end = section->offset_within_region + |
| int128_get64(section->size); |
| hwaddr start, next, iova; |
| void *vaddr; |
| int ret; |
| |
| /* |
| * Map in (aligned within memory region) minimum granularity, so we can |
| * unmap in minimum granularity later. |
| */ |
| for (start = section->offset_within_region; start < end; start = next) { |
| next = ROUND_UP(start + 1, vrdl->granularity); |
| next = MIN(next, end); |
| |
| iova = start - section->offset_within_region + |
| section->offset_within_address_space; |
| vaddr = memory_region_get_ram_ptr(section->mr) + start; |
| |
| ret = vfio_dma_map(vrdl->container, iova, next - start, |
| vaddr, section->readonly); |
| if (ret) { |
| /* Rollback */ |
| vfio_ram_discard_notify_discard(rdl, section); |
| return ret; |
| } |
| } |
| return 0; |
| } |
| |
| static void vfio_register_ram_discard_listener(VFIOContainer *container, |
| MemoryRegionSection *section) |
| { |
| RamDiscardManager *rdm = memory_region_get_ram_discard_manager(section->mr); |
| VFIORamDiscardListener *vrdl; |
| |
| /* Ignore some corner cases not relevant in practice. */ |
| g_assert(QEMU_IS_ALIGNED(section->offset_within_region, TARGET_PAGE_SIZE)); |
| g_assert(QEMU_IS_ALIGNED(section->offset_within_address_space, |
| TARGET_PAGE_SIZE)); |
| g_assert(QEMU_IS_ALIGNED(int128_get64(section->size), TARGET_PAGE_SIZE)); |
| |
| vrdl = g_new0(VFIORamDiscardListener, 1); |
| vrdl->container = container; |
| vrdl->mr = section->mr; |
| vrdl->offset_within_address_space = section->offset_within_address_space; |
| vrdl->size = int128_get64(section->size); |
| vrdl->granularity = ram_discard_manager_get_min_granularity(rdm, |
| section->mr); |
| |
| g_assert(vrdl->granularity && is_power_of_2(vrdl->granularity)); |
| g_assert(container->pgsizes && |
| vrdl->granularity >= 1ULL << ctz64(container->pgsizes)); |
| |
| ram_discard_listener_init(&vrdl->listener, |
| vfio_ram_discard_notify_populate, |
| vfio_ram_discard_notify_discard, true); |
| ram_discard_manager_register_listener(rdm, &vrdl->listener, section); |
| QLIST_INSERT_HEAD(&container->vrdl_list, vrdl, next); |
| |
| /* |
| * Sanity-check if we have a theoretically problematic setup where we could |
| * exceed the maximum number of possible DMA mappings over time. We assume |
| * that each mapped section in the same address space as a RamDiscardManager |
| * section consumes exactly one DMA mapping, with the exception of |
| * RamDiscardManager sections; i.e., we don't expect to have gIOMMU sections |
| * in the same address space as RamDiscardManager sections. |
| * |
| * We assume that each section in the address space consumes one memslot. |
| * We take the number of KVM memory slots as a best guess for the maximum |
| * number of sections in the address space we could have over time, |
| * also consuming DMA mappings. |
| */ |
| if (container->dma_max_mappings) { |
| unsigned int vrdl_count = 0, vrdl_mappings = 0, max_memslots = 512; |
| |
| #ifdef CONFIG_KVM |
| if (kvm_enabled()) { |
| max_memslots = kvm_get_max_memslots(); |
| } |
| #endif |
| |
| QLIST_FOREACH(vrdl, &container->vrdl_list, next) { |
| hwaddr start, end; |
| |
| start = QEMU_ALIGN_DOWN(vrdl->offset_within_address_space, |
| vrdl->granularity); |
| end = ROUND_UP(vrdl->offset_within_address_space + vrdl->size, |
| vrdl->granularity); |
| vrdl_mappings += (end - start) / vrdl->granularity; |
| vrdl_count++; |
| } |
| |
| if (vrdl_mappings + max_memslots - vrdl_count > |
| container->dma_max_mappings) { |
| warn_report("%s: possibly running out of DMA mappings. E.g., try" |
| " increasing the 'block-size' of virtio-mem devies." |
| " Maximum possible DMA mappings: %d, Maximum possible" |
| " memslots: %d", __func__, container->dma_max_mappings, |
| max_memslots); |
| } |
| } |
| } |
| |
| static void vfio_unregister_ram_discard_listener(VFIOContainer *container, |
| MemoryRegionSection *section) |
| { |
| RamDiscardManager *rdm = memory_region_get_ram_discard_manager(section->mr); |
| VFIORamDiscardListener *vrdl = NULL; |
| |
| QLIST_FOREACH(vrdl, &container->vrdl_list, next) { |
| if (vrdl->mr == section->mr && |
| vrdl->offset_within_address_space == |
| section->offset_within_address_space) { |
| break; |
| } |
| } |
| |
| if (!vrdl) { |
| hw_error("vfio: Trying to unregister missing RAM discard listener"); |
| } |
| |
| ram_discard_manager_unregister_listener(rdm, &vrdl->listener); |
| QLIST_REMOVE(vrdl, next); |
| g_free(vrdl); |
| } |
| |
| static VFIOHostDMAWindow *vfio_find_hostwin(VFIOContainer *container, |
| hwaddr iova, hwaddr end) |
| { |
| VFIOHostDMAWindow *hostwin; |
| bool hostwin_found = false; |
| |
| QLIST_FOREACH(hostwin, &container->hostwin_list, hostwin_next) { |
| if (hostwin->min_iova <= iova && end <= hostwin->max_iova) { |
| hostwin_found = true; |
| break; |
| } |
| } |
| |
| return hostwin_found ? hostwin : NULL; |
| } |
| |
| static bool vfio_known_safe_misalignment(MemoryRegionSection *section) |
| { |
| MemoryRegion *mr = section->mr; |
| |
| if (!TPM_IS_CRB(mr->owner)) { |
| return false; |
| } |
| |
| /* this is a known safe misaligned region, just trace for debug purpose */ |
| trace_vfio_known_safe_misalignment(memory_region_name(mr), |
| section->offset_within_address_space, |
| section->offset_within_region, |
| qemu_real_host_page_size()); |
| return true; |
| } |
| |
| static bool vfio_listener_valid_section(MemoryRegionSection *section, |
| const char *name) |
| { |
| if (vfio_listener_skipped_section(section)) { |
| trace_vfio_listener_region_skip(name, |
| section->offset_within_address_space, |
| section->offset_within_address_space + |
| int128_get64(int128_sub(section->size, int128_one()))); |
| return false; |
| } |
| |
| if (unlikely((section->offset_within_address_space & |
| ~qemu_real_host_page_mask()) != |
| (section->offset_within_region & ~qemu_real_host_page_mask()))) { |
| if (!vfio_known_safe_misalignment(section)) { |
| error_report("%s received unaligned region %s iova=0x%"PRIx64 |
| " offset_within_region=0x%"PRIx64 |
| " qemu_real_host_page_size=0x%"PRIxPTR, |
| __func__, memory_region_name(section->mr), |
| section->offset_within_address_space, |
| section->offset_within_region, |
| qemu_real_host_page_size()); |
| } |
| return false; |
| } |
| |
| return true; |
| } |
| |
| static bool vfio_get_section_iova_range(VFIOContainer *container, |
| MemoryRegionSection *section, |
| hwaddr *out_iova, hwaddr *out_end, |
| Int128 *out_llend) |
| { |
| Int128 llend; |
| hwaddr iova; |
| |
| iova = REAL_HOST_PAGE_ALIGN(section->offset_within_address_space); |
| llend = int128_make64(section->offset_within_address_space); |
| llend = int128_add(llend, section->size); |
| llend = int128_and(llend, int128_exts64(qemu_real_host_page_mask())); |
| |
| if (int128_ge(int128_make64(iova), llend)) { |
| return false; |
| } |
| |
| *out_iova = iova; |
| *out_end = int128_get64(int128_sub(llend, int128_one())); |
| if (out_llend) { |
| *out_llend = llend; |
| } |
| return true; |
| } |
| |
| static int vfio_container_add_section_window(VFIOContainer *container, |
| MemoryRegionSection *section, |
| Error **errp) |
| { |
| VFIOHostDMAWindow *hostwin; |
| hwaddr pgsize = 0; |
| int ret; |
| |
| if (container->iommu_type != VFIO_SPAPR_TCE_v2_IOMMU) { |
| return 0; |
| } |
| |
| /* For now intersections are not allowed, we may relax this later */ |
| QLIST_FOREACH(hostwin, &container->hostwin_list, hostwin_next) { |
| if (ranges_overlap(hostwin->min_iova, |
| hostwin->max_iova - hostwin->min_iova + 1, |
| section->offset_within_address_space, |
| int128_get64(section->size))) { |
| error_setg(errp, |
| "region [0x%"PRIx64",0x%"PRIx64"] overlaps with existing" |
| "host DMA window [0x%"PRIx64",0x%"PRIx64"]", |
| section->offset_within_address_space, |
| section->offset_within_address_space + |
| int128_get64(section->size) - 1, |
| hostwin->min_iova, hostwin->max_iova); |
| return -EINVAL; |
| } |
| } |
| |
| ret = vfio_spapr_create_window(container, section, &pgsize); |
| if (ret) { |
| error_setg_errno(errp, -ret, "Failed to create SPAPR window"); |
| return ret; |
| } |
| |
| vfio_host_win_add(container, section->offset_within_address_space, |
| section->offset_within_address_space + |
| int128_get64(section->size) - 1, pgsize); |
| #ifdef CONFIG_KVM |
| if (kvm_enabled()) { |
| VFIOGroup *group; |
| IOMMUMemoryRegion *iommu_mr = IOMMU_MEMORY_REGION(section->mr); |
| struct kvm_vfio_spapr_tce param; |
| struct kvm_device_attr attr = { |
| .group = KVM_DEV_VFIO_GROUP, |
| .attr = KVM_DEV_VFIO_GROUP_SET_SPAPR_TCE, |
| .addr = (uint64_t)(unsigned long)¶m, |
| }; |
| |
| if (!memory_region_iommu_get_attr(iommu_mr, IOMMU_ATTR_SPAPR_TCE_FD, |
| ¶m.tablefd)) { |
| QLIST_FOREACH(group, &container->group_list, container_next) { |
| param.groupfd = group->fd; |
| if (ioctl(vfio_kvm_device_fd, KVM_SET_DEVICE_ATTR, &attr)) { |
| error_setg_errno(errp, errno, |
| "vfio: failed GROUP_SET_SPAPR_TCE for " |
| "KVM VFIO device %d and group fd %d", |
| param.tablefd, param.groupfd); |
| return -errno; |
| } |
| trace_vfio_spapr_group_attach(param.groupfd, param.tablefd); |
| } |
| } |
| } |
| #endif |
| return 0; |
| } |
| |
| static void vfio_container_del_section_window(VFIOContainer *container, |
| MemoryRegionSection *section) |
| { |
| if (container->iommu_type != VFIO_SPAPR_TCE_v2_IOMMU) { |
| return; |
| } |
| |
| vfio_spapr_remove_window(container, |
| section->offset_within_address_space); |
| if (vfio_host_win_del(container, |
| section->offset_within_address_space, |
| section->offset_within_address_space + |
| int128_get64(section->size) - 1) < 0) { |
| hw_error("%s: Cannot delete missing window at %"HWADDR_PRIx, |
| __func__, section->offset_within_address_space); |
| } |
| } |
| |
| static void vfio_listener_region_add(MemoryListener *listener, |
| MemoryRegionSection *section) |
| { |
| VFIOContainer *container = container_of(listener, VFIOContainer, listener); |
| hwaddr iova, end; |
| Int128 llend, llsize; |
| void *vaddr; |
| int ret; |
| VFIOHostDMAWindow *hostwin; |
| Error *err = NULL; |
| |
| if (!vfio_listener_valid_section(section, "region_add")) { |
| return; |
| } |
| |
| if (!vfio_get_section_iova_range(container, section, &iova, &end, &llend)) { |
| if (memory_region_is_ram_device(section->mr)) { |
| trace_vfio_listener_region_add_no_dma_map( |
| memory_region_name(section->mr), |
| section->offset_within_address_space, |
| int128_getlo(section->size), |
| qemu_real_host_page_size()); |
| } |
| return; |
| } |
| |
| if (vfio_container_add_section_window(container, section, &err)) { |
| goto fail; |
| } |
| |
| hostwin = vfio_find_hostwin(container, iova, end); |
| if (!hostwin) { |
| error_setg(&err, "Container %p can't map guest IOVA region" |
| " 0x%"HWADDR_PRIx"..0x%"HWADDR_PRIx, container, iova, end); |
| goto fail; |
| } |
| |
| memory_region_ref(section->mr); |
| |
| if (memory_region_is_iommu(section->mr)) { |
| VFIOGuestIOMMU *giommu; |
| IOMMUMemoryRegion *iommu_mr = IOMMU_MEMORY_REGION(section->mr); |
| int iommu_idx; |
| |
| trace_vfio_listener_region_add_iommu(iova, end); |
| /* |
| * FIXME: For VFIO iommu types which have KVM acceleration to |
| * avoid bouncing all map/unmaps through qemu this way, this |
| * would be the right place to wire that up (tell the KVM |
| * device emulation the VFIO iommu handles to use). |
| */ |
| giommu = g_malloc0(sizeof(*giommu)); |
| giommu->iommu_mr = iommu_mr; |
| giommu->iommu_offset = section->offset_within_address_space - |
| section->offset_within_region; |
| giommu->container = container; |
| llend = int128_add(int128_make64(section->offset_within_region), |
| section->size); |
| llend = int128_sub(llend, int128_one()); |
| iommu_idx = memory_region_iommu_attrs_to_index(iommu_mr, |
| MEMTXATTRS_UNSPECIFIED); |
| iommu_notifier_init(&giommu->n, vfio_iommu_map_notify, |
| IOMMU_NOTIFIER_IOTLB_EVENTS, |
| section->offset_within_region, |
| int128_get64(llend), |
| iommu_idx); |
| |
| ret = memory_region_iommu_set_page_size_mask(giommu->iommu_mr, |
| container->pgsizes, |
| &err); |
| if (ret) { |
| g_free(giommu); |
| goto fail; |
| } |
| |
| ret = memory_region_register_iommu_notifier(section->mr, &giommu->n, |
| &err); |
| if (ret) { |
| g_free(giommu); |
| goto fail; |
| } |
| QLIST_INSERT_HEAD(&container->giommu_list, giommu, giommu_next); |
| memory_region_iommu_replay(giommu->iommu_mr, &giommu->n); |
| |
| return; |
| } |
| |
| /* Here we assume that memory_region_is_ram(section->mr)==true */ |
| |
| /* |
| * For RAM memory regions with a RamDiscardManager, we only want to map the |
| * actually populated parts - and update the mapping whenever we're notified |
| * about changes. |
| */ |
| if (memory_region_has_ram_discard_manager(section->mr)) { |
| vfio_register_ram_discard_listener(container, section); |
| return; |
| } |
| |
| vaddr = memory_region_get_ram_ptr(section->mr) + |
| section->offset_within_region + |
| (iova - section->offset_within_address_space); |
| |
| trace_vfio_listener_region_add_ram(iova, end, vaddr); |
| |
| llsize = int128_sub(llend, int128_make64(iova)); |
| |
| if (memory_region_is_ram_device(section->mr)) { |
| hwaddr pgmask = (1ULL << ctz64(hostwin->iova_pgsizes)) - 1; |
| |
| if ((iova & pgmask) || (int128_get64(llsize) & pgmask)) { |
| trace_vfio_listener_region_add_no_dma_map( |
| memory_region_name(section->mr), |
| section->offset_within_address_space, |
| int128_getlo(section->size), |
| pgmask + 1); |
| return; |
| } |
| } |
| |
| ret = vfio_dma_map(container, iova, int128_get64(llsize), |
| vaddr, section->readonly); |
| if (ret) { |
| error_setg(&err, "vfio_dma_map(%p, 0x%"HWADDR_PRIx", " |
| "0x%"HWADDR_PRIx", %p) = %d (%s)", |
| container, iova, int128_get64(llsize), vaddr, ret, |
| strerror(-ret)); |
| if (memory_region_is_ram_device(section->mr)) { |
| /* Allow unexpected mappings not to be fatal for RAM devices */ |
| error_report_err(err); |
| return; |
| } |
| goto fail; |
| } |
| |
| return; |
| |
| fail: |
| if (memory_region_is_ram_device(section->mr)) { |
| error_report("failed to vfio_dma_map. pci p2p may not work"); |
| return; |
| } |
| /* |
| * On the initfn path, store the first error in the container so we |
| * can gracefully fail. Runtime, there's not much we can do other |
| * than throw a hardware error. |
| */ |
| if (!container->initialized) { |
| if (!container->error) { |
| error_propagate_prepend(&container->error, err, |
| "Region %s: ", |
| memory_region_name(section->mr)); |
| } else { |
| error_free(err); |
| } |
| } else { |
| error_report_err(err); |
| hw_error("vfio: DMA mapping failed, unable to continue"); |
| } |
| } |
| |
| static void vfio_listener_region_del(MemoryListener *listener, |
| MemoryRegionSection *section) |
| { |
| VFIOContainer *container = container_of(listener, VFIOContainer, listener); |
| hwaddr iova, end; |
| Int128 llend, llsize; |
| int ret; |
| bool try_unmap = true; |
| |
| if (!vfio_listener_valid_section(section, "region_del")) { |
| return; |
| } |
| |
| if (memory_region_is_iommu(section->mr)) { |
| VFIOGuestIOMMU *giommu; |
| |
| QLIST_FOREACH(giommu, &container->giommu_list, giommu_next) { |
| if (MEMORY_REGION(giommu->iommu_mr) == section->mr && |
| giommu->n.start == section->offset_within_region) { |
| memory_region_unregister_iommu_notifier(section->mr, |
| &giommu->n); |
| QLIST_REMOVE(giommu, giommu_next); |
| g_free(giommu); |
| break; |
| } |
| } |
| |
| /* |
| * FIXME: We assume the one big unmap below is adequate to |
| * remove any individual page mappings in the IOMMU which |
| * might have been copied into VFIO. This works for a page table |
| * based IOMMU where a big unmap flattens a large range of IO-PTEs. |
| * That may not be true for all IOMMU types. |
| */ |
| } |
| |
| if (!vfio_get_section_iova_range(container, section, &iova, &end, &llend)) { |
| return; |
| } |
| |
| llsize = int128_sub(llend, int128_make64(iova)); |
| |
| trace_vfio_listener_region_del(iova, end); |
| |
| if (memory_region_is_ram_device(section->mr)) { |
| hwaddr pgmask; |
| VFIOHostDMAWindow *hostwin; |
| |
| hostwin = vfio_find_hostwin(container, iova, end); |
| assert(hostwin); /* or region_add() would have failed */ |
| |
| pgmask = (1ULL << ctz64(hostwin->iova_pgsizes)) - 1; |
| try_unmap = !((iova & pgmask) || (int128_get64(llsize) & pgmask)); |
| } else if (memory_region_has_ram_discard_manager(section->mr)) { |
| vfio_unregister_ram_discard_listener(container, section); |
| /* Unregistering will trigger an unmap. */ |
| try_unmap = false; |
| } |
| |
| if (try_unmap) { |
| if (int128_eq(llsize, int128_2_64())) { |
| /* The unmap ioctl doesn't accept a full 64-bit span. */ |
| llsize = int128_rshift(llsize, 1); |
| ret = vfio_dma_unmap(container, iova, int128_get64(llsize), NULL); |
| if (ret) { |
| error_report("vfio_dma_unmap(%p, 0x%"HWADDR_PRIx", " |
| "0x%"HWADDR_PRIx") = %d (%s)", |
| container, iova, int128_get64(llsize), ret, |
| strerror(-ret)); |
| } |
| iova += int128_get64(llsize); |
| } |
| ret = vfio_dma_unmap(container, iova, int128_get64(llsize), NULL); |
| if (ret) { |
| error_report("vfio_dma_unmap(%p, 0x%"HWADDR_PRIx", " |
| "0x%"HWADDR_PRIx") = %d (%s)", |
| container, iova, int128_get64(llsize), ret, |
| strerror(-ret)); |
| } |
| } |
| |
| memory_region_unref(section->mr); |
| |
| vfio_container_del_section_window(container, section); |
| } |
| |
| static int vfio_set_dirty_page_tracking(VFIOContainer *container, bool start) |
| { |
| int ret; |
| struct vfio_iommu_type1_dirty_bitmap dirty = { |
| .argsz = sizeof(dirty), |
| }; |
| |
| if (!container->dirty_pages_supported) { |
| return 0; |
| } |
| |
| if (start) { |
| dirty.flags = VFIO_IOMMU_DIRTY_PAGES_FLAG_START; |
| } else { |
| dirty.flags = VFIO_IOMMU_DIRTY_PAGES_FLAG_STOP; |
| } |
| |
| ret = ioctl(container->fd, VFIO_IOMMU_DIRTY_PAGES, &dirty); |
| if (ret) { |
| ret = -errno; |
| error_report("Failed to set dirty tracking flag 0x%x errno: %d", |
| dirty.flags, errno); |
| } |
| |
| return ret; |
| } |
| |
| typedef struct VFIODirtyRanges { |
| hwaddr min32; |
| hwaddr max32; |
| hwaddr min64; |
| hwaddr max64; |
| hwaddr minpci64; |
| hwaddr maxpci64; |
| } VFIODirtyRanges; |
| |
| typedef struct VFIODirtyRangesListener { |
| VFIOContainer *container; |
| VFIODirtyRanges ranges; |
| MemoryListener listener; |
| } VFIODirtyRangesListener; |
| |
| static bool vfio_section_is_vfio_pci(MemoryRegionSection *section, |
| VFIOContainer *container) |
| { |
| VFIOPCIDevice *pcidev; |
| VFIODevice *vbasedev; |
| VFIOGroup *group; |
| Object *owner; |
| |
| owner = memory_region_owner(section->mr); |
| |
| QLIST_FOREACH(group, &container->group_list, container_next) { |
| QLIST_FOREACH(vbasedev, &group->device_list, next) { |
| if (vbasedev->type != VFIO_DEVICE_TYPE_PCI) { |
| continue; |
| } |
| pcidev = container_of(vbasedev, VFIOPCIDevice, vbasedev); |
| if (OBJECT(pcidev) == owner) { |
| return true; |
| } |
| } |
| } |
| |
| return false; |
| } |
| |
| static void vfio_dirty_tracking_update(MemoryListener *listener, |
| MemoryRegionSection *section) |
| { |
| VFIODirtyRangesListener *dirty = container_of(listener, |
| VFIODirtyRangesListener, |
| listener); |
| VFIODirtyRanges *range = &dirty->ranges; |
| hwaddr iova, end, *min, *max; |
| |
| if (!vfio_listener_valid_section(section, "tracking_update") || |
| !vfio_get_section_iova_range(dirty->container, section, |
| &iova, &end, NULL)) { |
| return; |
| } |
| |
| /* |
| * The address space passed to the dirty tracker is reduced to three ranges: |
| * one for 32-bit DMA ranges, one for 64-bit DMA ranges and one for the |
| * PCI 64-bit hole. |
| * |
| * The underlying reports of dirty will query a sub-interval of each of |
| * these ranges. |
| * |
| * The purpose of the three range handling is to handle known cases of big |
| * holes in the address space, like the x86 AMD 1T hole, and firmware (like |
| * OVMF) which may relocate the pci-hole64 to the end of the address space. |
| * The latter would otherwise generate large ranges for tracking, stressing |
| * the limits of supported hardware. The pci-hole32 will always be below 4G |
| * (overlapping or not) so it doesn't need special handling and is part of |
| * the 32-bit range. |
| * |
| * The alternative would be an IOVATree but that has a much bigger runtime |
| * overhead and unnecessary complexity. |
| */ |
| if (vfio_section_is_vfio_pci(section, dirty->container) && |
| iova >= UINT32_MAX) { |
| min = &range->minpci64; |
| max = &range->maxpci64; |
| } else { |
| min = (end <= UINT32_MAX) ? &range->min32 : &range->min64; |
| max = (end <= UINT32_MAX) ? &range->max32 : &range->max64; |
| } |
| if (*min > iova) { |
| *min = iova; |
| } |
| if (*max < end) { |
| *max = end; |
| } |
| |
| trace_vfio_device_dirty_tracking_update(iova, end, *min, *max); |
| return; |
| } |
| |
| static const MemoryListener vfio_dirty_tracking_listener = { |
| .name = "vfio-tracking", |
| .region_add = vfio_dirty_tracking_update, |
| }; |
| |
| static void vfio_dirty_tracking_init(VFIOContainer *container, |
| VFIODirtyRanges *ranges) |
| { |
| VFIODirtyRangesListener dirty; |
| |
| memset(&dirty, 0, sizeof(dirty)); |
| dirty.ranges.min32 = UINT32_MAX; |
| dirty.ranges.min64 = UINT64_MAX; |
| dirty.ranges.minpci64 = UINT64_MAX; |
| dirty.listener = vfio_dirty_tracking_listener; |
| dirty.container = container; |
| |
| memory_listener_register(&dirty.listener, |
| container->space->as); |
| |
| *ranges = dirty.ranges; |
| |
| /* |
| * The memory listener is synchronous, and used to calculate the range |
| * to dirty tracking. Unregister it after we are done as we are not |
| * interested in any follow-up updates. |
| */ |
| memory_listener_unregister(&dirty.listener); |
| } |
| |
| static void vfio_devices_dma_logging_stop(VFIOContainer *container) |
| { |
| uint64_t buf[DIV_ROUND_UP(sizeof(struct vfio_device_feature), |
| sizeof(uint64_t))] = {}; |
| struct vfio_device_feature *feature = (struct vfio_device_feature *)buf; |
| VFIODevice *vbasedev; |
| VFIOGroup *group; |
| |
| feature->argsz = sizeof(buf); |
| feature->flags = VFIO_DEVICE_FEATURE_SET | |
| VFIO_DEVICE_FEATURE_DMA_LOGGING_STOP; |
| |
| QLIST_FOREACH(group, &container->group_list, container_next) { |
| QLIST_FOREACH(vbasedev, &group->device_list, next) { |
| if (!vbasedev->dirty_tracking) { |
| continue; |
| } |
| |
| if (ioctl(vbasedev->fd, VFIO_DEVICE_FEATURE, feature)) { |
| warn_report("%s: Failed to stop DMA logging, err %d (%s)", |
| vbasedev->name, -errno, strerror(errno)); |
| } |
| vbasedev->dirty_tracking = false; |
| } |
| } |
| } |
| |
| static struct vfio_device_feature * |
| vfio_device_feature_dma_logging_start_create(VFIOContainer *container, |
| VFIODirtyRanges *tracking) |
| { |
| struct vfio_device_feature *feature; |
| size_t feature_size; |
| struct vfio_device_feature_dma_logging_control *control; |
| struct vfio_device_feature_dma_logging_range *ranges; |
| |
| feature_size = sizeof(struct vfio_device_feature) + |
| sizeof(struct vfio_device_feature_dma_logging_control); |
| feature = g_try_malloc0(feature_size); |
| if (!feature) { |
| errno = ENOMEM; |
| return NULL; |
| } |
| feature->argsz = feature_size; |
| feature->flags = VFIO_DEVICE_FEATURE_SET | |
| VFIO_DEVICE_FEATURE_DMA_LOGGING_START; |
| |
| control = (struct vfio_device_feature_dma_logging_control *)feature->data; |
| control->page_size = qemu_real_host_page_size(); |
| |
| /* |
| * DMA logging uAPI guarantees to support at least a number of ranges that |
| * fits into a single host kernel base page. |
| */ |
| control->num_ranges = !!tracking->max32 + !!tracking->max64 + |
| !!tracking->maxpci64; |
| ranges = g_try_new0(struct vfio_device_feature_dma_logging_range, |
| control->num_ranges); |
| if (!ranges) { |
| g_free(feature); |
| errno = ENOMEM; |
| |
| return NULL; |
| } |
| |
| control->ranges = (__u64)(uintptr_t)ranges; |
| if (tracking->max32) { |
| ranges->iova = tracking->min32; |
| ranges->length = (tracking->max32 - tracking->min32) + 1; |
| ranges++; |
| } |
| if (tracking->max64) { |
| ranges->iova = tracking->min64; |
| ranges->length = (tracking->max64 - tracking->min64) + 1; |
| ranges++; |
| } |
| if (tracking->maxpci64) { |
| ranges->iova = tracking->minpci64; |
| ranges->length = (tracking->maxpci64 - tracking->minpci64) + 1; |
| } |
| |
| trace_vfio_device_dirty_tracking_start(control->num_ranges, |
| tracking->min32, tracking->max32, |
| tracking->min64, tracking->max64, |
| tracking->minpci64, tracking->maxpci64); |
| |
| return feature; |
| } |
| |
| static void vfio_device_feature_dma_logging_start_destroy( |
| struct vfio_device_feature *feature) |
| { |
| struct vfio_device_feature_dma_logging_control *control = |
| (struct vfio_device_feature_dma_logging_control *)feature->data; |
| struct vfio_device_feature_dma_logging_range *ranges = |
| (struct vfio_device_feature_dma_logging_range *)(uintptr_t)control->ranges; |
| |
| g_free(ranges); |
| g_free(feature); |
| } |
| |
| static int vfio_devices_dma_logging_start(VFIOContainer *container) |
| { |
| struct vfio_device_feature *feature; |
| VFIODirtyRanges ranges; |
| VFIODevice *vbasedev; |
| VFIOGroup *group; |
| int ret = 0; |
| |
| vfio_dirty_tracking_init(container, &ranges); |
| feature = vfio_device_feature_dma_logging_start_create(container, |
| &ranges); |
| if (!feature) { |
| return -errno; |
| } |
| |
| QLIST_FOREACH(group, &container->group_list, container_next) { |
| QLIST_FOREACH(vbasedev, &group->device_list, next) { |
| if (vbasedev->dirty_tracking) { |
| continue; |
| } |
| |
| ret = ioctl(vbasedev->fd, VFIO_DEVICE_FEATURE, feature); |
| if (ret) { |
| ret = -errno; |
| error_report("%s: Failed to start DMA logging, err %d (%s)", |
| vbasedev->name, ret, strerror(errno)); |
| goto out; |
| } |
| vbasedev->dirty_tracking = true; |
| } |
| } |
| |
| out: |
| if (ret) { |
| vfio_devices_dma_logging_stop(container); |
| } |
| |
| vfio_device_feature_dma_logging_start_destroy(feature); |
| |
| return ret; |
| } |
| |
| static void vfio_listener_log_global_start(MemoryListener *listener) |
| { |
| VFIOContainer *container = container_of(listener, VFIOContainer, listener); |
| int ret; |
| |
| if (vfio_devices_all_device_dirty_tracking(container)) { |
| ret = vfio_devices_dma_logging_start(container); |
| } else { |
| ret = vfio_set_dirty_page_tracking(container, true); |
| } |
| |
| if (ret) { |
| error_report("vfio: Could not start dirty page tracking, err: %d (%s)", |
| ret, strerror(-ret)); |
| vfio_set_migration_error(ret); |
| } |
| } |
| |
| static void vfio_listener_log_global_stop(MemoryListener *listener) |
| { |
| VFIOContainer *container = container_of(listener, VFIOContainer, listener); |
| int ret = 0; |
| |
| if (vfio_devices_all_device_dirty_tracking(container)) { |
| vfio_devices_dma_logging_stop(container); |
| } else { |
| ret = vfio_set_dirty_page_tracking(container, false); |
| } |
| |
| if (ret) { |
| error_report("vfio: Could not stop dirty page tracking, err: %d (%s)", |
| ret, strerror(-ret)); |
| vfio_set_migration_error(ret); |
| } |
| } |
| |
| static int vfio_device_dma_logging_report(VFIODevice *vbasedev, hwaddr iova, |
| hwaddr size, void *bitmap) |
| { |
| uint64_t buf[DIV_ROUND_UP(sizeof(struct vfio_device_feature) + |
| sizeof(struct vfio_device_feature_dma_logging_report), |
| sizeof(__u64))] = {}; |
| struct vfio_device_feature *feature = (struct vfio_device_feature *)buf; |
| struct vfio_device_feature_dma_logging_report *report = |
| (struct vfio_device_feature_dma_logging_report *)feature->data; |
| |
| report->iova = iova; |
| report->length = size; |
| report->page_size = qemu_real_host_page_size(); |
| report->bitmap = (__u64)(uintptr_t)bitmap; |
| |
| feature->argsz = sizeof(buf); |
| feature->flags = VFIO_DEVICE_FEATURE_GET | |
| VFIO_DEVICE_FEATURE_DMA_LOGGING_REPORT; |
| |
| if (ioctl(vbasedev->fd, VFIO_DEVICE_FEATURE, feature)) { |
| return -errno; |
| } |
| |
| return 0; |
| } |
| |
| static int vfio_devices_query_dirty_bitmap(VFIOContainer *container, |
| VFIOBitmap *vbmap, hwaddr iova, |
| hwaddr size) |
| { |
| VFIODevice *vbasedev; |
| VFIOGroup *group; |
| int ret; |
| |
| QLIST_FOREACH(group, &container->group_list, container_next) { |
| QLIST_FOREACH(vbasedev, &group->device_list, next) { |
| ret = vfio_device_dma_logging_report(vbasedev, iova, size, |
| vbmap->bitmap); |
| if (ret) { |
| error_report("%s: Failed to get DMA logging report, iova: " |
| "0x%" HWADDR_PRIx ", size: 0x%" HWADDR_PRIx |
| ", err: %d (%s)", |
| vbasedev->name, iova, size, ret, strerror(-ret)); |
| |
| return ret; |
| } |
| } |
| } |
| |
| return 0; |
| } |
| |
| static int vfio_query_dirty_bitmap(VFIOContainer *container, VFIOBitmap *vbmap, |
| hwaddr iova, hwaddr size) |
| { |
| struct vfio_iommu_type1_dirty_bitmap *dbitmap; |
| struct vfio_iommu_type1_dirty_bitmap_get *range; |
| int ret; |
| |
| dbitmap = g_malloc0(sizeof(*dbitmap) + sizeof(*range)); |
| |
| dbitmap->argsz = sizeof(*dbitmap) + sizeof(*range); |
| dbitmap->flags = VFIO_IOMMU_DIRTY_PAGES_FLAG_GET_BITMAP; |
| range = (struct vfio_iommu_type1_dirty_bitmap_get *)&dbitmap->data; |
| range->iova = iova; |
| range->size = size; |
| |
| /* |
| * cpu_physical_memory_set_dirty_lebitmap() supports pages in bitmap of |
| * qemu_real_host_page_size to mark those dirty. Hence set bitmap's pgsize |
| * to qemu_real_host_page_size. |
| */ |
| range->bitmap.pgsize = qemu_real_host_page_size(); |
| range->bitmap.size = vbmap->size; |
| range->bitmap.data = (__u64 *)vbmap->bitmap; |
| |
| ret = ioctl(container->fd, VFIO_IOMMU_DIRTY_PAGES, dbitmap); |
| if (ret) { |
| ret = -errno; |
| error_report("Failed to get dirty bitmap for iova: 0x%"PRIx64 |
| " size: 0x%"PRIx64" err: %d", (uint64_t)range->iova, |
| (uint64_t)range->size, errno); |
| } |
| |
| g_free(dbitmap); |
| |
| return ret; |
| } |
| |
| static int vfio_get_dirty_bitmap(VFIOContainer *container, uint64_t iova, |
| uint64_t size, ram_addr_t ram_addr) |
| { |
| bool all_device_dirty_tracking = |
| vfio_devices_all_device_dirty_tracking(container); |
| uint64_t dirty_pages; |
| VFIOBitmap vbmap; |
| int ret; |
| |
| if (!container->dirty_pages_supported && !all_device_dirty_tracking) { |
| cpu_physical_memory_set_dirty_range(ram_addr, size, |
| tcg_enabled() ? DIRTY_CLIENTS_ALL : |
| DIRTY_CLIENTS_NOCODE); |
| return 0; |
| } |
| |
| ret = vfio_bitmap_alloc(&vbmap, size); |
| if (ret) { |
| return ret; |
| } |
| |
| if (all_device_dirty_tracking) { |
| ret = vfio_devices_query_dirty_bitmap(container, &vbmap, iova, size); |
| } else { |
| ret = vfio_query_dirty_bitmap(container, &vbmap, iova, size); |
| } |
| |
| if (ret) { |
| goto out; |
| } |
| |
| dirty_pages = cpu_physical_memory_set_dirty_lebitmap(vbmap.bitmap, ram_addr, |
| vbmap.pages); |
| |
| trace_vfio_get_dirty_bitmap(container->fd, iova, size, vbmap.size, |
| ram_addr, dirty_pages); |
| out: |
| g_free(vbmap.bitmap); |
| |
| return ret; |
| } |
| |
| typedef struct { |
| IOMMUNotifier n; |
| VFIOGuestIOMMU *giommu; |
| } vfio_giommu_dirty_notifier; |
| |
| static void vfio_iommu_map_dirty_notify(IOMMUNotifier *n, IOMMUTLBEntry *iotlb) |
| { |
| vfio_giommu_dirty_notifier *gdn = container_of(n, |
| vfio_giommu_dirty_notifier, n); |
| VFIOGuestIOMMU *giommu = gdn->giommu; |
| VFIOContainer *container = giommu->container; |
| hwaddr iova = iotlb->iova + giommu->iommu_offset; |
| ram_addr_t translated_addr; |
| int ret = -EINVAL; |
| |
| trace_vfio_iommu_map_dirty_notify(iova, iova + iotlb->addr_mask); |
| |
| if (iotlb->target_as != &address_space_memory) { |
| error_report("Wrong target AS \"%s\", only system memory is allowed", |
| iotlb->target_as->name ? iotlb->target_as->name : "none"); |
| goto out; |
| } |
| |
| rcu_read_lock(); |
| if (vfio_get_xlat_addr(iotlb, NULL, &translated_addr, NULL)) { |
| ret = vfio_get_dirty_bitmap(container, iova, iotlb->addr_mask + 1, |
| translated_addr); |
| if (ret) { |
| error_report("vfio_iommu_map_dirty_notify(%p, 0x%"HWADDR_PRIx", " |
| "0x%"HWADDR_PRIx") = %d (%s)", |
| container, iova, iotlb->addr_mask + 1, ret, |
| strerror(-ret)); |
| } |
| } |
| rcu_read_unlock(); |
| |
| out: |
| if (ret) { |
| vfio_set_migration_error(ret); |
| } |
| } |
| |
| static int vfio_ram_discard_get_dirty_bitmap(MemoryRegionSection *section, |
| void *opaque) |
| { |
| const hwaddr size = int128_get64(section->size); |
| const hwaddr iova = section->offset_within_address_space; |
| const ram_addr_t ram_addr = memory_region_get_ram_addr(section->mr) + |
| section->offset_within_region; |
| VFIORamDiscardListener *vrdl = opaque; |
| |
| /* |
| * Sync the whole mapped region (spanning multiple individual mappings) |
| * in one go. |
| */ |
| return vfio_get_dirty_bitmap(vrdl->container, iova, size, ram_addr); |
| } |
| |
| static int vfio_sync_ram_discard_listener_dirty_bitmap(VFIOContainer *container, |
| MemoryRegionSection *section) |
| { |
| RamDiscardManager *rdm = memory_region_get_ram_discard_manager(section->mr); |
| VFIORamDiscardListener *vrdl = NULL; |
| |
| QLIST_FOREACH(vrdl, &container->vrdl_list, next) { |
| if (vrdl->mr == section->mr && |
| vrdl->offset_within_address_space == |
| section->offset_within_address_space) { |
| break; |
| } |
| } |
| |
| if (!vrdl) { |
| hw_error("vfio: Trying to sync missing RAM discard listener"); |
| } |
| |
| /* |
| * We only want/can synchronize the bitmap for actually mapped parts - |
| * which correspond to populated parts. Replay all populated parts. |
| */ |
| return ram_discard_manager_replay_populated(rdm, section, |
| vfio_ram_discard_get_dirty_bitmap, |
| &vrdl); |
| } |
| |
| static int vfio_sync_dirty_bitmap(VFIOContainer *container, |
| MemoryRegionSection *section) |
| { |
| ram_addr_t ram_addr; |
| |
| if (memory_region_is_iommu(section->mr)) { |
| VFIOGuestIOMMU *giommu; |
| |
| QLIST_FOREACH(giommu, &container->giommu_list, giommu_next) { |
| if (MEMORY_REGION(giommu->iommu_mr) == section->mr && |
| giommu->n.start == section->offset_within_region) { |
| Int128 llend; |
| vfio_giommu_dirty_notifier gdn = { .giommu = giommu }; |
| int idx = memory_region_iommu_attrs_to_index(giommu->iommu_mr, |
| MEMTXATTRS_UNSPECIFIED); |
| |
| llend = int128_add(int128_make64(section->offset_within_region), |
| section->size); |
| llend = int128_sub(llend, int128_one()); |
| |
| iommu_notifier_init(&gdn.n, |
| vfio_iommu_map_dirty_notify, |
| IOMMU_NOTIFIER_MAP, |
| section->offset_within_region, |
| int128_get64(llend), |
| idx); |
| memory_region_iommu_replay(giommu->iommu_mr, &gdn.n); |
| break; |
| } |
| } |
| return 0; |
| } else if (memory_region_has_ram_discard_manager(section->mr)) { |
| return vfio_sync_ram_discard_listener_dirty_bitmap(container, section); |
| } |
| |
| ram_addr = memory_region_get_ram_addr(section->mr) + |
| section->offset_within_region; |
| |
| return vfio_get_dirty_bitmap(container, |
| REAL_HOST_PAGE_ALIGN(section->offset_within_address_space), |
| int128_get64(section->size), ram_addr); |
| } |
| |
| static void vfio_listener_log_sync(MemoryListener *listener, |
| MemoryRegionSection *section) |
| { |
| VFIOContainer *container = container_of(listener, VFIOContainer, listener); |
| int ret; |
| |
| if (vfio_listener_skipped_section(section)) { |
| return; |
| } |
| |
| if (vfio_devices_all_dirty_tracking(container)) { |
| ret = vfio_sync_dirty_bitmap(container, section); |
| if (ret) { |
| error_report("vfio: Failed to sync dirty bitmap, err: %d (%s)", ret, |
| strerror(-ret)); |
| vfio_set_migration_error(ret); |
| } |
| } |
| } |
| |
| static const MemoryListener vfio_memory_listener = { |
| .name = "vfio", |
| .region_add = vfio_listener_region_add, |
| .region_del = vfio_listener_region_del, |
| .log_global_start = vfio_listener_log_global_start, |
| .log_global_stop = vfio_listener_log_global_stop, |
| .log_sync = vfio_listener_log_sync, |
| }; |
| |
| static void vfio_listener_release(VFIOContainer *container) |
| { |
| memory_listener_unregister(&container->listener); |
| if (container->iommu_type == VFIO_SPAPR_TCE_v2_IOMMU) { |
| memory_listener_unregister(&container->prereg_listener); |
| } |
| } |
| |
| static struct vfio_info_cap_header * |
| vfio_get_iommu_type1_info_cap(struct vfio_iommu_type1_info *info, uint16_t id) |
| { |
| if (!(info->flags & VFIO_IOMMU_INFO_CAPS)) { |
| return NULL; |
| } |
| |
| return vfio_get_cap((void *)info, info->cap_offset, id); |
| } |
| |
| bool vfio_get_info_dma_avail(struct vfio_iommu_type1_info *info, |
| unsigned int *avail) |
| { |
| struct vfio_info_cap_header *hdr; |
| struct vfio_iommu_type1_info_dma_avail *cap; |
| |
| /* If the capability cannot be found, assume no DMA limiting */ |
| hdr = vfio_get_iommu_type1_info_cap(info, |
| VFIO_IOMMU_TYPE1_INFO_DMA_AVAIL); |
| if (hdr == NULL) { |
| return false; |
| } |
| |
| if (avail != NULL) { |
| cap = (void *) hdr; |
| *avail = cap->avail; |
| } |
| |
| return true; |
| } |
| |
| void vfio_reset_handler(void *opaque) |
| { |
| VFIOGroup *group; |
| VFIODevice *vbasedev; |
| |
| QLIST_FOREACH(group, &vfio_group_list, next) { |
| QLIST_FOREACH(vbasedev, &group->device_list, next) { |
| if (vbasedev->dev->realized) { |
| vbasedev->ops->vfio_compute_needs_reset(vbasedev); |
| } |
| } |
| } |
| |
| QLIST_FOREACH(group, &vfio_group_list, next) { |
| QLIST_FOREACH(vbasedev, &group->device_list, next) { |
| if (vbasedev->dev->realized && vbasedev->needs_reset) { |
| vbasedev->ops->vfio_hot_reset_multi(vbasedev); |
| } |
| } |
| } |
| } |
| |
| static void vfio_kvm_device_add_group(VFIOGroup *group) |
| { |
| #ifdef CONFIG_KVM |
| struct kvm_device_attr attr = { |
| .group = KVM_DEV_VFIO_GROUP, |
| .attr = KVM_DEV_VFIO_GROUP_ADD, |
| .addr = (uint64_t)(unsigned long)&group->fd, |
| }; |
| |
| if (!kvm_enabled()) { |
| return; |
| } |
| |
| if (vfio_kvm_device_fd < 0) { |
| struct kvm_create_device cd = { |
| .type = KVM_DEV_TYPE_VFIO, |
| }; |
| |
| if (kvm_vm_ioctl(kvm_state, KVM_CREATE_DEVICE, &cd)) { |
| error_report("Failed to create KVM VFIO device: %m"); |
| return; |
| } |
| |
| vfio_kvm_device_fd = cd.fd; |
| } |
| |
| if (ioctl(vfio_kvm_device_fd, KVM_SET_DEVICE_ATTR, &attr)) { |
| error_report("Failed to add group %d to KVM VFIO device: %m", |
| group->groupid); |
| } |
| #endif |
| } |
| |
| static void vfio_kvm_device_del_group(VFIOGroup *group) |
| { |
| #ifdef CONFIG_KVM |
| struct kvm_device_attr attr = { |
| .group = KVM_DEV_VFIO_GROUP, |
| .attr = KVM_DEV_VFIO_GROUP_DEL, |
| .addr = (uint64_t)(unsigned long)&group->fd, |
| }; |
| |
| if (vfio_kvm_device_fd < 0) { |
| return; |
| } |
| |
| if (ioctl(vfio_kvm_device_fd, KVM_SET_DEVICE_ATTR, &attr)) { |
| error_report("Failed to remove group %d from KVM VFIO device: %m", |
| group->groupid); |
| } |
| #endif |
| } |
| |
| static VFIOAddressSpace *vfio_get_address_space(AddressSpace *as) |
| { |
| VFIOAddressSpace *space; |
| |
| QLIST_FOREACH(space, &vfio_address_spaces, list) { |
| if (space->as == as) { |
| return space; |
| } |
| } |
| |
| /* No suitable VFIOAddressSpace, create a new one */ |
| space = g_malloc0(sizeof(*space)); |
| space->as = as; |
| QLIST_INIT(&space->containers); |
| |
| QLIST_INSERT_HEAD(&vfio_address_spaces, space, list); |
| |
| return space; |
| } |
| |
| static void vfio_put_address_space(VFIOAddressSpace *space) |
| { |
| if (QLIST_EMPTY(&space->containers)) { |
| QLIST_REMOVE(space, list); |
| g_free(space); |
| } |
| } |
| |
| /* |
| * vfio_get_iommu_type - selects the richest iommu_type (v2 first) |
| */ |
| static int vfio_get_iommu_type(VFIOContainer *container, |
| Error **errp) |
| { |
| int iommu_types[] = { VFIO_TYPE1v2_IOMMU, VFIO_TYPE1_IOMMU, |
| VFIO_SPAPR_TCE_v2_IOMMU, VFIO_SPAPR_TCE_IOMMU }; |
| int i; |
| |
| for (i = 0; i < ARRAY_SIZE(iommu_types); i++) { |
| if (ioctl(container->fd, VFIO_CHECK_EXTENSION, iommu_types[i])) { |
| return iommu_types[i]; |
| } |
| } |
| error_setg(errp, "No available IOMMU models"); |
| return -EINVAL; |
| } |
| |
| static int vfio_init_container(VFIOContainer *container, int group_fd, |
| Error **errp) |
| { |
| int iommu_type, ret; |
| |
| iommu_type = vfio_get_iommu_type(container, errp); |
| if (iommu_type < 0) { |
| return iommu_type; |
| } |
| |
| ret = ioctl(group_fd, VFIO_GROUP_SET_CONTAINER, &container->fd); |
| if (ret) { |
| error_setg_errno(errp, errno, "Failed to set group container"); |
| return -errno; |
| } |
| |
| while (ioctl(container->fd, VFIO_SET_IOMMU, iommu_type)) { |
| if (iommu_type == VFIO_SPAPR_TCE_v2_IOMMU) { |
| /* |
| * On sPAPR, despite the IOMMU subdriver always advertises v1 and |
| * v2, the running platform may not support v2 and there is no |
| * way to guess it until an IOMMU group gets added to the container. |
| * So in case it fails with v2, try v1 as a fallback. |
| */ |
| iommu_type = VFIO_SPAPR_TCE_IOMMU; |
| continue; |
| } |
| error_setg_errno(errp, errno, "Failed to set iommu for container"); |
| return -errno; |
| } |
| |
| container->iommu_type = iommu_type; |
| return 0; |
| } |
| |
| static int vfio_get_iommu_info(VFIOContainer *container, |
| struct vfio_iommu_type1_info **info) |
| { |
| |
| size_t argsz = sizeof(struct vfio_iommu_type1_info); |
| |
| *info = g_new0(struct vfio_iommu_type1_info, 1); |
| again: |
| (*info)->argsz = argsz; |
| |
| if (ioctl(container->fd, VFIO_IOMMU_GET_INFO, *info)) { |
| g_free(*info); |
| *info = NULL; |
| return -errno; |
| } |
| |
| if (((*info)->argsz > argsz)) { |
| argsz = (*info)->argsz; |
| *info = g_realloc(*info, argsz); |
| goto again; |
| } |
| |
| return 0; |
| } |
| |
| static struct vfio_info_cap_header * |
| vfio_get_iommu_info_cap(struct vfio_iommu_type1_info *info, uint16_t id) |
| { |
| struct vfio_info_cap_header *hdr; |
| void *ptr = info; |
| |
| if (!(info->flags & VFIO_IOMMU_INFO_CAPS)) { |
| return NULL; |
| } |
| |
| for (hdr = ptr + info->cap_offset; hdr != ptr; hdr = ptr + hdr->next) { |
| if (hdr->id == id) { |
| return hdr; |
| } |
| } |
| |
| return NULL; |
| } |
| |
| static void vfio_get_iommu_info_migration(VFIOContainer *container, |
| struct vfio_iommu_type1_info *info) |
| { |
| struct vfio_info_cap_header *hdr; |
| struct vfio_iommu_type1_info_cap_migration *cap_mig; |
| |
| hdr = vfio_get_iommu_info_cap(info, VFIO_IOMMU_TYPE1_INFO_CAP_MIGRATION); |
| if (!hdr) { |
| return; |
| } |
| |
| cap_mig = container_of(hdr, struct vfio_iommu_type1_info_cap_migration, |
| header); |
| |
| /* |
| * cpu_physical_memory_set_dirty_lebitmap() supports pages in bitmap of |
| * qemu_real_host_page_size to mark those dirty. |
| */ |
| if (cap_mig->pgsize_bitmap & qemu_real_host_page_size()) { |
| container->dirty_pages_supported = true; |
| container->max_dirty_bitmap_size = cap_mig->max_dirty_bitmap_size; |
| container->dirty_pgsizes = cap_mig->pgsize_bitmap; |
| } |
| } |
| |
| static int vfio_connect_container(VFIOGroup *group, AddressSpace *as, |
| Error **errp) |
| { |
| VFIOContainer *container; |
| int ret, fd; |
| VFIOAddressSpace *space; |
| |
| space = vfio_get_address_space(as); |
| |
| /* |
| * VFIO is currently incompatible with discarding of RAM insofar as the |
| * madvise to purge (zap) the page from QEMU's address space does not |
| * interact with the memory API and therefore leaves stale virtual to |
| * physical mappings in the IOMMU if the page was previously pinned. We |
| * therefore set discarding broken for each group added to a container, |
| * whether the container is used individually or shared. This provides |
| * us with options to allow devices within a group to opt-in and allow |
| * discarding, so long as it is done consistently for a group (for instance |
| * if the device is an mdev device where it is known that the host vendor |
| * driver will never pin pages outside of the working set of the guest |
| * driver, which would thus not be discarding candidates). |
| * |
| * The first opportunity to induce pinning occurs here where we attempt to |
| * attach the group to existing containers within the AddressSpace. If any |
| * pages are already zapped from the virtual address space, such as from |
| * previous discards, new pinning will cause valid mappings to be |
| * re-established. Likewise, when the overall MemoryListener for a new |
| * container is registered, a replay of mappings within the AddressSpace |
| * will occur, re-establishing any previously zapped pages as well. |
| * |
| * Especially virtio-balloon is currently only prevented from discarding |
| * new memory, it will not yet set ram_block_discard_set_required() and |
| * therefore, neither stops us here or deals with the sudden memory |
| * consumption of inflated memory. |
| * |
| * We do support discarding of memory coordinated via the RamDiscardManager |
| * with some IOMMU types. vfio_ram_block_discard_disable() handles the |
| * details once we know which type of IOMMU we are using. |
| */ |
| |
| QLIST_FOREACH(container, &space->containers, next) { |
| if (!ioctl(group->fd, VFIO_GROUP_SET_CONTAINER, &container->fd)) { |
| ret = vfio_ram_block_discard_disable(container, true); |
| if (ret) { |
| error_setg_errno(errp, -ret, |
| "Cannot set discarding of RAM broken"); |
| if (ioctl(group->fd, VFIO_GROUP_UNSET_CONTAINER, |
| &container->fd)) { |
| error_report("vfio: error disconnecting group %d from" |
| " container", group->groupid); |
| } |
| return ret; |
| } |
| group->container = container; |
| QLIST_INSERT_HEAD(&container->group_list, group, container_next); |
| vfio_kvm_device_add_group(group); |
| return 0; |
| } |
| } |
| |
| fd = qemu_open_old("/dev/vfio/vfio", O_RDWR); |
| if (fd < 0) { |
| error_setg_errno(errp, errno, "failed to open /dev/vfio/vfio"); |
| ret = -errno; |
| goto put_space_exit; |
| } |
| |
| ret = ioctl(fd, VFIO_GET_API_VERSION); |
| if (ret != VFIO_API_VERSION) { |
| error_setg(errp, "supported vfio version: %d, " |
| "reported version: %d", VFIO_API_VERSION, ret); |
| ret = -EINVAL; |
| goto close_fd_exit; |
| } |
| |
| container = g_malloc0(sizeof(*container)); |
| container->space = space; |
| container->fd = fd; |
| container->error = NULL; |
| container->dirty_pages_supported = false; |
| container->dma_max_mappings = 0; |
| QLIST_INIT(&container->giommu_list); |
| QLIST_INIT(&container->hostwin_list); |
| QLIST_INIT(&container->vrdl_list); |
| |
| ret = vfio_init_container(container, group->fd, errp); |
| if (ret) { |
| goto free_container_exit; |
| } |
| |
| ret = vfio_ram_block_discard_disable(container, true); |
| if (ret) { |
| error_setg_errno(errp, -ret, "Cannot set discarding of RAM broken"); |
| goto free_container_exit; |
| } |
| |
| switch (container->iommu_type) { |
| case VFIO_TYPE1v2_IOMMU: |
| case VFIO_TYPE1_IOMMU: |
| { |
| struct vfio_iommu_type1_info *info; |
| |
| ret = vfio_get_iommu_info(container, &info); |
| if (ret) { |
| error_setg_errno(errp, -ret, "Failed to get VFIO IOMMU info"); |
| goto enable_discards_exit; |
| } |
| |
| if (info->flags & VFIO_IOMMU_INFO_PGSIZES) { |
| container->pgsizes = info->iova_pgsizes; |
| } else { |
| container->pgsizes = qemu_real_host_page_size(); |
| } |
| |
| if (!vfio_get_info_dma_avail(info, &container->dma_max_mappings)) { |
| container->dma_max_mappings = 65535; |
| } |
| vfio_get_iommu_info_migration(container, info); |
| g_free(info); |
| |
| /* |
| * FIXME: We should parse VFIO_IOMMU_TYPE1_INFO_CAP_IOVA_RANGE |
| * information to get the actual window extent rather than assume |
| * a 64-bit IOVA address space. |
| */ |
| vfio_host_win_add(container, 0, (hwaddr)-1, container->pgsizes); |
| |
| break; |
| } |
| case VFIO_SPAPR_TCE_v2_IOMMU: |
| case VFIO_SPAPR_TCE_IOMMU: |
| { |
| struct vfio_iommu_spapr_tce_info info; |
| bool v2 = container->iommu_type == VFIO_SPAPR_TCE_v2_IOMMU; |
| |
| /* |
| * The host kernel code implementing VFIO_IOMMU_DISABLE is called |
| * when container fd is closed so we do not call it explicitly |
| * in this file. |
| */ |
| if (!v2) { |
| ret = ioctl(fd, VFIO_IOMMU_ENABLE); |
| if (ret) { |
| error_setg_errno(errp, errno, "failed to enable container"); |
| ret = -errno; |
| goto enable_discards_exit; |
| } |
| } else { |
| container->prereg_listener = vfio_prereg_listener; |
| |
| memory_listener_register(&container->prereg_listener, |
| &address_space_memory); |
| if (container->error) { |
| memory_listener_unregister(&container->prereg_listener); |
| ret = -1; |
| error_propagate_prepend(errp, container->error, |
| "RAM memory listener initialization failed: "); |
| goto enable_discards_exit; |
| } |
| } |
| |
| info.argsz = sizeof(info); |
| ret = ioctl(fd, VFIO_IOMMU_SPAPR_TCE_GET_INFO, &info); |
| if (ret) { |
| error_setg_errno(errp, errno, |
| "VFIO_IOMMU_SPAPR_TCE_GET_INFO failed"); |
| ret = -errno; |
| if (v2) { |
| memory_listener_unregister(&container->prereg_listener); |
| } |
| goto enable_discards_exit; |
| } |
| |
| if (v2) { |
| container->pgsizes = info.ddw.pgsizes; |
| /* |
| * There is a default window in just created container. |
| * To make region_add/del simpler, we better remove this |
| * window now and let those iommu_listener callbacks |
| * create/remove them when needed. |
| */ |
| ret = vfio_spapr_remove_window(container, info.dma32_window_start); |
| if (ret) { |
| error_setg_errno(errp, -ret, |
| "failed to remove existing window"); |
| goto enable_discards_exit; |
| } |
| } else { |
| /* The default table uses 4K pages */ |
| container->pgsizes = 0x1000; |
| vfio_host_win_add(container, info.dma32_window_start, |
| info.dma32_window_start + |
| info.dma32_window_size - 1, |
| 0x1000); |
| } |
| } |
| } |
| |
| vfio_kvm_device_add_group(group); |
| |
| QLIST_INIT(&container->group_list); |
| QLIST_INSERT_HEAD(&space->containers, container, next); |
| |
| group->container = container; |
| QLIST_INSERT_HEAD(&container->group_list, group, container_next); |
| |
| container->listener = vfio_memory_listener; |
| |
| memory_listener_register(&container->listener, container->space->as); |
| |
| if (container->error) { |
| ret = -1; |
| error_propagate_prepend(errp, container->error, |
| "memory listener initialization failed: "); |
| goto listener_release_exit; |
| } |
| |
| container->initialized = true; |
| |
| return 0; |
| listener_release_exit: |
| QLIST_REMOVE(group, container_next); |
| QLIST_REMOVE(container, next); |
| vfio_kvm_device_del_group(group); |
| vfio_listener_release(container); |
| |
| enable_discards_exit: |
| vfio_ram_block_discard_disable(container, false); |
| |
| free_container_exit: |
| g_free(container); |
| |
| close_fd_exit: |
| close(fd); |
| |
| put_space_exit: |
| vfio_put_address_space(space); |
| |
| return ret; |
| } |
| |
| static void vfio_disconnect_container(VFIOGroup *group) |
| { |
| VFIOContainer *container = group->container; |
| |
| QLIST_REMOVE(group, container_next); |
| group->container = NULL; |
| |
| /* |
| * Explicitly release the listener first before unset container, |
| * since unset may destroy the backend container if it's the last |
| * group. |
| */ |
| if (QLIST_EMPTY(&container->group_list)) { |
| vfio_listener_release(container); |
| } |
| |
| if (ioctl(group->fd, VFIO_GROUP_UNSET_CONTAINER, &container->fd)) { |
| error_report("vfio: error disconnecting group %d from container", |
| group->groupid); |
| } |
| |
| if (QLIST_EMPTY(&container->group_list)) { |
| VFIOAddressSpace *space = container->space; |
| VFIOGuestIOMMU *giommu, *tmp; |
| VFIOHostDMAWindow *hostwin, *next; |
| |
| QLIST_REMOVE(container, next); |
| |
| QLIST_FOREACH_SAFE(giommu, &container->giommu_list, giommu_next, tmp) { |
| memory_region_unregister_iommu_notifier( |
| MEMORY_REGION(giommu->iommu_mr), &giommu->n); |
| QLIST_REMOVE(giommu, giommu_next); |
| g_free(giommu); |
| } |
| |
| QLIST_FOREACH_SAFE(hostwin, &container->hostwin_list, hostwin_next, |
| next) { |
| QLIST_REMOVE(hostwin, hostwin_next); |
| g_free(hostwin); |
| } |
| |
| trace_vfio_disconnect_container(container->fd); |
| close(container->fd); |
| g_free(container); |
| |
| vfio_put_address_space(space); |
| } |
| } |
| |
| VFIOGroup *vfio_get_group(int groupid, AddressSpace *as, Error **errp) |
| { |
| VFIOGroup *group; |
| char path[32]; |
| struct vfio_group_status status = { .argsz = sizeof(status) }; |
| |
| QLIST_FOREACH(group, &vfio_group_list, next) { |
| if (group->groupid == groupid) { |
| /* Found it. Now is it already in the right context? */ |
| if (group->container->space->as == as) { |
| return group; |
| } else { |
| error_setg(errp, "group %d used in multiple address spaces", |
| group->groupid); |
| return NULL; |
| } |
| } |
| } |
| |
| group = g_malloc0(sizeof(*group)); |
| |
| snprintf(path, sizeof(path), "/dev/vfio/%d", groupid); |
| group->fd = qemu_open_old(path, O_RDWR); |
| if (group->fd < 0) { |
| error_setg_errno(errp, errno, "failed to open %s", path); |
| goto free_group_exit; |
| } |
| |
| if (ioctl(group->fd, VFIO_GROUP_GET_STATUS, &status)) { |
| error_setg_errno(errp, errno, "failed to get group %d status", groupid); |
| goto close_fd_exit; |
| } |
| |
| if (!(status.flags & VFIO_GROUP_FLAGS_VIABLE)) { |
| error_setg(errp, "group %d is not viable", groupid); |
| error_append_hint(errp, |
| "Please ensure all devices within the iommu_group " |
| "are bound to their vfio bus driver.\n"); |
| goto close_fd_exit; |
| } |
| |
| group->groupid = groupid; |
| QLIST_INIT(&group->device_list); |
| |
| if (vfio_connect_container(group, as, errp)) { |
| error_prepend(errp, "failed to setup container for group %d: ", |
| groupid); |
| goto close_fd_exit; |
| } |
| |
| if (QLIST_EMPTY(&vfio_group_list)) { |
| qemu_register_reset(vfio_reset_handler, NULL); |
| } |
| |
| QLIST_INSERT_HEAD(&vfio_group_list, group, next); |
| |
| return group; |
| |
| close_fd_exit: |
| close(group->fd); |
| |
| free_group_exit: |
| g_free(group); |
| |
| return NULL; |
| } |
| |
| void vfio_put_group(VFIOGroup *group) |
| { |
| if (!group || !QLIST_EMPTY(&group->device_list)) { |
| return; |
| } |
| |
| if (!group->ram_block_discard_allowed) { |
| vfio_ram_block_discard_disable(group->container, false); |
| } |
| vfio_kvm_device_del_group(group); |
| vfio_disconnect_container(group); |
| QLIST_REMOVE(group, next); |
| trace_vfio_put_group(group->fd); |
| close(group->fd); |
| g_free(group); |
| |
| if (QLIST_EMPTY(&vfio_group_list)) { |
| qemu_unregister_reset(vfio_reset_handler, NULL); |
| } |
| } |
| |
| struct vfio_device_info *vfio_get_device_info(int fd) |
| { |
| struct vfio_device_info *info; |
| uint32_t argsz = sizeof(*info); |
| |
| info = g_malloc0(argsz); |
| |
| retry: |
| info->argsz = argsz; |
| |
| if (ioctl(fd, VFIO_DEVICE_GET_INFO, info)) { |
| g_free(info); |
| return NULL; |
| } |
| |
| if (info->argsz > argsz) { |
| argsz = info->argsz; |
| info = g_realloc(info, argsz); |
| goto retry; |
| } |
| |
| return info; |
| } |
| |
| int vfio_get_device(VFIOGroup *group, const char *name, |
| VFIODevice *vbasedev, Error **errp) |
| { |
| g_autofree struct vfio_device_info *info = NULL; |
| int fd; |
| |
| fd = ioctl(group->fd, VFIO_GROUP_GET_DEVICE_FD, name); |
| if (fd < 0) { |
| error_setg_errno(errp, errno, "error getting device from group %d", |
| group->groupid); |
| error_append_hint(errp, |
| "Verify all devices in group %d are bound to vfio-<bus> " |
| "or pci-stub and not already in use\n", group->groupid); |
| return fd; |
| } |
| |
| info = vfio_get_device_info(fd); |
| if (!info) { |
| error_setg_errno(errp, errno, "error getting device info"); |
| close(fd); |
| return -1; |
| } |
| |
| /* |
| * Set discarding of RAM as not broken for this group if the driver knows |
| * the device operates compatibly with discarding. Setting must be |
| * consistent per group, but since compatibility is really only possible |
| * with mdev currently, we expect singleton groups. |
| */ |
| if (vbasedev->ram_block_discard_allowed != |
| group->ram_block_discard_allowed) { |
| if (!QLIST_EMPTY(&group->device_list)) { |
| error_setg(errp, "Inconsistent setting of support for discarding " |
| "RAM (e.g., balloon) within group"); |
| close(fd); |
| return -1; |
| } |
| |
| if (!group->ram_block_discard_allowed) { |
| group->ram_block_discard_allowed = true; |
| vfio_ram_block_discard_disable(group->container, false); |
| } |
| } |
| |
| vbasedev->fd = fd; |
| vbasedev->group = group; |
| QLIST_INSERT_HEAD(&group->device_list, vbasedev, next); |
| |
| vbasedev->num_irqs = info->num_irqs; |
| vbasedev->num_regions = info->num_regions; |
| vbasedev->flags = info->flags; |
| |
| trace_vfio_get_device(name, info->flags, info->num_regions, info->num_irqs); |
| |
| vbasedev->reset_works = !!(info->flags & VFIO_DEVICE_FLAGS_RESET); |
| |
| return 0; |
| } |
| |
| void vfio_put_base_device(VFIODevice *vbasedev) |
| { |
| if (!vbasedev->group) { |
| return; |
| } |
| QLIST_REMOVE(vbasedev, next); |
| vbasedev->group = NULL; |
| trace_vfio_put_base_device(vbasedev->fd); |
| close(vbasedev->fd); |
| } |
| |
| /* |
| * Interfaces for IBM EEH (Enhanced Error Handling) |
| */ |
| static bool vfio_eeh_container_ok(VFIOContainer *container) |
| { |
| /* |
| * As of 2016-03-04 (linux-4.5) the host kernel EEH/VFIO |
| * implementation is broken if there are multiple groups in a |
| * container. The hardware works in units of Partitionable |
| * Endpoints (== IOMMU groups) and the EEH operations naively |
| * iterate across all groups in the container, without any logic |
| * to make sure the groups have their state synchronized. For |
| * certain operations (ENABLE) that might be ok, until an error |
| * occurs, but for others (GET_STATE) it's clearly broken. |
| */ |
| |
| /* |
| * XXX Once fixed kernels exist, test for them here |
| */ |
| |
| if (QLIST_EMPTY(&container->group_list)) { |
| return false; |
| } |
| |
| if (QLIST_NEXT(QLIST_FIRST(&container->group_list), container_next)) { |
| return false; |
| } |
| |
| return true; |
| } |
| |
| static int vfio_eeh_container_op(VFIOContainer *container, uint32_t op) |
| { |
| struct vfio_eeh_pe_op pe_op = { |
| .argsz = sizeof(pe_op), |
| .op = op, |
| }; |
| int ret; |
| |
| if (!vfio_eeh_container_ok(container)) { |
| error_report("vfio/eeh: EEH_PE_OP 0x%x: " |
| "kernel requires a container with exactly one group", op); |
| return -EPERM; |
| } |
| |
| ret = ioctl(container->fd, VFIO_EEH_PE_OP, &pe_op); |
| if (ret < 0) { |
| error_report("vfio/eeh: EEH_PE_OP 0x%x failed: %m", op); |
| return -errno; |
| } |
| |
| return ret; |
| } |
| |
| static VFIOContainer *vfio_eeh_as_container(AddressSpace *as) |
| { |
| VFIOAddressSpace *space = vfio_get_address_space(as); |
| VFIOContainer *container = NULL; |
| |
| if (QLIST_EMPTY(&space->containers)) { |
| /* No containers to act on */ |
| goto out; |
| } |
| |
| container = QLIST_FIRST(&space->containers); |
| |
| if (QLIST_NEXT(container, next)) { |
| /* We don't yet have logic to synchronize EEH state across |
| * multiple containers */ |
| container = NULL; |
| goto out; |
| } |
| |
| out: |
| vfio_put_address_space(space); |
| return container; |
| } |
| |
| bool vfio_eeh_as_ok(AddressSpace *as) |
| { |
| VFIOContainer *container = vfio_eeh_as_container(as); |
| |
| return (container != NULL) && vfio_eeh_container_ok(container); |
| } |
| |
| int vfio_eeh_as_op(AddressSpace *as, uint32_t op) |
| { |
| VFIOContainer *container = vfio_eeh_as_container(as); |
| |
| if (!container) { |
| return -ENODEV; |
| } |
| return vfio_eeh_container_op(container, op); |
| } |