1 // SPDX-License-Identifier: GPL-2.0-only
5 * Copyright (C) 2012 Red Hat, Inc. All rights reserved.
6 * Author: Alex Williamson <alex.williamson@redhat.com>
8 * Derived from original vfio:
9 * Copyright 2010 Cisco Systems, Inc. All rights reserved.
10 * Author: Tom Lyon, pugs@cisco.com
13 #include <linux/cdev.h>
14 #include <linux/compat.h>
15 #include <linux/device.h>
16 #include <linux/file.h>
17 #include <linux/anon_inodes.h>
19 #include <linux/idr.h>
20 #include <linux/iommu.h>
21 #include <linux/list.h>
22 #include <linux/miscdevice.h>
23 #include <linux/module.h>
24 #include <linux/mutex.h>
25 #include <linux/pci.h>
26 #include <linux/rwsem.h>
27 #include <linux/sched.h>
28 #include <linux/slab.h>
29 #include <linux/stat.h>
30 #include <linux/string.h>
31 #include <linux/uaccess.h>
32 #include <linux/vfio.h>
33 #include <linux/wait.h>
34 #include <linux/sched/signal.h>
36 #define DRIVER_VERSION "0.3"
37 #define DRIVER_AUTHOR "Alex Williamson <alex.williamson@redhat.com>"
38 #define DRIVER_DESC "VFIO - User Level meta-driver"
42 struct list_head iommu_drivers_list
;
43 struct mutex iommu_drivers_lock
;
44 struct list_head group_list
;
46 struct mutex group_lock
;
47 struct cdev group_cdev
;
49 wait_queue_head_t release_q
;
52 struct vfio_iommu_driver
{
53 const struct vfio_iommu_driver_ops
*ops
;
54 struct list_head vfio_next
;
57 struct vfio_container
{
59 struct list_head group_list
;
60 struct rw_semaphore group_lock
;
61 struct vfio_iommu_driver
*iommu_driver
;
66 struct vfio_unbound_dev
{
68 struct list_head unbound_next
;
74 atomic_t container_users
;
75 struct iommu_group
*iommu_group
;
76 struct vfio_container
*container
;
77 struct list_head device_list
;
78 struct mutex device_lock
;
80 struct notifier_block nb
;
81 struct list_head vfio_next
;
82 struct list_head container_next
;
83 struct list_head unbound_list
;
84 struct mutex unbound_lock
;
86 wait_queue_head_t container_q
;
89 struct blocking_notifier_head notifier
;
95 const struct vfio_device_ops
*ops
;
96 struct vfio_group
*group
;
97 struct list_head group_next
;
101 #ifdef CONFIG_VFIO_NOIOMMU
102 static bool noiommu __read_mostly
;
103 module_param_named(enable_unsafe_noiommu_mode
,
104 noiommu
, bool, S_IRUGO
| S_IWUSR
);
105 MODULE_PARM_DESC(enable_unsafe_noiommu_mode
, "Enable UNSAFE, no-IOMMU mode. This mode provides no device isolation, no DMA translation, no host kernel protection, cannot be used for device assignment to virtual machines, requires RAWIO permissions, and will taint the kernel. If you do not know what this is for, step away. (default: false)");
109 * vfio_iommu_group_{get,put} are only intended for VFIO bus driver probe
110 * and remove functions, any use cases other than acquiring the first
111 * reference for the purpose of calling vfio_add_group_dev() or removing
112 * that symmetric reference after vfio_del_group_dev() should use the raw
113 * iommu_group_{get,put} functions. In particular, vfio_iommu_group_put()
114 * removes the device from the dummy group and cannot be nested.
116 struct iommu_group
*vfio_iommu_group_get(struct device
*dev
)
118 struct iommu_group
*group
;
119 int __maybe_unused ret
;
121 group
= iommu_group_get(dev
);
123 #ifdef CONFIG_VFIO_NOIOMMU
125 * With noiommu enabled, an IOMMU group will be created for a device
126 * that doesn't already have one and doesn't have an iommu_ops on their
127 * bus. We set iommudata simply to be able to identify these groups
128 * as special use and for reclamation later.
130 if (group
|| !noiommu
|| iommu_present(dev
->bus
))
133 group
= iommu_group_alloc();
137 iommu_group_set_name(group
, "vfio-noiommu");
138 iommu_group_set_iommudata(group
, &noiommu
, NULL
);
139 ret
= iommu_group_add_device(group
, dev
);
141 iommu_group_put(group
);
146 * Where to taint? At this point we've added an IOMMU group for a
147 * device that is not backed by iommu_ops, therefore any iommu_
148 * callback using iommu_ops can legitimately Oops. So, while we may
149 * be about to give a DMA capable device to a user without IOMMU
150 * protection, which is clearly taint-worthy, let's go ahead and do
153 add_taint(TAINT_USER
, LOCKDEP_STILL_OK
);
154 dev_warn(dev
, "Adding kernel taint for vfio-noiommu group on device\n");
159 EXPORT_SYMBOL_GPL(vfio_iommu_group_get
);
161 void vfio_iommu_group_put(struct iommu_group
*group
, struct device
*dev
)
163 #ifdef CONFIG_VFIO_NOIOMMU
164 if (iommu_group_get_iommudata(group
) == &noiommu
)
165 iommu_group_remove_device(dev
);
168 iommu_group_put(group
);
170 EXPORT_SYMBOL_GPL(vfio_iommu_group_put
);
172 #ifdef CONFIG_VFIO_NOIOMMU
173 static void *vfio_noiommu_open(unsigned long arg
)
175 if (arg
!= VFIO_NOIOMMU_IOMMU
)
176 return ERR_PTR(-EINVAL
);
177 if (!capable(CAP_SYS_RAWIO
))
178 return ERR_PTR(-EPERM
);
183 static void vfio_noiommu_release(void *iommu_data
)
187 static long vfio_noiommu_ioctl(void *iommu_data
,
188 unsigned int cmd
, unsigned long arg
)
190 if (cmd
== VFIO_CHECK_EXTENSION
)
191 return noiommu
&& (arg
== VFIO_NOIOMMU_IOMMU
) ? 1 : 0;
196 static int vfio_noiommu_attach_group(void *iommu_data
,
197 struct iommu_group
*iommu_group
)
199 return iommu_group_get_iommudata(iommu_group
) == &noiommu
? 0 : -EINVAL
;
202 static void vfio_noiommu_detach_group(void *iommu_data
,
203 struct iommu_group
*iommu_group
)
207 static const struct vfio_iommu_driver_ops vfio_noiommu_ops
= {
208 .name
= "vfio-noiommu",
209 .owner
= THIS_MODULE
,
210 .open
= vfio_noiommu_open
,
211 .release
= vfio_noiommu_release
,
212 .ioctl
= vfio_noiommu_ioctl
,
213 .attach_group
= vfio_noiommu_attach_group
,
214 .detach_group
= vfio_noiommu_detach_group
,
220 * IOMMU driver registration
222 int vfio_register_iommu_driver(const struct vfio_iommu_driver_ops
*ops
)
224 struct vfio_iommu_driver
*driver
, *tmp
;
226 driver
= kzalloc(sizeof(*driver
), GFP_KERNEL
);
232 mutex_lock(&vfio
.iommu_drivers_lock
);
234 /* Check for duplicates */
235 list_for_each_entry(tmp
, &vfio
.iommu_drivers_list
, vfio_next
) {
236 if (tmp
->ops
== ops
) {
237 mutex_unlock(&vfio
.iommu_drivers_lock
);
243 list_add(&driver
->vfio_next
, &vfio
.iommu_drivers_list
);
245 mutex_unlock(&vfio
.iommu_drivers_lock
);
249 EXPORT_SYMBOL_GPL(vfio_register_iommu_driver
);
251 void vfio_unregister_iommu_driver(const struct vfio_iommu_driver_ops
*ops
)
253 struct vfio_iommu_driver
*driver
;
255 mutex_lock(&vfio
.iommu_drivers_lock
);
256 list_for_each_entry(driver
, &vfio
.iommu_drivers_list
, vfio_next
) {
257 if (driver
->ops
== ops
) {
258 list_del(&driver
->vfio_next
);
259 mutex_unlock(&vfio
.iommu_drivers_lock
);
264 mutex_unlock(&vfio
.iommu_drivers_lock
);
266 EXPORT_SYMBOL_GPL(vfio_unregister_iommu_driver
);
269 * Group minor allocation/free - both called with vfio.group_lock held
271 static int vfio_alloc_group_minor(struct vfio_group
*group
)
273 return idr_alloc(&vfio
.group_idr
, group
, 0, MINORMASK
+ 1, GFP_KERNEL
);
276 static void vfio_free_group_minor(int minor
)
278 idr_remove(&vfio
.group_idr
, minor
);
281 static int vfio_iommu_group_notifier(struct notifier_block
*nb
,
282 unsigned long action
, void *data
);
283 static void vfio_group_get(struct vfio_group
*group
);
286 * Container objects - containers are created when /dev/vfio/vfio is
287 * opened, but their lifecycle extends until the last user is done, so
288 * it's freed via kref. Must support container/group/device being
289 * closed in any order.
291 static void vfio_container_get(struct vfio_container
*container
)
293 kref_get(&container
->kref
);
296 static void vfio_container_release(struct kref
*kref
)
298 struct vfio_container
*container
;
299 container
= container_of(kref
, struct vfio_container
, kref
);
304 static void vfio_container_put(struct vfio_container
*container
)
306 kref_put(&container
->kref
, vfio_container_release
);
309 static void vfio_group_unlock_and_free(struct vfio_group
*group
)
311 mutex_unlock(&vfio
.group_lock
);
313 * Unregister outside of lock. A spurious callback is harmless now
314 * that the group is no longer in vfio.group_list.
316 iommu_group_unregister_notifier(group
->iommu_group
, &group
->nb
);
321 * Group objects - create, release, get, put, search
323 static struct vfio_group
*vfio_create_group(struct iommu_group
*iommu_group
)
325 struct vfio_group
*group
, *tmp
;
329 group
= kzalloc(sizeof(*group
), GFP_KERNEL
);
331 return ERR_PTR(-ENOMEM
);
333 kref_init(&group
->kref
);
334 INIT_LIST_HEAD(&group
->device_list
);
335 mutex_init(&group
->device_lock
);
336 INIT_LIST_HEAD(&group
->unbound_list
);
337 mutex_init(&group
->unbound_lock
);
338 atomic_set(&group
->container_users
, 0);
339 atomic_set(&group
->opened
, 0);
340 init_waitqueue_head(&group
->container_q
);
341 group
->iommu_group
= iommu_group
;
342 #ifdef CONFIG_VFIO_NOIOMMU
343 group
->noiommu
= (iommu_group_get_iommudata(iommu_group
) == &noiommu
);
345 BLOCKING_INIT_NOTIFIER_HEAD(&group
->notifier
);
347 group
->nb
.notifier_call
= vfio_iommu_group_notifier
;
350 * blocking notifiers acquire a rwsem around registering and hold
351 * it around callback. Therefore, need to register outside of
352 * vfio.group_lock to avoid A-B/B-A contention. Our callback won't
353 * do anything unless it can find the group in vfio.group_list, so
354 * no harm in registering early.
356 ret
= iommu_group_register_notifier(iommu_group
, &group
->nb
);
362 mutex_lock(&vfio
.group_lock
);
364 /* Did we race creating this group? */
365 list_for_each_entry(tmp
, &vfio
.group_list
, vfio_next
) {
366 if (tmp
->iommu_group
== iommu_group
) {
368 vfio_group_unlock_and_free(group
);
373 minor
= vfio_alloc_group_minor(group
);
375 vfio_group_unlock_and_free(group
);
376 return ERR_PTR(minor
);
379 dev
= device_create(vfio
.class, NULL
,
380 MKDEV(MAJOR(vfio
.group_devt
), minor
),
381 group
, "%s%d", group
->noiommu
? "noiommu-" : "",
382 iommu_group_id(iommu_group
));
384 vfio_free_group_minor(minor
);
385 vfio_group_unlock_and_free(group
);
386 return ERR_CAST(dev
);
389 group
->minor
= minor
;
392 list_add(&group
->vfio_next
, &vfio
.group_list
);
394 mutex_unlock(&vfio
.group_lock
);
399 /* called with vfio.group_lock held */
400 static void vfio_group_release(struct kref
*kref
)
402 struct vfio_group
*group
= container_of(kref
, struct vfio_group
, kref
);
403 struct vfio_unbound_dev
*unbound
, *tmp
;
404 struct iommu_group
*iommu_group
= group
->iommu_group
;
406 WARN_ON(!list_empty(&group
->device_list
));
407 WARN_ON(group
->notifier
.head
);
409 list_for_each_entry_safe(unbound
, tmp
,
410 &group
->unbound_list
, unbound_next
) {
411 list_del(&unbound
->unbound_next
);
415 device_destroy(vfio
.class, MKDEV(MAJOR(vfio
.group_devt
), group
->minor
));
416 list_del(&group
->vfio_next
);
417 vfio_free_group_minor(group
->minor
);
418 vfio_group_unlock_and_free(group
);
419 iommu_group_put(iommu_group
);
422 static void vfio_group_put(struct vfio_group
*group
)
424 kref_put_mutex(&group
->kref
, vfio_group_release
, &vfio
.group_lock
);
427 struct vfio_group_put_work
{
428 struct work_struct work
;
429 struct vfio_group
*group
;
432 static void vfio_group_put_bg(struct work_struct
*work
)
434 struct vfio_group_put_work
*do_work
;
436 do_work
= container_of(work
, struct vfio_group_put_work
, work
);
438 vfio_group_put(do_work
->group
);
442 static void vfio_group_schedule_put(struct vfio_group
*group
)
444 struct vfio_group_put_work
*do_work
;
446 do_work
= kmalloc(sizeof(*do_work
), GFP_KERNEL
);
447 if (WARN_ON(!do_work
))
450 INIT_WORK(&do_work
->work
, vfio_group_put_bg
);
451 do_work
->group
= group
;
452 schedule_work(&do_work
->work
);
455 /* Assume group_lock or group reference is held */
456 static void vfio_group_get(struct vfio_group
*group
)
458 kref_get(&group
->kref
);
462 * Not really a try as we will sleep for mutex, but we need to make
463 * sure the group pointer is valid under lock and get a reference.
465 static struct vfio_group
*vfio_group_try_get(struct vfio_group
*group
)
467 struct vfio_group
*target
= group
;
469 mutex_lock(&vfio
.group_lock
);
470 list_for_each_entry(group
, &vfio
.group_list
, vfio_next
) {
471 if (group
== target
) {
472 vfio_group_get(group
);
473 mutex_unlock(&vfio
.group_lock
);
477 mutex_unlock(&vfio
.group_lock
);
483 struct vfio_group
*vfio_group_get_from_iommu(struct iommu_group
*iommu_group
)
485 struct vfio_group
*group
;
487 mutex_lock(&vfio
.group_lock
);
488 list_for_each_entry(group
, &vfio
.group_list
, vfio_next
) {
489 if (group
->iommu_group
== iommu_group
) {
490 vfio_group_get(group
);
491 mutex_unlock(&vfio
.group_lock
);
495 mutex_unlock(&vfio
.group_lock
);
500 static struct vfio_group
*vfio_group_get_from_minor(int minor
)
502 struct vfio_group
*group
;
504 mutex_lock(&vfio
.group_lock
);
505 group
= idr_find(&vfio
.group_idr
, minor
);
507 mutex_unlock(&vfio
.group_lock
);
510 vfio_group_get(group
);
511 mutex_unlock(&vfio
.group_lock
);
516 static struct vfio_group
*vfio_group_get_from_dev(struct device
*dev
)
518 struct iommu_group
*iommu_group
;
519 struct vfio_group
*group
;
521 iommu_group
= iommu_group_get(dev
);
525 group
= vfio_group_get_from_iommu(iommu_group
);
526 iommu_group_put(iommu_group
);
532 * Device objects - create, release, get, put, search
535 struct vfio_device
*vfio_group_create_device(struct vfio_group
*group
,
537 const struct vfio_device_ops
*ops
,
540 struct vfio_device
*device
;
542 device
= kzalloc(sizeof(*device
), GFP_KERNEL
);
544 return ERR_PTR(-ENOMEM
);
546 kref_init(&device
->kref
);
548 device
->group
= group
;
550 device
->device_data
= device_data
;
551 dev_set_drvdata(dev
, device
);
553 /* No need to get group_lock, caller has group reference */
554 vfio_group_get(group
);
556 mutex_lock(&group
->device_lock
);
557 list_add(&device
->group_next
, &group
->device_list
);
558 mutex_unlock(&group
->device_lock
);
563 static void vfio_device_release(struct kref
*kref
)
565 struct vfio_device
*device
= container_of(kref
,
566 struct vfio_device
, kref
);
567 struct vfio_group
*group
= device
->group
;
569 list_del(&device
->group_next
);
570 mutex_unlock(&group
->device_lock
);
572 dev_set_drvdata(device
->dev
, NULL
);
576 /* vfio_del_group_dev may be waiting for this device */
577 wake_up(&vfio
.release_q
);
580 /* Device reference always implies a group reference */
581 void vfio_device_put(struct vfio_device
*device
)
583 struct vfio_group
*group
= device
->group
;
584 kref_put_mutex(&device
->kref
, vfio_device_release
, &group
->device_lock
);
585 vfio_group_put(group
);
587 EXPORT_SYMBOL_GPL(vfio_device_put
);
589 static void vfio_device_get(struct vfio_device
*device
)
591 vfio_group_get(device
->group
);
592 kref_get(&device
->kref
);
595 static struct vfio_device
*vfio_group_get_device(struct vfio_group
*group
,
598 struct vfio_device
*device
;
600 mutex_lock(&group
->device_lock
);
601 list_for_each_entry(device
, &group
->device_list
, group_next
) {
602 if (device
->dev
== dev
) {
603 vfio_device_get(device
);
604 mutex_unlock(&group
->device_lock
);
608 mutex_unlock(&group
->device_lock
);
613 * Some drivers, like pci-stub, are only used to prevent other drivers from
614 * claiming a device and are therefore perfectly legitimate for a user owned
615 * group. The pci-stub driver has no dependencies on DMA or the IOVA mapping
616 * of the device, but it does prevent the user from having direct access to
617 * the device, which is useful in some circumstances.
619 * We also assume that we can include PCI interconnect devices, ie. bridges.
620 * IOMMU grouping on PCI necessitates that if we lack isolation on a bridge
621 * then all of the downstream devices will be part of the same IOMMU group as
622 * the bridge. Thus, if placing the bridge into the user owned IOVA space
623 * breaks anything, it only does so for user owned devices downstream. Note
624 * that error notification via MSI can be affected for platforms that handle
625 * MSI within the same IOVA space as DMA.
627 static const char * const vfio_driver_whitelist
[] = { "pci-stub" };
629 static bool vfio_dev_whitelisted(struct device
*dev
, struct device_driver
*drv
)
631 if (dev_is_pci(dev
)) {
632 struct pci_dev
*pdev
= to_pci_dev(dev
);
634 if (pdev
->hdr_type
!= PCI_HEADER_TYPE_NORMAL
)
638 return match_string(vfio_driver_whitelist
,
639 ARRAY_SIZE(vfio_driver_whitelist
),
644 * A vfio group is viable for use by userspace if all devices are in
645 * one of the following states:
647 * - bound to a vfio driver
648 * - bound to a whitelisted driver
649 * - a PCI interconnect device
651 * We use two methods to determine whether a device is bound to a vfio
652 * driver. The first is to test whether the device exists in the vfio
653 * group. The second is to test if the device exists on the group
654 * unbound_list, indicating it's in the middle of transitioning from
655 * a vfio driver to driver-less.
657 static int vfio_dev_viable(struct device
*dev
, void *data
)
659 struct vfio_group
*group
= data
;
660 struct vfio_device
*device
;
661 struct device_driver
*drv
= READ_ONCE(dev
->driver
);
662 struct vfio_unbound_dev
*unbound
;
665 mutex_lock(&group
->unbound_lock
);
666 list_for_each_entry(unbound
, &group
->unbound_list
, unbound_next
) {
667 if (dev
== unbound
->dev
) {
672 mutex_unlock(&group
->unbound_lock
);
674 if (!ret
|| !drv
|| vfio_dev_whitelisted(dev
, drv
))
677 device
= vfio_group_get_device(group
, dev
);
679 vfio_device_put(device
);
687 * Async device support
689 static int vfio_group_nb_add_dev(struct vfio_group
*group
, struct device
*dev
)
691 struct vfio_device
*device
;
693 /* Do we already know about it? We shouldn't */
694 device
= vfio_group_get_device(group
, dev
);
695 if (WARN_ON_ONCE(device
)) {
696 vfio_device_put(device
);
700 /* Nothing to do for idle groups */
701 if (!atomic_read(&group
->container_users
))
704 /* TODO Prevent device auto probing */
705 dev_WARN(dev
, "Device added to live group %d!\n",
706 iommu_group_id(group
->iommu_group
));
711 static int vfio_group_nb_verify(struct vfio_group
*group
, struct device
*dev
)
713 /* We don't care what happens when the group isn't in use */
714 if (!atomic_read(&group
->container_users
))
717 return vfio_dev_viable(dev
, group
);
720 static int vfio_iommu_group_notifier(struct notifier_block
*nb
,
721 unsigned long action
, void *data
)
723 struct vfio_group
*group
= container_of(nb
, struct vfio_group
, nb
);
724 struct device
*dev
= data
;
725 struct vfio_unbound_dev
*unbound
;
728 * Need to go through a group_lock lookup to get a reference or we
729 * risk racing a group being removed. Ignore spurious notifies.
731 group
= vfio_group_try_get(group
);
736 case IOMMU_GROUP_NOTIFY_ADD_DEVICE
:
737 vfio_group_nb_add_dev(group
, dev
);
739 case IOMMU_GROUP_NOTIFY_DEL_DEVICE
:
741 * Nothing to do here. If the device is in use, then the
742 * vfio sub-driver should block the remove callback until
743 * it is unused. If the device is unused or attached to a
744 * stub driver, then it should be released and we don't
745 * care that it will be going away.
748 case IOMMU_GROUP_NOTIFY_BIND_DRIVER
:
749 dev_dbg(dev
, "%s: group %d binding to driver\n", __func__
,
750 iommu_group_id(group
->iommu_group
));
752 case IOMMU_GROUP_NOTIFY_BOUND_DRIVER
:
753 dev_dbg(dev
, "%s: group %d bound to driver %s\n", __func__
,
754 iommu_group_id(group
->iommu_group
), dev
->driver
->name
);
755 BUG_ON(vfio_group_nb_verify(group
, dev
));
757 case IOMMU_GROUP_NOTIFY_UNBIND_DRIVER
:
758 dev_dbg(dev
, "%s: group %d unbinding from driver %s\n",
759 __func__
, iommu_group_id(group
->iommu_group
),
762 case IOMMU_GROUP_NOTIFY_UNBOUND_DRIVER
:
763 dev_dbg(dev
, "%s: group %d unbound from driver\n", __func__
,
764 iommu_group_id(group
->iommu_group
));
766 * XXX An unbound device in a live group is ok, but we'd
767 * really like to avoid the above BUG_ON by preventing other
768 * drivers from binding to it. Once that occurs, we have to
769 * stop the system to maintain isolation. At a minimum, we'd
770 * want a toggle to disable driver auto probe for this device.
773 mutex_lock(&group
->unbound_lock
);
774 list_for_each_entry(unbound
,
775 &group
->unbound_list
, unbound_next
) {
776 if (dev
== unbound
->dev
) {
777 list_del(&unbound
->unbound_next
);
782 mutex_unlock(&group
->unbound_lock
);
787 * If we're the last reference to the group, the group will be
788 * released, which includes unregistering the iommu group notifier.
789 * We hold a read-lock on that notifier list, unregistering needs
790 * a write-lock... deadlock. Release our reference asynchronously
791 * to avoid that situation.
793 vfio_group_schedule_put(group
);
800 int vfio_add_group_dev(struct device
*dev
,
801 const struct vfio_device_ops
*ops
, void *device_data
)
803 struct iommu_group
*iommu_group
;
804 struct vfio_group
*group
;
805 struct vfio_device
*device
;
807 iommu_group
= iommu_group_get(dev
);
811 group
= vfio_group_get_from_iommu(iommu_group
);
813 group
= vfio_create_group(iommu_group
);
815 iommu_group_put(iommu_group
);
816 return PTR_ERR(group
);
820 * A found vfio_group already holds a reference to the
821 * iommu_group. A created vfio_group keeps the reference.
823 iommu_group_put(iommu_group
);
826 device
= vfio_group_get_device(group
, dev
);
828 dev_WARN(dev
, "Device already exists on group %d\n",
829 iommu_group_id(iommu_group
));
830 vfio_device_put(device
);
831 vfio_group_put(group
);
835 device
= vfio_group_create_device(group
, dev
, ops
, device_data
);
836 if (IS_ERR(device
)) {
837 vfio_group_put(group
);
838 return PTR_ERR(device
);
842 * Drop all but the vfio_device reference. The vfio_device holds
843 * a reference to the vfio_group, which holds a reference to the
846 vfio_group_put(group
);
850 EXPORT_SYMBOL_GPL(vfio_add_group_dev
);
853 * Get a reference to the vfio_device for a device. Even if the
854 * caller thinks they own the device, they could be racing with a
855 * release call path, so we can't trust drvdata for the shortcut.
856 * Go the long way around, from the iommu_group to the vfio_group
857 * to the vfio_device.
859 struct vfio_device
*vfio_device_get_from_dev(struct device
*dev
)
861 struct vfio_group
*group
;
862 struct vfio_device
*device
;
864 group
= vfio_group_get_from_dev(dev
);
868 device
= vfio_group_get_device(group
, dev
);
869 vfio_group_put(group
);
873 EXPORT_SYMBOL_GPL(vfio_device_get_from_dev
);
875 static struct vfio_device
*vfio_device_get_from_name(struct vfio_group
*group
,
878 struct vfio_device
*it
, *device
= NULL
;
880 mutex_lock(&group
->device_lock
);
881 list_for_each_entry(it
, &group
->device_list
, group_next
) {
882 if (!strcmp(dev_name(it
->dev
), buf
)) {
884 vfio_device_get(device
);
888 mutex_unlock(&group
->device_lock
);
894 * Caller must hold a reference to the vfio_device
896 void *vfio_device_data(struct vfio_device
*device
)
898 return device
->device_data
;
900 EXPORT_SYMBOL_GPL(vfio_device_data
);
903 * Decrement the device reference count and wait for the device to be
904 * removed. Open file descriptors for the device... */
905 void *vfio_del_group_dev(struct device
*dev
)
907 DEFINE_WAIT_FUNC(wait
, woken_wake_function
);
908 struct vfio_device
*device
= dev_get_drvdata(dev
);
909 struct vfio_group
*group
= device
->group
;
910 void *device_data
= device
->device_data
;
911 struct vfio_unbound_dev
*unbound
;
913 bool interrupted
= false;
916 * The group exists so long as we have a device reference. Get
917 * a group reference and use it to scan for the device going away.
919 vfio_group_get(group
);
922 * When the device is removed from the group, the group suddenly
923 * becomes non-viable; the device has a driver (until the unbind
924 * completes), but it's not present in the group. This is bad news
925 * for any external users that need to re-acquire a group reference
926 * in order to match and release their existing reference. To
927 * solve this, we track such devices on the unbound_list to bridge
928 * the gap until they're fully unbound.
930 unbound
= kzalloc(sizeof(*unbound
), GFP_KERNEL
);
933 mutex_lock(&group
->unbound_lock
);
934 list_add(&unbound
->unbound_next
, &group
->unbound_list
);
935 mutex_unlock(&group
->unbound_lock
);
939 vfio_device_put(device
);
942 * If the device is still present in the group after the above
943 * 'put', then it is in use and we need to request it from the
944 * bus driver. The driver may in turn need to request the
945 * device from the user. We send the request on an arbitrary
946 * interval with counter to allow the driver to take escalating
947 * measures to release the device if it has the ability to do so.
949 add_wait_queue(&vfio
.release_q
, &wait
);
952 device
= vfio_group_get_device(group
, dev
);
956 if (device
->ops
->request
)
957 device
->ops
->request(device_data
, i
++);
959 vfio_device_put(device
);
962 wait_woken(&wait
, TASK_UNINTERRUPTIBLE
, HZ
* 10);
964 wait_woken(&wait
, TASK_INTERRUPTIBLE
, HZ
* 10);
965 if (signal_pending(current
)) {
968 "Device is currently in use, task"
970 "blocked until device is released",
971 current
->comm
, task_pid_nr(current
));
977 remove_wait_queue(&vfio
.release_q
, &wait
);
979 * In order to support multiple devices per group, devices can be
980 * plucked from the group while other devices in the group are still
981 * in use. The container persists with this group and those remaining
982 * devices still attached. If the user creates an isolation violation
983 * by binding this device to another driver while the group is still in
984 * use, that's their fault. However, in the case of removing the last,
985 * or potentially the only, device in the group there can be no other
986 * in-use devices in the group. The user has done their due diligence
987 * and we should lay no claims to those devices. In order to do that,
988 * we need to make sure the group is detached from the container.
989 * Without this stall, we're potentially racing with a user process
990 * that may attempt to immediately bind this device to another driver.
992 if (list_empty(&group
->device_list
))
993 wait_event(group
->container_q
, !group
->container
);
995 vfio_group_put(group
);
999 EXPORT_SYMBOL_GPL(vfio_del_group_dev
);
1002 * VFIO base fd, /dev/vfio/vfio
1004 static long vfio_ioctl_check_extension(struct vfio_container
*container
,
1007 struct vfio_iommu_driver
*driver
;
1010 down_read(&container
->group_lock
);
1012 driver
= container
->iommu_driver
;
1015 /* No base extensions yet */
1018 * If no driver is set, poll all registered drivers for
1019 * extensions and return the first positive result. If
1020 * a driver is already set, further queries will be passed
1021 * only to that driver.
1024 mutex_lock(&vfio
.iommu_drivers_lock
);
1025 list_for_each_entry(driver
, &vfio
.iommu_drivers_list
,
1028 #ifdef CONFIG_VFIO_NOIOMMU
1029 if (!list_empty(&container
->group_list
) &&
1030 (container
->noiommu
!=
1031 (driver
->ops
== &vfio_noiommu_ops
)))
1035 if (!try_module_get(driver
->ops
->owner
))
1038 ret
= driver
->ops
->ioctl(NULL
,
1039 VFIO_CHECK_EXTENSION
,
1041 module_put(driver
->ops
->owner
);
1045 mutex_unlock(&vfio
.iommu_drivers_lock
);
1047 ret
= driver
->ops
->ioctl(container
->iommu_data
,
1048 VFIO_CHECK_EXTENSION
, arg
);
1051 up_read(&container
->group_lock
);
1056 /* hold write lock on container->group_lock */
1057 static int __vfio_container_attach_groups(struct vfio_container
*container
,
1058 struct vfio_iommu_driver
*driver
,
1061 struct vfio_group
*group
;
1064 list_for_each_entry(group
, &container
->group_list
, container_next
) {
1065 ret
= driver
->ops
->attach_group(data
, group
->iommu_group
);
1073 list_for_each_entry_continue_reverse(group
, &container
->group_list
,
1075 driver
->ops
->detach_group(data
, group
->iommu_group
);
1081 static long vfio_ioctl_set_iommu(struct vfio_container
*container
,
1084 struct vfio_iommu_driver
*driver
;
1087 down_write(&container
->group_lock
);
1090 * The container is designed to be an unprivileged interface while
1091 * the group can be assigned to specific users. Therefore, only by
1092 * adding a group to a container does the user get the privilege of
1093 * enabling the iommu, which may allocate finite resources. There
1094 * is no unset_iommu, but by removing all the groups from a container,
1095 * the container is deprivileged and returns to an unset state.
1097 if (list_empty(&container
->group_list
) || container
->iommu_driver
) {
1098 up_write(&container
->group_lock
);
1102 mutex_lock(&vfio
.iommu_drivers_lock
);
1103 list_for_each_entry(driver
, &vfio
.iommu_drivers_list
, vfio_next
) {
1106 #ifdef CONFIG_VFIO_NOIOMMU
1108 * Only noiommu containers can use vfio-noiommu and noiommu
1109 * containers can only use vfio-noiommu.
1111 if (container
->noiommu
!= (driver
->ops
== &vfio_noiommu_ops
))
1115 if (!try_module_get(driver
->ops
->owner
))
1119 * The arg magic for SET_IOMMU is the same as CHECK_EXTENSION,
1120 * so test which iommu driver reported support for this
1121 * extension and call open on them. We also pass them the
1122 * magic, allowing a single driver to support multiple
1123 * interfaces if they'd like.
1125 if (driver
->ops
->ioctl(NULL
, VFIO_CHECK_EXTENSION
, arg
) <= 0) {
1126 module_put(driver
->ops
->owner
);
1130 data
= driver
->ops
->open(arg
);
1132 ret
= PTR_ERR(data
);
1133 module_put(driver
->ops
->owner
);
1137 ret
= __vfio_container_attach_groups(container
, driver
, data
);
1139 driver
->ops
->release(data
);
1140 module_put(driver
->ops
->owner
);
1144 container
->iommu_driver
= driver
;
1145 container
->iommu_data
= data
;
1149 mutex_unlock(&vfio
.iommu_drivers_lock
);
1150 up_write(&container
->group_lock
);
1155 static long vfio_fops_unl_ioctl(struct file
*filep
,
1156 unsigned int cmd
, unsigned long arg
)
1158 struct vfio_container
*container
= filep
->private_data
;
1159 struct vfio_iommu_driver
*driver
;
1167 case VFIO_GET_API_VERSION
:
1168 ret
= VFIO_API_VERSION
;
1170 case VFIO_CHECK_EXTENSION
:
1171 ret
= vfio_ioctl_check_extension(container
, arg
);
1173 case VFIO_SET_IOMMU
:
1174 ret
= vfio_ioctl_set_iommu(container
, arg
);
1177 driver
= container
->iommu_driver
;
1178 data
= container
->iommu_data
;
1180 if (driver
) /* passthrough all unrecognized ioctls */
1181 ret
= driver
->ops
->ioctl(data
, cmd
, arg
);
1187 static int vfio_fops_open(struct inode
*inode
, struct file
*filep
)
1189 struct vfio_container
*container
;
1191 container
= kzalloc(sizeof(*container
), GFP_KERNEL
);
1195 INIT_LIST_HEAD(&container
->group_list
);
1196 init_rwsem(&container
->group_lock
);
1197 kref_init(&container
->kref
);
1199 filep
->private_data
= container
;
1204 static int vfio_fops_release(struct inode
*inode
, struct file
*filep
)
1206 struct vfio_container
*container
= filep
->private_data
;
1208 filep
->private_data
= NULL
;
1210 vfio_container_put(container
);
1216 * Once an iommu driver is set, we optionally pass read/write/mmap
1217 * on to the driver, allowing management interfaces beyond ioctl.
1219 static ssize_t
vfio_fops_read(struct file
*filep
, char __user
*buf
,
1220 size_t count
, loff_t
*ppos
)
1222 struct vfio_container
*container
= filep
->private_data
;
1223 struct vfio_iommu_driver
*driver
;
1224 ssize_t ret
= -EINVAL
;
1226 driver
= container
->iommu_driver
;
1227 if (likely(driver
&& driver
->ops
->read
))
1228 ret
= driver
->ops
->read(container
->iommu_data
,
1234 static ssize_t
vfio_fops_write(struct file
*filep
, const char __user
*buf
,
1235 size_t count
, loff_t
*ppos
)
1237 struct vfio_container
*container
= filep
->private_data
;
1238 struct vfio_iommu_driver
*driver
;
1239 ssize_t ret
= -EINVAL
;
1241 driver
= container
->iommu_driver
;
1242 if (likely(driver
&& driver
->ops
->write
))
1243 ret
= driver
->ops
->write(container
->iommu_data
,
1249 static int vfio_fops_mmap(struct file
*filep
, struct vm_area_struct
*vma
)
1251 struct vfio_container
*container
= filep
->private_data
;
1252 struct vfio_iommu_driver
*driver
;
1255 driver
= container
->iommu_driver
;
1256 if (likely(driver
&& driver
->ops
->mmap
))
1257 ret
= driver
->ops
->mmap(container
->iommu_data
, vma
);
1262 static const struct file_operations vfio_fops
= {
1263 .owner
= THIS_MODULE
,
1264 .open
= vfio_fops_open
,
1265 .release
= vfio_fops_release
,
1266 .read
= vfio_fops_read
,
1267 .write
= vfio_fops_write
,
1268 .unlocked_ioctl
= vfio_fops_unl_ioctl
,
1269 .compat_ioctl
= compat_ptr_ioctl
,
1270 .mmap
= vfio_fops_mmap
,
1274 * VFIO Group fd, /dev/vfio/$GROUP
1276 static void __vfio_group_unset_container(struct vfio_group
*group
)
1278 struct vfio_container
*container
= group
->container
;
1279 struct vfio_iommu_driver
*driver
;
1281 down_write(&container
->group_lock
);
1283 driver
= container
->iommu_driver
;
1285 driver
->ops
->detach_group(container
->iommu_data
,
1286 group
->iommu_group
);
1288 group
->container
= NULL
;
1289 wake_up(&group
->container_q
);
1290 list_del(&group
->container_next
);
1292 /* Detaching the last group deprivileges a container, remove iommu */
1293 if (driver
&& list_empty(&container
->group_list
)) {
1294 driver
->ops
->release(container
->iommu_data
);
1295 module_put(driver
->ops
->owner
);
1296 container
->iommu_driver
= NULL
;
1297 container
->iommu_data
= NULL
;
1300 up_write(&container
->group_lock
);
1302 vfio_container_put(container
);
1306 * VFIO_GROUP_UNSET_CONTAINER should fail if there are other users or
1307 * if there was no container to unset. Since the ioctl is called on
1308 * the group, we know that still exists, therefore the only valid
1309 * transition here is 1->0.
1311 static int vfio_group_unset_container(struct vfio_group
*group
)
1313 int users
= atomic_cmpxchg(&group
->container_users
, 1, 0);
1320 __vfio_group_unset_container(group
);
1326 * When removing container users, anything that removes the last user
1327 * implicitly removes the group from the container. That is, if the
1328 * group file descriptor is closed, as well as any device file descriptors,
1329 * the group is free.
1331 static void vfio_group_try_dissolve_container(struct vfio_group
*group
)
1333 if (0 == atomic_dec_if_positive(&group
->container_users
))
1334 __vfio_group_unset_container(group
);
1337 static int vfio_group_set_container(struct vfio_group
*group
, int container_fd
)
1340 struct vfio_container
*container
;
1341 struct vfio_iommu_driver
*driver
;
1344 if (atomic_read(&group
->container_users
))
1347 if (group
->noiommu
&& !capable(CAP_SYS_RAWIO
))
1350 f
= fdget(container_fd
);
1354 /* Sanity check, is this really our fd? */
1355 if (f
.file
->f_op
!= &vfio_fops
) {
1360 container
= f
.file
->private_data
;
1361 WARN_ON(!container
); /* fget ensures we don't race vfio_release */
1363 down_write(&container
->group_lock
);
1365 /* Real groups and fake groups cannot mix */
1366 if (!list_empty(&container
->group_list
) &&
1367 container
->noiommu
!= group
->noiommu
) {
1372 driver
= container
->iommu_driver
;
1374 ret
= driver
->ops
->attach_group(container
->iommu_data
,
1375 group
->iommu_group
);
1380 group
->container
= container
;
1381 container
->noiommu
= group
->noiommu
;
1382 list_add(&group
->container_next
, &container
->group_list
);
1384 /* Get a reference on the container and mark a user within the group */
1385 vfio_container_get(container
);
1386 atomic_inc(&group
->container_users
);
1389 up_write(&container
->group_lock
);
1394 static bool vfio_group_viable(struct vfio_group
*group
)
1396 return (iommu_group_for_each_dev(group
->iommu_group
,
1397 group
, vfio_dev_viable
) == 0);
1400 static int vfio_group_add_container_user(struct vfio_group
*group
)
1402 if (!atomic_inc_not_zero(&group
->container_users
))
1405 if (group
->noiommu
) {
1406 atomic_dec(&group
->container_users
);
1409 if (!group
->container
->iommu_driver
|| !vfio_group_viable(group
)) {
1410 atomic_dec(&group
->container_users
);
1417 static const struct file_operations vfio_device_fops
;
1419 static int vfio_group_get_device_fd(struct vfio_group
*group
, char *buf
)
1421 struct vfio_device
*device
;
1425 if (0 == atomic_read(&group
->container_users
) ||
1426 !group
->container
->iommu_driver
|| !vfio_group_viable(group
))
1429 if (group
->noiommu
&& !capable(CAP_SYS_RAWIO
))
1432 device
= vfio_device_get_from_name(group
, buf
);
1436 ret
= device
->ops
->open(device
->device_data
);
1438 vfio_device_put(device
);
1443 * We can't use anon_inode_getfd() because we need to modify
1444 * the f_mode flags directly to allow more than just ioctls
1446 ret
= get_unused_fd_flags(O_CLOEXEC
);
1448 device
->ops
->release(device
->device_data
);
1449 vfio_device_put(device
);
1453 filep
= anon_inode_getfile("[vfio-device]", &vfio_device_fops
,
1455 if (IS_ERR(filep
)) {
1457 ret
= PTR_ERR(filep
);
1458 device
->ops
->release(device
->device_data
);
1459 vfio_device_put(device
);
1464 * TODO: add an anon_inode interface to do this.
1465 * Appears to be missing by lack of need rather than
1466 * explicitly prevented. Now there's need.
1468 filep
->f_mode
|= (FMODE_LSEEK
| FMODE_PREAD
| FMODE_PWRITE
);
1470 atomic_inc(&group
->container_users
);
1472 fd_install(ret
, filep
);
1475 dev_warn(device
->dev
, "vfio-noiommu device opened by user "
1476 "(%s:%d)\n", current
->comm
, task_pid_nr(current
));
1481 static long vfio_group_fops_unl_ioctl(struct file
*filep
,
1482 unsigned int cmd
, unsigned long arg
)
1484 struct vfio_group
*group
= filep
->private_data
;
1488 case VFIO_GROUP_GET_STATUS
:
1490 struct vfio_group_status status
;
1491 unsigned long minsz
;
1493 minsz
= offsetofend(struct vfio_group_status
, flags
);
1495 if (copy_from_user(&status
, (void __user
*)arg
, minsz
))
1498 if (status
.argsz
< minsz
)
1503 if (vfio_group_viable(group
))
1504 status
.flags
|= VFIO_GROUP_FLAGS_VIABLE
;
1506 if (group
->container
)
1507 status
.flags
|= VFIO_GROUP_FLAGS_CONTAINER_SET
;
1509 if (copy_to_user((void __user
*)arg
, &status
, minsz
))
1515 case VFIO_GROUP_SET_CONTAINER
:
1519 if (get_user(fd
, (int __user
*)arg
))
1525 ret
= vfio_group_set_container(group
, fd
);
1528 case VFIO_GROUP_UNSET_CONTAINER
:
1529 ret
= vfio_group_unset_container(group
);
1531 case VFIO_GROUP_GET_DEVICE_FD
:
1535 buf
= strndup_user((const char __user
*)arg
, PAGE_SIZE
);
1537 return PTR_ERR(buf
);
1539 ret
= vfio_group_get_device_fd(group
, buf
);
1548 static int vfio_group_fops_open(struct inode
*inode
, struct file
*filep
)
1550 struct vfio_group
*group
;
1553 group
= vfio_group_get_from_minor(iminor(inode
));
1557 if (group
->noiommu
&& !capable(CAP_SYS_RAWIO
)) {
1558 vfio_group_put(group
);
1562 /* Do we need multiple instances of the group open? Seems not. */
1563 opened
= atomic_cmpxchg(&group
->opened
, 0, 1);
1565 vfio_group_put(group
);
1569 /* Is something still in use from a previous open? */
1570 if (group
->container
) {
1571 atomic_dec(&group
->opened
);
1572 vfio_group_put(group
);
1576 /* Warn if previous user didn't cleanup and re-init to drop them */
1577 if (WARN_ON(group
->notifier
.head
))
1578 BLOCKING_INIT_NOTIFIER_HEAD(&group
->notifier
);
1580 filep
->private_data
= group
;
1585 static int vfio_group_fops_release(struct inode
*inode
, struct file
*filep
)
1587 struct vfio_group
*group
= filep
->private_data
;
1589 filep
->private_data
= NULL
;
1591 vfio_group_try_dissolve_container(group
);
1593 atomic_dec(&group
->opened
);
1595 vfio_group_put(group
);
1600 static const struct file_operations vfio_group_fops
= {
1601 .owner
= THIS_MODULE
,
1602 .unlocked_ioctl
= vfio_group_fops_unl_ioctl
,
1603 .compat_ioctl
= compat_ptr_ioctl
,
1604 .open
= vfio_group_fops_open
,
1605 .release
= vfio_group_fops_release
,
1611 static int vfio_device_fops_release(struct inode
*inode
, struct file
*filep
)
1613 struct vfio_device
*device
= filep
->private_data
;
1615 device
->ops
->release(device
->device_data
);
1617 vfio_group_try_dissolve_container(device
->group
);
1619 vfio_device_put(device
);
1624 static long vfio_device_fops_unl_ioctl(struct file
*filep
,
1625 unsigned int cmd
, unsigned long arg
)
1627 struct vfio_device
*device
= filep
->private_data
;
1629 if (unlikely(!device
->ops
->ioctl
))
1632 return device
->ops
->ioctl(device
->device_data
, cmd
, arg
);
1635 static ssize_t
vfio_device_fops_read(struct file
*filep
, char __user
*buf
,
1636 size_t count
, loff_t
*ppos
)
1638 struct vfio_device
*device
= filep
->private_data
;
1640 if (unlikely(!device
->ops
->read
))
1643 return device
->ops
->read(device
->device_data
, buf
, count
, ppos
);
1646 static ssize_t
vfio_device_fops_write(struct file
*filep
,
1647 const char __user
*buf
,
1648 size_t count
, loff_t
*ppos
)
1650 struct vfio_device
*device
= filep
->private_data
;
1652 if (unlikely(!device
->ops
->write
))
1655 return device
->ops
->write(device
->device_data
, buf
, count
, ppos
);
1658 static int vfio_device_fops_mmap(struct file
*filep
, struct vm_area_struct
*vma
)
1660 struct vfio_device
*device
= filep
->private_data
;
1662 if (unlikely(!device
->ops
->mmap
))
1665 return device
->ops
->mmap(device
->device_data
, vma
);
1668 static const struct file_operations vfio_device_fops
= {
1669 .owner
= THIS_MODULE
,
1670 .release
= vfio_device_fops_release
,
1671 .read
= vfio_device_fops_read
,
1672 .write
= vfio_device_fops_write
,
1673 .unlocked_ioctl
= vfio_device_fops_unl_ioctl
,
1674 .compat_ioctl
= compat_ptr_ioctl
,
1675 .mmap
= vfio_device_fops_mmap
,
1679 * External user API, exported by symbols to be linked dynamically.
1681 * The protocol includes:
1682 * 1. do normal VFIO init operation:
1683 * - opening a new container;
1684 * - attaching group(s) to it;
1685 * - setting an IOMMU driver for a container.
1686 * When IOMMU is set for a container, all groups in it are
1687 * considered ready to use by an external user.
1689 * 2. User space passes a group fd to an external user.
1690 * The external user calls vfio_group_get_external_user()
1692 * - the group is initialized;
1693 * - IOMMU is set for it.
1694 * If both checks passed, vfio_group_get_external_user()
1695 * increments the container user counter to prevent
1696 * the VFIO group from disposal before KVM exits.
1698 * 3. The external user calls vfio_external_user_iommu_id()
1699 * to know an IOMMU ID.
1701 * 4. When the external KVM finishes, it calls
1702 * vfio_group_put_external_user() to release the VFIO group.
1703 * This call decrements the container user counter.
1705 struct vfio_group
*vfio_group_get_external_user(struct file
*filep
)
1707 struct vfio_group
*group
= filep
->private_data
;
1710 if (filep
->f_op
!= &vfio_group_fops
)
1711 return ERR_PTR(-EINVAL
);
1713 ret
= vfio_group_add_container_user(group
);
1715 return ERR_PTR(ret
);
1717 vfio_group_get(group
);
1721 EXPORT_SYMBOL_GPL(vfio_group_get_external_user
);
1723 void vfio_group_put_external_user(struct vfio_group
*group
)
1725 vfio_group_try_dissolve_container(group
);
1726 vfio_group_put(group
);
1728 EXPORT_SYMBOL_GPL(vfio_group_put_external_user
);
1730 bool vfio_external_group_match_file(struct vfio_group
*test_group
,
1733 struct vfio_group
*group
= filep
->private_data
;
1735 return (filep
->f_op
== &vfio_group_fops
) && (group
== test_group
);
1737 EXPORT_SYMBOL_GPL(vfio_external_group_match_file
);
1739 int vfio_external_user_iommu_id(struct vfio_group
*group
)
1741 return iommu_group_id(group
->iommu_group
);
1743 EXPORT_SYMBOL_GPL(vfio_external_user_iommu_id
);
1745 long vfio_external_check_extension(struct vfio_group
*group
, unsigned long arg
)
1747 return vfio_ioctl_check_extension(group
->container
, arg
);
1749 EXPORT_SYMBOL_GPL(vfio_external_check_extension
);
1752 * Sub-module support
1755 * Helper for managing a buffer of info chain capabilities, allocate or
1756 * reallocate a buffer with additional @size, filling in @id and @version
1757 * of the capability. A pointer to the new capability is returned.
1759 * NB. The chain is based at the head of the buffer, so new entries are
1760 * added to the tail, vfio_info_cap_shift() should be called to fixup the
1761 * next offsets prior to copying to the user buffer.
1763 struct vfio_info_cap_header
*vfio_info_cap_add(struct vfio_info_cap
*caps
,
1764 size_t size
, u16 id
, u16 version
)
1767 struct vfio_info_cap_header
*header
, *tmp
;
1769 buf
= krealloc(caps
->buf
, caps
->size
+ size
, GFP_KERNEL
);
1773 return ERR_PTR(-ENOMEM
);
1777 header
= buf
+ caps
->size
;
1779 /* Eventually copied to user buffer, zero */
1780 memset(header
, 0, size
);
1783 header
->version
= version
;
1785 /* Add to the end of the capability chain */
1786 for (tmp
= buf
; tmp
->next
; tmp
= buf
+ tmp
->next
)
1789 tmp
->next
= caps
->size
;
1794 EXPORT_SYMBOL_GPL(vfio_info_cap_add
);
1796 void vfio_info_cap_shift(struct vfio_info_cap
*caps
, size_t offset
)
1798 struct vfio_info_cap_header
*tmp
;
1799 void *buf
= (void *)caps
->buf
;
1801 for (tmp
= buf
; tmp
->next
; tmp
= buf
+ tmp
->next
- offset
)
1802 tmp
->next
+= offset
;
1804 EXPORT_SYMBOL(vfio_info_cap_shift
);
1806 int vfio_info_add_capability(struct vfio_info_cap
*caps
,
1807 struct vfio_info_cap_header
*cap
, size_t size
)
1809 struct vfio_info_cap_header
*header
;
1811 header
= vfio_info_cap_add(caps
, size
, cap
->id
, cap
->version
);
1813 return PTR_ERR(header
);
1815 memcpy(header
+ 1, cap
+ 1, size
- sizeof(*header
));
1819 EXPORT_SYMBOL(vfio_info_add_capability
);
1821 int vfio_set_irqs_validate_and_prepare(struct vfio_irq_set
*hdr
, int num_irqs
,
1822 int max_irq_type
, size_t *data_size
)
1824 unsigned long minsz
;
1827 minsz
= offsetofend(struct vfio_irq_set
, count
);
1829 if ((hdr
->argsz
< minsz
) || (hdr
->index
>= max_irq_type
) ||
1830 (hdr
->count
>= (U32_MAX
- hdr
->start
)) ||
1831 (hdr
->flags
& ~(VFIO_IRQ_SET_DATA_TYPE_MASK
|
1832 VFIO_IRQ_SET_ACTION_TYPE_MASK
)))
1838 if (hdr
->start
>= num_irqs
|| hdr
->start
+ hdr
->count
> num_irqs
)
1841 switch (hdr
->flags
& VFIO_IRQ_SET_DATA_TYPE_MASK
) {
1842 case VFIO_IRQ_SET_DATA_NONE
:
1845 case VFIO_IRQ_SET_DATA_BOOL
:
1846 size
= sizeof(uint8_t);
1848 case VFIO_IRQ_SET_DATA_EVENTFD
:
1849 size
= sizeof(int32_t);
1856 if (hdr
->argsz
- minsz
< hdr
->count
* size
)
1862 *data_size
= hdr
->count
* size
;
1867 EXPORT_SYMBOL(vfio_set_irqs_validate_and_prepare
);
1870 * Pin a set of guest PFNs and return their associated host PFNs for local
1872 * @dev [in] : device
1873 * @user_pfn [in]: array of user/guest PFNs to be pinned.
1874 * @npage [in] : count of elements in user_pfn array. This count should not
1875 * be greater VFIO_PIN_PAGES_MAX_ENTRIES.
1876 * @prot [in] : protection flags
1877 * @phys_pfn[out]: array of host PFNs
1878 * Return error or number of pages pinned.
1880 int vfio_pin_pages(struct device
*dev
, unsigned long *user_pfn
, int npage
,
1881 int prot
, unsigned long *phys_pfn
)
1883 struct vfio_container
*container
;
1884 struct vfio_group
*group
;
1885 struct vfio_iommu_driver
*driver
;
1888 if (!dev
|| !user_pfn
|| !phys_pfn
|| !npage
)
1891 if (npage
> VFIO_PIN_PAGES_MAX_ENTRIES
)
1894 group
= vfio_group_get_from_dev(dev
);
1898 ret
= vfio_group_add_container_user(group
);
1902 container
= group
->container
;
1903 driver
= container
->iommu_driver
;
1904 if (likely(driver
&& driver
->ops
->pin_pages
))
1905 ret
= driver
->ops
->pin_pages(container
->iommu_data
, user_pfn
,
1906 npage
, prot
, phys_pfn
);
1910 vfio_group_try_dissolve_container(group
);
1913 vfio_group_put(group
);
1916 EXPORT_SYMBOL(vfio_pin_pages
);
1919 * Unpin set of host PFNs for local domain only.
1920 * @dev [in] : device
1921 * @user_pfn [in]: array of user/guest PFNs to be unpinned. Number of user/guest
1922 * PFNs should not be greater than VFIO_PIN_PAGES_MAX_ENTRIES.
1923 * @npage [in] : count of elements in user_pfn array. This count should not
1924 * be greater than VFIO_PIN_PAGES_MAX_ENTRIES.
1925 * Return error or number of pages unpinned.
1927 int vfio_unpin_pages(struct device
*dev
, unsigned long *user_pfn
, int npage
)
1929 struct vfio_container
*container
;
1930 struct vfio_group
*group
;
1931 struct vfio_iommu_driver
*driver
;
1934 if (!dev
|| !user_pfn
|| !npage
)
1937 if (npage
> VFIO_PIN_PAGES_MAX_ENTRIES
)
1940 group
= vfio_group_get_from_dev(dev
);
1944 ret
= vfio_group_add_container_user(group
);
1946 goto err_unpin_pages
;
1948 container
= group
->container
;
1949 driver
= container
->iommu_driver
;
1950 if (likely(driver
&& driver
->ops
->unpin_pages
))
1951 ret
= driver
->ops
->unpin_pages(container
->iommu_data
, user_pfn
,
1956 vfio_group_try_dissolve_container(group
);
1959 vfio_group_put(group
);
1962 EXPORT_SYMBOL(vfio_unpin_pages
);
1964 static int vfio_register_iommu_notifier(struct vfio_group
*group
,
1965 unsigned long *events
,
1966 struct notifier_block
*nb
)
1968 struct vfio_container
*container
;
1969 struct vfio_iommu_driver
*driver
;
1972 ret
= vfio_group_add_container_user(group
);
1976 container
= group
->container
;
1977 driver
= container
->iommu_driver
;
1978 if (likely(driver
&& driver
->ops
->register_notifier
))
1979 ret
= driver
->ops
->register_notifier(container
->iommu_data
,
1984 vfio_group_try_dissolve_container(group
);
1989 static int vfio_unregister_iommu_notifier(struct vfio_group
*group
,
1990 struct notifier_block
*nb
)
1992 struct vfio_container
*container
;
1993 struct vfio_iommu_driver
*driver
;
1996 ret
= vfio_group_add_container_user(group
);
2000 container
= group
->container
;
2001 driver
= container
->iommu_driver
;
2002 if (likely(driver
&& driver
->ops
->unregister_notifier
))
2003 ret
= driver
->ops
->unregister_notifier(container
->iommu_data
,
2008 vfio_group_try_dissolve_container(group
);
2013 void vfio_group_set_kvm(struct vfio_group
*group
, struct kvm
*kvm
)
2016 blocking_notifier_call_chain(&group
->notifier
,
2017 VFIO_GROUP_NOTIFY_SET_KVM
, kvm
);
2019 EXPORT_SYMBOL_GPL(vfio_group_set_kvm
);
2021 static int vfio_register_group_notifier(struct vfio_group
*group
,
2022 unsigned long *events
,
2023 struct notifier_block
*nb
)
2026 bool set_kvm
= false;
2028 if (*events
& VFIO_GROUP_NOTIFY_SET_KVM
)
2031 /* clear known events */
2032 *events
&= ~VFIO_GROUP_NOTIFY_SET_KVM
;
2034 /* refuse to continue if still events remaining */
2038 ret
= vfio_group_add_container_user(group
);
2042 ret
= blocking_notifier_chain_register(&group
->notifier
, nb
);
2045 * The attaching of kvm and vfio_group might already happen, so
2046 * here we replay once upon registration.
2048 if (!ret
&& set_kvm
&& group
->kvm
)
2049 blocking_notifier_call_chain(&group
->notifier
,
2050 VFIO_GROUP_NOTIFY_SET_KVM
, group
->kvm
);
2052 vfio_group_try_dissolve_container(group
);
2057 static int vfio_unregister_group_notifier(struct vfio_group
*group
,
2058 struct notifier_block
*nb
)
2062 ret
= vfio_group_add_container_user(group
);
2066 ret
= blocking_notifier_chain_unregister(&group
->notifier
, nb
);
2068 vfio_group_try_dissolve_container(group
);
2073 int vfio_register_notifier(struct device
*dev
, enum vfio_notify_type type
,
2074 unsigned long *events
, struct notifier_block
*nb
)
2076 struct vfio_group
*group
;
2079 if (!dev
|| !nb
|| !events
|| (*events
== 0))
2082 group
= vfio_group_get_from_dev(dev
);
2087 case VFIO_IOMMU_NOTIFY
:
2088 ret
= vfio_register_iommu_notifier(group
, events
, nb
);
2090 case VFIO_GROUP_NOTIFY
:
2091 ret
= vfio_register_group_notifier(group
, events
, nb
);
2097 vfio_group_put(group
);
2100 EXPORT_SYMBOL(vfio_register_notifier
);
2102 int vfio_unregister_notifier(struct device
*dev
, enum vfio_notify_type type
,
2103 struct notifier_block
*nb
)
2105 struct vfio_group
*group
;
2111 group
= vfio_group_get_from_dev(dev
);
2116 case VFIO_IOMMU_NOTIFY
:
2117 ret
= vfio_unregister_iommu_notifier(group
, nb
);
2119 case VFIO_GROUP_NOTIFY
:
2120 ret
= vfio_unregister_group_notifier(group
, nb
);
2126 vfio_group_put(group
);
2129 EXPORT_SYMBOL(vfio_unregister_notifier
);
2132 * Module/class support
2134 static char *vfio_devnode(struct device
*dev
, umode_t
*mode
)
2136 return kasprintf(GFP_KERNEL
, "vfio/%s", dev_name(dev
));
2139 static struct miscdevice vfio_dev
= {
2140 .minor
= VFIO_MINOR
,
2143 .nodename
= "vfio/vfio",
2144 .mode
= S_IRUGO
| S_IWUGO
,
2147 static int __init
vfio_init(void)
2151 idr_init(&vfio
.group_idr
);
2152 mutex_init(&vfio
.group_lock
);
2153 mutex_init(&vfio
.iommu_drivers_lock
);
2154 INIT_LIST_HEAD(&vfio
.group_list
);
2155 INIT_LIST_HEAD(&vfio
.iommu_drivers_list
);
2156 init_waitqueue_head(&vfio
.release_q
);
2158 ret
= misc_register(&vfio_dev
);
2160 pr_err("vfio: misc device register failed\n");
2164 /* /dev/vfio/$GROUP */
2165 vfio
.class = class_create(THIS_MODULE
, "vfio");
2166 if (IS_ERR(vfio
.class)) {
2167 ret
= PTR_ERR(vfio
.class);
2171 vfio
.class->devnode
= vfio_devnode
;
2173 ret
= alloc_chrdev_region(&vfio
.group_devt
, 0, MINORMASK
+ 1, "vfio");
2175 goto err_alloc_chrdev
;
2177 cdev_init(&vfio
.group_cdev
, &vfio_group_fops
);
2178 ret
= cdev_add(&vfio
.group_cdev
, vfio
.group_devt
, MINORMASK
+ 1);
2182 pr_info(DRIVER_DESC
" version: " DRIVER_VERSION
"\n");
2184 #ifdef CONFIG_VFIO_NOIOMMU
2185 vfio_register_iommu_driver(&vfio_noiommu_ops
);
2190 unregister_chrdev_region(vfio
.group_devt
, MINORMASK
+ 1);
2192 class_destroy(vfio
.class);
2195 misc_deregister(&vfio_dev
);
2199 static void __exit
vfio_cleanup(void)
2201 WARN_ON(!list_empty(&vfio
.group_list
));
2203 #ifdef CONFIG_VFIO_NOIOMMU
2204 vfio_unregister_iommu_driver(&vfio_noiommu_ops
);
2206 idr_destroy(&vfio
.group_idr
);
2207 cdev_del(&vfio
.group_cdev
);
2208 unregister_chrdev_region(vfio
.group_devt
, MINORMASK
+ 1);
2209 class_destroy(vfio
.class);
2211 misc_deregister(&vfio_dev
);
2214 module_init(vfio_init
);
2215 module_exit(vfio_cleanup
);
2217 MODULE_VERSION(DRIVER_VERSION
);
2218 MODULE_LICENSE("GPL v2");
2219 MODULE_AUTHOR(DRIVER_AUTHOR
);
2220 MODULE_DESCRIPTION(DRIVER_DESC
);
2221 MODULE_ALIAS_MISCDEV(VFIO_MINOR
);
2222 MODULE_ALIAS("devname:vfio/vfio");
2223 MODULE_SOFTDEP("post: vfio_iommu_type1 vfio_iommu_spapr_tce");