aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Shier <[email protected]>2018-10-11 11:46:46 -0700
committerPaolo Bonzini <[email protected]>2019-02-07 19:03:01 +0100
commitecec76885bcfe3294685dc363fd1273df0d5d65f (patch)
tree84cd2d9a8d2ed46ef5525782b50152dbe11c3542
parent353c0956a618a07ba4bbe7ad00ff29fe70e8412a (diff)
KVM: nVMX: unconditionally cancel preemption timer in free_nested (CVE-2019-7221)
Bugzilla: 1671904 There are multiple code paths where an hrtimer may have been started to emulate an L1 VMX preemption timer that can result in a call to free_nested without an intervening L2 exit where the hrtimer is normally cancelled. Unconditionally cancel in free_nested to cover all cases. Embargoed until Feb 7th 2019. Signed-off-by: Peter Shier <[email protected]> Reported-by: Jim Mattson <[email protected]> Reviewed-by: Jim Mattson <[email protected]> Reported-by: Felix Wilhelm <[email protected]> Cc: [email protected] Message-Id: <[email protected]> Signed-off-by: Paolo Bonzini <[email protected]>
-rw-r--r--arch/x86/kvm/vmx/nested.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/x86/kvm/vmx/nested.c b/arch/x86/kvm/vmx/nested.c
index 8ff20523661b..d8ea4ebd79e7 100644
--- a/arch/x86/kvm/vmx/nested.c
+++ b/arch/x86/kvm/vmx/nested.c
@@ -211,6 +211,7 @@ static void free_nested(struct kvm_vcpu *vcpu)
if (!vmx->nested.vmxon && !vmx->nested.smm.vmxon)
return;
+ hrtimer_cancel(&vmx->nested.preemption_timer);
vmx->nested.vmxon = false;
vmx->nested.smm.vmxon = false;
free_vpid(vmx->nested.vpid02);