]> git.proxmox.com Git - pve-kernel.git/blame - patches/kernel/0232-kvm-vmx-Scrub-hardware-GPRs-at-VM-exit.patch
update Spectre KVM PoC fix for AMD
[pve-kernel.git] / patches / kernel / 0232-kvm-vmx-Scrub-hardware-GPRs-at-VM-exit.patch
CommitLineData
76ec7e59 1From 711a55c9d58955a2bfca89cd25935ca607e49bc0 Mon Sep 17 00:00:00 2001
7c7389df
FG
2From: Jim Mattson <jmattson@google.com>
3Date: Wed, 3 Jan 2018 14:31:38 -0800
e4cdf2a5 4Subject: [PATCH 232/241] kvm: vmx: Scrub hardware GPRs at VM-exit
7c7389df
FG
5MIME-Version: 1.0
6Content-Type: text/plain; charset=UTF-8
7Content-Transfer-Encoding: 8bit
8
9Guest GPR values are live in the hardware GPRs at VM-exit. Do not
10leave any guest values in hardware GPRs after the guest GPR values are
11saved to the vcpu_vmx structure.
12
13This is a partial mitigation for CVE 2017-5715 and CVE 2017-5753.
14Specifically, it defeats the Project Zero PoC for CVE 2017-5715.
15
16Suggested-by: Eric Northup <digitaleric@google.com>
17Signed-off-by: Jim Mattson <jmattson@google.com>
18Reviewed-by: Eric Northup <digitaleric@google.com>
19Reviewed-by: Benjamin Serebrin <serebrin@google.com>
20Reviewed-by: Andrew Honig <ahonig@google.com>
76ec7e59
FG
21[Paolo: Add AMD bits, Signed-off-by: Tom Lendacky <thomas.lendacky@amd.com>]
22Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
7c7389df
FG
23Signed-off-by: Fabian Grünbichler <f.gruenbichler@proxmox.com>
24---
76ec7e59 25 arch/x86/kvm/svm.c | 19 +++++++++++++++++++
7c7389df 26 arch/x86/kvm/vmx.c | 14 +++++++++++++-
76ec7e59 27 2 files changed, 32 insertions(+), 1 deletion(-)
7c7389df 28
76ec7e59
FG
29diff --git a/arch/x86/kvm/svm.c b/arch/x86/kvm/svm.c
30index af09baa3d736..92cd94d51e1f 100644
31--- a/arch/x86/kvm/svm.c
32+++ b/arch/x86/kvm/svm.c
33@@ -4924,6 +4924,25 @@ static void svm_vcpu_run(struct kvm_vcpu *vcpu)
34 "mov %%r13, %c[r13](%[svm]) \n\t"
35 "mov %%r14, %c[r14](%[svm]) \n\t"
36 "mov %%r15, %c[r15](%[svm]) \n\t"
37+#endif
38+ /*
39+ * Clear host registers marked as clobbered to prevent
40+ * speculative use.
41+ */
42+ "xor %%" _ASM_BX ", %%" _ASM_BX " \n\t"
43+ "xor %%" _ASM_CX ", %%" _ASM_CX " \n\t"
44+ "xor %%" _ASM_DX ", %%" _ASM_DX " \n\t"
45+ "xor %%" _ASM_SI ", %%" _ASM_SI " \n\t"
46+ "xor %%" _ASM_DI ", %%" _ASM_DI " \n\t"
47+#ifdef CONFIG_X86_64
48+ "xor %%r8, %%r8 \n\t"
49+ "xor %%r9, %%r9 \n\t"
50+ "xor %%r10, %%r10 \n\t"
51+ "xor %%r11, %%r11 \n\t"
52+ "xor %%r12, %%r12 \n\t"
53+ "xor %%r13, %%r13 \n\t"
54+ "xor %%r14, %%r14 \n\t"
55+ "xor %%r15, %%r15 \n\t"
56 #endif
57 "pop %%" _ASM_BP
58 :
7c7389df
FG
59diff --git a/arch/x86/kvm/vmx.c b/arch/x86/kvm/vmx.c
60index d61986a36575..9b4256fd589a 100644
61--- a/arch/x86/kvm/vmx.c
62+++ b/arch/x86/kvm/vmx.c
63@@ -9140,6 +9140,7 @@ static void __noclone vmx_vcpu_run(struct kvm_vcpu *vcpu)
64 /* Save guest registers, load host registers, keep flags */
65 "mov %0, %c[wordsize](%%" _ASM_SP ") \n\t"
66 "pop %0 \n\t"
67+ "setbe %c[fail](%0)\n\t"
68 "mov %%" _ASM_AX ", %c[rax](%0) \n\t"
69 "mov %%" _ASM_BX ", %c[rbx](%0) \n\t"
70 __ASM_SIZE(pop) " %c[rcx](%0) \n\t"
71@@ -9156,12 +9157,23 @@ static void __noclone vmx_vcpu_run(struct kvm_vcpu *vcpu)
72 "mov %%r13, %c[r13](%0) \n\t"
73 "mov %%r14, %c[r14](%0) \n\t"
74 "mov %%r15, %c[r15](%0) \n\t"
75+ "xor %%r8d, %%r8d \n\t"
76+ "xor %%r9d, %%r9d \n\t"
77+ "xor %%r10d, %%r10d \n\t"
78+ "xor %%r11d, %%r11d \n\t"
79+ "xor %%r12d, %%r12d \n\t"
80+ "xor %%r13d, %%r13d \n\t"
81+ "xor %%r14d, %%r14d \n\t"
82+ "xor %%r15d, %%r15d \n\t"
83 #endif
84 "mov %%cr2, %%" _ASM_AX " \n\t"
85 "mov %%" _ASM_AX ", %c[cr2](%0) \n\t"
86
87+ "xor %%eax, %%eax \n\t"
88+ "xor %%ebx, %%ebx \n\t"
89+ "xor %%esi, %%esi \n\t"
90+ "xor %%edi, %%edi \n\t"
91 "pop %%" _ASM_BP "; pop %%" _ASM_DX " \n\t"
92- "setbe %c[fail](%0) \n\t"
93 ".pushsection .rodata \n\t"
94 ".global vmx_return \n\t"
95 "vmx_return: " _ASM_PTR " 2b \n\t"
96--
972.14.2
98