Thomas Gleixner | 775c8a3 | 2019-06-04 10:11:37 +0200 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0-only |
Gregory Haskins | 721eecbf | 2009-05-20 10:30:49 -0400 | [diff] [blame] | 2 | /* |
| 3 | * kvm eventfd support - use eventfd objects to signal various KVM events |
| 4 | * |
| 5 | * Copyright 2009 Novell. All Rights Reserved. |
Avi Kivity | 221d059 | 2010-05-23 18:37:00 +0300 | [diff] [blame] | 6 | * Copyright 2010 Red Hat, Inc. and/or its affiliates. |
Gregory Haskins | 721eecbf | 2009-05-20 10:30:49 -0400 | [diff] [blame] | 7 | * |
| 8 | * Author: |
| 9 | * Gregory Haskins <ghaskins@novell.com> |
Gregory Haskins | 721eecbf | 2009-05-20 10:30:49 -0400 | [diff] [blame] | 10 | */ |
| 11 | |
| 12 | #include <linux/kvm_host.h> |
Gregory Haskins | d34e6b1 | 2009-07-07 17:08:49 -0400 | [diff] [blame] | 13 | #include <linux/kvm.h> |
Eric Auger | 166c977 | 2015-09-18 22:29:42 +0800 | [diff] [blame] | 14 | #include <linux/kvm_irqfd.h> |
Gregory Haskins | 721eecbf | 2009-05-20 10:30:49 -0400 | [diff] [blame] | 15 | #include <linux/workqueue.h> |
| 16 | #include <linux/syscalls.h> |
| 17 | #include <linux/wait.h> |
| 18 | #include <linux/poll.h> |
| 19 | #include <linux/file.h> |
| 20 | #include <linux/list.h> |
| 21 | #include <linux/eventfd.h> |
Gregory Haskins | d34e6b1 | 2009-07-07 17:08:49 -0400 | [diff] [blame] | 22 | #include <linux/kernel.h> |
Christian Borntraeger | 719d93c | 2014-01-16 13:44:20 +0100 | [diff] [blame] | 23 | #include <linux/srcu.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 24 | #include <linux/slab.h> |
Paul Mackerras | 56f89f36 | 2014-06-30 20:51:09 +1000 | [diff] [blame] | 25 | #include <linux/seqlock.h> |
Eric Auger | 9016cfb | 2015-09-18 22:29:44 +0800 | [diff] [blame] | 26 | #include <linux/irqbypass.h> |
Paul Mackerras | e4d57e1 | 2014-06-30 20:51:12 +1000 | [diff] [blame] | 27 | #include <trace/events/kvm.h> |
Gregory Haskins | d34e6b1 | 2009-07-07 17:08:49 -0400 | [diff] [blame] | 28 | |
Andre Przywara | af669ac | 2015-03-26 14:39:29 +0000 | [diff] [blame] | 29 | #include <kvm/iodev.h> |
Gregory Haskins | 721eecbf | 2009-05-20 10:30:49 -0400 | [diff] [blame] | 30 | |
Paul Mackerras | 297e210 | 2014-06-30 20:51:13 +1000 | [diff] [blame] | 31 | #ifdef CONFIG_HAVE_KVM_IRQFD |
Gregory Haskins | 721eecbf | 2009-05-20 10:30:49 -0400 | [diff] [blame] | 32 | |
Paolo Bonzini | 36343f6 | 2016-10-26 13:35:56 +0200 | [diff] [blame] | 33 | static struct workqueue_struct *irqfd_cleanup_wq; |
Gregory Haskins | 721eecbf | 2009-05-20 10:30:49 -0400 | [diff] [blame] | 34 | |
Peter Xu | 654f1f1 | 2019-05-05 16:56:42 +0800 | [diff] [blame] | 35 | bool __attribute__((weak)) |
| 36 | kvm_arch_irqfd_allowed(struct kvm *kvm, struct kvm_irqfd *args) |
| 37 | { |
| 38 | return true; |
| 39 | } |
| 40 | |
Gregory Haskins | 721eecbf | 2009-05-20 10:30:49 -0400 | [diff] [blame] | 41 | static void |
| 42 | irqfd_inject(struct work_struct *work) |
| 43 | { |
Eric Auger | 166c977 | 2015-09-18 22:29:42 +0800 | [diff] [blame] | 44 | struct kvm_kernel_irqfd *irqfd = |
| 45 | container_of(work, struct kvm_kernel_irqfd, inject); |
Gregory Haskins | 721eecbf | 2009-05-20 10:30:49 -0400 | [diff] [blame] | 46 | struct kvm *kvm = irqfd->kvm; |
| 47 | |
Alex Williamson | 7a84428 | 2012-09-21 11:58:03 -0600 | [diff] [blame] | 48 | if (!irqfd->resampler) { |
Yang Zhang | aa2fbe6 | 2013-04-11 19:21:40 +0800 | [diff] [blame] | 49 | kvm_set_irq(kvm, KVM_USERSPACE_IRQ_SOURCE_ID, irqfd->gsi, 1, |
| 50 | false); |
| 51 | kvm_set_irq(kvm, KVM_USERSPACE_IRQ_SOURCE_ID, irqfd->gsi, 0, |
| 52 | false); |
Alex Williamson | 7a84428 | 2012-09-21 11:58:03 -0600 | [diff] [blame] | 53 | } else |
| 54 | kvm_set_irq(kvm, KVM_IRQFD_RESAMPLE_IRQ_SOURCE_ID, |
Yang Zhang | aa2fbe6 | 2013-04-11 19:21:40 +0800 | [diff] [blame] | 55 | irqfd->gsi, 1, false); |
Alex Williamson | 7a84428 | 2012-09-21 11:58:03 -0600 | [diff] [blame] | 56 | } |
| 57 | |
| 58 | /* |
| 59 | * Since resampler irqfds share an IRQ source ID, we de-assert once |
| 60 | * then notify all of the resampler irqfds using this GSI. We can't |
| 61 | * do multiple de-asserts or we risk racing with incoming re-asserts. |
| 62 | */ |
| 63 | static void |
| 64 | irqfd_resampler_ack(struct kvm_irq_ack_notifier *kian) |
| 65 | { |
Eric Auger | 166c977 | 2015-09-18 22:29:42 +0800 | [diff] [blame] | 66 | struct kvm_kernel_irqfd_resampler *resampler; |
Christian Borntraeger | 719d93c | 2014-01-16 13:44:20 +0100 | [diff] [blame] | 67 | struct kvm *kvm; |
Eric Auger | 166c977 | 2015-09-18 22:29:42 +0800 | [diff] [blame] | 68 | struct kvm_kernel_irqfd *irqfd; |
Christian Borntraeger | 719d93c | 2014-01-16 13:44:20 +0100 | [diff] [blame] | 69 | int idx; |
Alex Williamson | 7a84428 | 2012-09-21 11:58:03 -0600 | [diff] [blame] | 70 | |
Eric Auger | 166c977 | 2015-09-18 22:29:42 +0800 | [diff] [blame] | 71 | resampler = container_of(kian, |
| 72 | struct kvm_kernel_irqfd_resampler, notifier); |
Christian Borntraeger | 719d93c | 2014-01-16 13:44:20 +0100 | [diff] [blame] | 73 | kvm = resampler->kvm; |
Alex Williamson | 7a84428 | 2012-09-21 11:58:03 -0600 | [diff] [blame] | 74 | |
Christian Borntraeger | 719d93c | 2014-01-16 13:44:20 +0100 | [diff] [blame] | 75 | kvm_set_irq(kvm, KVM_IRQFD_RESAMPLE_IRQ_SOURCE_ID, |
Yang Zhang | aa2fbe6 | 2013-04-11 19:21:40 +0800 | [diff] [blame] | 76 | resampler->notifier.gsi, 0, false); |
Alex Williamson | 7a84428 | 2012-09-21 11:58:03 -0600 | [diff] [blame] | 77 | |
Christian Borntraeger | 719d93c | 2014-01-16 13:44:20 +0100 | [diff] [blame] | 78 | idx = srcu_read_lock(&kvm->irq_srcu); |
Alex Williamson | 7a84428 | 2012-09-21 11:58:03 -0600 | [diff] [blame] | 79 | |
| 80 | list_for_each_entry_rcu(irqfd, &resampler->list, resampler_link) |
| 81 | eventfd_signal(irqfd->resamplefd, 1); |
| 82 | |
Christian Borntraeger | 719d93c | 2014-01-16 13:44:20 +0100 | [diff] [blame] | 83 | srcu_read_unlock(&kvm->irq_srcu, idx); |
Alex Williamson | 7a84428 | 2012-09-21 11:58:03 -0600 | [diff] [blame] | 84 | } |
| 85 | |
| 86 | static void |
Eric Auger | 166c977 | 2015-09-18 22:29:42 +0800 | [diff] [blame] | 87 | irqfd_resampler_shutdown(struct kvm_kernel_irqfd *irqfd) |
Alex Williamson | 7a84428 | 2012-09-21 11:58:03 -0600 | [diff] [blame] | 88 | { |
Eric Auger | 166c977 | 2015-09-18 22:29:42 +0800 | [diff] [blame] | 89 | struct kvm_kernel_irqfd_resampler *resampler = irqfd->resampler; |
Alex Williamson | 7a84428 | 2012-09-21 11:58:03 -0600 | [diff] [blame] | 90 | struct kvm *kvm = resampler->kvm; |
| 91 | |
| 92 | mutex_lock(&kvm->irqfds.resampler_lock); |
| 93 | |
| 94 | list_del_rcu(&irqfd->resampler_link); |
Christian Borntraeger | 719d93c | 2014-01-16 13:44:20 +0100 | [diff] [blame] | 95 | synchronize_srcu(&kvm->irq_srcu); |
Alex Williamson | 7a84428 | 2012-09-21 11:58:03 -0600 | [diff] [blame] | 96 | |
| 97 | if (list_empty(&resampler->list)) { |
| 98 | list_del(&resampler->link); |
| 99 | kvm_unregister_irq_ack_notifier(kvm, &resampler->notifier); |
| 100 | kvm_set_irq(kvm, KVM_IRQFD_RESAMPLE_IRQ_SOURCE_ID, |
Yang Zhang | aa2fbe6 | 2013-04-11 19:21:40 +0800 | [diff] [blame] | 101 | resampler->notifier.gsi, 0, false); |
Alex Williamson | 7a84428 | 2012-09-21 11:58:03 -0600 | [diff] [blame] | 102 | kfree(resampler); |
| 103 | } |
| 104 | |
| 105 | mutex_unlock(&kvm->irqfds.resampler_lock); |
Gregory Haskins | 721eecbf | 2009-05-20 10:30:49 -0400 | [diff] [blame] | 106 | } |
| 107 | |
| 108 | /* |
| 109 | * Race-free decouple logic (ordering is critical) |
| 110 | */ |
| 111 | static void |
| 112 | irqfd_shutdown(struct work_struct *work) |
| 113 | { |
Eric Auger | 166c977 | 2015-09-18 22:29:42 +0800 | [diff] [blame] | 114 | struct kvm_kernel_irqfd *irqfd = |
| 115 | container_of(work, struct kvm_kernel_irqfd, shutdown); |
Lan Tianyu | b5020a8 | 2017-12-21 21:10:36 -0500 | [diff] [blame] | 116 | struct kvm *kvm = irqfd->kvm; |
Michael S. Tsirkin | b6a114d | 2010-01-13 19:12:30 +0200 | [diff] [blame] | 117 | u64 cnt; |
Gregory Haskins | 721eecbf | 2009-05-20 10:30:49 -0400 | [diff] [blame] | 118 | |
Fuad Tabba | 656012c | 2020-04-01 15:03:10 +0100 | [diff] [blame] | 119 | /* Make sure irqfd has been initialized in assign path. */ |
Lan Tianyu | b5020a8 | 2017-12-21 21:10:36 -0500 | [diff] [blame] | 120 | synchronize_srcu(&kvm->irq_srcu); |
| 121 | |
Gregory Haskins | 721eecbf | 2009-05-20 10:30:49 -0400 | [diff] [blame] | 122 | /* |
| 123 | * Synchronize with the wait-queue and unhook ourselves to prevent |
| 124 | * further events. |
| 125 | */ |
Michael S. Tsirkin | b6a114d | 2010-01-13 19:12:30 +0200 | [diff] [blame] | 126 | eventfd_ctx_remove_wait_queue(irqfd->eventfd, &irqfd->wait, &cnt); |
Gregory Haskins | 721eecbf | 2009-05-20 10:30:49 -0400 | [diff] [blame] | 127 | |
| 128 | /* |
| 129 | * We know no new events will be scheduled at this point, so block |
| 130 | * until all previously outstanding events have completed |
| 131 | */ |
Tejun Heo | 4382973 | 2012-08-20 14:51:24 -0700 | [diff] [blame] | 132 | flush_work(&irqfd->inject); |
Gregory Haskins | 721eecbf | 2009-05-20 10:30:49 -0400 | [diff] [blame] | 133 | |
Alex Williamson | 7a84428 | 2012-09-21 11:58:03 -0600 | [diff] [blame] | 134 | if (irqfd->resampler) { |
| 135 | irqfd_resampler_shutdown(irqfd); |
| 136 | eventfd_ctx_put(irqfd->resamplefd); |
| 137 | } |
| 138 | |
Gregory Haskins | 721eecbf | 2009-05-20 10:30:49 -0400 | [diff] [blame] | 139 | /* |
| 140 | * It is now safe to release the object's resources |
| 141 | */ |
Eric Auger | 9016cfb | 2015-09-18 22:29:44 +0800 | [diff] [blame] | 142 | #ifdef CONFIG_HAVE_KVM_IRQ_BYPASS |
| 143 | irq_bypass_unregister_consumer(&irqfd->consumer); |
| 144 | #endif |
Gregory Haskins | 721eecbf | 2009-05-20 10:30:49 -0400 | [diff] [blame] | 145 | eventfd_ctx_put(irqfd->eventfd); |
| 146 | kfree(irqfd); |
| 147 | } |
| 148 | |
| 149 | |
| 150 | /* assumes kvm->irqfds.lock is held */ |
| 151 | static bool |
Eric Auger | 166c977 | 2015-09-18 22:29:42 +0800 | [diff] [blame] | 152 | irqfd_is_active(struct kvm_kernel_irqfd *irqfd) |
Gregory Haskins | 721eecbf | 2009-05-20 10:30:49 -0400 | [diff] [blame] | 153 | { |
| 154 | return list_empty(&irqfd->list) ? false : true; |
| 155 | } |
| 156 | |
| 157 | /* |
| 158 | * Mark the irqfd as inactive and schedule it for removal |
| 159 | * |
| 160 | * assumes kvm->irqfds.lock is held |
| 161 | */ |
| 162 | static void |
Eric Auger | 166c977 | 2015-09-18 22:29:42 +0800 | [diff] [blame] | 163 | irqfd_deactivate(struct kvm_kernel_irqfd *irqfd) |
Gregory Haskins | 721eecbf | 2009-05-20 10:30:49 -0400 | [diff] [blame] | 164 | { |
| 165 | BUG_ON(!irqfd_is_active(irqfd)); |
| 166 | |
| 167 | list_del_init(&irqfd->list); |
| 168 | |
Paolo Bonzini | 36343f6 | 2016-10-26 13:35:56 +0200 | [diff] [blame] | 169 | queue_work(irqfd_cleanup_wq, &irqfd->shutdown); |
Gregory Haskins | 721eecbf | 2009-05-20 10:30:49 -0400 | [diff] [blame] | 170 | } |
| 171 | |
Paolo Bonzini | b97e6de | 2015-10-28 19:16:47 +0100 | [diff] [blame] | 172 | int __attribute__((weak)) kvm_arch_set_irq_inatomic( |
Andrey Smetanin | c9a5ecc | 2015-10-16 10:07:47 +0300 | [diff] [blame] | 173 | struct kvm_kernel_irq_routing_entry *irq, |
| 174 | struct kvm *kvm, int irq_source_id, |
| 175 | int level, |
| 176 | bool line_status) |
| 177 | { |
| 178 | return -EWOULDBLOCK; |
| 179 | } |
| 180 | |
Gregory Haskins | 721eecbf | 2009-05-20 10:30:49 -0400 | [diff] [blame] | 181 | /* |
| 182 | * Called with wqh->lock held and interrupts disabled |
| 183 | */ |
| 184 | static int |
Ingo Molnar | ac6424b | 2017-06-20 12:06:13 +0200 | [diff] [blame] | 185 | irqfd_wakeup(wait_queue_entry_t *wait, unsigned mode, int sync, void *key) |
Gregory Haskins | 721eecbf | 2009-05-20 10:30:49 -0400 | [diff] [blame] | 186 | { |
Eric Auger | 166c977 | 2015-09-18 22:29:42 +0800 | [diff] [blame] | 187 | struct kvm_kernel_irqfd *irqfd = |
| 188 | container_of(wait, struct kvm_kernel_irqfd, wait); |
Al Viro | 3ad6f93 | 2017-07-03 20:14:56 -0400 | [diff] [blame] | 189 | __poll_t flags = key_to_poll(key); |
Paul Mackerras | 56f89f36 | 2014-06-30 20:51:09 +1000 | [diff] [blame] | 190 | struct kvm_kernel_irq_routing_entry irq; |
Michael S. Tsirkin | bd2b53b | 2010-11-18 19:09:08 +0200 | [diff] [blame] | 191 | struct kvm *kvm = irqfd->kvm; |
Paul Mackerras | 56f89f36 | 2014-06-30 20:51:09 +1000 | [diff] [blame] | 192 | unsigned seq; |
Christian Borntraeger | 719d93c | 2014-01-16 13:44:20 +0100 | [diff] [blame] | 193 | int idx; |
David Woodhouse | e8dbf19 | 2020-10-26 17:53:25 +0000 | [diff] [blame] | 194 | int ret = 0; |
Gregory Haskins | 721eecbf | 2009-05-20 10:30:49 -0400 | [diff] [blame] | 195 | |
Linus Torvalds | a9a0884 | 2018-02-11 14:34:03 -0800 | [diff] [blame] | 196 | if (flags & EPOLLIN) { |
David Woodhouse | b59e00d | 2020-10-27 13:55:23 +0000 | [diff] [blame] | 197 | u64 cnt; |
| 198 | eventfd_ctx_do_read(irqfd->eventfd, &cnt); |
| 199 | |
Christian Borntraeger | 719d93c | 2014-01-16 13:44:20 +0100 | [diff] [blame] | 200 | idx = srcu_read_lock(&kvm->irq_srcu); |
Paul Mackerras | 56f89f36 | 2014-06-30 20:51:09 +1000 | [diff] [blame] | 201 | do { |
| 202 | seq = read_seqcount_begin(&irqfd->irq_entry_sc); |
| 203 | irq = irqfd->irq_entry; |
| 204 | } while (read_seqcount_retry(&irqfd->irq_entry_sc, seq)); |
Gregory Haskins | 721eecbf | 2009-05-20 10:30:49 -0400 | [diff] [blame] | 205 | /* An event has been signaled, inject an interrupt */ |
Paolo Bonzini | b97e6de | 2015-10-28 19:16:47 +0100 | [diff] [blame] | 206 | if (kvm_arch_set_irq_inatomic(&irq, kvm, |
| 207 | KVM_USERSPACE_IRQ_SOURCE_ID, 1, |
| 208 | false) == -EWOULDBLOCK) |
Michael S. Tsirkin | bd2b53b | 2010-11-18 19:09:08 +0200 | [diff] [blame] | 209 | schedule_work(&irqfd->inject); |
Christian Borntraeger | 719d93c | 2014-01-16 13:44:20 +0100 | [diff] [blame] | 210 | srcu_read_unlock(&kvm->irq_srcu, idx); |
David Woodhouse | e8dbf19 | 2020-10-26 17:53:25 +0000 | [diff] [blame] | 211 | ret = 1; |
Michael S. Tsirkin | bd2b53b | 2010-11-18 19:09:08 +0200 | [diff] [blame] | 212 | } |
Gregory Haskins | 721eecbf | 2009-05-20 10:30:49 -0400 | [diff] [blame] | 213 | |
Linus Torvalds | a9a0884 | 2018-02-11 14:34:03 -0800 | [diff] [blame] | 214 | if (flags & EPOLLHUP) { |
Gregory Haskins | 721eecbf | 2009-05-20 10:30:49 -0400 | [diff] [blame] | 215 | /* The eventfd is closing, detach from KVM */ |
Sebastian Andrzej Siewior | ca0488a | 2019-03-15 18:58:15 +0100 | [diff] [blame] | 216 | unsigned long iflags; |
Gregory Haskins | 721eecbf | 2009-05-20 10:30:49 -0400 | [diff] [blame] | 217 | |
Sebastian Andrzej Siewior | ca0488a | 2019-03-15 18:58:15 +0100 | [diff] [blame] | 218 | spin_lock_irqsave(&kvm->irqfds.lock, iflags); |
Gregory Haskins | 721eecbf | 2009-05-20 10:30:49 -0400 | [diff] [blame] | 219 | |
| 220 | /* |
| 221 | * We must check if someone deactivated the irqfd before |
| 222 | * we could acquire the irqfds.lock since the item is |
| 223 | * deactivated from the KVM side before it is unhooked from |
| 224 | * the wait-queue. If it is already deactivated, we can |
| 225 | * simply return knowing the other side will cleanup for us. |
| 226 | * We cannot race against the irqfd going away since the |
| 227 | * other side is required to acquire wqh->lock, which we hold |
| 228 | */ |
| 229 | if (irqfd_is_active(irqfd)) |
| 230 | irqfd_deactivate(irqfd); |
| 231 | |
Sebastian Andrzej Siewior | ca0488a | 2019-03-15 18:58:15 +0100 | [diff] [blame] | 232 | spin_unlock_irqrestore(&kvm->irqfds.lock, iflags); |
Gregory Haskins | 721eecbf | 2009-05-20 10:30:49 -0400 | [diff] [blame] | 233 | } |
| 234 | |
David Woodhouse | e8dbf19 | 2020-10-26 17:53:25 +0000 | [diff] [blame] | 235 | return ret; |
Gregory Haskins | 721eecbf | 2009-05-20 10:30:49 -0400 | [diff] [blame] | 236 | } |
| 237 | |
| 238 | static void |
| 239 | irqfd_ptable_queue_proc(struct file *file, wait_queue_head_t *wqh, |
| 240 | poll_table *pt) |
| 241 | { |
Eric Auger | 166c977 | 2015-09-18 22:29:42 +0800 | [diff] [blame] | 242 | struct kvm_kernel_irqfd *irqfd = |
| 243 | container_of(pt, struct kvm_kernel_irqfd, pt); |
David Woodhouse | e8dbf19 | 2020-10-26 17:53:25 +0000 | [diff] [blame] | 244 | add_wait_queue_priority(wqh, &irqfd->wait); |
Gregory Haskins | 721eecbf | 2009-05-20 10:30:49 -0400 | [diff] [blame] | 245 | } |
| 246 | |
Michael S. Tsirkin | bd2b53b | 2010-11-18 19:09:08 +0200 | [diff] [blame] | 247 | /* Must be called under irqfds.lock */ |
Eric Auger | 166c977 | 2015-09-18 22:29:42 +0800 | [diff] [blame] | 248 | static void irqfd_update(struct kvm *kvm, struct kvm_kernel_irqfd *irqfd) |
Michael S. Tsirkin | bd2b53b | 2010-11-18 19:09:08 +0200 | [diff] [blame] | 249 | { |
| 250 | struct kvm_kernel_irq_routing_entry *e; |
Paul Mackerras | 8ba918d | 2014-06-30 20:51:10 +1000 | [diff] [blame] | 251 | struct kvm_kernel_irq_routing_entry entries[KVM_NR_IRQCHIPS]; |
Andrey Smetanin | 351dc647 | 2015-10-16 10:07:45 +0300 | [diff] [blame] | 252 | int n_entries; |
Paul Mackerras | 8ba918d | 2014-06-30 20:51:10 +1000 | [diff] [blame] | 253 | |
Paul Mackerras | 9957c86 | 2014-06-30 20:51:11 +1000 | [diff] [blame] | 254 | n_entries = kvm_irq_map_gsi(kvm, entries, irqfd->gsi); |
Michael S. Tsirkin | bd2b53b | 2010-11-18 19:09:08 +0200 | [diff] [blame] | 255 | |
Paul Mackerras | 56f89f36 | 2014-06-30 20:51:09 +1000 | [diff] [blame] | 256 | write_seqcount_begin(&irqfd->irq_entry_sc); |
| 257 | |
Paul Mackerras | 8ba918d | 2014-06-30 20:51:10 +1000 | [diff] [blame] | 258 | e = entries; |
Andrey Smetanin | 351dc647 | 2015-10-16 10:07:45 +0300 | [diff] [blame] | 259 | if (n_entries == 1) |
| 260 | irqfd->irq_entry = *e; |
| 261 | else |
| 262 | irqfd->irq_entry.type = 0; |
Paul Mackerras | 56f89f36 | 2014-06-30 20:51:09 +1000 | [diff] [blame] | 263 | |
Paul Mackerras | 56f89f36 | 2014-06-30 20:51:09 +1000 | [diff] [blame] | 264 | write_seqcount_end(&irqfd->irq_entry_sc); |
Michael S. Tsirkin | bd2b53b | 2010-11-18 19:09:08 +0200 | [diff] [blame] | 265 | } |
| 266 | |
Eric Auger | 1a02b27 | 2015-09-18 22:29:43 +0800 | [diff] [blame] | 267 | #ifdef CONFIG_HAVE_KVM_IRQ_BYPASS |
| 268 | void __attribute__((weak)) kvm_arch_irq_bypass_stop( |
| 269 | struct irq_bypass_consumer *cons) |
| 270 | { |
| 271 | } |
| 272 | |
| 273 | void __attribute__((weak)) kvm_arch_irq_bypass_start( |
| 274 | struct irq_bypass_consumer *cons) |
| 275 | { |
| 276 | } |
Feng Wu | f70c20a | 2015-09-18 22:29:53 +0800 | [diff] [blame] | 277 | |
| 278 | int __attribute__((weak)) kvm_arch_update_irqfd_routing( |
| 279 | struct kvm *kvm, unsigned int host_irq, |
| 280 | uint32_t guest_irq, bool set) |
| 281 | { |
| 282 | return 0; |
| 283 | } |
Longpeng(Mike) | 515a0c7 | 2021-08-27 16:00:03 +0800 | [diff] [blame] | 284 | |
| 285 | bool __attribute__((weak)) kvm_arch_irqfd_route_changed( |
| 286 | struct kvm_kernel_irq_routing_entry *old, |
| 287 | struct kvm_kernel_irq_routing_entry *new) |
| 288 | { |
| 289 | return true; |
| 290 | } |
Eric Auger | 1a02b27 | 2015-09-18 22:29:43 +0800 | [diff] [blame] | 291 | #endif |
| 292 | |
Gregory Haskins | 721eecbf | 2009-05-20 10:30:49 -0400 | [diff] [blame] | 293 | static int |
Alex Williamson | d4db293 | 2012-06-29 09:56:08 -0600 | [diff] [blame] | 294 | kvm_irqfd_assign(struct kvm *kvm, struct kvm_irqfd *args) |
Gregory Haskins | 721eecbf | 2009-05-20 10:30:49 -0400 | [diff] [blame] | 295 | { |
Eric Auger | 166c977 | 2015-09-18 22:29:42 +0800 | [diff] [blame] | 296 | struct kvm_kernel_irqfd *irqfd, *tmp; |
Al Viro | cffe78d | 2013-08-30 15:47:17 -0400 | [diff] [blame] | 297 | struct fd f; |
Alex Williamson | 7a84428 | 2012-09-21 11:58:03 -0600 | [diff] [blame] | 298 | struct eventfd_ctx *eventfd = NULL, *resamplefd = NULL; |
Gregory Haskins | 721eecbf | 2009-05-20 10:30:49 -0400 | [diff] [blame] | 299 | int ret; |
Al Viro | e6c8adc | 2017-07-03 22:25:56 -0400 | [diff] [blame] | 300 | __poll_t events; |
Paul Mackerras | 9957c86 | 2014-06-30 20:51:11 +1000 | [diff] [blame] | 301 | int idx; |
Gregory Haskins | 721eecbf | 2009-05-20 10:30:49 -0400 | [diff] [blame] | 302 | |
Eric Auger | 01c94e6 | 2015-03-04 11:14:33 +0100 | [diff] [blame] | 303 | if (!kvm_arch_intc_initialized(kvm)) |
| 304 | return -EAGAIN; |
| 305 | |
Peter Xu | 654f1f1 | 2019-05-05 16:56:42 +0800 | [diff] [blame] | 306 | if (!kvm_arch_irqfd_allowed(kvm, args)) |
| 307 | return -EINVAL; |
| 308 | |
Ben Gardon | b12ce36 | 2019-02-11 11:02:49 -0800 | [diff] [blame] | 309 | irqfd = kzalloc(sizeof(*irqfd), GFP_KERNEL_ACCOUNT); |
Gregory Haskins | 721eecbf | 2009-05-20 10:30:49 -0400 | [diff] [blame] | 310 | if (!irqfd) |
| 311 | return -ENOMEM; |
| 312 | |
| 313 | irqfd->kvm = kvm; |
Alex Williamson | d4db293 | 2012-06-29 09:56:08 -0600 | [diff] [blame] | 314 | irqfd->gsi = args->gsi; |
Gregory Haskins | 721eecbf | 2009-05-20 10:30:49 -0400 | [diff] [blame] | 315 | INIT_LIST_HEAD(&irqfd->list); |
| 316 | INIT_WORK(&irqfd->inject, irqfd_inject); |
| 317 | INIT_WORK(&irqfd->shutdown, irqfd_shutdown); |
Ahmed S. Darwish | 5c73b9a | 2020-07-20 17:55:29 +0200 | [diff] [blame] | 318 | seqcount_spinlock_init(&irqfd->irq_entry_sc, &kvm->irqfds.lock); |
Gregory Haskins | 721eecbf | 2009-05-20 10:30:49 -0400 | [diff] [blame] | 319 | |
Al Viro | cffe78d | 2013-08-30 15:47:17 -0400 | [diff] [blame] | 320 | f = fdget(args->fd); |
| 321 | if (!f.file) { |
| 322 | ret = -EBADF; |
| 323 | goto out; |
Gregory Haskins | 721eecbf | 2009-05-20 10:30:49 -0400 | [diff] [blame] | 324 | } |
| 325 | |
Al Viro | cffe78d | 2013-08-30 15:47:17 -0400 | [diff] [blame] | 326 | eventfd = eventfd_ctx_fileget(f.file); |
Gregory Haskins | 721eecbf | 2009-05-20 10:30:49 -0400 | [diff] [blame] | 327 | if (IS_ERR(eventfd)) { |
| 328 | ret = PTR_ERR(eventfd); |
| 329 | goto fail; |
| 330 | } |
| 331 | |
| 332 | irqfd->eventfd = eventfd; |
| 333 | |
Alex Williamson | 7a84428 | 2012-09-21 11:58:03 -0600 | [diff] [blame] | 334 | if (args->flags & KVM_IRQFD_FLAG_RESAMPLE) { |
Eric Auger | 166c977 | 2015-09-18 22:29:42 +0800 | [diff] [blame] | 335 | struct kvm_kernel_irqfd_resampler *resampler; |
Alex Williamson | 7a84428 | 2012-09-21 11:58:03 -0600 | [diff] [blame] | 336 | |
| 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 Williamson | 49f8a1a | 2012-12-06 14:44:59 -0700 | [diff] [blame] | 349 | &kvm->irqfds.resampler_list, link) { |
Alex Williamson | 7a84428 | 2012-09-21 11:58:03 -0600 | [diff] [blame] | 350 | if (resampler->notifier.gsi == irqfd->gsi) { |
| 351 | irqfd->resampler = resampler; |
| 352 | break; |
| 353 | } |
| 354 | } |
| 355 | |
| 356 | if (!irqfd->resampler) { |
Ben Gardon | b12ce36 | 2019-02-11 11:02:49 -0800 | [diff] [blame] | 357 | resampler = kzalloc(sizeof(*resampler), |
| 358 | GFP_KERNEL_ACCOUNT); |
Alex Williamson | 7a84428 | 2012-09-21 11:58:03 -0600 | [diff] [blame] | 359 | 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 Borntraeger | 719d93c | 2014-01-16 13:44:20 +0100 | [diff] [blame] | 378 | synchronize_srcu(&kvm->irq_srcu); |
Alex Williamson | 7a84428 | 2012-09-21 11:58:03 -0600 | [diff] [blame] | 379 | |
| 380 | mutex_unlock(&kvm->irqfds.resampler_lock); |
| 381 | } |
| 382 | |
Gregory Haskins | 721eecbf | 2009-05-20 10:30:49 -0400 | [diff] [blame] | 383 | /* |
| 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. Tsirkin | f1d1c30 | 2010-01-13 18:58:09 +0200 | [diff] [blame] | 390 | 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 Mackerras | 9957c86 | 2014-06-30 20:51:11 +1000 | [diff] [blame] | 402 | idx = srcu_read_lock(&kvm->irq_srcu); |
| 403 | irqfd_update(kvm, irqfd); |
Michael S. Tsirkin | bd2b53b | 2010-11-18 19:09:08 +0200 | [diff] [blame] | 404 | |
Gregory Haskins | 721eecbf | 2009-05-20 10:30:49 -0400 | [diff] [blame] | 405 | list_add_tail(&irqfd->list, &kvm->irqfds.items); |
Gregory Haskins | 721eecbf | 2009-05-20 10:30:49 -0400 | [diff] [blame] | 406 | |
Cornelia Huck | 684a0b7 | 2014-03-17 19:11:35 +0100 | [diff] [blame] | 407 | spin_unlock_irq(&kvm->irqfds.lock); |
| 408 | |
Gregory Haskins | 721eecbf | 2009-05-20 10:30:49 -0400 | [diff] [blame] | 409 | /* |
| 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 Hellwig | 9965ed17 | 2018-03-05 07:26:05 -0800 | [diff] [blame] | 413 | events = vfs_poll(f.file, &irqfd->pt); |
Cornelia Huck | 684a0b7 | 2014-03-17 19:11:35 +0100 | [diff] [blame] | 414 | |
Linus Torvalds | a9a0884 | 2018-02-11 14:34:03 -0800 | [diff] [blame] | 415 | if (events & EPOLLIN) |
Gregory Haskins | 721eecbf | 2009-05-20 10:30:49 -0400 | [diff] [blame] | 416 | schedule_work(&irqfd->inject); |
| 417 | |
Eric Auger | 9016cfb | 2015-09-18 22:29:44 +0800 | [diff] [blame] | 418 | #ifdef CONFIG_HAVE_KVM_IRQ_BYPASS |
Alex Williamson | 14717e2 | 2016-05-05 11:58:35 -0600 | [diff] [blame] | 419 | 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 Auger | 9016cfb | 2015-09-18 22:29:44 +0800 | [diff] [blame] | 428 | irqfd->consumer.token, ret); |
Alex Williamson | 14717e2 | 2016-05-05 11:58:35 -0600 | [diff] [blame] | 429 | } |
Eric Auger | 9016cfb | 2015-09-18 22:29:44 +0800 | [diff] [blame] | 430 | #endif |
Gregory Haskins | 721eecbf | 2009-05-20 10:30:49 -0400 | [diff] [blame] | 431 | |
Lan Tianyu | b5020a8 | 2017-12-21 21:10:36 -0500 | [diff] [blame] | 432 | srcu_read_unlock(&kvm->irq_srcu, idx); |
Paolo Bonzini | 9432a31 | 2018-05-28 13:31:13 +0200 | [diff] [blame] | 433 | |
| 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 Haskins | 721eecbf | 2009-05-20 10:30:49 -0400 | [diff] [blame] | 439 | return 0; |
| 440 | |
| 441 | fail: |
Alex Williamson | 7a84428 | 2012-09-21 11:58:03 -0600 | [diff] [blame] | 442 | if (irqfd->resampler) |
| 443 | irqfd_resampler_shutdown(irqfd); |
| 444 | |
| 445 | if (resamplefd && !IS_ERR(resamplefd)) |
| 446 | eventfd_ctx_put(resamplefd); |
| 447 | |
Gregory Haskins | 721eecbf | 2009-05-20 10:30:49 -0400 | [diff] [blame] | 448 | if (eventfd && !IS_ERR(eventfd)) |
| 449 | eventfd_ctx_put(eventfd); |
| 450 | |
Al Viro | cffe78d | 2013-08-30 15:47:17 -0400 | [diff] [blame] | 451 | fdput(f); |
Gregory Haskins | 721eecbf | 2009-05-20 10:30:49 -0400 | [diff] [blame] | 452 | |
Al Viro | cffe78d | 2013-08-30 15:47:17 -0400 | [diff] [blame] | 453 | out: |
Gregory Haskins | 721eecbf | 2009-05-20 10:30:49 -0400 | [diff] [blame] | 454 | kfree(irqfd); |
| 455 | return ret; |
| 456 | } |
Paolo Bonzini | c77dcac | 2014-08-06 14:24:45 +0200 | [diff] [blame] | 457 | |
| 458 | bool 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) |
Hou Wenlong | 6a0c617 | 2022-01-27 14:54:49 +0800 | [diff] [blame] | 466 | hlist_for_each_entry_srcu(kian, &kvm->irq_ack_notifier_list, |
| 467 | link, srcu_read_lock_held(&kvm->irq_srcu)) |
Paolo Bonzini | c77dcac | 2014-08-06 14:24:45 +0200 | [diff] [blame] | 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 | } |
| 477 | EXPORT_SYMBOL_GPL(kvm_irq_has_notifier); |
| 478 | |
Andrey Smetanin | ba1aefc | 2015-10-16 10:07:46 +0300 | [diff] [blame] | 479 | void kvm_notify_acked_gsi(struct kvm *kvm, int gsi) |
Paolo Bonzini | c77dcac | 2014-08-06 14:24:45 +0200 | [diff] [blame] | 480 | { |
| 481 | struct kvm_irq_ack_notifier *kian; |
Andrey Smetanin | ba1aefc | 2015-10-16 10:07:46 +0300 | [diff] [blame] | 482 | |
Hou Wenlong | 6a0c617 | 2022-01-27 14:54:49 +0800 | [diff] [blame] | 483 | hlist_for_each_entry_srcu(kian, &kvm->irq_ack_notifier_list, |
| 484 | link, srcu_read_lock_held(&kvm->irq_srcu)) |
Andrey Smetanin | ba1aefc | 2015-10-16 10:07:46 +0300 | [diff] [blame] | 485 | if (kian->gsi == gsi) |
| 486 | kian->irq_acked(kian); |
| 487 | } |
| 488 | |
| 489 | void kvm_notify_acked_irq(struct kvm *kvm, unsigned irqchip, unsigned pin) |
| 490 | { |
Paolo Bonzini | c77dcac | 2014-08-06 14:24:45 +0200 | [diff] [blame] | 491 | 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 Smetanin | ba1aefc | 2015-10-16 10:07:46 +0300 | [diff] [blame] | 498 | kvm_notify_acked_gsi(kvm, gsi); |
Paolo Bonzini | c77dcac | 2014-08-06 14:24:45 +0200 | [diff] [blame] | 499 | srcu_read_unlock(&kvm->irq_srcu, idx); |
| 500 | } |
| 501 | |
| 502 | void 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 Hildenbrand | 993225a | 2017-04-07 10:50:33 +0200 | [diff] [blame] | 508 | kvm_arch_post_irq_ack_notifier_list_update(kvm); |
Paolo Bonzini | c77dcac | 2014-08-06 14:24:45 +0200 | [diff] [blame] | 509 | } |
| 510 | |
| 511 | void 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 Hildenbrand | 993225a | 2017-04-07 10:50:33 +0200 | [diff] [blame] | 518 | kvm_arch_post_irq_ack_notifier_list_update(kvm); |
Paolo Bonzini | c77dcac | 2014-08-06 14:24:45 +0200 | [diff] [blame] | 519 | } |
Alexander Graf | 914daba | 2012-10-09 00:22:59 +0200 | [diff] [blame] | 520 | #endif |
Gregory Haskins | 721eecbf | 2009-05-20 10:30:49 -0400 | [diff] [blame] | 521 | |
| 522 | void |
Gregory Haskins | d34e6b1 | 2009-07-07 17:08:49 -0400 | [diff] [blame] | 523 | kvm_eventfd_init(struct kvm *kvm) |
Gregory Haskins | 721eecbf | 2009-05-20 10:30:49 -0400 | [diff] [blame] | 524 | { |
Paul Mackerras | 297e210 | 2014-06-30 20:51:13 +1000 | [diff] [blame] | 525 | #ifdef CONFIG_HAVE_KVM_IRQFD |
Gregory Haskins | 721eecbf | 2009-05-20 10:30:49 -0400 | [diff] [blame] | 526 | spin_lock_init(&kvm->irqfds.lock); |
| 527 | INIT_LIST_HEAD(&kvm->irqfds.items); |
Alex Williamson | 7a84428 | 2012-09-21 11:58:03 -0600 | [diff] [blame] | 528 | INIT_LIST_HEAD(&kvm->irqfds.resampler_list); |
| 529 | mutex_init(&kvm->irqfds.resampler_lock); |
Alexander Graf | 914daba | 2012-10-09 00:22:59 +0200 | [diff] [blame] | 530 | #endif |
Gregory Haskins | d34e6b1 | 2009-07-07 17:08:49 -0400 | [diff] [blame] | 531 | INIT_LIST_HEAD(&kvm->ioeventfds); |
Gregory Haskins | 721eecbf | 2009-05-20 10:30:49 -0400 | [diff] [blame] | 532 | } |
| 533 | |
Paul Mackerras | 297e210 | 2014-06-30 20:51:13 +1000 | [diff] [blame] | 534 | #ifdef CONFIG_HAVE_KVM_IRQFD |
Gregory Haskins | 721eecbf | 2009-05-20 10:30:49 -0400 | [diff] [blame] | 535 | /* |
| 536 | * shutdown any irqfd's that match fd+gsi |
| 537 | */ |
| 538 | static int |
Alex Williamson | d4db293 | 2012-06-29 09:56:08 -0600 | [diff] [blame] | 539 | kvm_irqfd_deassign(struct kvm *kvm, struct kvm_irqfd *args) |
Gregory Haskins | 721eecbf | 2009-05-20 10:30:49 -0400 | [diff] [blame] | 540 | { |
Eric Auger | 166c977 | 2015-09-18 22:29:42 +0800 | [diff] [blame] | 541 | struct kvm_kernel_irqfd *irqfd, *tmp; |
Gregory Haskins | 721eecbf | 2009-05-20 10:30:49 -0400 | [diff] [blame] | 542 | struct eventfd_ctx *eventfd; |
| 543 | |
Alex Williamson | d4db293 | 2012-06-29 09:56:08 -0600 | [diff] [blame] | 544 | eventfd = eventfd_ctx_fdget(args->fd); |
Gregory Haskins | 721eecbf | 2009-05-20 10:30:49 -0400 | [diff] [blame] | 545 | 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 Williamson | d4db293 | 2012-06-29 09:56:08 -0600 | [diff] [blame] | 551 | if (irqfd->eventfd == eventfd && irqfd->gsi == args->gsi) { |
Michael S. Tsirkin | bd2b53b | 2010-11-18 19:09:08 +0200 | [diff] [blame] | 552 | /* |
Paul Mackerras | 56f89f36 | 2014-06-30 20:51:09 +1000 | [diff] [blame] | 553 | * This clearing of irq_entry.type is needed for when |
Michael S. Tsirkin | c8ce057 | 2011-03-06 13:03:26 +0200 | [diff] [blame] | 554 | * 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. Tsirkin | bd2b53b | 2010-11-18 19:09:08 +0200 | [diff] [blame] | 557 | */ |
Paul Mackerras | 56f89f36 | 2014-06-30 20:51:09 +1000 | [diff] [blame] | 558 | write_seqcount_begin(&irqfd->irq_entry_sc); |
| 559 | irqfd->irq_entry.type = 0; |
| 560 | write_seqcount_end(&irqfd->irq_entry_sc); |
Gregory Haskins | 721eecbf | 2009-05-20 10:30:49 -0400 | [diff] [blame] | 561 | irqfd_deactivate(irqfd); |
Michael S. Tsirkin | bd2b53b | 2010-11-18 19:09:08 +0200 | [diff] [blame] | 562 | } |
Gregory Haskins | 721eecbf | 2009-05-20 10:30:49 -0400 | [diff] [blame] | 563 | } |
| 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 Bonzini | 36343f6 | 2016-10-26 13:35:56 +0200 | [diff] [blame] | 573 | flush_workqueue(irqfd_cleanup_wq); |
Gregory Haskins | 721eecbf | 2009-05-20 10:30:49 -0400 | [diff] [blame] | 574 | |
| 575 | return 0; |
| 576 | } |
| 577 | |
| 578 | int |
Alex Williamson | d4db293 | 2012-06-29 09:56:08 -0600 | [diff] [blame] | 579 | kvm_irqfd(struct kvm *kvm, struct kvm_irqfd *args) |
Gregory Haskins | 721eecbf | 2009-05-20 10:30:49 -0400 | [diff] [blame] | 580 | { |
Alex Williamson | 7a84428 | 2012-09-21 11:58:03 -0600 | [diff] [blame] | 581 | if (args->flags & ~(KVM_IRQFD_FLAG_DEASSIGN | KVM_IRQFD_FLAG_RESAMPLE)) |
Alex Williamson | 326cf03 | 2012-06-29 09:56:24 -0600 | [diff] [blame] | 582 | return -EINVAL; |
| 583 | |
Alex Williamson | d4db293 | 2012-06-29 09:56:08 -0600 | [diff] [blame] | 584 | if (args->flags & KVM_IRQFD_FLAG_DEASSIGN) |
| 585 | return kvm_irqfd_deassign(kvm, args); |
Gregory Haskins | 721eecbf | 2009-05-20 10:30:49 -0400 | [diff] [blame] | 586 | |
Alex Williamson | d4db293 | 2012-06-29 09:56:08 -0600 | [diff] [blame] | 587 | return kvm_irqfd_assign(kvm, args); |
Gregory Haskins | 721eecbf | 2009-05-20 10:30:49 -0400 | [diff] [blame] | 588 | } |
| 589 | |
| 590 | /* |
| 591 | * This function is called as the kvm VM fd is being released. Shutdown all |
| 592 | * irqfds that still remain open |
| 593 | */ |
| 594 | void |
| 595 | kvm_irqfd_release(struct kvm *kvm) |
| 596 | { |
Eric Auger | 166c977 | 2015-09-18 22:29:42 +0800 | [diff] [blame] | 597 | struct kvm_kernel_irqfd *irqfd, *tmp; |
Gregory Haskins | 721eecbf | 2009-05-20 10:30:49 -0400 | [diff] [blame] | 598 | |
| 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 Bonzini | 36343f6 | 2016-10-26 13:35:56 +0200 | [diff] [blame] | 610 | flush_workqueue(irqfd_cleanup_wq); |
Gregory Haskins | 721eecbf | 2009-05-20 10:30:49 -0400 | [diff] [blame] | 611 | |
| 612 | } |
| 613 | |
| 614 | /* |
Paul Mackerras | 9957c86 | 2014-06-30 20:51:11 +1000 | [diff] [blame] | 615 | * Take note of a change in irq routing. |
Christian Borntraeger | 719d93c | 2014-01-16 13:44:20 +0100 | [diff] [blame] | 616 | * Caller must invoke synchronize_srcu(&kvm->irq_srcu) afterwards. |
Michael S. Tsirkin | bd2b53b | 2010-11-18 19:09:08 +0200 | [diff] [blame] | 617 | */ |
Paul Mackerras | 9957c86 | 2014-06-30 20:51:11 +1000 | [diff] [blame] | 618 | void kvm_irq_routing_update(struct kvm *kvm) |
Michael S. Tsirkin | bd2b53b | 2010-11-18 19:09:08 +0200 | [diff] [blame] | 619 | { |
Eric Auger | 166c977 | 2015-09-18 22:29:42 +0800 | [diff] [blame] | 620 | struct kvm_kernel_irqfd *irqfd; |
Michael S. Tsirkin | bd2b53b | 2010-11-18 19:09:08 +0200 | [diff] [blame] | 621 | |
| 622 | spin_lock_irq(&kvm->irqfds.lock); |
| 623 | |
Feng Wu | f70c20a | 2015-09-18 22:29:53 +0800 | [diff] [blame] | 624 | list_for_each_entry(irqfd, &kvm->irqfds.items, list) { |
Longpeng(Mike) | 515a0c7 | 2021-08-27 16:00:03 +0800 | [diff] [blame] | 625 | #ifdef CONFIG_HAVE_KVM_IRQ_BYPASS |
| 626 | /* Under irqfds.lock, so can read irq_entry safely */ |
| 627 | struct kvm_kernel_irq_routing_entry old = irqfd->irq_entry; |
| 628 | #endif |
| 629 | |
Paul Mackerras | 9957c86 | 2014-06-30 20:51:11 +1000 | [diff] [blame] | 630 | irqfd_update(kvm, irqfd); |
Michael S. Tsirkin | bd2b53b | 2010-11-18 19:09:08 +0200 | [diff] [blame] | 631 | |
Feng Wu | f70c20a | 2015-09-18 22:29:53 +0800 | [diff] [blame] | 632 | #ifdef CONFIG_HAVE_KVM_IRQ_BYPASS |
Longpeng(Mike) | 515a0c7 | 2021-08-27 16:00:03 +0800 | [diff] [blame] | 633 | if (irqfd->producer && |
| 634 | kvm_arch_irqfd_route_changed(&old, &irqfd->irq_entry)) { |
Feng Wu | f70c20a | 2015-09-18 22:29:53 +0800 | [diff] [blame] | 635 | int ret = kvm_arch_update_irqfd_routing( |
| 636 | irqfd->kvm, irqfd->producer->irq, |
| 637 | irqfd->gsi, 1); |
| 638 | WARN_ON(ret); |
| 639 | } |
| 640 | #endif |
| 641 | } |
| 642 | |
Michael S. Tsirkin | bd2b53b | 2010-11-18 19:09:08 +0200 | [diff] [blame] | 643 | spin_unlock_irq(&kvm->irqfds.lock); |
| 644 | } |
| 645 | |
Paolo Bonzini | 36343f6 | 2016-10-26 13:35:56 +0200 | [diff] [blame] | 646 | /* |
| 647 | * create a host-wide workqueue for issuing deferred shutdown requests |
| 648 | * aggregated from all vm* instances. We need our own isolated |
| 649 | * queue to ease flushing work items when a VM exits. |
| 650 | */ |
| 651 | int kvm_irqfd_init(void) |
| 652 | { |
| 653 | irqfd_cleanup_wq = alloc_workqueue("kvm-irqfd-cleanup", 0, 0); |
| 654 | if (!irqfd_cleanup_wq) |
| 655 | return -ENOMEM; |
| 656 | |
| 657 | return 0; |
| 658 | } |
| 659 | |
Cornelia Huck | a0f155e | 2013-02-28 12:33:18 +0100 | [diff] [blame] | 660 | void kvm_irqfd_exit(void) |
Gregory Haskins | 721eecbf | 2009-05-20 10:30:49 -0400 | [diff] [blame] | 661 | { |
Paolo Bonzini | 36343f6 | 2016-10-26 13:35:56 +0200 | [diff] [blame] | 662 | destroy_workqueue(irqfd_cleanup_wq); |
Gregory Haskins | 721eecbf | 2009-05-20 10:30:49 -0400 | [diff] [blame] | 663 | } |
Alexander Graf | 914daba | 2012-10-09 00:22:59 +0200 | [diff] [blame] | 664 | #endif |
Gregory Haskins | d34e6b1 | 2009-07-07 17:08:49 -0400 | [diff] [blame] | 665 | |
| 666 | /* |
| 667 | * -------------------------------------------------------------------- |
| 668 | * ioeventfd: translate a PIO/MMIO memory write to an eventfd signal. |
| 669 | * |
| 670 | * userspace can register a PIO/MMIO address with an eventfd for receiving |
| 671 | * notification when the memory has been touched. |
| 672 | * -------------------------------------------------------------------- |
| 673 | */ |
| 674 | |
| 675 | struct _ioeventfd { |
| 676 | struct list_head list; |
| 677 | u64 addr; |
| 678 | int length; |
| 679 | struct eventfd_ctx *eventfd; |
| 680 | u64 datamatch; |
| 681 | struct kvm_io_device dev; |
Michael S. Tsirkin | 05e07f9 | 2013-04-04 13:27:21 +0300 | [diff] [blame] | 682 | u8 bus_idx; |
Gregory Haskins | d34e6b1 | 2009-07-07 17:08:49 -0400 | [diff] [blame] | 683 | bool wildcard; |
| 684 | }; |
| 685 | |
| 686 | static inline struct _ioeventfd * |
| 687 | to_ioeventfd(struct kvm_io_device *dev) |
| 688 | { |
| 689 | return container_of(dev, struct _ioeventfd, dev); |
| 690 | } |
| 691 | |
| 692 | static void |
| 693 | ioeventfd_release(struct _ioeventfd *p) |
| 694 | { |
| 695 | eventfd_ctx_put(p->eventfd); |
| 696 | list_del(&p->list); |
| 697 | kfree(p); |
| 698 | } |
| 699 | |
| 700 | static bool |
| 701 | ioeventfd_in_range(struct _ioeventfd *p, gpa_t addr, int len, const void *val) |
| 702 | { |
| 703 | u64 _val; |
| 704 | |
Michael S. Tsirkin | f848a5a | 2014-03-31 21:50:38 +0300 | [diff] [blame] | 705 | if (addr != p->addr) |
| 706 | /* address must be precise for a hit */ |
| 707 | return false; |
| 708 | |
| 709 | if (!p->length) |
| 710 | /* length = 0 means only look at the address, so always a hit */ |
| 711 | return true; |
| 712 | |
| 713 | if (len != p->length) |
Gregory Haskins | d34e6b1 | 2009-07-07 17:08:49 -0400 | [diff] [blame] | 714 | /* address-range must be precise for a hit */ |
| 715 | return false; |
| 716 | |
| 717 | if (p->wildcard) |
| 718 | /* all else equal, wildcard is always a hit */ |
| 719 | return true; |
| 720 | |
| 721 | /* otherwise, we have to actually compare the data */ |
| 722 | |
| 723 | BUG_ON(!IS_ALIGNED((unsigned long)val, len)); |
| 724 | |
| 725 | switch (len) { |
| 726 | case 1: |
| 727 | _val = *(u8 *)val; |
| 728 | break; |
| 729 | case 2: |
| 730 | _val = *(u16 *)val; |
| 731 | break; |
| 732 | case 4: |
| 733 | _val = *(u32 *)val; |
| 734 | break; |
| 735 | case 8: |
| 736 | _val = *(u64 *)val; |
| 737 | break; |
| 738 | default: |
| 739 | return false; |
| 740 | } |
| 741 | |
Jason Yan | c4e115f | 2020-04-20 20:38:05 +0800 | [diff] [blame] | 742 | return _val == p->datamatch; |
Gregory Haskins | d34e6b1 | 2009-07-07 17:08:49 -0400 | [diff] [blame] | 743 | } |
| 744 | |
| 745 | /* MMIO/PIO writes trigger an event if the addr/val match */ |
| 746 | static int |
Nikolay Nikolaev | e32edf4 | 2015-03-26 14:39:28 +0000 | [diff] [blame] | 747 | ioeventfd_write(struct kvm_vcpu *vcpu, struct kvm_io_device *this, gpa_t addr, |
| 748 | int len, const void *val) |
Gregory Haskins | d34e6b1 | 2009-07-07 17:08:49 -0400 | [diff] [blame] | 749 | { |
| 750 | struct _ioeventfd *p = to_ioeventfd(this); |
| 751 | |
| 752 | if (!ioeventfd_in_range(p, addr, len, val)) |
| 753 | return -EOPNOTSUPP; |
| 754 | |
| 755 | eventfd_signal(p->eventfd, 1); |
| 756 | return 0; |
| 757 | } |
| 758 | |
| 759 | /* |
| 760 | * This function is called as KVM is completely shutting down. We do not |
| 761 | * need to worry about locking just nuke anything we have as quickly as possible |
| 762 | */ |
| 763 | static void |
| 764 | ioeventfd_destructor(struct kvm_io_device *this) |
| 765 | { |
| 766 | struct _ioeventfd *p = to_ioeventfd(this); |
| 767 | |
| 768 | ioeventfd_release(p); |
| 769 | } |
| 770 | |
| 771 | static const struct kvm_io_device_ops ioeventfd_ops = { |
| 772 | .write = ioeventfd_write, |
| 773 | .destructor = ioeventfd_destructor, |
| 774 | }; |
| 775 | |
| 776 | /* assumes kvm->slots_lock held */ |
| 777 | static bool |
| 778 | ioeventfd_check_collision(struct kvm *kvm, struct _ioeventfd *p) |
| 779 | { |
| 780 | struct _ioeventfd *_p; |
| 781 | |
| 782 | list_for_each_entry(_p, &kvm->ioeventfds, list) |
Michael S. Tsirkin | 05e07f9 | 2013-04-04 13:27:21 +0300 | [diff] [blame] | 783 | if (_p->bus_idx == p->bus_idx && |
Michael S. Tsirkin | f848a5a | 2014-03-31 21:50:38 +0300 | [diff] [blame] | 784 | _p->addr == p->addr && |
| 785 | (!_p->length || !p->length || |
| 786 | (_p->length == p->length && |
| 787 | (_p->wildcard || p->wildcard || |
| 788 | _p->datamatch == p->datamatch)))) |
Gregory Haskins | d34e6b1 | 2009-07-07 17:08:49 -0400 | [diff] [blame] | 789 | return true; |
| 790 | |
| 791 | return false; |
| 792 | } |
| 793 | |
Cornelia Huck | 2b83451 | 2013-02-28 12:33:20 +0100 | [diff] [blame] | 794 | static enum kvm_bus ioeventfd_bus_from_flags(__u32 flags) |
| 795 | { |
| 796 | if (flags & KVM_IOEVENTFD_FLAG_PIO) |
| 797 | return KVM_PIO_BUS; |
| 798 | if (flags & KVM_IOEVENTFD_FLAG_VIRTIO_CCW_NOTIFY) |
| 799 | return KVM_VIRTIO_CCW_NOTIFY_BUS; |
| 800 | return KVM_MMIO_BUS; |
| 801 | } |
| 802 | |
Jason Wang | 85da11c | 2015-09-15 14:41:55 +0800 | [diff] [blame] | 803 | static int kvm_assign_ioeventfd_idx(struct kvm *kvm, |
| 804 | enum kvm_bus bus_idx, |
| 805 | struct kvm_ioeventfd *args) |
Gregory Haskins | d34e6b1 | 2009-07-07 17:08:49 -0400 | [diff] [blame] | 806 | { |
Gregory Haskins | d34e6b1 | 2009-07-07 17:08:49 -0400 | [diff] [blame] | 807 | |
Jason Wang | 85da11c | 2015-09-15 14:41:55 +0800 | [diff] [blame] | 808 | struct eventfd_ctx *eventfd; |
| 809 | struct _ioeventfd *p; |
| 810 | int ret; |
Michael S. Tsirkin | f848a5a | 2014-03-31 21:50:38 +0300 | [diff] [blame] | 811 | |
Gregory Haskins | d34e6b1 | 2009-07-07 17:08:49 -0400 | [diff] [blame] | 812 | eventfd = eventfd_ctx_fdget(args->fd); |
| 813 | if (IS_ERR(eventfd)) |
| 814 | return PTR_ERR(eventfd); |
| 815 | |
Ben Gardon | b12ce36 | 2019-02-11 11:02:49 -0800 | [diff] [blame] | 816 | p = kzalloc(sizeof(*p), GFP_KERNEL_ACCOUNT); |
Gregory Haskins | d34e6b1 | 2009-07-07 17:08:49 -0400 | [diff] [blame] | 817 | if (!p) { |
| 818 | ret = -ENOMEM; |
| 819 | goto fail; |
| 820 | } |
| 821 | |
| 822 | INIT_LIST_HEAD(&p->list); |
| 823 | p->addr = args->addr; |
Michael S. Tsirkin | 05e07f9 | 2013-04-04 13:27:21 +0300 | [diff] [blame] | 824 | p->bus_idx = bus_idx; |
Gregory Haskins | d34e6b1 | 2009-07-07 17:08:49 -0400 | [diff] [blame] | 825 | p->length = args->len; |
| 826 | p->eventfd = eventfd; |
| 827 | |
| 828 | /* The datamatch feature is optional, otherwise this is a wildcard */ |
| 829 | if (args->flags & KVM_IOEVENTFD_FLAG_DATAMATCH) |
| 830 | p->datamatch = args->datamatch; |
| 831 | else |
| 832 | p->wildcard = true; |
| 833 | |
Marcelo Tosatti | 79fac95 | 2009-12-23 14:35:26 -0200 | [diff] [blame] | 834 | mutex_lock(&kvm->slots_lock); |
Gregory Haskins | d34e6b1 | 2009-07-07 17:08:49 -0400 | [diff] [blame] | 835 | |
Lucas De Marchi | 25985ed | 2011-03-30 22:57:33 -0300 | [diff] [blame] | 836 | /* Verify that there isn't a match already */ |
Gregory Haskins | d34e6b1 | 2009-07-07 17:08:49 -0400 | [diff] [blame] | 837 | if (ioeventfd_check_collision(kvm, p)) { |
| 838 | ret = -EEXIST; |
| 839 | goto unlock_fail; |
| 840 | } |
| 841 | |
| 842 | kvm_iodevice_init(&p->dev, &ioeventfd_ops); |
| 843 | |
Sasha Levin | 743eeb0 | 2011-07-27 16:00:48 +0300 | [diff] [blame] | 844 | ret = kvm_io_bus_register_dev(kvm, bus_idx, p->addr, p->length, |
| 845 | &p->dev); |
Gregory Haskins | d34e6b1 | 2009-07-07 17:08:49 -0400 | [diff] [blame] | 846 | if (ret < 0) |
| 847 | goto unlock_fail; |
| 848 | |
Christian Borntraeger | 4a12f95 | 2017-07-07 10:51:38 +0200 | [diff] [blame] | 849 | kvm_get_bus(kvm, bus_idx)->ioeventfd_count++; |
Gregory Haskins | d34e6b1 | 2009-07-07 17:08:49 -0400 | [diff] [blame] | 850 | list_add_tail(&p->list, &kvm->ioeventfds); |
| 851 | |
Marcelo Tosatti | 79fac95 | 2009-12-23 14:35:26 -0200 | [diff] [blame] | 852 | mutex_unlock(&kvm->slots_lock); |
Gregory Haskins | d34e6b1 | 2009-07-07 17:08:49 -0400 | [diff] [blame] | 853 | |
| 854 | return 0; |
| 855 | |
| 856 | unlock_fail: |
Marcelo Tosatti | 79fac95 | 2009-12-23 14:35:26 -0200 | [diff] [blame] | 857 | mutex_unlock(&kvm->slots_lock); |
Gregory Haskins | d34e6b1 | 2009-07-07 17:08:49 -0400 | [diff] [blame] | 858 | |
| 859 | fail: |
| 860 | kfree(p); |
| 861 | eventfd_ctx_put(eventfd); |
| 862 | |
| 863 | return ret; |
| 864 | } |
| 865 | |
| 866 | static int |
Jason Wang | 85da11c | 2015-09-15 14:41:55 +0800 | [diff] [blame] | 867 | kvm_deassign_ioeventfd_idx(struct kvm *kvm, enum kvm_bus bus_idx, |
| 868 | struct kvm_ioeventfd *args) |
Gregory Haskins | d34e6b1 | 2009-07-07 17:08:49 -0400 | [diff] [blame] | 869 | { |
Gregory Haskins | d34e6b1 | 2009-07-07 17:08:49 -0400 | [diff] [blame] | 870 | struct _ioeventfd *p, *tmp; |
| 871 | struct eventfd_ctx *eventfd; |
Christian Borntraeger | 4a12f95 | 2017-07-07 10:51:38 +0200 | [diff] [blame] | 872 | struct kvm_io_bus *bus; |
Gregory Haskins | d34e6b1 | 2009-07-07 17:08:49 -0400 | [diff] [blame] | 873 | int ret = -ENOENT; |
Yi Li | 2fc4f15 | 2020-09-11 13:56:52 +0800 | [diff] [blame] | 874 | bool wildcard; |
Gregory Haskins | d34e6b1 | 2009-07-07 17:08:49 -0400 | [diff] [blame] | 875 | |
| 876 | eventfd = eventfd_ctx_fdget(args->fd); |
| 877 | if (IS_ERR(eventfd)) |
| 878 | return PTR_ERR(eventfd); |
| 879 | |
Yi Li | 2fc4f15 | 2020-09-11 13:56:52 +0800 | [diff] [blame] | 880 | wildcard = !(args->flags & KVM_IOEVENTFD_FLAG_DATAMATCH); |
| 881 | |
Marcelo Tosatti | 79fac95 | 2009-12-23 14:35:26 -0200 | [diff] [blame] | 882 | mutex_lock(&kvm->slots_lock); |
Gregory Haskins | d34e6b1 | 2009-07-07 17:08:49 -0400 | [diff] [blame] | 883 | |
| 884 | list_for_each_entry_safe(p, tmp, &kvm->ioeventfds, list) { |
Gregory Haskins | d34e6b1 | 2009-07-07 17:08:49 -0400 | [diff] [blame] | 885 | |
Michael S. Tsirkin | 05e07f9 | 2013-04-04 13:27:21 +0300 | [diff] [blame] | 886 | if (p->bus_idx != bus_idx || |
| 887 | p->eventfd != eventfd || |
Gregory Haskins | d34e6b1 | 2009-07-07 17:08:49 -0400 | [diff] [blame] | 888 | p->addr != args->addr || |
| 889 | p->length != args->len || |
| 890 | p->wildcard != wildcard) |
| 891 | continue; |
| 892 | |
| 893 | if (!p->wildcard && p->datamatch != args->datamatch) |
| 894 | continue; |
| 895 | |
Marcelo Tosatti | e93f8a0 | 2009-12-23 14:35:24 -0200 | [diff] [blame] | 896 | kvm_io_bus_unregister_dev(kvm, bus_idx, &p->dev); |
Christian Borntraeger | 4a12f95 | 2017-07-07 10:51:38 +0200 | [diff] [blame] | 897 | bus = kvm_get_bus(kvm, bus_idx); |
| 898 | if (bus) |
| 899 | bus->ioeventfd_count--; |
Gregory Haskins | d34e6b1 | 2009-07-07 17:08:49 -0400 | [diff] [blame] | 900 | ioeventfd_release(p); |
| 901 | ret = 0; |
| 902 | break; |
| 903 | } |
| 904 | |
Marcelo Tosatti | 79fac95 | 2009-12-23 14:35:26 -0200 | [diff] [blame] | 905 | mutex_unlock(&kvm->slots_lock); |
Gregory Haskins | d34e6b1 | 2009-07-07 17:08:49 -0400 | [diff] [blame] | 906 | |
| 907 | eventfd_ctx_put(eventfd); |
| 908 | |
| 909 | return ret; |
| 910 | } |
| 911 | |
Jason Wang | 85da11c | 2015-09-15 14:41:55 +0800 | [diff] [blame] | 912 | static int kvm_deassign_ioeventfd(struct kvm *kvm, struct kvm_ioeventfd *args) |
| 913 | { |
| 914 | enum kvm_bus bus_idx = ioeventfd_bus_from_flags(args->flags); |
Jason Wang | eefd6b0 | 2015-09-15 14:41:56 +0800 | [diff] [blame] | 915 | int ret = kvm_deassign_ioeventfd_idx(kvm, bus_idx, args); |
Jason Wang | 85da11c | 2015-09-15 14:41:55 +0800 | [diff] [blame] | 916 | |
Jason Wang | eefd6b0 | 2015-09-15 14:41:56 +0800 | [diff] [blame] | 917 | if (!args->len && bus_idx == KVM_MMIO_BUS) |
| 918 | kvm_deassign_ioeventfd_idx(kvm, KVM_FAST_MMIO_BUS, args); |
| 919 | |
| 920 | return ret; |
Jason Wang | 85da11c | 2015-09-15 14:41:55 +0800 | [diff] [blame] | 921 | } |
| 922 | |
| 923 | static int |
| 924 | kvm_assign_ioeventfd(struct kvm *kvm, struct kvm_ioeventfd *args) |
| 925 | { |
| 926 | enum kvm_bus bus_idx; |
Jason Wang | eefd6b0 | 2015-09-15 14:41:56 +0800 | [diff] [blame] | 927 | int ret; |
Jason Wang | 85da11c | 2015-09-15 14:41:55 +0800 | [diff] [blame] | 928 | |
| 929 | bus_idx = ioeventfd_bus_from_flags(args->flags); |
| 930 | /* must be natural-word sized, or 0 to ignore length */ |
| 931 | switch (args->len) { |
| 932 | case 0: |
| 933 | case 1: |
| 934 | case 2: |
| 935 | case 4: |
| 936 | case 8: |
| 937 | break; |
| 938 | default: |
| 939 | return -EINVAL; |
| 940 | } |
| 941 | |
| 942 | /* check for range overflow */ |
| 943 | if (args->addr + args->len < args->addr) |
| 944 | return -EINVAL; |
| 945 | |
| 946 | /* check for extra flags that we don't understand */ |
| 947 | if (args->flags & ~KVM_IOEVENTFD_VALID_FLAG_MASK) |
| 948 | return -EINVAL; |
| 949 | |
| 950 | /* ioeventfd with no length can't be combined with DATAMATCH */ |
Jason Wang | e9ea506 | 2015-09-15 14:41:59 +0800 | [diff] [blame] | 951 | if (!args->len && (args->flags & KVM_IOEVENTFD_FLAG_DATAMATCH)) |
Jason Wang | 85da11c | 2015-09-15 14:41:55 +0800 | [diff] [blame] | 952 | return -EINVAL; |
| 953 | |
Jason Wang | eefd6b0 | 2015-09-15 14:41:56 +0800 | [diff] [blame] | 954 | ret = kvm_assign_ioeventfd_idx(kvm, bus_idx, args); |
| 955 | if (ret) |
| 956 | goto fail; |
| 957 | |
| 958 | /* When length is ignored, MMIO is also put on a separate bus, for |
| 959 | * faster lookups. |
| 960 | */ |
| 961 | if (!args->len && bus_idx == KVM_MMIO_BUS) { |
| 962 | ret = kvm_assign_ioeventfd_idx(kvm, KVM_FAST_MMIO_BUS, args); |
| 963 | if (ret < 0) |
| 964 | goto fast_fail; |
| 965 | } |
| 966 | |
| 967 | return 0; |
| 968 | |
| 969 | fast_fail: |
| 970 | kvm_deassign_ioeventfd_idx(kvm, bus_idx, args); |
| 971 | fail: |
| 972 | return ret; |
Jason Wang | 85da11c | 2015-09-15 14:41:55 +0800 | [diff] [blame] | 973 | } |
| 974 | |
Gregory Haskins | d34e6b1 | 2009-07-07 17:08:49 -0400 | [diff] [blame] | 975 | int |
| 976 | kvm_ioeventfd(struct kvm *kvm, struct kvm_ioeventfd *args) |
| 977 | { |
| 978 | if (args->flags & KVM_IOEVENTFD_FLAG_DEASSIGN) |
| 979 | return kvm_deassign_ioeventfd(kvm, args); |
| 980 | |
| 981 | return kvm_assign_ioeventfd(kvm, args); |
| 982 | } |