aboutsummaryrefslogtreecommitdiffstats
path: root/virt/lib
diff options
context:
space:
mode:
authorWanpeng Li <wanpeng.li@hotmail.com>2017-01-05 20:39:42 -0500
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2017-01-19 14:17:59 -0500
commit7caf473f99b8c3537cc2196d3d508dd6c139048b (patch)
tree5ad9d8d3d9f5f1308183bbe5ee8a46410341946b /virt/lib
parent7718ffcf9a64830bbae148432f625346cde2f2d6 (diff)
KVM: eventfd: fix NULL deref irqbypass consumer
commit 4f3dbdf47e150016aacd734e663347fcaa768303 upstream. Reported syzkaller: BUG: unable to handle kernel NULL pointer dereference at 0000000000000008 IP: irq_bypass_unregister_consumer+0x9d/0xb70 [irqbypass] PGD 0 Oops: 0002 [#1] SMP CPU: 1 PID: 125 Comm: kworker/1:1 Not tainted 4.9.0+ #1 Workqueue: kvm-irqfd-cleanup irqfd_shutdown [kvm] task: ffff9bbe0dfbb900 task.stack: ffffb61802014000 RIP: 0010:irq_bypass_unregister_consumer+0x9d/0xb70 [irqbypass] Call Trace: irqfd_shutdown+0x66/0xa0 [kvm] process_one_work+0x16b/0x480 worker_thread+0x4b/0x500 kthread+0x101/0x140 ? process_one_work+0x480/0x480 ? kthread_create_on_node+0x60/0x60 ret_from_fork+0x25/0x30 RIP: irq_bypass_unregister_consumer+0x9d/0xb70 [irqbypass] RSP: ffffb61802017e20 CR2: 0000000000000008 The syzkaller folks reported a NULL pointer dereference that due to unregister an consumer which fails registration before. The syzkaller creates two VMs w/ an equal eventfd occasionally. So the second VM fails to register an irqbypass consumer. It will make irqfd as inactive and queue an workqueue work to shutdown irqfd and unregister the irqbypass consumer when eventfd is closed. However, the second consumer has been initialized though it fails registration. So the token(same as the first VM's) is taken to unregister the consumer through the workqueue, the consumer of the first VM is found and unregistered, then NULL deref incurred in the path of deleting consumer from the consumers list. This patch fixes it by making irq_bypass_register/unregister_consumer() looks for the consumer entry based on consumer pointer itself instead of token matching. Reported-by: Dmitry Vyukov <dvyukov@google.com> Suggested-by: Alex Williamson <alex.williamson@redhat.com> Cc: Paolo Bonzini <pbonzini@redhat.com> Cc: Radim Krčmář <rkrcmar@redhat.com> Cc: Dmitry Vyukov <dvyukov@google.com> Cc: Alex Williamson <alex.williamson@redhat.com> Signed-off-by: Wanpeng Li <wanpeng.li@hotmail.com> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'virt/lib')
-rw-r--r--virt/lib/irqbypass.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/virt/lib/irqbypass.c b/virt/lib/irqbypass.c
index 52abac4bb6a2..6d2fcd6fcb25 100644
--- a/virt/lib/irqbypass.c
+++ b/virt/lib/irqbypass.c
@@ -195,7 +195,7 @@ int irq_bypass_register_consumer(struct irq_bypass_consumer *consumer)
195 mutex_lock(&lock); 195 mutex_lock(&lock);
196 196
197 list_for_each_entry(tmp, &consumers, node) { 197 list_for_each_entry(tmp, &consumers, node) {
198 if (tmp->token == consumer->token) { 198 if (tmp->token == consumer->token || tmp == consumer) {
199 mutex_unlock(&lock); 199 mutex_unlock(&lock);
200 module_put(THIS_MODULE); 200 module_put(THIS_MODULE);
201 return -EBUSY; 201 return -EBUSY;
@@ -245,7 +245,7 @@ void irq_bypass_unregister_consumer(struct irq_bypass_consumer *consumer)
245 mutex_lock(&lock); 245 mutex_lock(&lock);
246 246
247 list_for_each_entry(tmp, &consumers, node) { 247 list_for_each_entry(tmp, &consumers, node) {
248 if (tmp->token != consumer->token) 248 if (tmp != consumer)
249 continue; 249 continue;
250 250
251 list_for_each_entry(producer, &producers, node) { 251 list_for_each_entry(producer, &producers, node) {