blob: 3972a9564c76381ffaa03eb6be91af66c5b60ef2 [file] [log] [blame]
Gregory Haskins721eecbf2009-05-20 10:30:49 -04001/*
2 * kvm eventfd support - use eventfd objects to signal various KVM events
3 *
4 * Copyright 2009 Novell. All Rights Reserved.
Avi Kivity221d0592010-05-23 18:37:00 +03005 * Copyright 2010 Red Hat, Inc. and/or its affiliates.
Gregory Haskins721eecbf2009-05-20 10:30:49 -04006 *
7 * Author:
8 * Gregory Haskins <ghaskins@novell.com>
9 *
10 * This file is free software; you can redistribute it and/or modify
11 * it under the terms of version 2 of the GNU General Public License
12 * as published by the Free Software Foundation.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software Foundation,
21 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.
22 */
23
24#include <linux/kvm_host.h>
Gregory Haskinsd34e6b12009-07-07 17:08:49 -040025#include <linux/kvm.h>
Eric Auger166c9772015-09-18 22:29:42 +080026#include <linux/kvm_irqfd.h>
Gregory Haskins721eecbf2009-05-20 10:30:49 -040027#include <linux/workqueue.h>
28#include <linux/syscalls.h>
29#include <linux/wait.h>
30#include <linux/poll.h>
31#include <linux/file.h>
32#include <linux/list.h>
33#include <linux/eventfd.h>
Gregory Haskinsd34e6b12009-07-07 17:08:49 -040034#include <linux/kernel.h>
Christian Borntraeger719d93c2014-01-16 13:44:20 +010035#include <linux/srcu.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090036#include <linux/slab.h>
Paul Mackerras56f89f362014-06-30 20:51:09 +100037#include <linux/seqlock.h>
Eric Auger9016cfb2015-09-18 22:29:44 +080038#include <linux/irqbypass.h>
Paul Mackerrase4d57e12014-06-30 20:51:12 +100039#include <trace/events/kvm.h>
Gregory Haskinsd34e6b12009-07-07 17:08:49 -040040
Andre Przywaraaf669ac2015-03-26 14:39:29 +000041#include <kvm/iodev.h>
Gregory Haskins721eecbf2009-05-20 10:30:49 -040042
Paul Mackerras297e2102014-06-30 20:51:13 +100043#ifdef CONFIG_HAVE_KVM_IRQFD
Gregory Haskins721eecbf2009-05-20 10:30:49 -040044
Paolo Bonzini36343f62016-10-26 13:35:56 +020045static struct workqueue_struct *irqfd_cleanup_wq;
Gregory Haskins721eecbf2009-05-20 10:30:49 -040046
Peter Xu654f1f12019-05-05 16:56:42 +080047bool __attribute__((weak))
48kvm_arch_irqfd_allowed(struct kvm *kvm, struct kvm_irqfd *args)
49{
50 return true;
51}
52
Gregory Haskins721eecbf2009-05-20 10:30:49 -040053static void
54irqfd_inject(struct work_struct *work)
55{
Eric Auger166c9772015-09-18 22:29:42 +080056 struct kvm_kernel_irqfd *irqfd =
57 container_of(work, struct kvm_kernel_irqfd, inject);
Gregory Haskins721eecbf2009-05-20 10:30:49 -040058 struct kvm *kvm = irqfd->kvm;
59
Alex Williamson7a844282012-09-21 11:58:03 -060060 if (!irqfd->resampler) {
Yang Zhangaa2fbe62013-04-11 19:21:40 +080061 kvm_set_irq(kvm, KVM_USERSPACE_IRQ_SOURCE_ID, irqfd->gsi, 1,
62 false);
63 kvm_set_irq(kvm, KVM_USERSPACE_IRQ_SOURCE_ID, irqfd->gsi, 0,
64 false);
Alex Williamson7a844282012-09-21 11:58:03 -060065 } else
66 kvm_set_irq(kvm, KVM_IRQFD_RESAMPLE_IRQ_SOURCE_ID,
Yang Zhangaa2fbe62013-04-11 19:21:40 +080067 irqfd->gsi, 1, false);
Alex Williamson7a844282012-09-21 11:58:03 -060068}
69
70/*
71 * Since resampler irqfds share an IRQ source ID, we de-assert once
72 * then notify all of the resampler irqfds using this GSI. We can't
73 * do multiple de-asserts or we risk racing with incoming re-asserts.
74 */
75static void
76irqfd_resampler_ack(struct kvm_irq_ack_notifier *kian)
77{
Eric Auger166c9772015-09-18 22:29:42 +080078 struct kvm_kernel_irqfd_resampler *resampler;
Christian Borntraeger719d93c2014-01-16 13:44:20 +010079 struct kvm *kvm;
Eric Auger166c9772015-09-18 22:29:42 +080080 struct kvm_kernel_irqfd *irqfd;
Christian Borntraeger719d93c2014-01-16 13:44:20 +010081 int idx;
Alex Williamson7a844282012-09-21 11:58:03 -060082
Eric Auger166c9772015-09-18 22:29:42 +080083 resampler = container_of(kian,
84 struct kvm_kernel_irqfd_resampler, notifier);
Christian Borntraeger719d93c2014-01-16 13:44:20 +010085 kvm = resampler->kvm;
Alex Williamson7a844282012-09-21 11:58:03 -060086
Christian Borntraeger719d93c2014-01-16 13:44:20 +010087 kvm_set_irq(kvm, KVM_IRQFD_RESAMPLE_IRQ_SOURCE_ID,
Yang Zhangaa2fbe62013-04-11 19:21:40 +080088 resampler->notifier.gsi, 0, false);
Alex Williamson7a844282012-09-21 11:58:03 -060089
Christian Borntraeger719d93c2014-01-16 13:44:20 +010090 idx = srcu_read_lock(&kvm->irq_srcu);
Alex Williamson7a844282012-09-21 11:58:03 -060091
92 list_for_each_entry_rcu(irqfd, &resampler->list, resampler_link)
93 eventfd_signal(irqfd->resamplefd, 1);
94
Christian Borntraeger719d93c2014-01-16 13:44:20 +010095 srcu_read_unlock(&kvm->irq_srcu, idx);
Alex Williamson7a844282012-09-21 11:58:03 -060096}
97
98static void
Eric Auger166c9772015-09-18 22:29:42 +080099irqfd_resampler_shutdown(struct kvm_kernel_irqfd *irqfd)
Alex Williamson7a844282012-09-21 11:58:03 -0600100{
Eric Auger166c9772015-09-18 22:29:42 +0800101 struct kvm_kernel_irqfd_resampler *resampler = irqfd->resampler;
Alex Williamson7a844282012-09-21 11:58:03 -0600102 struct kvm *kvm = resampler->kvm;
103
104 mutex_lock(&kvm->irqfds.resampler_lock);
105
106 list_del_rcu(&irqfd->resampler_link);
Christian Borntraeger719d93c2014-01-16 13:44:20 +0100107 synchronize_srcu(&kvm->irq_srcu);
Alex Williamson7a844282012-09-21 11:58:03 -0600108
109 if (list_empty(&resampler->list)) {
110 list_del(&resampler->link);
111 kvm_unregister_irq_ack_notifier(kvm, &resampler->notifier);
112 kvm_set_irq(kvm, KVM_IRQFD_RESAMPLE_IRQ_SOURCE_ID,
Yang Zhangaa2fbe62013-04-11 19:21:40 +0800113 resampler->notifier.gsi, 0, false);
Alex Williamson7a844282012-09-21 11:58:03 -0600114 kfree(resampler);
115 }
116
117 mutex_unlock(&kvm->irqfds.resampler_lock);
Gregory Haskins721eecbf2009-05-20 10:30:49 -0400118}
119
120/*
121 * Race-free decouple logic (ordering is critical)
122 */
123static void
124irqfd_shutdown(struct work_struct *work)
125{
Eric Auger166c9772015-09-18 22:29:42 +0800126 struct kvm_kernel_irqfd *irqfd =
127 container_of(work, struct kvm_kernel_irqfd, shutdown);
Lan Tianyub5020a82017-12-21 21:10:36 -0500128 struct kvm *kvm = irqfd->kvm;
Michael S. Tsirkinb6a114d2010-01-13 19:12:30 +0200129 u64 cnt;
Gregory Haskins721eecbf2009-05-20 10:30:49 -0400130
Lan Tianyub5020a82017-12-21 21:10:36 -0500131 /* Make sure irqfd has been initalized in assign path. */
132 synchronize_srcu(&kvm->irq_srcu);
133
Gregory Haskins721eecbf2009-05-20 10:30:49 -0400134 /*
135 * Synchronize with the wait-queue and unhook ourselves to prevent
136 * further events.
137 */
Michael S. Tsirkinb6a114d2010-01-13 19:12:30 +0200138 eventfd_ctx_remove_wait_queue(irqfd->eventfd, &irqfd->wait, &cnt);
Gregory Haskins721eecbf2009-05-20 10:30:49 -0400139
140 /*
141 * We know no new events will be scheduled at this point, so block
142 * until all previously outstanding events have completed
143 */
Tejun Heo43829732012-08-20 14:51:24 -0700144 flush_work(&irqfd->inject);
Gregory Haskins721eecbf2009-05-20 10:30:49 -0400145
Alex Williamson7a844282012-09-21 11:58:03 -0600146 if (irqfd->resampler) {
147 irqfd_resampler_shutdown(irqfd);
148 eventfd_ctx_put(irqfd->resamplefd);
149 }
150
Gregory Haskins721eecbf2009-05-20 10:30:49 -0400151 /*
152 * It is now safe to release the object's resources
153 */
Eric Auger9016cfb2015-09-18 22:29:44 +0800154#ifdef CONFIG_HAVE_KVM_IRQ_BYPASS
155 irq_bypass_unregister_consumer(&irqfd->consumer);
156#endif
Gregory Haskins721eecbf2009-05-20 10:30:49 -0400157 eventfd_ctx_put(irqfd->eventfd);
158 kfree(irqfd);
159}
160
161
162/* assumes kvm->irqfds.lock is held */
163static bool
Eric Auger166c9772015-09-18 22:29:42 +0800164irqfd_is_active(struct kvm_kernel_irqfd *irqfd)
Gregory Haskins721eecbf2009-05-20 10:30:49 -0400165{
166 return list_empty(&irqfd->list) ? false : true;
167}
168
169/*
170 * Mark the irqfd as inactive and schedule it for removal
171 *
172 * assumes kvm->irqfds.lock is held
173 */
174static void
Eric Auger166c9772015-09-18 22:29:42 +0800175irqfd_deactivate(struct kvm_kernel_irqfd *irqfd)
Gregory Haskins721eecbf2009-05-20 10:30:49 -0400176{
177 BUG_ON(!irqfd_is_active(irqfd));
178
179 list_del_init(&irqfd->list);
180
Paolo Bonzini36343f62016-10-26 13:35:56 +0200181 queue_work(irqfd_cleanup_wq, &irqfd->shutdown);
Gregory Haskins721eecbf2009-05-20 10:30:49 -0400182}
183
Paolo Bonzinib97e6de2015-10-28 19:16:47 +0100184int __attribute__((weak)) kvm_arch_set_irq_inatomic(
Andrey Smetaninc9a5ecc2015-10-16 10:07:47 +0300185 struct kvm_kernel_irq_routing_entry *irq,
186 struct kvm *kvm, int irq_source_id,
187 int level,
188 bool line_status)
189{
190 return -EWOULDBLOCK;
191}
192
Gregory Haskins721eecbf2009-05-20 10:30:49 -0400193/*
194 * Called with wqh->lock held and interrupts disabled
195 */
196static int
Ingo Molnarac6424b2017-06-20 12:06:13 +0200197irqfd_wakeup(wait_queue_entry_t *wait, unsigned mode, int sync, void *key)
Gregory Haskins721eecbf2009-05-20 10:30:49 -0400198{
Eric Auger166c9772015-09-18 22:29:42 +0800199 struct kvm_kernel_irqfd *irqfd =
200 container_of(wait, struct kvm_kernel_irqfd, wait);
Al Viro3ad6f932017-07-03 20:14:56 -0400201 __poll_t flags = key_to_poll(key);
Paul Mackerras56f89f362014-06-30 20:51:09 +1000202 struct kvm_kernel_irq_routing_entry irq;
Michael S. Tsirkinbd2b53b2010-11-18 19:09:08 +0200203 struct kvm *kvm = irqfd->kvm;
Paul Mackerras56f89f362014-06-30 20:51:09 +1000204 unsigned seq;
Christian Borntraeger719d93c2014-01-16 13:44:20 +0100205 int idx;
Gregory Haskins721eecbf2009-05-20 10:30:49 -0400206
Linus Torvaldsa9a08842018-02-11 14:34:03 -0800207 if (flags & EPOLLIN) {
Christian Borntraeger719d93c2014-01-16 13:44:20 +0100208 idx = srcu_read_lock(&kvm->irq_srcu);
Paul Mackerras56f89f362014-06-30 20:51:09 +1000209 do {
210 seq = read_seqcount_begin(&irqfd->irq_entry_sc);
211 irq = irqfd->irq_entry;
212 } while (read_seqcount_retry(&irqfd->irq_entry_sc, seq));
Gregory Haskins721eecbf2009-05-20 10:30:49 -0400213 /* An event has been signaled, inject an interrupt */
Paolo Bonzinib97e6de2015-10-28 19:16:47 +0100214 if (kvm_arch_set_irq_inatomic(&irq, kvm,
215 KVM_USERSPACE_IRQ_SOURCE_ID, 1,
216 false) == -EWOULDBLOCK)
Michael S. Tsirkinbd2b53b2010-11-18 19:09:08 +0200217 schedule_work(&irqfd->inject);
Christian Borntraeger719d93c2014-01-16 13:44:20 +0100218 srcu_read_unlock(&kvm->irq_srcu, idx);
Michael S. Tsirkinbd2b53b2010-11-18 19:09:08 +0200219 }
Gregory Haskins721eecbf2009-05-20 10:30:49 -0400220
Linus Torvaldsa9a08842018-02-11 14:34:03 -0800221 if (flags & EPOLLHUP) {
Gregory Haskins721eecbf2009-05-20 10:30:49 -0400222 /* The eventfd is closing, detach from KVM */
Sebastian Andrzej Siewiorca0488a2019-03-15 18:58:15 +0100223 unsigned long iflags;
Gregory Haskins721eecbf2009-05-20 10:30:49 -0400224
Sebastian Andrzej Siewiorca0488a2019-03-15 18:58:15 +0100225 spin_lock_irqsave(&kvm->irqfds.lock, iflags);
Gregory Haskins721eecbf2009-05-20 10:30:49 -0400226
227 /*
228 * We must check if someone deactivated the irqfd before
229 * we could acquire the irqfds.lock since the item is
230 * deactivated from the KVM side before it is unhooked from
231 * the wait-queue. If it is already deactivated, we can
232 * simply return knowing the other side will cleanup for us.
233 * We cannot race against the irqfd going away since the
234 * other side is required to acquire wqh->lock, which we hold
235 */
236 if (irqfd_is_active(irqfd))
237 irqfd_deactivate(irqfd);
238
Sebastian Andrzej Siewiorca0488a2019-03-15 18:58:15 +0100239 spin_unlock_irqrestore(&kvm->irqfds.lock, iflags);
Gregory Haskins721eecbf2009-05-20 10:30:49 -0400240 }
241
242 return 0;
243}
244
245static void
246irqfd_ptable_queue_proc(struct file *file, wait_queue_head_t *wqh,
247 poll_table *pt)
248{
Eric Auger166c9772015-09-18 22:29:42 +0800249 struct kvm_kernel_irqfd *irqfd =
250 container_of(pt, struct kvm_kernel_irqfd, pt);
Gregory Haskins721eecbf2009-05-20 10:30:49 -0400251 add_wait_queue(wqh, &irqfd->wait);
252}
253
Michael S. Tsirkinbd2b53b2010-11-18 19:09:08 +0200254/* Must be called under irqfds.lock */
Eric Auger166c9772015-09-18 22:29:42 +0800255static void irqfd_update(struct kvm *kvm, struct kvm_kernel_irqfd *irqfd)
Michael S. Tsirkinbd2b53b2010-11-18 19:09:08 +0200256{
257 struct kvm_kernel_irq_routing_entry *e;
Paul Mackerras8ba918d2014-06-30 20:51:10 +1000258 struct kvm_kernel_irq_routing_entry entries[KVM_NR_IRQCHIPS];
Andrey Smetanin351dc6472015-10-16 10:07:45 +0300259 int n_entries;
Paul Mackerras8ba918d2014-06-30 20:51:10 +1000260
Paul Mackerras9957c862014-06-30 20:51:11 +1000261 n_entries = kvm_irq_map_gsi(kvm, entries, irqfd->gsi);
Michael S. Tsirkinbd2b53b2010-11-18 19:09:08 +0200262
Paul Mackerras56f89f362014-06-30 20:51:09 +1000263 write_seqcount_begin(&irqfd->irq_entry_sc);
264
Paul Mackerras8ba918d2014-06-30 20:51:10 +1000265 e = entries;
Andrey Smetanin351dc6472015-10-16 10:07:45 +0300266 if (n_entries == 1)
267 irqfd->irq_entry = *e;
268 else
269 irqfd->irq_entry.type = 0;
Paul Mackerras56f89f362014-06-30 20:51:09 +1000270
Paul Mackerras56f89f362014-06-30 20:51:09 +1000271 write_seqcount_end(&irqfd->irq_entry_sc);
Michael S. Tsirkinbd2b53b2010-11-18 19:09:08 +0200272}
273
Eric Auger1a02b272015-09-18 22:29:43 +0800274#ifdef CONFIG_HAVE_KVM_IRQ_BYPASS
275void __attribute__((weak)) kvm_arch_irq_bypass_stop(
276 struct irq_bypass_consumer *cons)
277{
278}
279
280void __attribute__((weak)) kvm_arch_irq_bypass_start(
281 struct irq_bypass_consumer *cons)
282{
283}
Feng Wuf70c20a2015-09-18 22:29:53 +0800284
285int __attribute__((weak)) kvm_arch_update_irqfd_routing(
286 struct kvm *kvm, unsigned int host_irq,
287 uint32_t guest_irq, bool set)
288{
289 return 0;
290}
Eric Auger1a02b272015-09-18 22:29:43 +0800291#endif
292
Gregory Haskins721eecbf2009-05-20 10:30:49 -0400293static int
Alex Williamsond4db2932012-06-29 09:56:08 -0600294kvm_irqfd_assign(struct kvm *kvm, struct kvm_irqfd *args)
Gregory Haskins721eecbf2009-05-20 10:30:49 -0400295{
Eric Auger166c9772015-09-18 22:29:42 +0800296 struct kvm_kernel_irqfd *irqfd, *tmp;
Al Virocffe78d2013-08-30 15:47:17 -0400297 struct fd f;
Alex Williamson7a844282012-09-21 11:58:03 -0600298 struct eventfd_ctx *eventfd = NULL, *resamplefd = NULL;
Gregory Haskins721eecbf2009-05-20 10:30:49 -0400299 int ret;
Al Viroe6c8adc2017-07-03 22:25:56 -0400300 __poll_t events;
Paul Mackerras9957c862014-06-30 20:51:11 +1000301 int idx;
Gregory Haskins721eecbf2009-05-20 10:30:49 -0400302
Eric Auger01c94e62015-03-04 11:14:33 +0100303 if (!kvm_arch_intc_initialized(kvm))
304 return -EAGAIN;
305
Peter Xu654f1f12019-05-05 16:56:42 +0800306 if (!kvm_arch_irqfd_allowed(kvm, args))
307 return -EINVAL;
308
Ben Gardonb12ce362019-02-11 11:02:49 -0800309 irqfd = kzalloc(sizeof(*irqfd), GFP_KERNEL_ACCOUNT);
Gregory Haskins721eecbf2009-05-20 10:30:49 -0400310 if (!irqfd)
311 return -ENOMEM;
312
313 irqfd->kvm = kvm;
Alex Williamsond4db2932012-06-29 09:56:08 -0600314 irqfd->gsi = args->gsi;
Gregory Haskins721eecbf2009-05-20 10:30:49 -0400315 INIT_LIST_HEAD(&irqfd->list);
316 INIT_WORK(&irqfd->inject, irqfd_inject);
317 INIT_WORK(&irqfd->shutdown, irqfd_shutdown);
Paul Mackerras56f89f362014-06-30 20:51:09 +1000318 seqcount_init(&irqfd->irq_entry_sc);
Gregory Haskins721eecbf2009-05-20 10:30:49 -0400319
Al Virocffe78d2013-08-30 15:47:17 -0400320 f = fdget(args->fd);
321 if (!f.file) {
322 ret = -EBADF;
323 goto out;
Gregory Haskins721eecbf2009-05-20 10:30:49 -0400324 }
325
Al Virocffe78d2013-08-30 15:47:17 -0400326 eventfd = eventfd_ctx_fileget(f.file);
Gregory Haskins721eecbf2009-05-20 10:30:49 -0400327 if (IS_ERR(eventfd)) {
328 ret = PTR_ERR(eventfd);
329 goto fail;
330 }
331
332 irqfd->eventfd = eventfd;
333
Alex Williamson7a844282012-09-21 11:58:03 -0600334 if (args->flags & KVM_IRQFD_FLAG_RESAMPLE) {
Eric Auger166c9772015-09-18 22:29:42 +0800335 struct kvm_kernel_irqfd_resampler *resampler;
Alex Williamson7a844282012-09-21 11:58:03 -0600336
337 resamplefd = eventfd_ctx_fdget(args->resamplefd);
338 if (IS_ERR(resamplefd)) {
339 ret = PTR_ERR(resamplefd);
340 goto fail;
341 }
342
343 irqfd->resamplefd = resamplefd;
344 INIT_LIST_HEAD(&irqfd->resampler_link);
345
346 mutex_lock(&kvm->irqfds.resampler_lock);
347
348 list_for_each_entry(resampler,
Alex Williamson49f8a1a2012-12-06 14:44:59 -0700349 &kvm->irqfds.resampler_list, link) {
Alex Williamson7a844282012-09-21 11:58:03 -0600350 if (resampler->notifier.gsi == irqfd->gsi) {
351 irqfd->resampler = resampler;
352 break;
353 }
354 }
355
356 if (!irqfd->resampler) {
Ben Gardonb12ce362019-02-11 11:02:49 -0800357 resampler = kzalloc(sizeof(*resampler),
358 GFP_KERNEL_ACCOUNT);
Alex Williamson7a844282012-09-21 11:58:03 -0600359 if (!resampler) {
360 ret = -ENOMEM;
361 mutex_unlock(&kvm->irqfds.resampler_lock);
362 goto fail;
363 }
364
365 resampler->kvm = kvm;
366 INIT_LIST_HEAD(&resampler->list);
367 resampler->notifier.gsi = irqfd->gsi;
368 resampler->notifier.irq_acked = irqfd_resampler_ack;
369 INIT_LIST_HEAD(&resampler->link);
370
371 list_add(&resampler->link, &kvm->irqfds.resampler_list);
372 kvm_register_irq_ack_notifier(kvm,
373 &resampler->notifier);
374 irqfd->resampler = resampler;
375 }
376
377 list_add_rcu(&irqfd->resampler_link, &irqfd->resampler->list);
Christian Borntraeger719d93c2014-01-16 13:44:20 +0100378 synchronize_srcu(&kvm->irq_srcu);
Alex Williamson7a844282012-09-21 11:58:03 -0600379
380 mutex_unlock(&kvm->irqfds.resampler_lock);
381 }
382
Gregory Haskins721eecbf2009-05-20 10:30:49 -0400383 /*
384 * Install our own custom wake-up handling so we are notified via
385 * a callback whenever someone signals the underlying eventfd
386 */
387 init_waitqueue_func_entry(&irqfd->wait, irqfd_wakeup);
388 init_poll_funcptr(&irqfd->pt, irqfd_ptable_queue_proc);
389
Michael S. Tsirkinf1d1c302010-01-13 18:58:09 +0200390 spin_lock_irq(&kvm->irqfds.lock);
391
392 ret = 0;
393 list_for_each_entry(tmp, &kvm->irqfds.items, list) {
394 if (irqfd->eventfd != tmp->eventfd)
395 continue;
396 /* This fd is used for another irq already. */
397 ret = -EBUSY;
398 spin_unlock_irq(&kvm->irqfds.lock);
399 goto fail;
400 }
401
Paul Mackerras9957c862014-06-30 20:51:11 +1000402 idx = srcu_read_lock(&kvm->irq_srcu);
403 irqfd_update(kvm, irqfd);
Michael S. Tsirkinbd2b53b2010-11-18 19:09:08 +0200404
Gregory Haskins721eecbf2009-05-20 10:30:49 -0400405 list_add_tail(&irqfd->list, &kvm->irqfds.items);
Gregory Haskins721eecbf2009-05-20 10:30:49 -0400406
Cornelia Huck684a0b72014-03-17 19:11:35 +0100407 spin_unlock_irq(&kvm->irqfds.lock);
408
Gregory Haskins721eecbf2009-05-20 10:30:49 -0400409 /*
410 * Check if there was an event already pending on the eventfd
411 * before we registered, and trigger it as if we didn't miss it.
412 */
Christoph Hellwig9965ed172018-03-05 07:26:05 -0800413 events = vfs_poll(f.file, &irqfd->pt);
Cornelia Huck684a0b72014-03-17 19:11:35 +0100414
Linus Torvaldsa9a08842018-02-11 14:34:03 -0800415 if (events & EPOLLIN)
Gregory Haskins721eecbf2009-05-20 10:30:49 -0400416 schedule_work(&irqfd->inject);
417
Eric Auger9016cfb2015-09-18 22:29:44 +0800418#ifdef CONFIG_HAVE_KVM_IRQ_BYPASS
Alex Williamson14717e22016-05-05 11:58:35 -0600419 if (kvm_arch_has_irq_bypass()) {
420 irqfd->consumer.token = (void *)irqfd->eventfd;
421 irqfd->consumer.add_producer = kvm_arch_irq_bypass_add_producer;
422 irqfd->consumer.del_producer = kvm_arch_irq_bypass_del_producer;
423 irqfd->consumer.stop = kvm_arch_irq_bypass_stop;
424 irqfd->consumer.start = kvm_arch_irq_bypass_start;
425 ret = irq_bypass_register_consumer(&irqfd->consumer);
426 if (ret)
427 pr_info("irq bypass consumer (token %p) registration fails: %d\n",
Eric Auger9016cfb2015-09-18 22:29:44 +0800428 irqfd->consumer.token, ret);
Alex Williamson14717e22016-05-05 11:58:35 -0600429 }
Eric Auger9016cfb2015-09-18 22:29:44 +0800430#endif
Gregory Haskins721eecbf2009-05-20 10:30:49 -0400431
Lan Tianyub5020a82017-12-21 21:10:36 -0500432 srcu_read_unlock(&kvm->irq_srcu, idx);
Paolo Bonzini9432a312018-05-28 13:31:13 +0200433
434 /*
435 * do not drop the file until the irqfd is fully initialized, otherwise
436 * we might race against the EPOLLHUP
437 */
438 fdput(f);
Gregory Haskins721eecbf2009-05-20 10:30:49 -0400439 return 0;
440
441fail:
Alex Williamson7a844282012-09-21 11:58:03 -0600442 if (irqfd->resampler)
443 irqfd_resampler_shutdown(irqfd);
444
445 if (resamplefd && !IS_ERR(resamplefd))
446 eventfd_ctx_put(resamplefd);
447
Gregory Haskins721eecbf2009-05-20 10:30:49 -0400448 if (eventfd && !IS_ERR(eventfd))
449 eventfd_ctx_put(eventfd);
450
Al Virocffe78d2013-08-30 15:47:17 -0400451 fdput(f);
Gregory Haskins721eecbf2009-05-20 10:30:49 -0400452
Al Virocffe78d2013-08-30 15:47:17 -0400453out:
Gregory Haskins721eecbf2009-05-20 10:30:49 -0400454 kfree(irqfd);
455 return ret;
456}
Paolo Bonzinic77dcac2014-08-06 14:24:45 +0200457
458bool kvm_irq_has_notifier(struct kvm *kvm, unsigned irqchip, unsigned pin)
459{
460 struct kvm_irq_ack_notifier *kian;
461 int gsi, idx;
462
463 idx = srcu_read_lock(&kvm->irq_srcu);
464 gsi = kvm_irq_map_chip_pin(kvm, irqchip, pin);
465 if (gsi != -1)
466 hlist_for_each_entry_rcu(kian, &kvm->irq_ack_notifier_list,
467 link)
468 if (kian->gsi == gsi) {
469 srcu_read_unlock(&kvm->irq_srcu, idx);
470 return true;
471 }
472
473 srcu_read_unlock(&kvm->irq_srcu, idx);
474
475 return false;
476}
477EXPORT_SYMBOL_GPL(kvm_irq_has_notifier);
478
Andrey Smetaninba1aefc2015-10-16 10:07:46 +0300479void kvm_notify_acked_gsi(struct kvm *kvm, int gsi)
Paolo Bonzinic77dcac2014-08-06 14:24:45 +0200480{
481 struct kvm_irq_ack_notifier *kian;
Andrey Smetaninba1aefc2015-10-16 10:07:46 +0300482
483 hlist_for_each_entry_rcu(kian, &kvm->irq_ack_notifier_list,
484 link)
485 if (kian->gsi == gsi)
486 kian->irq_acked(kian);
487}
488
489void kvm_notify_acked_irq(struct kvm *kvm, unsigned irqchip, unsigned pin)
490{
Paolo Bonzinic77dcac2014-08-06 14:24:45 +0200491 int gsi, idx;
492
493 trace_kvm_ack_irq(irqchip, pin);
494
495 idx = srcu_read_lock(&kvm->irq_srcu);
496 gsi = kvm_irq_map_chip_pin(kvm, irqchip, pin);
497 if (gsi != -1)
Andrey Smetaninba1aefc2015-10-16 10:07:46 +0300498 kvm_notify_acked_gsi(kvm, gsi);
Paolo Bonzinic77dcac2014-08-06 14:24:45 +0200499 srcu_read_unlock(&kvm->irq_srcu, idx);
500}
501
502void kvm_register_irq_ack_notifier(struct kvm *kvm,
503 struct kvm_irq_ack_notifier *kian)
504{
505 mutex_lock(&kvm->irq_lock);
506 hlist_add_head_rcu(&kian->link, &kvm->irq_ack_notifier_list);
507 mutex_unlock(&kvm->irq_lock);
David Hildenbrand993225a2017-04-07 10:50:33 +0200508 kvm_arch_post_irq_ack_notifier_list_update(kvm);
Paolo Bonzinic77dcac2014-08-06 14:24:45 +0200509}
510
511void kvm_unregister_irq_ack_notifier(struct kvm *kvm,
512 struct kvm_irq_ack_notifier *kian)
513{
514 mutex_lock(&kvm->irq_lock);
515 hlist_del_init_rcu(&kian->link);
516 mutex_unlock(&kvm->irq_lock);
517 synchronize_srcu(&kvm->irq_srcu);
David Hildenbrand993225a2017-04-07 10:50:33 +0200518 kvm_arch_post_irq_ack_notifier_list_update(kvm);
Paolo Bonzinic77dcac2014-08-06 14:24:45 +0200519}
Alexander Graf914daba2012-10-09 00:22:59 +0200520#endif
Gregory Haskins721eecbf2009-05-20 10:30:49 -0400521
522void
Gregory Haskinsd34e6b12009-07-07 17:08:49 -0400523kvm_eventfd_init(struct kvm *kvm)
Gregory Haskins721eecbf2009-05-20 10:30:49 -0400524{
Paul Mackerras297e2102014-06-30 20:51:13 +1000525#ifdef CONFIG_HAVE_KVM_IRQFD
Gregory Haskins721eecbf2009-05-20 10:30:49 -0400526 spin_lock_init(&kvm->irqfds.lock);
527 INIT_LIST_HEAD(&kvm->irqfds.items);
Alex Williamson7a844282012-09-21 11:58:03 -0600528 INIT_LIST_HEAD(&kvm->irqfds.resampler_list);
529 mutex_init(&kvm->irqfds.resampler_lock);
Alexander Graf914daba2012-10-09 00:22:59 +0200530#endif
Gregory Haskinsd34e6b12009-07-07 17:08:49 -0400531 INIT_LIST_HEAD(&kvm->ioeventfds);
Gregory Haskins721eecbf2009-05-20 10:30:49 -0400532}
533
Paul Mackerras297e2102014-06-30 20:51:13 +1000534#ifdef CONFIG_HAVE_KVM_IRQFD
Gregory Haskins721eecbf2009-05-20 10:30:49 -0400535/*
536 * shutdown any irqfd's that match fd+gsi
537 */
538static int
Alex Williamsond4db2932012-06-29 09:56:08 -0600539kvm_irqfd_deassign(struct kvm *kvm, struct kvm_irqfd *args)
Gregory Haskins721eecbf2009-05-20 10:30:49 -0400540{
Eric Auger166c9772015-09-18 22:29:42 +0800541 struct kvm_kernel_irqfd *irqfd, *tmp;
Gregory Haskins721eecbf2009-05-20 10:30:49 -0400542 struct eventfd_ctx *eventfd;
543
Alex Williamsond4db2932012-06-29 09:56:08 -0600544 eventfd = eventfd_ctx_fdget(args->fd);
Gregory Haskins721eecbf2009-05-20 10:30:49 -0400545 if (IS_ERR(eventfd))
546 return PTR_ERR(eventfd);
547
548 spin_lock_irq(&kvm->irqfds.lock);
549
550 list_for_each_entry_safe(irqfd, tmp, &kvm->irqfds.items, list) {
Alex Williamsond4db2932012-06-29 09:56:08 -0600551 if (irqfd->eventfd == eventfd && irqfd->gsi == args->gsi) {
Michael S. Tsirkinbd2b53b2010-11-18 19:09:08 +0200552 /*
Paul Mackerras56f89f362014-06-30 20:51:09 +1000553 * This clearing of irq_entry.type is needed for when
Michael S. Tsirkinc8ce0572011-03-06 13:03:26 +0200554 * another thread calls kvm_irq_routing_update before
555 * we flush workqueue below (we synchronize with
556 * kvm_irq_routing_update using irqfds.lock).
Michael S. Tsirkinbd2b53b2010-11-18 19:09:08 +0200557 */
Paul Mackerras56f89f362014-06-30 20:51:09 +1000558 write_seqcount_begin(&irqfd->irq_entry_sc);
559 irqfd->irq_entry.type = 0;
560 write_seqcount_end(&irqfd->irq_entry_sc);
Gregory Haskins721eecbf2009-05-20 10:30:49 -0400561 irqfd_deactivate(irqfd);
Michael S. Tsirkinbd2b53b2010-11-18 19:09:08 +0200562 }
Gregory Haskins721eecbf2009-05-20 10:30:49 -0400563 }
564
565 spin_unlock_irq(&kvm->irqfds.lock);
566 eventfd_ctx_put(eventfd);
567
568 /*
569 * Block until we know all outstanding shutdown jobs have completed
570 * so that we guarantee there will not be any more interrupts on this
571 * gsi once this deassign function returns.
572 */
Paolo Bonzini36343f62016-10-26 13:35:56 +0200573 flush_workqueue(irqfd_cleanup_wq);
Gregory Haskins721eecbf2009-05-20 10:30:49 -0400574
575 return 0;
576}
577
578int
Alex Williamsond4db2932012-06-29 09:56:08 -0600579kvm_irqfd(struct kvm *kvm, struct kvm_irqfd *args)
Gregory Haskins721eecbf2009-05-20 10:30:49 -0400580{
Alex Williamson7a844282012-09-21 11:58:03 -0600581 if (args->flags & ~(KVM_IRQFD_FLAG_DEASSIGN | KVM_IRQFD_FLAG_RESAMPLE))
Alex Williamson326cf032012-06-29 09:56:24 -0600582 return -EINVAL;
583
Alex Williamsond4db2932012-06-29 09:56:08 -0600584 if (args->flags & KVM_IRQFD_FLAG_DEASSIGN)
585 return kvm_irqfd_deassign(kvm, args);
Gregory Haskins721eecbf2009-05-20 10:30:49 -0400586
Alex Williamsond4db2932012-06-29 09:56:08 -0600587 return kvm_irqfd_assign(kvm, args);
Gregory Haskins721eecbf2009-05-20 10:30:49 -0400588}
589
590/*
591 * This function is called as the kvm VM fd is being released. Shutdown all
592 * irqfds that still remain open
593 */
594void
595kvm_irqfd_release(struct kvm *kvm)
596{
Eric Auger166c9772015-09-18 22:29:42 +0800597 struct kvm_kernel_irqfd *irqfd, *tmp;
Gregory Haskins721eecbf2009-05-20 10:30:49 -0400598
599 spin_lock_irq(&kvm->irqfds.lock);
600
601 list_for_each_entry_safe(irqfd, tmp, &kvm->irqfds.items, list)
602 irqfd_deactivate(irqfd);
603
604 spin_unlock_irq(&kvm->irqfds.lock);
605
606 /*
607 * Block until we know all outstanding shutdown jobs have completed
608 * since we do not take a kvm* reference.
609 */
Paolo Bonzini36343f62016-10-26 13:35:56 +0200610 flush_workqueue(irqfd_cleanup_wq);
Gregory Haskins721eecbf2009-05-20 10:30:49 -0400611
612}
613
614/*
Paul Mackerras9957c862014-06-30 20:51:11 +1000615 * Take note of a change in irq routing.
Christian Borntraeger719d93c2014-01-16 13:44:20 +0100616 * Caller must invoke synchronize_srcu(&kvm->irq_srcu) afterwards.
Michael S. Tsirkinbd2b53b2010-11-18 19:09:08 +0200617 */
Paul Mackerras9957c862014-06-30 20:51:11 +1000618void kvm_irq_routing_update(struct kvm *kvm)
Michael S. Tsirkinbd2b53b2010-11-18 19:09:08 +0200619{
Eric Auger166c9772015-09-18 22:29:42 +0800620 struct kvm_kernel_irqfd *irqfd;
Michael S. Tsirkinbd2b53b2010-11-18 19:09:08 +0200621
622 spin_lock_irq(&kvm->irqfds.lock);
623
Feng Wuf70c20a2015-09-18 22:29:53 +0800624 list_for_each_entry(irqfd, &kvm->irqfds.items, list) {
Paul Mackerras9957c862014-06-30 20:51:11 +1000625 irqfd_update(kvm, irqfd);
Michael S. Tsirkinbd2b53b2010-11-18 19:09:08 +0200626
Feng Wuf70c20a2015-09-18 22:29:53 +0800627#ifdef CONFIG_HAVE_KVM_IRQ_BYPASS
628 if (irqfd->producer) {
629 int ret = kvm_arch_update_irqfd_routing(
630 irqfd->kvm, irqfd->producer->irq,
631 irqfd->gsi, 1);
632 WARN_ON(ret);
633 }
634#endif
635 }
636
Michael S. Tsirkinbd2b53b2010-11-18 19:09:08 +0200637 spin_unlock_irq(&kvm->irqfds.lock);
638}
639
Paolo Bonzini36343f62016-10-26 13:35:56 +0200640/*
641 * create a host-wide workqueue for issuing deferred shutdown requests
642 * aggregated from all vm* instances. We need our own isolated
643 * queue to ease flushing work items when a VM exits.
644 */
645int kvm_irqfd_init(void)
646{
647 irqfd_cleanup_wq = alloc_workqueue("kvm-irqfd-cleanup", 0, 0);
648 if (!irqfd_cleanup_wq)
649 return -ENOMEM;
650
651 return 0;
652}
653
Cornelia Hucka0f155e2013-02-28 12:33:18 +0100654void kvm_irqfd_exit(void)
Gregory Haskins721eecbf2009-05-20 10:30:49 -0400655{
Paolo Bonzini36343f62016-10-26 13:35:56 +0200656 destroy_workqueue(irqfd_cleanup_wq);
Gregory Haskins721eecbf2009-05-20 10:30:49 -0400657}
Alexander Graf914daba2012-10-09 00:22:59 +0200658#endif
Gregory Haskinsd34e6b12009-07-07 17:08:49 -0400659
660/*
661 * --------------------------------------------------------------------
662 * ioeventfd: translate a PIO/MMIO memory write to an eventfd signal.
663 *
664 * userspace can register a PIO/MMIO address with an eventfd for receiving
665 * notification when the memory has been touched.
666 * --------------------------------------------------------------------
667 */
668
669struct _ioeventfd {
670 struct list_head list;
671 u64 addr;
672 int length;
673 struct eventfd_ctx *eventfd;
674 u64 datamatch;
675 struct kvm_io_device dev;
Michael S. Tsirkin05e07f92013-04-04 13:27:21 +0300676 u8 bus_idx;
Gregory Haskinsd34e6b12009-07-07 17:08:49 -0400677 bool wildcard;
678};
679
680static inline struct _ioeventfd *
681to_ioeventfd(struct kvm_io_device *dev)
682{
683 return container_of(dev, struct _ioeventfd, dev);
684}
685
686static void
687ioeventfd_release(struct _ioeventfd *p)
688{
689 eventfd_ctx_put(p->eventfd);
690 list_del(&p->list);
691 kfree(p);
692}
693
694static bool
695ioeventfd_in_range(struct _ioeventfd *p, gpa_t addr, int len, const void *val)
696{
697 u64 _val;
698
Michael S. Tsirkinf848a5a2014-03-31 21:50:38 +0300699 if (addr != p->addr)
700 /* address must be precise for a hit */
701 return false;
702
703 if (!p->length)
704 /* length = 0 means only look at the address, so always a hit */
705 return true;
706
707 if (len != p->length)
Gregory Haskinsd34e6b12009-07-07 17:08:49 -0400708 /* address-range must be precise for a hit */
709 return false;
710
711 if (p->wildcard)
712 /* all else equal, wildcard is always a hit */
713 return true;
714
715 /* otherwise, we have to actually compare the data */
716
717 BUG_ON(!IS_ALIGNED((unsigned long)val, len));
718
719 switch (len) {
720 case 1:
721 _val = *(u8 *)val;
722 break;
723 case 2:
724 _val = *(u16 *)val;
725 break;
726 case 4:
727 _val = *(u32 *)val;
728 break;
729 case 8:
730 _val = *(u64 *)val;
731 break;
732 default:
733 return false;
734 }
735
736 return _val == p->datamatch ? true : false;
737}
738
739/* MMIO/PIO writes trigger an event if the addr/val match */
740static int
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +0000741ioeventfd_write(struct kvm_vcpu *vcpu, struct kvm_io_device *this, gpa_t addr,
742 int len, const void *val)
Gregory Haskinsd34e6b12009-07-07 17:08:49 -0400743{
744 struct _ioeventfd *p = to_ioeventfd(this);
745
746 if (!ioeventfd_in_range(p, addr, len, val))
747 return -EOPNOTSUPP;
748
749 eventfd_signal(p->eventfd, 1);
750 return 0;
751}
752
753/*
754 * This function is called as KVM is completely shutting down. We do not
755 * need to worry about locking just nuke anything we have as quickly as possible
756 */
757static void
758ioeventfd_destructor(struct kvm_io_device *this)
759{
760 struct _ioeventfd *p = to_ioeventfd(this);
761
762 ioeventfd_release(p);
763}
764
765static const struct kvm_io_device_ops ioeventfd_ops = {
766 .write = ioeventfd_write,
767 .destructor = ioeventfd_destructor,
768};
769
770/* assumes kvm->slots_lock held */
771static bool
772ioeventfd_check_collision(struct kvm *kvm, struct _ioeventfd *p)
773{
774 struct _ioeventfd *_p;
775
776 list_for_each_entry(_p, &kvm->ioeventfds, list)
Michael S. Tsirkin05e07f92013-04-04 13:27:21 +0300777 if (_p->bus_idx == p->bus_idx &&
Michael S. Tsirkinf848a5a2014-03-31 21:50:38 +0300778 _p->addr == p->addr &&
779 (!_p->length || !p->length ||
780 (_p->length == p->length &&
781 (_p->wildcard || p->wildcard ||
782 _p->datamatch == p->datamatch))))
Gregory Haskinsd34e6b12009-07-07 17:08:49 -0400783 return true;
784
785 return false;
786}
787
Cornelia Huck2b834512013-02-28 12:33:20 +0100788static enum kvm_bus ioeventfd_bus_from_flags(__u32 flags)
789{
790 if (flags & KVM_IOEVENTFD_FLAG_PIO)
791 return KVM_PIO_BUS;
792 if (flags & KVM_IOEVENTFD_FLAG_VIRTIO_CCW_NOTIFY)
793 return KVM_VIRTIO_CCW_NOTIFY_BUS;
794 return KVM_MMIO_BUS;
795}
796
Jason Wang85da11c2015-09-15 14:41:55 +0800797static int kvm_assign_ioeventfd_idx(struct kvm *kvm,
798 enum kvm_bus bus_idx,
799 struct kvm_ioeventfd *args)
Gregory Haskinsd34e6b12009-07-07 17:08:49 -0400800{
Gregory Haskinsd34e6b12009-07-07 17:08:49 -0400801
Jason Wang85da11c2015-09-15 14:41:55 +0800802 struct eventfd_ctx *eventfd;
803 struct _ioeventfd *p;
804 int ret;
Michael S. Tsirkinf848a5a2014-03-31 21:50:38 +0300805
Gregory Haskinsd34e6b12009-07-07 17:08:49 -0400806 eventfd = eventfd_ctx_fdget(args->fd);
807 if (IS_ERR(eventfd))
808 return PTR_ERR(eventfd);
809
Ben Gardonb12ce362019-02-11 11:02:49 -0800810 p = kzalloc(sizeof(*p), GFP_KERNEL_ACCOUNT);
Gregory Haskinsd34e6b12009-07-07 17:08:49 -0400811 if (!p) {
812 ret = -ENOMEM;
813 goto fail;
814 }
815
816 INIT_LIST_HEAD(&p->list);
817 p->addr = args->addr;
Michael S. Tsirkin05e07f92013-04-04 13:27:21 +0300818 p->bus_idx = bus_idx;
Gregory Haskinsd34e6b12009-07-07 17:08:49 -0400819 p->length = args->len;
820 p->eventfd = eventfd;
821
822 /* The datamatch feature is optional, otherwise this is a wildcard */
823 if (args->flags & KVM_IOEVENTFD_FLAG_DATAMATCH)
824 p->datamatch = args->datamatch;
825 else
826 p->wildcard = true;
827
Marcelo Tosatti79fac952009-12-23 14:35:26 -0200828 mutex_lock(&kvm->slots_lock);
Gregory Haskinsd34e6b12009-07-07 17:08:49 -0400829
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300830 /* Verify that there isn't a match already */
Gregory Haskinsd34e6b12009-07-07 17:08:49 -0400831 if (ioeventfd_check_collision(kvm, p)) {
832 ret = -EEXIST;
833 goto unlock_fail;
834 }
835
836 kvm_iodevice_init(&p->dev, &ioeventfd_ops);
837
Sasha Levin743eeb02011-07-27 16:00:48 +0300838 ret = kvm_io_bus_register_dev(kvm, bus_idx, p->addr, p->length,
839 &p->dev);
Gregory Haskinsd34e6b12009-07-07 17:08:49 -0400840 if (ret < 0)
841 goto unlock_fail;
842
Christian Borntraeger4a12f952017-07-07 10:51:38 +0200843 kvm_get_bus(kvm, bus_idx)->ioeventfd_count++;
Gregory Haskinsd34e6b12009-07-07 17:08:49 -0400844 list_add_tail(&p->list, &kvm->ioeventfds);
845
Marcelo Tosatti79fac952009-12-23 14:35:26 -0200846 mutex_unlock(&kvm->slots_lock);
Gregory Haskinsd34e6b12009-07-07 17:08:49 -0400847
848 return 0;
849
850unlock_fail:
Marcelo Tosatti79fac952009-12-23 14:35:26 -0200851 mutex_unlock(&kvm->slots_lock);
Gregory Haskinsd34e6b12009-07-07 17:08:49 -0400852
853fail:
854 kfree(p);
855 eventfd_ctx_put(eventfd);
856
857 return ret;
858}
859
860static int
Jason Wang85da11c2015-09-15 14:41:55 +0800861kvm_deassign_ioeventfd_idx(struct kvm *kvm, enum kvm_bus bus_idx,
862 struct kvm_ioeventfd *args)
Gregory Haskinsd34e6b12009-07-07 17:08:49 -0400863{
Gregory Haskinsd34e6b12009-07-07 17:08:49 -0400864 struct _ioeventfd *p, *tmp;
865 struct eventfd_ctx *eventfd;
Christian Borntraeger4a12f952017-07-07 10:51:38 +0200866 struct kvm_io_bus *bus;
Gregory Haskinsd34e6b12009-07-07 17:08:49 -0400867 int ret = -ENOENT;
868
869 eventfd = eventfd_ctx_fdget(args->fd);
870 if (IS_ERR(eventfd))
871 return PTR_ERR(eventfd);
872
Marcelo Tosatti79fac952009-12-23 14:35:26 -0200873 mutex_lock(&kvm->slots_lock);
Gregory Haskinsd34e6b12009-07-07 17:08:49 -0400874
875 list_for_each_entry_safe(p, tmp, &kvm->ioeventfds, list) {
876 bool wildcard = !(args->flags & KVM_IOEVENTFD_FLAG_DATAMATCH);
877
Michael S. Tsirkin05e07f92013-04-04 13:27:21 +0300878 if (p->bus_idx != bus_idx ||
879 p->eventfd != eventfd ||
Gregory Haskinsd34e6b12009-07-07 17:08:49 -0400880 p->addr != args->addr ||
881 p->length != args->len ||
882 p->wildcard != wildcard)
883 continue;
884
885 if (!p->wildcard && p->datamatch != args->datamatch)
886 continue;
887
Marcelo Tosattie93f8a02009-12-23 14:35:24 -0200888 kvm_io_bus_unregister_dev(kvm, bus_idx, &p->dev);
Christian Borntraeger4a12f952017-07-07 10:51:38 +0200889 bus = kvm_get_bus(kvm, bus_idx);
890 if (bus)
891 bus->ioeventfd_count--;
Gregory Haskinsd34e6b12009-07-07 17:08:49 -0400892 ioeventfd_release(p);
893 ret = 0;
894 break;
895 }
896
Marcelo Tosatti79fac952009-12-23 14:35:26 -0200897 mutex_unlock(&kvm->slots_lock);
Gregory Haskinsd34e6b12009-07-07 17:08:49 -0400898
899 eventfd_ctx_put(eventfd);
900
901 return ret;
902}
903
Jason Wang85da11c2015-09-15 14:41:55 +0800904static int kvm_deassign_ioeventfd(struct kvm *kvm, struct kvm_ioeventfd *args)
905{
906 enum kvm_bus bus_idx = ioeventfd_bus_from_flags(args->flags);
Jason Wangeefd6b02015-09-15 14:41:56 +0800907 int ret = kvm_deassign_ioeventfd_idx(kvm, bus_idx, args);
Jason Wang85da11c2015-09-15 14:41:55 +0800908
Jason Wangeefd6b02015-09-15 14:41:56 +0800909 if (!args->len && bus_idx == KVM_MMIO_BUS)
910 kvm_deassign_ioeventfd_idx(kvm, KVM_FAST_MMIO_BUS, args);
911
912 return ret;
Jason Wang85da11c2015-09-15 14:41:55 +0800913}
914
915static int
916kvm_assign_ioeventfd(struct kvm *kvm, struct kvm_ioeventfd *args)
917{
918 enum kvm_bus bus_idx;
Jason Wangeefd6b02015-09-15 14:41:56 +0800919 int ret;
Jason Wang85da11c2015-09-15 14:41:55 +0800920
921 bus_idx = ioeventfd_bus_from_flags(args->flags);
922 /* must be natural-word sized, or 0 to ignore length */
923 switch (args->len) {
924 case 0:
925 case 1:
926 case 2:
927 case 4:
928 case 8:
929 break;
930 default:
931 return -EINVAL;
932 }
933
934 /* check for range overflow */
935 if (args->addr + args->len < args->addr)
936 return -EINVAL;
937
938 /* check for extra flags that we don't understand */
939 if (args->flags & ~KVM_IOEVENTFD_VALID_FLAG_MASK)
940 return -EINVAL;
941
942 /* ioeventfd with no length can't be combined with DATAMATCH */
Jason Wange9ea5062015-09-15 14:41:59 +0800943 if (!args->len && (args->flags & KVM_IOEVENTFD_FLAG_DATAMATCH))
Jason Wang85da11c2015-09-15 14:41:55 +0800944 return -EINVAL;
945
Jason Wangeefd6b02015-09-15 14:41:56 +0800946 ret = kvm_assign_ioeventfd_idx(kvm, bus_idx, args);
947 if (ret)
948 goto fail;
949
950 /* When length is ignored, MMIO is also put on a separate bus, for
951 * faster lookups.
952 */
953 if (!args->len && bus_idx == KVM_MMIO_BUS) {
954 ret = kvm_assign_ioeventfd_idx(kvm, KVM_FAST_MMIO_BUS, args);
955 if (ret < 0)
956 goto fast_fail;
957 }
958
959 return 0;
960
961fast_fail:
962 kvm_deassign_ioeventfd_idx(kvm, bus_idx, args);
963fail:
964 return ret;
Jason Wang85da11c2015-09-15 14:41:55 +0800965}
966
Gregory Haskinsd34e6b12009-07-07 17:08:49 -0400967int
968kvm_ioeventfd(struct kvm *kvm, struct kvm_ioeventfd *args)
969{
970 if (args->flags & KVM_IOEVENTFD_FLAG_DEASSIGN)
971 return kvm_deassign_ioeventfd(kvm, args);
972
973 return kvm_assign_ioeventfd(kvm, args);
974}