1 /* 2 * generic functions used by VFIO devices 3 * 4 * Copyright Red Hat, Inc. 2012 5 * 6 * Authors: 7 * Alex Williamson <alex.williamson@redhat.com> 8 * 9 * This work is licensed under the terms of the GNU GPL, version 2. See 10 * the COPYING file in the top-level directory. 11 * 12 * Based on qemu-kvm device-assignment: 13 * Adapted for KVM by Qumranet. 14 * Copyright (c) 2007, Neocleus, Alex Novik (alex@neocleus.com) 15 * Copyright (c) 2007, Neocleus, Guy Zana (guy@neocleus.com) 16 * Copyright (C) 2008, Qumranet, Amit Shah (amit.shah@qumranet.com) 17 * Copyright (C) 2008, Red Hat, Amit Shah (amit.shah@redhat.com) 18 * Copyright (C) 2008, IBM, Muli Ben-Yehuda (muli@il.ibm.com) 19 */ 20 21 #include "qemu/osdep.h" 22 #include <sys/ioctl.h> 23 #include <linux/vfio.h> 24 25 #include "hw/vfio/vfio-common.h" 26 #include "exec/address-spaces.h" 27 #include "exec/memory.h" 28 #include "exec/ram_addr.h" 29 #include "hw/hw.h" 30 #include "qemu/error-report.h" 31 #include "qemu/range.h" 32 #include "sysemu/reset.h" 33 #include "trace.h" 34 #include "qapi/error.h" 35 #include "migration/migration.h" 36 #include "pci.h" 37 38 VFIOGroupList vfio_group_list = 39 QLIST_HEAD_INITIALIZER(vfio_group_list); 40 41 static int vfio_ram_block_discard_disable(VFIOContainer *container, bool state) 42 { 43 switch (container->iommu_type) { 44 case VFIO_TYPE1v2_IOMMU: 45 case VFIO_TYPE1_IOMMU: 46 /* 47 * We support coordinated discarding of RAM via the RamDiscardManager. 48 */ 49 return ram_block_uncoordinated_discard_disable(state); 50 default: 51 /* 52 * VFIO_SPAPR_TCE_IOMMU most probably works just fine with 53 * RamDiscardManager, however, it is completely untested. 54 * 55 * VFIO_SPAPR_TCE_v2_IOMMU with "DMA memory preregistering" does 56 * completely the opposite of managing mapping/pinning dynamically as 57 * required by RamDiscardManager. We would have to special-case sections 58 * with a RamDiscardManager. 59 */ 60 return ram_block_discard_disable(state); 61 } 62 } 63 64 static int vfio_dma_unmap_bitmap(const VFIOContainer *container, 65 hwaddr iova, ram_addr_t size, 66 IOMMUTLBEntry *iotlb) 67 { 68 const VFIOContainerBase *bcontainer = &container->bcontainer; 69 struct vfio_iommu_type1_dma_unmap *unmap; 70 struct vfio_bitmap *bitmap; 71 VFIOBitmap vbmap; 72 int ret; 73 74 ret = vfio_bitmap_alloc(&vbmap, size); 75 if (ret) { 76 return ret; 77 } 78 79 unmap = g_malloc0(sizeof(*unmap) + sizeof(*bitmap)); 80 81 unmap->argsz = sizeof(*unmap) + sizeof(*bitmap); 82 unmap->iova = iova; 83 unmap->size = size; 84 unmap->flags |= VFIO_DMA_UNMAP_FLAG_GET_DIRTY_BITMAP; 85 bitmap = (struct vfio_bitmap *)&unmap->data; 86 87 /* 88 * cpu_physical_memory_set_dirty_lebitmap() supports pages in bitmap of 89 * qemu_real_host_page_size to mark those dirty. Hence set bitmap_pgsize 90 * to qemu_real_host_page_size. 91 */ 92 bitmap->pgsize = qemu_real_host_page_size(); 93 bitmap->size = vbmap.size; 94 bitmap->data = (__u64 *)vbmap.bitmap; 95 96 if (vbmap.size > bcontainer->max_dirty_bitmap_size) { 97 error_report("UNMAP: Size of bitmap too big 0x%"PRIx64, vbmap.size); 98 ret = -E2BIG; 99 goto unmap_exit; 100 } 101 102 ret = ioctl(container->fd, VFIO_IOMMU_UNMAP_DMA, unmap); 103 if (!ret) { 104 cpu_physical_memory_set_dirty_lebitmap(vbmap.bitmap, 105 iotlb->translated_addr, vbmap.pages); 106 } else { 107 error_report("VFIO_UNMAP_DMA with DIRTY_BITMAP : %m"); 108 } 109 110 unmap_exit: 111 g_free(unmap); 112 g_free(vbmap.bitmap); 113 114 return ret; 115 } 116 117 /* 118 * DMA - Mapping and unmapping for the "type1" IOMMU interface used on x86 119 */ 120 static int vfio_legacy_dma_unmap(const VFIOContainerBase *bcontainer, 121 hwaddr iova, ram_addr_t size, 122 IOMMUTLBEntry *iotlb) 123 { 124 const VFIOContainer *container = container_of(bcontainer, VFIOContainer, 125 bcontainer); 126 struct vfio_iommu_type1_dma_unmap unmap = { 127 .argsz = sizeof(unmap), 128 .flags = 0, 129 .iova = iova, 130 .size = size, 131 }; 132 bool need_dirty_sync = false; 133 int ret; 134 135 if (iotlb && vfio_devices_all_running_and_mig_active(bcontainer)) { 136 if (!vfio_devices_all_device_dirty_tracking(bcontainer) && 137 bcontainer->dirty_pages_supported) { 138 return vfio_dma_unmap_bitmap(container, iova, size, iotlb); 139 } 140 141 need_dirty_sync = true; 142 } 143 144 while (ioctl(container->fd, VFIO_IOMMU_UNMAP_DMA, &unmap)) { 145 /* 146 * The type1 backend has an off-by-one bug in the kernel (71a7d3d78e3c 147 * v4.15) where an overflow in its wrap-around check prevents us from 148 * unmapping the last page of the address space. Test for the error 149 * condition and re-try the unmap excluding the last page. The 150 * expectation is that we've never mapped the last page anyway and this 151 * unmap request comes via vIOMMU support which also makes it unlikely 152 * that this page is used. This bug was introduced well after type1 v2 153 * support was introduced, so we shouldn't need to test for v1. A fix 154 * is queued for kernel v5.0 so this workaround can be removed once 155 * affected kernels are sufficiently deprecated. 156 */ 157 if (errno == EINVAL && unmap.size && !(unmap.iova + unmap.size) && 158 container->iommu_type == VFIO_TYPE1v2_IOMMU) { 159 trace_vfio_legacy_dma_unmap_overflow_workaround(); 160 unmap.size -= 1ULL << ctz64(bcontainer->pgsizes); 161 continue; 162 } 163 error_report("VFIO_UNMAP_DMA failed: %s", strerror(errno)); 164 return -errno; 165 } 166 167 if (need_dirty_sync) { 168 ret = vfio_get_dirty_bitmap(bcontainer, iova, size, 169 iotlb->translated_addr); 170 if (ret) { 171 return ret; 172 } 173 } 174 175 return 0; 176 } 177 178 static int vfio_legacy_dma_map(const VFIOContainerBase *bcontainer, hwaddr iova, 179 ram_addr_t size, void *vaddr, bool readonly) 180 { 181 const VFIOContainer *container = container_of(bcontainer, VFIOContainer, 182 bcontainer); 183 struct vfio_iommu_type1_dma_map map = { 184 .argsz = sizeof(map), 185 .flags = VFIO_DMA_MAP_FLAG_READ, 186 .vaddr = (__u64)(uintptr_t)vaddr, 187 .iova = iova, 188 .size = size, 189 }; 190 191 if (!readonly) { 192 map.flags |= VFIO_DMA_MAP_FLAG_WRITE; 193 } 194 195 /* 196 * Try the mapping, if it fails with EBUSY, unmap the region and try 197 * again. This shouldn't be necessary, but we sometimes see it in 198 * the VGA ROM space. 199 */ 200 if (ioctl(container->fd, VFIO_IOMMU_MAP_DMA, &map) == 0 || 201 (errno == EBUSY && 202 vfio_legacy_dma_unmap(bcontainer, iova, size, NULL) == 0 && 203 ioctl(container->fd, VFIO_IOMMU_MAP_DMA, &map) == 0)) { 204 return 0; 205 } 206 207 error_report("VFIO_MAP_DMA failed: %s", strerror(errno)); 208 return -errno; 209 } 210 211 static int 212 vfio_legacy_set_dirty_page_tracking(const VFIOContainerBase *bcontainer, 213 bool start) 214 { 215 const VFIOContainer *container = container_of(bcontainer, VFIOContainer, 216 bcontainer); 217 int ret; 218 struct vfio_iommu_type1_dirty_bitmap dirty = { 219 .argsz = sizeof(dirty), 220 }; 221 222 if (start) { 223 dirty.flags = VFIO_IOMMU_DIRTY_PAGES_FLAG_START; 224 } else { 225 dirty.flags = VFIO_IOMMU_DIRTY_PAGES_FLAG_STOP; 226 } 227 228 ret = ioctl(container->fd, VFIO_IOMMU_DIRTY_PAGES, &dirty); 229 if (ret) { 230 ret = -errno; 231 error_report("Failed to set dirty tracking flag 0x%x errno: %d", 232 dirty.flags, errno); 233 } 234 235 return ret; 236 } 237 238 static int vfio_legacy_query_dirty_bitmap(const VFIOContainerBase *bcontainer, 239 VFIOBitmap *vbmap, 240 hwaddr iova, hwaddr size) 241 { 242 const VFIOContainer *container = container_of(bcontainer, VFIOContainer, 243 bcontainer); 244 struct vfio_iommu_type1_dirty_bitmap *dbitmap; 245 struct vfio_iommu_type1_dirty_bitmap_get *range; 246 int ret; 247 248 dbitmap = g_malloc0(sizeof(*dbitmap) + sizeof(*range)); 249 250 dbitmap->argsz = sizeof(*dbitmap) + sizeof(*range); 251 dbitmap->flags = VFIO_IOMMU_DIRTY_PAGES_FLAG_GET_BITMAP; 252 range = (struct vfio_iommu_type1_dirty_bitmap_get *)&dbitmap->data; 253 range->iova = iova; 254 range->size = size; 255 256 /* 257 * cpu_physical_memory_set_dirty_lebitmap() supports pages in bitmap of 258 * qemu_real_host_page_size to mark those dirty. Hence set bitmap's pgsize 259 * to qemu_real_host_page_size. 260 */ 261 range->bitmap.pgsize = qemu_real_host_page_size(); 262 range->bitmap.size = vbmap->size; 263 range->bitmap.data = (__u64 *)vbmap->bitmap; 264 265 ret = ioctl(container->fd, VFIO_IOMMU_DIRTY_PAGES, dbitmap); 266 if (ret) { 267 ret = -errno; 268 error_report("Failed to get dirty bitmap for iova: 0x%"PRIx64 269 " size: 0x%"PRIx64" err: %d", (uint64_t)range->iova, 270 (uint64_t)range->size, errno); 271 } 272 273 g_free(dbitmap); 274 275 return ret; 276 } 277 278 static struct vfio_info_cap_header * 279 vfio_get_iommu_type1_info_cap(struct vfio_iommu_type1_info *info, uint16_t id) 280 { 281 if (!(info->flags & VFIO_IOMMU_INFO_CAPS)) { 282 return NULL; 283 } 284 285 return vfio_get_cap((void *)info, info->cap_offset, id); 286 } 287 288 bool vfio_get_info_dma_avail(struct vfio_iommu_type1_info *info, 289 unsigned int *avail) 290 { 291 struct vfio_info_cap_header *hdr; 292 struct vfio_iommu_type1_info_dma_avail *cap; 293 294 /* If the capability cannot be found, assume no DMA limiting */ 295 hdr = vfio_get_iommu_type1_info_cap(info, 296 VFIO_IOMMU_TYPE1_INFO_DMA_AVAIL); 297 if (!hdr) { 298 return false; 299 } 300 301 if (avail != NULL) { 302 cap = (void *) hdr; 303 *avail = cap->avail; 304 } 305 306 return true; 307 } 308 309 static bool vfio_get_info_iova_range(struct vfio_iommu_type1_info *info, 310 VFIOContainerBase *bcontainer) 311 { 312 struct vfio_info_cap_header *hdr; 313 struct vfio_iommu_type1_info_cap_iova_range *cap; 314 315 hdr = vfio_get_iommu_type1_info_cap(info, 316 VFIO_IOMMU_TYPE1_INFO_CAP_IOVA_RANGE); 317 if (!hdr) { 318 return false; 319 } 320 321 cap = (void *)hdr; 322 323 for (int i = 0; i < cap->nr_iovas; i++) { 324 Range *range = g_new(Range, 1); 325 326 range_set_bounds(range, cap->iova_ranges[i].start, 327 cap->iova_ranges[i].end); 328 bcontainer->iova_ranges = 329 range_list_insert(bcontainer->iova_ranges, range); 330 } 331 332 return true; 333 } 334 335 static void vfio_kvm_device_add_group(VFIOGroup *group) 336 { 337 Error *err = NULL; 338 339 if (vfio_kvm_device_add_fd(group->fd, &err)) { 340 error_reportf_err(err, "group ID %d: ", group->groupid); 341 } 342 } 343 344 static void vfio_kvm_device_del_group(VFIOGroup *group) 345 { 346 Error *err = NULL; 347 348 if (vfio_kvm_device_del_fd(group->fd, &err)) { 349 error_reportf_err(err, "group ID %d: ", group->groupid); 350 } 351 } 352 353 /* 354 * vfio_get_iommu_type - selects the richest iommu_type (v2 first) 355 */ 356 static int vfio_get_iommu_type(VFIOContainer *container, 357 Error **errp) 358 { 359 int iommu_types[] = { VFIO_TYPE1v2_IOMMU, VFIO_TYPE1_IOMMU, 360 VFIO_SPAPR_TCE_v2_IOMMU, VFIO_SPAPR_TCE_IOMMU }; 361 int i; 362 363 for (i = 0; i < ARRAY_SIZE(iommu_types); i++) { 364 if (ioctl(container->fd, VFIO_CHECK_EXTENSION, iommu_types[i])) { 365 return iommu_types[i]; 366 } 367 } 368 error_setg(errp, "No available IOMMU models"); 369 return -EINVAL; 370 } 371 372 /* 373 * vfio_get_iommu_ops - get a VFIOIOMMUClass associated with a type 374 */ 375 static const VFIOIOMMUClass *vfio_get_iommu_class(int iommu_type, Error **errp) 376 { 377 ObjectClass *klass = NULL; 378 379 switch (iommu_type) { 380 case VFIO_TYPE1v2_IOMMU: 381 case VFIO_TYPE1_IOMMU: 382 klass = object_class_by_name(TYPE_VFIO_IOMMU_LEGACY); 383 break; 384 case VFIO_SPAPR_TCE_v2_IOMMU: 385 case VFIO_SPAPR_TCE_IOMMU: 386 klass = object_class_by_name(TYPE_VFIO_IOMMU_SPAPR); 387 break; 388 default: 389 g_assert_not_reached(); 390 }; 391 392 return VFIO_IOMMU_CLASS(klass); 393 } 394 395 static int vfio_set_iommu(VFIOContainer *container, int group_fd, 396 VFIOAddressSpace *space, Error **errp) 397 { 398 int iommu_type, ret; 399 const VFIOIOMMUClass *vioc; 400 401 iommu_type = vfio_get_iommu_type(container, errp); 402 if (iommu_type < 0) { 403 return iommu_type; 404 } 405 406 ret = ioctl(group_fd, VFIO_GROUP_SET_CONTAINER, &container->fd); 407 if (ret) { 408 error_setg_errno(errp, errno, "Failed to set group container"); 409 return -errno; 410 } 411 412 while (ioctl(container->fd, VFIO_SET_IOMMU, iommu_type)) { 413 if (iommu_type == VFIO_SPAPR_TCE_v2_IOMMU) { 414 /* 415 * On sPAPR, despite the IOMMU subdriver always advertises v1 and 416 * v2, the running platform may not support v2 and there is no 417 * way to guess it until an IOMMU group gets added to the container. 418 * So in case it fails with v2, try v1 as a fallback. 419 */ 420 iommu_type = VFIO_SPAPR_TCE_IOMMU; 421 continue; 422 } 423 error_setg_errno(errp, errno, "Failed to set iommu for container"); 424 return -errno; 425 } 426 427 container->iommu_type = iommu_type; 428 429 vioc = vfio_get_iommu_class(iommu_type, errp); 430 if (!vioc) { 431 error_setg(errp, "No available IOMMU models"); 432 return -EINVAL; 433 } 434 435 vfio_container_init(&container->bcontainer, space, vioc); 436 return 0; 437 } 438 439 static int vfio_get_iommu_info(VFIOContainer *container, 440 struct vfio_iommu_type1_info **info) 441 { 442 443 size_t argsz = sizeof(struct vfio_iommu_type1_info); 444 445 *info = g_new0(struct vfio_iommu_type1_info, 1); 446 again: 447 (*info)->argsz = argsz; 448 449 if (ioctl(container->fd, VFIO_IOMMU_GET_INFO, *info)) { 450 g_free(*info); 451 *info = NULL; 452 return -errno; 453 } 454 455 if (((*info)->argsz > argsz)) { 456 argsz = (*info)->argsz; 457 *info = g_realloc(*info, argsz); 458 goto again; 459 } 460 461 return 0; 462 } 463 464 static struct vfio_info_cap_header * 465 vfio_get_iommu_info_cap(struct vfio_iommu_type1_info *info, uint16_t id) 466 { 467 struct vfio_info_cap_header *hdr; 468 void *ptr = info; 469 470 if (!(info->flags & VFIO_IOMMU_INFO_CAPS)) { 471 return NULL; 472 } 473 474 for (hdr = ptr + info->cap_offset; hdr != ptr; hdr = ptr + hdr->next) { 475 if (hdr->id == id) { 476 return hdr; 477 } 478 } 479 480 return NULL; 481 } 482 483 static void vfio_get_iommu_info_migration(VFIOContainer *container, 484 struct vfio_iommu_type1_info *info) 485 { 486 struct vfio_info_cap_header *hdr; 487 struct vfio_iommu_type1_info_cap_migration *cap_mig; 488 VFIOContainerBase *bcontainer = &container->bcontainer; 489 490 hdr = vfio_get_iommu_info_cap(info, VFIO_IOMMU_TYPE1_INFO_CAP_MIGRATION); 491 if (!hdr) { 492 return; 493 } 494 495 cap_mig = container_of(hdr, struct vfio_iommu_type1_info_cap_migration, 496 header); 497 498 /* 499 * cpu_physical_memory_set_dirty_lebitmap() supports pages in bitmap of 500 * qemu_real_host_page_size to mark those dirty. 501 */ 502 if (cap_mig->pgsize_bitmap & qemu_real_host_page_size()) { 503 bcontainer->dirty_pages_supported = true; 504 bcontainer->max_dirty_bitmap_size = cap_mig->max_dirty_bitmap_size; 505 bcontainer->dirty_pgsizes = cap_mig->pgsize_bitmap; 506 } 507 } 508 509 static int vfio_legacy_setup(VFIOContainerBase *bcontainer, Error **errp) 510 { 511 VFIOContainer *container = container_of(bcontainer, VFIOContainer, 512 bcontainer); 513 g_autofree struct vfio_iommu_type1_info *info = NULL; 514 int ret; 515 516 ret = vfio_get_iommu_info(container, &info); 517 if (ret) { 518 error_setg_errno(errp, -ret, "Failed to get VFIO IOMMU info"); 519 return ret; 520 } 521 522 if (info->flags & VFIO_IOMMU_INFO_PGSIZES) { 523 bcontainer->pgsizes = info->iova_pgsizes; 524 } else { 525 bcontainer->pgsizes = qemu_real_host_page_size(); 526 } 527 528 if (!vfio_get_info_dma_avail(info, &bcontainer->dma_max_mappings)) { 529 bcontainer->dma_max_mappings = 65535; 530 } 531 532 vfio_get_info_iova_range(info, bcontainer); 533 534 vfio_get_iommu_info_migration(container, info); 535 return 0; 536 } 537 538 static int vfio_connect_container(VFIOGroup *group, AddressSpace *as, 539 Error **errp) 540 { 541 VFIOContainer *container; 542 VFIOContainerBase *bcontainer; 543 int ret, fd; 544 VFIOAddressSpace *space; 545 546 space = vfio_get_address_space(as); 547 548 /* 549 * VFIO is currently incompatible with discarding of RAM insofar as the 550 * madvise to purge (zap) the page from QEMU's address space does not 551 * interact with the memory API and therefore leaves stale virtual to 552 * physical mappings in the IOMMU if the page was previously pinned. We 553 * therefore set discarding broken for each group added to a container, 554 * whether the container is used individually or shared. This provides 555 * us with options to allow devices within a group to opt-in and allow 556 * discarding, so long as it is done consistently for a group (for instance 557 * if the device is an mdev device where it is known that the host vendor 558 * driver will never pin pages outside of the working set of the guest 559 * driver, which would thus not be discarding candidates). 560 * 561 * The first opportunity to induce pinning occurs here where we attempt to 562 * attach the group to existing containers within the AddressSpace. If any 563 * pages are already zapped from the virtual address space, such as from 564 * previous discards, new pinning will cause valid mappings to be 565 * re-established. Likewise, when the overall MemoryListener for a new 566 * container is registered, a replay of mappings within the AddressSpace 567 * will occur, re-establishing any previously zapped pages as well. 568 * 569 * Especially virtio-balloon is currently only prevented from discarding 570 * new memory, it will not yet set ram_block_discard_set_required() and 571 * therefore, neither stops us here or deals with the sudden memory 572 * consumption of inflated memory. 573 * 574 * We do support discarding of memory coordinated via the RamDiscardManager 575 * with some IOMMU types. vfio_ram_block_discard_disable() handles the 576 * details once we know which type of IOMMU we are using. 577 */ 578 579 QLIST_FOREACH(bcontainer, &space->containers, next) { 580 container = container_of(bcontainer, VFIOContainer, bcontainer); 581 if (!ioctl(group->fd, VFIO_GROUP_SET_CONTAINER, &container->fd)) { 582 ret = vfio_ram_block_discard_disable(container, true); 583 if (ret) { 584 error_setg_errno(errp, -ret, 585 "Cannot set discarding of RAM broken"); 586 if (ioctl(group->fd, VFIO_GROUP_UNSET_CONTAINER, 587 &container->fd)) { 588 error_report("vfio: error disconnecting group %d from" 589 " container", group->groupid); 590 } 591 return ret; 592 } 593 group->container = container; 594 QLIST_INSERT_HEAD(&container->group_list, group, container_next); 595 vfio_kvm_device_add_group(group); 596 return 0; 597 } 598 } 599 600 fd = qemu_open_old("/dev/vfio/vfio", O_RDWR); 601 if (fd < 0) { 602 error_setg_errno(errp, errno, "failed to open /dev/vfio/vfio"); 603 ret = -errno; 604 goto put_space_exit; 605 } 606 607 ret = ioctl(fd, VFIO_GET_API_VERSION); 608 if (ret != VFIO_API_VERSION) { 609 error_setg(errp, "supported vfio version: %d, " 610 "reported version: %d", VFIO_API_VERSION, ret); 611 ret = -EINVAL; 612 goto close_fd_exit; 613 } 614 615 container = g_malloc0(sizeof(*container)); 616 container->fd = fd; 617 bcontainer = &container->bcontainer; 618 619 ret = vfio_set_iommu(container, group->fd, space, errp); 620 if (ret) { 621 goto free_container_exit; 622 } 623 624 ret = vfio_ram_block_discard_disable(container, true); 625 if (ret) { 626 error_setg_errno(errp, -ret, "Cannot set discarding of RAM broken"); 627 goto free_container_exit; 628 } 629 630 assert(bcontainer->ops->setup); 631 632 ret = bcontainer->ops->setup(bcontainer, errp); 633 if (ret) { 634 goto enable_discards_exit; 635 } 636 637 vfio_kvm_device_add_group(group); 638 639 QLIST_INIT(&container->group_list); 640 QLIST_INSERT_HEAD(&space->containers, bcontainer, next); 641 642 group->container = container; 643 QLIST_INSERT_HEAD(&container->group_list, group, container_next); 644 645 bcontainer->listener = vfio_memory_listener; 646 memory_listener_register(&bcontainer->listener, bcontainer->space->as); 647 648 if (bcontainer->error) { 649 ret = -1; 650 error_propagate_prepend(errp, bcontainer->error, 651 "memory listener initialization failed: "); 652 goto listener_release_exit; 653 } 654 655 bcontainer->initialized = true; 656 657 return 0; 658 listener_release_exit: 659 QLIST_REMOVE(group, container_next); 660 QLIST_REMOVE(bcontainer, next); 661 vfio_kvm_device_del_group(group); 662 memory_listener_unregister(&bcontainer->listener); 663 if (bcontainer->ops->release) { 664 bcontainer->ops->release(bcontainer); 665 } 666 667 enable_discards_exit: 668 vfio_ram_block_discard_disable(container, false); 669 670 free_container_exit: 671 g_free(container); 672 673 close_fd_exit: 674 close(fd); 675 676 put_space_exit: 677 vfio_put_address_space(space); 678 679 return ret; 680 } 681 682 static void vfio_disconnect_container(VFIOGroup *group) 683 { 684 VFIOContainer *container = group->container; 685 VFIOContainerBase *bcontainer = &container->bcontainer; 686 687 QLIST_REMOVE(group, container_next); 688 group->container = NULL; 689 690 /* 691 * Explicitly release the listener first before unset container, 692 * since unset may destroy the backend container if it's the last 693 * group. 694 */ 695 if (QLIST_EMPTY(&container->group_list)) { 696 memory_listener_unregister(&bcontainer->listener); 697 if (bcontainer->ops->release) { 698 bcontainer->ops->release(bcontainer); 699 } 700 } 701 702 if (ioctl(group->fd, VFIO_GROUP_UNSET_CONTAINER, &container->fd)) { 703 error_report("vfio: error disconnecting group %d from container", 704 group->groupid); 705 } 706 707 if (QLIST_EMPTY(&container->group_list)) { 708 VFIOAddressSpace *space = bcontainer->space; 709 710 vfio_container_destroy(bcontainer); 711 712 trace_vfio_disconnect_container(container->fd); 713 close(container->fd); 714 g_free(container); 715 716 vfio_put_address_space(space); 717 } 718 } 719 720 static VFIOGroup *vfio_get_group(int groupid, AddressSpace *as, Error **errp) 721 { 722 VFIOGroup *group; 723 char path[32]; 724 struct vfio_group_status status = { .argsz = sizeof(status) }; 725 726 QLIST_FOREACH(group, &vfio_group_list, next) { 727 if (group->groupid == groupid) { 728 /* Found it. Now is it already in the right context? */ 729 if (group->container->bcontainer.space->as == as) { 730 return group; 731 } else { 732 error_setg(errp, "group %d used in multiple address spaces", 733 group->groupid); 734 return NULL; 735 } 736 } 737 } 738 739 group = g_malloc0(sizeof(*group)); 740 741 snprintf(path, sizeof(path), "/dev/vfio/%d", groupid); 742 group->fd = qemu_open_old(path, O_RDWR); 743 if (group->fd < 0) { 744 error_setg_errno(errp, errno, "failed to open %s", path); 745 goto free_group_exit; 746 } 747 748 if (ioctl(group->fd, VFIO_GROUP_GET_STATUS, &status)) { 749 error_setg_errno(errp, errno, "failed to get group %d status", groupid); 750 goto close_fd_exit; 751 } 752 753 if (!(status.flags & VFIO_GROUP_FLAGS_VIABLE)) { 754 error_setg(errp, "group %d is not viable", groupid); 755 error_append_hint(errp, 756 "Please ensure all devices within the iommu_group " 757 "are bound to their vfio bus driver.\n"); 758 goto close_fd_exit; 759 } 760 761 group->groupid = groupid; 762 QLIST_INIT(&group->device_list); 763 764 if (vfio_connect_container(group, as, errp)) { 765 error_prepend(errp, "failed to setup container for group %d: ", 766 groupid); 767 goto close_fd_exit; 768 } 769 770 QLIST_INSERT_HEAD(&vfio_group_list, group, next); 771 772 return group; 773 774 close_fd_exit: 775 close(group->fd); 776 777 free_group_exit: 778 g_free(group); 779 780 return NULL; 781 } 782 783 static void vfio_put_group(VFIOGroup *group) 784 { 785 if (!group || !QLIST_EMPTY(&group->device_list)) { 786 return; 787 } 788 789 if (!group->ram_block_discard_allowed) { 790 vfio_ram_block_discard_disable(group->container, false); 791 } 792 vfio_kvm_device_del_group(group); 793 vfio_disconnect_container(group); 794 QLIST_REMOVE(group, next); 795 trace_vfio_put_group(group->fd); 796 close(group->fd); 797 g_free(group); 798 } 799 800 static int vfio_get_device(VFIOGroup *group, const char *name, 801 VFIODevice *vbasedev, Error **errp) 802 { 803 g_autofree struct vfio_device_info *info = NULL; 804 int fd; 805 806 fd = ioctl(group->fd, VFIO_GROUP_GET_DEVICE_FD, name); 807 if (fd < 0) { 808 error_setg_errno(errp, errno, "error getting device from group %d", 809 group->groupid); 810 error_append_hint(errp, 811 "Verify all devices in group %d are bound to vfio-<bus> " 812 "or pci-stub and not already in use\n", group->groupid); 813 return fd; 814 } 815 816 info = vfio_get_device_info(fd); 817 if (!info) { 818 error_setg_errno(errp, errno, "error getting device info"); 819 close(fd); 820 return -1; 821 } 822 823 /* 824 * Set discarding of RAM as not broken for this group if the driver knows 825 * the device operates compatibly with discarding. Setting must be 826 * consistent per group, but since compatibility is really only possible 827 * with mdev currently, we expect singleton groups. 828 */ 829 if (vbasedev->ram_block_discard_allowed != 830 group->ram_block_discard_allowed) { 831 if (!QLIST_EMPTY(&group->device_list)) { 832 error_setg(errp, "Inconsistent setting of support for discarding " 833 "RAM (e.g., balloon) within group"); 834 close(fd); 835 return -1; 836 } 837 838 if (!group->ram_block_discard_allowed) { 839 group->ram_block_discard_allowed = true; 840 vfio_ram_block_discard_disable(group->container, false); 841 } 842 } 843 844 vbasedev->fd = fd; 845 vbasedev->group = group; 846 QLIST_INSERT_HEAD(&group->device_list, vbasedev, next); 847 848 vbasedev->num_irqs = info->num_irqs; 849 vbasedev->num_regions = info->num_regions; 850 vbasedev->flags = info->flags; 851 852 trace_vfio_get_device(name, info->flags, info->num_regions, info->num_irqs); 853 854 vbasedev->reset_works = !!(info->flags & VFIO_DEVICE_FLAGS_RESET); 855 856 return 0; 857 } 858 859 static void vfio_put_base_device(VFIODevice *vbasedev) 860 { 861 if (!vbasedev->group) { 862 return; 863 } 864 QLIST_REMOVE(vbasedev, next); 865 vbasedev->group = NULL; 866 trace_vfio_put_base_device(vbasedev->fd); 867 close(vbasedev->fd); 868 } 869 870 static int vfio_device_groupid(VFIODevice *vbasedev, Error **errp) 871 { 872 char *tmp, group_path[PATH_MAX]; 873 g_autofree char *group_name = NULL; 874 int ret, groupid; 875 ssize_t len; 876 877 tmp = g_strdup_printf("%s/iommu_group", vbasedev->sysfsdev); 878 len = readlink(tmp, group_path, sizeof(group_path)); 879 g_free(tmp); 880 881 if (len <= 0 || len >= sizeof(group_path)) { 882 ret = len < 0 ? -errno : -ENAMETOOLONG; 883 error_setg_errno(errp, -ret, "no iommu_group found"); 884 return ret; 885 } 886 887 group_path[len] = 0; 888 889 group_name = g_path_get_basename(group_path); 890 if (sscanf(group_name, "%d", &groupid) != 1) { 891 error_setg_errno(errp, errno, "failed to read %s", group_path); 892 return -errno; 893 } 894 return groupid; 895 } 896 897 /* 898 * vfio_attach_device: attach a device to a security context 899 * @name and @vbasedev->name are likely to be different depending 900 * on the type of the device, hence the need for passing @name 901 */ 902 static int vfio_legacy_attach_device(const char *name, VFIODevice *vbasedev, 903 AddressSpace *as, Error **errp) 904 { 905 int groupid = vfio_device_groupid(vbasedev, errp); 906 VFIODevice *vbasedev_iter; 907 VFIOGroup *group; 908 VFIOContainerBase *bcontainer; 909 int ret; 910 911 if (groupid < 0) { 912 return groupid; 913 } 914 915 trace_vfio_attach_device(vbasedev->name, groupid); 916 917 group = vfio_get_group(groupid, as, errp); 918 if (!group) { 919 return -ENOENT; 920 } 921 922 QLIST_FOREACH(vbasedev_iter, &group->device_list, next) { 923 if (strcmp(vbasedev_iter->name, vbasedev->name) == 0) { 924 error_setg(errp, "device is already attached"); 925 vfio_put_group(group); 926 return -EBUSY; 927 } 928 } 929 ret = vfio_get_device(group, name, vbasedev, errp); 930 if (ret) { 931 vfio_put_group(group); 932 return ret; 933 } 934 935 bcontainer = &group->container->bcontainer; 936 vbasedev->bcontainer = bcontainer; 937 QLIST_INSERT_HEAD(&bcontainer->device_list, vbasedev, container_next); 938 QLIST_INSERT_HEAD(&vfio_device_list, vbasedev, global_next); 939 940 return ret; 941 } 942 943 static void vfio_legacy_detach_device(VFIODevice *vbasedev) 944 { 945 VFIOGroup *group = vbasedev->group; 946 947 QLIST_REMOVE(vbasedev, global_next); 948 QLIST_REMOVE(vbasedev, container_next); 949 vbasedev->bcontainer = NULL; 950 trace_vfio_detach_device(vbasedev->name, group->groupid); 951 vfio_put_base_device(vbasedev); 952 vfio_put_group(group); 953 } 954 955 static int vfio_legacy_pci_hot_reset(VFIODevice *vbasedev, bool single) 956 { 957 VFIOPCIDevice *vdev = container_of(vbasedev, VFIOPCIDevice, vbasedev); 958 VFIOGroup *group; 959 struct vfio_pci_hot_reset_info *info = NULL; 960 struct vfio_pci_dependent_device *devices; 961 struct vfio_pci_hot_reset *reset; 962 int32_t *fds; 963 int ret, i, count; 964 bool multi = false; 965 966 trace_vfio_pci_hot_reset(vdev->vbasedev.name, single ? "one" : "multi"); 967 968 if (!single) { 969 vfio_pci_pre_reset(vdev); 970 } 971 vdev->vbasedev.needs_reset = false; 972 973 ret = vfio_pci_get_pci_hot_reset_info(vdev, &info); 974 975 if (ret) { 976 goto out_single; 977 } 978 devices = &info->devices[0]; 979 980 trace_vfio_pci_hot_reset_has_dep_devices(vdev->vbasedev.name); 981 982 /* Verify that we have all the groups required */ 983 for (i = 0; i < info->count; i++) { 984 PCIHostDeviceAddress host; 985 VFIOPCIDevice *tmp; 986 VFIODevice *vbasedev_iter; 987 988 host.domain = devices[i].segment; 989 host.bus = devices[i].bus; 990 host.slot = PCI_SLOT(devices[i].devfn); 991 host.function = PCI_FUNC(devices[i].devfn); 992 993 trace_vfio_pci_hot_reset_dep_devices(host.domain, 994 host.bus, host.slot, host.function, devices[i].group_id); 995 996 if (vfio_pci_host_match(&host, vdev->vbasedev.name)) { 997 continue; 998 } 999 1000 QLIST_FOREACH(group, &vfio_group_list, next) { 1001 if (group->groupid == devices[i].group_id) { 1002 break; 1003 } 1004 } 1005 1006 if (!group) { 1007 if (!vdev->has_pm_reset) { 1008 error_report("vfio: Cannot reset device %s, " 1009 "depends on group %d which is not owned.", 1010 vdev->vbasedev.name, devices[i].group_id); 1011 } 1012 ret = -EPERM; 1013 goto out; 1014 } 1015 1016 /* Prep dependent devices for reset and clear our marker. */ 1017 QLIST_FOREACH(vbasedev_iter, &group->device_list, next) { 1018 if (!vbasedev_iter->dev->realized || 1019 vbasedev_iter->type != VFIO_DEVICE_TYPE_PCI) { 1020 continue; 1021 } 1022 tmp = container_of(vbasedev_iter, VFIOPCIDevice, vbasedev); 1023 if (vfio_pci_host_match(&host, tmp->vbasedev.name)) { 1024 if (single) { 1025 ret = -EINVAL; 1026 goto out_single; 1027 } 1028 vfio_pci_pre_reset(tmp); 1029 tmp->vbasedev.needs_reset = false; 1030 multi = true; 1031 break; 1032 } 1033 } 1034 } 1035 1036 if (!single && !multi) { 1037 ret = -EINVAL; 1038 goto out_single; 1039 } 1040 1041 /* Determine how many group fds need to be passed */ 1042 count = 0; 1043 QLIST_FOREACH(group, &vfio_group_list, next) { 1044 for (i = 0; i < info->count; i++) { 1045 if (group->groupid == devices[i].group_id) { 1046 count++; 1047 break; 1048 } 1049 } 1050 } 1051 1052 reset = g_malloc0(sizeof(*reset) + (count * sizeof(*fds))); 1053 reset->argsz = sizeof(*reset) + (count * sizeof(*fds)); 1054 fds = &reset->group_fds[0]; 1055 1056 /* Fill in group fds */ 1057 QLIST_FOREACH(group, &vfio_group_list, next) { 1058 for (i = 0; i < info->count; i++) { 1059 if (group->groupid == devices[i].group_id) { 1060 fds[reset->count++] = group->fd; 1061 break; 1062 } 1063 } 1064 } 1065 1066 /* Bus reset! */ 1067 ret = ioctl(vdev->vbasedev.fd, VFIO_DEVICE_PCI_HOT_RESET, reset); 1068 g_free(reset); 1069 if (ret) { 1070 ret = -errno; 1071 } 1072 1073 trace_vfio_pci_hot_reset_result(vdev->vbasedev.name, 1074 ret ? strerror(errno) : "Success"); 1075 1076 out: 1077 /* Re-enable INTx on affected devices */ 1078 for (i = 0; i < info->count; i++) { 1079 PCIHostDeviceAddress host; 1080 VFIOPCIDevice *tmp; 1081 VFIODevice *vbasedev_iter; 1082 1083 host.domain = devices[i].segment; 1084 host.bus = devices[i].bus; 1085 host.slot = PCI_SLOT(devices[i].devfn); 1086 host.function = PCI_FUNC(devices[i].devfn); 1087 1088 if (vfio_pci_host_match(&host, vdev->vbasedev.name)) { 1089 continue; 1090 } 1091 1092 QLIST_FOREACH(group, &vfio_group_list, next) { 1093 if (group->groupid == devices[i].group_id) { 1094 break; 1095 } 1096 } 1097 1098 if (!group) { 1099 break; 1100 } 1101 1102 QLIST_FOREACH(vbasedev_iter, &group->device_list, next) { 1103 if (!vbasedev_iter->dev->realized || 1104 vbasedev_iter->type != VFIO_DEVICE_TYPE_PCI) { 1105 continue; 1106 } 1107 tmp = container_of(vbasedev_iter, VFIOPCIDevice, vbasedev); 1108 if (vfio_pci_host_match(&host, tmp->vbasedev.name)) { 1109 vfio_pci_post_reset(tmp); 1110 break; 1111 } 1112 } 1113 } 1114 out_single: 1115 if (!single) { 1116 vfio_pci_post_reset(vdev); 1117 } 1118 g_free(info); 1119 1120 return ret; 1121 } 1122 1123 static void vfio_iommu_legacy_class_init(ObjectClass *klass, void *data) 1124 { 1125 VFIOIOMMUClass *vioc = VFIO_IOMMU_CLASS(klass); 1126 1127 vioc->setup = vfio_legacy_setup; 1128 vioc->dma_map = vfio_legacy_dma_map; 1129 vioc->dma_unmap = vfio_legacy_dma_unmap; 1130 vioc->attach_device = vfio_legacy_attach_device; 1131 vioc->detach_device = vfio_legacy_detach_device; 1132 vioc->set_dirty_page_tracking = vfio_legacy_set_dirty_page_tracking; 1133 vioc->query_dirty_bitmap = vfio_legacy_query_dirty_bitmap; 1134 vioc->pci_hot_reset = vfio_legacy_pci_hot_reset; 1135 }; 1136 1137 static const TypeInfo types[] = { 1138 { 1139 .name = TYPE_VFIO_IOMMU_LEGACY, 1140 .parent = TYPE_VFIO_IOMMU, 1141 .class_init = vfio_iommu_legacy_class_init, 1142 }, 1143 }; 1144 1145 DEFINE_TYPES(types) 1146