1 // SPDX-License-Identifier: GPL-2.0-only 2 /* 3 * Copyright (C) 2012 Red Hat, Inc. All rights reserved. 4 * Author: Alex Williamson <alex.williamson@redhat.com> 5 * 6 * Derived from original vfio: 7 * Copyright 2010 Cisco Systems, Inc. All rights reserved. 8 * Author: Tom Lyon, pugs@cisco.com 9 */ 10 11 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt 12 13 #include <linux/device.h> 14 #include <linux/eventfd.h> 15 #include <linux/file.h> 16 #include <linux/interrupt.h> 17 #include <linux/iommu.h> 18 #include <linux/module.h> 19 #include <linux/mutex.h> 20 #include <linux/notifier.h> 21 #include <linux/pci.h> 22 #include <linux/pm_runtime.h> 23 #include <linux/slab.h> 24 #include <linux/types.h> 25 #include <linux/uaccess.h> 26 #include <linux/vfio.h> 27 #include <linux/vgaarb.h> 28 #include <linux/nospec.h> 29 #include <linux/sched/mm.h> 30 31 #include "vfio_pci_private.h" 32 33 #define DRIVER_VERSION "0.2" 34 #define DRIVER_AUTHOR "Alex Williamson <alex.williamson@redhat.com>" 35 #define DRIVER_DESC "VFIO PCI - User Level meta-driver" 36 37 static char ids[1024] __initdata; 38 module_param_string(ids, ids, sizeof(ids), 0); 39 MODULE_PARM_DESC(ids, "Initial PCI IDs to add to the vfio driver, format is \"vendor:device[:subvendor[:subdevice[:class[:class_mask]]]]\" and multiple comma separated entries can be specified"); 40 41 static bool nointxmask; 42 module_param_named(nointxmask, nointxmask, bool, S_IRUGO | S_IWUSR); 43 MODULE_PARM_DESC(nointxmask, 44 "Disable support for PCI 2.3 style INTx masking. If this resolves problems for specific devices, report lspci -vvvxxx to linux-pci@vger.kernel.org so the device can be fixed automatically via the broken_intx_masking flag."); 45 46 #ifdef CONFIG_VFIO_PCI_VGA 47 static bool disable_vga; 48 module_param(disable_vga, bool, S_IRUGO); 49 MODULE_PARM_DESC(disable_vga, "Disable VGA resource access through vfio-pci"); 50 #endif 51 52 static bool disable_idle_d3; 53 module_param(disable_idle_d3, bool, S_IRUGO | S_IWUSR); 54 MODULE_PARM_DESC(disable_idle_d3, 55 "Disable using the PCI D3 low power state for idle, unused devices"); 56 57 static bool enable_sriov; 58 #ifdef CONFIG_PCI_IOV 59 module_param(enable_sriov, bool, 0644); 60 MODULE_PARM_DESC(enable_sriov, "Enable support for SR-IOV configuration. Enabling SR-IOV on a PF typically requires support of the userspace PF driver, enabling VFs without such support may result in non-functional VFs or PF."); 61 #endif 62 63 static bool disable_denylist; 64 module_param(disable_denylist, bool, 0444); 65 MODULE_PARM_DESC(disable_denylist, "Disable use of device denylist. Disabling the denylist allows binding to devices with known errata that may lead to exploitable stability or security issues when accessed by untrusted users."); 66 67 static inline bool vfio_vga_disabled(void) 68 { 69 #ifdef CONFIG_VFIO_PCI_VGA 70 return disable_vga; 71 #else 72 return true; 73 #endif 74 } 75 76 static bool vfio_pci_dev_in_denylist(struct pci_dev *pdev) 77 { 78 switch (pdev->vendor) { 79 case PCI_VENDOR_ID_INTEL: 80 switch (pdev->device) { 81 case PCI_DEVICE_ID_INTEL_QAT_C3XXX: 82 case PCI_DEVICE_ID_INTEL_QAT_C3XXX_VF: 83 case PCI_DEVICE_ID_INTEL_QAT_C62X: 84 case PCI_DEVICE_ID_INTEL_QAT_C62X_VF: 85 case PCI_DEVICE_ID_INTEL_QAT_DH895XCC: 86 case PCI_DEVICE_ID_INTEL_QAT_DH895XCC_VF: 87 return true; 88 default: 89 return false; 90 } 91 } 92 93 return false; 94 } 95 96 static bool vfio_pci_is_denylisted(struct pci_dev *pdev) 97 { 98 if (!vfio_pci_dev_in_denylist(pdev)) 99 return false; 100 101 if (disable_denylist) { 102 pci_warn(pdev, 103 "device denylist disabled - allowing device %04x:%04x.\n", 104 pdev->vendor, pdev->device); 105 return false; 106 } 107 108 pci_warn(pdev, "%04x:%04x exists in vfio-pci device denylist, driver probing disallowed.\n", 109 pdev->vendor, pdev->device); 110 111 return true; 112 } 113 114 /* 115 * Our VGA arbiter participation is limited since we don't know anything 116 * about the device itself. However, if the device is the only VGA device 117 * downstream of a bridge and VFIO VGA support is disabled, then we can 118 * safely return legacy VGA IO and memory as not decoded since the user 119 * has no way to get to it and routing can be disabled externally at the 120 * bridge. 121 */ 122 static unsigned int vfio_pci_set_vga_decode(void *opaque, bool single_vga) 123 { 124 struct vfio_pci_device *vdev = opaque; 125 struct pci_dev *tmp = NULL, *pdev = vdev->pdev; 126 unsigned char max_busnr; 127 unsigned int decodes; 128 129 if (single_vga || !vfio_vga_disabled() || pci_is_root_bus(pdev->bus)) 130 return VGA_RSRC_NORMAL_IO | VGA_RSRC_NORMAL_MEM | 131 VGA_RSRC_LEGACY_IO | VGA_RSRC_LEGACY_MEM; 132 133 max_busnr = pci_bus_max_busnr(pdev->bus); 134 decodes = VGA_RSRC_NORMAL_IO | VGA_RSRC_NORMAL_MEM; 135 136 while ((tmp = pci_get_class(PCI_CLASS_DISPLAY_VGA << 8, tmp)) != NULL) { 137 if (tmp == pdev || 138 pci_domain_nr(tmp->bus) != pci_domain_nr(pdev->bus) || 139 pci_is_root_bus(tmp->bus)) 140 continue; 141 142 if (tmp->bus->number >= pdev->bus->number && 143 tmp->bus->number <= max_busnr) { 144 pci_dev_put(tmp); 145 decodes |= VGA_RSRC_LEGACY_IO | VGA_RSRC_LEGACY_MEM; 146 break; 147 } 148 } 149 150 return decodes; 151 } 152 153 static inline bool vfio_pci_is_vga(struct pci_dev *pdev) 154 { 155 return (pdev->class >> 8) == PCI_CLASS_DISPLAY_VGA; 156 } 157 158 static void vfio_pci_probe_mmaps(struct vfio_pci_device *vdev) 159 { 160 struct resource *res; 161 int i; 162 struct vfio_pci_dummy_resource *dummy_res; 163 164 for (i = 0; i < PCI_STD_NUM_BARS; i++) { 165 int bar = i + PCI_STD_RESOURCES; 166 167 res = &vdev->pdev->resource[bar]; 168 169 if (!IS_ENABLED(CONFIG_VFIO_PCI_MMAP)) 170 goto no_mmap; 171 172 if (!(res->flags & IORESOURCE_MEM)) 173 goto no_mmap; 174 175 /* 176 * The PCI core shouldn't set up a resource with a 177 * type but zero size. But there may be bugs that 178 * cause us to do that. 179 */ 180 if (!resource_size(res)) 181 goto no_mmap; 182 183 if (resource_size(res) >= PAGE_SIZE) { 184 vdev->bar_mmap_supported[bar] = true; 185 continue; 186 } 187 188 if (!(res->start & ~PAGE_MASK)) { 189 /* 190 * Add a dummy resource to reserve the remainder 191 * of the exclusive page in case that hot-add 192 * device's bar is assigned into it. 193 */ 194 dummy_res = kzalloc(sizeof(*dummy_res), GFP_KERNEL); 195 if (dummy_res == NULL) 196 goto no_mmap; 197 198 dummy_res->resource.name = "vfio sub-page reserved"; 199 dummy_res->resource.start = res->end + 1; 200 dummy_res->resource.end = res->start + PAGE_SIZE - 1; 201 dummy_res->resource.flags = res->flags; 202 if (request_resource(res->parent, 203 &dummy_res->resource)) { 204 kfree(dummy_res); 205 goto no_mmap; 206 } 207 dummy_res->index = bar; 208 list_add(&dummy_res->res_next, 209 &vdev->dummy_resources_list); 210 vdev->bar_mmap_supported[bar] = true; 211 continue; 212 } 213 /* 214 * Here we don't handle the case when the BAR is not page 215 * aligned because we can't expect the BAR will be 216 * assigned into the same location in a page in guest 217 * when we passthrough the BAR. And it's hard to access 218 * this BAR in userspace because we have no way to get 219 * the BAR's location in a page. 220 */ 221 no_mmap: 222 vdev->bar_mmap_supported[bar] = false; 223 } 224 } 225 226 static void vfio_pci_try_bus_reset(struct vfio_pci_device *vdev); 227 static void vfio_pci_disable(struct vfio_pci_device *vdev); 228 static int vfio_pci_try_zap_and_vma_lock_cb(struct pci_dev *pdev, void *data); 229 230 /* 231 * INTx masking requires the ability to disable INTx signaling via PCI_COMMAND 232 * _and_ the ability detect when the device is asserting INTx via PCI_STATUS. 233 * If a device implements the former but not the latter we would typically 234 * expect broken_intx_masking be set and require an exclusive interrupt. 235 * However since we do have control of the device's ability to assert INTx, 236 * we can instead pretend that the device does not implement INTx, virtualizing 237 * the pin register to report zero and maintaining DisINTx set on the host. 238 */ 239 static bool vfio_pci_nointx(struct pci_dev *pdev) 240 { 241 switch (pdev->vendor) { 242 case PCI_VENDOR_ID_INTEL: 243 switch (pdev->device) { 244 /* All i40e (XL710/X710/XXV710) 10/20/25/40GbE NICs */ 245 case 0x1572: 246 case 0x1574: 247 case 0x1580 ... 0x1581: 248 case 0x1583 ... 0x158b: 249 case 0x37d0 ... 0x37d2: 250 /* X550 */ 251 case 0x1563: 252 return true; 253 default: 254 return false; 255 } 256 } 257 258 return false; 259 } 260 261 static void vfio_pci_probe_power_state(struct vfio_pci_device *vdev) 262 { 263 struct pci_dev *pdev = vdev->pdev; 264 u16 pmcsr; 265 266 if (!pdev->pm_cap) 267 return; 268 269 pci_read_config_word(pdev, pdev->pm_cap + PCI_PM_CTRL, &pmcsr); 270 271 vdev->needs_pm_restore = !(pmcsr & PCI_PM_CTRL_NO_SOFT_RESET); 272 } 273 274 /* 275 * pci_set_power_state() wrapper handling devices which perform a soft reset on 276 * D3->D0 transition. Save state prior to D0/1/2->D3, stash it on the vdev, 277 * restore when returned to D0. Saved separately from pci_saved_state for use 278 * by PM capability emulation and separately from pci_dev internal saved state 279 * to avoid it being overwritten and consumed around other resets. 280 */ 281 int vfio_pci_set_power_state(struct vfio_pci_device *vdev, pci_power_t state) 282 { 283 struct pci_dev *pdev = vdev->pdev; 284 bool needs_restore = false, needs_save = false; 285 int ret; 286 287 if (vdev->needs_pm_restore) { 288 if (pdev->current_state < PCI_D3hot && state >= PCI_D3hot) { 289 pci_save_state(pdev); 290 needs_save = true; 291 } 292 293 if (pdev->current_state >= PCI_D3hot && state <= PCI_D0) 294 needs_restore = true; 295 } 296 297 ret = pci_set_power_state(pdev, state); 298 299 if (!ret) { 300 /* D3 might be unsupported via quirk, skip unless in D3 */ 301 if (needs_save && pdev->current_state >= PCI_D3hot) { 302 vdev->pm_save = pci_store_saved_state(pdev); 303 } else if (needs_restore) { 304 pci_load_and_free_saved_state(pdev, &vdev->pm_save); 305 pci_restore_state(pdev); 306 } 307 } 308 309 return ret; 310 } 311 312 static int vfio_pci_enable(struct vfio_pci_device *vdev) 313 { 314 struct pci_dev *pdev = vdev->pdev; 315 int ret; 316 u16 cmd; 317 u8 msix_pos; 318 319 vfio_pci_set_power_state(vdev, PCI_D0); 320 321 /* Don't allow our initial saved state to include busmaster */ 322 pci_clear_master(pdev); 323 324 ret = pci_enable_device(pdev); 325 if (ret) 326 return ret; 327 328 /* If reset fails because of the device lock, fail this path entirely */ 329 ret = pci_try_reset_function(pdev); 330 if (ret == -EAGAIN) { 331 pci_disable_device(pdev); 332 return ret; 333 } 334 335 vdev->reset_works = !ret; 336 pci_save_state(pdev); 337 vdev->pci_saved_state = pci_store_saved_state(pdev); 338 if (!vdev->pci_saved_state) 339 pci_dbg(pdev, "%s: Couldn't store saved state\n", __func__); 340 341 if (likely(!nointxmask)) { 342 if (vfio_pci_nointx(pdev)) { 343 pci_info(pdev, "Masking broken INTx support\n"); 344 vdev->nointx = true; 345 pci_intx(pdev, 0); 346 } else 347 vdev->pci_2_3 = pci_intx_mask_supported(pdev); 348 } 349 350 pci_read_config_word(pdev, PCI_COMMAND, &cmd); 351 if (vdev->pci_2_3 && (cmd & PCI_COMMAND_INTX_DISABLE)) { 352 cmd &= ~PCI_COMMAND_INTX_DISABLE; 353 pci_write_config_word(pdev, PCI_COMMAND, cmd); 354 } 355 356 ret = vfio_config_init(vdev); 357 if (ret) { 358 kfree(vdev->pci_saved_state); 359 vdev->pci_saved_state = NULL; 360 pci_disable_device(pdev); 361 return ret; 362 } 363 364 msix_pos = pdev->msix_cap; 365 if (msix_pos) { 366 u16 flags; 367 u32 table; 368 369 pci_read_config_word(pdev, msix_pos + PCI_MSIX_FLAGS, &flags); 370 pci_read_config_dword(pdev, msix_pos + PCI_MSIX_TABLE, &table); 371 372 vdev->msix_bar = table & PCI_MSIX_TABLE_BIR; 373 vdev->msix_offset = table & PCI_MSIX_TABLE_OFFSET; 374 vdev->msix_size = ((flags & PCI_MSIX_FLAGS_QSIZE) + 1) * 16; 375 } else 376 vdev->msix_bar = 0xFF; 377 378 if (!vfio_vga_disabled() && vfio_pci_is_vga(pdev)) 379 vdev->has_vga = true; 380 381 382 if (vfio_pci_is_vga(pdev) && 383 pdev->vendor == PCI_VENDOR_ID_INTEL && 384 IS_ENABLED(CONFIG_VFIO_PCI_IGD)) { 385 ret = vfio_pci_igd_init(vdev); 386 if (ret && ret != -ENODEV) { 387 pci_warn(pdev, "Failed to setup Intel IGD regions\n"); 388 goto disable_exit; 389 } 390 } 391 392 if (pdev->vendor == PCI_VENDOR_ID_NVIDIA && 393 IS_ENABLED(CONFIG_VFIO_PCI_NVLINK2)) { 394 ret = vfio_pci_nvdia_v100_nvlink2_init(vdev); 395 if (ret && ret != -ENODEV) { 396 pci_warn(pdev, "Failed to setup NVIDIA NV2 RAM region\n"); 397 goto disable_exit; 398 } 399 } 400 401 if (pdev->vendor == PCI_VENDOR_ID_IBM && 402 IS_ENABLED(CONFIG_VFIO_PCI_NVLINK2)) { 403 ret = vfio_pci_ibm_npu2_init(vdev); 404 if (ret && ret != -ENODEV) { 405 pci_warn(pdev, "Failed to setup NVIDIA NV2 ATSD region\n"); 406 goto disable_exit; 407 } 408 } 409 410 vfio_pci_probe_mmaps(vdev); 411 412 return 0; 413 414 disable_exit: 415 vfio_pci_disable(vdev); 416 return ret; 417 } 418 419 static void vfio_pci_disable(struct vfio_pci_device *vdev) 420 { 421 struct pci_dev *pdev = vdev->pdev; 422 struct vfio_pci_dummy_resource *dummy_res, *tmp; 423 struct vfio_pci_ioeventfd *ioeventfd, *ioeventfd_tmp; 424 int i, bar; 425 426 /* Stop the device from further DMA */ 427 pci_clear_master(pdev); 428 429 vfio_pci_set_irqs_ioctl(vdev, VFIO_IRQ_SET_DATA_NONE | 430 VFIO_IRQ_SET_ACTION_TRIGGER, 431 vdev->irq_type, 0, 0, NULL); 432 433 /* Device closed, don't need mutex here */ 434 list_for_each_entry_safe(ioeventfd, ioeventfd_tmp, 435 &vdev->ioeventfds_list, next) { 436 vfio_virqfd_disable(&ioeventfd->virqfd); 437 list_del(&ioeventfd->next); 438 kfree(ioeventfd); 439 } 440 vdev->ioeventfds_nr = 0; 441 442 vdev->virq_disabled = false; 443 444 for (i = 0; i < vdev->num_regions; i++) 445 vdev->region[i].ops->release(vdev, &vdev->region[i]); 446 447 vdev->num_regions = 0; 448 kfree(vdev->region); 449 vdev->region = NULL; /* don't krealloc a freed pointer */ 450 451 vfio_config_free(vdev); 452 453 for (i = 0; i < PCI_STD_NUM_BARS; i++) { 454 bar = i + PCI_STD_RESOURCES; 455 if (!vdev->barmap[bar]) 456 continue; 457 pci_iounmap(pdev, vdev->barmap[bar]); 458 pci_release_selected_regions(pdev, 1 << bar); 459 vdev->barmap[bar] = NULL; 460 } 461 462 list_for_each_entry_safe(dummy_res, tmp, 463 &vdev->dummy_resources_list, res_next) { 464 list_del(&dummy_res->res_next); 465 release_resource(&dummy_res->resource); 466 kfree(dummy_res); 467 } 468 469 vdev->needs_reset = true; 470 471 /* 472 * If we have saved state, restore it. If we can reset the device, 473 * even better. Resetting with current state seems better than 474 * nothing, but saving and restoring current state without reset 475 * is just busy work. 476 */ 477 if (pci_load_and_free_saved_state(pdev, &vdev->pci_saved_state)) { 478 pci_info(pdev, "%s: Couldn't reload saved state\n", __func__); 479 480 if (!vdev->reset_works) 481 goto out; 482 483 pci_save_state(pdev); 484 } 485 486 /* 487 * Disable INTx and MSI, presumably to avoid spurious interrupts 488 * during reset. Stolen from pci_reset_function() 489 */ 490 pci_write_config_word(pdev, PCI_COMMAND, PCI_COMMAND_INTX_DISABLE); 491 492 /* 493 * Try to get the locks ourselves to prevent a deadlock. The 494 * success of this is dependent on being able to lock the device, 495 * which is not always possible. 496 * We can not use the "try" reset interface here, which will 497 * overwrite the previously restored configuration information. 498 */ 499 if (vdev->reset_works && pci_cfg_access_trylock(pdev)) { 500 if (device_trylock(&pdev->dev)) { 501 if (!__pci_reset_function_locked(pdev)) 502 vdev->needs_reset = false; 503 device_unlock(&pdev->dev); 504 } 505 pci_cfg_access_unlock(pdev); 506 } 507 508 pci_restore_state(pdev); 509 out: 510 pci_disable_device(pdev); 511 512 vfio_pci_try_bus_reset(vdev); 513 514 if (!disable_idle_d3) 515 vfio_pci_set_power_state(vdev, PCI_D3hot); 516 } 517 518 static struct pci_driver vfio_pci_driver; 519 520 static struct vfio_pci_device *get_pf_vdev(struct vfio_pci_device *vdev, 521 struct vfio_device **pf_dev) 522 { 523 struct pci_dev *physfn = pci_physfn(vdev->pdev); 524 525 if (!vdev->pdev->is_virtfn) 526 return NULL; 527 528 *pf_dev = vfio_device_get_from_dev(&physfn->dev); 529 if (!*pf_dev) 530 return NULL; 531 532 if (pci_dev_driver(physfn) != &vfio_pci_driver) { 533 vfio_device_put(*pf_dev); 534 return NULL; 535 } 536 537 return vfio_device_data(*pf_dev); 538 } 539 540 static void vfio_pci_vf_token_user_add(struct vfio_pci_device *vdev, int val) 541 { 542 struct vfio_device *pf_dev; 543 struct vfio_pci_device *pf_vdev = get_pf_vdev(vdev, &pf_dev); 544 545 if (!pf_vdev) 546 return; 547 548 mutex_lock(&pf_vdev->vf_token->lock); 549 pf_vdev->vf_token->users += val; 550 WARN_ON(pf_vdev->vf_token->users < 0); 551 mutex_unlock(&pf_vdev->vf_token->lock); 552 553 vfio_device_put(pf_dev); 554 } 555 556 static void vfio_pci_release(void *device_data) 557 { 558 struct vfio_pci_device *vdev = device_data; 559 560 mutex_lock(&vdev->reflck->lock); 561 562 if (!(--vdev->refcnt)) { 563 vfio_pci_vf_token_user_add(vdev, -1); 564 vfio_spapr_pci_eeh_release(vdev->pdev); 565 vfio_pci_disable(vdev); 566 567 mutex_lock(&vdev->igate); 568 if (vdev->err_trigger) { 569 eventfd_ctx_put(vdev->err_trigger); 570 vdev->err_trigger = NULL; 571 } 572 if (vdev->req_trigger) { 573 eventfd_ctx_put(vdev->req_trigger); 574 vdev->req_trigger = NULL; 575 } 576 mutex_unlock(&vdev->igate); 577 } 578 579 mutex_unlock(&vdev->reflck->lock); 580 581 module_put(THIS_MODULE); 582 } 583 584 static int vfio_pci_open(void *device_data) 585 { 586 struct vfio_pci_device *vdev = device_data; 587 int ret = 0; 588 589 if (!try_module_get(THIS_MODULE)) 590 return -ENODEV; 591 592 mutex_lock(&vdev->reflck->lock); 593 594 if (!vdev->refcnt) { 595 ret = vfio_pci_enable(vdev); 596 if (ret) 597 goto error; 598 599 vfio_spapr_pci_eeh_open(vdev->pdev); 600 vfio_pci_vf_token_user_add(vdev, 1); 601 } 602 vdev->refcnt++; 603 error: 604 mutex_unlock(&vdev->reflck->lock); 605 if (ret) 606 module_put(THIS_MODULE); 607 return ret; 608 } 609 610 static int vfio_pci_get_irq_count(struct vfio_pci_device *vdev, int irq_type) 611 { 612 if (irq_type == VFIO_PCI_INTX_IRQ_INDEX) { 613 u8 pin; 614 615 if (!IS_ENABLED(CONFIG_VFIO_PCI_INTX) || 616 vdev->nointx || vdev->pdev->is_virtfn) 617 return 0; 618 619 pci_read_config_byte(vdev->pdev, PCI_INTERRUPT_PIN, &pin); 620 621 return pin ? 1 : 0; 622 } else if (irq_type == VFIO_PCI_MSI_IRQ_INDEX) { 623 u8 pos; 624 u16 flags; 625 626 pos = vdev->pdev->msi_cap; 627 if (pos) { 628 pci_read_config_word(vdev->pdev, 629 pos + PCI_MSI_FLAGS, &flags); 630 return 1 << ((flags & PCI_MSI_FLAGS_QMASK) >> 1); 631 } 632 } else if (irq_type == VFIO_PCI_MSIX_IRQ_INDEX) { 633 u8 pos; 634 u16 flags; 635 636 pos = vdev->pdev->msix_cap; 637 if (pos) { 638 pci_read_config_word(vdev->pdev, 639 pos + PCI_MSIX_FLAGS, &flags); 640 641 return (flags & PCI_MSIX_FLAGS_QSIZE) + 1; 642 } 643 } else if (irq_type == VFIO_PCI_ERR_IRQ_INDEX) { 644 if (pci_is_pcie(vdev->pdev)) 645 return 1; 646 } else if (irq_type == VFIO_PCI_REQ_IRQ_INDEX) { 647 return 1; 648 } 649 650 return 0; 651 } 652 653 static int vfio_pci_count_devs(struct pci_dev *pdev, void *data) 654 { 655 (*(int *)data)++; 656 return 0; 657 } 658 659 struct vfio_pci_fill_info { 660 int max; 661 int cur; 662 struct vfio_pci_dependent_device *devices; 663 }; 664 665 static int vfio_pci_fill_devs(struct pci_dev *pdev, void *data) 666 { 667 struct vfio_pci_fill_info *fill = data; 668 struct iommu_group *iommu_group; 669 670 if (fill->cur == fill->max) 671 return -EAGAIN; /* Something changed, try again */ 672 673 iommu_group = iommu_group_get(&pdev->dev); 674 if (!iommu_group) 675 return -EPERM; /* Cannot reset non-isolated devices */ 676 677 fill->devices[fill->cur].group_id = iommu_group_id(iommu_group); 678 fill->devices[fill->cur].segment = pci_domain_nr(pdev->bus); 679 fill->devices[fill->cur].bus = pdev->bus->number; 680 fill->devices[fill->cur].devfn = pdev->devfn; 681 fill->cur++; 682 iommu_group_put(iommu_group); 683 return 0; 684 } 685 686 struct vfio_pci_group_entry { 687 struct vfio_group *group; 688 int id; 689 }; 690 691 struct vfio_pci_group_info { 692 int count; 693 struct vfio_pci_group_entry *groups; 694 }; 695 696 static int vfio_pci_validate_devs(struct pci_dev *pdev, void *data) 697 { 698 struct vfio_pci_group_info *info = data; 699 struct iommu_group *group; 700 int id, i; 701 702 group = iommu_group_get(&pdev->dev); 703 if (!group) 704 return -EPERM; 705 706 id = iommu_group_id(group); 707 708 for (i = 0; i < info->count; i++) 709 if (info->groups[i].id == id) 710 break; 711 712 iommu_group_put(group); 713 714 return (i == info->count) ? -EINVAL : 0; 715 } 716 717 static bool vfio_pci_dev_below_slot(struct pci_dev *pdev, struct pci_slot *slot) 718 { 719 for (; pdev; pdev = pdev->bus->self) 720 if (pdev->bus == slot->bus) 721 return (pdev->slot == slot); 722 return false; 723 } 724 725 struct vfio_pci_walk_info { 726 int (*fn)(struct pci_dev *, void *data); 727 void *data; 728 struct pci_dev *pdev; 729 bool slot; 730 int ret; 731 }; 732 733 static int vfio_pci_walk_wrapper(struct pci_dev *pdev, void *data) 734 { 735 struct vfio_pci_walk_info *walk = data; 736 737 if (!walk->slot || vfio_pci_dev_below_slot(pdev, walk->pdev->slot)) 738 walk->ret = walk->fn(pdev, walk->data); 739 740 return walk->ret; 741 } 742 743 static int vfio_pci_for_each_slot_or_bus(struct pci_dev *pdev, 744 int (*fn)(struct pci_dev *, 745 void *data), void *data, 746 bool slot) 747 { 748 struct vfio_pci_walk_info walk = { 749 .fn = fn, .data = data, .pdev = pdev, .slot = slot, .ret = 0, 750 }; 751 752 pci_walk_bus(pdev->bus, vfio_pci_walk_wrapper, &walk); 753 754 return walk.ret; 755 } 756 757 static int msix_mmappable_cap(struct vfio_pci_device *vdev, 758 struct vfio_info_cap *caps) 759 { 760 struct vfio_info_cap_header header = { 761 .id = VFIO_REGION_INFO_CAP_MSIX_MAPPABLE, 762 .version = 1 763 }; 764 765 return vfio_info_add_capability(caps, &header, sizeof(header)); 766 } 767 768 int vfio_pci_register_dev_region(struct vfio_pci_device *vdev, 769 unsigned int type, unsigned int subtype, 770 const struct vfio_pci_regops *ops, 771 size_t size, u32 flags, void *data) 772 { 773 struct vfio_pci_region *region; 774 775 region = krealloc(vdev->region, 776 (vdev->num_regions + 1) * sizeof(*region), 777 GFP_KERNEL); 778 if (!region) 779 return -ENOMEM; 780 781 vdev->region = region; 782 vdev->region[vdev->num_regions].type = type; 783 vdev->region[vdev->num_regions].subtype = subtype; 784 vdev->region[vdev->num_regions].ops = ops; 785 vdev->region[vdev->num_regions].size = size; 786 vdev->region[vdev->num_regions].flags = flags; 787 vdev->region[vdev->num_regions].data = data; 788 789 vdev->num_regions++; 790 791 return 0; 792 } 793 794 struct vfio_devices { 795 struct vfio_device **devices; 796 int cur_index; 797 int max_index; 798 }; 799 800 static long vfio_pci_ioctl(void *device_data, 801 unsigned int cmd, unsigned long arg) 802 { 803 struct vfio_pci_device *vdev = device_data; 804 unsigned long minsz; 805 806 if (cmd == VFIO_DEVICE_GET_INFO) { 807 struct vfio_device_info info; 808 struct vfio_info_cap caps = { .buf = NULL, .size = 0 }; 809 unsigned long capsz; 810 int ret; 811 812 minsz = offsetofend(struct vfio_device_info, num_irqs); 813 814 /* For backward compatibility, cannot require this */ 815 capsz = offsetofend(struct vfio_iommu_type1_info, cap_offset); 816 817 if (copy_from_user(&info, (void __user *)arg, minsz)) 818 return -EFAULT; 819 820 if (info.argsz < minsz) 821 return -EINVAL; 822 823 if (info.argsz >= capsz) { 824 minsz = capsz; 825 info.cap_offset = 0; 826 } 827 828 info.flags = VFIO_DEVICE_FLAGS_PCI; 829 830 if (vdev->reset_works) 831 info.flags |= VFIO_DEVICE_FLAGS_RESET; 832 833 info.num_regions = VFIO_PCI_NUM_REGIONS + vdev->num_regions; 834 info.num_irqs = VFIO_PCI_NUM_IRQS; 835 836 ret = vfio_pci_info_zdev_add_caps(vdev, &caps); 837 if (ret && ret != -ENODEV) { 838 pci_warn(vdev->pdev, "Failed to setup zPCI info capabilities\n"); 839 return ret; 840 } 841 842 if (caps.size) { 843 info.flags |= VFIO_DEVICE_FLAGS_CAPS; 844 if (info.argsz < sizeof(info) + caps.size) { 845 info.argsz = sizeof(info) + caps.size; 846 } else { 847 vfio_info_cap_shift(&caps, sizeof(info)); 848 if (copy_to_user((void __user *)arg + 849 sizeof(info), caps.buf, 850 caps.size)) { 851 kfree(caps.buf); 852 return -EFAULT; 853 } 854 info.cap_offset = sizeof(info); 855 } 856 857 kfree(caps.buf); 858 } 859 860 return copy_to_user((void __user *)arg, &info, minsz) ? 861 -EFAULT : 0; 862 863 } else if (cmd == VFIO_DEVICE_GET_REGION_INFO) { 864 struct pci_dev *pdev = vdev->pdev; 865 struct vfio_region_info info; 866 struct vfio_info_cap caps = { .buf = NULL, .size = 0 }; 867 int i, ret; 868 869 minsz = offsetofend(struct vfio_region_info, offset); 870 871 if (copy_from_user(&info, (void __user *)arg, minsz)) 872 return -EFAULT; 873 874 if (info.argsz < minsz) 875 return -EINVAL; 876 877 switch (info.index) { 878 case VFIO_PCI_CONFIG_REGION_INDEX: 879 info.offset = VFIO_PCI_INDEX_TO_OFFSET(info.index); 880 info.size = pdev->cfg_size; 881 info.flags = VFIO_REGION_INFO_FLAG_READ | 882 VFIO_REGION_INFO_FLAG_WRITE; 883 break; 884 case VFIO_PCI_BAR0_REGION_INDEX ... VFIO_PCI_BAR5_REGION_INDEX: 885 info.offset = VFIO_PCI_INDEX_TO_OFFSET(info.index); 886 info.size = pci_resource_len(pdev, info.index); 887 if (!info.size) { 888 info.flags = 0; 889 break; 890 } 891 892 info.flags = VFIO_REGION_INFO_FLAG_READ | 893 VFIO_REGION_INFO_FLAG_WRITE; 894 if (vdev->bar_mmap_supported[info.index]) { 895 info.flags |= VFIO_REGION_INFO_FLAG_MMAP; 896 if (info.index == vdev->msix_bar) { 897 ret = msix_mmappable_cap(vdev, &caps); 898 if (ret) 899 return ret; 900 } 901 } 902 903 break; 904 case VFIO_PCI_ROM_REGION_INDEX: 905 { 906 void __iomem *io; 907 size_t size; 908 u16 cmd; 909 910 info.offset = VFIO_PCI_INDEX_TO_OFFSET(info.index); 911 info.flags = 0; 912 913 /* Report the BAR size, not the ROM size */ 914 info.size = pci_resource_len(pdev, info.index); 915 if (!info.size) { 916 /* Shadow ROMs appear as PCI option ROMs */ 917 if (pdev->resource[PCI_ROM_RESOURCE].flags & 918 IORESOURCE_ROM_SHADOW) 919 info.size = 0x20000; 920 else 921 break; 922 } 923 924 /* 925 * Is it really there? Enable memory decode for 926 * implicit access in pci_map_rom(). 927 */ 928 cmd = vfio_pci_memory_lock_and_enable(vdev); 929 io = pci_map_rom(pdev, &size); 930 if (io) { 931 info.flags = VFIO_REGION_INFO_FLAG_READ; 932 pci_unmap_rom(pdev, io); 933 } else { 934 info.size = 0; 935 } 936 vfio_pci_memory_unlock_and_restore(vdev, cmd); 937 938 break; 939 } 940 case VFIO_PCI_VGA_REGION_INDEX: 941 if (!vdev->has_vga) 942 return -EINVAL; 943 944 info.offset = VFIO_PCI_INDEX_TO_OFFSET(info.index); 945 info.size = 0xc0000; 946 info.flags = VFIO_REGION_INFO_FLAG_READ | 947 VFIO_REGION_INFO_FLAG_WRITE; 948 949 break; 950 default: 951 { 952 struct vfio_region_info_cap_type cap_type = { 953 .header.id = VFIO_REGION_INFO_CAP_TYPE, 954 .header.version = 1 }; 955 956 if (info.index >= 957 VFIO_PCI_NUM_REGIONS + vdev->num_regions) 958 return -EINVAL; 959 info.index = array_index_nospec(info.index, 960 VFIO_PCI_NUM_REGIONS + 961 vdev->num_regions); 962 963 i = info.index - VFIO_PCI_NUM_REGIONS; 964 965 info.offset = VFIO_PCI_INDEX_TO_OFFSET(info.index); 966 info.size = vdev->region[i].size; 967 info.flags = vdev->region[i].flags; 968 969 cap_type.type = vdev->region[i].type; 970 cap_type.subtype = vdev->region[i].subtype; 971 972 ret = vfio_info_add_capability(&caps, &cap_type.header, 973 sizeof(cap_type)); 974 if (ret) 975 return ret; 976 977 if (vdev->region[i].ops->add_capability) { 978 ret = vdev->region[i].ops->add_capability(vdev, 979 &vdev->region[i], &caps); 980 if (ret) 981 return ret; 982 } 983 } 984 } 985 986 if (caps.size) { 987 info.flags |= VFIO_REGION_INFO_FLAG_CAPS; 988 if (info.argsz < sizeof(info) + caps.size) { 989 info.argsz = sizeof(info) + caps.size; 990 info.cap_offset = 0; 991 } else { 992 vfio_info_cap_shift(&caps, sizeof(info)); 993 if (copy_to_user((void __user *)arg + 994 sizeof(info), caps.buf, 995 caps.size)) { 996 kfree(caps.buf); 997 return -EFAULT; 998 } 999 info.cap_offset = sizeof(info); 1000 } 1001 1002 kfree(caps.buf); 1003 } 1004 1005 return copy_to_user((void __user *)arg, &info, minsz) ? 1006 -EFAULT : 0; 1007 1008 } else if (cmd == VFIO_DEVICE_GET_IRQ_INFO) { 1009 struct vfio_irq_info info; 1010 1011 minsz = offsetofend(struct vfio_irq_info, count); 1012 1013 if (copy_from_user(&info, (void __user *)arg, minsz)) 1014 return -EFAULT; 1015 1016 if (info.argsz < minsz || info.index >= VFIO_PCI_NUM_IRQS) 1017 return -EINVAL; 1018 1019 switch (info.index) { 1020 case VFIO_PCI_INTX_IRQ_INDEX ... VFIO_PCI_MSIX_IRQ_INDEX: 1021 case VFIO_PCI_REQ_IRQ_INDEX: 1022 break; 1023 case VFIO_PCI_ERR_IRQ_INDEX: 1024 if (pci_is_pcie(vdev->pdev)) 1025 break; 1026 fallthrough; 1027 default: 1028 return -EINVAL; 1029 } 1030 1031 info.flags = VFIO_IRQ_INFO_EVENTFD; 1032 1033 info.count = vfio_pci_get_irq_count(vdev, info.index); 1034 1035 if (info.index == VFIO_PCI_INTX_IRQ_INDEX) 1036 info.flags |= (VFIO_IRQ_INFO_MASKABLE | 1037 VFIO_IRQ_INFO_AUTOMASKED); 1038 else 1039 info.flags |= VFIO_IRQ_INFO_NORESIZE; 1040 1041 return copy_to_user((void __user *)arg, &info, minsz) ? 1042 -EFAULT : 0; 1043 1044 } else if (cmd == VFIO_DEVICE_SET_IRQS) { 1045 struct vfio_irq_set hdr; 1046 u8 *data = NULL; 1047 int max, ret = 0; 1048 size_t data_size = 0; 1049 1050 minsz = offsetofend(struct vfio_irq_set, count); 1051 1052 if (copy_from_user(&hdr, (void __user *)arg, minsz)) 1053 return -EFAULT; 1054 1055 max = vfio_pci_get_irq_count(vdev, hdr.index); 1056 1057 ret = vfio_set_irqs_validate_and_prepare(&hdr, max, 1058 VFIO_PCI_NUM_IRQS, &data_size); 1059 if (ret) 1060 return ret; 1061 1062 if (data_size) { 1063 data = memdup_user((void __user *)(arg + minsz), 1064 data_size); 1065 if (IS_ERR(data)) 1066 return PTR_ERR(data); 1067 } 1068 1069 mutex_lock(&vdev->igate); 1070 1071 ret = vfio_pci_set_irqs_ioctl(vdev, hdr.flags, hdr.index, 1072 hdr.start, hdr.count, data); 1073 1074 mutex_unlock(&vdev->igate); 1075 kfree(data); 1076 1077 return ret; 1078 1079 } else if (cmd == VFIO_DEVICE_RESET) { 1080 int ret; 1081 1082 if (!vdev->reset_works) 1083 return -EINVAL; 1084 1085 vfio_pci_zap_and_down_write_memory_lock(vdev); 1086 ret = pci_try_reset_function(vdev->pdev); 1087 up_write(&vdev->memory_lock); 1088 1089 return ret; 1090 1091 } else if (cmd == VFIO_DEVICE_GET_PCI_HOT_RESET_INFO) { 1092 struct vfio_pci_hot_reset_info hdr; 1093 struct vfio_pci_fill_info fill = { 0 }; 1094 struct vfio_pci_dependent_device *devices = NULL; 1095 bool slot = false; 1096 int ret = 0; 1097 1098 minsz = offsetofend(struct vfio_pci_hot_reset_info, count); 1099 1100 if (copy_from_user(&hdr, (void __user *)arg, minsz)) 1101 return -EFAULT; 1102 1103 if (hdr.argsz < minsz) 1104 return -EINVAL; 1105 1106 hdr.flags = 0; 1107 1108 /* Can we do a slot or bus reset or neither? */ 1109 if (!pci_probe_reset_slot(vdev->pdev->slot)) 1110 slot = true; 1111 else if (pci_probe_reset_bus(vdev->pdev->bus)) 1112 return -ENODEV; 1113 1114 /* How many devices are affected? */ 1115 ret = vfio_pci_for_each_slot_or_bus(vdev->pdev, 1116 vfio_pci_count_devs, 1117 &fill.max, slot); 1118 if (ret) 1119 return ret; 1120 1121 WARN_ON(!fill.max); /* Should always be at least one */ 1122 1123 /* 1124 * If there's enough space, fill it now, otherwise return 1125 * -ENOSPC and the number of devices affected. 1126 */ 1127 if (hdr.argsz < sizeof(hdr) + (fill.max * sizeof(*devices))) { 1128 ret = -ENOSPC; 1129 hdr.count = fill.max; 1130 goto reset_info_exit; 1131 } 1132 1133 devices = kcalloc(fill.max, sizeof(*devices), GFP_KERNEL); 1134 if (!devices) 1135 return -ENOMEM; 1136 1137 fill.devices = devices; 1138 1139 ret = vfio_pci_for_each_slot_or_bus(vdev->pdev, 1140 vfio_pci_fill_devs, 1141 &fill, slot); 1142 1143 /* 1144 * If a device was removed between counting and filling, 1145 * we may come up short of fill.max. If a device was 1146 * added, we'll have a return of -EAGAIN above. 1147 */ 1148 if (!ret) 1149 hdr.count = fill.cur; 1150 1151 reset_info_exit: 1152 if (copy_to_user((void __user *)arg, &hdr, minsz)) 1153 ret = -EFAULT; 1154 1155 if (!ret) { 1156 if (copy_to_user((void __user *)(arg + minsz), devices, 1157 hdr.count * sizeof(*devices))) 1158 ret = -EFAULT; 1159 } 1160 1161 kfree(devices); 1162 return ret; 1163 1164 } else if (cmd == VFIO_DEVICE_PCI_HOT_RESET) { 1165 struct vfio_pci_hot_reset hdr; 1166 int32_t *group_fds; 1167 struct vfio_pci_group_entry *groups; 1168 struct vfio_pci_group_info info; 1169 struct vfio_devices devs = { .cur_index = 0 }; 1170 bool slot = false; 1171 int i, group_idx, mem_idx = 0, count = 0, ret = 0; 1172 1173 minsz = offsetofend(struct vfio_pci_hot_reset, count); 1174 1175 if (copy_from_user(&hdr, (void __user *)arg, minsz)) 1176 return -EFAULT; 1177 1178 if (hdr.argsz < minsz || hdr.flags) 1179 return -EINVAL; 1180 1181 /* Can we do a slot or bus reset or neither? */ 1182 if (!pci_probe_reset_slot(vdev->pdev->slot)) 1183 slot = true; 1184 else if (pci_probe_reset_bus(vdev->pdev->bus)) 1185 return -ENODEV; 1186 1187 /* 1188 * We can't let userspace give us an arbitrarily large 1189 * buffer to copy, so verify how many we think there 1190 * could be. Note groups can have multiple devices so 1191 * one group per device is the max. 1192 */ 1193 ret = vfio_pci_for_each_slot_or_bus(vdev->pdev, 1194 vfio_pci_count_devs, 1195 &count, slot); 1196 if (ret) 1197 return ret; 1198 1199 /* Somewhere between 1 and count is OK */ 1200 if (!hdr.count || hdr.count > count) 1201 return -EINVAL; 1202 1203 group_fds = kcalloc(hdr.count, sizeof(*group_fds), GFP_KERNEL); 1204 groups = kcalloc(hdr.count, sizeof(*groups), GFP_KERNEL); 1205 if (!group_fds || !groups) { 1206 kfree(group_fds); 1207 kfree(groups); 1208 return -ENOMEM; 1209 } 1210 1211 if (copy_from_user(group_fds, (void __user *)(arg + minsz), 1212 hdr.count * sizeof(*group_fds))) { 1213 kfree(group_fds); 1214 kfree(groups); 1215 return -EFAULT; 1216 } 1217 1218 /* 1219 * For each group_fd, get the group through the vfio external 1220 * user interface and store the group and iommu ID. This 1221 * ensures the group is held across the reset. 1222 */ 1223 for (group_idx = 0; group_idx < hdr.count; group_idx++) { 1224 struct vfio_group *group; 1225 struct fd f = fdget(group_fds[group_idx]); 1226 if (!f.file) { 1227 ret = -EBADF; 1228 break; 1229 } 1230 1231 group = vfio_group_get_external_user(f.file); 1232 fdput(f); 1233 if (IS_ERR(group)) { 1234 ret = PTR_ERR(group); 1235 break; 1236 } 1237 1238 groups[group_idx].group = group; 1239 groups[group_idx].id = 1240 vfio_external_user_iommu_id(group); 1241 } 1242 1243 kfree(group_fds); 1244 1245 /* release reference to groups on error */ 1246 if (ret) 1247 goto hot_reset_release; 1248 1249 info.count = hdr.count; 1250 info.groups = groups; 1251 1252 /* 1253 * Test whether all the affected devices are contained 1254 * by the set of groups provided by the user. 1255 */ 1256 ret = vfio_pci_for_each_slot_or_bus(vdev->pdev, 1257 vfio_pci_validate_devs, 1258 &info, slot); 1259 if (ret) 1260 goto hot_reset_release; 1261 1262 devs.max_index = count; 1263 devs.devices = kcalloc(count, sizeof(struct vfio_device *), 1264 GFP_KERNEL); 1265 if (!devs.devices) { 1266 ret = -ENOMEM; 1267 goto hot_reset_release; 1268 } 1269 1270 /* 1271 * We need to get memory_lock for each device, but devices 1272 * can share mmap_lock, therefore we need to zap and hold 1273 * the vma_lock for each device, and only then get each 1274 * memory_lock. 1275 */ 1276 ret = vfio_pci_for_each_slot_or_bus(vdev->pdev, 1277 vfio_pci_try_zap_and_vma_lock_cb, 1278 &devs, slot); 1279 if (ret) 1280 goto hot_reset_release; 1281 1282 for (; mem_idx < devs.cur_index; mem_idx++) { 1283 struct vfio_pci_device *tmp; 1284 1285 tmp = vfio_device_data(devs.devices[mem_idx]); 1286 1287 ret = down_write_trylock(&tmp->memory_lock); 1288 if (!ret) { 1289 ret = -EBUSY; 1290 goto hot_reset_release; 1291 } 1292 mutex_unlock(&tmp->vma_lock); 1293 } 1294 1295 /* User has access, do the reset */ 1296 ret = pci_reset_bus(vdev->pdev); 1297 1298 hot_reset_release: 1299 for (i = 0; i < devs.cur_index; i++) { 1300 struct vfio_device *device; 1301 struct vfio_pci_device *tmp; 1302 1303 device = devs.devices[i]; 1304 tmp = vfio_device_data(device); 1305 1306 if (i < mem_idx) 1307 up_write(&tmp->memory_lock); 1308 else 1309 mutex_unlock(&tmp->vma_lock); 1310 vfio_device_put(device); 1311 } 1312 kfree(devs.devices); 1313 1314 for (group_idx--; group_idx >= 0; group_idx--) 1315 vfio_group_put_external_user(groups[group_idx].group); 1316 1317 kfree(groups); 1318 return ret; 1319 } else if (cmd == VFIO_DEVICE_IOEVENTFD) { 1320 struct vfio_device_ioeventfd ioeventfd; 1321 int count; 1322 1323 minsz = offsetofend(struct vfio_device_ioeventfd, fd); 1324 1325 if (copy_from_user(&ioeventfd, (void __user *)arg, minsz)) 1326 return -EFAULT; 1327 1328 if (ioeventfd.argsz < minsz) 1329 return -EINVAL; 1330 1331 if (ioeventfd.flags & ~VFIO_DEVICE_IOEVENTFD_SIZE_MASK) 1332 return -EINVAL; 1333 1334 count = ioeventfd.flags & VFIO_DEVICE_IOEVENTFD_SIZE_MASK; 1335 1336 if (hweight8(count) != 1 || ioeventfd.fd < -1) 1337 return -EINVAL; 1338 1339 return vfio_pci_ioeventfd(vdev, ioeventfd.offset, 1340 ioeventfd.data, count, ioeventfd.fd); 1341 } else if (cmd == VFIO_DEVICE_FEATURE) { 1342 struct vfio_device_feature feature; 1343 uuid_t uuid; 1344 1345 minsz = offsetofend(struct vfio_device_feature, flags); 1346 1347 if (copy_from_user(&feature, (void __user *)arg, minsz)) 1348 return -EFAULT; 1349 1350 if (feature.argsz < minsz) 1351 return -EINVAL; 1352 1353 /* Check unknown flags */ 1354 if (feature.flags & ~(VFIO_DEVICE_FEATURE_MASK | 1355 VFIO_DEVICE_FEATURE_SET | 1356 VFIO_DEVICE_FEATURE_GET | 1357 VFIO_DEVICE_FEATURE_PROBE)) 1358 return -EINVAL; 1359 1360 /* GET & SET are mutually exclusive except with PROBE */ 1361 if (!(feature.flags & VFIO_DEVICE_FEATURE_PROBE) && 1362 (feature.flags & VFIO_DEVICE_FEATURE_SET) && 1363 (feature.flags & VFIO_DEVICE_FEATURE_GET)) 1364 return -EINVAL; 1365 1366 switch (feature.flags & VFIO_DEVICE_FEATURE_MASK) { 1367 case VFIO_DEVICE_FEATURE_PCI_VF_TOKEN: 1368 if (!vdev->vf_token) 1369 return -ENOTTY; 1370 1371 /* 1372 * We do not support GET of the VF Token UUID as this 1373 * could expose the token of the previous device user. 1374 */ 1375 if (feature.flags & VFIO_DEVICE_FEATURE_GET) 1376 return -EINVAL; 1377 1378 if (feature.flags & VFIO_DEVICE_FEATURE_PROBE) 1379 return 0; 1380 1381 /* Don't SET unless told to do so */ 1382 if (!(feature.flags & VFIO_DEVICE_FEATURE_SET)) 1383 return -EINVAL; 1384 1385 if (feature.argsz < minsz + sizeof(uuid)) 1386 return -EINVAL; 1387 1388 if (copy_from_user(&uuid, (void __user *)(arg + minsz), 1389 sizeof(uuid))) 1390 return -EFAULT; 1391 1392 mutex_lock(&vdev->vf_token->lock); 1393 uuid_copy(&vdev->vf_token->uuid, &uuid); 1394 mutex_unlock(&vdev->vf_token->lock); 1395 1396 return 0; 1397 default: 1398 return -ENOTTY; 1399 } 1400 } 1401 1402 return -ENOTTY; 1403 } 1404 1405 static ssize_t vfio_pci_rw(void *device_data, char __user *buf, 1406 size_t count, loff_t *ppos, bool iswrite) 1407 { 1408 unsigned int index = VFIO_PCI_OFFSET_TO_INDEX(*ppos); 1409 struct vfio_pci_device *vdev = device_data; 1410 1411 if (index >= VFIO_PCI_NUM_REGIONS + vdev->num_regions) 1412 return -EINVAL; 1413 1414 switch (index) { 1415 case VFIO_PCI_CONFIG_REGION_INDEX: 1416 return vfio_pci_config_rw(vdev, buf, count, ppos, iswrite); 1417 1418 case VFIO_PCI_ROM_REGION_INDEX: 1419 if (iswrite) 1420 return -EINVAL; 1421 return vfio_pci_bar_rw(vdev, buf, count, ppos, false); 1422 1423 case VFIO_PCI_BAR0_REGION_INDEX ... VFIO_PCI_BAR5_REGION_INDEX: 1424 return vfio_pci_bar_rw(vdev, buf, count, ppos, iswrite); 1425 1426 case VFIO_PCI_VGA_REGION_INDEX: 1427 return vfio_pci_vga_rw(vdev, buf, count, ppos, iswrite); 1428 default: 1429 index -= VFIO_PCI_NUM_REGIONS; 1430 return vdev->region[index].ops->rw(vdev, buf, 1431 count, ppos, iswrite); 1432 } 1433 1434 return -EINVAL; 1435 } 1436 1437 static ssize_t vfio_pci_read(void *device_data, char __user *buf, 1438 size_t count, loff_t *ppos) 1439 { 1440 if (!count) 1441 return 0; 1442 1443 return vfio_pci_rw(device_data, buf, count, ppos, false); 1444 } 1445 1446 static ssize_t vfio_pci_write(void *device_data, const char __user *buf, 1447 size_t count, loff_t *ppos) 1448 { 1449 if (!count) 1450 return 0; 1451 1452 return vfio_pci_rw(device_data, (char __user *)buf, count, ppos, true); 1453 } 1454 1455 /* Return 1 on zap and vma_lock acquired, 0 on contention (only with @try) */ 1456 static int vfio_pci_zap_and_vma_lock(struct vfio_pci_device *vdev, bool try) 1457 { 1458 struct vfio_pci_mmap_vma *mmap_vma, *tmp; 1459 1460 /* 1461 * Lock ordering: 1462 * vma_lock is nested under mmap_lock for vm_ops callback paths. 1463 * The memory_lock semaphore is used by both code paths calling 1464 * into this function to zap vmas and the vm_ops.fault callback 1465 * to protect the memory enable state of the device. 1466 * 1467 * When zapping vmas we need to maintain the mmap_lock => vma_lock 1468 * ordering, which requires using vma_lock to walk vma_list to 1469 * acquire an mm, then dropping vma_lock to get the mmap_lock and 1470 * reacquiring vma_lock. This logic is derived from similar 1471 * requirements in uverbs_user_mmap_disassociate(). 1472 * 1473 * mmap_lock must always be the top-level lock when it is taken. 1474 * Therefore we can only hold the memory_lock write lock when 1475 * vma_list is empty, as we'd need to take mmap_lock to clear 1476 * entries. vma_list can only be guaranteed empty when holding 1477 * vma_lock, thus memory_lock is nested under vma_lock. 1478 * 1479 * This enables the vm_ops.fault callback to acquire vma_lock, 1480 * followed by memory_lock read lock, while already holding 1481 * mmap_lock without risk of deadlock. 1482 */ 1483 while (1) { 1484 struct mm_struct *mm = NULL; 1485 1486 if (try) { 1487 if (!mutex_trylock(&vdev->vma_lock)) 1488 return 0; 1489 } else { 1490 mutex_lock(&vdev->vma_lock); 1491 } 1492 while (!list_empty(&vdev->vma_list)) { 1493 mmap_vma = list_first_entry(&vdev->vma_list, 1494 struct vfio_pci_mmap_vma, 1495 vma_next); 1496 mm = mmap_vma->vma->vm_mm; 1497 if (mmget_not_zero(mm)) 1498 break; 1499 1500 list_del(&mmap_vma->vma_next); 1501 kfree(mmap_vma); 1502 mm = NULL; 1503 } 1504 if (!mm) 1505 return 1; 1506 mutex_unlock(&vdev->vma_lock); 1507 1508 if (try) { 1509 if (!mmap_read_trylock(mm)) { 1510 mmput(mm); 1511 return 0; 1512 } 1513 } else { 1514 mmap_read_lock(mm); 1515 } 1516 if (try) { 1517 if (!mutex_trylock(&vdev->vma_lock)) { 1518 mmap_read_unlock(mm); 1519 mmput(mm); 1520 return 0; 1521 } 1522 } else { 1523 mutex_lock(&vdev->vma_lock); 1524 } 1525 list_for_each_entry_safe(mmap_vma, tmp, 1526 &vdev->vma_list, vma_next) { 1527 struct vm_area_struct *vma = mmap_vma->vma; 1528 1529 if (vma->vm_mm != mm) 1530 continue; 1531 1532 list_del(&mmap_vma->vma_next); 1533 kfree(mmap_vma); 1534 1535 zap_vma_ptes(vma, vma->vm_start, 1536 vma->vm_end - vma->vm_start); 1537 } 1538 mutex_unlock(&vdev->vma_lock); 1539 mmap_read_unlock(mm); 1540 mmput(mm); 1541 } 1542 } 1543 1544 void vfio_pci_zap_and_down_write_memory_lock(struct vfio_pci_device *vdev) 1545 { 1546 vfio_pci_zap_and_vma_lock(vdev, false); 1547 down_write(&vdev->memory_lock); 1548 mutex_unlock(&vdev->vma_lock); 1549 } 1550 1551 u16 vfio_pci_memory_lock_and_enable(struct vfio_pci_device *vdev) 1552 { 1553 u16 cmd; 1554 1555 down_write(&vdev->memory_lock); 1556 pci_read_config_word(vdev->pdev, PCI_COMMAND, &cmd); 1557 if (!(cmd & PCI_COMMAND_MEMORY)) 1558 pci_write_config_word(vdev->pdev, PCI_COMMAND, 1559 cmd | PCI_COMMAND_MEMORY); 1560 1561 return cmd; 1562 } 1563 1564 void vfio_pci_memory_unlock_and_restore(struct vfio_pci_device *vdev, u16 cmd) 1565 { 1566 pci_write_config_word(vdev->pdev, PCI_COMMAND, cmd); 1567 up_write(&vdev->memory_lock); 1568 } 1569 1570 /* Caller holds vma_lock */ 1571 static int __vfio_pci_add_vma(struct vfio_pci_device *vdev, 1572 struct vm_area_struct *vma) 1573 { 1574 struct vfio_pci_mmap_vma *mmap_vma; 1575 1576 mmap_vma = kmalloc(sizeof(*mmap_vma), GFP_KERNEL); 1577 if (!mmap_vma) 1578 return -ENOMEM; 1579 1580 mmap_vma->vma = vma; 1581 list_add(&mmap_vma->vma_next, &vdev->vma_list); 1582 1583 return 0; 1584 } 1585 1586 /* 1587 * Zap mmaps on open so that we can fault them in on access and therefore 1588 * our vma_list only tracks mappings accessed since last zap. 1589 */ 1590 static void vfio_pci_mmap_open(struct vm_area_struct *vma) 1591 { 1592 zap_vma_ptes(vma, vma->vm_start, vma->vm_end - vma->vm_start); 1593 } 1594 1595 static void vfio_pci_mmap_close(struct vm_area_struct *vma) 1596 { 1597 struct vfio_pci_device *vdev = vma->vm_private_data; 1598 struct vfio_pci_mmap_vma *mmap_vma; 1599 1600 mutex_lock(&vdev->vma_lock); 1601 list_for_each_entry(mmap_vma, &vdev->vma_list, vma_next) { 1602 if (mmap_vma->vma == vma) { 1603 list_del(&mmap_vma->vma_next); 1604 kfree(mmap_vma); 1605 break; 1606 } 1607 } 1608 mutex_unlock(&vdev->vma_lock); 1609 } 1610 1611 static vm_fault_t vfio_pci_mmap_fault(struct vm_fault *vmf) 1612 { 1613 struct vm_area_struct *vma = vmf->vma; 1614 struct vfio_pci_device *vdev = vma->vm_private_data; 1615 vm_fault_t ret = VM_FAULT_NOPAGE; 1616 1617 mutex_lock(&vdev->vma_lock); 1618 down_read(&vdev->memory_lock); 1619 1620 if (!__vfio_pci_memory_enabled(vdev)) { 1621 ret = VM_FAULT_SIGBUS; 1622 mutex_unlock(&vdev->vma_lock); 1623 goto up_out; 1624 } 1625 1626 if (__vfio_pci_add_vma(vdev, vma)) { 1627 ret = VM_FAULT_OOM; 1628 mutex_unlock(&vdev->vma_lock); 1629 goto up_out; 1630 } 1631 1632 mutex_unlock(&vdev->vma_lock); 1633 1634 if (io_remap_pfn_range(vma, vma->vm_start, vma->vm_pgoff, 1635 vma->vm_end - vma->vm_start, vma->vm_page_prot)) 1636 ret = VM_FAULT_SIGBUS; 1637 1638 up_out: 1639 up_read(&vdev->memory_lock); 1640 return ret; 1641 } 1642 1643 static const struct vm_operations_struct vfio_pci_mmap_ops = { 1644 .open = vfio_pci_mmap_open, 1645 .close = vfio_pci_mmap_close, 1646 .fault = vfio_pci_mmap_fault, 1647 }; 1648 1649 static int vfio_pci_mmap(void *device_data, struct vm_area_struct *vma) 1650 { 1651 struct vfio_pci_device *vdev = device_data; 1652 struct pci_dev *pdev = vdev->pdev; 1653 unsigned int index; 1654 u64 phys_len, req_len, pgoff, req_start; 1655 int ret; 1656 1657 index = vma->vm_pgoff >> (VFIO_PCI_OFFSET_SHIFT - PAGE_SHIFT); 1658 1659 if (index >= VFIO_PCI_NUM_REGIONS + vdev->num_regions) 1660 return -EINVAL; 1661 if (vma->vm_end < vma->vm_start) 1662 return -EINVAL; 1663 if ((vma->vm_flags & VM_SHARED) == 0) 1664 return -EINVAL; 1665 if (index >= VFIO_PCI_NUM_REGIONS) { 1666 int regnum = index - VFIO_PCI_NUM_REGIONS; 1667 struct vfio_pci_region *region = vdev->region + regnum; 1668 1669 if (region->ops && region->ops->mmap && 1670 (region->flags & VFIO_REGION_INFO_FLAG_MMAP)) 1671 return region->ops->mmap(vdev, region, vma); 1672 return -EINVAL; 1673 } 1674 if (index >= VFIO_PCI_ROM_REGION_INDEX) 1675 return -EINVAL; 1676 if (!vdev->bar_mmap_supported[index]) 1677 return -EINVAL; 1678 1679 phys_len = PAGE_ALIGN(pci_resource_len(pdev, index)); 1680 req_len = vma->vm_end - vma->vm_start; 1681 pgoff = vma->vm_pgoff & 1682 ((1U << (VFIO_PCI_OFFSET_SHIFT - PAGE_SHIFT)) - 1); 1683 req_start = pgoff << PAGE_SHIFT; 1684 1685 if (req_start + req_len > phys_len) 1686 return -EINVAL; 1687 1688 /* 1689 * Even though we don't make use of the barmap for the mmap, 1690 * we need to request the region and the barmap tracks that. 1691 */ 1692 if (!vdev->barmap[index]) { 1693 ret = pci_request_selected_regions(pdev, 1694 1 << index, "vfio-pci"); 1695 if (ret) 1696 return ret; 1697 1698 vdev->barmap[index] = pci_iomap(pdev, index, 0); 1699 if (!vdev->barmap[index]) { 1700 pci_release_selected_regions(pdev, 1 << index); 1701 return -ENOMEM; 1702 } 1703 } 1704 1705 vma->vm_private_data = vdev; 1706 vma->vm_page_prot = pgprot_noncached(vma->vm_page_prot); 1707 vma->vm_pgoff = (pci_resource_start(pdev, index) >> PAGE_SHIFT) + pgoff; 1708 1709 /* 1710 * See remap_pfn_range(), called from vfio_pci_fault() but we can't 1711 * change vm_flags within the fault handler. Set them now. 1712 */ 1713 vma->vm_flags |= VM_IO | VM_PFNMAP | VM_DONTEXPAND | VM_DONTDUMP; 1714 vma->vm_ops = &vfio_pci_mmap_ops; 1715 1716 return 0; 1717 } 1718 1719 static void vfio_pci_request(void *device_data, unsigned int count) 1720 { 1721 struct vfio_pci_device *vdev = device_data; 1722 struct pci_dev *pdev = vdev->pdev; 1723 1724 mutex_lock(&vdev->igate); 1725 1726 if (vdev->req_trigger) { 1727 if (!(count % 10)) 1728 pci_notice_ratelimited(pdev, 1729 "Relaying device request to user (#%u)\n", 1730 count); 1731 eventfd_signal(vdev->req_trigger, 1); 1732 } else if (count == 0) { 1733 pci_warn(pdev, 1734 "No device request channel registered, blocked until released by user\n"); 1735 } 1736 1737 mutex_unlock(&vdev->igate); 1738 } 1739 1740 static int vfio_pci_validate_vf_token(struct vfio_pci_device *vdev, 1741 bool vf_token, uuid_t *uuid) 1742 { 1743 /* 1744 * There's always some degree of trust or collaboration between SR-IOV 1745 * PF and VFs, even if just that the PF hosts the SR-IOV capability and 1746 * can disrupt VFs with a reset, but often the PF has more explicit 1747 * access to deny service to the VF or access data passed through the 1748 * VF. We therefore require an opt-in via a shared VF token (UUID) to 1749 * represent this trust. This both prevents that a VF driver might 1750 * assume the PF driver is a trusted, in-kernel driver, and also that 1751 * a PF driver might be replaced with a rogue driver, unknown to in-use 1752 * VF drivers. 1753 * 1754 * Therefore when presented with a VF, if the PF is a vfio device and 1755 * it is bound to the vfio-pci driver, the user needs to provide a VF 1756 * token to access the device, in the form of appending a vf_token to 1757 * the device name, for example: 1758 * 1759 * "0000:04:10.0 vf_token=bd8d9d2b-5a5f-4f5a-a211-f591514ba1f3" 1760 * 1761 * When presented with a PF which has VFs in use, the user must also 1762 * provide the current VF token to prove collaboration with existing 1763 * VF users. If VFs are not in use, the VF token provided for the PF 1764 * device will act to set the VF token. 1765 * 1766 * If the VF token is provided but unused, an error is generated. 1767 */ 1768 if (!vdev->pdev->is_virtfn && !vdev->vf_token && !vf_token) 1769 return 0; /* No VF token provided or required */ 1770 1771 if (vdev->pdev->is_virtfn) { 1772 struct vfio_device *pf_dev; 1773 struct vfio_pci_device *pf_vdev = get_pf_vdev(vdev, &pf_dev); 1774 bool match; 1775 1776 if (!pf_vdev) { 1777 if (!vf_token) 1778 return 0; /* PF is not vfio-pci, no VF token */ 1779 1780 pci_info_ratelimited(vdev->pdev, 1781 "VF token incorrectly provided, PF not bound to vfio-pci\n"); 1782 return -EINVAL; 1783 } 1784 1785 if (!vf_token) { 1786 vfio_device_put(pf_dev); 1787 pci_info_ratelimited(vdev->pdev, 1788 "VF token required to access device\n"); 1789 return -EACCES; 1790 } 1791 1792 mutex_lock(&pf_vdev->vf_token->lock); 1793 match = uuid_equal(uuid, &pf_vdev->vf_token->uuid); 1794 mutex_unlock(&pf_vdev->vf_token->lock); 1795 1796 vfio_device_put(pf_dev); 1797 1798 if (!match) { 1799 pci_info_ratelimited(vdev->pdev, 1800 "Incorrect VF token provided for device\n"); 1801 return -EACCES; 1802 } 1803 } else if (vdev->vf_token) { 1804 mutex_lock(&vdev->vf_token->lock); 1805 if (vdev->vf_token->users) { 1806 if (!vf_token) { 1807 mutex_unlock(&vdev->vf_token->lock); 1808 pci_info_ratelimited(vdev->pdev, 1809 "VF token required to access device\n"); 1810 return -EACCES; 1811 } 1812 1813 if (!uuid_equal(uuid, &vdev->vf_token->uuid)) { 1814 mutex_unlock(&vdev->vf_token->lock); 1815 pci_info_ratelimited(vdev->pdev, 1816 "Incorrect VF token provided for device\n"); 1817 return -EACCES; 1818 } 1819 } else if (vf_token) { 1820 uuid_copy(&vdev->vf_token->uuid, uuid); 1821 } 1822 1823 mutex_unlock(&vdev->vf_token->lock); 1824 } else if (vf_token) { 1825 pci_info_ratelimited(vdev->pdev, 1826 "VF token incorrectly provided, not a PF or VF\n"); 1827 return -EINVAL; 1828 } 1829 1830 return 0; 1831 } 1832 1833 #define VF_TOKEN_ARG "vf_token=" 1834 1835 static int vfio_pci_match(void *device_data, char *buf) 1836 { 1837 struct vfio_pci_device *vdev = device_data; 1838 bool vf_token = false; 1839 uuid_t uuid; 1840 int ret; 1841 1842 if (strncmp(pci_name(vdev->pdev), buf, strlen(pci_name(vdev->pdev)))) 1843 return 0; /* No match */ 1844 1845 if (strlen(buf) > strlen(pci_name(vdev->pdev))) { 1846 buf += strlen(pci_name(vdev->pdev)); 1847 1848 if (*buf != ' ') 1849 return 0; /* No match: non-whitespace after name */ 1850 1851 while (*buf) { 1852 if (*buf == ' ') { 1853 buf++; 1854 continue; 1855 } 1856 1857 if (!vf_token && !strncmp(buf, VF_TOKEN_ARG, 1858 strlen(VF_TOKEN_ARG))) { 1859 buf += strlen(VF_TOKEN_ARG); 1860 1861 if (strlen(buf) < UUID_STRING_LEN) 1862 return -EINVAL; 1863 1864 ret = uuid_parse(buf, &uuid); 1865 if (ret) 1866 return ret; 1867 1868 vf_token = true; 1869 buf += UUID_STRING_LEN; 1870 } else { 1871 /* Unknown/duplicate option */ 1872 return -EINVAL; 1873 } 1874 } 1875 } 1876 1877 ret = vfio_pci_validate_vf_token(vdev, vf_token, &uuid); 1878 if (ret) 1879 return ret; 1880 1881 return 1; /* Match */ 1882 } 1883 1884 static const struct vfio_device_ops vfio_pci_ops = { 1885 .name = "vfio-pci", 1886 .open = vfio_pci_open, 1887 .release = vfio_pci_release, 1888 .ioctl = vfio_pci_ioctl, 1889 .read = vfio_pci_read, 1890 .write = vfio_pci_write, 1891 .mmap = vfio_pci_mmap, 1892 .request = vfio_pci_request, 1893 .match = vfio_pci_match, 1894 }; 1895 1896 static int vfio_pci_reflck_attach(struct vfio_pci_device *vdev); 1897 static void vfio_pci_reflck_put(struct vfio_pci_reflck *reflck); 1898 1899 static int vfio_pci_bus_notifier(struct notifier_block *nb, 1900 unsigned long action, void *data) 1901 { 1902 struct vfio_pci_device *vdev = container_of(nb, 1903 struct vfio_pci_device, nb); 1904 struct device *dev = data; 1905 struct pci_dev *pdev = to_pci_dev(dev); 1906 struct pci_dev *physfn = pci_physfn(pdev); 1907 1908 if (action == BUS_NOTIFY_ADD_DEVICE && 1909 pdev->is_virtfn && physfn == vdev->pdev) { 1910 pci_info(vdev->pdev, "Captured SR-IOV VF %s driver_override\n", 1911 pci_name(pdev)); 1912 pdev->driver_override = kasprintf(GFP_KERNEL, "%s", 1913 vfio_pci_ops.name); 1914 } else if (action == BUS_NOTIFY_BOUND_DRIVER && 1915 pdev->is_virtfn && physfn == vdev->pdev) { 1916 struct pci_driver *drv = pci_dev_driver(pdev); 1917 1918 if (drv && drv != &vfio_pci_driver) 1919 pci_warn(vdev->pdev, 1920 "VF %s bound to driver %s while PF bound to vfio-pci\n", 1921 pci_name(pdev), drv->name); 1922 } 1923 1924 return 0; 1925 } 1926 1927 static int vfio_pci_probe(struct pci_dev *pdev, const struct pci_device_id *id) 1928 { 1929 struct vfio_pci_device *vdev; 1930 struct iommu_group *group; 1931 int ret; 1932 1933 if (vfio_pci_is_denylisted(pdev)) 1934 return -EINVAL; 1935 1936 if (pdev->hdr_type != PCI_HEADER_TYPE_NORMAL) 1937 return -EINVAL; 1938 1939 /* 1940 * Prevent binding to PFs with VFs enabled, the VFs might be in use 1941 * by the host or other users. We cannot capture the VFs if they 1942 * already exist, nor can we track VF users. Disabling SR-IOV here 1943 * would initiate removing the VFs, which would unbind the driver, 1944 * which is prone to blocking if that VF is also in use by vfio-pci. 1945 * Just reject these PFs and let the user sort it out. 1946 */ 1947 if (pci_num_vf(pdev)) { 1948 pci_warn(pdev, "Cannot bind to PF with SR-IOV enabled\n"); 1949 return -EBUSY; 1950 } 1951 1952 group = vfio_iommu_group_get(&pdev->dev); 1953 if (!group) 1954 return -EINVAL; 1955 1956 vdev = kzalloc(sizeof(*vdev), GFP_KERNEL); 1957 if (!vdev) { 1958 ret = -ENOMEM; 1959 goto out_group_put; 1960 } 1961 1962 vdev->pdev = pdev; 1963 vdev->irq_type = VFIO_PCI_NUM_IRQS; 1964 mutex_init(&vdev->igate); 1965 spin_lock_init(&vdev->irqlock); 1966 mutex_init(&vdev->ioeventfds_lock); 1967 INIT_LIST_HEAD(&vdev->dummy_resources_list); 1968 INIT_LIST_HEAD(&vdev->ioeventfds_list); 1969 mutex_init(&vdev->vma_lock); 1970 INIT_LIST_HEAD(&vdev->vma_list); 1971 init_rwsem(&vdev->memory_lock); 1972 1973 ret = vfio_add_group_dev(&pdev->dev, &vfio_pci_ops, vdev); 1974 if (ret) 1975 goto out_free; 1976 1977 ret = vfio_pci_reflck_attach(vdev); 1978 if (ret) 1979 goto out_del_group_dev; 1980 1981 if (pdev->is_physfn) { 1982 vdev->vf_token = kzalloc(sizeof(*vdev->vf_token), GFP_KERNEL); 1983 if (!vdev->vf_token) { 1984 ret = -ENOMEM; 1985 goto out_reflck; 1986 } 1987 1988 mutex_init(&vdev->vf_token->lock); 1989 uuid_gen(&vdev->vf_token->uuid); 1990 1991 vdev->nb.notifier_call = vfio_pci_bus_notifier; 1992 ret = bus_register_notifier(&pci_bus_type, &vdev->nb); 1993 if (ret) 1994 goto out_vf_token; 1995 } 1996 1997 if (vfio_pci_is_vga(pdev)) { 1998 vga_client_register(pdev, vdev, NULL, vfio_pci_set_vga_decode); 1999 vga_set_legacy_decoding(pdev, 2000 vfio_pci_set_vga_decode(vdev, false)); 2001 } 2002 2003 vfio_pci_probe_power_state(vdev); 2004 2005 if (!disable_idle_d3) { 2006 /* 2007 * pci-core sets the device power state to an unknown value at 2008 * bootup and after being removed from a driver. The only 2009 * transition it allows from this unknown state is to D0, which 2010 * typically happens when a driver calls pci_enable_device(). 2011 * We're not ready to enable the device yet, but we do want to 2012 * be able to get to D3. Therefore first do a D0 transition 2013 * before going to D3. 2014 */ 2015 vfio_pci_set_power_state(vdev, PCI_D0); 2016 vfio_pci_set_power_state(vdev, PCI_D3hot); 2017 } 2018 2019 return ret; 2020 2021 out_vf_token: 2022 kfree(vdev->vf_token); 2023 out_reflck: 2024 vfio_pci_reflck_put(vdev->reflck); 2025 out_del_group_dev: 2026 vfio_del_group_dev(&pdev->dev); 2027 out_free: 2028 kfree(vdev); 2029 out_group_put: 2030 vfio_iommu_group_put(group, &pdev->dev); 2031 return ret; 2032 } 2033 2034 static void vfio_pci_remove(struct pci_dev *pdev) 2035 { 2036 struct vfio_pci_device *vdev; 2037 2038 pci_disable_sriov(pdev); 2039 2040 vdev = vfio_del_group_dev(&pdev->dev); 2041 if (!vdev) 2042 return; 2043 2044 if (vdev->vf_token) { 2045 WARN_ON(vdev->vf_token->users); 2046 mutex_destroy(&vdev->vf_token->lock); 2047 kfree(vdev->vf_token); 2048 } 2049 2050 if (vdev->nb.notifier_call) 2051 bus_unregister_notifier(&pci_bus_type, &vdev->nb); 2052 2053 vfio_pci_reflck_put(vdev->reflck); 2054 2055 vfio_iommu_group_put(pdev->dev.iommu_group, &pdev->dev); 2056 kfree(vdev->region); 2057 mutex_destroy(&vdev->ioeventfds_lock); 2058 2059 if (!disable_idle_d3) 2060 vfio_pci_set_power_state(vdev, PCI_D0); 2061 2062 kfree(vdev->pm_save); 2063 kfree(vdev); 2064 2065 if (vfio_pci_is_vga(pdev)) { 2066 vga_client_register(pdev, NULL, NULL, NULL); 2067 vga_set_legacy_decoding(pdev, 2068 VGA_RSRC_NORMAL_IO | VGA_RSRC_NORMAL_MEM | 2069 VGA_RSRC_LEGACY_IO | VGA_RSRC_LEGACY_MEM); 2070 } 2071 } 2072 2073 static pci_ers_result_t vfio_pci_aer_err_detected(struct pci_dev *pdev, 2074 pci_channel_state_t state) 2075 { 2076 struct vfio_pci_device *vdev; 2077 struct vfio_device *device; 2078 2079 device = vfio_device_get_from_dev(&pdev->dev); 2080 if (device == NULL) 2081 return PCI_ERS_RESULT_DISCONNECT; 2082 2083 vdev = vfio_device_data(device); 2084 if (vdev == NULL) { 2085 vfio_device_put(device); 2086 return PCI_ERS_RESULT_DISCONNECT; 2087 } 2088 2089 mutex_lock(&vdev->igate); 2090 2091 if (vdev->err_trigger) 2092 eventfd_signal(vdev->err_trigger, 1); 2093 2094 mutex_unlock(&vdev->igate); 2095 2096 vfio_device_put(device); 2097 2098 return PCI_ERS_RESULT_CAN_RECOVER; 2099 } 2100 2101 static int vfio_pci_sriov_configure(struct pci_dev *pdev, int nr_virtfn) 2102 { 2103 struct vfio_pci_device *vdev; 2104 struct vfio_device *device; 2105 int ret = 0; 2106 2107 might_sleep(); 2108 2109 if (!enable_sriov) 2110 return -ENOENT; 2111 2112 device = vfio_device_get_from_dev(&pdev->dev); 2113 if (!device) 2114 return -ENODEV; 2115 2116 vdev = vfio_device_data(device); 2117 if (!vdev) { 2118 vfio_device_put(device); 2119 return -ENODEV; 2120 } 2121 2122 if (nr_virtfn == 0) 2123 pci_disable_sriov(pdev); 2124 else 2125 ret = pci_enable_sriov(pdev, nr_virtfn); 2126 2127 vfio_device_put(device); 2128 2129 return ret < 0 ? ret : nr_virtfn; 2130 } 2131 2132 static const struct pci_error_handlers vfio_err_handlers = { 2133 .error_detected = vfio_pci_aer_err_detected, 2134 }; 2135 2136 static struct pci_driver vfio_pci_driver = { 2137 .name = "vfio-pci", 2138 .id_table = NULL, /* only dynamic ids */ 2139 .probe = vfio_pci_probe, 2140 .remove = vfio_pci_remove, 2141 .sriov_configure = vfio_pci_sriov_configure, 2142 .err_handler = &vfio_err_handlers, 2143 }; 2144 2145 static DEFINE_MUTEX(reflck_lock); 2146 2147 static struct vfio_pci_reflck *vfio_pci_reflck_alloc(void) 2148 { 2149 struct vfio_pci_reflck *reflck; 2150 2151 reflck = kzalloc(sizeof(*reflck), GFP_KERNEL); 2152 if (!reflck) 2153 return ERR_PTR(-ENOMEM); 2154 2155 kref_init(&reflck->kref); 2156 mutex_init(&reflck->lock); 2157 2158 return reflck; 2159 } 2160 2161 static void vfio_pci_reflck_get(struct vfio_pci_reflck *reflck) 2162 { 2163 kref_get(&reflck->kref); 2164 } 2165 2166 static int vfio_pci_reflck_find(struct pci_dev *pdev, void *data) 2167 { 2168 struct vfio_pci_reflck **preflck = data; 2169 struct vfio_device *device; 2170 struct vfio_pci_device *vdev; 2171 2172 device = vfio_device_get_from_dev(&pdev->dev); 2173 if (!device) 2174 return 0; 2175 2176 if (pci_dev_driver(pdev) != &vfio_pci_driver) { 2177 vfio_device_put(device); 2178 return 0; 2179 } 2180 2181 vdev = vfio_device_data(device); 2182 2183 if (vdev->reflck) { 2184 vfio_pci_reflck_get(vdev->reflck); 2185 *preflck = vdev->reflck; 2186 vfio_device_put(device); 2187 return 1; 2188 } 2189 2190 vfio_device_put(device); 2191 return 0; 2192 } 2193 2194 static int vfio_pci_reflck_attach(struct vfio_pci_device *vdev) 2195 { 2196 bool slot = !pci_probe_reset_slot(vdev->pdev->slot); 2197 2198 mutex_lock(&reflck_lock); 2199 2200 if (pci_is_root_bus(vdev->pdev->bus) || 2201 vfio_pci_for_each_slot_or_bus(vdev->pdev, vfio_pci_reflck_find, 2202 &vdev->reflck, slot) <= 0) 2203 vdev->reflck = vfio_pci_reflck_alloc(); 2204 2205 mutex_unlock(&reflck_lock); 2206 2207 return PTR_ERR_OR_ZERO(vdev->reflck); 2208 } 2209 2210 static void vfio_pci_reflck_release(struct kref *kref) 2211 { 2212 struct vfio_pci_reflck *reflck = container_of(kref, 2213 struct vfio_pci_reflck, 2214 kref); 2215 2216 kfree(reflck); 2217 mutex_unlock(&reflck_lock); 2218 } 2219 2220 static void vfio_pci_reflck_put(struct vfio_pci_reflck *reflck) 2221 { 2222 kref_put_mutex(&reflck->kref, vfio_pci_reflck_release, &reflck_lock); 2223 } 2224 2225 static int vfio_pci_get_unused_devs(struct pci_dev *pdev, void *data) 2226 { 2227 struct vfio_devices *devs = data; 2228 struct vfio_device *device; 2229 struct vfio_pci_device *vdev; 2230 2231 if (devs->cur_index == devs->max_index) 2232 return -ENOSPC; 2233 2234 device = vfio_device_get_from_dev(&pdev->dev); 2235 if (!device) 2236 return -EINVAL; 2237 2238 if (pci_dev_driver(pdev) != &vfio_pci_driver) { 2239 vfio_device_put(device); 2240 return -EBUSY; 2241 } 2242 2243 vdev = vfio_device_data(device); 2244 2245 /* Fault if the device is not unused */ 2246 if (vdev->refcnt) { 2247 vfio_device_put(device); 2248 return -EBUSY; 2249 } 2250 2251 devs->devices[devs->cur_index++] = device; 2252 return 0; 2253 } 2254 2255 static int vfio_pci_try_zap_and_vma_lock_cb(struct pci_dev *pdev, void *data) 2256 { 2257 struct vfio_devices *devs = data; 2258 struct vfio_device *device; 2259 struct vfio_pci_device *vdev; 2260 2261 if (devs->cur_index == devs->max_index) 2262 return -ENOSPC; 2263 2264 device = vfio_device_get_from_dev(&pdev->dev); 2265 if (!device) 2266 return -EINVAL; 2267 2268 if (pci_dev_driver(pdev) != &vfio_pci_driver) { 2269 vfio_device_put(device); 2270 return -EBUSY; 2271 } 2272 2273 vdev = vfio_device_data(device); 2274 2275 /* 2276 * Locking multiple devices is prone to deadlock, runaway and 2277 * unwind if we hit contention. 2278 */ 2279 if (!vfio_pci_zap_and_vma_lock(vdev, true)) { 2280 vfio_device_put(device); 2281 return -EBUSY; 2282 } 2283 2284 devs->devices[devs->cur_index++] = device; 2285 return 0; 2286 } 2287 2288 /* 2289 * If a bus or slot reset is available for the provided device and: 2290 * - All of the devices affected by that bus or slot reset are unused 2291 * (!refcnt) 2292 * - At least one of the affected devices is marked dirty via 2293 * needs_reset (such as by lack of FLR support) 2294 * Then attempt to perform that bus or slot reset. Callers are required 2295 * to hold vdev->reflck->lock, protecting the bus/slot reset group from 2296 * concurrent opens. A vfio_device reference is acquired for each device 2297 * to prevent unbinds during the reset operation. 2298 * 2299 * NB: vfio-core considers a group to be viable even if some devices are 2300 * bound to drivers like pci-stub or pcieport. Here we require all devices 2301 * to be bound to vfio_pci since that's the only way we can be sure they 2302 * stay put. 2303 */ 2304 static void vfio_pci_try_bus_reset(struct vfio_pci_device *vdev) 2305 { 2306 struct vfio_devices devs = { .cur_index = 0 }; 2307 int i = 0, ret = -EINVAL; 2308 bool slot = false; 2309 struct vfio_pci_device *tmp; 2310 2311 if (!pci_probe_reset_slot(vdev->pdev->slot)) 2312 slot = true; 2313 else if (pci_probe_reset_bus(vdev->pdev->bus)) 2314 return; 2315 2316 if (vfio_pci_for_each_slot_or_bus(vdev->pdev, vfio_pci_count_devs, 2317 &i, slot) || !i) 2318 return; 2319 2320 devs.max_index = i; 2321 devs.devices = kcalloc(i, sizeof(struct vfio_device *), GFP_KERNEL); 2322 if (!devs.devices) 2323 return; 2324 2325 if (vfio_pci_for_each_slot_or_bus(vdev->pdev, 2326 vfio_pci_get_unused_devs, 2327 &devs, slot)) 2328 goto put_devs; 2329 2330 /* Does at least one need a reset? */ 2331 for (i = 0; i < devs.cur_index; i++) { 2332 tmp = vfio_device_data(devs.devices[i]); 2333 if (tmp->needs_reset) { 2334 ret = pci_reset_bus(vdev->pdev); 2335 break; 2336 } 2337 } 2338 2339 put_devs: 2340 for (i = 0; i < devs.cur_index; i++) { 2341 tmp = vfio_device_data(devs.devices[i]); 2342 2343 /* 2344 * If reset was successful, affected devices no longer need 2345 * a reset and we should return all the collateral devices 2346 * to low power. If not successful, we either didn't reset 2347 * the bus or timed out waiting for it, so let's not touch 2348 * the power state. 2349 */ 2350 if (!ret) { 2351 tmp->needs_reset = false; 2352 2353 if (tmp != vdev && !disable_idle_d3) 2354 vfio_pci_set_power_state(tmp, PCI_D3hot); 2355 } 2356 2357 vfio_device_put(devs.devices[i]); 2358 } 2359 2360 kfree(devs.devices); 2361 } 2362 2363 static void __exit vfio_pci_cleanup(void) 2364 { 2365 pci_unregister_driver(&vfio_pci_driver); 2366 vfio_pci_uninit_perm_bits(); 2367 } 2368 2369 static void __init vfio_pci_fill_ids(void) 2370 { 2371 char *p, *id; 2372 int rc; 2373 2374 /* no ids passed actually */ 2375 if (ids[0] == '\0') 2376 return; 2377 2378 /* add ids specified in the module parameter */ 2379 p = ids; 2380 while ((id = strsep(&p, ","))) { 2381 unsigned int vendor, device, subvendor = PCI_ANY_ID, 2382 subdevice = PCI_ANY_ID, class = 0, class_mask = 0; 2383 int fields; 2384 2385 if (!strlen(id)) 2386 continue; 2387 2388 fields = sscanf(id, "%x:%x:%x:%x:%x:%x", 2389 &vendor, &device, &subvendor, &subdevice, 2390 &class, &class_mask); 2391 2392 if (fields < 2) { 2393 pr_warn("invalid id string \"%s\"\n", id); 2394 continue; 2395 } 2396 2397 rc = pci_add_dynid(&vfio_pci_driver, vendor, device, 2398 subvendor, subdevice, class, class_mask, 0); 2399 if (rc) 2400 pr_warn("failed to add dynamic id [%04x:%04x[%04x:%04x]] class %#08x/%08x (%d)\n", 2401 vendor, device, subvendor, subdevice, 2402 class, class_mask, rc); 2403 else 2404 pr_info("add [%04x:%04x[%04x:%04x]] class %#08x/%08x\n", 2405 vendor, device, subvendor, subdevice, 2406 class, class_mask); 2407 } 2408 } 2409 2410 static int __init vfio_pci_init(void) 2411 { 2412 int ret; 2413 2414 /* Allocate shared config space permision data used by all devices */ 2415 ret = vfio_pci_init_perm_bits(); 2416 if (ret) 2417 return ret; 2418 2419 /* Register and scan for devices */ 2420 ret = pci_register_driver(&vfio_pci_driver); 2421 if (ret) 2422 goto out_driver; 2423 2424 vfio_pci_fill_ids(); 2425 2426 if (disable_denylist) 2427 pr_warn("device denylist disabled.\n"); 2428 2429 return 0; 2430 2431 out_driver: 2432 vfio_pci_uninit_perm_bits(); 2433 return ret; 2434 } 2435 2436 module_init(vfio_pci_init); 2437 module_exit(vfio_pci_cleanup); 2438 2439 MODULE_VERSION(DRIVER_VERSION); 2440 MODULE_LICENSE("GPL v2"); 2441 MODULE_AUTHOR(DRIVER_AUTHOR); 2442 MODULE_DESCRIPTION(DRIVER_DESC); 2443