]> git.proxmox.com Git - pve-kernel.git/blob - patches/kernel/0011-x86-KVM-Make-sure-KVM_VCPU_FLUSH_TLB-flag-is-not-mis.patch
update sources to Ubuntu-5.3.0-40.32
[pve-kernel.git] / patches / kernel / 0011-x86-KVM-Make-sure-KVM_VCPU_FLUSH_TLB-flag-is-not-mis.patch
1 From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
2 From: Boris Ostrovsky <boris.ostrovsky@oracle.com>
3 Date: Fri, 31 Jan 2020 08:06:43 -0300
4 Subject: [PATCH] x86/KVM: Make sure KVM_VCPU_FLUSH_TLB flag is not missed
5
6 CVE-2019-3016
7 CVE-2020-3016
8
9 There is a potential race in record_steal_time() between setting
10 host-local vcpu->arch.st.steal.preempted to zero (i.e. clearing
11 KVM_VCPU_PREEMPTED) and propagating this value to the guest with
12 kvm_write_guest_cached(). Between those two events the guest may
13 still see KVM_VCPU_PREEMPTED in its copy of kvm_steal_time, set
14 KVM_VCPU_FLUSH_TLB and assume that hypervisor will do the right
15 thing. Which it won't.
16
17 Instad of copying, we should map kvm_steal_time and that will
18 guarantee atomicity of accesses to @preempted.
19
20 This is part of CVE-2019-3016.
21
22 Signed-off-by: Boris Ostrovsky <boris.ostrovsky@oracle.com>
23 Reviewed-by: Joao Martins <joao.m.martins@oracle.com>
24 Signed-off-by: Thadeu Lima de Souza Cascardo <cascardo@canonical.com>
25 Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
26 ---
27 arch/x86/kvm/x86.c | 49 +++++++++++++++++++++++++++-------------------
28 1 file changed, 29 insertions(+), 20 deletions(-)
29
30 diff --git a/arch/x86/kvm/x86.c b/arch/x86/kvm/x86.c
31 index 41fee3d359ab..431e34965707 100644
32 --- a/arch/x86/kvm/x86.c
33 +++ b/arch/x86/kvm/x86.c
34 @@ -2482,43 +2482,45 @@ static void kvm_vcpu_flush_tlb(struct kvm_vcpu *vcpu, bool invalidate_gpa)
35
36 static void record_steal_time(struct kvm_vcpu *vcpu)
37 {
38 + struct kvm_host_map map;
39 + struct kvm_steal_time *st;
40 +
41 if (!(vcpu->arch.st.msr_val & KVM_MSR_ENABLED))
42 return;
43
44 - if (unlikely(kvm_read_guest_cached(vcpu->kvm, &vcpu->arch.st.stime,
45 - &vcpu->arch.st.steal, sizeof(struct kvm_steal_time))))
46 + /* -EAGAIN is returned in atomic context so we can just return. */
47 + if (kvm_map_gfn(vcpu, vcpu->arch.st.msr_val >> PAGE_SHIFT,
48 + &map, &vcpu->arch.st.cache, false))
49 return;
50
51 + st = map.hva +
52 + offset_in_page(vcpu->arch.st.msr_val & KVM_STEAL_VALID_BITS);
53 +
54 /*
55 * Doing a TLB flush here, on the guest's behalf, can avoid
56 * expensive IPIs.
57 */
58 - if (xchg(&vcpu->arch.st.steal.preempted, 0) & KVM_VCPU_FLUSH_TLB)
59 + if (xchg(&st->preempted, 0) & KVM_VCPU_FLUSH_TLB)
60 kvm_vcpu_flush_tlb(vcpu, false);
61
62 - if (vcpu->arch.st.steal.version & 1)
63 - vcpu->arch.st.steal.version += 1; /* first time write, random junk */
64 + vcpu->arch.st.steal.preempted = 0;
65
66 - vcpu->arch.st.steal.version += 1;
67 + if (st->version & 1)
68 + st->version += 1; /* first time write, random junk */
69
70 - kvm_write_guest_cached(vcpu->kvm, &vcpu->arch.st.stime,
71 - &vcpu->arch.st.steal, sizeof(struct kvm_steal_time));
72 + st->version += 1;
73
74 smp_wmb();
75
76 - vcpu->arch.st.steal.steal += current->sched_info.run_delay -
77 + st->steal += current->sched_info.run_delay -
78 vcpu->arch.st.last_steal;
79 vcpu->arch.st.last_steal = current->sched_info.run_delay;
80
81 - kvm_write_guest_cached(vcpu->kvm, &vcpu->arch.st.stime,
82 - &vcpu->arch.st.steal, sizeof(struct kvm_steal_time));
83 -
84 smp_wmb();
85
86 - vcpu->arch.st.steal.version += 1;
87 + st->version += 1;
88
89 - kvm_write_guest_cached(vcpu->kvm, &vcpu->arch.st.stime,
90 - &vcpu->arch.st.steal, sizeof(struct kvm_steal_time));
91 + kvm_unmap_gfn(vcpu, &map, &vcpu->arch.st.cache, true, false);
92 }
93
94 int kvm_set_msr_common(struct kvm_vcpu *vcpu, struct msr_data *msr_info)
95 @@ -3390,18 +3392,25 @@ void kvm_arch_vcpu_load(struct kvm_vcpu *vcpu, int cpu)
96
97 static void kvm_steal_time_set_preempted(struct kvm_vcpu *vcpu)
98 {
99 + struct kvm_host_map map;
100 + struct kvm_steal_time *st;
101 +
102 if (!(vcpu->arch.st.msr_val & KVM_MSR_ENABLED))
103 return;
104
105 if (vcpu->arch.st.steal.preempted)
106 return;
107
108 - vcpu->arch.st.steal.preempted = KVM_VCPU_PREEMPTED;
109 + if (kvm_map_gfn(vcpu, vcpu->arch.st.msr_val >> PAGE_SHIFT, &map,
110 + &vcpu->arch.st.cache, true))
111 + return;
112 +
113 + st = map.hva +
114 + offset_in_page(vcpu->arch.st.msr_val & KVM_STEAL_VALID_BITS);
115 +
116 + st->preempted = vcpu->arch.st.steal.preempted = KVM_VCPU_PREEMPTED;
117
118 - kvm_write_guest_offset_cached(vcpu->kvm, &vcpu->arch.st.stime,
119 - &vcpu->arch.st.steal.preempted,
120 - offsetof(struct kvm_steal_time, preempted),
121 - sizeof(vcpu->arch.st.steal.preempted));
122 + kvm_unmap_gfn(vcpu, &map, &vcpu->arch.st.cache, true, true);
123 }
124
125 void kvm_arch_vcpu_put(struct kvm_vcpu *vcpu)