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>
23 struct kvm_vfio_group
{
24 struct list_head node
;
25 struct vfio_group
*vfio_group
;
29 struct list_head group_list
;
34 static struct vfio_group
*kvm_vfio_group_get_external_user(struct file
*filep
)
36 struct vfio_group
*vfio_group
;
37 struct vfio_group
*(*fn
)(struct file
*);
39 fn
= symbol_get(vfio_group_get_external_user
);
41 return ERR_PTR(-EINVAL
);
43 vfio_group
= fn(filep
);
45 symbol_put(vfio_group_get_external_user
);
50 static void kvm_vfio_group_put_external_user(struct vfio_group
*vfio_group
)
52 void (*fn
)(struct vfio_group
*);
54 fn
= symbol_get(vfio_group_put_external_user
);
60 symbol_put(vfio_group_put_external_user
);
63 static bool kvm_vfio_group_is_coherent(struct vfio_group
*vfio_group
)
65 long (*fn
)(struct vfio_group
*, unsigned long);
68 fn
= symbol_get(vfio_external_check_extension
);
72 ret
= fn(vfio_group
, VFIO_DMA_CC_IOMMU
);
74 symbol_put(vfio_external_check_extension
);
80 * Groups can use the same or different IOMMU domains. If the same then
81 * adding a new group may change the coherency of groups we've previously
82 * been told about. We don't want to care about any of that so we retest
83 * each group and bail as soon as we find one that's noncoherent. This
84 * means we only ever [un]register_noncoherent_dma once for the whole device.
86 static void kvm_vfio_update_coherency(struct kvm_device
*dev
)
88 struct kvm_vfio
*kv
= dev
->private;
89 bool noncoherent
= false;
90 struct kvm_vfio_group
*kvg
;
92 mutex_lock(&kv
->lock
);
94 list_for_each_entry(kvg
, &kv
->group_list
, node
) {
95 if (!kvm_vfio_group_is_coherent(kvg
->vfio_group
)) {
101 if (noncoherent
!= kv
->noncoherent
) {
102 kv
->noncoherent
= noncoherent
;
105 kvm_arch_register_noncoherent_dma(dev
->kvm
);
107 kvm_arch_unregister_noncoherent_dma(dev
->kvm
);
110 mutex_unlock(&kv
->lock
);
113 static int kvm_vfio_set_group(struct kvm_device
*dev
, long attr
, u64 arg
)
115 struct kvm_vfio
*kv
= dev
->private;
116 struct vfio_group
*vfio_group
;
117 struct kvm_vfio_group
*kvg
;
118 int32_t __user
*argp
= (int32_t __user
*)(unsigned long)arg
;
124 case KVM_DEV_VFIO_GROUP_ADD
:
125 if (get_user(fd
, argp
))
132 vfio_group
= kvm_vfio_group_get_external_user(f
.file
);
135 if (IS_ERR(vfio_group
))
136 return PTR_ERR(vfio_group
);
138 mutex_lock(&kv
->lock
);
140 list_for_each_entry(kvg
, &kv
->group_list
, node
) {
141 if (kvg
->vfio_group
== vfio_group
) {
142 mutex_unlock(&kv
->lock
);
143 kvm_vfio_group_put_external_user(vfio_group
);
148 kvg
= kzalloc(sizeof(*kvg
), GFP_KERNEL
);
150 mutex_unlock(&kv
->lock
);
151 kvm_vfio_group_put_external_user(vfio_group
);
155 list_add_tail(&kvg
->node
, &kv
->group_list
);
156 kvg
->vfio_group
= vfio_group
;
158 mutex_unlock(&kv
->lock
);
160 kvm_vfio_update_coherency(dev
);
164 case KVM_DEV_VFIO_GROUP_DEL
:
165 if (get_user(fd
, argp
))
172 vfio_group
= kvm_vfio_group_get_external_user(f
.file
);
175 if (IS_ERR(vfio_group
))
176 return PTR_ERR(vfio_group
);
180 mutex_lock(&kv
->lock
);
182 list_for_each_entry(kvg
, &kv
->group_list
, node
) {
183 if (kvg
->vfio_group
!= vfio_group
)
186 list_del(&kvg
->node
);
187 kvm_vfio_group_put_external_user(kvg
->vfio_group
);
193 mutex_unlock(&kv
->lock
);
195 kvm_vfio_group_put_external_user(vfio_group
);
197 kvm_vfio_update_coherency(dev
);
205 static int kvm_vfio_set_attr(struct kvm_device
*dev
,
206 struct kvm_device_attr
*attr
)
208 switch (attr
->group
) {
209 case KVM_DEV_VFIO_GROUP
:
210 return kvm_vfio_set_group(dev
, attr
->attr
, attr
->addr
);
216 static int kvm_vfio_has_attr(struct kvm_device
*dev
,
217 struct kvm_device_attr
*attr
)
219 switch (attr
->group
) {
220 case KVM_DEV_VFIO_GROUP
:
221 switch (attr
->attr
) {
222 case KVM_DEV_VFIO_GROUP_ADD
:
223 case KVM_DEV_VFIO_GROUP_DEL
:
233 static void kvm_vfio_destroy(struct kvm_device
*dev
)
235 struct kvm_vfio
*kv
= dev
->private;
236 struct kvm_vfio_group
*kvg
, *tmp
;
238 list_for_each_entry_safe(kvg
, tmp
, &kv
->group_list
, node
) {
239 kvm_vfio_group_put_external_user(kvg
->vfio_group
);
240 list_del(&kvg
->node
);
244 kvm_vfio_update_coherency(dev
);
247 kfree(dev
); /* alloc by kvm_ioctl_create_device, free by .destroy */
250 static int kvm_vfio_create(struct kvm_device
*dev
, u32 type
);
252 static struct kvm_device_ops kvm_vfio_ops
= {
254 .create
= kvm_vfio_create
,
255 .destroy
= kvm_vfio_destroy
,
256 .set_attr
= kvm_vfio_set_attr
,
257 .has_attr
= kvm_vfio_has_attr
,
260 static int kvm_vfio_create(struct kvm_device
*dev
, u32 type
)
262 struct kvm_device
*tmp
;
265 /* Only one VFIO "device" per VM */
266 list_for_each_entry(tmp
, &dev
->kvm
->devices
, vm_node
)
267 if (tmp
->ops
== &kvm_vfio_ops
)
270 kv
= kzalloc(sizeof(*kv
), GFP_KERNEL
);
274 INIT_LIST_HEAD(&kv
->group_list
);
275 mutex_init(&kv
->lock
);
282 int kvm_vfio_ops_init(void)
284 return kvm_register_device_ops(&kvm_vfio_ops
, KVM_DEV_TYPE_VFIO
);
287 void kvm_vfio_ops_exit(void)
289 kvm_unregister_device_ops(KVM_DEV_TYPE_VFIO
);