aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--arch/x86/kvm/Kconfig1
-rw-r--r--arch/x86/kvm/Makefile2
-rw-r--r--arch/x86/kvm/x86.c1
-rw-r--r--include/linux/kvm.h11
-rw-r--r--include/linux/kvm_host.h24
-rw-r--r--virt/kvm/Kconfig4
-rw-r--r--virt/kvm/eventfd.c329
-rw-r--r--virt/kvm/kvm_main.c12
8 files changed, 383 insertions, 1 deletions
diff --git a/arch/x86/kvm/Kconfig b/arch/x86/kvm/Kconfig
index 939b1cb9c5b3..8cd2a4efe238 100644
--- a/arch/x86/kvm/Kconfig
+++ b/arch/x86/kvm/Kconfig
@@ -26,6 +26,7 @@ config KVM
26 select MMU_NOTIFIER 26 select MMU_NOTIFIER
27 select ANON_INODES 27 select ANON_INODES
28 select HAVE_KVM_IRQCHIP 28 select HAVE_KVM_IRQCHIP
29 select HAVE_KVM_EVENTFD
29 ---help--- 30 ---help---
30 Support hosting fully virtualized guest machines using hardware 31 Support hosting fully virtualized guest machines using hardware
31 virtualization extensions. You will need a fairly recent 32 virtualization extensions. You will need a fairly recent
diff --git a/arch/x86/kvm/Makefile b/arch/x86/kvm/Makefile
index bee9512cd60d..01e3c61f749a 100644
--- a/arch/x86/kvm/Makefile
+++ b/arch/x86/kvm/Makefile
@@ -2,7 +2,7 @@
2EXTRA_CFLAGS += -Ivirt/kvm -Iarch/x86/kvm 2EXTRA_CFLAGS += -Ivirt/kvm -Iarch/x86/kvm
3 3
4kvm-y += $(addprefix ../../../virt/kvm/, kvm_main.o ioapic.o \ 4kvm-y += $(addprefix ../../../virt/kvm/, kvm_main.o ioapic.o \
5 coalesced_mmio.o irq_comm.o) 5 coalesced_mmio.o irq_comm.o eventfd.o)
6kvm-$(CONFIG_KVM_TRACE) += $(addprefix ../../../virt/kvm/, kvm_trace.o) 6kvm-$(CONFIG_KVM_TRACE) += $(addprefix ../../../virt/kvm/, kvm_trace.o)
7kvm-$(CONFIG_IOMMU_API) += $(addprefix ../../../virt/kvm/, iommu.o) 7kvm-$(CONFIG_IOMMU_API) += $(addprefix ../../../virt/kvm/, iommu.o)
8 8
diff --git a/arch/x86/kvm/x86.c b/arch/x86/kvm/x86.c
index f0642396783f..15f39fc08ece 100644
--- a/arch/x86/kvm/x86.c
+++ b/arch/x86/kvm/x86.c
@@ -1126,6 +1126,7 @@ int kvm_dev_ioctl_check_extension(long ext)
1126 case KVM_CAP_REINJECT_CONTROL: 1126 case KVM_CAP_REINJECT_CONTROL:
1127 case KVM_CAP_IRQ_INJECT_STATUS: 1127 case KVM_CAP_IRQ_INJECT_STATUS:
1128 case KVM_CAP_ASSIGN_DEV_IRQ: 1128 case KVM_CAP_ASSIGN_DEV_IRQ:
1129 case KVM_CAP_IRQFD:
1129 r = 1; 1130 r = 1;
1130 break; 1131 break;
1131 case KVM_CAP_COALESCED_MMIO: 1132 case KVM_CAP_COALESCED_MMIO:
diff --git a/include/linux/kvm.h b/include/linux/kvm.h
index 7b17141c47c9..8f53f24e5274 100644
--- a/include/linux/kvm.h
+++ b/include/linux/kvm.h
@@ -418,6 +418,7 @@ struct kvm_trace_rec {
418#ifdef __KVM_HAVE_MCE 418#ifdef __KVM_HAVE_MCE
419#define KVM_CAP_MCE 31 419#define KVM_CAP_MCE 31
420#endif 420#endif
421#define KVM_CAP_IRQFD 32
421 422
422#ifdef KVM_CAP_IRQ_ROUTING 423#ifdef KVM_CAP_IRQ_ROUTING
423 424
@@ -470,6 +471,15 @@ struct kvm_x86_mce {
470}; 471};
471#endif 472#endif
472 473
474#define KVM_IRQFD_FLAG_DEASSIGN (1 << 0)
475
476struct kvm_irqfd {
477 __u32 fd;
478 __u32 gsi;
479 __u32 flags;
480 __u8 pad[20];
481};
482
473/* 483/*
474 * ioctls for VM fds 484 * ioctls for VM fds
475 */ 485 */
@@ -514,6 +524,7 @@ struct kvm_x86_mce {
514#define KVM_ASSIGN_SET_MSIX_ENTRY \ 524#define KVM_ASSIGN_SET_MSIX_ENTRY \
515 _IOW(KVMIO, 0x74, struct kvm_assigned_msix_entry) 525 _IOW(KVMIO, 0x74, struct kvm_assigned_msix_entry)
516#define KVM_DEASSIGN_DEV_IRQ _IOW(KVMIO, 0x75, struct kvm_assigned_irq) 526#define KVM_DEASSIGN_DEV_IRQ _IOW(KVMIO, 0x75, struct kvm_assigned_irq)
527#define KVM_IRQFD _IOW(KVMIO, 0x76, struct kvm_irqfd)
517 528
518/* 529/*
519 * ioctls for vcpu fds 530 * ioctls for vcpu fds
diff --git a/include/linux/kvm_host.h b/include/linux/kvm_host.h
index 3060bdc35ffe..7724dcb6ff76 100644
--- a/include/linux/kvm_host.h
+++ b/include/linux/kvm_host.h
@@ -136,6 +136,12 @@ struct kvm {
136 struct list_head vm_list; 136 struct list_head vm_list;
137 struct kvm_io_bus mmio_bus; 137 struct kvm_io_bus mmio_bus;
138 struct kvm_io_bus pio_bus; 138 struct kvm_io_bus pio_bus;
139#ifdef CONFIG_HAVE_KVM_EVENTFD
140 struct {
141 spinlock_t lock;
142 struct list_head items;
143 } irqfds;
144#endif
139 struct kvm_vm_stat stat; 145 struct kvm_vm_stat stat;
140 struct kvm_arch arch; 146 struct kvm_arch arch;
141 atomic_t users_count; 147 atomic_t users_count;
@@ -525,4 +531,22 @@ static inline void kvm_free_irq_routing(struct kvm *kvm) {}
525 531
526#endif 532#endif
527 533
534#ifdef CONFIG_HAVE_KVM_EVENTFD
535
536void kvm_irqfd_init(struct kvm *kvm);
537int kvm_irqfd(struct kvm *kvm, int fd, int gsi, int flags);
538void kvm_irqfd_release(struct kvm *kvm);
539
540#else
541
542static inline void kvm_irqfd_init(struct kvm *kvm) {}
543static inline int kvm_irqfd(struct kvm *kvm, int fd, int gsi, int flags)
544{
545 return -EINVAL;
546}
547
548static inline void kvm_irqfd_release(struct kvm *kvm) {}
549
550#endif /* CONFIG_HAVE_KVM_EVENTFD */
551
528#endif 552#endif
diff --git a/virt/kvm/Kconfig b/virt/kvm/Kconfig
index 79e83fc00dc7..56c6848d2df8 100644
--- a/virt/kvm/Kconfig
+++ b/virt/kvm/Kconfig
@@ -5,3 +5,7 @@ config HAVE_KVM
5 5
6config HAVE_KVM_IRQCHIP 6config HAVE_KVM_IRQCHIP
7 bool 7 bool
8
9config HAVE_KVM_EVENTFD
10 bool
11 select EVENTFD
diff --git a/virt/kvm/eventfd.c b/virt/kvm/eventfd.c
new file mode 100644
index 000000000000..314012323afe
--- /dev/null
+++ b/virt/kvm/eventfd.c
@@ -0,0 +1,329 @@
1/*
2 * kvm eventfd support - use eventfd objects to signal various KVM events
3 *
4 * Copyright 2009 Novell. All Rights Reserved.
5 *
6 * Author:
7 * Gregory Haskins <ghaskins@novell.com>
8 *
9 * This file is free software; you can redistribute it and/or modify
10 * it under the terms of version 2 of the GNU General Public License
11 * as published by the Free Software Foundation.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software Foundation,
20 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.
21 */
22
23#include <linux/kvm_host.h>
24#include <linux/workqueue.h>
25#include <linux/syscalls.h>
26#include <linux/wait.h>
27#include <linux/poll.h>
28#include <linux/file.h>
29#include <linux/list.h>
30#include <linux/eventfd.h>
31
32/*
33 * --------------------------------------------------------------------
34 * irqfd: Allows an fd to be used to inject an interrupt to the guest
35 *
36 * Credit goes to Avi Kivity for the original idea.
37 * --------------------------------------------------------------------
38 */
39
40struct _irqfd {
41 struct kvm *kvm;
42 struct eventfd_ctx *eventfd;
43 int gsi;
44 struct list_head list;
45 poll_table pt;
46 wait_queue_head_t *wqh;
47 wait_queue_t wait;
48 struct work_struct inject;
49 struct work_struct shutdown;
50};
51
52static struct workqueue_struct *irqfd_cleanup_wq;
53
54static void
55irqfd_inject(struct work_struct *work)
56{
57 struct _irqfd *irqfd = container_of(work, struct _irqfd, inject);
58 struct kvm *kvm = irqfd->kvm;
59
60 mutex_lock(&kvm->lock);
61 kvm_set_irq(kvm, KVM_USERSPACE_IRQ_SOURCE_ID, irqfd->gsi, 1);
62 kvm_set_irq(kvm, KVM_USERSPACE_IRQ_SOURCE_ID, irqfd->gsi, 0);
63 mutex_unlock(&kvm->lock);
64}
65
66/*
67 * Race-free decouple logic (ordering is critical)
68 */
69static void
70irqfd_shutdown(struct work_struct *work)
71{
72 struct _irqfd *irqfd = container_of(work, struct _irqfd, shutdown);
73
74 /*
75 * Synchronize with the wait-queue and unhook ourselves to prevent
76 * further events.
77 */
78 remove_wait_queue(irqfd->wqh, &irqfd->wait);
79
80 /*
81 * We know no new events will be scheduled at this point, so block
82 * until all previously outstanding events have completed
83 */
84 flush_work(&irqfd->inject);
85
86 /*
87 * It is now safe to release the object's resources
88 */
89 eventfd_ctx_put(irqfd->eventfd);
90 kfree(irqfd);
91}
92
93
94/* assumes kvm->irqfds.lock is held */
95static bool
96irqfd_is_active(struct _irqfd *irqfd)
97{
98 return list_empty(&irqfd->list) ? false : true;
99}
100
101/*
102 * Mark the irqfd as inactive and schedule it for removal
103 *
104 * assumes kvm->irqfds.lock is held
105 */
106static void
107irqfd_deactivate(struct _irqfd *irqfd)
108{
109 BUG_ON(!irqfd_is_active(irqfd));
110
111 list_del_init(&irqfd->list);
112
113 queue_work(irqfd_cleanup_wq, &irqfd->shutdown);
114}
115
116/*
117 * Called with wqh->lock held and interrupts disabled
118 */
119static int
120irqfd_wakeup(wait_queue_t *wait, unsigned mode, int sync, void *key)
121{
122 struct _irqfd *irqfd = container_of(wait, struct _irqfd, wait);
123 unsigned long flags = (unsigned long)key;
124
125 if (flags & POLLIN)
126 /* An event has been signaled, inject an interrupt */
127 schedule_work(&irqfd->inject);
128
129 if (flags & POLLHUP) {
130 /* The eventfd is closing, detach from KVM */
131 struct kvm *kvm = irqfd->kvm;
132 unsigned long flags;
133
134 spin_lock_irqsave(&kvm->irqfds.lock, flags);
135
136 /*
137 * We must check if someone deactivated the irqfd before
138 * we could acquire the irqfds.lock since the item is
139 * deactivated from the KVM side before it is unhooked from
140 * the wait-queue. If it is already deactivated, we can
141 * simply return knowing the other side will cleanup for us.
142 * We cannot race against the irqfd going away since the
143 * other side is required to acquire wqh->lock, which we hold
144 */
145 if (irqfd_is_active(irqfd))
146 irqfd_deactivate(irqfd);
147
148 spin_unlock_irqrestore(&kvm->irqfds.lock, flags);
149 }
150
151 return 0;
152}
153
154static void
155irqfd_ptable_queue_proc(struct file *file, wait_queue_head_t *wqh,
156 poll_table *pt)
157{
158 struct _irqfd *irqfd = container_of(pt, struct _irqfd, pt);
159
160 irqfd->wqh = wqh;
161 add_wait_queue(wqh, &irqfd->wait);
162}
163
164static int
165kvm_irqfd_assign(struct kvm *kvm, int fd, int gsi)
166{
167 struct _irqfd *irqfd;
168 struct file *file = NULL;
169 struct eventfd_ctx *eventfd = NULL;
170 int ret;
171 unsigned int events;
172
173 irqfd = kzalloc(sizeof(*irqfd), GFP_KERNEL);
174 if (!irqfd)
175 return -ENOMEM;
176
177 irqfd->kvm = kvm;
178 irqfd->gsi = gsi;
179 INIT_LIST_HEAD(&irqfd->list);
180 INIT_WORK(&irqfd->inject, irqfd_inject);
181 INIT_WORK(&irqfd->shutdown, irqfd_shutdown);
182
183 file = eventfd_fget(fd);
184 if (IS_ERR(file)) {
185 ret = PTR_ERR(file);
186 goto fail;
187 }
188
189 eventfd = eventfd_ctx_fileget(file);
190 if (IS_ERR(eventfd)) {
191 ret = PTR_ERR(eventfd);
192 goto fail;
193 }
194
195 irqfd->eventfd = eventfd;
196
197 /*
198 * Install our own custom wake-up handling so we are notified via
199 * a callback whenever someone signals the underlying eventfd
200 */
201 init_waitqueue_func_entry(&irqfd->wait, irqfd_wakeup);
202 init_poll_funcptr(&irqfd->pt, irqfd_ptable_queue_proc);
203
204 events = file->f_op->poll(file, &irqfd->pt);
205
206 spin_lock_irq(&kvm->irqfds.lock);
207 list_add_tail(&irqfd->list, &kvm->irqfds.items);
208 spin_unlock_irq(&kvm->irqfds.lock);
209
210 /*
211 * Check if there was an event already pending on the eventfd
212 * before we registered, and trigger it as if we didn't miss it.
213 */
214 if (events & POLLIN)
215 schedule_work(&irqfd->inject);
216
217 /*
218 * do not drop the file until the irqfd is fully initialized, otherwise
219 * we might race against the POLLHUP
220 */
221 fput(file);
222
223 return 0;
224
225fail:
226 if (eventfd && !IS_ERR(eventfd))
227 eventfd_ctx_put(eventfd);
228
229 if (file && !IS_ERR(file))
230 fput(file);
231
232 kfree(irqfd);
233 return ret;
234}
235
236void
237kvm_irqfd_init(struct kvm *kvm)
238{
239 spin_lock_init(&kvm->irqfds.lock);
240 INIT_LIST_HEAD(&kvm->irqfds.items);
241}
242
243/*
244 * shutdown any irqfd's that match fd+gsi
245 */
246static int
247kvm_irqfd_deassign(struct kvm *kvm, int fd, int gsi)
248{
249 struct _irqfd *irqfd, *tmp;
250 struct eventfd_ctx *eventfd;
251
252 eventfd = eventfd_ctx_fdget(fd);
253 if (IS_ERR(eventfd))
254 return PTR_ERR(eventfd);
255
256 spin_lock_irq(&kvm->irqfds.lock);
257
258 list_for_each_entry_safe(irqfd, tmp, &kvm->irqfds.items, list) {
259 if (irqfd->eventfd == eventfd && irqfd->gsi == gsi)
260 irqfd_deactivate(irqfd);
261 }
262
263 spin_unlock_irq(&kvm->irqfds.lock);
264 eventfd_ctx_put(eventfd);
265
266 /*
267 * Block until we know all outstanding shutdown jobs have completed
268 * so that we guarantee there will not be any more interrupts on this
269 * gsi once this deassign function returns.
270 */
271 flush_workqueue(irqfd_cleanup_wq);
272
273 return 0;
274}
275
276int
277kvm_irqfd(struct kvm *kvm, int fd, int gsi, int flags)
278{
279 if (flags & KVM_IRQFD_FLAG_DEASSIGN)
280 return kvm_irqfd_deassign(kvm, fd, gsi);
281
282 return kvm_irqfd_assign(kvm, fd, gsi);
283}
284
285/*
286 * This function is called as the kvm VM fd is being released. Shutdown all
287 * irqfds that still remain open
288 */
289void
290kvm_irqfd_release(struct kvm *kvm)
291{
292 struct _irqfd *irqfd, *tmp;
293
294 spin_lock_irq(&kvm->irqfds.lock);
295
296 list_for_each_entry_safe(irqfd, tmp, &kvm->irqfds.items, list)
297 irqfd_deactivate(irqfd);
298
299 spin_unlock_irq(&kvm->irqfds.lock);
300
301 /*
302 * Block until we know all outstanding shutdown jobs have completed
303 * since we do not take a kvm* reference.
304 */
305 flush_workqueue(irqfd_cleanup_wq);
306
307}
308
309/*
310 * create a host-wide workqueue for issuing deferred shutdown requests
311 * aggregated from all vm* instances. We need our own isolated single-thread
312 * queue to prevent deadlock against flushing the normal work-queue.
313 */
314static int __init irqfd_module_init(void)
315{
316 irqfd_cleanup_wq = create_singlethread_workqueue("kvm-irqfd-cleanup");
317 if (!irqfd_cleanup_wq)
318 return -ENOMEM;
319
320 return 0;
321}
322
323static void __exit irqfd_module_exit(void)
324{
325 destroy_workqueue(irqfd_cleanup_wq);
326}
327
328module_init(irqfd_module_init);
329module_exit(irqfd_module_exit);
diff --git a/virt/kvm/kvm_main.c b/virt/kvm/kvm_main.c
index 2884baf1d5f9..dee321e58894 100644
--- a/virt/kvm/kvm_main.c
+++ b/virt/kvm/kvm_main.c
@@ -986,6 +986,7 @@ static struct kvm *kvm_create_vm(void)
986 spin_lock_init(&kvm->mmu_lock); 986 spin_lock_init(&kvm->mmu_lock);
987 spin_lock_init(&kvm->requests_lock); 987 spin_lock_init(&kvm->requests_lock);
988 kvm_io_bus_init(&kvm->pio_bus); 988 kvm_io_bus_init(&kvm->pio_bus);
989 kvm_irqfd_init(kvm);
989 mutex_init(&kvm->lock); 990 mutex_init(&kvm->lock);
990 kvm_io_bus_init(&kvm->mmio_bus); 991 kvm_io_bus_init(&kvm->mmio_bus);
991 init_rwsem(&kvm->slots_lock); 992 init_rwsem(&kvm->slots_lock);
@@ -1071,6 +1072,8 @@ static int kvm_vm_release(struct inode *inode, struct file *filp)
1071{ 1072{
1072 struct kvm *kvm = filp->private_data; 1073 struct kvm *kvm = filp->private_data;
1073 1074
1075 kvm_irqfd_release(kvm);
1076
1074 kvm_put_kvm(kvm); 1077 kvm_put_kvm(kvm);
1075 return 0; 1078 return 0;
1076} 1079}
@@ -2222,6 +2225,15 @@ static long kvm_vm_ioctl(struct file *filp,
2222 } 2225 }
2223#endif 2226#endif
2224#endif /* KVM_CAP_IRQ_ROUTING */ 2227#endif /* KVM_CAP_IRQ_ROUTING */
2228 case KVM_IRQFD: {
2229 struct kvm_irqfd data;
2230
2231 r = -EFAULT;
2232 if (copy_from_user(&data, argp, sizeof data))
2233 goto out;
2234 r = kvm_irqfd(kvm, data.fd, data.gsi, data.flags);
2235 break;
2236 }
2225 default: 2237 default:
2226 r = kvm_arch_vm_ioctl(filp, ioctl, arg); 2238 r = kvm_arch_vm_ioctl(filp, ioctl, arg);
2227 } 2239 }