2 * VFIO-KVM bridge pseudo device
4 * Copyright (C) 2013 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.
12 #include <linux/errno.h>
13 #include <linux/file.h>
14 #include <linux/kvm_host.h>
15 #include <linux/list.h>
16 #include <linux/module.h>
17 #include <linux/mutex.h>
18 #include <linux/slab.h>
19 #include <linux/uaccess.h>
20 #include <linux/vfio.h>
22 struct kvm_vfio_group
{
23 struct list_head node
;
24 struct vfio_group
*vfio_group
;
28 struct list_head group_list
;
33 static struct vfio_group
*kvm_vfio_group_get_external_user(struct file
*filep
)
35 struct vfio_group
*vfio_group
;
36 struct vfio_group
*(*fn
)(struct file
*);
38 fn
= symbol_get(vfio_group_get_external_user
);
40 return ERR_PTR(-EINVAL
);
42 vfio_group
= fn(filep
);
44 symbol_put(vfio_group_get_external_user
);
49 static void kvm_vfio_group_put_external_user(struct vfio_group
*vfio_group
)
51 void (*fn
)(struct vfio_group
*);
53 fn
= symbol_get(vfio_group_put_external_user
);
59 symbol_put(vfio_group_put_external_user
);
62 static bool kvm_vfio_group_is_coherent(struct vfio_group
*vfio_group
)
64 long (*fn
)(struct vfio_group
*, unsigned long);
67 fn
= symbol_get(vfio_external_check_extension
);
71 ret
= fn(vfio_group
, VFIO_DMA_CC_IOMMU
);
73 symbol_put(vfio_external_check_extension
);
79 * Groups can use the same or different IOMMU domains. If the same then
80 * adding a new group may change the coherency of groups we've previously
81 * been told about. We don't want to care about any of that so we retest
82 * each group and bail as soon as we find one that's noncoherent. This
83 * means we only ever [un]register_noncoherent_dma once for the whole device.
85 static void kvm_vfio_update_coherency(struct kvm_device
*dev
)
87 struct kvm_vfio
*kv
= dev
->private;
88 bool noncoherent
= false;
89 struct kvm_vfio_group
*kvg
;
91 mutex_lock(&kv
->lock
);
93 list_for_each_entry(kvg
, &kv
->group_list
, node
) {
94 if (!kvm_vfio_group_is_coherent(kvg
->vfio_group
)) {
100 if (noncoherent
!= kv
->noncoherent
) {
101 kv
->noncoherent
= noncoherent
;
104 kvm_arch_register_noncoherent_dma(dev
->kvm
);
106 kvm_arch_unregister_noncoherent_dma(dev
->kvm
);
109 mutex_unlock(&kv
->lock
);
112 static int kvm_vfio_set_group(struct kvm_device
*dev
, long attr
, u64 arg
)
114 struct kvm_vfio
*kv
= dev
->private;
115 struct vfio_group
*vfio_group
;
116 struct kvm_vfio_group
*kvg
;
117 int32_t __user
*argp
= (int32_t __user
*)(unsigned long)arg
;
123 case KVM_DEV_VFIO_GROUP_ADD
:
124 if (get_user(fd
, argp
))
131 vfio_group
= kvm_vfio_group_get_external_user(f
.file
);
134 if (IS_ERR(vfio_group
))
135 return PTR_ERR(vfio_group
);
137 mutex_lock(&kv
->lock
);
139 list_for_each_entry(kvg
, &kv
->group_list
, node
) {
140 if (kvg
->vfio_group
== vfio_group
) {
141 mutex_unlock(&kv
->lock
);
142 kvm_vfio_group_put_external_user(vfio_group
);
147 kvg
= kzalloc(sizeof(*kvg
), GFP_KERNEL
);
149 mutex_unlock(&kv
->lock
);
150 kvm_vfio_group_put_external_user(vfio_group
);
154 list_add_tail(&kvg
->node
, &kv
->group_list
);
155 kvg
->vfio_group
= vfio_group
;
157 mutex_unlock(&kv
->lock
);
159 kvm_vfio_update_coherency(dev
);
163 case KVM_DEV_VFIO_GROUP_DEL
:
164 if (get_user(fd
, argp
))
171 vfio_group
= kvm_vfio_group_get_external_user(f
.file
);
174 if (IS_ERR(vfio_group
))
175 return PTR_ERR(vfio_group
);
179 mutex_lock(&kv
->lock
);
181 list_for_each_entry(kvg
, &kv
->group_list
, node
) {
182 if (kvg
->vfio_group
!= vfio_group
)
185 list_del(&kvg
->node
);
186 kvm_vfio_group_put_external_user(kvg
->vfio_group
);
192 mutex_unlock(&kv
->lock
);
194 kvm_vfio_group_put_external_user(vfio_group
);
196 kvm_vfio_update_coherency(dev
);
204 static int kvm_vfio_set_attr(struct kvm_device
*dev
,
205 struct kvm_device_attr
*attr
)
207 switch (attr
->group
) {
208 case KVM_DEV_VFIO_GROUP
:
209 return kvm_vfio_set_group(dev
, attr
->attr
, attr
->addr
);
215 static int kvm_vfio_has_attr(struct kvm_device
*dev
,
216 struct kvm_device_attr
*attr
)
218 switch (attr
->group
) {
219 case KVM_DEV_VFIO_GROUP
:
220 switch (attr
->attr
) {
221 case KVM_DEV_VFIO_GROUP_ADD
:
222 case KVM_DEV_VFIO_GROUP_DEL
:
232 static void kvm_vfio_destroy(struct kvm_device
*dev
)
234 struct kvm_vfio
*kv
= dev
->private;
235 struct kvm_vfio_group
*kvg
, *tmp
;
237 list_for_each_entry_safe(kvg
, tmp
, &kv
->group_list
, node
) {
238 kvm_vfio_group_put_external_user(kvg
->vfio_group
);
239 list_del(&kvg
->node
);
243 kvm_vfio_update_coherency(dev
);
246 kfree(dev
); /* alloc by kvm_ioctl_create_device, free by .destroy */
249 static int kvm_vfio_create(struct kvm_device
*dev
, u32 type
)
251 struct kvm_device
*tmp
;
254 /* Only one VFIO "device" per VM */
255 list_for_each_entry(tmp
, &dev
->kvm
->devices
, vm_node
)
256 if (tmp
->ops
== &kvm_vfio_ops
)
259 kv
= kzalloc(sizeof(*kv
), GFP_KERNEL
);
263 INIT_LIST_HEAD(&kv
->group_list
);
264 mutex_init(&kv
->lock
);
271 struct kvm_device_ops kvm_vfio_ops
= {
273 .create
= kvm_vfio_create
,
274 .destroy
= kvm_vfio_destroy
,
275 .set_attr
= kvm_vfio_set_attr
,
276 .has_attr
= kvm_vfio_has_attr
,