4 * Copyright (C) 2012 Red Hat, Inc. All rights reserved.
5 * Author: Alex Williamson <alex.williamson@redhat.com>
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
11 * Derived from original vfio:
12 * Copyright 2010 Cisco Systems, Inc. All rights reserved.
13 * Author: Tom Lyon, pugs@cisco.com
16 #include <linux/cdev.h>
17 #include <linux/compat.h>
18 #include <linux/device.h>
19 #include <linux/file.h>
20 #include <linux/anon_inodes.h>
22 #include <linux/idr.h>
23 #include <linux/iommu.h>
24 #include <linux/list.h>
25 #include <linux/miscdevice.h>
26 #include <linux/module.h>
27 #include <linux/mutex.h>
28 #include <linux/pci.h>
29 #include <linux/rwsem.h>
30 #include <linux/sched.h>
31 #include <linux/slab.h>
32 #include <linux/stat.h>
33 #include <linux/string.h>
34 #include <linux/uaccess.h>
35 #include <linux/vfio.h>
36 #include <linux/wait.h>
38 #define DRIVER_VERSION "0.3"
39 #define DRIVER_AUTHOR "Alex Williamson <alex.williamson@redhat.com>"
40 #define DRIVER_DESC "VFIO - User Level meta-driver"
44 struct list_head iommu_drivers_list
;
45 struct mutex iommu_drivers_lock
;
46 struct list_head group_list
;
48 struct mutex group_lock
;
49 struct cdev group_cdev
;
51 wait_queue_head_t release_q
;
54 struct vfio_iommu_driver
{
55 const struct vfio_iommu_driver_ops
*ops
;
56 struct list_head vfio_next
;
59 struct vfio_container
{
61 struct list_head group_list
;
62 struct rw_semaphore group_lock
;
63 struct vfio_iommu_driver
*iommu_driver
;
67 struct vfio_unbound_dev
{
69 struct list_head unbound_next
;
75 atomic_t container_users
;
76 struct iommu_group
*iommu_group
;
77 struct vfio_container
*container
;
78 struct list_head device_list
;
79 struct mutex device_lock
;
81 struct notifier_block nb
;
82 struct list_head vfio_next
;
83 struct list_head container_next
;
84 struct list_head unbound_list
;
85 struct mutex unbound_lock
;
92 const struct vfio_device_ops
*ops
;
93 struct vfio_group
*group
;
94 struct list_head group_next
;
99 * IOMMU driver registration
101 int vfio_register_iommu_driver(const struct vfio_iommu_driver_ops
*ops
)
103 struct vfio_iommu_driver
*driver
, *tmp
;
105 driver
= kzalloc(sizeof(*driver
), GFP_KERNEL
);
111 mutex_lock(&vfio
.iommu_drivers_lock
);
113 /* Check for duplicates */
114 list_for_each_entry(tmp
, &vfio
.iommu_drivers_list
, vfio_next
) {
115 if (tmp
->ops
== ops
) {
116 mutex_unlock(&vfio
.iommu_drivers_lock
);
122 list_add(&driver
->vfio_next
, &vfio
.iommu_drivers_list
);
124 mutex_unlock(&vfio
.iommu_drivers_lock
);
128 EXPORT_SYMBOL_GPL(vfio_register_iommu_driver
);
130 void vfio_unregister_iommu_driver(const struct vfio_iommu_driver_ops
*ops
)
132 struct vfio_iommu_driver
*driver
;
134 mutex_lock(&vfio
.iommu_drivers_lock
);
135 list_for_each_entry(driver
, &vfio
.iommu_drivers_list
, vfio_next
) {
136 if (driver
->ops
== ops
) {
137 list_del(&driver
->vfio_next
);
138 mutex_unlock(&vfio
.iommu_drivers_lock
);
143 mutex_unlock(&vfio
.iommu_drivers_lock
);
145 EXPORT_SYMBOL_GPL(vfio_unregister_iommu_driver
);
148 * Group minor allocation/free - both called with vfio.group_lock held
150 static int vfio_alloc_group_minor(struct vfio_group
*group
)
152 return idr_alloc(&vfio
.group_idr
, group
, 0, MINORMASK
+ 1, GFP_KERNEL
);
155 static void vfio_free_group_minor(int minor
)
157 idr_remove(&vfio
.group_idr
, minor
);
160 static int vfio_iommu_group_notifier(struct notifier_block
*nb
,
161 unsigned long action
, void *data
);
162 static void vfio_group_get(struct vfio_group
*group
);
165 * Container objects - containers are created when /dev/vfio/vfio is
166 * opened, but their lifecycle extends until the last user is done, so
167 * it's freed via kref. Must support container/group/device being
168 * closed in any order.
170 static void vfio_container_get(struct vfio_container
*container
)
172 kref_get(&container
->kref
);
175 static void vfio_container_release(struct kref
*kref
)
177 struct vfio_container
*container
;
178 container
= container_of(kref
, struct vfio_container
, kref
);
183 static void vfio_container_put(struct vfio_container
*container
)
185 kref_put(&container
->kref
, vfio_container_release
);
188 static void vfio_group_unlock_and_free(struct vfio_group
*group
)
190 mutex_unlock(&vfio
.group_lock
);
192 * Unregister outside of lock. A spurious callback is harmless now
193 * that the group is no longer in vfio.group_list.
195 iommu_group_unregister_notifier(group
->iommu_group
, &group
->nb
);
200 * Group objects - create, release, get, put, search
202 static struct vfio_group
*vfio_create_group(struct iommu_group
*iommu_group
)
204 struct vfio_group
*group
, *tmp
;
208 group
= kzalloc(sizeof(*group
), GFP_KERNEL
);
210 return ERR_PTR(-ENOMEM
);
212 kref_init(&group
->kref
);
213 INIT_LIST_HEAD(&group
->device_list
);
214 mutex_init(&group
->device_lock
);
215 INIT_LIST_HEAD(&group
->unbound_list
);
216 mutex_init(&group
->unbound_lock
);
217 atomic_set(&group
->container_users
, 0);
218 atomic_set(&group
->opened
, 0);
219 group
->iommu_group
= iommu_group
;
221 group
->nb
.notifier_call
= vfio_iommu_group_notifier
;
224 * blocking notifiers acquire a rwsem around registering and hold
225 * it around callback. Therefore, need to register outside of
226 * vfio.group_lock to avoid A-B/B-A contention. Our callback won't
227 * do anything unless it can find the group in vfio.group_list, so
228 * no harm in registering early.
230 ret
= iommu_group_register_notifier(iommu_group
, &group
->nb
);
236 mutex_lock(&vfio
.group_lock
);
238 /* Did we race creating this group? */
239 list_for_each_entry(tmp
, &vfio
.group_list
, vfio_next
) {
240 if (tmp
->iommu_group
== iommu_group
) {
242 vfio_group_unlock_and_free(group
);
247 minor
= vfio_alloc_group_minor(group
);
249 vfio_group_unlock_and_free(group
);
250 return ERR_PTR(minor
);
253 dev
= device_create(vfio
.class, NULL
,
254 MKDEV(MAJOR(vfio
.group_devt
), minor
),
255 group
, "%d", iommu_group_id(iommu_group
));
257 vfio_free_group_minor(minor
);
258 vfio_group_unlock_and_free(group
);
259 return (struct vfio_group
*)dev
; /* ERR_PTR */
262 group
->minor
= minor
;
265 list_add(&group
->vfio_next
, &vfio
.group_list
);
267 mutex_unlock(&vfio
.group_lock
);
272 /* called with vfio.group_lock held */
273 static void vfio_group_release(struct kref
*kref
)
275 struct vfio_group
*group
= container_of(kref
, struct vfio_group
, kref
);
276 struct vfio_unbound_dev
*unbound
, *tmp
;
277 struct iommu_group
*iommu_group
= group
->iommu_group
;
279 WARN_ON(!list_empty(&group
->device_list
));
281 list_for_each_entry_safe(unbound
, tmp
,
282 &group
->unbound_list
, unbound_next
) {
283 list_del(&unbound
->unbound_next
);
287 device_destroy(vfio
.class, MKDEV(MAJOR(vfio
.group_devt
), group
->minor
));
288 list_del(&group
->vfio_next
);
289 vfio_free_group_minor(group
->minor
);
290 vfio_group_unlock_and_free(group
);
291 iommu_group_put(iommu_group
);
294 static void vfio_group_put(struct vfio_group
*group
)
296 kref_put_mutex(&group
->kref
, vfio_group_release
, &vfio
.group_lock
);
299 /* Assume group_lock or group reference is held */
300 static void vfio_group_get(struct vfio_group
*group
)
302 kref_get(&group
->kref
);
306 * Not really a try as we will sleep for mutex, but we need to make
307 * sure the group pointer is valid under lock and get a reference.
309 static struct vfio_group
*vfio_group_try_get(struct vfio_group
*group
)
311 struct vfio_group
*target
= group
;
313 mutex_lock(&vfio
.group_lock
);
314 list_for_each_entry(group
, &vfio
.group_list
, vfio_next
) {
315 if (group
== target
) {
316 vfio_group_get(group
);
317 mutex_unlock(&vfio
.group_lock
);
321 mutex_unlock(&vfio
.group_lock
);
327 struct vfio_group
*vfio_group_get_from_iommu(struct iommu_group
*iommu_group
)
329 struct vfio_group
*group
;
331 mutex_lock(&vfio
.group_lock
);
332 list_for_each_entry(group
, &vfio
.group_list
, vfio_next
) {
333 if (group
->iommu_group
== iommu_group
) {
334 vfio_group_get(group
);
335 mutex_unlock(&vfio
.group_lock
);
339 mutex_unlock(&vfio
.group_lock
);
344 static struct vfio_group
*vfio_group_get_from_minor(int minor
)
346 struct vfio_group
*group
;
348 mutex_lock(&vfio
.group_lock
);
349 group
= idr_find(&vfio
.group_idr
, minor
);
351 mutex_unlock(&vfio
.group_lock
);
354 vfio_group_get(group
);
355 mutex_unlock(&vfio
.group_lock
);
361 * Device objects - create, release, get, put, search
364 struct vfio_device
*vfio_group_create_device(struct vfio_group
*group
,
366 const struct vfio_device_ops
*ops
,
369 struct vfio_device
*device
;
371 device
= kzalloc(sizeof(*device
), GFP_KERNEL
);
373 return ERR_PTR(-ENOMEM
);
375 kref_init(&device
->kref
);
377 device
->group
= group
;
379 device
->device_data
= device_data
;
380 dev_set_drvdata(dev
, device
);
382 /* No need to get group_lock, caller has group reference */
383 vfio_group_get(group
);
385 mutex_lock(&group
->device_lock
);
386 list_add(&device
->group_next
, &group
->device_list
);
387 mutex_unlock(&group
->device_lock
);
392 static void vfio_device_release(struct kref
*kref
)
394 struct vfio_device
*device
= container_of(kref
,
395 struct vfio_device
, kref
);
396 struct vfio_group
*group
= device
->group
;
398 list_del(&device
->group_next
);
399 mutex_unlock(&group
->device_lock
);
401 dev_set_drvdata(device
->dev
, NULL
);
405 /* vfio_del_group_dev may be waiting for this device */
406 wake_up(&vfio
.release_q
);
409 /* Device reference always implies a group reference */
410 void vfio_device_put(struct vfio_device
*device
)
412 struct vfio_group
*group
= device
->group
;
413 kref_put_mutex(&device
->kref
, vfio_device_release
, &group
->device_lock
);
414 vfio_group_put(group
);
416 EXPORT_SYMBOL_GPL(vfio_device_put
);
418 static void vfio_device_get(struct vfio_device
*device
)
420 vfio_group_get(device
->group
);
421 kref_get(&device
->kref
);
424 static struct vfio_device
*vfio_group_get_device(struct vfio_group
*group
,
427 struct vfio_device
*device
;
429 mutex_lock(&group
->device_lock
);
430 list_for_each_entry(device
, &group
->device_list
, group_next
) {
431 if (device
->dev
== dev
) {
432 vfio_device_get(device
);
433 mutex_unlock(&group
->device_lock
);
437 mutex_unlock(&group
->device_lock
);
442 * Some drivers, like pci-stub, are only used to prevent other drivers from
443 * claiming a device and are therefore perfectly legitimate for a user owned
444 * group. The pci-stub driver has no dependencies on DMA or the IOVA mapping
445 * of the device, but it does prevent the user from having direct access to
446 * the device, which is useful in some circumstances.
448 * We also assume that we can include PCI interconnect devices, ie. bridges.
449 * IOMMU grouping on PCI necessitates that if we lack isolation on a bridge
450 * then all of the downstream devices will be part of the same IOMMU group as
451 * the bridge. Thus, if placing the bridge into the user owned IOVA space
452 * breaks anything, it only does so for user owned devices downstream. Note
453 * that error notification via MSI can be affected for platforms that handle
454 * MSI within the same IOVA space as DMA.
456 static const char * const vfio_driver_whitelist
[] = { "pci-stub" };
458 static bool vfio_dev_whitelisted(struct device
*dev
, struct device_driver
*drv
)
462 if (dev_is_pci(dev
)) {
463 struct pci_dev
*pdev
= to_pci_dev(dev
);
465 if (pdev
->hdr_type
!= PCI_HEADER_TYPE_NORMAL
)
469 for (i
= 0; i
< ARRAY_SIZE(vfio_driver_whitelist
); i
++) {
470 if (!strcmp(drv
->name
, vfio_driver_whitelist
[i
]))
478 * A vfio group is viable for use by userspace if all devices are in
479 * one of the following states:
481 * - bound to a vfio driver
482 * - bound to a whitelisted driver
483 * - a PCI interconnect device
485 * We use two methods to determine whether a device is bound to a vfio
486 * driver. The first is to test whether the device exists in the vfio
487 * group. The second is to test if the device exists on the group
488 * unbound_list, indicating it's in the middle of transitioning from
489 * a vfio driver to driver-less.
491 static int vfio_dev_viable(struct device
*dev
, void *data
)
493 struct vfio_group
*group
= data
;
494 struct vfio_device
*device
;
495 struct device_driver
*drv
= ACCESS_ONCE(dev
->driver
);
496 struct vfio_unbound_dev
*unbound
;
499 mutex_lock(&group
->unbound_lock
);
500 list_for_each_entry(unbound
, &group
->unbound_list
, unbound_next
) {
501 if (dev
== unbound
->dev
) {
506 mutex_unlock(&group
->unbound_lock
);
508 if (!ret
|| !drv
|| vfio_dev_whitelisted(dev
, drv
))
511 device
= vfio_group_get_device(group
, dev
);
513 vfio_device_put(device
);
521 * Async device support
523 static int vfio_group_nb_add_dev(struct vfio_group
*group
, struct device
*dev
)
525 struct vfio_device
*device
;
527 /* Do we already know about it? We shouldn't */
528 device
= vfio_group_get_device(group
, dev
);
529 if (WARN_ON_ONCE(device
)) {
530 vfio_device_put(device
);
534 /* Nothing to do for idle groups */
535 if (!atomic_read(&group
->container_users
))
538 /* TODO Prevent device auto probing */
539 WARN(1, "Device %s added to live group %d!\n", dev_name(dev
),
540 iommu_group_id(group
->iommu_group
));
545 static int vfio_group_nb_verify(struct vfio_group
*group
, struct device
*dev
)
547 /* We don't care what happens when the group isn't in use */
548 if (!atomic_read(&group
->container_users
))
551 return vfio_dev_viable(dev
, group
);
554 static int vfio_iommu_group_notifier(struct notifier_block
*nb
,
555 unsigned long action
, void *data
)
557 struct vfio_group
*group
= container_of(nb
, struct vfio_group
, nb
);
558 struct device
*dev
= data
;
559 struct vfio_unbound_dev
*unbound
;
562 * Need to go through a group_lock lookup to get a reference or we
563 * risk racing a group being removed. Ignore spurious notifies.
565 group
= vfio_group_try_get(group
);
570 case IOMMU_GROUP_NOTIFY_ADD_DEVICE
:
571 vfio_group_nb_add_dev(group
, dev
);
573 case IOMMU_GROUP_NOTIFY_DEL_DEVICE
:
575 * Nothing to do here. If the device is in use, then the
576 * vfio sub-driver should block the remove callback until
577 * it is unused. If the device is unused or attached to a
578 * stub driver, then it should be released and we don't
579 * care that it will be going away.
582 case IOMMU_GROUP_NOTIFY_BIND_DRIVER
:
583 pr_debug("%s: Device %s, group %d binding to driver\n",
584 __func__
, dev_name(dev
),
585 iommu_group_id(group
->iommu_group
));
587 case IOMMU_GROUP_NOTIFY_BOUND_DRIVER
:
588 pr_debug("%s: Device %s, group %d bound to driver %s\n",
589 __func__
, dev_name(dev
),
590 iommu_group_id(group
->iommu_group
), dev
->driver
->name
);
591 BUG_ON(vfio_group_nb_verify(group
, dev
));
593 case IOMMU_GROUP_NOTIFY_UNBIND_DRIVER
:
594 pr_debug("%s: Device %s, group %d unbinding from driver %s\n",
595 __func__
, dev_name(dev
),
596 iommu_group_id(group
->iommu_group
), dev
->driver
->name
);
598 case IOMMU_GROUP_NOTIFY_UNBOUND_DRIVER
:
599 pr_debug("%s: Device %s, group %d unbound from driver\n",
600 __func__
, dev_name(dev
),
601 iommu_group_id(group
->iommu_group
));
603 * XXX An unbound device in a live group is ok, but we'd
604 * really like to avoid the above BUG_ON by preventing other
605 * drivers from binding to it. Once that occurs, we have to
606 * stop the system to maintain isolation. At a minimum, we'd
607 * want a toggle to disable driver auto probe for this device.
610 mutex_lock(&group
->unbound_lock
);
611 list_for_each_entry(unbound
,
612 &group
->unbound_list
, unbound_next
) {
613 if (dev
== unbound
->dev
) {
614 list_del(&unbound
->unbound_next
);
619 mutex_unlock(&group
->unbound_lock
);
623 vfio_group_put(group
);
630 int vfio_add_group_dev(struct device
*dev
,
631 const struct vfio_device_ops
*ops
, void *device_data
)
633 struct iommu_group
*iommu_group
;
634 struct vfio_group
*group
;
635 struct vfio_device
*device
;
637 iommu_group
= iommu_group_get(dev
);
641 group
= vfio_group_get_from_iommu(iommu_group
);
643 group
= vfio_create_group(iommu_group
);
645 iommu_group_put(iommu_group
);
646 return PTR_ERR(group
);
650 * A found vfio_group already holds a reference to the
651 * iommu_group. A created vfio_group keeps the reference.
653 iommu_group_put(iommu_group
);
656 device
= vfio_group_get_device(group
, dev
);
658 WARN(1, "Device %s already exists on group %d\n",
659 dev_name(dev
), iommu_group_id(iommu_group
));
660 vfio_device_put(device
);
661 vfio_group_put(group
);
665 device
= vfio_group_create_device(group
, dev
, ops
, device_data
);
666 if (IS_ERR(device
)) {
667 vfio_group_put(group
);
668 return PTR_ERR(device
);
672 * Drop all but the vfio_device reference. The vfio_device holds
673 * a reference to the vfio_group, which holds a reference to the
676 vfio_group_put(group
);
680 EXPORT_SYMBOL_GPL(vfio_add_group_dev
);
683 * Get a reference to the vfio_device for a device. Even if the
684 * caller thinks they own the device, they could be racing with a
685 * release call path, so we can't trust drvdata for the shortcut.
686 * Go the long way around, from the iommu_group to the vfio_group
687 * to the vfio_device.
689 struct vfio_device
*vfio_device_get_from_dev(struct device
*dev
)
691 struct iommu_group
*iommu_group
;
692 struct vfio_group
*group
;
693 struct vfio_device
*device
;
695 iommu_group
= iommu_group_get(dev
);
699 group
= vfio_group_get_from_iommu(iommu_group
);
700 iommu_group_put(iommu_group
);
704 device
= vfio_group_get_device(group
, dev
);
705 vfio_group_put(group
);
709 EXPORT_SYMBOL_GPL(vfio_device_get_from_dev
);
711 static struct vfio_device
*vfio_device_get_from_name(struct vfio_group
*group
,
714 struct vfio_device
*it
, *device
= NULL
;
716 mutex_lock(&group
->device_lock
);
717 list_for_each_entry(it
, &group
->device_list
, group_next
) {
718 if (!strcmp(dev_name(it
->dev
), buf
)) {
720 vfio_device_get(device
);
724 mutex_unlock(&group
->device_lock
);
730 * Caller must hold a reference to the vfio_device
732 void *vfio_device_data(struct vfio_device
*device
)
734 return device
->device_data
;
736 EXPORT_SYMBOL_GPL(vfio_device_data
);
738 /* Given a referenced group, check if it contains the device */
739 static bool vfio_dev_present(struct vfio_group
*group
, struct device
*dev
)
741 struct vfio_device
*device
;
743 device
= vfio_group_get_device(group
, dev
);
747 vfio_device_put(device
);
752 * Decrement the device reference count and wait for the device to be
753 * removed. Open file descriptors for the device... */
754 void *vfio_del_group_dev(struct device
*dev
)
756 struct vfio_device
*device
= dev_get_drvdata(dev
);
757 struct vfio_group
*group
= device
->group
;
758 void *device_data
= device
->device_data
;
759 struct vfio_unbound_dev
*unbound
;
762 bool interrupted
= false;
765 * The group exists so long as we have a device reference. Get
766 * a group reference and use it to scan for the device going away.
768 vfio_group_get(group
);
771 * When the device is removed from the group, the group suddenly
772 * becomes non-viable; the device has a driver (until the unbind
773 * completes), but it's not present in the group. This is bad news
774 * for any external users that need to re-acquire a group reference
775 * in order to match and release their existing reference. To
776 * solve this, we track such devices on the unbound_list to bridge
777 * the gap until they're fully unbound.
779 unbound
= kzalloc(sizeof(*unbound
), GFP_KERNEL
);
782 mutex_lock(&group
->unbound_lock
);
783 list_add(&unbound
->unbound_next
, &group
->unbound_list
);
784 mutex_unlock(&group
->unbound_lock
);
788 vfio_device_put(device
);
791 * If the device is still present in the group after the above
792 * 'put', then it is in use and we need to request it from the
793 * bus driver. The driver may in turn need to request the
794 * device from the user. We send the request on an arbitrary
795 * interval with counter to allow the driver to take escalating
796 * measures to release the device if it has the ability to do so.
799 device
= vfio_group_get_device(group
, dev
);
803 if (device
->ops
->request
)
804 device
->ops
->request(device_data
, i
++);
806 vfio_device_put(device
);
809 ret
= wait_event_timeout(vfio
.release_q
,
810 !vfio_dev_present(group
, dev
), HZ
* 10);
812 ret
= wait_event_interruptible_timeout(vfio
.release_q
,
813 !vfio_dev_present(group
, dev
), HZ
* 10);
814 if (ret
== -ERESTARTSYS
) {
817 "Device is currently in use, task"
819 "blocked until device is released",
820 current
->comm
, task_pid_nr(current
));
825 vfio_group_put(group
);
829 EXPORT_SYMBOL_GPL(vfio_del_group_dev
);
832 * VFIO base fd, /dev/vfio/vfio
834 static long vfio_ioctl_check_extension(struct vfio_container
*container
,
837 struct vfio_iommu_driver
*driver
;
840 down_read(&container
->group_lock
);
842 driver
= container
->iommu_driver
;
845 /* No base extensions yet */
848 * If no driver is set, poll all registered drivers for
849 * extensions and return the first positive result. If
850 * a driver is already set, further queries will be passed
851 * only to that driver.
854 mutex_lock(&vfio
.iommu_drivers_lock
);
855 list_for_each_entry(driver
, &vfio
.iommu_drivers_list
,
857 if (!try_module_get(driver
->ops
->owner
))
860 ret
= driver
->ops
->ioctl(NULL
,
861 VFIO_CHECK_EXTENSION
,
863 module_put(driver
->ops
->owner
);
867 mutex_unlock(&vfio
.iommu_drivers_lock
);
869 ret
= driver
->ops
->ioctl(container
->iommu_data
,
870 VFIO_CHECK_EXTENSION
, arg
);
873 up_read(&container
->group_lock
);
878 /* hold write lock on container->group_lock */
879 static int __vfio_container_attach_groups(struct vfio_container
*container
,
880 struct vfio_iommu_driver
*driver
,
883 struct vfio_group
*group
;
886 list_for_each_entry(group
, &container
->group_list
, container_next
) {
887 ret
= driver
->ops
->attach_group(data
, group
->iommu_group
);
895 list_for_each_entry_continue_reverse(group
, &container
->group_list
,
897 driver
->ops
->detach_group(data
, group
->iommu_group
);
903 static long vfio_ioctl_set_iommu(struct vfio_container
*container
,
906 struct vfio_iommu_driver
*driver
;
909 down_write(&container
->group_lock
);
912 * The container is designed to be an unprivileged interface while
913 * the group can be assigned to specific users. Therefore, only by
914 * adding a group to a container does the user get the privilege of
915 * enabling the iommu, which may allocate finite resources. There
916 * is no unset_iommu, but by removing all the groups from a container,
917 * the container is deprivileged and returns to an unset state.
919 if (list_empty(&container
->group_list
) || container
->iommu_driver
) {
920 up_write(&container
->group_lock
);
924 mutex_lock(&vfio
.iommu_drivers_lock
);
925 list_for_each_entry(driver
, &vfio
.iommu_drivers_list
, vfio_next
) {
928 if (!try_module_get(driver
->ops
->owner
))
932 * The arg magic for SET_IOMMU is the same as CHECK_EXTENSION,
933 * so test which iommu driver reported support for this
934 * extension and call open on them. We also pass them the
935 * magic, allowing a single driver to support multiple
936 * interfaces if they'd like.
938 if (driver
->ops
->ioctl(NULL
, VFIO_CHECK_EXTENSION
, arg
) <= 0) {
939 module_put(driver
->ops
->owner
);
943 /* module reference holds the driver we're working on */
944 mutex_unlock(&vfio
.iommu_drivers_lock
);
946 data
= driver
->ops
->open(arg
);
949 module_put(driver
->ops
->owner
);
950 goto skip_drivers_unlock
;
953 ret
= __vfio_container_attach_groups(container
, driver
, data
);
955 container
->iommu_driver
= driver
;
956 container
->iommu_data
= data
;
958 driver
->ops
->release(data
);
959 module_put(driver
->ops
->owner
);
962 goto skip_drivers_unlock
;
965 mutex_unlock(&vfio
.iommu_drivers_lock
);
967 up_write(&container
->group_lock
);
972 static long vfio_fops_unl_ioctl(struct file
*filep
,
973 unsigned int cmd
, unsigned long arg
)
975 struct vfio_container
*container
= filep
->private_data
;
976 struct vfio_iommu_driver
*driver
;
984 case VFIO_GET_API_VERSION
:
985 ret
= VFIO_API_VERSION
;
987 case VFIO_CHECK_EXTENSION
:
988 ret
= vfio_ioctl_check_extension(container
, arg
);
991 ret
= vfio_ioctl_set_iommu(container
, arg
);
994 down_read(&container
->group_lock
);
996 driver
= container
->iommu_driver
;
997 data
= container
->iommu_data
;
999 if (driver
) /* passthrough all unrecognized ioctls */
1000 ret
= driver
->ops
->ioctl(data
, cmd
, arg
);
1002 up_read(&container
->group_lock
);
1008 #ifdef CONFIG_COMPAT
1009 static long vfio_fops_compat_ioctl(struct file
*filep
,
1010 unsigned int cmd
, unsigned long arg
)
1012 arg
= (unsigned long)compat_ptr(arg
);
1013 return vfio_fops_unl_ioctl(filep
, cmd
, arg
);
1015 #endif /* CONFIG_COMPAT */
1017 static int vfio_fops_open(struct inode
*inode
, struct file
*filep
)
1019 struct vfio_container
*container
;
1021 container
= kzalloc(sizeof(*container
), GFP_KERNEL
);
1025 INIT_LIST_HEAD(&container
->group_list
);
1026 init_rwsem(&container
->group_lock
);
1027 kref_init(&container
->kref
);
1029 filep
->private_data
= container
;
1034 static int vfio_fops_release(struct inode
*inode
, struct file
*filep
)
1036 struct vfio_container
*container
= filep
->private_data
;
1038 filep
->private_data
= NULL
;
1040 vfio_container_put(container
);
1046 * Once an iommu driver is set, we optionally pass read/write/mmap
1047 * on to the driver, allowing management interfaces beyond ioctl.
1049 static ssize_t
vfio_fops_read(struct file
*filep
, char __user
*buf
,
1050 size_t count
, loff_t
*ppos
)
1052 struct vfio_container
*container
= filep
->private_data
;
1053 struct vfio_iommu_driver
*driver
;
1054 ssize_t ret
= -EINVAL
;
1056 down_read(&container
->group_lock
);
1058 driver
= container
->iommu_driver
;
1059 if (likely(driver
&& driver
->ops
->read
))
1060 ret
= driver
->ops
->read(container
->iommu_data
,
1063 up_read(&container
->group_lock
);
1068 static ssize_t
vfio_fops_write(struct file
*filep
, const char __user
*buf
,
1069 size_t count
, loff_t
*ppos
)
1071 struct vfio_container
*container
= filep
->private_data
;
1072 struct vfio_iommu_driver
*driver
;
1073 ssize_t ret
= -EINVAL
;
1075 down_read(&container
->group_lock
);
1077 driver
= container
->iommu_driver
;
1078 if (likely(driver
&& driver
->ops
->write
))
1079 ret
= driver
->ops
->write(container
->iommu_data
,
1082 up_read(&container
->group_lock
);
1087 static int vfio_fops_mmap(struct file
*filep
, struct vm_area_struct
*vma
)
1089 struct vfio_container
*container
= filep
->private_data
;
1090 struct vfio_iommu_driver
*driver
;
1093 down_read(&container
->group_lock
);
1095 driver
= container
->iommu_driver
;
1096 if (likely(driver
&& driver
->ops
->mmap
))
1097 ret
= driver
->ops
->mmap(container
->iommu_data
, vma
);
1099 up_read(&container
->group_lock
);
1104 static const struct file_operations vfio_fops
= {
1105 .owner
= THIS_MODULE
,
1106 .open
= vfio_fops_open
,
1107 .release
= vfio_fops_release
,
1108 .read
= vfio_fops_read
,
1109 .write
= vfio_fops_write
,
1110 .unlocked_ioctl
= vfio_fops_unl_ioctl
,
1111 #ifdef CONFIG_COMPAT
1112 .compat_ioctl
= vfio_fops_compat_ioctl
,
1114 .mmap
= vfio_fops_mmap
,
1118 * VFIO Group fd, /dev/vfio/$GROUP
1120 static void __vfio_group_unset_container(struct vfio_group
*group
)
1122 struct vfio_container
*container
= group
->container
;
1123 struct vfio_iommu_driver
*driver
;
1125 down_write(&container
->group_lock
);
1127 driver
= container
->iommu_driver
;
1129 driver
->ops
->detach_group(container
->iommu_data
,
1130 group
->iommu_group
);
1132 group
->container
= NULL
;
1133 list_del(&group
->container_next
);
1135 /* Detaching the last group deprivileges a container, remove iommu */
1136 if (driver
&& list_empty(&container
->group_list
)) {
1137 driver
->ops
->release(container
->iommu_data
);
1138 module_put(driver
->ops
->owner
);
1139 container
->iommu_driver
= NULL
;
1140 container
->iommu_data
= NULL
;
1143 up_write(&container
->group_lock
);
1145 vfio_container_put(container
);
1149 * VFIO_GROUP_UNSET_CONTAINER should fail if there are other users or
1150 * if there was no container to unset. Since the ioctl is called on
1151 * the group, we know that still exists, therefore the only valid
1152 * transition here is 1->0.
1154 static int vfio_group_unset_container(struct vfio_group
*group
)
1156 int users
= atomic_cmpxchg(&group
->container_users
, 1, 0);
1163 __vfio_group_unset_container(group
);
1169 * When removing container users, anything that removes the last user
1170 * implicitly removes the group from the container. That is, if the
1171 * group file descriptor is closed, as well as any device file descriptors,
1172 * the group is free.
1174 static void vfio_group_try_dissolve_container(struct vfio_group
*group
)
1176 if (0 == atomic_dec_if_positive(&group
->container_users
))
1177 __vfio_group_unset_container(group
);
1180 static int vfio_group_set_container(struct vfio_group
*group
, int container_fd
)
1183 struct vfio_container
*container
;
1184 struct vfio_iommu_driver
*driver
;
1187 if (atomic_read(&group
->container_users
))
1190 f
= fdget(container_fd
);
1194 /* Sanity check, is this really our fd? */
1195 if (f
.file
->f_op
!= &vfio_fops
) {
1200 container
= f
.file
->private_data
;
1201 WARN_ON(!container
); /* fget ensures we don't race vfio_release */
1203 down_write(&container
->group_lock
);
1205 driver
= container
->iommu_driver
;
1207 ret
= driver
->ops
->attach_group(container
->iommu_data
,
1208 group
->iommu_group
);
1213 group
->container
= container
;
1214 list_add(&group
->container_next
, &container
->group_list
);
1216 /* Get a reference on the container and mark a user within the group */
1217 vfio_container_get(container
);
1218 atomic_inc(&group
->container_users
);
1221 up_write(&container
->group_lock
);
1226 static bool vfio_group_viable(struct vfio_group
*group
)
1228 return (iommu_group_for_each_dev(group
->iommu_group
,
1229 group
, vfio_dev_viable
) == 0);
1232 static const struct file_operations vfio_device_fops
;
1234 static int vfio_group_get_device_fd(struct vfio_group
*group
, char *buf
)
1236 struct vfio_device
*device
;
1240 if (0 == atomic_read(&group
->container_users
) ||
1241 !group
->container
->iommu_driver
|| !vfio_group_viable(group
))
1244 device
= vfio_device_get_from_name(group
, buf
);
1248 ret
= device
->ops
->open(device
->device_data
);
1250 vfio_device_put(device
);
1255 * We can't use anon_inode_getfd() because we need to modify
1256 * the f_mode flags directly to allow more than just ioctls
1258 ret
= get_unused_fd_flags(O_CLOEXEC
);
1260 device
->ops
->release(device
->device_data
);
1261 vfio_device_put(device
);
1265 filep
= anon_inode_getfile("[vfio-device]", &vfio_device_fops
,
1267 if (IS_ERR(filep
)) {
1269 ret
= PTR_ERR(filep
);
1270 device
->ops
->release(device
->device_data
);
1271 vfio_device_put(device
);
1276 * TODO: add an anon_inode interface to do this.
1277 * Appears to be missing by lack of need rather than
1278 * explicitly prevented. Now there's need.
1280 filep
->f_mode
|= (FMODE_LSEEK
| FMODE_PREAD
| FMODE_PWRITE
);
1282 atomic_inc(&group
->container_users
);
1284 fd_install(ret
, filep
);
1289 static long vfio_group_fops_unl_ioctl(struct file
*filep
,
1290 unsigned int cmd
, unsigned long arg
)
1292 struct vfio_group
*group
= filep
->private_data
;
1296 case VFIO_GROUP_GET_STATUS
:
1298 struct vfio_group_status status
;
1299 unsigned long minsz
;
1301 minsz
= offsetofend(struct vfio_group_status
, flags
);
1303 if (copy_from_user(&status
, (void __user
*)arg
, minsz
))
1306 if (status
.argsz
< minsz
)
1311 if (vfio_group_viable(group
))
1312 status
.flags
|= VFIO_GROUP_FLAGS_VIABLE
;
1314 if (group
->container
)
1315 status
.flags
|= VFIO_GROUP_FLAGS_CONTAINER_SET
;
1317 if (copy_to_user((void __user
*)arg
, &status
, minsz
))
1323 case VFIO_GROUP_SET_CONTAINER
:
1327 if (get_user(fd
, (int __user
*)arg
))
1333 ret
= vfio_group_set_container(group
, fd
);
1336 case VFIO_GROUP_UNSET_CONTAINER
:
1337 ret
= vfio_group_unset_container(group
);
1339 case VFIO_GROUP_GET_DEVICE_FD
:
1343 buf
= strndup_user((const char __user
*)arg
, PAGE_SIZE
);
1345 return PTR_ERR(buf
);
1347 ret
= vfio_group_get_device_fd(group
, buf
);
1356 #ifdef CONFIG_COMPAT
1357 static long vfio_group_fops_compat_ioctl(struct file
*filep
,
1358 unsigned int cmd
, unsigned long arg
)
1360 arg
= (unsigned long)compat_ptr(arg
);
1361 return vfio_group_fops_unl_ioctl(filep
, cmd
, arg
);
1363 #endif /* CONFIG_COMPAT */
1365 static int vfio_group_fops_open(struct inode
*inode
, struct file
*filep
)
1367 struct vfio_group
*group
;
1370 group
= vfio_group_get_from_minor(iminor(inode
));
1374 /* Do we need multiple instances of the group open? Seems not. */
1375 opened
= atomic_cmpxchg(&group
->opened
, 0, 1);
1377 vfio_group_put(group
);
1381 /* Is something still in use from a previous open? */
1382 if (group
->container
) {
1383 atomic_dec(&group
->opened
);
1384 vfio_group_put(group
);
1388 filep
->private_data
= group
;
1393 static int vfio_group_fops_release(struct inode
*inode
, struct file
*filep
)
1395 struct vfio_group
*group
= filep
->private_data
;
1397 filep
->private_data
= NULL
;
1399 vfio_group_try_dissolve_container(group
);
1401 atomic_dec(&group
->opened
);
1403 vfio_group_put(group
);
1408 static const struct file_operations vfio_group_fops
= {
1409 .owner
= THIS_MODULE
,
1410 .unlocked_ioctl
= vfio_group_fops_unl_ioctl
,
1411 #ifdef CONFIG_COMPAT
1412 .compat_ioctl
= vfio_group_fops_compat_ioctl
,
1414 .open
= vfio_group_fops_open
,
1415 .release
= vfio_group_fops_release
,
1421 static int vfio_device_fops_release(struct inode
*inode
, struct file
*filep
)
1423 struct vfio_device
*device
= filep
->private_data
;
1425 device
->ops
->release(device
->device_data
);
1427 vfio_group_try_dissolve_container(device
->group
);
1429 vfio_device_put(device
);
1434 static long vfio_device_fops_unl_ioctl(struct file
*filep
,
1435 unsigned int cmd
, unsigned long arg
)
1437 struct vfio_device
*device
= filep
->private_data
;
1439 if (unlikely(!device
->ops
->ioctl
))
1442 return device
->ops
->ioctl(device
->device_data
, cmd
, arg
);
1445 static ssize_t
vfio_device_fops_read(struct file
*filep
, char __user
*buf
,
1446 size_t count
, loff_t
*ppos
)
1448 struct vfio_device
*device
= filep
->private_data
;
1450 if (unlikely(!device
->ops
->read
))
1453 return device
->ops
->read(device
->device_data
, buf
, count
, ppos
);
1456 static ssize_t
vfio_device_fops_write(struct file
*filep
,
1457 const char __user
*buf
,
1458 size_t count
, loff_t
*ppos
)
1460 struct vfio_device
*device
= filep
->private_data
;
1462 if (unlikely(!device
->ops
->write
))
1465 return device
->ops
->write(device
->device_data
, buf
, count
, ppos
);
1468 static int vfio_device_fops_mmap(struct file
*filep
, struct vm_area_struct
*vma
)
1470 struct vfio_device
*device
= filep
->private_data
;
1472 if (unlikely(!device
->ops
->mmap
))
1475 return device
->ops
->mmap(device
->device_data
, vma
);
1478 #ifdef CONFIG_COMPAT
1479 static long vfio_device_fops_compat_ioctl(struct file
*filep
,
1480 unsigned int cmd
, unsigned long arg
)
1482 arg
= (unsigned long)compat_ptr(arg
);
1483 return vfio_device_fops_unl_ioctl(filep
, cmd
, arg
);
1485 #endif /* CONFIG_COMPAT */
1487 static const struct file_operations vfio_device_fops
= {
1488 .owner
= THIS_MODULE
,
1489 .release
= vfio_device_fops_release
,
1490 .read
= vfio_device_fops_read
,
1491 .write
= vfio_device_fops_write
,
1492 .unlocked_ioctl
= vfio_device_fops_unl_ioctl
,
1493 #ifdef CONFIG_COMPAT
1494 .compat_ioctl
= vfio_device_fops_compat_ioctl
,
1496 .mmap
= vfio_device_fops_mmap
,
1500 * External user API, exported by symbols to be linked dynamically.
1502 * The protocol includes:
1503 * 1. do normal VFIO init operation:
1504 * - opening a new container;
1505 * - attaching group(s) to it;
1506 * - setting an IOMMU driver for a container.
1507 * When IOMMU is set for a container, all groups in it are
1508 * considered ready to use by an external user.
1510 * 2. User space passes a group fd to an external user.
1511 * The external user calls vfio_group_get_external_user()
1513 * - the group is initialized;
1514 * - IOMMU is set for it.
1515 * If both checks passed, vfio_group_get_external_user()
1516 * increments the container user counter to prevent
1517 * the VFIO group from disposal before KVM exits.
1519 * 3. The external user calls vfio_external_user_iommu_id()
1520 * to know an IOMMU ID.
1522 * 4. When the external KVM finishes, it calls
1523 * vfio_group_put_external_user() to release the VFIO group.
1524 * This call decrements the container user counter.
1526 struct vfio_group
*vfio_group_get_external_user(struct file
*filep
)
1528 struct vfio_group
*group
= filep
->private_data
;
1530 if (filep
->f_op
!= &vfio_group_fops
)
1531 return ERR_PTR(-EINVAL
);
1533 if (!atomic_inc_not_zero(&group
->container_users
))
1534 return ERR_PTR(-EINVAL
);
1536 if (!group
->container
->iommu_driver
||
1537 !vfio_group_viable(group
)) {
1538 atomic_dec(&group
->container_users
);
1539 return ERR_PTR(-EINVAL
);
1542 vfio_group_get(group
);
1546 EXPORT_SYMBOL_GPL(vfio_group_get_external_user
);
1548 void vfio_group_put_external_user(struct vfio_group
*group
)
1550 vfio_group_put(group
);
1551 vfio_group_try_dissolve_container(group
);
1553 EXPORT_SYMBOL_GPL(vfio_group_put_external_user
);
1555 int vfio_external_user_iommu_id(struct vfio_group
*group
)
1557 return iommu_group_id(group
->iommu_group
);
1559 EXPORT_SYMBOL_GPL(vfio_external_user_iommu_id
);
1561 long vfio_external_check_extension(struct vfio_group
*group
, unsigned long arg
)
1563 return vfio_ioctl_check_extension(group
->container
, arg
);
1565 EXPORT_SYMBOL_GPL(vfio_external_check_extension
);
1568 * Module/class support
1570 static char *vfio_devnode(struct device
*dev
, umode_t
*mode
)
1572 return kasprintf(GFP_KERNEL
, "vfio/%s", dev_name(dev
));
1575 static struct miscdevice vfio_dev
= {
1576 .minor
= VFIO_MINOR
,
1579 .nodename
= "vfio/vfio",
1580 .mode
= S_IRUGO
| S_IWUGO
,
1583 static int __init
vfio_init(void)
1587 idr_init(&vfio
.group_idr
);
1588 mutex_init(&vfio
.group_lock
);
1589 mutex_init(&vfio
.iommu_drivers_lock
);
1590 INIT_LIST_HEAD(&vfio
.group_list
);
1591 INIT_LIST_HEAD(&vfio
.iommu_drivers_list
);
1592 init_waitqueue_head(&vfio
.release_q
);
1594 ret
= misc_register(&vfio_dev
);
1596 pr_err("vfio: misc device register failed\n");
1600 /* /dev/vfio/$GROUP */
1601 vfio
.class = class_create(THIS_MODULE
, "vfio");
1602 if (IS_ERR(vfio
.class)) {
1603 ret
= PTR_ERR(vfio
.class);
1607 vfio
.class->devnode
= vfio_devnode
;
1609 ret
= alloc_chrdev_region(&vfio
.group_devt
, 0, MINORMASK
, "vfio");
1611 goto err_alloc_chrdev
;
1613 cdev_init(&vfio
.group_cdev
, &vfio_group_fops
);
1614 ret
= cdev_add(&vfio
.group_cdev
, vfio
.group_devt
, MINORMASK
);
1618 pr_info(DRIVER_DESC
" version: " DRIVER_VERSION
"\n");
1621 * Attempt to load known iommu-drivers. This gives us a working
1622 * environment without the user needing to explicitly load iommu
1625 request_module_nowait("vfio_iommu_type1");
1626 request_module_nowait("vfio_iommu_spapr_tce");
1631 unregister_chrdev_region(vfio
.group_devt
, MINORMASK
);
1633 class_destroy(vfio
.class);
1636 misc_deregister(&vfio_dev
);
1640 static void __exit
vfio_cleanup(void)
1642 WARN_ON(!list_empty(&vfio
.group_list
));
1644 idr_destroy(&vfio
.group_idr
);
1645 cdev_del(&vfio
.group_cdev
);
1646 unregister_chrdev_region(vfio
.group_devt
, MINORMASK
);
1647 class_destroy(vfio
.class);
1649 misc_deregister(&vfio_dev
);
1652 module_init(vfio_init
);
1653 module_exit(vfio_cleanup
);
1655 MODULE_VERSION(DRIVER_VERSION
);
1656 MODULE_LICENSE("GPL v2");
1657 MODULE_AUTHOR(DRIVER_AUTHOR
);
1658 MODULE_DESCRIPTION(DRIVER_DESC
);
1659 MODULE_ALIAS_MISCDEV(VFIO_MINOR
);
1660 MODULE_ALIAS("devname:vfio/vfio");