Gregory Haskins | 721eecb | 2009-05-20 10:30:49 -0400 | [diff] [blame] | 1 | /* |
| 2 | * kvm eventfd support - use eventfd objects to signal various KVM events |
| 3 | * |
| 4 | * Copyright 2009 Novell. All Rights Reserved. |
Avi Kivity | 221d059 | 2010-05-23 18:37:00 +0300 | [diff] [blame] | 5 | * Copyright 2010 Red Hat, Inc. and/or its affiliates. |
Gregory Haskins | 721eecb | 2009-05-20 10:30:49 -0400 | [diff] [blame] | 6 | * |
| 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 Haskins | d34e6b1 | 2009-07-07 17:08:49 -0400 | [diff] [blame] | 25 | #include <linux/kvm.h> |
Gregory Haskins | 721eecb | 2009-05-20 10:30:49 -0400 | [diff] [blame] | 26 | #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 Haskins | d34e6b1 | 2009-07-07 17:08:49 -0400 | [diff] [blame] | 33 | #include <linux/kernel.h> |
Christian Borntraeger | 719d93c | 2014-01-16 13:44:20 +0100 | [diff] [blame] | 34 | #include <linux/srcu.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 35 | #include <linux/slab.h> |
Paul Mackerras | 56f89f3 | 2014-06-30 20:51:09 +1000 | [diff] [blame] | 36 | #include <linux/seqlock.h> |
Paul Mackerras | e4d57e1 | 2014-06-30 20:51:12 +1000 | [diff] [blame] | 37 | #include <trace/events/kvm.h> |
Gregory Haskins | d34e6b1 | 2009-07-07 17:08:49 -0400 | [diff] [blame] | 38 | |
Andre Przywara | af669ac | 2015-03-26 14:39:29 +0000 | [diff] [blame] | 39 | #include <kvm/iodev.h> |
Gregory Haskins | 721eecb | 2009-05-20 10:30:49 -0400 | [diff] [blame] | 40 | |
Paul Mackerras | 297e210 | 2014-06-30 20:51:13 +1000 | [diff] [blame] | 41 | #ifdef CONFIG_HAVE_KVM_IRQFD |
Gregory Haskins | 721eecb | 2009-05-20 10:30:49 -0400 | [diff] [blame] | 42 | /* |
| 43 | * -------------------------------------------------------------------- |
| 44 | * irqfd: Allows an fd to be used to inject an interrupt to the guest |
| 45 | * |
| 46 | * Credit goes to Avi Kivity for the original idea. |
| 47 | * -------------------------------------------------------------------- |
| 48 | */ |
| 49 | |
Alex Williamson | 7a84428 | 2012-09-21 11:58:03 -0600 | [diff] [blame] | 50 | /* |
| 51 | * Resampling irqfds are a special variety of irqfds used to emulate |
| 52 | * level triggered interrupts. The interrupt is asserted on eventfd |
| 53 | * trigger. On acknowledgement through the irq ack notifier, the |
| 54 | * interrupt is de-asserted and userspace is notified through the |
| 55 | * resamplefd. All resamplers on the same gsi are de-asserted |
| 56 | * together, so we don't need to track the state of each individual |
| 57 | * user. We can also therefore share the same irq source ID. |
| 58 | */ |
| 59 | struct _irqfd_resampler { |
| 60 | struct kvm *kvm; |
| 61 | /* |
| 62 | * List of resampling struct _irqfd objects sharing this gsi. |
| 63 | * RCU list modified under kvm->irqfds.resampler_lock |
| 64 | */ |
| 65 | struct list_head list; |
| 66 | struct kvm_irq_ack_notifier notifier; |
| 67 | /* |
| 68 | * Entry in list of kvm->irqfd.resampler_list. Use for sharing |
| 69 | * resamplers among irqfds on the same gsi. |
| 70 | * Accessed and modified under kvm->irqfds.resampler_lock |
| 71 | */ |
| 72 | struct list_head link; |
| 73 | }; |
| 74 | |
Gregory Haskins | 721eecb | 2009-05-20 10:30:49 -0400 | [diff] [blame] | 75 | struct _irqfd { |
Michael S. Tsirkin | bd2b53b | 2010-11-18 19:09:08 +0200 | [diff] [blame] | 76 | /* Used for MSI fast-path */ |
| 77 | struct kvm *kvm; |
| 78 | wait_queue_t wait; |
| 79 | /* Update side is protected by irqfds.lock */ |
Paul Mackerras | 56f89f3 | 2014-06-30 20:51:09 +1000 | [diff] [blame] | 80 | struct kvm_kernel_irq_routing_entry irq_entry; |
| 81 | seqcount_t irq_entry_sc; |
Michael S. Tsirkin | bd2b53b | 2010-11-18 19:09:08 +0200 | [diff] [blame] | 82 | /* Used for level IRQ fast-path */ |
| 83 | int gsi; |
| 84 | struct work_struct inject; |
Alex Williamson | 7a84428 | 2012-09-21 11:58:03 -0600 | [diff] [blame] | 85 | /* The resampler used by this irqfd (resampler-only) */ |
| 86 | struct _irqfd_resampler *resampler; |
| 87 | /* Eventfd notified on resample (resampler-only) */ |
| 88 | struct eventfd_ctx *resamplefd; |
| 89 | /* Entry in list of irqfds for a resampler (resampler-only) */ |
| 90 | struct list_head resampler_link; |
Michael S. Tsirkin | bd2b53b | 2010-11-18 19:09:08 +0200 | [diff] [blame] | 91 | /* Used for setup/shutdown */ |
| 92 | struct eventfd_ctx *eventfd; |
| 93 | struct list_head list; |
| 94 | poll_table pt; |
| 95 | struct work_struct shutdown; |
Gregory Haskins | 721eecb | 2009-05-20 10:30:49 -0400 | [diff] [blame] | 96 | }; |
| 97 | |
| 98 | static struct workqueue_struct *irqfd_cleanup_wq; |
| 99 | |
| 100 | static void |
| 101 | irqfd_inject(struct work_struct *work) |
| 102 | { |
| 103 | struct _irqfd *irqfd = container_of(work, struct _irqfd, inject); |
| 104 | struct kvm *kvm = irqfd->kvm; |
| 105 | |
Alex Williamson | 7a84428 | 2012-09-21 11:58:03 -0600 | [diff] [blame] | 106 | if (!irqfd->resampler) { |
Yang Zhang | aa2fbe6 | 2013-04-11 19:21:40 +0800 | [diff] [blame] | 107 | kvm_set_irq(kvm, KVM_USERSPACE_IRQ_SOURCE_ID, irqfd->gsi, 1, |
| 108 | false); |
| 109 | kvm_set_irq(kvm, KVM_USERSPACE_IRQ_SOURCE_ID, irqfd->gsi, 0, |
| 110 | false); |
Alex Williamson | 7a84428 | 2012-09-21 11:58:03 -0600 | [diff] [blame] | 111 | } else |
| 112 | kvm_set_irq(kvm, KVM_IRQFD_RESAMPLE_IRQ_SOURCE_ID, |
Yang Zhang | aa2fbe6 | 2013-04-11 19:21:40 +0800 | [diff] [blame] | 113 | irqfd->gsi, 1, false); |
Alex Williamson | 7a84428 | 2012-09-21 11:58:03 -0600 | [diff] [blame] | 114 | } |
| 115 | |
| 116 | /* |
| 117 | * Since resampler irqfds share an IRQ source ID, we de-assert once |
| 118 | * then notify all of the resampler irqfds using this GSI. We can't |
| 119 | * do multiple de-asserts or we risk racing with incoming re-asserts. |
| 120 | */ |
| 121 | static void |
| 122 | irqfd_resampler_ack(struct kvm_irq_ack_notifier *kian) |
| 123 | { |
| 124 | struct _irqfd_resampler *resampler; |
Christian Borntraeger | 719d93c | 2014-01-16 13:44:20 +0100 | [diff] [blame] | 125 | struct kvm *kvm; |
Alex Williamson | 7a84428 | 2012-09-21 11:58:03 -0600 | [diff] [blame] | 126 | struct _irqfd *irqfd; |
Christian Borntraeger | 719d93c | 2014-01-16 13:44:20 +0100 | [diff] [blame] | 127 | int idx; |
Alex Williamson | 7a84428 | 2012-09-21 11:58:03 -0600 | [diff] [blame] | 128 | |
| 129 | resampler = container_of(kian, struct _irqfd_resampler, notifier); |
Christian Borntraeger | 719d93c | 2014-01-16 13:44:20 +0100 | [diff] [blame] | 130 | kvm = resampler->kvm; |
Alex Williamson | 7a84428 | 2012-09-21 11:58:03 -0600 | [diff] [blame] | 131 | |
Christian Borntraeger | 719d93c | 2014-01-16 13:44:20 +0100 | [diff] [blame] | 132 | kvm_set_irq(kvm, KVM_IRQFD_RESAMPLE_IRQ_SOURCE_ID, |
Yang Zhang | aa2fbe6 | 2013-04-11 19:21:40 +0800 | [diff] [blame] | 133 | resampler->notifier.gsi, 0, false); |
Alex Williamson | 7a84428 | 2012-09-21 11:58:03 -0600 | [diff] [blame] | 134 | |
Christian Borntraeger | 719d93c | 2014-01-16 13:44:20 +0100 | [diff] [blame] | 135 | idx = srcu_read_lock(&kvm->irq_srcu); |
Alex Williamson | 7a84428 | 2012-09-21 11:58:03 -0600 | [diff] [blame] | 136 | |
| 137 | list_for_each_entry_rcu(irqfd, &resampler->list, resampler_link) |
| 138 | eventfd_signal(irqfd->resamplefd, 1); |
| 139 | |
Christian Borntraeger | 719d93c | 2014-01-16 13:44:20 +0100 | [diff] [blame] | 140 | srcu_read_unlock(&kvm->irq_srcu, idx); |
Alex Williamson | 7a84428 | 2012-09-21 11:58:03 -0600 | [diff] [blame] | 141 | } |
| 142 | |
| 143 | static void |
| 144 | irqfd_resampler_shutdown(struct _irqfd *irqfd) |
| 145 | { |
| 146 | struct _irqfd_resampler *resampler = irqfd->resampler; |
| 147 | struct kvm *kvm = resampler->kvm; |
| 148 | |
| 149 | mutex_lock(&kvm->irqfds.resampler_lock); |
| 150 | |
| 151 | list_del_rcu(&irqfd->resampler_link); |
Christian Borntraeger | 719d93c | 2014-01-16 13:44:20 +0100 | [diff] [blame] | 152 | synchronize_srcu(&kvm->irq_srcu); |
Alex Williamson | 7a84428 | 2012-09-21 11:58:03 -0600 | [diff] [blame] | 153 | |
| 154 | if (list_empty(&resampler->list)) { |
| 155 | list_del(&resampler->link); |
| 156 | kvm_unregister_irq_ack_notifier(kvm, &resampler->notifier); |
| 157 | kvm_set_irq(kvm, KVM_IRQFD_RESAMPLE_IRQ_SOURCE_ID, |
Yang Zhang | aa2fbe6 | 2013-04-11 19:21:40 +0800 | [diff] [blame] | 158 | resampler->notifier.gsi, 0, false); |
Alex Williamson | 7a84428 | 2012-09-21 11:58:03 -0600 | [diff] [blame] | 159 | kfree(resampler); |
| 160 | } |
| 161 | |
| 162 | mutex_unlock(&kvm->irqfds.resampler_lock); |
Gregory Haskins | 721eecb | 2009-05-20 10:30:49 -0400 | [diff] [blame] | 163 | } |
| 164 | |
| 165 | /* |
| 166 | * Race-free decouple logic (ordering is critical) |
| 167 | */ |
| 168 | static void |
| 169 | irqfd_shutdown(struct work_struct *work) |
| 170 | { |
| 171 | struct _irqfd *irqfd = container_of(work, struct _irqfd, shutdown); |
Michael S. Tsirkin | b6a114d | 2010-01-13 19:12:30 +0200 | [diff] [blame] | 172 | u64 cnt; |
Gregory Haskins | 721eecb | 2009-05-20 10:30:49 -0400 | [diff] [blame] | 173 | |
| 174 | /* |
| 175 | * Synchronize with the wait-queue and unhook ourselves to prevent |
| 176 | * further events. |
| 177 | */ |
Michael S. Tsirkin | b6a114d | 2010-01-13 19:12:30 +0200 | [diff] [blame] | 178 | eventfd_ctx_remove_wait_queue(irqfd->eventfd, &irqfd->wait, &cnt); |
Gregory Haskins | 721eecb | 2009-05-20 10:30:49 -0400 | [diff] [blame] | 179 | |
| 180 | /* |
| 181 | * We know no new events will be scheduled at this point, so block |
| 182 | * until all previously outstanding events have completed |
| 183 | */ |
Tejun Heo | 4382973 | 2012-08-20 14:51:24 -0700 | [diff] [blame] | 184 | flush_work(&irqfd->inject); |
Gregory Haskins | 721eecb | 2009-05-20 10:30:49 -0400 | [diff] [blame] | 185 | |
Alex Williamson | 7a84428 | 2012-09-21 11:58:03 -0600 | [diff] [blame] | 186 | if (irqfd->resampler) { |
| 187 | irqfd_resampler_shutdown(irqfd); |
| 188 | eventfd_ctx_put(irqfd->resamplefd); |
| 189 | } |
| 190 | |
Gregory Haskins | 721eecb | 2009-05-20 10:30:49 -0400 | [diff] [blame] | 191 | /* |
| 192 | * It is now safe to release the object's resources |
| 193 | */ |
| 194 | eventfd_ctx_put(irqfd->eventfd); |
| 195 | kfree(irqfd); |
| 196 | } |
| 197 | |
| 198 | |
| 199 | /* assumes kvm->irqfds.lock is held */ |
| 200 | static bool |
| 201 | irqfd_is_active(struct _irqfd *irqfd) |
| 202 | { |
| 203 | return list_empty(&irqfd->list) ? false : true; |
| 204 | } |
| 205 | |
| 206 | /* |
| 207 | * Mark the irqfd as inactive and schedule it for removal |
| 208 | * |
| 209 | * assumes kvm->irqfds.lock is held |
| 210 | */ |
| 211 | static void |
| 212 | irqfd_deactivate(struct _irqfd *irqfd) |
| 213 | { |
| 214 | BUG_ON(!irqfd_is_active(irqfd)); |
| 215 | |
| 216 | list_del_init(&irqfd->list); |
| 217 | |
| 218 | queue_work(irqfd_cleanup_wq, &irqfd->shutdown); |
| 219 | } |
| 220 | |
| 221 | /* |
| 222 | * Called with wqh->lock held and interrupts disabled |
| 223 | */ |
| 224 | static int |
| 225 | irqfd_wakeup(wait_queue_t *wait, unsigned mode, int sync, void *key) |
| 226 | { |
| 227 | struct _irqfd *irqfd = container_of(wait, struct _irqfd, wait); |
| 228 | unsigned long flags = (unsigned long)key; |
Paul Mackerras | 56f89f3 | 2014-06-30 20:51:09 +1000 | [diff] [blame] | 229 | struct kvm_kernel_irq_routing_entry irq; |
Michael S. Tsirkin | bd2b53b | 2010-11-18 19:09:08 +0200 | [diff] [blame] | 230 | struct kvm *kvm = irqfd->kvm; |
Paul Mackerras | 56f89f3 | 2014-06-30 20:51:09 +1000 | [diff] [blame] | 231 | unsigned seq; |
Christian Borntraeger | 719d93c | 2014-01-16 13:44:20 +0100 | [diff] [blame] | 232 | int idx; |
Gregory Haskins | 721eecb | 2009-05-20 10:30:49 -0400 | [diff] [blame] | 233 | |
Michael S. Tsirkin | bd2b53b | 2010-11-18 19:09:08 +0200 | [diff] [blame] | 234 | if (flags & POLLIN) { |
Christian Borntraeger | 719d93c | 2014-01-16 13:44:20 +0100 | [diff] [blame] | 235 | idx = srcu_read_lock(&kvm->irq_srcu); |
Paul Mackerras | 56f89f3 | 2014-06-30 20:51:09 +1000 | [diff] [blame] | 236 | do { |
| 237 | seq = read_seqcount_begin(&irqfd->irq_entry_sc); |
| 238 | irq = irqfd->irq_entry; |
| 239 | } while (read_seqcount_retry(&irqfd->irq_entry_sc, seq)); |
Gregory Haskins | 721eecb | 2009-05-20 10:30:49 -0400 | [diff] [blame] | 240 | /* An event has been signaled, inject an interrupt */ |
Paul Mackerras | 56f89f3 | 2014-06-30 20:51:09 +1000 | [diff] [blame] | 241 | if (irq.type == KVM_IRQ_ROUTING_MSI) |
| 242 | kvm_set_msi(&irq, kvm, KVM_USERSPACE_IRQ_SOURCE_ID, 1, |
Yang Zhang | aa2fbe6 | 2013-04-11 19:21:40 +0800 | [diff] [blame] | 243 | false); |
Michael S. Tsirkin | bd2b53b | 2010-11-18 19:09:08 +0200 | [diff] [blame] | 244 | else |
| 245 | schedule_work(&irqfd->inject); |
Christian Borntraeger | 719d93c | 2014-01-16 13:44:20 +0100 | [diff] [blame] | 246 | srcu_read_unlock(&kvm->irq_srcu, idx); |
Michael S. Tsirkin | bd2b53b | 2010-11-18 19:09:08 +0200 | [diff] [blame] | 247 | } |
Gregory Haskins | 721eecb | 2009-05-20 10:30:49 -0400 | [diff] [blame] | 248 | |
| 249 | if (flags & POLLHUP) { |
| 250 | /* The eventfd is closing, detach from KVM */ |
Gregory Haskins | 721eecb | 2009-05-20 10:30:49 -0400 | [diff] [blame] | 251 | unsigned long flags; |
| 252 | |
| 253 | spin_lock_irqsave(&kvm->irqfds.lock, flags); |
| 254 | |
| 255 | /* |
| 256 | * We must check if someone deactivated the irqfd before |
| 257 | * we could acquire the irqfds.lock since the item is |
| 258 | * deactivated from the KVM side before it is unhooked from |
| 259 | * the wait-queue. If it is already deactivated, we can |
| 260 | * simply return knowing the other side will cleanup for us. |
| 261 | * We cannot race against the irqfd going away since the |
| 262 | * other side is required to acquire wqh->lock, which we hold |
| 263 | */ |
| 264 | if (irqfd_is_active(irqfd)) |
| 265 | irqfd_deactivate(irqfd); |
| 266 | |
| 267 | spin_unlock_irqrestore(&kvm->irqfds.lock, flags); |
| 268 | } |
| 269 | |
| 270 | return 0; |
| 271 | } |
| 272 | |
| 273 | static void |
| 274 | irqfd_ptable_queue_proc(struct file *file, wait_queue_head_t *wqh, |
| 275 | poll_table *pt) |
| 276 | { |
| 277 | struct _irqfd *irqfd = container_of(pt, struct _irqfd, pt); |
Gregory Haskins | 721eecb | 2009-05-20 10:30:49 -0400 | [diff] [blame] | 278 | add_wait_queue(wqh, &irqfd->wait); |
| 279 | } |
| 280 | |
Michael S. Tsirkin | bd2b53b | 2010-11-18 19:09:08 +0200 | [diff] [blame] | 281 | /* Must be called under irqfds.lock */ |
Paul Mackerras | 9957c86 | 2014-06-30 20:51:11 +1000 | [diff] [blame] | 282 | static void irqfd_update(struct kvm *kvm, struct _irqfd *irqfd) |
Michael S. Tsirkin | bd2b53b | 2010-11-18 19:09:08 +0200 | [diff] [blame] | 283 | { |
| 284 | struct kvm_kernel_irq_routing_entry *e; |
Paul Mackerras | 8ba918d | 2014-06-30 20:51:10 +1000 | [diff] [blame] | 285 | struct kvm_kernel_irq_routing_entry entries[KVM_NR_IRQCHIPS]; |
| 286 | int i, n_entries; |
| 287 | |
Paul Mackerras | 9957c86 | 2014-06-30 20:51:11 +1000 | [diff] [blame] | 288 | n_entries = kvm_irq_map_gsi(kvm, entries, irqfd->gsi); |
Michael S. Tsirkin | bd2b53b | 2010-11-18 19:09:08 +0200 | [diff] [blame] | 289 | |
Paul Mackerras | 56f89f3 | 2014-06-30 20:51:09 +1000 | [diff] [blame] | 290 | write_seqcount_begin(&irqfd->irq_entry_sc); |
| 291 | |
| 292 | irqfd->irq_entry.type = 0; |
Michael S. Tsirkin | bd2b53b | 2010-11-18 19:09:08 +0200 | [diff] [blame] | 293 | |
Paul Mackerras | 8ba918d | 2014-06-30 20:51:10 +1000 | [diff] [blame] | 294 | e = entries; |
| 295 | for (i = 0; i < n_entries; ++i, ++e) { |
Michael S. Tsirkin | bd2b53b | 2010-11-18 19:09:08 +0200 | [diff] [blame] | 296 | /* Only fast-path MSI. */ |
| 297 | if (e->type == KVM_IRQ_ROUTING_MSI) |
Paul Mackerras | 56f89f3 | 2014-06-30 20:51:09 +1000 | [diff] [blame] | 298 | irqfd->irq_entry = *e; |
Michael S. Tsirkin | bd2b53b | 2010-11-18 19:09:08 +0200 | [diff] [blame] | 299 | } |
Paul Mackerras | 56f89f3 | 2014-06-30 20:51:09 +1000 | [diff] [blame] | 300 | |
Paul Mackerras | 56f89f3 | 2014-06-30 20:51:09 +1000 | [diff] [blame] | 301 | write_seqcount_end(&irqfd->irq_entry_sc); |
Michael S. Tsirkin | bd2b53b | 2010-11-18 19:09:08 +0200 | [diff] [blame] | 302 | } |
| 303 | |
Gregory Haskins | 721eecb | 2009-05-20 10:30:49 -0400 | [diff] [blame] | 304 | static int |
Alex Williamson | d4db293 | 2012-06-29 09:56:08 -0600 | [diff] [blame] | 305 | kvm_irqfd_assign(struct kvm *kvm, struct kvm_irqfd *args) |
Gregory Haskins | 721eecb | 2009-05-20 10:30:49 -0400 | [diff] [blame] | 306 | { |
Michael S. Tsirkin | f1d1c30 | 2010-01-13 18:58:09 +0200 | [diff] [blame] | 307 | struct _irqfd *irqfd, *tmp; |
Al Viro | cffe78d | 2013-08-30 15:47:17 -0400 | [diff] [blame] | 308 | struct fd f; |
Alex Williamson | 7a84428 | 2012-09-21 11:58:03 -0600 | [diff] [blame] | 309 | struct eventfd_ctx *eventfd = NULL, *resamplefd = NULL; |
Gregory Haskins | 721eecb | 2009-05-20 10:30:49 -0400 | [diff] [blame] | 310 | int ret; |
| 311 | unsigned int events; |
Paul Mackerras | 9957c86 | 2014-06-30 20:51:11 +1000 | [diff] [blame] | 312 | int idx; |
Gregory Haskins | 721eecb | 2009-05-20 10:30:49 -0400 | [diff] [blame] | 313 | |
Eric Auger | 01c94e6 | 2015-03-04 11:14:33 +0100 | [diff] [blame] | 314 | if (!kvm_arch_intc_initialized(kvm)) |
| 315 | return -EAGAIN; |
| 316 | |
Gregory Haskins | 721eecb | 2009-05-20 10:30:49 -0400 | [diff] [blame] | 317 | irqfd = kzalloc(sizeof(*irqfd), GFP_KERNEL); |
| 318 | if (!irqfd) |
| 319 | return -ENOMEM; |
| 320 | |
| 321 | irqfd->kvm = kvm; |
Alex Williamson | d4db293 | 2012-06-29 09:56:08 -0600 | [diff] [blame] | 322 | irqfd->gsi = args->gsi; |
Gregory Haskins | 721eecb | 2009-05-20 10:30:49 -0400 | [diff] [blame] | 323 | INIT_LIST_HEAD(&irqfd->list); |
| 324 | INIT_WORK(&irqfd->inject, irqfd_inject); |
| 325 | INIT_WORK(&irqfd->shutdown, irqfd_shutdown); |
Paul Mackerras | 56f89f3 | 2014-06-30 20:51:09 +1000 | [diff] [blame] | 326 | seqcount_init(&irqfd->irq_entry_sc); |
Gregory Haskins | 721eecb | 2009-05-20 10:30:49 -0400 | [diff] [blame] | 327 | |
Al Viro | cffe78d | 2013-08-30 15:47:17 -0400 | [diff] [blame] | 328 | f = fdget(args->fd); |
| 329 | if (!f.file) { |
| 330 | ret = -EBADF; |
| 331 | goto out; |
Gregory Haskins | 721eecb | 2009-05-20 10:30:49 -0400 | [diff] [blame] | 332 | } |
| 333 | |
Al Viro | cffe78d | 2013-08-30 15:47:17 -0400 | [diff] [blame] | 334 | eventfd = eventfd_ctx_fileget(f.file); |
Gregory Haskins | 721eecb | 2009-05-20 10:30:49 -0400 | [diff] [blame] | 335 | if (IS_ERR(eventfd)) { |
| 336 | ret = PTR_ERR(eventfd); |
| 337 | goto fail; |
| 338 | } |
| 339 | |
| 340 | irqfd->eventfd = eventfd; |
| 341 | |
Alex Williamson | 7a84428 | 2012-09-21 11:58:03 -0600 | [diff] [blame] | 342 | 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 Williamson | 49f8a1a | 2012-12-06 14:44:59 -0700 | [diff] [blame] | 357 | &kvm->irqfds.resampler_list, link) { |
Alex Williamson | 7a84428 | 2012-09-21 11:58:03 -0600 | [diff] [blame] | 358 | 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 Borntraeger | 719d93c | 2014-01-16 13:44:20 +0100 | [diff] [blame] | 385 | synchronize_srcu(&kvm->irq_srcu); |
Alex Williamson | 7a84428 | 2012-09-21 11:58:03 -0600 | [diff] [blame] | 386 | |
| 387 | mutex_unlock(&kvm->irqfds.resampler_lock); |
| 388 | } |
| 389 | |
Gregory Haskins | 721eecb | 2009-05-20 10:30:49 -0400 | [diff] [blame] | 390 | /* |
| 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. Tsirkin | f1d1c30 | 2010-01-13 18:58:09 +0200 | [diff] [blame] | 397 | 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 Mackerras | 9957c86 | 2014-06-30 20:51:11 +1000 | [diff] [blame] | 409 | idx = srcu_read_lock(&kvm->irq_srcu); |
| 410 | irqfd_update(kvm, irqfd); |
| 411 | srcu_read_unlock(&kvm->irq_srcu, idx); |
Michael S. Tsirkin | bd2b53b | 2010-11-18 19:09:08 +0200 | [diff] [blame] | 412 | |
Gregory Haskins | 721eecb | 2009-05-20 10:30:49 -0400 | [diff] [blame] | 413 | list_add_tail(&irqfd->list, &kvm->irqfds.items); |
Gregory Haskins | 721eecb | 2009-05-20 10:30:49 -0400 | [diff] [blame] | 414 | |
Cornelia Huck | 684a0b7 | 2014-03-17 19:11:35 +0100 | [diff] [blame] | 415 | spin_unlock_irq(&kvm->irqfds.lock); |
| 416 | |
Gregory Haskins | 721eecb | 2009-05-20 10:30:49 -0400 | [diff] [blame] | 417 | /* |
| 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 Huck | 684a0b7 | 2014-03-17 19:11:35 +0100 | [diff] [blame] | 421 | events = f.file->f_op->poll(f.file, &irqfd->pt); |
| 422 | |
Gregory Haskins | 721eecb | 2009-05-20 10:30:49 -0400 | [diff] [blame] | 423 | 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 Viro | cffe78d | 2013-08-30 15:47:17 -0400 | [diff] [blame] | 430 | fdput(f); |
Gregory Haskins | 721eecb | 2009-05-20 10:30:49 -0400 | [diff] [blame] | 431 | |
| 432 | return 0; |
| 433 | |
| 434 | fail: |
Alex Williamson | 7a84428 | 2012-09-21 11:58:03 -0600 | [diff] [blame] | 435 | if (irqfd->resampler) |
| 436 | irqfd_resampler_shutdown(irqfd); |
| 437 | |
| 438 | if (resamplefd && !IS_ERR(resamplefd)) |
| 439 | eventfd_ctx_put(resamplefd); |
| 440 | |
Gregory Haskins | 721eecb | 2009-05-20 10:30:49 -0400 | [diff] [blame] | 441 | if (eventfd && !IS_ERR(eventfd)) |
| 442 | eventfd_ctx_put(eventfd); |
| 443 | |
Al Viro | cffe78d | 2013-08-30 15:47:17 -0400 | [diff] [blame] | 444 | fdput(f); |
Gregory Haskins | 721eecb | 2009-05-20 10:30:49 -0400 | [diff] [blame] | 445 | |
Al Viro | cffe78d | 2013-08-30 15:47:17 -0400 | [diff] [blame] | 446 | out: |
Gregory Haskins | 721eecb | 2009-05-20 10:30:49 -0400 | [diff] [blame] | 447 | kfree(irqfd); |
| 448 | return ret; |
| 449 | } |
Paolo Bonzini | c77dcac | 2014-08-06 14:24:45 +0200 | [diff] [blame] | 450 | |
| 451 | bool 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 | } |
| 470 | EXPORT_SYMBOL_GPL(kvm_irq_has_notifier); |
| 471 | |
| 472 | void 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 | |
| 489 | void 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); |
Paolo Bonzini | c77dcac | 2014-08-06 14:24:45 +0200 | [diff] [blame] | 495 | kvm_vcpu_request_scan_ioapic(kvm); |
Paolo Bonzini | c77dcac | 2014-08-06 14:24:45 +0200 | [diff] [blame] | 496 | } |
| 497 | |
| 498 | void kvm_unregister_irq_ack_notifier(struct kvm *kvm, |
| 499 | struct kvm_irq_ack_notifier *kian) |
| 500 | { |
| 501 | mutex_lock(&kvm->irq_lock); |
| 502 | hlist_del_init_rcu(&kian->link); |
| 503 | mutex_unlock(&kvm->irq_lock); |
| 504 | synchronize_srcu(&kvm->irq_srcu); |
Paolo Bonzini | c77dcac | 2014-08-06 14:24:45 +0200 | [diff] [blame] | 505 | kvm_vcpu_request_scan_ioapic(kvm); |
Paolo Bonzini | c77dcac | 2014-08-06 14:24:45 +0200 | [diff] [blame] | 506 | } |
Alexander Graf | 914daba | 2012-10-09 00:22:59 +0200 | [diff] [blame] | 507 | #endif |
Gregory Haskins | 721eecb | 2009-05-20 10:30:49 -0400 | [diff] [blame] | 508 | |
| 509 | void |
Gregory Haskins | d34e6b1 | 2009-07-07 17:08:49 -0400 | [diff] [blame] | 510 | kvm_eventfd_init(struct kvm *kvm) |
Gregory Haskins | 721eecb | 2009-05-20 10:30:49 -0400 | [diff] [blame] | 511 | { |
Paul Mackerras | 297e210 | 2014-06-30 20:51:13 +1000 | [diff] [blame] | 512 | #ifdef CONFIG_HAVE_KVM_IRQFD |
Gregory Haskins | 721eecb | 2009-05-20 10:30:49 -0400 | [diff] [blame] | 513 | spin_lock_init(&kvm->irqfds.lock); |
| 514 | INIT_LIST_HEAD(&kvm->irqfds.items); |
Alex Williamson | 7a84428 | 2012-09-21 11:58:03 -0600 | [diff] [blame] | 515 | INIT_LIST_HEAD(&kvm->irqfds.resampler_list); |
| 516 | mutex_init(&kvm->irqfds.resampler_lock); |
Alexander Graf | 914daba | 2012-10-09 00:22:59 +0200 | [diff] [blame] | 517 | #endif |
Gregory Haskins | d34e6b1 | 2009-07-07 17:08:49 -0400 | [diff] [blame] | 518 | INIT_LIST_HEAD(&kvm->ioeventfds); |
Gregory Haskins | 721eecb | 2009-05-20 10:30:49 -0400 | [diff] [blame] | 519 | } |
| 520 | |
Paul Mackerras | 297e210 | 2014-06-30 20:51:13 +1000 | [diff] [blame] | 521 | #ifdef CONFIG_HAVE_KVM_IRQFD |
Gregory Haskins | 721eecb | 2009-05-20 10:30:49 -0400 | [diff] [blame] | 522 | /* |
| 523 | * shutdown any irqfd's that match fd+gsi |
| 524 | */ |
| 525 | static int |
Alex Williamson | d4db293 | 2012-06-29 09:56:08 -0600 | [diff] [blame] | 526 | kvm_irqfd_deassign(struct kvm *kvm, struct kvm_irqfd *args) |
Gregory Haskins | 721eecb | 2009-05-20 10:30:49 -0400 | [diff] [blame] | 527 | { |
| 528 | struct _irqfd *irqfd, *tmp; |
| 529 | struct eventfd_ctx *eventfd; |
| 530 | |
Alex Williamson | d4db293 | 2012-06-29 09:56:08 -0600 | [diff] [blame] | 531 | eventfd = eventfd_ctx_fdget(args->fd); |
Gregory Haskins | 721eecb | 2009-05-20 10:30:49 -0400 | [diff] [blame] | 532 | if (IS_ERR(eventfd)) |
| 533 | return PTR_ERR(eventfd); |
| 534 | |
| 535 | spin_lock_irq(&kvm->irqfds.lock); |
| 536 | |
| 537 | list_for_each_entry_safe(irqfd, tmp, &kvm->irqfds.items, list) { |
Alex Williamson | d4db293 | 2012-06-29 09:56:08 -0600 | [diff] [blame] | 538 | if (irqfd->eventfd == eventfd && irqfd->gsi == args->gsi) { |
Michael S. Tsirkin | bd2b53b | 2010-11-18 19:09:08 +0200 | [diff] [blame] | 539 | /* |
Paul Mackerras | 56f89f3 | 2014-06-30 20:51:09 +1000 | [diff] [blame] | 540 | * This clearing of irq_entry.type is needed for when |
Michael S. Tsirkin | c8ce057 | 2011-03-06 13:03:26 +0200 | [diff] [blame] | 541 | * another thread calls kvm_irq_routing_update before |
| 542 | * we flush workqueue below (we synchronize with |
| 543 | * kvm_irq_routing_update using irqfds.lock). |
Michael S. Tsirkin | bd2b53b | 2010-11-18 19:09:08 +0200 | [diff] [blame] | 544 | */ |
Paul Mackerras | 56f89f3 | 2014-06-30 20:51:09 +1000 | [diff] [blame] | 545 | write_seqcount_begin(&irqfd->irq_entry_sc); |
| 546 | irqfd->irq_entry.type = 0; |
| 547 | write_seqcount_end(&irqfd->irq_entry_sc); |
Gregory Haskins | 721eecb | 2009-05-20 10:30:49 -0400 | [diff] [blame] | 548 | irqfd_deactivate(irqfd); |
Michael S. Tsirkin | bd2b53b | 2010-11-18 19:09:08 +0200 | [diff] [blame] | 549 | } |
Gregory Haskins | 721eecb | 2009-05-20 10:30:49 -0400 | [diff] [blame] | 550 | } |
| 551 | |
| 552 | spin_unlock_irq(&kvm->irqfds.lock); |
| 553 | eventfd_ctx_put(eventfd); |
| 554 | |
| 555 | /* |
| 556 | * Block until we know all outstanding shutdown jobs have completed |
| 557 | * so that we guarantee there will not be any more interrupts on this |
| 558 | * gsi once this deassign function returns. |
| 559 | */ |
| 560 | flush_workqueue(irqfd_cleanup_wq); |
| 561 | |
| 562 | return 0; |
| 563 | } |
| 564 | |
| 565 | int |
Alex Williamson | d4db293 | 2012-06-29 09:56:08 -0600 | [diff] [blame] | 566 | kvm_irqfd(struct kvm *kvm, struct kvm_irqfd *args) |
Gregory Haskins | 721eecb | 2009-05-20 10:30:49 -0400 | [diff] [blame] | 567 | { |
Alex Williamson | 7a84428 | 2012-09-21 11:58:03 -0600 | [diff] [blame] | 568 | if (args->flags & ~(KVM_IRQFD_FLAG_DEASSIGN | KVM_IRQFD_FLAG_RESAMPLE)) |
Alex Williamson | 326cf03 | 2012-06-29 09:56:24 -0600 | [diff] [blame] | 569 | return -EINVAL; |
| 570 | |
Alex Williamson | d4db293 | 2012-06-29 09:56:08 -0600 | [diff] [blame] | 571 | if (args->flags & KVM_IRQFD_FLAG_DEASSIGN) |
| 572 | return kvm_irqfd_deassign(kvm, args); |
Gregory Haskins | 721eecb | 2009-05-20 10:30:49 -0400 | [diff] [blame] | 573 | |
Alex Williamson | d4db293 | 2012-06-29 09:56:08 -0600 | [diff] [blame] | 574 | return kvm_irqfd_assign(kvm, args); |
Gregory Haskins | 721eecb | 2009-05-20 10:30:49 -0400 | [diff] [blame] | 575 | } |
| 576 | |
| 577 | /* |
| 578 | * This function is called as the kvm VM fd is being released. Shutdown all |
| 579 | * irqfds that still remain open |
| 580 | */ |
| 581 | void |
| 582 | kvm_irqfd_release(struct kvm *kvm) |
| 583 | { |
| 584 | struct _irqfd *irqfd, *tmp; |
| 585 | |
| 586 | spin_lock_irq(&kvm->irqfds.lock); |
| 587 | |
| 588 | list_for_each_entry_safe(irqfd, tmp, &kvm->irqfds.items, list) |
| 589 | irqfd_deactivate(irqfd); |
| 590 | |
| 591 | spin_unlock_irq(&kvm->irqfds.lock); |
| 592 | |
| 593 | /* |
| 594 | * Block until we know all outstanding shutdown jobs have completed |
| 595 | * since we do not take a kvm* reference. |
| 596 | */ |
| 597 | flush_workqueue(irqfd_cleanup_wq); |
| 598 | |
| 599 | } |
| 600 | |
| 601 | /* |
Paul Mackerras | 9957c86 | 2014-06-30 20:51:11 +1000 | [diff] [blame] | 602 | * Take note of a change in irq routing. |
Christian Borntraeger | 719d93c | 2014-01-16 13:44:20 +0100 | [diff] [blame] | 603 | * Caller must invoke synchronize_srcu(&kvm->irq_srcu) afterwards. |
Michael S. Tsirkin | bd2b53b | 2010-11-18 19:09:08 +0200 | [diff] [blame] | 604 | */ |
Paul Mackerras | 9957c86 | 2014-06-30 20:51:11 +1000 | [diff] [blame] | 605 | void kvm_irq_routing_update(struct kvm *kvm) |
Michael S. Tsirkin | bd2b53b | 2010-11-18 19:09:08 +0200 | [diff] [blame] | 606 | { |
| 607 | struct _irqfd *irqfd; |
| 608 | |
| 609 | spin_lock_irq(&kvm->irqfds.lock); |
| 610 | |
Michael S. Tsirkin | bd2b53b | 2010-11-18 19:09:08 +0200 | [diff] [blame] | 611 | list_for_each_entry(irqfd, &kvm->irqfds.items, list) |
Paul Mackerras | 9957c86 | 2014-06-30 20:51:11 +1000 | [diff] [blame] | 612 | irqfd_update(kvm, irqfd); |
Michael S. Tsirkin | bd2b53b | 2010-11-18 19:09:08 +0200 | [diff] [blame] | 613 | |
| 614 | spin_unlock_irq(&kvm->irqfds.lock); |
| 615 | } |
| 616 | |
| 617 | /* |
Gregory Haskins | 721eecb | 2009-05-20 10:30:49 -0400 | [diff] [blame] | 618 | * create a host-wide workqueue for issuing deferred shutdown requests |
| 619 | * aggregated from all vm* instances. We need our own isolated single-thread |
| 620 | * queue to prevent deadlock against flushing the normal work-queue. |
| 621 | */ |
Cornelia Huck | a0f155e | 2013-02-28 12:33:18 +0100 | [diff] [blame] | 622 | int kvm_irqfd_init(void) |
Gregory Haskins | 721eecb | 2009-05-20 10:30:49 -0400 | [diff] [blame] | 623 | { |
| 624 | irqfd_cleanup_wq = create_singlethread_workqueue("kvm-irqfd-cleanup"); |
| 625 | if (!irqfd_cleanup_wq) |
| 626 | return -ENOMEM; |
| 627 | |
| 628 | return 0; |
| 629 | } |
| 630 | |
Cornelia Huck | a0f155e | 2013-02-28 12:33:18 +0100 | [diff] [blame] | 631 | void kvm_irqfd_exit(void) |
Gregory Haskins | 721eecb | 2009-05-20 10:30:49 -0400 | [diff] [blame] | 632 | { |
| 633 | destroy_workqueue(irqfd_cleanup_wq); |
| 634 | } |
Alexander Graf | 914daba | 2012-10-09 00:22:59 +0200 | [diff] [blame] | 635 | #endif |
Gregory Haskins | d34e6b1 | 2009-07-07 17:08:49 -0400 | [diff] [blame] | 636 | |
| 637 | /* |
| 638 | * -------------------------------------------------------------------- |
| 639 | * ioeventfd: translate a PIO/MMIO memory write to an eventfd signal. |
| 640 | * |
| 641 | * userspace can register a PIO/MMIO address with an eventfd for receiving |
| 642 | * notification when the memory has been touched. |
| 643 | * -------------------------------------------------------------------- |
| 644 | */ |
| 645 | |
| 646 | struct _ioeventfd { |
| 647 | struct list_head list; |
| 648 | u64 addr; |
| 649 | int length; |
| 650 | struct eventfd_ctx *eventfd; |
| 651 | u64 datamatch; |
| 652 | struct kvm_io_device dev; |
Michael S. Tsirkin | 05e07f9 | 2013-04-04 13:27:21 +0300 | [diff] [blame] | 653 | u8 bus_idx; |
Gregory Haskins | d34e6b1 | 2009-07-07 17:08:49 -0400 | [diff] [blame] | 654 | bool wildcard; |
| 655 | }; |
| 656 | |
| 657 | static inline struct _ioeventfd * |
| 658 | to_ioeventfd(struct kvm_io_device *dev) |
| 659 | { |
| 660 | return container_of(dev, struct _ioeventfd, dev); |
| 661 | } |
| 662 | |
| 663 | static void |
| 664 | ioeventfd_release(struct _ioeventfd *p) |
| 665 | { |
| 666 | eventfd_ctx_put(p->eventfd); |
| 667 | list_del(&p->list); |
| 668 | kfree(p); |
| 669 | } |
| 670 | |
| 671 | static bool |
| 672 | ioeventfd_in_range(struct _ioeventfd *p, gpa_t addr, int len, const void *val) |
| 673 | { |
| 674 | u64 _val; |
| 675 | |
Michael S. Tsirkin | f848a5a | 2014-03-31 21:50:38 +0300 | [diff] [blame] | 676 | if (addr != p->addr) |
| 677 | /* address must be precise for a hit */ |
| 678 | return false; |
| 679 | |
| 680 | if (!p->length) |
| 681 | /* length = 0 means only look at the address, so always a hit */ |
| 682 | return true; |
| 683 | |
| 684 | if (len != p->length) |
Gregory Haskins | d34e6b1 | 2009-07-07 17:08:49 -0400 | [diff] [blame] | 685 | /* address-range must be precise for a hit */ |
| 686 | return false; |
| 687 | |
| 688 | if (p->wildcard) |
| 689 | /* all else equal, wildcard is always a hit */ |
| 690 | return true; |
| 691 | |
| 692 | /* otherwise, we have to actually compare the data */ |
| 693 | |
| 694 | BUG_ON(!IS_ALIGNED((unsigned long)val, len)); |
| 695 | |
| 696 | switch (len) { |
| 697 | case 1: |
| 698 | _val = *(u8 *)val; |
| 699 | break; |
| 700 | case 2: |
| 701 | _val = *(u16 *)val; |
| 702 | break; |
| 703 | case 4: |
| 704 | _val = *(u32 *)val; |
| 705 | break; |
| 706 | case 8: |
| 707 | _val = *(u64 *)val; |
| 708 | break; |
| 709 | default: |
| 710 | return false; |
| 711 | } |
| 712 | |
| 713 | return _val == p->datamatch ? true : false; |
| 714 | } |
| 715 | |
| 716 | /* MMIO/PIO writes trigger an event if the addr/val match */ |
| 717 | static int |
Nikolay Nikolaev | e32edf4 | 2015-03-26 14:39:28 +0000 | [diff] [blame] | 718 | ioeventfd_write(struct kvm_vcpu *vcpu, struct kvm_io_device *this, gpa_t addr, |
| 719 | int len, const void *val) |
Gregory Haskins | d34e6b1 | 2009-07-07 17:08:49 -0400 | [diff] [blame] | 720 | { |
| 721 | struct _ioeventfd *p = to_ioeventfd(this); |
| 722 | |
| 723 | if (!ioeventfd_in_range(p, addr, len, val)) |
| 724 | return -EOPNOTSUPP; |
| 725 | |
| 726 | eventfd_signal(p->eventfd, 1); |
| 727 | return 0; |
| 728 | } |
| 729 | |
| 730 | /* |
| 731 | * This function is called as KVM is completely shutting down. We do not |
| 732 | * need to worry about locking just nuke anything we have as quickly as possible |
| 733 | */ |
| 734 | static void |
| 735 | ioeventfd_destructor(struct kvm_io_device *this) |
| 736 | { |
| 737 | struct _ioeventfd *p = to_ioeventfd(this); |
| 738 | |
| 739 | ioeventfd_release(p); |
| 740 | } |
| 741 | |
| 742 | static const struct kvm_io_device_ops ioeventfd_ops = { |
| 743 | .write = ioeventfd_write, |
| 744 | .destructor = ioeventfd_destructor, |
| 745 | }; |
| 746 | |
| 747 | /* assumes kvm->slots_lock held */ |
| 748 | static bool |
| 749 | ioeventfd_check_collision(struct kvm *kvm, struct _ioeventfd *p) |
| 750 | { |
| 751 | struct _ioeventfd *_p; |
| 752 | |
| 753 | list_for_each_entry(_p, &kvm->ioeventfds, list) |
Michael S. Tsirkin | 05e07f9 | 2013-04-04 13:27:21 +0300 | [diff] [blame] | 754 | if (_p->bus_idx == p->bus_idx && |
Michael S. Tsirkin | f848a5a | 2014-03-31 21:50:38 +0300 | [diff] [blame] | 755 | _p->addr == p->addr && |
| 756 | (!_p->length || !p->length || |
| 757 | (_p->length == p->length && |
| 758 | (_p->wildcard || p->wildcard || |
| 759 | _p->datamatch == p->datamatch)))) |
Gregory Haskins | d34e6b1 | 2009-07-07 17:08:49 -0400 | [diff] [blame] | 760 | return true; |
| 761 | |
| 762 | return false; |
| 763 | } |
| 764 | |
Cornelia Huck | 2b83451 | 2013-02-28 12:33:20 +0100 | [diff] [blame] | 765 | static enum kvm_bus ioeventfd_bus_from_flags(__u32 flags) |
| 766 | { |
| 767 | if (flags & KVM_IOEVENTFD_FLAG_PIO) |
| 768 | return KVM_PIO_BUS; |
| 769 | if (flags & KVM_IOEVENTFD_FLAG_VIRTIO_CCW_NOTIFY) |
| 770 | return KVM_VIRTIO_CCW_NOTIFY_BUS; |
| 771 | return KVM_MMIO_BUS; |
| 772 | } |
| 773 | |
Jason Wang | 85da11c | 2015-09-15 14:41:55 +0800 | [diff] [blame] | 774 | static int kvm_assign_ioeventfd_idx(struct kvm *kvm, |
| 775 | enum kvm_bus bus_idx, |
| 776 | struct kvm_ioeventfd *args) |
Gregory Haskins | d34e6b1 | 2009-07-07 17:08:49 -0400 | [diff] [blame] | 777 | { |
Gregory Haskins | d34e6b1 | 2009-07-07 17:08:49 -0400 | [diff] [blame] | 778 | |
Jason Wang | 85da11c | 2015-09-15 14:41:55 +0800 | [diff] [blame] | 779 | struct eventfd_ctx *eventfd; |
| 780 | struct _ioeventfd *p; |
| 781 | int ret; |
Michael S. Tsirkin | f848a5a | 2014-03-31 21:50:38 +0300 | [diff] [blame] | 782 | |
Gregory Haskins | d34e6b1 | 2009-07-07 17:08:49 -0400 | [diff] [blame] | 783 | eventfd = eventfd_ctx_fdget(args->fd); |
| 784 | if (IS_ERR(eventfd)) |
| 785 | return PTR_ERR(eventfd); |
| 786 | |
| 787 | p = kzalloc(sizeof(*p), GFP_KERNEL); |
| 788 | if (!p) { |
| 789 | ret = -ENOMEM; |
| 790 | goto fail; |
| 791 | } |
| 792 | |
| 793 | INIT_LIST_HEAD(&p->list); |
| 794 | p->addr = args->addr; |
Michael S. Tsirkin | 05e07f9 | 2013-04-04 13:27:21 +0300 | [diff] [blame] | 795 | p->bus_idx = bus_idx; |
Gregory Haskins | d34e6b1 | 2009-07-07 17:08:49 -0400 | [diff] [blame] | 796 | p->length = args->len; |
| 797 | p->eventfd = eventfd; |
| 798 | |
| 799 | /* The datamatch feature is optional, otherwise this is a wildcard */ |
| 800 | if (args->flags & KVM_IOEVENTFD_FLAG_DATAMATCH) |
| 801 | p->datamatch = args->datamatch; |
| 802 | else |
| 803 | p->wildcard = true; |
| 804 | |
Marcelo Tosatti | 79fac95 | 2009-12-23 14:35:26 -0200 | [diff] [blame] | 805 | mutex_lock(&kvm->slots_lock); |
Gregory Haskins | d34e6b1 | 2009-07-07 17:08:49 -0400 | [diff] [blame] | 806 | |
Lucas De Marchi | 25985ed | 2011-03-30 22:57:33 -0300 | [diff] [blame] | 807 | /* Verify that there isn't a match already */ |
Gregory Haskins | d34e6b1 | 2009-07-07 17:08:49 -0400 | [diff] [blame] | 808 | if (ioeventfd_check_collision(kvm, p)) { |
| 809 | ret = -EEXIST; |
| 810 | goto unlock_fail; |
| 811 | } |
| 812 | |
| 813 | kvm_iodevice_init(&p->dev, &ioeventfd_ops); |
| 814 | |
Sasha Levin | 743eeb0 | 2011-07-27 16:00:48 +0300 | [diff] [blame] | 815 | ret = kvm_io_bus_register_dev(kvm, bus_idx, p->addr, p->length, |
| 816 | &p->dev); |
Gregory Haskins | d34e6b1 | 2009-07-07 17:08:49 -0400 | [diff] [blame] | 817 | if (ret < 0) |
| 818 | goto unlock_fail; |
| 819 | |
Amos Kong | 6ea34c9 | 2013-05-25 06:44:15 +0800 | [diff] [blame] | 820 | kvm->buses[bus_idx]->ioeventfd_count++; |
Gregory Haskins | d34e6b1 | 2009-07-07 17:08:49 -0400 | [diff] [blame] | 821 | list_add_tail(&p->list, &kvm->ioeventfds); |
| 822 | |
Marcelo Tosatti | 79fac95 | 2009-12-23 14:35:26 -0200 | [diff] [blame] | 823 | mutex_unlock(&kvm->slots_lock); |
Gregory Haskins | d34e6b1 | 2009-07-07 17:08:49 -0400 | [diff] [blame] | 824 | |
| 825 | return 0; |
| 826 | |
| 827 | unlock_fail: |
Marcelo Tosatti | 79fac95 | 2009-12-23 14:35:26 -0200 | [diff] [blame] | 828 | mutex_unlock(&kvm->slots_lock); |
Gregory Haskins | d34e6b1 | 2009-07-07 17:08:49 -0400 | [diff] [blame] | 829 | |
| 830 | fail: |
| 831 | kfree(p); |
| 832 | eventfd_ctx_put(eventfd); |
| 833 | |
| 834 | return ret; |
| 835 | } |
| 836 | |
| 837 | static int |
Jason Wang | 85da11c | 2015-09-15 14:41:55 +0800 | [diff] [blame] | 838 | kvm_deassign_ioeventfd_idx(struct kvm *kvm, enum kvm_bus bus_idx, |
| 839 | struct kvm_ioeventfd *args) |
Gregory Haskins | d34e6b1 | 2009-07-07 17:08:49 -0400 | [diff] [blame] | 840 | { |
Gregory Haskins | d34e6b1 | 2009-07-07 17:08:49 -0400 | [diff] [blame] | 841 | struct _ioeventfd *p, *tmp; |
| 842 | struct eventfd_ctx *eventfd; |
| 843 | int ret = -ENOENT; |
| 844 | |
| 845 | eventfd = eventfd_ctx_fdget(args->fd); |
| 846 | if (IS_ERR(eventfd)) |
| 847 | return PTR_ERR(eventfd); |
| 848 | |
Marcelo Tosatti | 79fac95 | 2009-12-23 14:35:26 -0200 | [diff] [blame] | 849 | mutex_lock(&kvm->slots_lock); |
Gregory Haskins | d34e6b1 | 2009-07-07 17:08:49 -0400 | [diff] [blame] | 850 | |
| 851 | list_for_each_entry_safe(p, tmp, &kvm->ioeventfds, list) { |
| 852 | bool wildcard = !(args->flags & KVM_IOEVENTFD_FLAG_DATAMATCH); |
| 853 | |
Michael S. Tsirkin | 05e07f9 | 2013-04-04 13:27:21 +0300 | [diff] [blame] | 854 | if (p->bus_idx != bus_idx || |
| 855 | p->eventfd != eventfd || |
Gregory Haskins | d34e6b1 | 2009-07-07 17:08:49 -0400 | [diff] [blame] | 856 | p->addr != args->addr || |
| 857 | p->length != args->len || |
| 858 | p->wildcard != wildcard) |
| 859 | continue; |
| 860 | |
| 861 | if (!p->wildcard && p->datamatch != args->datamatch) |
| 862 | continue; |
| 863 | |
Marcelo Tosatti | e93f8a0 | 2009-12-23 14:35:24 -0200 | [diff] [blame] | 864 | kvm_io_bus_unregister_dev(kvm, bus_idx, &p->dev); |
Amos Kong | 6ea34c9 | 2013-05-25 06:44:15 +0800 | [diff] [blame] | 865 | kvm->buses[bus_idx]->ioeventfd_count--; |
Gregory Haskins | d34e6b1 | 2009-07-07 17:08:49 -0400 | [diff] [blame] | 866 | ioeventfd_release(p); |
| 867 | ret = 0; |
| 868 | break; |
| 869 | } |
| 870 | |
Marcelo Tosatti | 79fac95 | 2009-12-23 14:35:26 -0200 | [diff] [blame] | 871 | mutex_unlock(&kvm->slots_lock); |
Gregory Haskins | d34e6b1 | 2009-07-07 17:08:49 -0400 | [diff] [blame] | 872 | |
| 873 | eventfd_ctx_put(eventfd); |
| 874 | |
| 875 | return ret; |
| 876 | } |
| 877 | |
Jason Wang | 85da11c | 2015-09-15 14:41:55 +0800 | [diff] [blame] | 878 | static int kvm_deassign_ioeventfd(struct kvm *kvm, struct kvm_ioeventfd *args) |
| 879 | { |
| 880 | enum kvm_bus bus_idx = ioeventfd_bus_from_flags(args->flags); |
Jason Wang | eefd6b0 | 2015-09-15 14:41:56 +0800 | [diff] [blame] | 881 | int ret = kvm_deassign_ioeventfd_idx(kvm, bus_idx, args); |
Jason Wang | 85da11c | 2015-09-15 14:41:55 +0800 | [diff] [blame] | 882 | |
Jason Wang | eefd6b0 | 2015-09-15 14:41:56 +0800 | [diff] [blame] | 883 | if (!args->len && bus_idx == KVM_MMIO_BUS) |
| 884 | kvm_deassign_ioeventfd_idx(kvm, KVM_FAST_MMIO_BUS, args); |
| 885 | |
| 886 | return ret; |
Jason Wang | 85da11c | 2015-09-15 14:41:55 +0800 | [diff] [blame] | 887 | } |
| 888 | |
| 889 | static int |
| 890 | kvm_assign_ioeventfd(struct kvm *kvm, struct kvm_ioeventfd *args) |
| 891 | { |
| 892 | enum kvm_bus bus_idx; |
Jason Wang | eefd6b0 | 2015-09-15 14:41:56 +0800 | [diff] [blame] | 893 | int ret; |
Jason Wang | 85da11c | 2015-09-15 14:41:55 +0800 | [diff] [blame] | 894 | |
| 895 | bus_idx = ioeventfd_bus_from_flags(args->flags); |
| 896 | /* must be natural-word sized, or 0 to ignore length */ |
| 897 | switch (args->len) { |
| 898 | case 0: |
| 899 | case 1: |
| 900 | case 2: |
| 901 | case 4: |
| 902 | case 8: |
| 903 | break; |
| 904 | default: |
| 905 | return -EINVAL; |
| 906 | } |
| 907 | |
| 908 | /* check for range overflow */ |
| 909 | if (args->addr + args->len < args->addr) |
| 910 | return -EINVAL; |
| 911 | |
| 912 | /* check for extra flags that we don't understand */ |
| 913 | if (args->flags & ~KVM_IOEVENTFD_VALID_FLAG_MASK) |
| 914 | return -EINVAL; |
| 915 | |
| 916 | /* ioeventfd with no length can't be combined with DATAMATCH */ |
| 917 | if (!args->len && |
| 918 | args->flags & (KVM_IOEVENTFD_FLAG_PIO | |
| 919 | KVM_IOEVENTFD_FLAG_DATAMATCH)) |
| 920 | return -EINVAL; |
| 921 | |
Jason Wang | eefd6b0 | 2015-09-15 14:41:56 +0800 | [diff] [blame] | 922 | ret = kvm_assign_ioeventfd_idx(kvm, bus_idx, args); |
| 923 | if (ret) |
| 924 | goto fail; |
| 925 | |
| 926 | /* When length is ignored, MMIO is also put on a separate bus, for |
| 927 | * faster lookups. |
| 928 | */ |
| 929 | if (!args->len && bus_idx == KVM_MMIO_BUS) { |
| 930 | ret = kvm_assign_ioeventfd_idx(kvm, KVM_FAST_MMIO_BUS, args); |
| 931 | if (ret < 0) |
| 932 | goto fast_fail; |
| 933 | } |
| 934 | |
| 935 | return 0; |
| 936 | |
| 937 | fast_fail: |
| 938 | kvm_deassign_ioeventfd_idx(kvm, bus_idx, args); |
| 939 | fail: |
| 940 | return ret; |
Jason Wang | 85da11c | 2015-09-15 14:41:55 +0800 | [diff] [blame] | 941 | } |
| 942 | |
Gregory Haskins | d34e6b1 | 2009-07-07 17:08:49 -0400 | [diff] [blame] | 943 | int |
| 944 | kvm_ioeventfd(struct kvm *kvm, struct kvm_ioeventfd *args) |
| 945 | { |
| 946 | if (args->flags & KVM_IOEVENTFD_FLAG_DEASSIGN) |
| 947 | return kvm_deassign_ioeventfd(kvm, args); |
| 948 | |
| 949 | return kvm_assign_ioeventfd(kvm, args); |
| 950 | } |