]> git.proxmox.com Git - pve-kernel.git/blame - patches/kernel-cves/CVE-2017-12188_0001-KVM-nVMX-update-last_nonleaf_level-when-initializing.patch
update sources to Ubuntu-4.13.0-17.20
[pve-kernel.git] / patches / kernel-cves / CVE-2017-12188_0001-KVM-nVMX-update-last_nonleaf_level-when-initializing.patch
CommitLineData
0e3176e7
FG
1From 8da45fe7977a1866ea95d5d281485e6f139d75c8 Mon Sep 17 00:00:00 2001
2From: Ladi Prosek <lprosek@redhat.com>
3Date: Tue, 10 Oct 2017 17:30:58 +0200
4Subject: [CVE-2017-12188 1/2] KVM: nVMX: update last_nonleaf_level when
5 initializing nested EPT
6MIME-Version: 1.0
7Content-Type: text/plain; charset=UTF-8
8Content-Transfer-Encoding: 8bit
9
10The function updates context->root_level but didn't call
11update_last_nonleaf_level so the previous and potentially wrong value
12was used for page walks. For example, a zero value of last_nonleaf_level
13would allow a potential out-of-bounds access in arch/x86/mmu/paging_tmpl.h's
14walk_addr_generic function (CVE-2017-12188).
15
16Fixes: 155a97a3d7c78b46cef6f1a973c831bc5a4f82bb
17Signed-off-by: Ladi Prosek <lprosek@redhat.com>
18Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
19Signed-off-by: Fabian Grünbichler <f.gruenbichler@proxmox.com>
20---
21 arch/x86/kvm/mmu.c | 1 +
22 1 file changed, 1 insertion(+)
23
24diff --git a/arch/x86/kvm/mmu.c b/arch/x86/kvm/mmu.c
25index 56e68dfac974..ca0112742343 100644
26--- a/arch/x86/kvm/mmu.c
27+++ b/arch/x86/kvm/mmu.c
28@@ -4459,6 +4459,7 @@ void kvm_init_shadow_ept_mmu(struct kvm_vcpu *vcpu, bool execonly,
29
30 update_permission_bitmask(vcpu, context, true);
31 update_pkru_bitmask(vcpu, context, true);
32+ update_last_nonleaf_level(vcpu, context);
33 reset_rsvds_bits_mask_ept(vcpu, context, execonly);
34 reset_ept_shadow_zero_bits_mask(vcpu, context, execonly);
35 }
36--
372.14.1
38