xref: /openbmc/linux/drivers/vfio/pci/vfio_pci.c (revision 9bacbced)
1 /*
2  * Copyright (C) 2012 Red Hat, Inc.  All rights reserved.
3  *     Author: Alex Williamson <alex.williamson@redhat.com>
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License version 2 as
7  * published by the Free Software Foundation.
8  *
9  * Derived from original vfio:
10  * Copyright 2010 Cisco Systems, Inc.  All rights reserved.
11  * Author: Tom Lyon, pugs@cisco.com
12  */
13 
14 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
15 
16 #include <linux/device.h>
17 #include <linux/eventfd.h>
18 #include <linux/file.h>
19 #include <linux/interrupt.h>
20 #include <linux/iommu.h>
21 #include <linux/module.h>
22 #include <linux/mutex.h>
23 #include <linux/notifier.h>
24 #include <linux/pci.h>
25 #include <linux/pm_runtime.h>
26 #include <linux/slab.h>
27 #include <linux/types.h>
28 #include <linux/uaccess.h>
29 #include <linux/vfio.h>
30 #include <linux/vgaarb.h>
31 #include <linux/nospec.h>
32 
33 #include "vfio_pci_private.h"
34 
35 #define DRIVER_VERSION  "0.2"
36 #define DRIVER_AUTHOR   "Alex Williamson <alex.williamson@redhat.com>"
37 #define DRIVER_DESC     "VFIO PCI - User Level meta-driver"
38 
39 static char ids[1024] __initdata;
40 module_param_string(ids, ids, sizeof(ids), 0);
41 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");
42 
43 static bool nointxmask;
44 module_param_named(nointxmask, nointxmask, bool, S_IRUGO | S_IWUSR);
45 MODULE_PARM_DESC(nointxmask,
46 		  "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.");
47 
48 #ifdef CONFIG_VFIO_PCI_VGA
49 static bool disable_vga;
50 module_param(disable_vga, bool, S_IRUGO);
51 MODULE_PARM_DESC(disable_vga, "Disable VGA resource access through vfio-pci");
52 #endif
53 
54 static bool disable_idle_d3;
55 module_param(disable_idle_d3, bool, S_IRUGO | S_IWUSR);
56 MODULE_PARM_DESC(disable_idle_d3,
57 		 "Disable using the PCI D3 low power state for idle, unused devices");
58 
59 static DEFINE_MUTEX(driver_lock);
60 
61 static inline bool vfio_vga_disabled(void)
62 {
63 #ifdef CONFIG_VFIO_PCI_VGA
64 	return disable_vga;
65 #else
66 	return true;
67 #endif
68 }
69 
70 /*
71  * Our VGA arbiter participation is limited since we don't know anything
72  * about the device itself.  However, if the device is the only VGA device
73  * downstream of a bridge and VFIO VGA support is disabled, then we can
74  * safely return legacy VGA IO and memory as not decoded since the user
75  * has no way to get to it and routing can be disabled externally at the
76  * bridge.
77  */
78 static unsigned int vfio_pci_set_vga_decode(void *opaque, bool single_vga)
79 {
80 	struct vfio_pci_device *vdev = opaque;
81 	struct pci_dev *tmp = NULL, *pdev = vdev->pdev;
82 	unsigned char max_busnr;
83 	unsigned int decodes;
84 
85 	if (single_vga || !vfio_vga_disabled() || pci_is_root_bus(pdev->bus))
86 		return VGA_RSRC_NORMAL_IO | VGA_RSRC_NORMAL_MEM |
87 		       VGA_RSRC_LEGACY_IO | VGA_RSRC_LEGACY_MEM;
88 
89 	max_busnr = pci_bus_max_busnr(pdev->bus);
90 	decodes = VGA_RSRC_NORMAL_IO | VGA_RSRC_NORMAL_MEM;
91 
92 	while ((tmp = pci_get_class(PCI_CLASS_DISPLAY_VGA << 8, tmp)) != NULL) {
93 		if (tmp == pdev ||
94 		    pci_domain_nr(tmp->bus) != pci_domain_nr(pdev->bus) ||
95 		    pci_is_root_bus(tmp->bus))
96 			continue;
97 
98 		if (tmp->bus->number >= pdev->bus->number &&
99 		    tmp->bus->number <= max_busnr) {
100 			pci_dev_put(tmp);
101 			decodes |= VGA_RSRC_LEGACY_IO | VGA_RSRC_LEGACY_MEM;
102 			break;
103 		}
104 	}
105 
106 	return decodes;
107 }
108 
109 static inline bool vfio_pci_is_vga(struct pci_dev *pdev)
110 {
111 	return (pdev->class >> 8) == PCI_CLASS_DISPLAY_VGA;
112 }
113 
114 static void vfio_pci_probe_mmaps(struct vfio_pci_device *vdev)
115 {
116 	struct resource *res;
117 	int bar;
118 	struct vfio_pci_dummy_resource *dummy_res;
119 
120 	INIT_LIST_HEAD(&vdev->dummy_resources_list);
121 
122 	for (bar = PCI_STD_RESOURCES; bar <= PCI_STD_RESOURCE_END; bar++) {
123 		res = vdev->pdev->resource + bar;
124 
125 		if (!IS_ENABLED(CONFIG_VFIO_PCI_MMAP))
126 			goto no_mmap;
127 
128 		if (!(res->flags & IORESOURCE_MEM))
129 			goto no_mmap;
130 
131 		/*
132 		 * The PCI core shouldn't set up a resource with a
133 		 * type but zero size. But there may be bugs that
134 		 * cause us to do that.
135 		 */
136 		if (!resource_size(res))
137 			goto no_mmap;
138 
139 		if (resource_size(res) >= PAGE_SIZE) {
140 			vdev->bar_mmap_supported[bar] = true;
141 			continue;
142 		}
143 
144 		if (!(res->start & ~PAGE_MASK)) {
145 			/*
146 			 * Add a dummy resource to reserve the remainder
147 			 * of the exclusive page in case that hot-add
148 			 * device's bar is assigned into it.
149 			 */
150 			dummy_res = kzalloc(sizeof(*dummy_res), GFP_KERNEL);
151 			if (dummy_res == NULL)
152 				goto no_mmap;
153 
154 			dummy_res->resource.name = "vfio sub-page reserved";
155 			dummy_res->resource.start = res->end + 1;
156 			dummy_res->resource.end = res->start + PAGE_SIZE - 1;
157 			dummy_res->resource.flags = res->flags;
158 			if (request_resource(res->parent,
159 						&dummy_res->resource)) {
160 				kfree(dummy_res);
161 				goto no_mmap;
162 			}
163 			dummy_res->index = bar;
164 			list_add(&dummy_res->res_next,
165 					&vdev->dummy_resources_list);
166 			vdev->bar_mmap_supported[bar] = true;
167 			continue;
168 		}
169 		/*
170 		 * Here we don't handle the case when the BAR is not page
171 		 * aligned because we can't expect the BAR will be
172 		 * assigned into the same location in a page in guest
173 		 * when we passthrough the BAR. And it's hard to access
174 		 * this BAR in userspace because we have no way to get
175 		 * the BAR's location in a page.
176 		 */
177 no_mmap:
178 		vdev->bar_mmap_supported[bar] = false;
179 	}
180 }
181 
182 static void vfio_pci_try_bus_reset(struct vfio_pci_device *vdev);
183 static void vfio_pci_disable(struct vfio_pci_device *vdev);
184 
185 /*
186  * INTx masking requires the ability to disable INTx signaling via PCI_COMMAND
187  * _and_ the ability detect when the device is asserting INTx via PCI_STATUS.
188  * If a device implements the former but not the latter we would typically
189  * expect broken_intx_masking be set and require an exclusive interrupt.
190  * However since we do have control of the device's ability to assert INTx,
191  * we can instead pretend that the device does not implement INTx, virtualizing
192  * the pin register to report zero and maintaining DisINTx set on the host.
193  */
194 static bool vfio_pci_nointx(struct pci_dev *pdev)
195 {
196 	switch (pdev->vendor) {
197 	case PCI_VENDOR_ID_INTEL:
198 		switch (pdev->device) {
199 		/* All i40e (XL710/X710/XXV710) 10/20/25/40GbE NICs */
200 		case 0x1572:
201 		case 0x1574:
202 		case 0x1580 ... 0x1581:
203 		case 0x1583 ... 0x158b:
204 		case 0x37d0 ... 0x37d2:
205 			return true;
206 		default:
207 			return false;
208 		}
209 	}
210 
211 	return false;
212 }
213 
214 static int vfio_pci_enable(struct vfio_pci_device *vdev)
215 {
216 	struct pci_dev *pdev = vdev->pdev;
217 	int ret;
218 	u16 cmd;
219 	u8 msix_pos;
220 
221 	pci_set_power_state(pdev, PCI_D0);
222 
223 	/* Don't allow our initial saved state to include busmaster */
224 	pci_clear_master(pdev);
225 
226 	ret = pci_enable_device(pdev);
227 	if (ret)
228 		return ret;
229 
230 	/* If reset fails because of the device lock, fail this path entirely */
231 	ret = pci_try_reset_function(pdev);
232 	if (ret == -EAGAIN) {
233 		pci_disable_device(pdev);
234 		return ret;
235 	}
236 
237 	vdev->reset_works = !ret;
238 	pci_save_state(pdev);
239 	vdev->pci_saved_state = pci_store_saved_state(pdev);
240 	if (!vdev->pci_saved_state)
241 		pr_debug("%s: Couldn't store %s saved state\n",
242 			 __func__, dev_name(&pdev->dev));
243 
244 	if (likely(!nointxmask)) {
245 		if (vfio_pci_nointx(pdev)) {
246 			dev_info(&pdev->dev, "Masking broken INTx support\n");
247 			vdev->nointx = true;
248 			pci_intx(pdev, 0);
249 		} else
250 			vdev->pci_2_3 = pci_intx_mask_supported(pdev);
251 	}
252 
253 	pci_read_config_word(pdev, PCI_COMMAND, &cmd);
254 	if (vdev->pci_2_3 && (cmd & PCI_COMMAND_INTX_DISABLE)) {
255 		cmd &= ~PCI_COMMAND_INTX_DISABLE;
256 		pci_write_config_word(pdev, PCI_COMMAND, cmd);
257 	}
258 
259 	ret = vfio_config_init(vdev);
260 	if (ret) {
261 		kfree(vdev->pci_saved_state);
262 		vdev->pci_saved_state = NULL;
263 		pci_disable_device(pdev);
264 		return ret;
265 	}
266 
267 	msix_pos = pdev->msix_cap;
268 	if (msix_pos) {
269 		u16 flags;
270 		u32 table;
271 
272 		pci_read_config_word(pdev, msix_pos + PCI_MSIX_FLAGS, &flags);
273 		pci_read_config_dword(pdev, msix_pos + PCI_MSIX_TABLE, &table);
274 
275 		vdev->msix_bar = table & PCI_MSIX_TABLE_BIR;
276 		vdev->msix_offset = table & PCI_MSIX_TABLE_OFFSET;
277 		vdev->msix_size = ((flags & PCI_MSIX_FLAGS_QSIZE) + 1) * 16;
278 	} else
279 		vdev->msix_bar = 0xFF;
280 
281 	if (!vfio_vga_disabled() && vfio_pci_is_vga(pdev))
282 		vdev->has_vga = true;
283 
284 
285 	if (vfio_pci_is_vga(pdev) &&
286 	    pdev->vendor == PCI_VENDOR_ID_INTEL &&
287 	    IS_ENABLED(CONFIG_VFIO_PCI_IGD)) {
288 		ret = vfio_pci_igd_init(vdev);
289 		if (ret) {
290 			dev_warn(&vdev->pdev->dev,
291 				 "Failed to setup Intel IGD regions\n");
292 			vfio_pci_disable(vdev);
293 			return ret;
294 		}
295 	}
296 
297 	vfio_pci_probe_mmaps(vdev);
298 
299 	return 0;
300 }
301 
302 static void vfio_pci_disable(struct vfio_pci_device *vdev)
303 {
304 	struct pci_dev *pdev = vdev->pdev;
305 	struct vfio_pci_dummy_resource *dummy_res, *tmp;
306 	struct vfio_pci_ioeventfd *ioeventfd, *ioeventfd_tmp;
307 	int i, bar;
308 
309 	/* Stop the device from further DMA */
310 	pci_clear_master(pdev);
311 
312 	vfio_pci_set_irqs_ioctl(vdev, VFIO_IRQ_SET_DATA_NONE |
313 				VFIO_IRQ_SET_ACTION_TRIGGER,
314 				vdev->irq_type, 0, 0, NULL);
315 
316 	/* Device closed, don't need mutex here */
317 	list_for_each_entry_safe(ioeventfd, ioeventfd_tmp,
318 				 &vdev->ioeventfds_list, next) {
319 		vfio_virqfd_disable(&ioeventfd->virqfd);
320 		list_del(&ioeventfd->next);
321 		kfree(ioeventfd);
322 	}
323 	vdev->ioeventfds_nr = 0;
324 
325 	vdev->virq_disabled = false;
326 
327 	for (i = 0; i < vdev->num_regions; i++)
328 		vdev->region[i].ops->release(vdev, &vdev->region[i]);
329 
330 	vdev->num_regions = 0;
331 	kfree(vdev->region);
332 	vdev->region = NULL; /* don't krealloc a freed pointer */
333 
334 	vfio_config_free(vdev);
335 
336 	for (bar = PCI_STD_RESOURCES; bar <= PCI_STD_RESOURCE_END; bar++) {
337 		if (!vdev->barmap[bar])
338 			continue;
339 		pci_iounmap(pdev, vdev->barmap[bar]);
340 		pci_release_selected_regions(pdev, 1 << bar);
341 		vdev->barmap[bar] = NULL;
342 	}
343 
344 	list_for_each_entry_safe(dummy_res, tmp,
345 				 &vdev->dummy_resources_list, res_next) {
346 		list_del(&dummy_res->res_next);
347 		release_resource(&dummy_res->resource);
348 		kfree(dummy_res);
349 	}
350 
351 	vdev->needs_reset = true;
352 
353 	/*
354 	 * If we have saved state, restore it.  If we can reset the device,
355 	 * even better.  Resetting with current state seems better than
356 	 * nothing, but saving and restoring current state without reset
357 	 * is just busy work.
358 	 */
359 	if (pci_load_and_free_saved_state(pdev, &vdev->pci_saved_state)) {
360 		pr_info("%s: Couldn't reload %s saved state\n",
361 			__func__, dev_name(&pdev->dev));
362 
363 		if (!vdev->reset_works)
364 			goto out;
365 
366 		pci_save_state(pdev);
367 	}
368 
369 	/*
370 	 * Disable INTx and MSI, presumably to avoid spurious interrupts
371 	 * during reset.  Stolen from pci_reset_function()
372 	 */
373 	pci_write_config_word(pdev, PCI_COMMAND, PCI_COMMAND_INTX_DISABLE);
374 
375 	/*
376 	 * Try to reset the device.  The success of this is dependent on
377 	 * being able to lock the device, which is not always possible.
378 	 */
379 	if (vdev->reset_works && !pci_try_reset_function(pdev))
380 		vdev->needs_reset = false;
381 
382 	pci_restore_state(pdev);
383 out:
384 	pci_disable_device(pdev);
385 
386 	vfio_pci_try_bus_reset(vdev);
387 
388 	if (!disable_idle_d3)
389 		pci_set_power_state(pdev, PCI_D3hot);
390 }
391 
392 static void vfio_pci_release(void *device_data)
393 {
394 	struct vfio_pci_device *vdev = device_data;
395 
396 	mutex_lock(&driver_lock);
397 
398 	if (!(--vdev->refcnt)) {
399 		vfio_spapr_pci_eeh_release(vdev->pdev);
400 		vfio_pci_disable(vdev);
401 	}
402 
403 	mutex_unlock(&driver_lock);
404 
405 	module_put(THIS_MODULE);
406 }
407 
408 static int vfio_pci_open(void *device_data)
409 {
410 	struct vfio_pci_device *vdev = device_data;
411 	int ret = 0;
412 
413 	if (!try_module_get(THIS_MODULE))
414 		return -ENODEV;
415 
416 	mutex_lock(&driver_lock);
417 
418 	if (!vdev->refcnt) {
419 		ret = vfio_pci_enable(vdev);
420 		if (ret)
421 			goto error;
422 
423 		vfio_spapr_pci_eeh_open(vdev->pdev);
424 	}
425 	vdev->refcnt++;
426 error:
427 	mutex_unlock(&driver_lock);
428 	if (ret)
429 		module_put(THIS_MODULE);
430 	return ret;
431 }
432 
433 static int vfio_pci_get_irq_count(struct vfio_pci_device *vdev, int irq_type)
434 {
435 	if (irq_type == VFIO_PCI_INTX_IRQ_INDEX) {
436 		u8 pin;
437 		pci_read_config_byte(vdev->pdev, PCI_INTERRUPT_PIN, &pin);
438 		if (IS_ENABLED(CONFIG_VFIO_PCI_INTX) && !vdev->nointx && pin)
439 			return 1;
440 
441 	} else if (irq_type == VFIO_PCI_MSI_IRQ_INDEX) {
442 		u8 pos;
443 		u16 flags;
444 
445 		pos = vdev->pdev->msi_cap;
446 		if (pos) {
447 			pci_read_config_word(vdev->pdev,
448 					     pos + PCI_MSI_FLAGS, &flags);
449 			return 1 << ((flags & PCI_MSI_FLAGS_QMASK) >> 1);
450 		}
451 	} else if (irq_type == VFIO_PCI_MSIX_IRQ_INDEX) {
452 		u8 pos;
453 		u16 flags;
454 
455 		pos = vdev->pdev->msix_cap;
456 		if (pos) {
457 			pci_read_config_word(vdev->pdev,
458 					     pos + PCI_MSIX_FLAGS, &flags);
459 
460 			return (flags & PCI_MSIX_FLAGS_QSIZE) + 1;
461 		}
462 	} else if (irq_type == VFIO_PCI_ERR_IRQ_INDEX) {
463 		if (pci_is_pcie(vdev->pdev))
464 			return 1;
465 	} else if (irq_type == VFIO_PCI_REQ_IRQ_INDEX) {
466 		return 1;
467 	}
468 
469 	return 0;
470 }
471 
472 static int vfio_pci_count_devs(struct pci_dev *pdev, void *data)
473 {
474 	(*(int *)data)++;
475 	return 0;
476 }
477 
478 struct vfio_pci_fill_info {
479 	int max;
480 	int cur;
481 	struct vfio_pci_dependent_device *devices;
482 };
483 
484 static int vfio_pci_fill_devs(struct pci_dev *pdev, void *data)
485 {
486 	struct vfio_pci_fill_info *fill = data;
487 	struct iommu_group *iommu_group;
488 
489 	if (fill->cur == fill->max)
490 		return -EAGAIN; /* Something changed, try again */
491 
492 	iommu_group = iommu_group_get(&pdev->dev);
493 	if (!iommu_group)
494 		return -EPERM; /* Cannot reset non-isolated devices */
495 
496 	fill->devices[fill->cur].group_id = iommu_group_id(iommu_group);
497 	fill->devices[fill->cur].segment = pci_domain_nr(pdev->bus);
498 	fill->devices[fill->cur].bus = pdev->bus->number;
499 	fill->devices[fill->cur].devfn = pdev->devfn;
500 	fill->cur++;
501 	iommu_group_put(iommu_group);
502 	return 0;
503 }
504 
505 struct vfio_pci_group_entry {
506 	struct vfio_group *group;
507 	int id;
508 };
509 
510 struct vfio_pci_group_info {
511 	int count;
512 	struct vfio_pci_group_entry *groups;
513 };
514 
515 static int vfio_pci_validate_devs(struct pci_dev *pdev, void *data)
516 {
517 	struct vfio_pci_group_info *info = data;
518 	struct iommu_group *group;
519 	int id, i;
520 
521 	group = iommu_group_get(&pdev->dev);
522 	if (!group)
523 		return -EPERM;
524 
525 	id = iommu_group_id(group);
526 
527 	for (i = 0; i < info->count; i++)
528 		if (info->groups[i].id == id)
529 			break;
530 
531 	iommu_group_put(group);
532 
533 	return (i == info->count) ? -EINVAL : 0;
534 }
535 
536 static bool vfio_pci_dev_below_slot(struct pci_dev *pdev, struct pci_slot *slot)
537 {
538 	for (; pdev; pdev = pdev->bus->self)
539 		if (pdev->bus == slot->bus)
540 			return (pdev->slot == slot);
541 	return false;
542 }
543 
544 struct vfio_pci_walk_info {
545 	int (*fn)(struct pci_dev *, void *data);
546 	void *data;
547 	struct pci_dev *pdev;
548 	bool slot;
549 	int ret;
550 };
551 
552 static int vfio_pci_walk_wrapper(struct pci_dev *pdev, void *data)
553 {
554 	struct vfio_pci_walk_info *walk = data;
555 
556 	if (!walk->slot || vfio_pci_dev_below_slot(pdev, walk->pdev->slot))
557 		walk->ret = walk->fn(pdev, walk->data);
558 
559 	return walk->ret;
560 }
561 
562 static int vfio_pci_for_each_slot_or_bus(struct pci_dev *pdev,
563 					 int (*fn)(struct pci_dev *,
564 						   void *data), void *data,
565 					 bool slot)
566 {
567 	struct vfio_pci_walk_info walk = {
568 		.fn = fn, .data = data, .pdev = pdev, .slot = slot, .ret = 0,
569 	};
570 
571 	pci_walk_bus(pdev->bus, vfio_pci_walk_wrapper, &walk);
572 
573 	return walk.ret;
574 }
575 
576 static int msix_mmappable_cap(struct vfio_pci_device *vdev,
577 			      struct vfio_info_cap *caps)
578 {
579 	struct vfio_info_cap_header header = {
580 		.id = VFIO_REGION_INFO_CAP_MSIX_MAPPABLE,
581 		.version = 1
582 	};
583 
584 	return vfio_info_add_capability(caps, &header, sizeof(header));
585 }
586 
587 int vfio_pci_register_dev_region(struct vfio_pci_device *vdev,
588 				 unsigned int type, unsigned int subtype,
589 				 const struct vfio_pci_regops *ops,
590 				 size_t size, u32 flags, void *data)
591 {
592 	struct vfio_pci_region *region;
593 
594 	region = krealloc(vdev->region,
595 			  (vdev->num_regions + 1) * sizeof(*region),
596 			  GFP_KERNEL);
597 	if (!region)
598 		return -ENOMEM;
599 
600 	vdev->region = region;
601 	vdev->region[vdev->num_regions].type = type;
602 	vdev->region[vdev->num_regions].subtype = subtype;
603 	vdev->region[vdev->num_regions].ops = ops;
604 	vdev->region[vdev->num_regions].size = size;
605 	vdev->region[vdev->num_regions].flags = flags;
606 	vdev->region[vdev->num_regions].data = data;
607 
608 	vdev->num_regions++;
609 
610 	return 0;
611 }
612 
613 static long vfio_pci_ioctl(void *device_data,
614 			   unsigned int cmd, unsigned long arg)
615 {
616 	struct vfio_pci_device *vdev = device_data;
617 	unsigned long minsz;
618 
619 	if (cmd == VFIO_DEVICE_GET_INFO) {
620 		struct vfio_device_info info;
621 
622 		minsz = offsetofend(struct vfio_device_info, num_irqs);
623 
624 		if (copy_from_user(&info, (void __user *)arg, minsz))
625 			return -EFAULT;
626 
627 		if (info.argsz < minsz)
628 			return -EINVAL;
629 
630 		info.flags = VFIO_DEVICE_FLAGS_PCI;
631 
632 		if (vdev->reset_works)
633 			info.flags |= VFIO_DEVICE_FLAGS_RESET;
634 
635 		info.num_regions = VFIO_PCI_NUM_REGIONS + vdev->num_regions;
636 		info.num_irqs = VFIO_PCI_NUM_IRQS;
637 
638 		return copy_to_user((void __user *)arg, &info, minsz) ?
639 			-EFAULT : 0;
640 
641 	} else if (cmd == VFIO_DEVICE_GET_REGION_INFO) {
642 		struct pci_dev *pdev = vdev->pdev;
643 		struct vfio_region_info info;
644 		struct vfio_info_cap caps = { .buf = NULL, .size = 0 };
645 		int i, ret;
646 
647 		minsz = offsetofend(struct vfio_region_info, offset);
648 
649 		if (copy_from_user(&info, (void __user *)arg, minsz))
650 			return -EFAULT;
651 
652 		if (info.argsz < minsz)
653 			return -EINVAL;
654 
655 		switch (info.index) {
656 		case VFIO_PCI_CONFIG_REGION_INDEX:
657 			info.offset = VFIO_PCI_INDEX_TO_OFFSET(info.index);
658 			info.size = pdev->cfg_size;
659 			info.flags = VFIO_REGION_INFO_FLAG_READ |
660 				     VFIO_REGION_INFO_FLAG_WRITE;
661 			break;
662 		case VFIO_PCI_BAR0_REGION_INDEX ... VFIO_PCI_BAR5_REGION_INDEX:
663 			info.offset = VFIO_PCI_INDEX_TO_OFFSET(info.index);
664 			info.size = pci_resource_len(pdev, info.index);
665 			if (!info.size) {
666 				info.flags = 0;
667 				break;
668 			}
669 
670 			info.flags = VFIO_REGION_INFO_FLAG_READ |
671 				     VFIO_REGION_INFO_FLAG_WRITE;
672 			if (vdev->bar_mmap_supported[info.index]) {
673 				info.flags |= VFIO_REGION_INFO_FLAG_MMAP;
674 				if (info.index == vdev->msix_bar) {
675 					ret = msix_mmappable_cap(vdev, &caps);
676 					if (ret)
677 						return ret;
678 				}
679 			}
680 
681 			break;
682 		case VFIO_PCI_ROM_REGION_INDEX:
683 		{
684 			void __iomem *io;
685 			size_t size;
686 
687 			info.offset = VFIO_PCI_INDEX_TO_OFFSET(info.index);
688 			info.flags = 0;
689 
690 			/* Report the BAR size, not the ROM size */
691 			info.size = pci_resource_len(pdev, info.index);
692 			if (!info.size) {
693 				/* Shadow ROMs appear as PCI option ROMs */
694 				if (pdev->resource[PCI_ROM_RESOURCE].flags &
695 							IORESOURCE_ROM_SHADOW)
696 					info.size = 0x20000;
697 				else
698 					break;
699 			}
700 
701 			/* Is it really there? */
702 			io = pci_map_rom(pdev, &size);
703 			if (!io || !size) {
704 				info.size = 0;
705 				break;
706 			}
707 			pci_unmap_rom(pdev, io);
708 
709 			info.flags = VFIO_REGION_INFO_FLAG_READ;
710 			break;
711 		}
712 		case VFIO_PCI_VGA_REGION_INDEX:
713 			if (!vdev->has_vga)
714 				return -EINVAL;
715 
716 			info.offset = VFIO_PCI_INDEX_TO_OFFSET(info.index);
717 			info.size = 0xc0000;
718 			info.flags = VFIO_REGION_INFO_FLAG_READ |
719 				     VFIO_REGION_INFO_FLAG_WRITE;
720 
721 			break;
722 		default:
723 		{
724 			struct vfio_region_info_cap_type cap_type = {
725 					.header.id = VFIO_REGION_INFO_CAP_TYPE,
726 					.header.version = 1 };
727 
728 			if (info.index >=
729 			    VFIO_PCI_NUM_REGIONS + vdev->num_regions)
730 				return -EINVAL;
731 			info.index = array_index_nospec(info.index,
732 							VFIO_PCI_NUM_REGIONS +
733 							vdev->num_regions);
734 
735 			i = info.index - VFIO_PCI_NUM_REGIONS;
736 
737 			info.offset = VFIO_PCI_INDEX_TO_OFFSET(info.index);
738 			info.size = vdev->region[i].size;
739 			info.flags = vdev->region[i].flags;
740 
741 			cap_type.type = vdev->region[i].type;
742 			cap_type.subtype = vdev->region[i].subtype;
743 
744 			ret = vfio_info_add_capability(&caps, &cap_type.header,
745 						       sizeof(cap_type));
746 			if (ret)
747 				return ret;
748 
749 		}
750 		}
751 
752 		if (caps.size) {
753 			info.flags |= VFIO_REGION_INFO_FLAG_CAPS;
754 			if (info.argsz < sizeof(info) + caps.size) {
755 				info.argsz = sizeof(info) + caps.size;
756 				info.cap_offset = 0;
757 			} else {
758 				vfio_info_cap_shift(&caps, sizeof(info));
759 				if (copy_to_user((void __user *)arg +
760 						  sizeof(info), caps.buf,
761 						  caps.size)) {
762 					kfree(caps.buf);
763 					return -EFAULT;
764 				}
765 				info.cap_offset = sizeof(info);
766 			}
767 
768 			kfree(caps.buf);
769 		}
770 
771 		return copy_to_user((void __user *)arg, &info, minsz) ?
772 			-EFAULT : 0;
773 
774 	} else if (cmd == VFIO_DEVICE_GET_IRQ_INFO) {
775 		struct vfio_irq_info info;
776 
777 		minsz = offsetofend(struct vfio_irq_info, count);
778 
779 		if (copy_from_user(&info, (void __user *)arg, minsz))
780 			return -EFAULT;
781 
782 		if (info.argsz < minsz || info.index >= VFIO_PCI_NUM_IRQS)
783 			return -EINVAL;
784 
785 		switch (info.index) {
786 		case VFIO_PCI_INTX_IRQ_INDEX ... VFIO_PCI_MSIX_IRQ_INDEX:
787 		case VFIO_PCI_REQ_IRQ_INDEX:
788 			break;
789 		case VFIO_PCI_ERR_IRQ_INDEX:
790 			if (pci_is_pcie(vdev->pdev))
791 				break;
792 		/* pass thru to return error */
793 		default:
794 			return -EINVAL;
795 		}
796 
797 		info.flags = VFIO_IRQ_INFO_EVENTFD;
798 
799 		info.count = vfio_pci_get_irq_count(vdev, info.index);
800 
801 		if (info.index == VFIO_PCI_INTX_IRQ_INDEX)
802 			info.flags |= (VFIO_IRQ_INFO_MASKABLE |
803 				       VFIO_IRQ_INFO_AUTOMASKED);
804 		else
805 			info.flags |= VFIO_IRQ_INFO_NORESIZE;
806 
807 		return copy_to_user((void __user *)arg, &info, minsz) ?
808 			-EFAULT : 0;
809 
810 	} else if (cmd == VFIO_DEVICE_SET_IRQS) {
811 		struct vfio_irq_set hdr;
812 		u8 *data = NULL;
813 		int max, ret = 0;
814 		size_t data_size = 0;
815 
816 		minsz = offsetofend(struct vfio_irq_set, count);
817 
818 		if (copy_from_user(&hdr, (void __user *)arg, minsz))
819 			return -EFAULT;
820 
821 		max = vfio_pci_get_irq_count(vdev, hdr.index);
822 
823 		ret = vfio_set_irqs_validate_and_prepare(&hdr, max,
824 						 VFIO_PCI_NUM_IRQS, &data_size);
825 		if (ret)
826 			return ret;
827 
828 		if (data_size) {
829 			data = memdup_user((void __user *)(arg + minsz),
830 					    data_size);
831 			if (IS_ERR(data))
832 				return PTR_ERR(data);
833 		}
834 
835 		mutex_lock(&vdev->igate);
836 
837 		ret = vfio_pci_set_irqs_ioctl(vdev, hdr.flags, hdr.index,
838 					      hdr.start, hdr.count, data);
839 
840 		mutex_unlock(&vdev->igate);
841 		kfree(data);
842 
843 		return ret;
844 
845 	} else if (cmd == VFIO_DEVICE_RESET) {
846 		return vdev->reset_works ?
847 			pci_try_reset_function(vdev->pdev) : -EINVAL;
848 
849 	} else if (cmd == VFIO_DEVICE_GET_PCI_HOT_RESET_INFO) {
850 		struct vfio_pci_hot_reset_info hdr;
851 		struct vfio_pci_fill_info fill = { 0 };
852 		struct vfio_pci_dependent_device *devices = NULL;
853 		bool slot = false;
854 		int ret = 0;
855 
856 		minsz = offsetofend(struct vfio_pci_hot_reset_info, count);
857 
858 		if (copy_from_user(&hdr, (void __user *)arg, minsz))
859 			return -EFAULT;
860 
861 		if (hdr.argsz < minsz)
862 			return -EINVAL;
863 
864 		hdr.flags = 0;
865 
866 		/* Can we do a slot or bus reset or neither? */
867 		if (!pci_probe_reset_slot(vdev->pdev->slot))
868 			slot = true;
869 		else if (pci_probe_reset_bus(vdev->pdev->bus))
870 			return -ENODEV;
871 
872 		/* How many devices are affected? */
873 		ret = vfio_pci_for_each_slot_or_bus(vdev->pdev,
874 						    vfio_pci_count_devs,
875 						    &fill.max, slot);
876 		if (ret)
877 			return ret;
878 
879 		WARN_ON(!fill.max); /* Should always be at least one */
880 
881 		/*
882 		 * If there's enough space, fill it now, otherwise return
883 		 * -ENOSPC and the number of devices affected.
884 		 */
885 		if (hdr.argsz < sizeof(hdr) + (fill.max * sizeof(*devices))) {
886 			ret = -ENOSPC;
887 			hdr.count = fill.max;
888 			goto reset_info_exit;
889 		}
890 
891 		devices = kcalloc(fill.max, sizeof(*devices), GFP_KERNEL);
892 		if (!devices)
893 			return -ENOMEM;
894 
895 		fill.devices = devices;
896 
897 		ret = vfio_pci_for_each_slot_or_bus(vdev->pdev,
898 						    vfio_pci_fill_devs,
899 						    &fill, slot);
900 
901 		/*
902 		 * If a device was removed between counting and filling,
903 		 * we may come up short of fill.max.  If a device was
904 		 * added, we'll have a return of -EAGAIN above.
905 		 */
906 		if (!ret)
907 			hdr.count = fill.cur;
908 
909 reset_info_exit:
910 		if (copy_to_user((void __user *)arg, &hdr, minsz))
911 			ret = -EFAULT;
912 
913 		if (!ret) {
914 			if (copy_to_user((void __user *)(arg + minsz), devices,
915 					 hdr.count * sizeof(*devices)))
916 				ret = -EFAULT;
917 		}
918 
919 		kfree(devices);
920 		return ret;
921 
922 	} else if (cmd == VFIO_DEVICE_PCI_HOT_RESET) {
923 		struct vfio_pci_hot_reset hdr;
924 		int32_t *group_fds;
925 		struct vfio_pci_group_entry *groups;
926 		struct vfio_pci_group_info info;
927 		bool slot = false;
928 		int i, count = 0, ret = 0;
929 
930 		minsz = offsetofend(struct vfio_pci_hot_reset, count);
931 
932 		if (copy_from_user(&hdr, (void __user *)arg, minsz))
933 			return -EFAULT;
934 
935 		if (hdr.argsz < minsz || hdr.flags)
936 			return -EINVAL;
937 
938 		/* Can we do a slot or bus reset or neither? */
939 		if (!pci_probe_reset_slot(vdev->pdev->slot))
940 			slot = true;
941 		else if (pci_probe_reset_bus(vdev->pdev->bus))
942 			return -ENODEV;
943 
944 		/*
945 		 * We can't let userspace give us an arbitrarily large
946 		 * buffer to copy, so verify how many we think there
947 		 * could be.  Note groups can have multiple devices so
948 		 * one group per device is the max.
949 		 */
950 		ret = vfio_pci_for_each_slot_or_bus(vdev->pdev,
951 						    vfio_pci_count_devs,
952 						    &count, slot);
953 		if (ret)
954 			return ret;
955 
956 		/* Somewhere between 1 and count is OK */
957 		if (!hdr.count || hdr.count > count)
958 			return -EINVAL;
959 
960 		group_fds = kcalloc(hdr.count, sizeof(*group_fds), GFP_KERNEL);
961 		groups = kcalloc(hdr.count, sizeof(*groups), GFP_KERNEL);
962 		if (!group_fds || !groups) {
963 			kfree(group_fds);
964 			kfree(groups);
965 			return -ENOMEM;
966 		}
967 
968 		if (copy_from_user(group_fds, (void __user *)(arg + minsz),
969 				   hdr.count * sizeof(*group_fds))) {
970 			kfree(group_fds);
971 			kfree(groups);
972 			return -EFAULT;
973 		}
974 
975 		/*
976 		 * For each group_fd, get the group through the vfio external
977 		 * user interface and store the group and iommu ID.  This
978 		 * ensures the group is held across the reset.
979 		 */
980 		for (i = 0; i < hdr.count; i++) {
981 			struct vfio_group *group;
982 			struct fd f = fdget(group_fds[i]);
983 			if (!f.file) {
984 				ret = -EBADF;
985 				break;
986 			}
987 
988 			group = vfio_group_get_external_user(f.file);
989 			fdput(f);
990 			if (IS_ERR(group)) {
991 				ret = PTR_ERR(group);
992 				break;
993 			}
994 
995 			groups[i].group = group;
996 			groups[i].id = vfio_external_user_iommu_id(group);
997 		}
998 
999 		kfree(group_fds);
1000 
1001 		/* release reference to groups on error */
1002 		if (ret)
1003 			goto hot_reset_release;
1004 
1005 		info.count = hdr.count;
1006 		info.groups = groups;
1007 
1008 		/*
1009 		 * Test whether all the affected devices are contained
1010 		 * by the set of groups provided by the user.
1011 		 */
1012 		ret = vfio_pci_for_each_slot_or_bus(vdev->pdev,
1013 						    vfio_pci_validate_devs,
1014 						    &info, slot);
1015 		if (!ret)
1016 			/* User has access, do the reset */
1017 			ret = slot ? pci_try_reset_slot(vdev->pdev->slot) :
1018 				     pci_try_reset_bus(vdev->pdev->bus);
1019 
1020 hot_reset_release:
1021 		for (i--; i >= 0; i--)
1022 			vfio_group_put_external_user(groups[i].group);
1023 
1024 		kfree(groups);
1025 		return ret;
1026 	} else if (cmd == VFIO_DEVICE_IOEVENTFD) {
1027 		struct vfio_device_ioeventfd ioeventfd;
1028 		int count;
1029 
1030 		minsz = offsetofend(struct vfio_device_ioeventfd, fd);
1031 
1032 		if (copy_from_user(&ioeventfd, (void __user *)arg, minsz))
1033 			return -EFAULT;
1034 
1035 		if (ioeventfd.argsz < minsz)
1036 			return -EINVAL;
1037 
1038 		if (ioeventfd.flags & ~VFIO_DEVICE_IOEVENTFD_SIZE_MASK)
1039 			return -EINVAL;
1040 
1041 		count = ioeventfd.flags & VFIO_DEVICE_IOEVENTFD_SIZE_MASK;
1042 
1043 		if (hweight8(count) != 1 || ioeventfd.fd < -1)
1044 			return -EINVAL;
1045 
1046 		return vfio_pci_ioeventfd(vdev, ioeventfd.offset,
1047 					  ioeventfd.data, count, ioeventfd.fd);
1048 	}
1049 
1050 	return -ENOTTY;
1051 }
1052 
1053 static ssize_t vfio_pci_rw(void *device_data, char __user *buf,
1054 			   size_t count, loff_t *ppos, bool iswrite)
1055 {
1056 	unsigned int index = VFIO_PCI_OFFSET_TO_INDEX(*ppos);
1057 	struct vfio_pci_device *vdev = device_data;
1058 
1059 	if (index >= VFIO_PCI_NUM_REGIONS + vdev->num_regions)
1060 		return -EINVAL;
1061 
1062 	switch (index) {
1063 	case VFIO_PCI_CONFIG_REGION_INDEX:
1064 		return vfio_pci_config_rw(vdev, buf, count, ppos, iswrite);
1065 
1066 	case VFIO_PCI_ROM_REGION_INDEX:
1067 		if (iswrite)
1068 			return -EINVAL;
1069 		return vfio_pci_bar_rw(vdev, buf, count, ppos, false);
1070 
1071 	case VFIO_PCI_BAR0_REGION_INDEX ... VFIO_PCI_BAR5_REGION_INDEX:
1072 		return vfio_pci_bar_rw(vdev, buf, count, ppos, iswrite);
1073 
1074 	case VFIO_PCI_VGA_REGION_INDEX:
1075 		return vfio_pci_vga_rw(vdev, buf, count, ppos, iswrite);
1076 	default:
1077 		index -= VFIO_PCI_NUM_REGIONS;
1078 		return vdev->region[index].ops->rw(vdev, buf,
1079 						   count, ppos, iswrite);
1080 	}
1081 
1082 	return -EINVAL;
1083 }
1084 
1085 static ssize_t vfio_pci_read(void *device_data, char __user *buf,
1086 			     size_t count, loff_t *ppos)
1087 {
1088 	if (!count)
1089 		return 0;
1090 
1091 	return vfio_pci_rw(device_data, buf, count, ppos, false);
1092 }
1093 
1094 static ssize_t vfio_pci_write(void *device_data, const char __user *buf,
1095 			      size_t count, loff_t *ppos)
1096 {
1097 	if (!count)
1098 		return 0;
1099 
1100 	return vfio_pci_rw(device_data, (char __user *)buf, count, ppos, true);
1101 }
1102 
1103 static int vfio_pci_mmap(void *device_data, struct vm_area_struct *vma)
1104 {
1105 	struct vfio_pci_device *vdev = device_data;
1106 	struct pci_dev *pdev = vdev->pdev;
1107 	unsigned int index;
1108 	u64 phys_len, req_len, pgoff, req_start;
1109 	int ret;
1110 
1111 	index = vma->vm_pgoff >> (VFIO_PCI_OFFSET_SHIFT - PAGE_SHIFT);
1112 
1113 	if (vma->vm_end < vma->vm_start)
1114 		return -EINVAL;
1115 	if ((vma->vm_flags & VM_SHARED) == 0)
1116 		return -EINVAL;
1117 	if (index >= VFIO_PCI_ROM_REGION_INDEX)
1118 		return -EINVAL;
1119 	if (!vdev->bar_mmap_supported[index])
1120 		return -EINVAL;
1121 
1122 	phys_len = PAGE_ALIGN(pci_resource_len(pdev, index));
1123 	req_len = vma->vm_end - vma->vm_start;
1124 	pgoff = vma->vm_pgoff &
1125 		((1U << (VFIO_PCI_OFFSET_SHIFT - PAGE_SHIFT)) - 1);
1126 	req_start = pgoff << PAGE_SHIFT;
1127 
1128 	if (req_start + req_len > phys_len)
1129 		return -EINVAL;
1130 
1131 	/*
1132 	 * Even though we don't make use of the barmap for the mmap,
1133 	 * we need to request the region and the barmap tracks that.
1134 	 */
1135 	if (!vdev->barmap[index]) {
1136 		ret = pci_request_selected_regions(pdev,
1137 						   1 << index, "vfio-pci");
1138 		if (ret)
1139 			return ret;
1140 
1141 		vdev->barmap[index] = pci_iomap(pdev, index, 0);
1142 		if (!vdev->barmap[index]) {
1143 			pci_release_selected_regions(pdev, 1 << index);
1144 			return -ENOMEM;
1145 		}
1146 	}
1147 
1148 	vma->vm_private_data = vdev;
1149 	vma->vm_page_prot = pgprot_noncached(vma->vm_page_prot);
1150 	vma->vm_pgoff = (pci_resource_start(pdev, index) >> PAGE_SHIFT) + pgoff;
1151 
1152 	return remap_pfn_range(vma, vma->vm_start, vma->vm_pgoff,
1153 			       req_len, vma->vm_page_prot);
1154 }
1155 
1156 static void vfio_pci_request(void *device_data, unsigned int count)
1157 {
1158 	struct vfio_pci_device *vdev = device_data;
1159 
1160 	mutex_lock(&vdev->igate);
1161 
1162 	if (vdev->req_trigger) {
1163 		if (!(count % 10))
1164 			dev_notice_ratelimited(&vdev->pdev->dev,
1165 				"Relaying device request to user (#%u)\n",
1166 				count);
1167 		eventfd_signal(vdev->req_trigger, 1);
1168 	} else if (count == 0) {
1169 		dev_warn(&vdev->pdev->dev,
1170 			"No device request channel registered, blocked until released by user\n");
1171 	}
1172 
1173 	mutex_unlock(&vdev->igate);
1174 }
1175 
1176 static const struct vfio_device_ops vfio_pci_ops = {
1177 	.name		= "vfio-pci",
1178 	.open		= vfio_pci_open,
1179 	.release	= vfio_pci_release,
1180 	.ioctl		= vfio_pci_ioctl,
1181 	.read		= vfio_pci_read,
1182 	.write		= vfio_pci_write,
1183 	.mmap		= vfio_pci_mmap,
1184 	.request	= vfio_pci_request,
1185 };
1186 
1187 static int vfio_pci_probe(struct pci_dev *pdev, const struct pci_device_id *id)
1188 {
1189 	struct vfio_pci_device *vdev;
1190 	struct iommu_group *group;
1191 	int ret;
1192 
1193 	if (pdev->hdr_type != PCI_HEADER_TYPE_NORMAL)
1194 		return -EINVAL;
1195 
1196 	group = vfio_iommu_group_get(&pdev->dev);
1197 	if (!group)
1198 		return -EINVAL;
1199 
1200 	vdev = kzalloc(sizeof(*vdev), GFP_KERNEL);
1201 	if (!vdev) {
1202 		vfio_iommu_group_put(group, &pdev->dev);
1203 		return -ENOMEM;
1204 	}
1205 
1206 	vdev->pdev = pdev;
1207 	vdev->irq_type = VFIO_PCI_NUM_IRQS;
1208 	mutex_init(&vdev->igate);
1209 	spin_lock_init(&vdev->irqlock);
1210 	mutex_init(&vdev->ioeventfds_lock);
1211 	INIT_LIST_HEAD(&vdev->ioeventfds_list);
1212 
1213 	ret = vfio_add_group_dev(&pdev->dev, &vfio_pci_ops, vdev);
1214 	if (ret) {
1215 		vfio_iommu_group_put(group, &pdev->dev);
1216 		kfree(vdev);
1217 		return ret;
1218 	}
1219 
1220 	if (vfio_pci_is_vga(pdev)) {
1221 		vga_client_register(pdev, vdev, NULL, vfio_pci_set_vga_decode);
1222 		vga_set_legacy_decoding(pdev,
1223 					vfio_pci_set_vga_decode(vdev, false));
1224 	}
1225 
1226 	if (!disable_idle_d3) {
1227 		/*
1228 		 * pci-core sets the device power state to an unknown value at
1229 		 * bootup and after being removed from a driver.  The only
1230 		 * transition it allows from this unknown state is to D0, which
1231 		 * typically happens when a driver calls pci_enable_device().
1232 		 * We're not ready to enable the device yet, but we do want to
1233 		 * be able to get to D3.  Therefore first do a D0 transition
1234 		 * before going to D3.
1235 		 */
1236 		pci_set_power_state(pdev, PCI_D0);
1237 		pci_set_power_state(pdev, PCI_D3hot);
1238 	}
1239 
1240 	return ret;
1241 }
1242 
1243 static void vfio_pci_remove(struct pci_dev *pdev)
1244 {
1245 	struct vfio_pci_device *vdev;
1246 
1247 	vdev = vfio_del_group_dev(&pdev->dev);
1248 	if (!vdev)
1249 		return;
1250 
1251 	vfio_iommu_group_put(pdev->dev.iommu_group, &pdev->dev);
1252 	kfree(vdev->region);
1253 	mutex_destroy(&vdev->ioeventfds_lock);
1254 	kfree(vdev);
1255 
1256 	if (vfio_pci_is_vga(pdev)) {
1257 		vga_client_register(pdev, NULL, NULL, NULL);
1258 		vga_set_legacy_decoding(pdev,
1259 				VGA_RSRC_NORMAL_IO | VGA_RSRC_NORMAL_MEM |
1260 				VGA_RSRC_LEGACY_IO | VGA_RSRC_LEGACY_MEM);
1261 	}
1262 
1263 	if (!disable_idle_d3)
1264 		pci_set_power_state(pdev, PCI_D0);
1265 }
1266 
1267 static pci_ers_result_t vfio_pci_aer_err_detected(struct pci_dev *pdev,
1268 						  pci_channel_state_t state)
1269 {
1270 	struct vfio_pci_device *vdev;
1271 	struct vfio_device *device;
1272 
1273 	device = vfio_device_get_from_dev(&pdev->dev);
1274 	if (device == NULL)
1275 		return PCI_ERS_RESULT_DISCONNECT;
1276 
1277 	vdev = vfio_device_data(device);
1278 	if (vdev == NULL) {
1279 		vfio_device_put(device);
1280 		return PCI_ERS_RESULT_DISCONNECT;
1281 	}
1282 
1283 	mutex_lock(&vdev->igate);
1284 
1285 	if (vdev->err_trigger)
1286 		eventfd_signal(vdev->err_trigger, 1);
1287 
1288 	mutex_unlock(&vdev->igate);
1289 
1290 	vfio_device_put(device);
1291 
1292 	return PCI_ERS_RESULT_CAN_RECOVER;
1293 }
1294 
1295 static const struct pci_error_handlers vfio_err_handlers = {
1296 	.error_detected = vfio_pci_aer_err_detected,
1297 };
1298 
1299 static struct pci_driver vfio_pci_driver = {
1300 	.name		= "vfio-pci",
1301 	.id_table	= NULL, /* only dynamic ids */
1302 	.probe		= vfio_pci_probe,
1303 	.remove		= vfio_pci_remove,
1304 	.err_handler	= &vfio_err_handlers,
1305 };
1306 
1307 struct vfio_devices {
1308 	struct vfio_device **devices;
1309 	int cur_index;
1310 	int max_index;
1311 };
1312 
1313 static int vfio_pci_get_devs(struct pci_dev *pdev, void *data)
1314 {
1315 	struct vfio_devices *devs = data;
1316 	struct vfio_device *device;
1317 
1318 	if (devs->cur_index == devs->max_index)
1319 		return -ENOSPC;
1320 
1321 	device = vfio_device_get_from_dev(&pdev->dev);
1322 	if (!device)
1323 		return -EINVAL;
1324 
1325 	if (pci_dev_driver(pdev) != &vfio_pci_driver) {
1326 		vfio_device_put(device);
1327 		return -EBUSY;
1328 	}
1329 
1330 	devs->devices[devs->cur_index++] = device;
1331 	return 0;
1332 }
1333 
1334 /*
1335  * Attempt to do a bus/slot reset if there are devices affected by a reset for
1336  * this device that are needs_reset and all of the affected devices are unused
1337  * (!refcnt).  Callers are required to hold driver_lock when calling this to
1338  * prevent device opens and concurrent bus reset attempts.  We prevent device
1339  * unbinds by acquiring and holding a reference to the vfio_device.
1340  *
1341  * NB: vfio-core considers a group to be viable even if some devices are
1342  * bound to drivers like pci-stub or pcieport.  Here we require all devices
1343  * to be bound to vfio_pci since that's the only way we can be sure they
1344  * stay put.
1345  */
1346 static void vfio_pci_try_bus_reset(struct vfio_pci_device *vdev)
1347 {
1348 	struct vfio_devices devs = { .cur_index = 0 };
1349 	int i = 0, ret = -EINVAL;
1350 	bool needs_reset = false, slot = false;
1351 	struct vfio_pci_device *tmp;
1352 
1353 	if (!pci_probe_reset_slot(vdev->pdev->slot))
1354 		slot = true;
1355 	else if (pci_probe_reset_bus(vdev->pdev->bus))
1356 		return;
1357 
1358 	if (vfio_pci_for_each_slot_or_bus(vdev->pdev, vfio_pci_count_devs,
1359 					  &i, slot) || !i)
1360 		return;
1361 
1362 	devs.max_index = i;
1363 	devs.devices = kcalloc(i, sizeof(struct vfio_device *), GFP_KERNEL);
1364 	if (!devs.devices)
1365 		return;
1366 
1367 	if (vfio_pci_for_each_slot_or_bus(vdev->pdev,
1368 					  vfio_pci_get_devs, &devs, slot))
1369 		goto put_devs;
1370 
1371 	for (i = 0; i < devs.cur_index; i++) {
1372 		tmp = vfio_device_data(devs.devices[i]);
1373 		if (tmp->needs_reset)
1374 			needs_reset = true;
1375 		if (tmp->refcnt)
1376 			goto put_devs;
1377 	}
1378 
1379 	if (needs_reset)
1380 		ret = slot ? pci_try_reset_slot(vdev->pdev->slot) :
1381 			     pci_try_reset_bus(vdev->pdev->bus);
1382 
1383 put_devs:
1384 	for (i = 0; i < devs.cur_index; i++) {
1385 		tmp = vfio_device_data(devs.devices[i]);
1386 		if (!ret)
1387 			tmp->needs_reset = false;
1388 
1389 		if (!tmp->refcnt && !disable_idle_d3)
1390 			pci_set_power_state(tmp->pdev, PCI_D3hot);
1391 
1392 		vfio_device_put(devs.devices[i]);
1393 	}
1394 
1395 	kfree(devs.devices);
1396 }
1397 
1398 static void __exit vfio_pci_cleanup(void)
1399 {
1400 	pci_unregister_driver(&vfio_pci_driver);
1401 	vfio_pci_uninit_perm_bits();
1402 }
1403 
1404 static void __init vfio_pci_fill_ids(void)
1405 {
1406 	char *p, *id;
1407 	int rc;
1408 
1409 	/* no ids passed actually */
1410 	if (ids[0] == '\0')
1411 		return;
1412 
1413 	/* add ids specified in the module parameter */
1414 	p = ids;
1415 	while ((id = strsep(&p, ","))) {
1416 		unsigned int vendor, device, subvendor = PCI_ANY_ID,
1417 			subdevice = PCI_ANY_ID, class = 0, class_mask = 0;
1418 		int fields;
1419 
1420 		if (!strlen(id))
1421 			continue;
1422 
1423 		fields = sscanf(id, "%x:%x:%x:%x:%x:%x",
1424 				&vendor, &device, &subvendor, &subdevice,
1425 				&class, &class_mask);
1426 
1427 		if (fields < 2) {
1428 			pr_warn("invalid id string \"%s\"\n", id);
1429 			continue;
1430 		}
1431 
1432 		rc = pci_add_dynid(&vfio_pci_driver, vendor, device,
1433 				   subvendor, subdevice, class, class_mask, 0);
1434 		if (rc)
1435 			pr_warn("failed to add dynamic id [%04hx:%04hx[%04hx:%04hx]] class %#08x/%08x (%d)\n",
1436 				vendor, device, subvendor, subdevice,
1437 				class, class_mask, rc);
1438 		else
1439 			pr_info("add [%04hx:%04hx[%04hx:%04hx]] class %#08x/%08x\n",
1440 				vendor, device, subvendor, subdevice,
1441 				class, class_mask);
1442 	}
1443 }
1444 
1445 static int __init vfio_pci_init(void)
1446 {
1447 	int ret;
1448 
1449 	/* Allocate shared config space permision data used by all devices */
1450 	ret = vfio_pci_init_perm_bits();
1451 	if (ret)
1452 		return ret;
1453 
1454 	/* Register and scan for devices */
1455 	ret = pci_register_driver(&vfio_pci_driver);
1456 	if (ret)
1457 		goto out_driver;
1458 
1459 	vfio_pci_fill_ids();
1460 
1461 	return 0;
1462 
1463 out_driver:
1464 	vfio_pci_uninit_perm_bits();
1465 	return ret;
1466 }
1467 
1468 module_init(vfio_pci_init);
1469 module_exit(vfio_pci_cleanup);
1470 
1471 MODULE_VERSION(DRIVER_VERSION);
1472 MODULE_LICENSE("GPL v2");
1473 MODULE_AUTHOR(DRIVER_AUTHOR);
1474 MODULE_DESCRIPTION(DRIVER_DESC);
1475