blob: b0fb390943c6949e6a9635277191ee7177bce0c2 [file] [log] [blame]
Gregory Haskins721eecb2009-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 Haskins721eecb2009-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>
Gregory Haskins721eecb2009-05-20 10:30:49 -040026#include <linux/workqueue.h>
27#include <linux/syscalls.h>
28#include <linux/wait.h>
29#include <linux/poll.h>
30#include <linux/file.h>
31#include <linux/list.h>
32#include <linux/eventfd.h>
Gregory Haskinsd34e6b12009-07-07 17:08:49 -040033#include <linux/kernel.h>
Christian Borntraeger719d93c2014-01-16 13:44:20 +010034#include <linux/srcu.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090035#include <linux/slab.h>
Paul Mackerras56f89f32014-06-30 20:51:09 +100036#include <linux/seqlock.h>
Paul Mackerrase4d57e12014-06-30 20:51:12 +100037#include <trace/events/kvm.h>
Gregory Haskinsd34e6b12009-07-07 17:08:49 -040038
Christoffer Dall29f1b652014-09-22 23:33:08 +020039#ifdef __KVM_HAVE_IOAPIC
40#include "ioapic.h"
41#endif
Gregory Haskinsd34e6b12009-07-07 17:08:49 -040042#include "iodev.h"
Gregory Haskins721eecb2009-05-20 10:30:49 -040043
Paul Mackerras297e2102014-06-30 20:51:13 +100044#ifdef CONFIG_HAVE_KVM_IRQFD
Gregory Haskins721eecb2009-05-20 10:30:49 -040045/*
46 * --------------------------------------------------------------------
47 * irqfd: Allows an fd to be used to inject an interrupt to the guest
48 *
49 * Credit goes to Avi Kivity for the original idea.
50 * --------------------------------------------------------------------
51 */
52
Alex Williamson7a844282012-09-21 11:58:03 -060053/*
54 * Resampling irqfds are a special variety of irqfds used to emulate
55 * level triggered interrupts. The interrupt is asserted on eventfd
56 * trigger. On acknowledgement through the irq ack notifier, the
57 * interrupt is de-asserted and userspace is notified through the
58 * resamplefd. All resamplers on the same gsi are de-asserted
59 * together, so we don't need to track the state of each individual
60 * user. We can also therefore share the same irq source ID.
61 */
62struct _irqfd_resampler {
63 struct kvm *kvm;
64 /*
65 * List of resampling struct _irqfd objects sharing this gsi.
66 * RCU list modified under kvm->irqfds.resampler_lock
67 */
68 struct list_head list;
69 struct kvm_irq_ack_notifier notifier;
70 /*
71 * Entry in list of kvm->irqfd.resampler_list. Use for sharing
72 * resamplers among irqfds on the same gsi.
73 * Accessed and modified under kvm->irqfds.resampler_lock
74 */
75 struct list_head link;
76};
77
Gregory Haskins721eecb2009-05-20 10:30:49 -040078struct _irqfd {
Michael S. Tsirkinbd2b53b2010-11-18 19:09:08 +020079 /* Used for MSI fast-path */
80 struct kvm *kvm;
81 wait_queue_t wait;
82 /* Update side is protected by irqfds.lock */
Paul Mackerras56f89f32014-06-30 20:51:09 +100083 struct kvm_kernel_irq_routing_entry irq_entry;
84 seqcount_t irq_entry_sc;
Michael S. Tsirkinbd2b53b2010-11-18 19:09:08 +020085 /* Used for level IRQ fast-path */
86 int gsi;
87 struct work_struct inject;
Alex Williamson7a844282012-09-21 11:58:03 -060088 /* The resampler used by this irqfd (resampler-only) */
89 struct _irqfd_resampler *resampler;
90 /* Eventfd notified on resample (resampler-only) */
91 struct eventfd_ctx *resamplefd;
92 /* Entry in list of irqfds for a resampler (resampler-only) */
93 struct list_head resampler_link;
Michael S. Tsirkinbd2b53b2010-11-18 19:09:08 +020094 /* Used for setup/shutdown */
95 struct eventfd_ctx *eventfd;
96 struct list_head list;
97 poll_table pt;
98 struct work_struct shutdown;
Gregory Haskins721eecb2009-05-20 10:30:49 -040099};
100
101static struct workqueue_struct *irqfd_cleanup_wq;
102
103static void
104irqfd_inject(struct work_struct *work)
105{
106 struct _irqfd *irqfd = container_of(work, struct _irqfd, inject);
107 struct kvm *kvm = irqfd->kvm;
108
Alex Williamson7a844282012-09-21 11:58:03 -0600109 if (!irqfd->resampler) {
Yang Zhangaa2fbe62013-04-11 19:21:40 +0800110 kvm_set_irq(kvm, KVM_USERSPACE_IRQ_SOURCE_ID, irqfd->gsi, 1,
111 false);
112 kvm_set_irq(kvm, KVM_USERSPACE_IRQ_SOURCE_ID, irqfd->gsi, 0,
113 false);
Alex Williamson7a844282012-09-21 11:58:03 -0600114 } else
115 kvm_set_irq(kvm, KVM_IRQFD_RESAMPLE_IRQ_SOURCE_ID,
Yang Zhangaa2fbe62013-04-11 19:21:40 +0800116 irqfd->gsi, 1, false);
Alex Williamson7a844282012-09-21 11:58:03 -0600117}
118
119/*
120 * Since resampler irqfds share an IRQ source ID, we de-assert once
121 * then notify all of the resampler irqfds using this GSI. We can't
122 * do multiple de-asserts or we risk racing with incoming re-asserts.
123 */
124static void
125irqfd_resampler_ack(struct kvm_irq_ack_notifier *kian)
126{
127 struct _irqfd_resampler *resampler;
Christian Borntraeger719d93c2014-01-16 13:44:20 +0100128 struct kvm *kvm;
Alex Williamson7a844282012-09-21 11:58:03 -0600129 struct _irqfd *irqfd;
Christian Borntraeger719d93c2014-01-16 13:44:20 +0100130 int idx;
Alex Williamson7a844282012-09-21 11:58:03 -0600131
132 resampler = container_of(kian, struct _irqfd_resampler, notifier);
Christian Borntraeger719d93c2014-01-16 13:44:20 +0100133 kvm = resampler->kvm;
Alex Williamson7a844282012-09-21 11:58:03 -0600134
Christian Borntraeger719d93c2014-01-16 13:44:20 +0100135 kvm_set_irq(kvm, KVM_IRQFD_RESAMPLE_IRQ_SOURCE_ID,
Yang Zhangaa2fbe62013-04-11 19:21:40 +0800136 resampler->notifier.gsi, 0, false);
Alex Williamson7a844282012-09-21 11:58:03 -0600137
Christian Borntraeger719d93c2014-01-16 13:44:20 +0100138 idx = srcu_read_lock(&kvm->irq_srcu);
Alex Williamson7a844282012-09-21 11:58:03 -0600139
140 list_for_each_entry_rcu(irqfd, &resampler->list, resampler_link)
141 eventfd_signal(irqfd->resamplefd, 1);
142
Christian Borntraeger719d93c2014-01-16 13:44:20 +0100143 srcu_read_unlock(&kvm->irq_srcu, idx);
Alex Williamson7a844282012-09-21 11:58:03 -0600144}
145
146static void
147irqfd_resampler_shutdown(struct _irqfd *irqfd)
148{
149 struct _irqfd_resampler *resampler = irqfd->resampler;
150 struct kvm *kvm = resampler->kvm;
151
152 mutex_lock(&kvm->irqfds.resampler_lock);
153
154 list_del_rcu(&irqfd->resampler_link);
Christian Borntraeger719d93c2014-01-16 13:44:20 +0100155 synchronize_srcu(&kvm->irq_srcu);
Alex Williamson7a844282012-09-21 11:58:03 -0600156
157 if (list_empty(&resampler->list)) {
158 list_del(&resampler->link);
159 kvm_unregister_irq_ack_notifier(kvm, &resampler->notifier);
160 kvm_set_irq(kvm, KVM_IRQFD_RESAMPLE_IRQ_SOURCE_ID,
Yang Zhangaa2fbe62013-04-11 19:21:40 +0800161 resampler->notifier.gsi, 0, false);
Alex Williamson7a844282012-09-21 11:58:03 -0600162 kfree(resampler);
163 }
164
165 mutex_unlock(&kvm->irqfds.resampler_lock);
Gregory Haskins721eecb2009-05-20 10:30:49 -0400166}
167
168/*
169 * Race-free decouple logic (ordering is critical)
170 */
171static void
172irqfd_shutdown(struct work_struct *work)
173{
174 struct _irqfd *irqfd = container_of(work, struct _irqfd, shutdown);
Michael S. Tsirkinb6a114d2010-01-13 19:12:30 +0200175 u64 cnt;
Gregory Haskins721eecb2009-05-20 10:30:49 -0400176
177 /*
178 * Synchronize with the wait-queue and unhook ourselves to prevent
179 * further events.
180 */
Michael S. Tsirkinb6a114d2010-01-13 19:12:30 +0200181 eventfd_ctx_remove_wait_queue(irqfd->eventfd, &irqfd->wait, &cnt);
Gregory Haskins721eecb2009-05-20 10:30:49 -0400182
183 /*
184 * We know no new events will be scheduled at this point, so block
185 * until all previously outstanding events have completed
186 */
Tejun Heo43829732012-08-20 14:51:24 -0700187 flush_work(&irqfd->inject);
Gregory Haskins721eecb2009-05-20 10:30:49 -0400188
Alex Williamson7a844282012-09-21 11:58:03 -0600189 if (irqfd->resampler) {
190 irqfd_resampler_shutdown(irqfd);
191 eventfd_ctx_put(irqfd->resamplefd);
192 }
193
Gregory Haskins721eecb2009-05-20 10:30:49 -0400194 /*
195 * It is now safe to release the object's resources
196 */
197 eventfd_ctx_put(irqfd->eventfd);
198 kfree(irqfd);
199}
200
201
202/* assumes kvm->irqfds.lock is held */
203static bool
204irqfd_is_active(struct _irqfd *irqfd)
205{
206 return list_empty(&irqfd->list) ? false : true;
207}
208
209/*
210 * Mark the irqfd as inactive and schedule it for removal
211 *
212 * assumes kvm->irqfds.lock is held
213 */
214static void
215irqfd_deactivate(struct _irqfd *irqfd)
216{
217 BUG_ON(!irqfd_is_active(irqfd));
218
219 list_del_init(&irqfd->list);
220
221 queue_work(irqfd_cleanup_wq, &irqfd->shutdown);
222}
223
224/*
225 * Called with wqh->lock held and interrupts disabled
226 */
227static int
228irqfd_wakeup(wait_queue_t *wait, unsigned mode, int sync, void *key)
229{
230 struct _irqfd *irqfd = container_of(wait, struct _irqfd, wait);
231 unsigned long flags = (unsigned long)key;
Paul Mackerras56f89f32014-06-30 20:51:09 +1000232 struct kvm_kernel_irq_routing_entry irq;
Michael S. Tsirkinbd2b53b2010-11-18 19:09:08 +0200233 struct kvm *kvm = irqfd->kvm;
Paul Mackerras56f89f32014-06-30 20:51:09 +1000234 unsigned seq;
Christian Borntraeger719d93c2014-01-16 13:44:20 +0100235 int idx;
Gregory Haskins721eecb2009-05-20 10:30:49 -0400236
Michael S. Tsirkinbd2b53b2010-11-18 19:09:08 +0200237 if (flags & POLLIN) {
Christian Borntraeger719d93c2014-01-16 13:44:20 +0100238 idx = srcu_read_lock(&kvm->irq_srcu);
Paul Mackerras56f89f32014-06-30 20:51:09 +1000239 do {
240 seq = read_seqcount_begin(&irqfd->irq_entry_sc);
241 irq = irqfd->irq_entry;
242 } while (read_seqcount_retry(&irqfd->irq_entry_sc, seq));
Gregory Haskins721eecb2009-05-20 10:30:49 -0400243 /* An event has been signaled, inject an interrupt */
Paul Mackerras56f89f32014-06-30 20:51:09 +1000244 if (irq.type == KVM_IRQ_ROUTING_MSI)
245 kvm_set_msi(&irq, kvm, KVM_USERSPACE_IRQ_SOURCE_ID, 1,
Yang Zhangaa2fbe62013-04-11 19:21:40 +0800246 false);
Michael S. Tsirkinbd2b53b2010-11-18 19:09:08 +0200247 else
248 schedule_work(&irqfd->inject);
Christian Borntraeger719d93c2014-01-16 13:44:20 +0100249 srcu_read_unlock(&kvm->irq_srcu, idx);
Michael S. Tsirkinbd2b53b2010-11-18 19:09:08 +0200250 }
Gregory Haskins721eecb2009-05-20 10:30:49 -0400251
252 if (flags & POLLHUP) {
253 /* The eventfd is closing, detach from KVM */
Gregory Haskins721eecb2009-05-20 10:30:49 -0400254 unsigned long flags;
255
256 spin_lock_irqsave(&kvm->irqfds.lock, flags);
257
258 /*
259 * We must check if someone deactivated the irqfd before
260 * we could acquire the irqfds.lock since the item is
261 * deactivated from the KVM side before it is unhooked from
262 * the wait-queue. If it is already deactivated, we can
263 * simply return knowing the other side will cleanup for us.
264 * We cannot race against the irqfd going away since the
265 * other side is required to acquire wqh->lock, which we hold
266 */
267 if (irqfd_is_active(irqfd))
268 irqfd_deactivate(irqfd);
269
270 spin_unlock_irqrestore(&kvm->irqfds.lock, flags);
271 }
272
273 return 0;
274}
275
276static void
277irqfd_ptable_queue_proc(struct file *file, wait_queue_head_t *wqh,
278 poll_table *pt)
279{
280 struct _irqfd *irqfd = container_of(pt, struct _irqfd, pt);
Gregory Haskins721eecb2009-05-20 10:30:49 -0400281 add_wait_queue(wqh, &irqfd->wait);
282}
283
Michael S. Tsirkinbd2b53b2010-11-18 19:09:08 +0200284/* Must be called under irqfds.lock */
Paul Mackerras9957c862014-06-30 20:51:11 +1000285static void irqfd_update(struct kvm *kvm, struct _irqfd *irqfd)
Michael S. Tsirkinbd2b53b2010-11-18 19:09:08 +0200286{
287 struct kvm_kernel_irq_routing_entry *e;
Paul Mackerras8ba918d2014-06-30 20:51:10 +1000288 struct kvm_kernel_irq_routing_entry entries[KVM_NR_IRQCHIPS];
289 int i, n_entries;
290
Paul Mackerras9957c862014-06-30 20:51:11 +1000291 n_entries = kvm_irq_map_gsi(kvm, entries, irqfd->gsi);
Michael S. Tsirkinbd2b53b2010-11-18 19:09:08 +0200292
Paul Mackerras56f89f32014-06-30 20:51:09 +1000293 write_seqcount_begin(&irqfd->irq_entry_sc);
294
295 irqfd->irq_entry.type = 0;
Michael S. Tsirkinbd2b53b2010-11-18 19:09:08 +0200296
Paul Mackerras8ba918d2014-06-30 20:51:10 +1000297 e = entries;
298 for (i = 0; i < n_entries; ++i, ++e) {
Michael S. Tsirkinbd2b53b2010-11-18 19:09:08 +0200299 /* Only fast-path MSI. */
300 if (e->type == KVM_IRQ_ROUTING_MSI)
Paul Mackerras56f89f32014-06-30 20:51:09 +1000301 irqfd->irq_entry = *e;
Michael S. Tsirkinbd2b53b2010-11-18 19:09:08 +0200302 }
Paul Mackerras56f89f32014-06-30 20:51:09 +1000303
Paul Mackerras56f89f32014-06-30 20:51:09 +1000304 write_seqcount_end(&irqfd->irq_entry_sc);
Michael S. Tsirkinbd2b53b2010-11-18 19:09:08 +0200305}
306
Gregory Haskins721eecb2009-05-20 10:30:49 -0400307static int
Alex Williamsond4db2932012-06-29 09:56:08 -0600308kvm_irqfd_assign(struct kvm *kvm, struct kvm_irqfd *args)
Gregory Haskins721eecb2009-05-20 10:30:49 -0400309{
Michael S. Tsirkinf1d1c302010-01-13 18:58:09 +0200310 struct _irqfd *irqfd, *tmp;
Al Virocffe78d2013-08-30 15:47:17 -0400311 struct fd f;
Alex Williamson7a844282012-09-21 11:58:03 -0600312 struct eventfd_ctx *eventfd = NULL, *resamplefd = NULL;
Gregory Haskins721eecb2009-05-20 10:30:49 -0400313 int ret;
314 unsigned int events;
Paul Mackerras9957c862014-06-30 20:51:11 +1000315 int idx;
Gregory Haskins721eecb2009-05-20 10:30:49 -0400316
317 irqfd = kzalloc(sizeof(*irqfd), GFP_KERNEL);
318 if (!irqfd)
319 return -ENOMEM;
320
321 irqfd->kvm = kvm;
Alex Williamsond4db2932012-06-29 09:56:08 -0600322 irqfd->gsi = args->gsi;
Gregory Haskins721eecb2009-05-20 10:30:49 -0400323 INIT_LIST_HEAD(&irqfd->list);
324 INIT_WORK(&irqfd->inject, irqfd_inject);
325 INIT_WORK(&irqfd->shutdown, irqfd_shutdown);
Paul Mackerras56f89f32014-06-30 20:51:09 +1000326 seqcount_init(&irqfd->irq_entry_sc);
Gregory Haskins721eecb2009-05-20 10:30:49 -0400327
Al Virocffe78d2013-08-30 15:47:17 -0400328 f = fdget(args->fd);
329 if (!f.file) {
330 ret = -EBADF;
331 goto out;
Gregory Haskins721eecb2009-05-20 10:30:49 -0400332 }
333
Al Virocffe78d2013-08-30 15:47:17 -0400334 eventfd = eventfd_ctx_fileget(f.file);
Gregory Haskins721eecb2009-05-20 10:30:49 -0400335 if (IS_ERR(eventfd)) {
336 ret = PTR_ERR(eventfd);
337 goto fail;
338 }
339
340 irqfd->eventfd = eventfd;
341
Alex Williamson7a844282012-09-21 11:58:03 -0600342 if (args->flags & KVM_IRQFD_FLAG_RESAMPLE) {
343 struct _irqfd_resampler *resampler;
344
345 resamplefd = eventfd_ctx_fdget(args->resamplefd);
346 if (IS_ERR(resamplefd)) {
347 ret = PTR_ERR(resamplefd);
348 goto fail;
349 }
350
351 irqfd->resamplefd = resamplefd;
352 INIT_LIST_HEAD(&irqfd->resampler_link);
353
354 mutex_lock(&kvm->irqfds.resampler_lock);
355
356 list_for_each_entry(resampler,
Alex Williamson49f8a1a2012-12-06 14:44:59 -0700357 &kvm->irqfds.resampler_list, link) {
Alex Williamson7a844282012-09-21 11:58:03 -0600358 if (resampler->notifier.gsi == irqfd->gsi) {
359 irqfd->resampler = resampler;
360 break;
361 }
362 }
363
364 if (!irqfd->resampler) {
365 resampler = kzalloc(sizeof(*resampler), GFP_KERNEL);
366 if (!resampler) {
367 ret = -ENOMEM;
368 mutex_unlock(&kvm->irqfds.resampler_lock);
369 goto fail;
370 }
371
372 resampler->kvm = kvm;
373 INIT_LIST_HEAD(&resampler->list);
374 resampler->notifier.gsi = irqfd->gsi;
375 resampler->notifier.irq_acked = irqfd_resampler_ack;
376 INIT_LIST_HEAD(&resampler->link);
377
378 list_add(&resampler->link, &kvm->irqfds.resampler_list);
379 kvm_register_irq_ack_notifier(kvm,
380 &resampler->notifier);
381 irqfd->resampler = resampler;
382 }
383
384 list_add_rcu(&irqfd->resampler_link, &irqfd->resampler->list);
Christian Borntraeger719d93c2014-01-16 13:44:20 +0100385 synchronize_srcu(&kvm->irq_srcu);
Alex Williamson7a844282012-09-21 11:58:03 -0600386
387 mutex_unlock(&kvm->irqfds.resampler_lock);
388 }
389
Gregory Haskins721eecb2009-05-20 10:30:49 -0400390 /*
391 * Install our own custom wake-up handling so we are notified via
392 * a callback whenever someone signals the underlying eventfd
393 */
394 init_waitqueue_func_entry(&irqfd->wait, irqfd_wakeup);
395 init_poll_funcptr(&irqfd->pt, irqfd_ptable_queue_proc);
396
Michael S. Tsirkinf1d1c302010-01-13 18:58:09 +0200397 spin_lock_irq(&kvm->irqfds.lock);
398
399 ret = 0;
400 list_for_each_entry(tmp, &kvm->irqfds.items, list) {
401 if (irqfd->eventfd != tmp->eventfd)
402 continue;
403 /* This fd is used for another irq already. */
404 ret = -EBUSY;
405 spin_unlock_irq(&kvm->irqfds.lock);
406 goto fail;
407 }
408
Paul Mackerras9957c862014-06-30 20:51:11 +1000409 idx = srcu_read_lock(&kvm->irq_srcu);
410 irqfd_update(kvm, irqfd);
411 srcu_read_unlock(&kvm->irq_srcu, idx);
Michael S. Tsirkinbd2b53b2010-11-18 19:09:08 +0200412
Gregory Haskins721eecb2009-05-20 10:30:49 -0400413 list_add_tail(&irqfd->list, &kvm->irqfds.items);
Gregory Haskins721eecb2009-05-20 10:30:49 -0400414
Cornelia Huck684a0b72014-03-17 19:11:35 +0100415 spin_unlock_irq(&kvm->irqfds.lock);
416
Gregory Haskins721eecb2009-05-20 10:30:49 -0400417 /*
418 * Check if there was an event already pending on the eventfd
419 * before we registered, and trigger it as if we didn't miss it.
420 */
Cornelia Huck684a0b72014-03-17 19:11:35 +0100421 events = f.file->f_op->poll(f.file, &irqfd->pt);
422
Gregory Haskins721eecb2009-05-20 10:30:49 -0400423 if (events & POLLIN)
424 schedule_work(&irqfd->inject);
425
426 /*
427 * do not drop the file until the irqfd is fully initialized, otherwise
428 * we might race against the POLLHUP
429 */
Al Virocffe78d2013-08-30 15:47:17 -0400430 fdput(f);
Gregory Haskins721eecb2009-05-20 10:30:49 -0400431
432 return 0;
433
434fail:
Alex Williamson7a844282012-09-21 11:58:03 -0600435 if (irqfd->resampler)
436 irqfd_resampler_shutdown(irqfd);
437
438 if (resamplefd && !IS_ERR(resamplefd))
439 eventfd_ctx_put(resamplefd);
440
Gregory Haskins721eecb2009-05-20 10:30:49 -0400441 if (eventfd && !IS_ERR(eventfd))
442 eventfd_ctx_put(eventfd);
443
Al Virocffe78d2013-08-30 15:47:17 -0400444 fdput(f);
Gregory Haskins721eecb2009-05-20 10:30:49 -0400445
Al Virocffe78d2013-08-30 15:47:17 -0400446out:
Gregory Haskins721eecb2009-05-20 10:30:49 -0400447 kfree(irqfd);
448 return ret;
449}
Paolo Bonzinic77dcac2014-08-06 14:24:45 +0200450
451bool kvm_irq_has_notifier(struct kvm *kvm, unsigned irqchip, unsigned pin)
452{
453 struct kvm_irq_ack_notifier *kian;
454 int gsi, idx;
455
456 idx = srcu_read_lock(&kvm->irq_srcu);
457 gsi = kvm_irq_map_chip_pin(kvm, irqchip, pin);
458 if (gsi != -1)
459 hlist_for_each_entry_rcu(kian, &kvm->irq_ack_notifier_list,
460 link)
461 if (kian->gsi == gsi) {
462 srcu_read_unlock(&kvm->irq_srcu, idx);
463 return true;
464 }
465
466 srcu_read_unlock(&kvm->irq_srcu, idx);
467
468 return false;
469}
470EXPORT_SYMBOL_GPL(kvm_irq_has_notifier);
471
472void kvm_notify_acked_irq(struct kvm *kvm, unsigned irqchip, unsigned pin)
473{
474 struct kvm_irq_ack_notifier *kian;
475 int gsi, idx;
476
477 trace_kvm_ack_irq(irqchip, pin);
478
479 idx = srcu_read_lock(&kvm->irq_srcu);
480 gsi = kvm_irq_map_chip_pin(kvm, irqchip, pin);
481 if (gsi != -1)
482 hlist_for_each_entry_rcu(kian, &kvm->irq_ack_notifier_list,
483 link)
484 if (kian->gsi == gsi)
485 kian->irq_acked(kian);
486 srcu_read_unlock(&kvm->irq_srcu, idx);
487}
488
489void kvm_register_irq_ack_notifier(struct kvm *kvm,
490 struct kvm_irq_ack_notifier *kian)
491{
492 mutex_lock(&kvm->irq_lock);
493 hlist_add_head_rcu(&kian->link, &kvm->irq_ack_notifier_list);
494 mutex_unlock(&kvm->irq_lock);
495#ifdef __KVM_HAVE_IOAPIC
496 kvm_vcpu_request_scan_ioapic(kvm);
497#endif
498}
499
500void kvm_unregister_irq_ack_notifier(struct kvm *kvm,
501 struct kvm_irq_ack_notifier *kian)
502{
503 mutex_lock(&kvm->irq_lock);
504 hlist_del_init_rcu(&kian->link);
505 mutex_unlock(&kvm->irq_lock);
506 synchronize_srcu(&kvm->irq_srcu);
507#ifdef __KVM_HAVE_IOAPIC
508 kvm_vcpu_request_scan_ioapic(kvm);
509#endif
510}
Alexander Graf914daba2012-10-09 00:22:59 +0200511#endif
Gregory Haskins721eecb2009-05-20 10:30:49 -0400512
513void
Gregory Haskinsd34e6b12009-07-07 17:08:49 -0400514kvm_eventfd_init(struct kvm *kvm)
Gregory Haskins721eecb2009-05-20 10:30:49 -0400515{
Paul Mackerras297e2102014-06-30 20:51:13 +1000516#ifdef CONFIG_HAVE_KVM_IRQFD
Gregory Haskins721eecb2009-05-20 10:30:49 -0400517 spin_lock_init(&kvm->irqfds.lock);
518 INIT_LIST_HEAD(&kvm->irqfds.items);
Alex Williamson7a844282012-09-21 11:58:03 -0600519 INIT_LIST_HEAD(&kvm->irqfds.resampler_list);
520 mutex_init(&kvm->irqfds.resampler_lock);
Alexander Graf914daba2012-10-09 00:22:59 +0200521#endif
Gregory Haskinsd34e6b12009-07-07 17:08:49 -0400522 INIT_LIST_HEAD(&kvm->ioeventfds);
Gregory Haskins721eecb2009-05-20 10:30:49 -0400523}
524
Paul Mackerras297e2102014-06-30 20:51:13 +1000525#ifdef CONFIG_HAVE_KVM_IRQFD
Gregory Haskins721eecb2009-05-20 10:30:49 -0400526/*
527 * shutdown any irqfd's that match fd+gsi
528 */
529static int
Alex Williamsond4db2932012-06-29 09:56:08 -0600530kvm_irqfd_deassign(struct kvm *kvm, struct kvm_irqfd *args)
Gregory Haskins721eecb2009-05-20 10:30:49 -0400531{
532 struct _irqfd *irqfd, *tmp;
533 struct eventfd_ctx *eventfd;
534
Alex Williamsond4db2932012-06-29 09:56:08 -0600535 eventfd = eventfd_ctx_fdget(args->fd);
Gregory Haskins721eecb2009-05-20 10:30:49 -0400536 if (IS_ERR(eventfd))
537 return PTR_ERR(eventfd);
538
539 spin_lock_irq(&kvm->irqfds.lock);
540
541 list_for_each_entry_safe(irqfd, tmp, &kvm->irqfds.items, list) {
Alex Williamsond4db2932012-06-29 09:56:08 -0600542 if (irqfd->eventfd == eventfd && irqfd->gsi == args->gsi) {
Michael S. Tsirkinbd2b53b2010-11-18 19:09:08 +0200543 /*
Paul Mackerras56f89f32014-06-30 20:51:09 +1000544 * This clearing of irq_entry.type is needed for when
Michael S. Tsirkinc8ce0572011-03-06 13:03:26 +0200545 * another thread calls kvm_irq_routing_update before
546 * we flush workqueue below (we synchronize with
547 * kvm_irq_routing_update using irqfds.lock).
Michael S. Tsirkinbd2b53b2010-11-18 19:09:08 +0200548 */
Paul Mackerras56f89f32014-06-30 20:51:09 +1000549 write_seqcount_begin(&irqfd->irq_entry_sc);
550 irqfd->irq_entry.type = 0;
551 write_seqcount_end(&irqfd->irq_entry_sc);
Gregory Haskins721eecb2009-05-20 10:30:49 -0400552 irqfd_deactivate(irqfd);
Michael S. Tsirkinbd2b53b2010-11-18 19:09:08 +0200553 }
Gregory Haskins721eecb2009-05-20 10:30:49 -0400554 }
555
556 spin_unlock_irq(&kvm->irqfds.lock);
557 eventfd_ctx_put(eventfd);
558
559 /*
560 * Block until we know all outstanding shutdown jobs have completed
561 * so that we guarantee there will not be any more interrupts on this
562 * gsi once this deassign function returns.
563 */
564 flush_workqueue(irqfd_cleanup_wq);
565
566 return 0;
567}
568
569int
Alex Williamsond4db2932012-06-29 09:56:08 -0600570kvm_irqfd(struct kvm *kvm, struct kvm_irqfd *args)
Gregory Haskins721eecb2009-05-20 10:30:49 -0400571{
Alex Williamson7a844282012-09-21 11:58:03 -0600572 if (args->flags & ~(KVM_IRQFD_FLAG_DEASSIGN | KVM_IRQFD_FLAG_RESAMPLE))
Alex Williamson326cf032012-06-29 09:56:24 -0600573 return -EINVAL;
574
Alex Williamsond4db2932012-06-29 09:56:08 -0600575 if (args->flags & KVM_IRQFD_FLAG_DEASSIGN)
576 return kvm_irqfd_deassign(kvm, args);
Gregory Haskins721eecb2009-05-20 10:30:49 -0400577
Alex Williamsond4db2932012-06-29 09:56:08 -0600578 return kvm_irqfd_assign(kvm, args);
Gregory Haskins721eecb2009-05-20 10:30:49 -0400579}
580
581/*
582 * This function is called as the kvm VM fd is being released. Shutdown all
583 * irqfds that still remain open
584 */
585void
586kvm_irqfd_release(struct kvm *kvm)
587{
588 struct _irqfd *irqfd, *tmp;
589
590 spin_lock_irq(&kvm->irqfds.lock);
591
592 list_for_each_entry_safe(irqfd, tmp, &kvm->irqfds.items, list)
593 irqfd_deactivate(irqfd);
594
595 spin_unlock_irq(&kvm->irqfds.lock);
596
597 /*
598 * Block until we know all outstanding shutdown jobs have completed
599 * since we do not take a kvm* reference.
600 */
601 flush_workqueue(irqfd_cleanup_wq);
602
603}
604
605/*
Paul Mackerras9957c862014-06-30 20:51:11 +1000606 * Take note of a change in irq routing.
Christian Borntraeger719d93c2014-01-16 13:44:20 +0100607 * Caller must invoke synchronize_srcu(&kvm->irq_srcu) afterwards.
Michael S. Tsirkinbd2b53b2010-11-18 19:09:08 +0200608 */
Paul Mackerras9957c862014-06-30 20:51:11 +1000609void kvm_irq_routing_update(struct kvm *kvm)
Michael S. Tsirkinbd2b53b2010-11-18 19:09:08 +0200610{
611 struct _irqfd *irqfd;
612
613 spin_lock_irq(&kvm->irqfds.lock);
614
Michael S. Tsirkinbd2b53b2010-11-18 19:09:08 +0200615 list_for_each_entry(irqfd, &kvm->irqfds.items, list)
Paul Mackerras9957c862014-06-30 20:51:11 +1000616 irqfd_update(kvm, irqfd);
Michael S. Tsirkinbd2b53b2010-11-18 19:09:08 +0200617
618 spin_unlock_irq(&kvm->irqfds.lock);
619}
620
621/*
Gregory Haskins721eecb2009-05-20 10:30:49 -0400622 * create a host-wide workqueue for issuing deferred shutdown requests
623 * aggregated from all vm* instances. We need our own isolated single-thread
624 * queue to prevent deadlock against flushing the normal work-queue.
625 */
Cornelia Hucka0f155e2013-02-28 12:33:18 +0100626int kvm_irqfd_init(void)
Gregory Haskins721eecb2009-05-20 10:30:49 -0400627{
628 irqfd_cleanup_wq = create_singlethread_workqueue("kvm-irqfd-cleanup");
629 if (!irqfd_cleanup_wq)
630 return -ENOMEM;
631
632 return 0;
633}
634
Cornelia Hucka0f155e2013-02-28 12:33:18 +0100635void kvm_irqfd_exit(void)
Gregory Haskins721eecb2009-05-20 10:30:49 -0400636{
637 destroy_workqueue(irqfd_cleanup_wq);
638}
Alexander Graf914daba2012-10-09 00:22:59 +0200639#endif
Gregory Haskinsd34e6b12009-07-07 17:08:49 -0400640
641/*
642 * --------------------------------------------------------------------
643 * ioeventfd: translate a PIO/MMIO memory write to an eventfd signal.
644 *
645 * userspace can register a PIO/MMIO address with an eventfd for receiving
646 * notification when the memory has been touched.
647 * --------------------------------------------------------------------
648 */
649
650struct _ioeventfd {
651 struct list_head list;
652 u64 addr;
653 int length;
654 struct eventfd_ctx *eventfd;
655 u64 datamatch;
656 struct kvm_io_device dev;
Michael S. Tsirkin05e07f92013-04-04 13:27:21 +0300657 u8 bus_idx;
Gregory Haskinsd34e6b12009-07-07 17:08:49 -0400658 bool wildcard;
659};
660
661static inline struct _ioeventfd *
662to_ioeventfd(struct kvm_io_device *dev)
663{
664 return container_of(dev, struct _ioeventfd, dev);
665}
666
667static void
668ioeventfd_release(struct _ioeventfd *p)
669{
670 eventfd_ctx_put(p->eventfd);
671 list_del(&p->list);
672 kfree(p);
673}
674
675static bool
676ioeventfd_in_range(struct _ioeventfd *p, gpa_t addr, int len, const void *val)
677{
678 u64 _val;
679
Michael S. Tsirkinf848a5a2014-03-31 21:50:38 +0300680 if (addr != p->addr)
681 /* address must be precise for a hit */
682 return false;
683
684 if (!p->length)
685 /* length = 0 means only look at the address, so always a hit */
686 return true;
687
688 if (len != p->length)
Gregory Haskinsd34e6b12009-07-07 17:08:49 -0400689 /* address-range must be precise for a hit */
690 return false;
691
692 if (p->wildcard)
693 /* all else equal, wildcard is always a hit */
694 return true;
695
696 /* otherwise, we have to actually compare the data */
697
698 BUG_ON(!IS_ALIGNED((unsigned long)val, len));
699
700 switch (len) {
701 case 1:
702 _val = *(u8 *)val;
703 break;
704 case 2:
705 _val = *(u16 *)val;
706 break;
707 case 4:
708 _val = *(u32 *)val;
709 break;
710 case 8:
711 _val = *(u64 *)val;
712 break;
713 default:
714 return false;
715 }
716
717 return _val == p->datamatch ? true : false;
718}
719
720/* MMIO/PIO writes trigger an event if the addr/val match */
721static int
722ioeventfd_write(struct kvm_io_device *this, gpa_t addr, int len,
723 const void *val)
724{
725 struct _ioeventfd *p = to_ioeventfd(this);
726
727 if (!ioeventfd_in_range(p, addr, len, val))
728 return -EOPNOTSUPP;
729
730 eventfd_signal(p->eventfd, 1);
731 return 0;
732}
733
734/*
735 * This function is called as KVM is completely shutting down. We do not
736 * need to worry about locking just nuke anything we have as quickly as possible
737 */
738static void
739ioeventfd_destructor(struct kvm_io_device *this)
740{
741 struct _ioeventfd *p = to_ioeventfd(this);
742
743 ioeventfd_release(p);
744}
745
746static const struct kvm_io_device_ops ioeventfd_ops = {
747 .write = ioeventfd_write,
748 .destructor = ioeventfd_destructor,
749};
750
751/* assumes kvm->slots_lock held */
752static bool
753ioeventfd_check_collision(struct kvm *kvm, struct _ioeventfd *p)
754{
755 struct _ioeventfd *_p;
756
757 list_for_each_entry(_p, &kvm->ioeventfds, list)
Michael S. Tsirkin05e07f92013-04-04 13:27:21 +0300758 if (_p->bus_idx == p->bus_idx &&
Michael S. Tsirkinf848a5a2014-03-31 21:50:38 +0300759 _p->addr == p->addr &&
760 (!_p->length || !p->length ||
761 (_p->length == p->length &&
762 (_p->wildcard || p->wildcard ||
763 _p->datamatch == p->datamatch))))
Gregory Haskinsd34e6b12009-07-07 17:08:49 -0400764 return true;
765
766 return false;
767}
768
Cornelia Huck2b834512013-02-28 12:33:20 +0100769static enum kvm_bus ioeventfd_bus_from_flags(__u32 flags)
770{
771 if (flags & KVM_IOEVENTFD_FLAG_PIO)
772 return KVM_PIO_BUS;
773 if (flags & KVM_IOEVENTFD_FLAG_VIRTIO_CCW_NOTIFY)
774 return KVM_VIRTIO_CCW_NOTIFY_BUS;
775 return KVM_MMIO_BUS;
776}
777
Gregory Haskinsd34e6b12009-07-07 17:08:49 -0400778static int
779kvm_assign_ioeventfd(struct kvm *kvm, struct kvm_ioeventfd *args)
780{
Cornelia Huck2b834512013-02-28 12:33:20 +0100781 enum kvm_bus bus_idx;
Gregory Haskinsd34e6b12009-07-07 17:08:49 -0400782 struct _ioeventfd *p;
783 struct eventfd_ctx *eventfd;
784 int ret;
785
Cornelia Huck2b834512013-02-28 12:33:20 +0100786 bus_idx = ioeventfd_bus_from_flags(args->flags);
Michael S. Tsirkinf848a5a2014-03-31 21:50:38 +0300787 /* must be natural-word sized, or 0 to ignore length */
Gregory Haskinsd34e6b12009-07-07 17:08:49 -0400788 switch (args->len) {
Michael S. Tsirkinf848a5a2014-03-31 21:50:38 +0300789 case 0:
Gregory Haskinsd34e6b12009-07-07 17:08:49 -0400790 case 1:
791 case 2:
792 case 4:
793 case 8:
794 break;
795 default:
796 return -EINVAL;
797 }
798
799 /* check for range overflow */
800 if (args->addr + args->len < args->addr)
801 return -EINVAL;
802
803 /* check for extra flags that we don't understand */
804 if (args->flags & ~KVM_IOEVENTFD_VALID_FLAG_MASK)
805 return -EINVAL;
806
Michael S. Tsirkinf848a5a2014-03-31 21:50:38 +0300807 /* ioeventfd with no length can't be combined with DATAMATCH */
808 if (!args->len &&
809 args->flags & (KVM_IOEVENTFD_FLAG_PIO |
810 KVM_IOEVENTFD_FLAG_DATAMATCH))
811 return -EINVAL;
812
Gregory Haskinsd34e6b12009-07-07 17:08:49 -0400813 eventfd = eventfd_ctx_fdget(args->fd);
814 if (IS_ERR(eventfd))
815 return PTR_ERR(eventfd);
816
817 p = kzalloc(sizeof(*p), GFP_KERNEL);
818 if (!p) {
819 ret = -ENOMEM;
820 goto fail;
821 }
822
823 INIT_LIST_HEAD(&p->list);
824 p->addr = args->addr;
Michael S. Tsirkin05e07f92013-04-04 13:27:21 +0300825 p->bus_idx = bus_idx;
Gregory Haskinsd34e6b12009-07-07 17:08:49 -0400826 p->length = args->len;
827 p->eventfd = eventfd;
828
829 /* The datamatch feature is optional, otherwise this is a wildcard */
830 if (args->flags & KVM_IOEVENTFD_FLAG_DATAMATCH)
831 p->datamatch = args->datamatch;
832 else
833 p->wildcard = true;
834
Marcelo Tosatti79fac952009-12-23 14:35:26 -0200835 mutex_lock(&kvm->slots_lock);
Gregory Haskinsd34e6b12009-07-07 17:08:49 -0400836
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300837 /* Verify that there isn't a match already */
Gregory Haskinsd34e6b12009-07-07 17:08:49 -0400838 if (ioeventfd_check_collision(kvm, p)) {
839 ret = -EEXIST;
840 goto unlock_fail;
841 }
842
843 kvm_iodevice_init(&p->dev, &ioeventfd_ops);
844
Sasha Levin743eeb02011-07-27 16:00:48 +0300845 ret = kvm_io_bus_register_dev(kvm, bus_idx, p->addr, p->length,
846 &p->dev);
Gregory Haskinsd34e6b12009-07-07 17:08:49 -0400847 if (ret < 0)
848 goto unlock_fail;
849
Michael S. Tsirkin68c3b4d2014-03-31 21:50:44 +0300850 /* When length is ignored, MMIO is also put on a separate bus, for
851 * faster lookups.
852 */
853 if (!args->len && !(args->flags & KVM_IOEVENTFD_FLAG_PIO)) {
854 ret = kvm_io_bus_register_dev(kvm, KVM_FAST_MMIO_BUS,
855 p->addr, 0, &p->dev);
856 if (ret < 0)
857 goto register_fail;
858 }
859
Amos Kong6ea34c92013-05-25 06:44:15 +0800860 kvm->buses[bus_idx]->ioeventfd_count++;
Gregory Haskinsd34e6b12009-07-07 17:08:49 -0400861 list_add_tail(&p->list, &kvm->ioeventfds);
862
Marcelo Tosatti79fac952009-12-23 14:35:26 -0200863 mutex_unlock(&kvm->slots_lock);
Gregory Haskinsd34e6b12009-07-07 17:08:49 -0400864
865 return 0;
866
Michael S. Tsirkin68c3b4d2014-03-31 21:50:44 +0300867register_fail:
868 kvm_io_bus_unregister_dev(kvm, bus_idx, &p->dev);
Gregory Haskinsd34e6b12009-07-07 17:08:49 -0400869unlock_fail:
Marcelo Tosatti79fac952009-12-23 14:35:26 -0200870 mutex_unlock(&kvm->slots_lock);
Gregory Haskinsd34e6b12009-07-07 17:08:49 -0400871
872fail:
873 kfree(p);
874 eventfd_ctx_put(eventfd);
875
876 return ret;
877}
878
879static int
880kvm_deassign_ioeventfd(struct kvm *kvm, struct kvm_ioeventfd *args)
881{
Cornelia Huck2b834512013-02-28 12:33:20 +0100882 enum kvm_bus bus_idx;
Gregory Haskinsd34e6b12009-07-07 17:08:49 -0400883 struct _ioeventfd *p, *tmp;
884 struct eventfd_ctx *eventfd;
885 int ret = -ENOENT;
886
Cornelia Huck2b834512013-02-28 12:33:20 +0100887 bus_idx = ioeventfd_bus_from_flags(args->flags);
Gregory Haskinsd34e6b12009-07-07 17:08:49 -0400888 eventfd = eventfd_ctx_fdget(args->fd);
889 if (IS_ERR(eventfd))
890 return PTR_ERR(eventfd);
891
Marcelo Tosatti79fac952009-12-23 14:35:26 -0200892 mutex_lock(&kvm->slots_lock);
Gregory Haskinsd34e6b12009-07-07 17:08:49 -0400893
894 list_for_each_entry_safe(p, tmp, &kvm->ioeventfds, list) {
895 bool wildcard = !(args->flags & KVM_IOEVENTFD_FLAG_DATAMATCH);
896
Michael S. Tsirkin05e07f92013-04-04 13:27:21 +0300897 if (p->bus_idx != bus_idx ||
898 p->eventfd != eventfd ||
Gregory Haskinsd34e6b12009-07-07 17:08:49 -0400899 p->addr != args->addr ||
900 p->length != args->len ||
901 p->wildcard != wildcard)
902 continue;
903
904 if (!p->wildcard && p->datamatch != args->datamatch)
905 continue;
906
Marcelo Tosattie93f8a02009-12-23 14:35:24 -0200907 kvm_io_bus_unregister_dev(kvm, bus_idx, &p->dev);
Michael S. Tsirkin68c3b4d2014-03-31 21:50:44 +0300908 if (!p->length) {
909 kvm_io_bus_unregister_dev(kvm, KVM_FAST_MMIO_BUS,
910 &p->dev);
911 }
Amos Kong6ea34c92013-05-25 06:44:15 +0800912 kvm->buses[bus_idx]->ioeventfd_count--;
Gregory Haskinsd34e6b12009-07-07 17:08:49 -0400913 ioeventfd_release(p);
914 ret = 0;
915 break;
916 }
917
Marcelo Tosatti79fac952009-12-23 14:35:26 -0200918 mutex_unlock(&kvm->slots_lock);
Gregory Haskinsd34e6b12009-07-07 17:08:49 -0400919
920 eventfd_ctx_put(eventfd);
921
922 return ret;
923}
924
925int
926kvm_ioeventfd(struct kvm *kvm, struct kvm_ioeventfd *args)
927{
928 if (args->flags & KVM_IOEVENTFD_FLAG_DEASSIGN)
929 return kvm_deassign_ioeventfd(kvm, args);
930
931 return kvm_assign_ioeventfd(kvm, args);
932}