]> git.baikalelectronics.ru Git - kernel.git/commit
KVM: x86: fix guest-initiated crash with x2apic (CVE-2013-6376)
authorGleb Natapov <gleb@redhat.com>
Thu, 12 Dec 2013 20:20:08 +0000 (21:20 +0100)
committerPaolo Bonzini <pbonzini@redhat.com>
Thu, 12 Dec 2013 21:46:18 +0000 (22:46 +0100)
commitdf31013e0e047c2fe16089eed24f0a4fe6c8198a
tree2be4f93e491c3094d7ae1994191941ba4c1dcc4f
parent27b8b60db86f17c488372000ca7a4ea72fa13305
KVM: x86: fix guest-initiated crash with x2apic (CVE-2013-6376)

A guest can cause a BUG_ON() leading to a host kernel crash.
When the guest writes to the ICR to request an IPI, while in x2apic
mode the following things happen, the destination is read from
ICR2, which is a register that the guest can control.

kvm_irq_delivery_to_apic_fast uses the high 16 bits of ICR2 as the
cluster id.  A BUG_ON is triggered, which is a protection against
accessing map->logical_map with an out-of-bounds access and manages
to avoid that anything really unsafe occurs.

The logic in the code is correct from real HW point of view. The problem
is that KVM supports only one cluster with ID 0 in clustered mode, but
the code that has the bug does not take this into account.

Reported-by: Lars Bull <larsbull@google.com>
Cc: stable@vger.kernel.org
Signed-off-by: Gleb Natapov <gleb@redhat.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
arch/x86/kvm/lapic.c