summaryrefslogtreecommitdiffstats
path: root/arch/x86/kvm/vmx.c
diff options
context:
space:
mode:
authorGleb Natapov2013-09-15 10:07:23 +0200
committerGleb Natapov2013-09-17 18:09:47 +0200
commit0be9c7a89f75072e091cd079d76194aec8d1fb09 (patch)
tree62a183a54e4a9b3af3753392f3069cefbdb97a8d /arch/x86/kvm/vmx.c
parentkvm: free resources after canceling async_pf (diff)
downloadkernel-qcow2-linux-0be9c7a89f75072e091cd079d76194aec8d1fb09.tar.gz
kernel-qcow2-linux-0be9c7a89f75072e091cd079d76194aec8d1fb09.tar.xz
kernel-qcow2-linux-0be9c7a89f75072e091cd079d76194aec8d1fb09.zip
KVM: VMX: set "blocked by NMI" flag if EPT violation happens during IRET from NMI
Set "blocked by NMI" flag if EPT violation happens during IRET from NMI otherwise NMI can be called recursively causing stack corruption. Signed-off-by: Gleb Natapov <gleb@redhat.com>
Diffstat (limited to 'arch/x86/kvm/vmx.c')
-rw-r--r--arch/x86/kvm/vmx.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/arch/x86/kvm/vmx.c b/arch/x86/kvm/vmx.c
index 48735936860c..a1216de9ffda 100644
--- a/arch/x86/kvm/vmx.c
+++ b/arch/x86/kvm/vmx.c
@@ -5339,6 +5339,15 @@ static int handle_ept_violation(struct kvm_vcpu *vcpu)
return 0;
}
+ /*
+ * EPT violation happened while executing iret from NMI,
+ * "blocked by NMI" bit has to be set before next VM entry.
+ * There are errata that may cause this bit to not be set:
+ * AAK134, BY25.
+ */
+ if (exit_qualification & INTR_INFO_UNBLOCK_NMI)
+ vmcs_set_bits(GUEST_INTERRUPTIBILITY_INFO, GUEST_INTR_STATE_NMI);
+
gpa = vmcs_read64(GUEST_PHYSICAL_ADDRESS);
trace_kvm_page_fault(gpa, exit_qualification);