blob: c902ace2bd179e4d229fa9ad363c75803f31cf25 [file] [log] [blame]
Joerg Roedel883b0a92020-03-24 10:41:52 +01001// SPDX-License-Identifier: GPL-2.0-only
2/*
3 * Kernel-based Virtual Machine driver for Linux
4 *
5 * AMD SVM support
6 *
7 * Copyright (C) 2006 Qumranet, Inc.
8 * Copyright 2010 Red Hat, Inc. and/or its affiliates.
9 *
10 * Authors:
11 * Yaniv Kamay <yaniv@qumranet.com>
12 * Avi Kivity <avi@qumranet.com>
13 */
14
15#define pr_fmt(fmt) "SVM: " fmt
16
17#include <linux/kvm_types.h>
18#include <linux/kvm_host.h>
19#include <linux/kernel.h>
20
21#include <asm/msr-index.h>
Paolo Bonzini5679b802020-05-04 11:28:25 -040022#include <asm/debugreg.h>
Joerg Roedel883b0a92020-03-24 10:41:52 +010023
24#include "kvm_emulate.h"
25#include "trace.h"
26#include "mmu.h"
27#include "x86.h"
Paolo Bonzinicc440cd2020-05-13 13:36:32 -040028#include "cpuid.h"
Paolo Bonzini5b6724082020-05-16 08:50:35 -040029#include "lapic.h"
Joerg Roedel883b0a92020-03-24 10:41:52 +010030#include "svm.h"
31
Sean Christopherson11f0cbf2021-02-03 16:01:17 -080032#define CC KVM_NESTED_VMENTER_CONSISTENCY_CHECK
33
Joerg Roedel883b0a92020-03-24 10:41:52 +010034static void nested_svm_inject_npf_exit(struct kvm_vcpu *vcpu,
35 struct x86_exception *fault)
36{
37 struct vcpu_svm *svm = to_svm(vcpu);
38
39 if (svm->vmcb->control.exit_code != SVM_EXIT_NPF) {
40 /*
41 * TODO: track the cause of the nested page fault, and
42 * correctly fill in the high bits of exit_info_1.
43 */
44 svm->vmcb->control.exit_code = SVM_EXIT_NPF;
45 svm->vmcb->control.exit_code_hi = 0;
46 svm->vmcb->control.exit_info_1 = (1ULL << 32);
47 svm->vmcb->control.exit_info_2 = fault->address;
48 }
49
50 svm->vmcb->control.exit_info_1 &= ~0xffffffffULL;
51 svm->vmcb->control.exit_info_1 |= fault->error_code;
52
Joerg Roedel883b0a92020-03-24 10:41:52 +010053 nested_svm_vmexit(svm);
54}
55
Paolo Bonzinia04aead2021-02-18 07:16:59 -050056static void svm_inject_page_fault_nested(struct kvm_vcpu *vcpu, struct x86_exception *fault)
57{
58 struct vcpu_svm *svm = to_svm(vcpu);
59 WARN_ON(!is_guest_mode(vcpu));
60
61 if (vmcb_is_intercept(&svm->nested.ctl, INTERCEPT_EXCEPTION_OFFSET + PF_VECTOR) &&
62 !svm->nested.nested_run_pending) {
63 svm->vmcb->control.exit_code = SVM_EXIT_EXCP_BASE + PF_VECTOR;
64 svm->vmcb->control.exit_code_hi = 0;
65 svm->vmcb->control.exit_info_1 = fault->error_code;
66 svm->vmcb->control.exit_info_2 = fault->address;
67 nested_svm_vmexit(svm);
68 } else {
69 kvm_inject_page_fault(vcpu, fault);
70 }
71}
72
Joerg Roedel883b0a92020-03-24 10:41:52 +010073static u64 nested_svm_get_tdp_pdptr(struct kvm_vcpu *vcpu, int index)
74{
75 struct vcpu_svm *svm = to_svm(vcpu);
Paolo Bonzinie670bf62020-05-13 13:16:12 -040076 u64 cr3 = svm->nested.ctl.nested_cr3;
Joerg Roedel883b0a92020-03-24 10:41:52 +010077 u64 pdpte;
78 int ret;
79
Sean Christopherson2732be92021-02-03 16:01:07 -080080 ret = kvm_vcpu_read_guest_page(vcpu, gpa_to_gfn(cr3), &pdpte,
Joerg Roedel883b0a92020-03-24 10:41:52 +010081 offset_in_page(cr3) + index * 8, 8);
82 if (ret)
83 return 0;
84 return pdpte;
85}
86
87static unsigned long nested_svm_get_tdp_cr3(struct kvm_vcpu *vcpu)
88{
89 struct vcpu_svm *svm = to_svm(vcpu);
90
Paolo Bonzinie670bf62020-05-13 13:16:12 -040091 return svm->nested.ctl.nested_cr3;
Joerg Roedel883b0a92020-03-24 10:41:52 +010092}
93
94static void nested_svm_init_mmu_context(struct kvm_vcpu *vcpu)
95{
Paolo Bonzini929d1cf2020-05-19 06:18:31 -040096 struct vcpu_svm *svm = to_svm(vcpu);
Paolo Bonzini929d1cf2020-05-19 06:18:31 -040097
Joerg Roedel883b0a92020-03-24 10:41:52 +010098 WARN_ON(mmu_is_nested(vcpu));
99
100 vcpu->arch.mmu = &vcpu->arch.guest_mmu;
Cathy Avery4995a362021-01-13 07:07:52 -0500101 kvm_init_shadow_npt_mmu(vcpu, X86_CR0_PG, svm->vmcb01.ptr->save.cr4,
102 svm->vmcb01.ptr->save.efer,
Vitaly Kuznetsov0f04a2a2020-07-10 16:11:49 +0200103 svm->nested.ctl.nested_cr3);
Joerg Roedel883b0a92020-03-24 10:41:52 +0100104 vcpu->arch.mmu->get_guest_pgd = nested_svm_get_tdp_cr3;
105 vcpu->arch.mmu->get_pdptr = nested_svm_get_tdp_pdptr;
106 vcpu->arch.mmu->inject_page_fault = nested_svm_inject_npf_exit;
Joerg Roedel883b0a92020-03-24 10:41:52 +0100107 reset_shadow_zero_bits_mask(vcpu, vcpu->arch.mmu);
108 vcpu->arch.walk_mmu = &vcpu->arch.nested_mmu;
109}
110
111static void nested_svm_uninit_mmu_context(struct kvm_vcpu *vcpu)
112{
113 vcpu->arch.mmu = &vcpu->arch.root_mmu;
114 vcpu->arch.walk_mmu = &vcpu->arch.root_mmu;
115}
116
117void recalc_intercepts(struct vcpu_svm *svm)
118{
Paolo Bonzinie670bf62020-05-13 13:16:12 -0400119 struct vmcb_control_area *c, *h, *g;
Babu Mogerc45ad722020-09-11 14:27:58 -0500120 unsigned int i;
Joerg Roedel883b0a92020-03-24 10:41:52 +0100121
Joerg Roedel06e78522020-06-25 10:03:23 +0200122 vmcb_mark_dirty(svm->vmcb, VMCB_INTERCEPTS);
Joerg Roedel883b0a92020-03-24 10:41:52 +0100123
124 if (!is_guest_mode(&svm->vcpu))
125 return;
126
127 c = &svm->vmcb->control;
Cathy Avery4995a362021-01-13 07:07:52 -0500128 h = &svm->vmcb01.ptr->control;
Paolo Bonzinie670bf62020-05-13 13:16:12 -0400129 g = &svm->nested.ctl;
Joerg Roedel883b0a92020-03-24 10:41:52 +0100130
Babu Mogerc45ad722020-09-11 14:27:58 -0500131 for (i = 0; i < MAX_INTERCEPT; i++)
132 c->intercepts[i] = h->intercepts[i];
133
Paolo Bonzinie9fd7612020-05-13 13:28:23 -0400134 if (g->int_ctl & V_INTR_MASKING_MASK) {
Joerg Roedel883b0a92020-03-24 10:41:52 +0100135 /* We only want the cr8 intercept bits of L1 */
Babu Moger03bfeeb2020-09-11 14:28:05 -0500136 vmcb_clr_intercept(c, INTERCEPT_CR8_READ);
137 vmcb_clr_intercept(c, INTERCEPT_CR8_WRITE);
Joerg Roedel883b0a92020-03-24 10:41:52 +0100138
139 /*
140 * Once running L2 with HF_VINTR_MASK, EFLAGS.IF does not
141 * affect any interrupt we may want to inject; therefore,
142 * interrupt window vmexits are irrelevant to L0.
143 */
Babu Mogerc62e2e92020-09-11 14:28:28 -0500144 vmcb_clr_intercept(c, INTERCEPT_VINTR);
Joerg Roedel883b0a92020-03-24 10:41:52 +0100145 }
146
147 /* We don't want to see VMMCALLs from a nested guest */
Babu Mogerc62e2e92020-09-11 14:28:28 -0500148 vmcb_clr_intercept(c, INTERCEPT_VMMCALL);
Joerg Roedel883b0a92020-03-24 10:41:52 +0100149
Babu Mogerc45ad722020-09-11 14:27:58 -0500150 for (i = 0; i < MAX_INTERCEPT; i++)
151 c->intercepts[i] |= g->intercepts[i];
Joerg Roedel883b0a92020-03-24 10:41:52 +0100152}
153
Paolo Bonzini2f675912020-05-18 15:21:22 -0400154static void copy_vmcb_control_area(struct vmcb_control_area *dst,
155 struct vmcb_control_area *from)
Joerg Roedel883b0a92020-03-24 10:41:52 +0100156{
Babu Mogerc45ad722020-09-11 14:27:58 -0500157 unsigned int i;
158
159 for (i = 0; i < MAX_INTERCEPT; i++)
160 dst->intercepts[i] = from->intercepts[i];
161
Joerg Roedel883b0a92020-03-24 10:41:52 +0100162 dst->iopm_base_pa = from->iopm_base_pa;
163 dst->msrpm_base_pa = from->msrpm_base_pa;
164 dst->tsc_offset = from->tsc_offset;
Paolo Bonzini6c0238c2020-05-20 08:02:17 -0400165 /* asid not copied, it is handled manually for svm->vmcb. */
Joerg Roedel883b0a92020-03-24 10:41:52 +0100166 dst->tlb_ctl = from->tlb_ctl;
167 dst->int_ctl = from->int_ctl;
168 dst->int_vector = from->int_vector;
169 dst->int_state = from->int_state;
170 dst->exit_code = from->exit_code;
171 dst->exit_code_hi = from->exit_code_hi;
172 dst->exit_info_1 = from->exit_info_1;
173 dst->exit_info_2 = from->exit_info_2;
174 dst->exit_int_info = from->exit_int_info;
175 dst->exit_int_info_err = from->exit_int_info_err;
176 dst->nested_ctl = from->nested_ctl;
177 dst->event_inj = from->event_inj;
178 dst->event_inj_err = from->event_inj_err;
179 dst->nested_cr3 = from->nested_cr3;
180 dst->virt_ext = from->virt_ext;
181 dst->pause_filter_count = from->pause_filter_count;
182 dst->pause_filter_thresh = from->pause_filter_thresh;
183}
184
185static bool nested_svm_vmrun_msrpm(struct vcpu_svm *svm)
186{
187 /*
188 * This function merges the msr permission bitmaps of kvm and the
189 * nested vmcb. It is optimized in that it only merges the parts where
190 * the kvm msr permission bitmap may contain zero bits
191 */
192 int i;
193
Babu Mogerc62e2e92020-09-11 14:28:28 -0500194 if (!(vmcb_is_intercept(&svm->nested.ctl, INTERCEPT_MSR_PROT)))
Joerg Roedel883b0a92020-03-24 10:41:52 +0100195 return true;
196
197 for (i = 0; i < MSRPM_OFFSETS; i++) {
198 u32 value, p;
199 u64 offset;
200
201 if (msrpm_offsets[i] == 0xffffffff)
202 break;
203
204 p = msrpm_offsets[i];
Paolo Bonzinie670bf62020-05-13 13:16:12 -0400205 offset = svm->nested.ctl.msrpm_base_pa + (p * 4);
Joerg Roedel883b0a92020-03-24 10:41:52 +0100206
207 if (kvm_vcpu_read_guest(&svm->vcpu, offset, &value, 4))
208 return false;
209
210 svm->nested.msrpm[p] = svm->msrpm[p] | value;
211 }
212
213 svm->vmcb->control.msrpm_base_pa = __sme_set(__pa(svm->nested.msrpm));
214
215 return true;
216}
217
Krish Sadhukhanee695f22021-04-12 17:56:08 -0400218/*
219 * Bits 11:0 of bitmap address are ignored by hardware
220 */
221static bool nested_svm_check_bitmap_pa(struct kvm_vcpu *vcpu, u64 pa, u32 size)
222{
223 u64 addr = PAGE_ALIGN(pa);
224
225 return kvm_vcpu_is_legal_gpa(vcpu, addr) &&
226 kvm_vcpu_is_legal_gpa(vcpu, addr + size - 1);
227}
228
229static bool nested_vmcb_check_controls(struct kvm_vcpu *vcpu,
230 struct vmcb_control_area *control)
Paolo Bonzinica46d732020-05-18 13:02:15 -0400231{
Sean Christopherson11f0cbf2021-02-03 16:01:17 -0800232 if (CC(!vmcb_is_intercept(control, INTERCEPT_VMRUN)))
Paolo Bonzinica46d732020-05-18 13:02:15 -0400233 return false;
234
Sean Christopherson11f0cbf2021-02-03 16:01:17 -0800235 if (CC(control->asid == 0))
Paolo Bonzinica46d732020-05-18 13:02:15 -0400236 return false;
237
Sean Christopherson11f0cbf2021-02-03 16:01:17 -0800238 if (CC((control->nested_ctl & SVM_NESTED_CTL_NP_ENABLE) && !npt_enabled))
Paolo Bonzinica46d732020-05-18 13:02:15 -0400239 return false;
240
Krish Sadhukhanee695f22021-04-12 17:56:08 -0400241 if (CC(!nested_svm_check_bitmap_pa(vcpu, control->msrpm_base_pa,
242 MSRPM_SIZE)))
243 return false;
244 if (CC(!nested_svm_check_bitmap_pa(vcpu, control->iopm_base_pa,
245 IOPM_SIZE)))
246 return false;
247
Paolo Bonzinica46d732020-05-18 13:02:15 -0400248 return true;
249}
250
Paolo Bonzini63129752021-03-02 14:40:39 -0500251static bool nested_vmcb_check_cr3_cr4(struct kvm_vcpu *vcpu,
Krish Sadhukhan6906e062020-10-06 19:06:52 +0000252 struct vmcb_save_area *save)
Joerg Roedel883b0a92020-03-24 10:41:52 +0100253{
Krish Sadhukhan6906e062020-10-06 19:06:52 +0000254 /*
255 * These checks are also performed by KVM_SET_SREGS,
256 * except that EFER.LMA is not checked by SVM against
257 * CR0.PG && EFER.LME.
258 */
259 if ((save->efer & EFER_LME) && (save->cr0 & X86_CR0_PG)) {
Sean Christopherson11f0cbf2021-02-03 16:01:17 -0800260 if (CC(!(save->cr4 & X86_CR4_PAE)) ||
261 CC(!(save->cr0 & X86_CR0_PE)) ||
262 CC(kvm_vcpu_is_illegal_gpa(vcpu, save->cr3)))
Krish Sadhukhan761e4162020-07-08 00:39:56 +0000263 return false;
264 }
Krish Sadhukhan6906e062020-10-06 19:06:52 +0000265
Sean Christopherson11f0cbf2021-02-03 16:01:17 -0800266 if (CC(!kvm_is_valid_cr4(vcpu, save->cr4)))
267 return false;
268
269 return true;
Krish Sadhukhan6906e062020-10-06 19:06:52 +0000270}
271
272/* Common checks that apply to both L1 and L2 state. */
Paolo Bonzini63129752021-03-02 14:40:39 -0500273static bool nested_vmcb_valid_sregs(struct kvm_vcpu *vcpu,
Krish Sadhukhan6906e062020-10-06 19:06:52 +0000274 struct vmcb_save_area *save)
275{
Paolo Bonzini3c346c02021-03-31 06:28:01 -0400276 /*
277 * FIXME: these should be done after copying the fields,
278 * to avoid TOC/TOU races. For these save area checks
279 * the possible damage is limited since kvm_set_cr0 and
280 * kvm_set_cr4 handle failure; EFER_SVME is an exception
281 * so it is force-set later in nested_prepare_vmcb_save.
282 */
Sean Christopherson11f0cbf2021-02-03 16:01:17 -0800283 if (CC(!(save->efer & EFER_SVME)))
Krish Sadhukhan6906e062020-10-06 19:06:52 +0000284 return false;
285
Sean Christopherson11f0cbf2021-02-03 16:01:17 -0800286 if (CC((save->cr0 & X86_CR0_CD) == 0 && (save->cr0 & X86_CR0_NW)) ||
287 CC(save->cr0 & ~0xffffffffULL))
Krish Sadhukhan6906e062020-10-06 19:06:52 +0000288 return false;
289
Sean Christopherson11f0cbf2021-02-03 16:01:17 -0800290 if (CC(!kvm_dr6_valid(save->dr6)) || CC(!kvm_dr7_valid(save->dr7)))
Krish Sadhukhan6906e062020-10-06 19:06:52 +0000291 return false;
292
Paolo Bonzini63129752021-03-02 14:40:39 -0500293 if (!nested_vmcb_check_cr3_cr4(vcpu, save))
Krish Sadhukhan6906e062020-10-06 19:06:52 +0000294 return false;
295
Paolo Bonzini63129752021-03-02 14:40:39 -0500296 if (CC(!kvm_valid_efer(vcpu, save->efer)))
Krish Sadhukhan6906e062020-10-06 19:06:52 +0000297 return false;
298
299 return true;
300}
301
Paolo Bonzini9e8f0fb2020-11-17 05:15:41 -0500302static void nested_load_control_from_vmcb12(struct vcpu_svm *svm,
303 struct vmcb_control_area *control)
Paolo Bonzini3e06f012020-05-13 13:07:26 -0400304{
Paolo Bonzinie670bf62020-05-13 13:16:12 -0400305 copy_vmcb_control_area(&svm->nested.ctl, control);
Paolo Bonzini3e06f012020-05-13 13:07:26 -0400306
Paolo Bonzinicc440cd2020-05-13 13:36:32 -0400307 /* Copy it here because nested_svm_check_controls will check it. */
308 svm->nested.ctl.asid = control->asid;
Paolo Bonzinie670bf62020-05-13 13:16:12 -0400309 svm->nested.ctl.msrpm_base_pa &= ~0x0fffULL;
310 svm->nested.ctl.iopm_base_pa &= ~0x0fffULL;
Paolo Bonzini3e06f012020-05-13 13:07:26 -0400311}
312
Paolo Bonzini2d8a42b2020-05-22 03:50:14 -0400313/*
314 * Synchronize fields that are written by the processor, so that
Paolo Bonzini9e8f0fb2020-11-17 05:15:41 -0500315 * they can be copied back into the vmcb12.
Paolo Bonzini2d8a42b2020-05-22 03:50:14 -0400316 */
Paolo Bonzini9e8f0fb2020-11-17 05:15:41 -0500317void nested_sync_control_from_vmcb02(struct vcpu_svm *svm)
Paolo Bonzini2d8a42b2020-05-22 03:50:14 -0400318{
319 u32 mask;
320 svm->nested.ctl.event_inj = svm->vmcb->control.event_inj;
321 svm->nested.ctl.event_inj_err = svm->vmcb->control.event_inj_err;
322
323 /* Only a few fields of int_ctl are written by the processor. */
324 mask = V_IRQ_MASK | V_TPR_MASK;
325 if (!(svm->nested.ctl.int_ctl & V_INTR_MASKING_MASK) &&
Joerg Roedela284ba52020-06-25 10:03:24 +0200326 svm_is_intercept(svm, INTERCEPT_VINTR)) {
Paolo Bonzini2d8a42b2020-05-22 03:50:14 -0400327 /*
328 * In order to request an interrupt window, L0 is usurping
329 * svm->vmcb->control.int_ctl and possibly setting V_IRQ
330 * even if it was clear in L1's VMCB. Restoring it would be
331 * wrong. However, in this case V_IRQ will remain true until
332 * interrupt_window_interception calls svm_clear_vintr and
333 * restores int_ctl. We can just leave it aside.
334 */
335 mask &= ~V_IRQ_MASK;
336 }
337 svm->nested.ctl.int_ctl &= ~mask;
338 svm->nested.ctl.int_ctl |= svm->vmcb->control.int_ctl & mask;
339}
340
Paolo Bonzini36e2e982020-05-22 06:04:57 -0400341/*
342 * Transfer any event that L0 or L1 wanted to inject into L2 to
343 * EXIT_INT_INFO.
344 */
Paolo Bonzini9e8f0fb2020-11-17 05:15:41 -0500345static void nested_save_pending_event_to_vmcb12(struct vcpu_svm *svm,
346 struct vmcb *vmcb12)
Paolo Bonzini36e2e982020-05-22 06:04:57 -0400347{
348 struct kvm_vcpu *vcpu = &svm->vcpu;
349 u32 exit_int_info = 0;
350 unsigned int nr;
351
352 if (vcpu->arch.exception.injected) {
353 nr = vcpu->arch.exception.nr;
354 exit_int_info = nr | SVM_EVTINJ_VALID | SVM_EVTINJ_TYPE_EXEPT;
355
356 if (vcpu->arch.exception.has_error_code) {
357 exit_int_info |= SVM_EVTINJ_VALID_ERR;
Maxim Levitsky0dd16b52020-08-27 20:11:39 +0300358 vmcb12->control.exit_int_info_err =
Paolo Bonzini36e2e982020-05-22 06:04:57 -0400359 vcpu->arch.exception.error_code;
360 }
361
362 } else if (vcpu->arch.nmi_injected) {
363 exit_int_info = SVM_EVTINJ_VALID | SVM_EVTINJ_TYPE_NMI;
364
365 } else if (vcpu->arch.interrupt.injected) {
366 nr = vcpu->arch.interrupt.nr;
367 exit_int_info = nr | SVM_EVTINJ_VALID;
368
369 if (vcpu->arch.interrupt.soft)
370 exit_int_info |= SVM_EVTINJ_TYPE_SOFT;
371 else
372 exit_int_info |= SVM_EVTINJ_TYPE_INTR;
373 }
374
Maxim Levitsky0dd16b52020-08-27 20:11:39 +0300375 vmcb12->control.exit_int_info = exit_int_info;
Paolo Bonzini36e2e982020-05-22 06:04:57 -0400376}
377
Vitaly Kuznetsov62156f62020-07-10 16:11:53 +0200378static inline bool nested_npt_enabled(struct vcpu_svm *svm)
379{
380 return svm->nested.ctl.nested_ctl & SVM_NESTED_CTL_NP_ENABLE;
381}
382
383/*
Vitaly Kuznetsovd82aaef2020-07-10 16:11:56 +0200384 * Load guest's/host's cr3 on nested vmentry or vmexit. @nested_npt is true
385 * if we are emulating VM-Entry into a guest with NPT enabled.
Vitaly Kuznetsov62156f62020-07-10 16:11:53 +0200386 */
387static int nested_svm_load_cr3(struct kvm_vcpu *vcpu, unsigned long cr3,
Maxim Levitskyb222b0b2021-06-07 12:01:59 +0300388 bool nested_npt, bool reload_pdptrs)
Vitaly Kuznetsov62156f62020-07-10 16:11:53 +0200389{
Sean Christopherson11f0cbf2021-02-03 16:01:17 -0800390 if (CC(kvm_vcpu_is_illegal_gpa(vcpu, cr3)))
Vitaly Kuznetsova506fdd2020-07-10 16:11:55 +0200391 return -EINVAL;
392
Maxim Levitskyb222b0b2021-06-07 12:01:59 +0300393 if (reload_pdptrs && !nested_npt && is_pae_paging(vcpu) &&
Sean Christophersona36dbec62021-06-07 12:01:57 +0300394 CC(!load_pdptrs(vcpu, vcpu->arch.walk_mmu, cr3)))
395 return -EINVAL;
Vitaly Kuznetsova506fdd2020-07-10 16:11:55 +0200396
397 /*
398 * TODO: optimize unconditional TLB flush/MMU sync here and in
399 * kvm_init_shadow_npt_mmu().
400 */
401 if (!nested_npt)
402 kvm_mmu_new_pgd(vcpu, cr3, false, false);
403
404 vcpu->arch.cr3 = cr3;
405 kvm_register_mark_available(vcpu, VCPU_EXREG_CR3);
406
407 kvm_init_mmu(vcpu, false);
408
409 return 0;
Vitaly Kuznetsov62156f62020-07-10 16:11:53 +0200410}
411
Cathy Avery4995a362021-01-13 07:07:52 -0500412void nested_vmcb02_compute_g_pat(struct vcpu_svm *svm)
413{
414 if (!svm->nested.vmcb02.ptr)
415 return;
416
417 /* FIXME: merge g_pat from vmcb01 and vmcb12. */
418 svm->nested.vmcb02.ptr->save.g_pat = svm->vmcb01.ptr->save.g_pat;
419}
420
Paolo Bonzini9e8f0fb2020-11-17 05:15:41 -0500421static void nested_vmcb02_prepare_save(struct vcpu_svm *svm, struct vmcb *vmcb12)
Joerg Roedel883b0a92020-03-24 10:41:52 +0100422{
Cathy Avery81733962021-03-01 15:08:44 -0500423 bool new_vmcb12 = false;
424
Cathy Avery4995a362021-01-13 07:07:52 -0500425 nested_vmcb02_compute_g_pat(svm);
426
Joerg Roedel883b0a92020-03-24 10:41:52 +0100427 /* Load the nested guest state */
Cathy Avery81733962021-03-01 15:08:44 -0500428 if (svm->nested.vmcb12_gpa != svm->nested.last_vmcb12_gpa) {
429 new_vmcb12 = true;
430 svm->nested.last_vmcb12_gpa = svm->nested.vmcb12_gpa;
431 }
432
433 if (unlikely(new_vmcb12 || vmcb_is_dirty(vmcb12, VMCB_SEG))) {
434 svm->vmcb->save.es = vmcb12->save.es;
435 svm->vmcb->save.cs = vmcb12->save.cs;
436 svm->vmcb->save.ss = vmcb12->save.ss;
437 svm->vmcb->save.ds = vmcb12->save.ds;
438 svm->vmcb->save.cpl = vmcb12->save.cpl;
439 vmcb_mark_dirty(svm->vmcb, VMCB_SEG);
440 }
441
442 if (unlikely(new_vmcb12 || vmcb_is_dirty(vmcb12, VMCB_DT))) {
443 svm->vmcb->save.gdtr = vmcb12->save.gdtr;
444 svm->vmcb->save.idtr = vmcb12->save.idtr;
445 vmcb_mark_dirty(svm->vmcb, VMCB_DT);
446 }
Paolo Bonzini4bb170a2020-11-16 06:38:19 -0500447
Paolo Bonzini8cce12b2020-11-27 12:46:36 -0500448 kvm_set_rflags(&svm->vcpu, vmcb12->save.rflags | X86_EFLAGS_FIXED);
Paolo Bonzini3c346c02021-03-31 06:28:01 -0400449
450 /*
451 * Force-set EFER_SVME even though it is checked earlier on the
452 * VMCB12, because the guest can flip the bit between the check
453 * and now. Clearing EFER_SVME would call svm_free_nested.
454 */
455 svm_set_efer(&svm->vcpu, vmcb12->save.efer | EFER_SVME);
456
Maxim Levitsky0dd16b52020-08-27 20:11:39 +0300457 svm_set_cr0(&svm->vcpu, vmcb12->save.cr0);
458 svm_set_cr4(&svm->vcpu, vmcb12->save.cr4);
Paolo Bonzini4bb170a2020-11-16 06:38:19 -0500459
460 svm->vcpu.arch.cr2 = vmcb12->save.cr2;
Cathy Avery81733962021-03-01 15:08:44 -0500461
Maxim Levitsky0dd16b52020-08-27 20:11:39 +0300462 kvm_rax_write(&svm->vcpu, vmcb12->save.rax);
463 kvm_rsp_write(&svm->vcpu, vmcb12->save.rsp);
464 kvm_rip_write(&svm->vcpu, vmcb12->save.rip);
Joerg Roedel883b0a92020-03-24 10:41:52 +0100465
466 /* In case we don't even reach vcpu_run, the fields are not updated */
Maxim Levitsky0dd16b52020-08-27 20:11:39 +0300467 svm->vmcb->save.rax = vmcb12->save.rax;
468 svm->vmcb->save.rsp = vmcb12->save.rsp;
469 svm->vmcb->save.rip = vmcb12->save.rip;
Paolo Bonzini4bb170a2020-11-16 06:38:19 -0500470
Cathy Avery81733962021-03-01 15:08:44 -0500471 /* These bits will be set properly on the first execution when new_vmc12 is true */
472 if (unlikely(new_vmcb12 || vmcb_is_dirty(vmcb12, VMCB_DR))) {
473 svm->vmcb->save.dr7 = vmcb12->save.dr7 | DR7_FIXED_1;
474 svm->vcpu.arch.dr6 = vmcb12->save.dr6 | DR6_ACTIVE_LOW;
475 vmcb_mark_dirty(svm->vmcb, VMCB_DR);
476 }
Paolo Bonzinif241d712020-05-18 10:56:43 -0400477}
Joerg Roedel883b0a92020-03-24 10:41:52 +0100478
Paolo Bonzini9e8f0fb2020-11-17 05:15:41 -0500479static void nested_vmcb02_prepare_control(struct vcpu_svm *svm)
Paolo Bonzinif241d712020-05-18 10:56:43 -0400480{
Paolo Bonzini91b71302020-05-22 12:28:52 -0400481 const u32 mask = V_INTR_MASKING_MASK | V_GIF_ENABLE_MASK | V_GIF_MASK;
Vitaly Kuznetsov62156f62020-07-10 16:11:53 +0200482
Paolo Bonzini7c3ecfc2020-11-16 06:13:15 -0500483 /*
484 * Filled at exit: exit_code, exit_code_hi, exit_info_1, exit_info_2,
485 * exit_int_info, exit_int_info_err, next_rip, insn_len, insn_bytes.
486 */
Cathy Avery4995a362021-01-13 07:07:52 -0500487
Paolo Bonzini7c3ecfc2020-11-16 06:13:15 -0500488 /*
489 * Also covers avic_vapic_bar, avic_backing_page, avic_logical_id,
490 * avic_physical_id.
491 */
492 WARN_ON(svm->vmcb01.ptr->control.int_ctl & AVIC_ENABLE_MASK);
493
494 /* Copied from vmcb01. msrpm_base can be overwritten later. */
495 svm->vmcb->control.nested_ctl = svm->vmcb01.ptr->control.nested_ctl;
496 svm->vmcb->control.iopm_base_pa = svm->vmcb01.ptr->control.iopm_base_pa;
497 svm->vmcb->control.msrpm_base_pa = svm->vmcb01.ptr->control.msrpm_base_pa;
498
499 /* Done at vmrun: asid. */
500
501 /* Also overwritten later if necessary. */
502 svm->vmcb->control.tlb_ctl = TLB_CONTROL_DO_NOTHING;
503
504 /* nested_cr3. */
Vitaly Kuznetsov62156f62020-07-10 16:11:53 +0200505 if (nested_npt_enabled(svm))
Paolo Bonzini69cb8772020-05-22 05:27:46 -0400506 nested_svm_init_mmu_context(&svm->vcpu);
507
Paolo Bonzini18fc6c52020-05-18 11:07:08 -0400508 svm->vmcb->control.tsc_offset = svm->vcpu.arch.tsc_offset =
Paolo Bonzinie670bf62020-05-13 13:16:12 -0400509 svm->vcpu.arch.l1_tsc_offset + svm->nested.ctl.tsc_offset;
Joerg Roedel883b0a92020-03-24 10:41:52 +0100510
Paolo Bonzini91b71302020-05-22 12:28:52 -0400511 svm->vmcb->control.int_ctl =
512 (svm->nested.ctl.int_ctl & ~mask) |
Cathy Avery4995a362021-01-13 07:07:52 -0500513 (svm->vmcb01.ptr->control.int_ctl & mask);
Paolo Bonzini91b71302020-05-22 12:28:52 -0400514
Paolo Bonzinie670bf62020-05-13 13:16:12 -0400515 svm->vmcb->control.virt_ext = svm->nested.ctl.virt_ext;
516 svm->vmcb->control.int_vector = svm->nested.ctl.int_vector;
517 svm->vmcb->control.int_state = svm->nested.ctl.int_state;
518 svm->vmcb->control.event_inj = svm->nested.ctl.event_inj;
519 svm->vmcb->control.event_inj_err = svm->nested.ctl.event_inj_err;
Joerg Roedel883b0a92020-03-24 10:41:52 +0100520
Paolo Bonzinie670bf62020-05-13 13:16:12 -0400521 svm->vmcb->control.pause_filter_count = svm->nested.ctl.pause_filter_count;
522 svm->vmcb->control.pause_filter_thresh = svm->nested.ctl.pause_filter_thresh;
Joerg Roedel883b0a92020-03-24 10:41:52 +0100523
Joerg Roedel883b0a92020-03-24 10:41:52 +0100524 /* Enter Guest-Mode */
525 enter_guest_mode(&svm->vcpu);
526
527 /*
Paolo Bonzini4bb170a2020-11-16 06:38:19 -0500528 * Merge guest and host intercepts - must be called with vcpu in
529 * guest-mode to take effect.
Joerg Roedel883b0a92020-03-24 10:41:52 +0100530 */
531 recalc_intercepts(svm);
Paolo Bonzinif241d712020-05-18 10:56:43 -0400532}
533
Babu Mogerd00b99c2021-02-17 10:56:04 -0500534static void nested_svm_copy_common_state(struct vmcb *from_vmcb, struct vmcb *to_vmcb)
535{
536 /*
537 * Some VMCB state is shared between L1 and L2 and thus has to be
538 * moved at the time of nested vmrun and vmexit.
539 *
540 * VMLOAD/VMSAVE state would also belong in this category, but KVM
541 * always performs VMLOAD and VMSAVE from the VMCB01.
542 */
543 to_vmcb->save.spec_ctrl = from_vmcb->save.spec_ctrl;
544}
545
Paolo Bonzini63129752021-03-02 14:40:39 -0500546int enter_svm_guest_mode(struct kvm_vcpu *vcpu, u64 vmcb12_gpa,
Maxim Levitsky0dd16b52020-08-27 20:11:39 +0300547 struct vmcb *vmcb12)
Paolo Bonzinif241d712020-05-18 10:56:43 -0400548{
Paolo Bonzini63129752021-03-02 14:40:39 -0500549 struct vcpu_svm *svm = to_svm(vcpu);
Vitaly Kuznetsova506fdd2020-07-10 16:11:55 +0200550 int ret;
551
Maxim Levitsky954f4192021-02-17 16:57:13 +0200552 trace_kvm_nested_vmrun(svm->vmcb->save.rip, vmcb12_gpa,
553 vmcb12->save.rip,
554 vmcb12->control.int_ctl,
555 vmcb12->control.event_inj,
556 vmcb12->control.nested_ctl);
557
558 trace_kvm_nested_intercepts(vmcb12->control.intercepts[INTERCEPT_CR] & 0xffff,
559 vmcb12->control.intercepts[INTERCEPT_CR] >> 16,
560 vmcb12->control.intercepts[INTERCEPT_EXCEPTION],
561 vmcb12->control.intercepts[INTERCEPT_WORD3],
562 vmcb12->control.intercepts[INTERCEPT_WORD4],
563 vmcb12->control.intercepts[INTERCEPT_WORD5]);
564
565
Maxim Levitsky0dd16b52020-08-27 20:11:39 +0300566 svm->nested.vmcb12_gpa = vmcb12_gpa;
Cathy Avery4995a362021-01-13 07:07:52 -0500567
568 WARN_ON(svm->vmcb == svm->nested.vmcb02.ptr);
569
Babu Mogerd00b99c2021-02-17 10:56:04 -0500570 nested_svm_copy_common_state(svm->vmcb01.ptr, svm->nested.vmcb02.ptr);
Cathy Avery4995a362021-01-13 07:07:52 -0500571
572 svm_switch_vmcb(svm, &svm->nested.vmcb02);
Paolo Bonzini9e8f0fb2020-11-17 05:15:41 -0500573 nested_vmcb02_prepare_control(svm);
574 nested_vmcb02_prepare_save(svm, vmcb12);
Paolo Bonzinif241d712020-05-18 10:56:43 -0400575
Maxim Levitsky0dd16b52020-08-27 20:11:39 +0300576 ret = nested_svm_load_cr3(&svm->vcpu, vmcb12->save.cr3,
Maxim Levitskyb222b0b2021-06-07 12:01:59 +0300577 nested_npt_enabled(svm), true);
Vitaly Kuznetsova506fdd2020-07-10 16:11:55 +0200578 if (ret)
579 return ret;
580
Paolo Bonzinia04aead2021-02-18 07:16:59 -0500581 if (!npt_enabled)
Paolo Bonzini63129752021-03-02 14:40:39 -0500582 vcpu->arch.mmu->inject_page_fault = svm_inject_page_fault_nested;
Paolo Bonzinia04aead2021-02-18 07:16:59 -0500583
Paolo Bonziniffdf7f92020-05-22 12:18:27 -0400584 svm_set_gif(svm, true);
Vitaly Kuznetsov59cd9bc2020-07-10 16:11:52 +0200585
586 return 0;
Joerg Roedel883b0a92020-03-24 10:41:52 +0100587}
588
Paolo Bonzini63129752021-03-02 14:40:39 -0500589int nested_svm_vmrun(struct kvm_vcpu *vcpu)
Joerg Roedel883b0a92020-03-24 10:41:52 +0100590{
Paolo Bonzini63129752021-03-02 14:40:39 -0500591 struct vcpu_svm *svm = to_svm(vcpu);
Joerg Roedel883b0a92020-03-24 10:41:52 +0100592 int ret;
Maxim Levitsky0dd16b52020-08-27 20:11:39 +0300593 struct vmcb *vmcb12;
Joerg Roedel883b0a92020-03-24 10:41:52 +0100594 struct kvm_host_map map;
Maxim Levitsky0dd16b52020-08-27 20:11:39 +0300595 u64 vmcb12_gpa;
Joerg Roedel883b0a92020-03-24 10:41:52 +0100596
Paolo Bonzini63129752021-03-02 14:40:39 -0500597 if (is_smm(vcpu)) {
598 kvm_queue_exception(vcpu, UD_VECTOR);
Paolo Bonzini7c67f5462020-04-23 10:52:48 -0400599 return 1;
600 }
Joerg Roedel883b0a92020-03-24 10:41:52 +0100601
Maxim Levitsky0dd16b52020-08-27 20:11:39 +0300602 vmcb12_gpa = svm->vmcb->save.rax;
Paolo Bonzini63129752021-03-02 14:40:39 -0500603 ret = kvm_vcpu_map(vcpu, gpa_to_gfn(vmcb12_gpa), &map);
Joerg Roedel883b0a92020-03-24 10:41:52 +0100604 if (ret == -EINVAL) {
Paolo Bonzini63129752021-03-02 14:40:39 -0500605 kvm_inject_gp(vcpu, 0);
Joerg Roedel883b0a92020-03-24 10:41:52 +0100606 return 1;
607 } else if (ret) {
Paolo Bonzini63129752021-03-02 14:40:39 -0500608 return kvm_skip_emulated_instruction(vcpu);
Joerg Roedel883b0a92020-03-24 10:41:52 +0100609 }
610
Paolo Bonzini63129752021-03-02 14:40:39 -0500611 ret = kvm_skip_emulated_instruction(vcpu);
Joerg Roedel883b0a92020-03-24 10:41:52 +0100612
Maxim Levitsky0dd16b52020-08-27 20:11:39 +0300613 vmcb12 = map.hva;
Joerg Roedel883b0a92020-03-24 10:41:52 +0100614
Maxim Levitsky2fcf4872020-10-01 14:29:54 +0300615 if (WARN_ON_ONCE(!svm->nested.initialized))
616 return -EINVAL;
617
Paolo Bonzinicb9b6a12021-03-31 07:35:52 -0400618 nested_load_control_from_vmcb12(svm, &vmcb12->control);
619
620 if (!nested_vmcb_valid_sregs(vcpu, &vmcb12->save) ||
Krish Sadhukhanee695f22021-04-12 17:56:08 -0400621 !nested_vmcb_check_controls(vcpu, &svm->nested.ctl)) {
Maxim Levitsky0dd16b52020-08-27 20:11:39 +0300622 vmcb12->control.exit_code = SVM_EXIT_ERR;
623 vmcb12->control.exit_code_hi = 0;
624 vmcb12->control.exit_info_1 = 0;
625 vmcb12->control.exit_info_2 = 0;
Paolo Bonzini69c9dfa2020-05-13 12:57:26 -0400626 goto out;
Joerg Roedel883b0a92020-03-24 10:41:52 +0100627 }
628
Joerg Roedel883b0a92020-03-24 10:41:52 +0100629
630 /* Clear internal status */
Paolo Bonzini63129752021-03-02 14:40:39 -0500631 kvm_clear_exception_queue(vcpu);
632 kvm_clear_interrupt_queue(vcpu);
Joerg Roedel883b0a92020-03-24 10:41:52 +0100633
634 /*
Cathy Avery4995a362021-01-13 07:07:52 -0500635 * Since vmcb01 is not in use, we can use it to store some of the L1
636 * state.
Joerg Roedel883b0a92020-03-24 10:41:52 +0100637 */
Paolo Bonzini63129752021-03-02 14:40:39 -0500638 svm->vmcb01.ptr->save.efer = vcpu->arch.efer;
639 svm->vmcb01.ptr->save.cr0 = kvm_read_cr0(vcpu);
640 svm->vmcb01.ptr->save.cr4 = vcpu->arch.cr4;
641 svm->vmcb01.ptr->save.rflags = kvm_get_rflags(vcpu);
642 svm->vmcb01.ptr->save.rip = kvm_rip_read(vcpu);
Joerg Roedel883b0a92020-03-24 10:41:52 +0100643
Cathy Avery4995a362021-01-13 07:07:52 -0500644 if (!npt_enabled)
Paolo Bonzini63129752021-03-02 14:40:39 -0500645 svm->vmcb01.ptr->save.cr3 = kvm_read_cr3(vcpu);
Joerg Roedel883b0a92020-03-24 10:41:52 +0100646
Paolo Bonzinif74f9412020-04-23 13:22:27 -0400647 svm->nested.nested_run_pending = 1;
Joerg Roedel883b0a92020-03-24 10:41:52 +0100648
Paolo Bonzini63129752021-03-02 14:40:39 -0500649 if (enter_svm_guest_mode(vcpu, vmcb12_gpa, vmcb12))
Vitaly Kuznetsov59cd9bc2020-07-10 16:11:52 +0200650 goto out_exit_err;
Vitaly Kuznetsovebdb3db2020-07-10 16:11:51 +0200651
Vitaly Kuznetsov59cd9bc2020-07-10 16:11:52 +0200652 if (nested_svm_vmrun_msrpm(svm))
653 goto out;
Joerg Roedel883b0a92020-03-24 10:41:52 +0100654
Vitaly Kuznetsov59cd9bc2020-07-10 16:11:52 +0200655out_exit_err:
656 svm->nested.nested_run_pending = 0;
657
658 svm->vmcb->control.exit_code = SVM_EXIT_ERR;
659 svm->vmcb->control.exit_code_hi = 0;
660 svm->vmcb->control.exit_info_1 = 0;
661 svm->vmcb->control.exit_info_2 = 0;
662
663 nested_svm_vmexit(svm);
Joerg Roedel883b0a92020-03-24 10:41:52 +0100664
Paolo Bonzini69c9dfa2020-05-13 12:57:26 -0400665out:
Paolo Bonzini63129752021-03-02 14:40:39 -0500666 kvm_vcpu_unmap(vcpu, &map, true);
Paolo Bonzini69c9dfa2020-05-13 12:57:26 -0400667
Joerg Roedel883b0a92020-03-24 10:41:52 +0100668 return ret;
669}
670
671void nested_svm_vmloadsave(struct vmcb *from_vmcb, struct vmcb *to_vmcb)
672{
673 to_vmcb->save.fs = from_vmcb->save.fs;
674 to_vmcb->save.gs = from_vmcb->save.gs;
675 to_vmcb->save.tr = from_vmcb->save.tr;
676 to_vmcb->save.ldtr = from_vmcb->save.ldtr;
677 to_vmcb->save.kernel_gs_base = from_vmcb->save.kernel_gs_base;
678 to_vmcb->save.star = from_vmcb->save.star;
679 to_vmcb->save.lstar = from_vmcb->save.lstar;
680 to_vmcb->save.cstar = from_vmcb->save.cstar;
681 to_vmcb->save.sfmask = from_vmcb->save.sfmask;
682 to_vmcb->save.sysenter_cs = from_vmcb->save.sysenter_cs;
683 to_vmcb->save.sysenter_esp = from_vmcb->save.sysenter_esp;
684 to_vmcb->save.sysenter_eip = from_vmcb->save.sysenter_eip;
685}
686
687int nested_svm_vmexit(struct vcpu_svm *svm)
688{
Paolo Bonzini63129752021-03-02 14:40:39 -0500689 struct kvm_vcpu *vcpu = &svm->vcpu;
Maxim Levitsky0dd16b52020-08-27 20:11:39 +0300690 struct vmcb *vmcb12;
Joerg Roedel883b0a92020-03-24 10:41:52 +0100691 struct vmcb *vmcb = svm->vmcb;
692 struct kvm_host_map map;
Paolo Bonzini63129752021-03-02 14:40:39 -0500693 int rc;
Joerg Roedel883b0a92020-03-24 10:41:52 +0100694
Sean Christophersoncb6a32c2021-03-02 09:45:14 -0800695 /* Triple faults in L2 should never escape. */
696 WARN_ON_ONCE(kvm_check_request(KVM_REQ_TRIPLE_FAULT, vcpu));
697
Paolo Bonzini63129752021-03-02 14:40:39 -0500698 rc = kvm_vcpu_map(vcpu, gpa_to_gfn(svm->nested.vmcb12_gpa), &map);
Joerg Roedel883b0a92020-03-24 10:41:52 +0100699 if (rc) {
700 if (rc == -EINVAL)
Paolo Bonzini63129752021-03-02 14:40:39 -0500701 kvm_inject_gp(vcpu, 0);
Joerg Roedel883b0a92020-03-24 10:41:52 +0100702 return 1;
703 }
704
Maxim Levitsky0dd16b52020-08-27 20:11:39 +0300705 vmcb12 = map.hva;
Joerg Roedel883b0a92020-03-24 10:41:52 +0100706
707 /* Exit Guest-Mode */
Paolo Bonzini63129752021-03-02 14:40:39 -0500708 leave_guest_mode(vcpu);
Maxim Levitsky0dd16b52020-08-27 20:11:39 +0300709 svm->nested.vmcb12_gpa = 0;
Paolo Bonzini2d8a42b2020-05-22 03:50:14 -0400710 WARN_ON_ONCE(svm->nested.nested_run_pending);
Joerg Roedel883b0a92020-03-24 10:41:52 +0100711
Paolo Bonzini63129752021-03-02 14:40:39 -0500712 kvm_clear_request(KVM_REQ_GET_NESTED_STATE_PAGES, vcpu);
Maxim Levitskyf2c7ef32021-01-07 11:38:51 +0200713
Paolo Bonzini38c0b192020-04-23 13:13:09 -0400714 /* in case we halted in L2 */
715 svm->vcpu.arch.mp_state = KVM_MP_STATE_RUNNABLE;
716
Joerg Roedel883b0a92020-03-24 10:41:52 +0100717 /* Give the current vmcb to the guest */
Joerg Roedel883b0a92020-03-24 10:41:52 +0100718
Maxim Levitsky0dd16b52020-08-27 20:11:39 +0300719 vmcb12->save.es = vmcb->save.es;
720 vmcb12->save.cs = vmcb->save.cs;
721 vmcb12->save.ss = vmcb->save.ss;
722 vmcb12->save.ds = vmcb->save.ds;
723 vmcb12->save.gdtr = vmcb->save.gdtr;
724 vmcb12->save.idtr = vmcb->save.idtr;
725 vmcb12->save.efer = svm->vcpu.arch.efer;
Paolo Bonzini63129752021-03-02 14:40:39 -0500726 vmcb12->save.cr0 = kvm_read_cr0(vcpu);
727 vmcb12->save.cr3 = kvm_read_cr3(vcpu);
Maxim Levitsky0dd16b52020-08-27 20:11:39 +0300728 vmcb12->save.cr2 = vmcb->save.cr2;
729 vmcb12->save.cr4 = svm->vcpu.arch.cr4;
Paolo Bonzini63129752021-03-02 14:40:39 -0500730 vmcb12->save.rflags = kvm_get_rflags(vcpu);
731 vmcb12->save.rip = kvm_rip_read(vcpu);
732 vmcb12->save.rsp = kvm_rsp_read(vcpu);
733 vmcb12->save.rax = kvm_rax_read(vcpu);
Maxim Levitsky0dd16b52020-08-27 20:11:39 +0300734 vmcb12->save.dr7 = vmcb->save.dr7;
735 vmcb12->save.dr6 = svm->vcpu.arch.dr6;
736 vmcb12->save.cpl = vmcb->save.cpl;
Joerg Roedel883b0a92020-03-24 10:41:52 +0100737
Maxim Levitsky0dd16b52020-08-27 20:11:39 +0300738 vmcb12->control.int_state = vmcb->control.int_state;
739 vmcb12->control.exit_code = vmcb->control.exit_code;
740 vmcb12->control.exit_code_hi = vmcb->control.exit_code_hi;
741 vmcb12->control.exit_info_1 = vmcb->control.exit_info_1;
742 vmcb12->control.exit_info_2 = vmcb->control.exit_info_2;
Paolo Bonzini36e2e982020-05-22 06:04:57 -0400743
Maxim Levitsky0dd16b52020-08-27 20:11:39 +0300744 if (vmcb12->control.exit_code != SVM_EXIT_ERR)
Paolo Bonzini9e8f0fb2020-11-17 05:15:41 -0500745 nested_save_pending_event_to_vmcb12(svm, vmcb12);
Joerg Roedel883b0a92020-03-24 10:41:52 +0100746
747 if (svm->nrips_enabled)
Maxim Levitsky0dd16b52020-08-27 20:11:39 +0300748 vmcb12->control.next_rip = vmcb->control.next_rip;
Joerg Roedel883b0a92020-03-24 10:41:52 +0100749
Maxim Levitsky0dd16b52020-08-27 20:11:39 +0300750 vmcb12->control.int_ctl = svm->nested.ctl.int_ctl;
751 vmcb12->control.tlb_ctl = svm->nested.ctl.tlb_ctl;
752 vmcb12->control.event_inj = svm->nested.ctl.event_inj;
753 vmcb12->control.event_inj_err = svm->nested.ctl.event_inj_err;
Joerg Roedel883b0a92020-03-24 10:41:52 +0100754
Maxim Levitsky0dd16b52020-08-27 20:11:39 +0300755 vmcb12->control.pause_filter_count =
Joerg Roedel883b0a92020-03-24 10:41:52 +0100756 svm->vmcb->control.pause_filter_count;
Maxim Levitsky0dd16b52020-08-27 20:11:39 +0300757 vmcb12->control.pause_filter_thresh =
Joerg Roedel883b0a92020-03-24 10:41:52 +0100758 svm->vmcb->control.pause_filter_thresh;
759
Babu Mogerd00b99c2021-02-17 10:56:04 -0500760 nested_svm_copy_common_state(svm->nested.vmcb02.ptr, svm->vmcb01.ptr);
761
Cathy Avery4995a362021-01-13 07:07:52 -0500762 svm_switch_vmcb(svm, &svm->vmcb01);
763
764 /*
765 * On vmexit the GIF is set to false and
766 * no event can be injected in L1.
767 */
Maxim Levitsky98837642020-08-27 19:27:18 +0300768 svm_set_gif(svm, false);
Cathy Avery4995a362021-01-13 07:07:52 -0500769 svm->vmcb->control.exit_int_info = 0;
Maxim Levitsky98837642020-08-27 19:27:18 +0300770
Paolo Bonzini7ca62d12020-11-16 06:38:19 -0500771 svm->vcpu.arch.tsc_offset = svm->vcpu.arch.l1_tsc_offset;
772 if (svm->vmcb->control.tsc_offset != svm->vcpu.arch.tsc_offset) {
773 svm->vmcb->control.tsc_offset = svm->vcpu.arch.tsc_offset;
774 vmcb_mark_dirty(svm->vmcb, VMCB_INTERCEPTS);
775 }
Paolo Bonzini18fc6c52020-05-18 11:07:08 -0400776
Paolo Bonzinie670bf62020-05-13 13:16:12 -0400777 svm->nested.ctl.nested_cr3 = 0;
Joerg Roedel883b0a92020-03-24 10:41:52 +0100778
Cathy Avery4995a362021-01-13 07:07:52 -0500779 /*
780 * Restore processor state that had been saved in vmcb01
781 */
Paolo Bonzini63129752021-03-02 14:40:39 -0500782 kvm_set_rflags(vcpu, svm->vmcb->save.rflags);
783 svm_set_efer(vcpu, svm->vmcb->save.efer);
784 svm_set_cr0(vcpu, svm->vmcb->save.cr0 | X86_CR0_PE);
785 svm_set_cr4(vcpu, svm->vmcb->save.cr4);
786 kvm_rax_write(vcpu, svm->vmcb->save.rax);
787 kvm_rsp_write(vcpu, svm->vmcb->save.rsp);
788 kvm_rip_write(vcpu, svm->vmcb->save.rip);
Cathy Avery4995a362021-01-13 07:07:52 -0500789
790 svm->vcpu.arch.dr7 = DR7_FIXED_1;
791 kvm_update_dr7(&svm->vcpu);
Joerg Roedel883b0a92020-03-24 10:41:52 +0100792
Maxim Levitsky0dd16b52020-08-27 20:11:39 +0300793 trace_kvm_nested_vmexit_inject(vmcb12->control.exit_code,
794 vmcb12->control.exit_info_1,
795 vmcb12->control.exit_info_2,
796 vmcb12->control.exit_int_info,
797 vmcb12->control.exit_int_info_err,
Paolo Bonzini36e2e982020-05-22 06:04:57 -0400798 KVM_ISA_SVM);
799
Paolo Bonzini63129752021-03-02 14:40:39 -0500800 kvm_vcpu_unmap(vcpu, &map, true);
Joerg Roedel883b0a92020-03-24 10:41:52 +0100801
Paolo Bonzini63129752021-03-02 14:40:39 -0500802 nested_svm_uninit_mmu_context(vcpu);
Vitaly Kuznetsovbf7dea42020-07-10 16:11:54 +0200803
Maxim Levitskyb222b0b2021-06-07 12:01:59 +0300804 rc = nested_svm_load_cr3(vcpu, svm->vmcb->save.cr3, false, true);
Vitaly Kuznetsovd82aaef2020-07-10 16:11:56 +0200805 if (rc)
806 return 1;
Vitaly Kuznetsovbf7dea42020-07-10 16:11:54 +0200807
Joerg Roedel883b0a92020-03-24 10:41:52 +0100808 /*
809 * Drop what we picked up for L2 via svm_complete_interrupts() so it
810 * doesn't end up in L1.
811 */
812 svm->vcpu.arch.nmi_injected = false;
Paolo Bonzini63129752021-03-02 14:40:39 -0500813 kvm_clear_exception_queue(vcpu);
814 kvm_clear_interrupt_queue(vcpu);
Joerg Roedel883b0a92020-03-24 10:41:52 +0100815
Krish Sadhukhan9a7de6e2021-03-23 13:50:03 -0400816 /*
817 * If we are here following the completion of a VMRUN that
818 * is being single-stepped, queue the pending #DB intercept
819 * right now so that it an be accounted for before we execute
820 * L1's next instruction.
821 */
822 if (unlikely(svm->vmcb->save.rflags & X86_EFLAGS_TF))
823 kvm_queue_exception(&(svm->vcpu), DB_VECTOR);
824
Joerg Roedel883b0a92020-03-24 10:41:52 +0100825 return 0;
826}
827
Sean Christophersoncb6a32c2021-03-02 09:45:14 -0800828static void nested_svm_triple_fault(struct kvm_vcpu *vcpu)
829{
Sean Christopherson3a87c7e2021-03-02 09:45:15 -0800830 nested_svm_simple_vmexit(to_svm(vcpu), SVM_EXIT_SHUTDOWN);
Sean Christophersoncb6a32c2021-03-02 09:45:14 -0800831}
832
Maxim Levitsky2fcf4872020-10-01 14:29:54 +0300833int svm_allocate_nested(struct vcpu_svm *svm)
834{
Cathy Avery4995a362021-01-13 07:07:52 -0500835 struct page *vmcb02_page;
Maxim Levitsky2fcf4872020-10-01 14:29:54 +0300836
837 if (svm->nested.initialized)
838 return 0;
839
Cathy Avery4995a362021-01-13 07:07:52 -0500840 vmcb02_page = alloc_page(GFP_KERNEL_ACCOUNT | __GFP_ZERO);
841 if (!vmcb02_page)
Maxim Levitsky2fcf4872020-10-01 14:29:54 +0300842 return -ENOMEM;
Cathy Avery4995a362021-01-13 07:07:52 -0500843 svm->nested.vmcb02.ptr = page_address(vmcb02_page);
844 svm->nested.vmcb02.pa = __sme_set(page_to_pfn(vmcb02_page) << PAGE_SHIFT);
Maxim Levitsky2fcf4872020-10-01 14:29:54 +0300845
846 svm->nested.msrpm = svm_vcpu_alloc_msrpm();
847 if (!svm->nested.msrpm)
Cathy Avery4995a362021-01-13 07:07:52 -0500848 goto err_free_vmcb02;
Maxim Levitsky2fcf4872020-10-01 14:29:54 +0300849 svm_vcpu_init_msrpm(&svm->vcpu, svm->nested.msrpm);
850
851 svm->nested.initialized = true;
852 return 0;
853
Cathy Avery4995a362021-01-13 07:07:52 -0500854err_free_vmcb02:
855 __free_page(vmcb02_page);
Maxim Levitsky2fcf4872020-10-01 14:29:54 +0300856 return -ENOMEM;
857}
858
859void svm_free_nested(struct vcpu_svm *svm)
860{
861 if (!svm->nested.initialized)
862 return;
863
864 svm_vcpu_free_msrpm(svm->nested.msrpm);
865 svm->nested.msrpm = NULL;
866
Cathy Avery4995a362021-01-13 07:07:52 -0500867 __free_page(virt_to_page(svm->nested.vmcb02.ptr));
868 svm->nested.vmcb02.ptr = NULL;
Maxim Levitsky2fcf4872020-10-01 14:29:54 +0300869
Maxim Levitskyc74ad082021-05-03 15:54:43 +0300870 /*
871 * When last_vmcb12_gpa matches the current vmcb12 gpa,
872 * some vmcb12 fields are not loaded if they are marked clean
873 * in the vmcb12, since in this case they are up to date already.
874 *
875 * When the vmcb02 is freed, this optimization becomes invalid.
876 */
877 svm->nested.last_vmcb12_gpa = INVALID_GPA;
878
Maxim Levitsky2fcf4872020-10-01 14:29:54 +0300879 svm->nested.initialized = false;
880}
881
Paolo Bonzinic513f482020-05-18 13:08:37 -0400882/*
883 * Forcibly leave nested mode in order to be able to reset the VCPU later on.
884 */
885void svm_leave_nested(struct vcpu_svm *svm)
886{
Paolo Bonzini63129752021-03-02 14:40:39 -0500887 struct kvm_vcpu *vcpu = &svm->vcpu;
888
889 if (is_guest_mode(vcpu)) {
Paolo Bonzinic513f482020-05-18 13:08:37 -0400890 svm->nested.nested_run_pending = 0;
Maxim Levitskyc74ad082021-05-03 15:54:43 +0300891 svm->nested.vmcb12_gpa = INVALID_GPA;
892
Paolo Bonzini63129752021-03-02 14:40:39 -0500893 leave_guest_mode(vcpu);
Cathy Avery4995a362021-01-13 07:07:52 -0500894
Maxim Levitskydeee59b2021-05-03 15:54:42 +0300895 svm_switch_vmcb(svm, &svm->vmcb01);
Cathy Avery4995a362021-01-13 07:07:52 -0500896
Paolo Bonzini63129752021-03-02 14:40:39 -0500897 nested_svm_uninit_mmu_context(vcpu);
Maxim Levitsky56fe28d2021-01-07 11:38:54 +0200898 vmcb_mark_all_dirty(svm->vmcb);
Paolo Bonzinic513f482020-05-18 13:08:37 -0400899 }
Paolo Bonzinia7d5c7c2020-09-22 07:43:14 -0400900
Paolo Bonzini63129752021-03-02 14:40:39 -0500901 kvm_clear_request(KVM_REQ_GET_NESTED_STATE_PAGES, vcpu);
Paolo Bonzinic513f482020-05-18 13:08:37 -0400902}
903
Joerg Roedel883b0a92020-03-24 10:41:52 +0100904static int nested_svm_exit_handled_msr(struct vcpu_svm *svm)
905{
906 u32 offset, msr, value;
907 int write, mask;
908
Babu Mogerc62e2e92020-09-11 14:28:28 -0500909 if (!(vmcb_is_intercept(&svm->nested.ctl, INTERCEPT_MSR_PROT)))
Joerg Roedel883b0a92020-03-24 10:41:52 +0100910 return NESTED_EXIT_HOST;
911
912 msr = svm->vcpu.arch.regs[VCPU_REGS_RCX];
913 offset = svm_msrpm_offset(msr);
914 write = svm->vmcb->control.exit_info_1 & 1;
915 mask = 1 << ((2 * (msr & 0xf)) + write);
916
917 if (offset == MSR_INVALID)
918 return NESTED_EXIT_DONE;
919
920 /* Offset is in 32 bit units but need in 8 bit units */
921 offset *= 4;
922
Paolo Bonzinie670bf62020-05-13 13:16:12 -0400923 if (kvm_vcpu_read_guest(&svm->vcpu, svm->nested.ctl.msrpm_base_pa + offset, &value, 4))
Joerg Roedel883b0a92020-03-24 10:41:52 +0100924 return NESTED_EXIT_DONE;
925
926 return (value & mask) ? NESTED_EXIT_DONE : NESTED_EXIT_HOST;
927}
928
Joerg Roedel883b0a92020-03-24 10:41:52 +0100929static int nested_svm_intercept_ioio(struct vcpu_svm *svm)
930{
931 unsigned port, size, iopm_len;
932 u16 val, mask;
933 u8 start_bit;
934 u64 gpa;
935
Babu Mogerc62e2e92020-09-11 14:28:28 -0500936 if (!(vmcb_is_intercept(&svm->nested.ctl, INTERCEPT_IOIO_PROT)))
Joerg Roedel883b0a92020-03-24 10:41:52 +0100937 return NESTED_EXIT_HOST;
938
939 port = svm->vmcb->control.exit_info_1 >> 16;
940 size = (svm->vmcb->control.exit_info_1 & SVM_IOIO_SIZE_MASK) >>
941 SVM_IOIO_SIZE_SHIFT;
Paolo Bonzinie670bf62020-05-13 13:16:12 -0400942 gpa = svm->nested.ctl.iopm_base_pa + (port / 8);
Joerg Roedel883b0a92020-03-24 10:41:52 +0100943 start_bit = port % 8;
944 iopm_len = (start_bit + size > 8) ? 2 : 1;
945 mask = (0xf >> (4 - size)) << start_bit;
946 val = 0;
947
948 if (kvm_vcpu_read_guest(&svm->vcpu, gpa, &val, iopm_len))
949 return NESTED_EXIT_DONE;
950
951 return (val & mask) ? NESTED_EXIT_DONE : NESTED_EXIT_HOST;
952}
953
954static int nested_svm_intercept(struct vcpu_svm *svm)
955{
956 u32 exit_code = svm->vmcb->control.exit_code;
957 int vmexit = NESTED_EXIT_HOST;
958
959 switch (exit_code) {
960 case SVM_EXIT_MSR:
961 vmexit = nested_svm_exit_handled_msr(svm);
962 break;
963 case SVM_EXIT_IOIO:
964 vmexit = nested_svm_intercept_ioio(svm);
965 break;
966 case SVM_EXIT_READ_CR0 ... SVM_EXIT_WRITE_CR8: {
Babu Moger03bfeeb2020-09-11 14:28:05 -0500967 if (vmcb_is_intercept(&svm->nested.ctl, exit_code))
Joerg Roedel883b0a92020-03-24 10:41:52 +0100968 vmexit = NESTED_EXIT_DONE;
969 break;
970 }
971 case SVM_EXIT_READ_DR0 ... SVM_EXIT_WRITE_DR7: {
Babu Moger30abaa882020-09-11 14:28:12 -0500972 if (vmcb_is_intercept(&svm->nested.ctl, exit_code))
Joerg Roedel883b0a92020-03-24 10:41:52 +0100973 vmexit = NESTED_EXIT_DONE;
974 break;
975 }
976 case SVM_EXIT_EXCP_BASE ... SVM_EXIT_EXCP_BASE + 0x1f: {
Paolo Bonzini7c866632020-05-16 08:42:28 -0400977 /*
978 * Host-intercepted exceptions have been checked already in
979 * nested_svm_exit_special. There is nothing to do here,
980 * the vmexit is injected by svm_check_nested_events.
981 */
982 vmexit = NESTED_EXIT_DONE;
Joerg Roedel883b0a92020-03-24 10:41:52 +0100983 break;
984 }
985 case SVM_EXIT_ERR: {
986 vmexit = NESTED_EXIT_DONE;
987 break;
988 }
989 default: {
Babu Mogerc62e2e92020-09-11 14:28:28 -0500990 if (vmcb_is_intercept(&svm->nested.ctl, exit_code))
Joerg Roedel883b0a92020-03-24 10:41:52 +0100991 vmexit = NESTED_EXIT_DONE;
992 }
993 }
994
995 return vmexit;
996}
997
998int nested_svm_exit_handled(struct vcpu_svm *svm)
999{
1000 int vmexit;
1001
1002 vmexit = nested_svm_intercept(svm);
1003
1004 if (vmexit == NESTED_EXIT_DONE)
1005 nested_svm_vmexit(svm);
1006
1007 return vmexit;
1008}
1009
Paolo Bonzini63129752021-03-02 14:40:39 -05001010int nested_svm_check_permissions(struct kvm_vcpu *vcpu)
Joerg Roedel883b0a92020-03-24 10:41:52 +01001011{
Paolo Bonzini63129752021-03-02 14:40:39 -05001012 if (!(vcpu->arch.efer & EFER_SVME) || !is_paging(vcpu)) {
1013 kvm_queue_exception(vcpu, UD_VECTOR);
Joerg Roedel883b0a92020-03-24 10:41:52 +01001014 return 1;
1015 }
1016
Paolo Bonzini63129752021-03-02 14:40:39 -05001017 if (to_svm(vcpu)->vmcb->save.cpl) {
1018 kvm_inject_gp(vcpu, 0);
Joerg Roedel883b0a92020-03-24 10:41:52 +01001019 return 1;
1020 }
1021
1022 return 0;
1023}
1024
Paolo Bonzini7c866632020-05-16 08:42:28 -04001025static bool nested_exit_on_exception(struct vcpu_svm *svm)
Joerg Roedel883b0a92020-03-24 10:41:52 +01001026{
Paolo Bonzini7c866632020-05-16 08:42:28 -04001027 unsigned int nr = svm->vcpu.arch.exception.nr;
Joerg Roedel883b0a92020-03-24 10:41:52 +01001028
Babu Moger9780d512020-09-11 14:28:20 -05001029 return (svm->nested.ctl.intercepts[INTERCEPT_EXCEPTION] & BIT(nr));
Paolo Bonzini7c866632020-05-16 08:42:28 -04001030}
Joerg Roedel883b0a92020-03-24 10:41:52 +01001031
Paolo Bonzini7c866632020-05-16 08:42:28 -04001032static void nested_svm_inject_exception_vmexit(struct vcpu_svm *svm)
1033{
1034 unsigned int nr = svm->vcpu.arch.exception.nr;
Joerg Roedel883b0a92020-03-24 10:41:52 +01001035
1036 svm->vmcb->control.exit_code = SVM_EXIT_EXCP_BASE + nr;
1037 svm->vmcb->control.exit_code_hi = 0;
Paolo Bonzini7c866632020-05-16 08:42:28 -04001038
1039 if (svm->vcpu.arch.exception.has_error_code)
1040 svm->vmcb->control.exit_info_1 = svm->vcpu.arch.exception.error_code;
Joerg Roedel883b0a92020-03-24 10:41:52 +01001041
1042 /*
1043 * EXITINFO2 is undefined for all exception intercepts other
1044 * than #PF.
1045 */
Paolo Bonzini7c866632020-05-16 08:42:28 -04001046 if (nr == PF_VECTOR) {
1047 if (svm->vcpu.arch.exception.nested_apf)
1048 svm->vmcb->control.exit_info_2 = svm->vcpu.arch.apf.nested_apf_token;
1049 else if (svm->vcpu.arch.exception.has_payload)
1050 svm->vmcb->control.exit_info_2 = svm->vcpu.arch.exception.payload;
1051 else
1052 svm->vmcb->control.exit_info_2 = svm->vcpu.arch.cr2;
1053 } else if (nr == DB_VECTOR) {
1054 /* See inject_pending_event. */
1055 kvm_deliver_exception_payload(&svm->vcpu);
1056 if (svm->vcpu.arch.dr7 & DR7_GD) {
1057 svm->vcpu.arch.dr7 &= ~DR7_GD;
1058 kvm_update_dr7(&svm->vcpu);
1059 }
1060 } else
1061 WARN_ON(svm->vcpu.arch.exception.has_payload);
Joerg Roedel883b0a92020-03-24 10:41:52 +01001062
Paolo Bonzini7c866632020-05-16 08:42:28 -04001063 nested_svm_vmexit(svm);
Joerg Roedel883b0a92020-03-24 10:41:52 +01001064}
1065
Paolo Bonzini5b6724082020-05-16 08:50:35 -04001066static inline bool nested_exit_on_init(struct vcpu_svm *svm)
1067{
Babu Mogerc62e2e92020-09-11 14:28:28 -05001068 return vmcb_is_intercept(&svm->nested.ctl, INTERCEPT_INIT);
Paolo Bonzini5b6724082020-05-16 08:50:35 -04001069}
1070
Paolo Bonzini33b22172020-04-17 10:24:18 -04001071static int svm_check_nested_events(struct kvm_vcpu *vcpu)
Joerg Roedel883b0a92020-03-24 10:41:52 +01001072{
1073 struct vcpu_svm *svm = to_svm(vcpu);
1074 bool block_nested_events =
Paolo Bonzinibd279622020-05-16 08:46:00 -04001075 kvm_event_needs_reinjection(vcpu) || svm->nested.nested_run_pending;
Paolo Bonzini5b6724082020-05-16 08:50:35 -04001076 struct kvm_lapic *apic = vcpu->arch.apic;
1077
1078 if (lapic_in_kernel(vcpu) &&
1079 test_bit(KVM_APIC_INIT, &apic->pending_events)) {
1080 if (block_nested_events)
1081 return -EBUSY;
1082 if (!nested_exit_on_init(svm))
1083 return 0;
Sean Christopherson3a87c7e2021-03-02 09:45:15 -08001084 nested_svm_simple_vmexit(svm, SVM_EXIT_INIT);
Paolo Bonzini5b6724082020-05-16 08:50:35 -04001085 return 0;
1086 }
Joerg Roedel883b0a92020-03-24 10:41:52 +01001087
Paolo Bonzini7c866632020-05-16 08:42:28 -04001088 if (vcpu->arch.exception.pending) {
Maxim Levitsky4020da32021-04-01 17:38:14 +03001089 /*
1090 * Only a pending nested run can block a pending exception.
1091 * Otherwise an injected NMI/interrupt should either be
1092 * lost or delivered to the nested hypervisor in the EXITINTINFO
1093 * vmcb field, while delivering the pending exception.
1094 */
1095 if (svm->nested.nested_run_pending)
Paolo Bonzini7c866632020-05-16 08:42:28 -04001096 return -EBUSY;
1097 if (!nested_exit_on_exception(svm))
1098 return 0;
1099 nested_svm_inject_exception_vmexit(svm);
1100 return 0;
1101 }
1102
Paolo Bonzini221e7612020-04-23 08:13:10 -04001103 if (vcpu->arch.smi_pending && !svm_smi_blocked(vcpu)) {
Paolo Bonzini55714cd2020-04-23 08:17:28 -04001104 if (block_nested_events)
1105 return -EBUSY;
Paolo Bonzini221e7612020-04-23 08:13:10 -04001106 if (!nested_exit_on_smi(svm))
1107 return 0;
Sean Christopherson3a87c7e2021-03-02 09:45:15 -08001108 nested_svm_simple_vmexit(svm, SVM_EXIT_SMI);
Paolo Bonzini55714cd2020-04-23 08:17:28 -04001109 return 0;
1110 }
1111
Paolo Bonzini221e7612020-04-23 08:13:10 -04001112 if (vcpu->arch.nmi_pending && !svm_nmi_blocked(vcpu)) {
Cathy Avery9c3d3702020-04-14 16:11:06 -04001113 if (block_nested_events)
1114 return -EBUSY;
Paolo Bonzini221e7612020-04-23 08:13:10 -04001115 if (!nested_exit_on_nmi(svm))
1116 return 0;
Sean Christopherson3a87c7e2021-03-02 09:45:15 -08001117 nested_svm_simple_vmexit(svm, SVM_EXIT_NMI);
Cathy Avery9c3d3702020-04-14 16:11:06 -04001118 return 0;
1119 }
1120
Paolo Bonzini221e7612020-04-23 08:13:10 -04001121 if (kvm_cpu_has_interrupt(vcpu) && !svm_interrupt_blocked(vcpu)) {
Joerg Roedel883b0a92020-03-24 10:41:52 +01001122 if (block_nested_events)
1123 return -EBUSY;
Paolo Bonzini221e7612020-04-23 08:13:10 -04001124 if (!nested_exit_on_intr(svm))
1125 return 0;
Sean Christopherson3a87c7e2021-03-02 09:45:15 -08001126 trace_kvm_nested_intr_vmexit(svm->vmcb->save.rip);
1127 nested_svm_simple_vmexit(svm, SVM_EXIT_INTR);
Joerg Roedel883b0a92020-03-24 10:41:52 +01001128 return 0;
1129 }
1130
1131 return 0;
1132}
1133
1134int nested_svm_exit_special(struct vcpu_svm *svm)
1135{
1136 u32 exit_code = svm->vmcb->control.exit_code;
1137
1138 switch (exit_code) {
1139 case SVM_EXIT_INTR:
1140 case SVM_EXIT_NMI:
Joerg Roedel883b0a92020-03-24 10:41:52 +01001141 case SVM_EXIT_NPF:
Paolo Bonzini7c866632020-05-16 08:42:28 -04001142 return NESTED_EXIT_HOST;
1143 case SVM_EXIT_EXCP_BASE ... SVM_EXIT_EXCP_BASE + 0x1f: {
1144 u32 excp_bits = 1 << (exit_code - SVM_EXIT_EXCP_BASE);
1145
Cathy Avery4995a362021-01-13 07:07:52 -05001146 if (svm->vmcb01.ptr->control.intercepts[INTERCEPT_EXCEPTION] &
1147 excp_bits)
Paolo Bonzini7c866632020-05-16 08:42:28 -04001148 return NESTED_EXIT_HOST;
1149 else if (exit_code == SVM_EXIT_EXCP_BASE + PF_VECTOR &&
Vitaly Kuznetsov68fd66f2020-05-25 16:41:17 +02001150 svm->vcpu.arch.apf.host_apf_flags)
Paolo Bonzini7c866632020-05-16 08:42:28 -04001151 /* Trap async PF even if not shadowing */
Joerg Roedel883b0a92020-03-24 10:41:52 +01001152 return NESTED_EXIT_HOST;
1153 break;
Paolo Bonzini7c866632020-05-16 08:42:28 -04001154 }
Joerg Roedel883b0a92020-03-24 10:41:52 +01001155 default:
1156 break;
1157 }
1158
1159 return NESTED_EXIT_CONTINUE;
1160}
Paolo Bonzini33b22172020-04-17 10:24:18 -04001161
Paolo Bonzinicc440cd2020-05-13 13:36:32 -04001162static int svm_get_nested_state(struct kvm_vcpu *vcpu,
1163 struct kvm_nested_state __user *user_kvm_nested_state,
1164 u32 user_data_size)
1165{
1166 struct vcpu_svm *svm;
1167 struct kvm_nested_state kvm_state = {
1168 .flags = 0,
1169 .format = KVM_STATE_NESTED_FORMAT_SVM,
1170 .size = sizeof(kvm_state),
1171 };
1172 struct vmcb __user *user_vmcb = (struct vmcb __user *)
1173 &user_kvm_nested_state->data.svm[0];
1174
1175 if (!vcpu)
1176 return kvm_state.size + KVM_STATE_NESTED_SVM_VMCB_SIZE;
1177
1178 svm = to_svm(vcpu);
1179
1180 if (user_data_size < kvm_state.size)
1181 goto out;
1182
1183 /* First fill in the header and copy it out. */
1184 if (is_guest_mode(vcpu)) {
Maxim Levitsky0dd16b52020-08-27 20:11:39 +03001185 kvm_state.hdr.svm.vmcb_pa = svm->nested.vmcb12_gpa;
Paolo Bonzinicc440cd2020-05-13 13:36:32 -04001186 kvm_state.size += KVM_STATE_NESTED_SVM_VMCB_SIZE;
1187 kvm_state.flags |= KVM_STATE_NESTED_GUEST_MODE;
1188
1189 if (svm->nested.nested_run_pending)
1190 kvm_state.flags |= KVM_STATE_NESTED_RUN_PENDING;
1191 }
1192
1193 if (gif_set(svm))
1194 kvm_state.flags |= KVM_STATE_NESTED_GIF_SET;
1195
1196 if (copy_to_user(user_kvm_nested_state, &kvm_state, sizeof(kvm_state)))
1197 return -EFAULT;
1198
1199 if (!is_guest_mode(vcpu))
1200 goto out;
1201
1202 /*
1203 * Copy over the full size of the VMCB rather than just the size
1204 * of the structs.
1205 */
1206 if (clear_user(user_vmcb, KVM_STATE_NESTED_SVM_VMCB_SIZE))
1207 return -EFAULT;
1208 if (copy_to_user(&user_vmcb->control, &svm->nested.ctl,
1209 sizeof(user_vmcb->control)))
1210 return -EFAULT;
Cathy Avery4995a362021-01-13 07:07:52 -05001211 if (copy_to_user(&user_vmcb->save, &svm->vmcb01.ptr->save,
Paolo Bonzinicc440cd2020-05-13 13:36:32 -04001212 sizeof(user_vmcb->save)))
1213 return -EFAULT;
Paolo Bonzinicc440cd2020-05-13 13:36:32 -04001214out:
1215 return kvm_state.size;
1216}
1217
1218static int svm_set_nested_state(struct kvm_vcpu *vcpu,
1219 struct kvm_nested_state __user *user_kvm_nested_state,
1220 struct kvm_nested_state *kvm_state)
1221{
1222 struct vcpu_svm *svm = to_svm(vcpu);
Paolo Bonzinicc440cd2020-05-13 13:36:32 -04001223 struct vmcb __user *user_vmcb = (struct vmcb __user *)
1224 &user_kvm_nested_state->data.svm[0];
Joerg Roedel6ccbd292020-09-07 15:15:02 +02001225 struct vmcb_control_area *ctl;
1226 struct vmcb_save_area *save;
1227 int ret;
Paolo Bonzinicc440cd2020-05-13 13:36:32 -04001228 u32 cr0;
1229
Joerg Roedel6ccbd292020-09-07 15:15:02 +02001230 BUILD_BUG_ON(sizeof(struct vmcb_control_area) + sizeof(struct vmcb_save_area) >
1231 KVM_STATE_NESTED_SVM_VMCB_SIZE);
1232
Paolo Bonzinicc440cd2020-05-13 13:36:32 -04001233 if (kvm_state->format != KVM_STATE_NESTED_FORMAT_SVM)
1234 return -EINVAL;
1235
1236 if (kvm_state->flags & ~(KVM_STATE_NESTED_GUEST_MODE |
1237 KVM_STATE_NESTED_RUN_PENDING |
1238 KVM_STATE_NESTED_GIF_SET))
1239 return -EINVAL;
1240
1241 /*
1242 * If in guest mode, vcpu->arch.efer actually refers to the L2 guest's
1243 * EFER.SVME, but EFER.SVME still has to be 1 for VMRUN to succeed.
1244 */
1245 if (!(vcpu->arch.efer & EFER_SVME)) {
1246 /* GIF=1 and no guest mode are required if SVME=0. */
1247 if (kvm_state->flags != KVM_STATE_NESTED_GIF_SET)
1248 return -EINVAL;
1249 }
1250
1251 /* SMM temporarily disables SVM, so we cannot be in guest mode. */
1252 if (is_smm(vcpu) && (kvm_state->flags & KVM_STATE_NESTED_GUEST_MODE))
1253 return -EINVAL;
1254
1255 if (!(kvm_state->flags & KVM_STATE_NESTED_GUEST_MODE)) {
1256 svm_leave_nested(svm);
Vitaly Kuznetsovd5cd6f32020-09-14 15:37:25 +02001257 svm_set_gif(svm, !!(kvm_state->flags & KVM_STATE_NESTED_GIF_SET));
1258 return 0;
Paolo Bonzinicc440cd2020-05-13 13:36:32 -04001259 }
1260
1261 if (!page_address_valid(vcpu, kvm_state->hdr.svm.vmcb_pa))
1262 return -EINVAL;
1263 if (kvm_state->size < sizeof(*kvm_state) + KVM_STATE_NESTED_SVM_VMCB_SIZE)
1264 return -EINVAL;
Paolo Bonzinicc440cd2020-05-13 13:36:32 -04001265
Joerg Roedel6ccbd292020-09-07 15:15:02 +02001266 ret = -ENOMEM;
Sean Christophersoneba04b22021-03-30 19:30:25 -07001267 ctl = kzalloc(sizeof(*ctl), GFP_KERNEL_ACCOUNT);
1268 save = kzalloc(sizeof(*save), GFP_KERNEL_ACCOUNT);
Joerg Roedel6ccbd292020-09-07 15:15:02 +02001269 if (!ctl || !save)
1270 goto out_free;
1271
1272 ret = -EFAULT;
1273 if (copy_from_user(ctl, &user_vmcb->control, sizeof(*ctl)))
1274 goto out_free;
1275 if (copy_from_user(save, &user_vmcb->save, sizeof(*save)))
1276 goto out_free;
1277
1278 ret = -EINVAL;
Krish Sadhukhanee695f22021-04-12 17:56:08 -04001279 if (!nested_vmcb_check_controls(vcpu, ctl))
Joerg Roedel6ccbd292020-09-07 15:15:02 +02001280 goto out_free;
Paolo Bonzinicc440cd2020-05-13 13:36:32 -04001281
1282 /*
1283 * Processor state contains L2 state. Check that it is
Paolo Bonzinicb9b6a12021-03-31 07:35:52 -04001284 * valid for guest mode (see nested_vmcb_check_save).
Paolo Bonzinicc440cd2020-05-13 13:36:32 -04001285 */
1286 cr0 = kvm_read_cr0(vcpu);
1287 if (((cr0 & X86_CR0_CD) == 0) && (cr0 & X86_CR0_NW))
Joerg Roedel6ccbd292020-09-07 15:15:02 +02001288 goto out_free;
Paolo Bonzinicc440cd2020-05-13 13:36:32 -04001289
1290 /*
1291 * Validate host state saved from before VMRUN (see
1292 * nested_svm_check_permissions).
Paolo Bonzinicc440cd2020-05-13 13:36:32 -04001293 */
Krish Sadhukhan6906e062020-10-06 19:06:52 +00001294 if (!(save->cr0 & X86_CR0_PG) ||
1295 !(save->cr0 & X86_CR0_PE) ||
1296 (save->rflags & X86_EFLAGS_VM) ||
Paolo Bonzini63129752021-03-02 14:40:39 -05001297 !nested_vmcb_valid_sregs(vcpu, save))
Joerg Roedel6ccbd292020-09-07 15:15:02 +02001298 goto out_free;
Paolo Bonzinicc440cd2020-05-13 13:36:32 -04001299
1300 /*
Maxim Levitskyb222b0b2021-06-07 12:01:59 +03001301 * While the nested guest CR3 is already checked and set by
1302 * KVM_SET_SREGS, it was set when nested state was yet loaded,
1303 * thus MMU might not be initialized correctly.
1304 * Set it again to fix this.
1305 */
1306
1307 ret = nested_svm_load_cr3(&svm->vcpu, vcpu->arch.cr3,
1308 nested_npt_enabled(svm), false);
1309 if (WARN_ON_ONCE(ret))
1310 goto out_free;
1311
1312
1313 /*
Cathy Avery4995a362021-01-13 07:07:52 -05001314 * All checks done, we can enter guest mode. Userspace provides
1315 * vmcb12.control, which will be combined with L1 and stored into
1316 * vmcb02, and the L1 save state which we store in vmcb01.
1317 * L2 registers if needed are moved from the current VMCB to VMCB02.
Paolo Bonzinicc440cd2020-05-13 13:36:32 -04001318 */
Maxim Levitsky81f76ad2021-01-07 11:38:52 +02001319
Maxim Levitsky9d290e12021-05-03 15:54:44 +03001320 if (is_guest_mode(vcpu))
1321 svm_leave_nested(svm);
1322 else
1323 svm->nested.vmcb02.ptr->save = svm->vmcb01.ptr->save;
1324
Maxim Levitsky063ab162021-05-04 17:39:35 +03001325 svm_set_gif(svm, !!(kvm_state->flags & KVM_STATE_NESTED_GIF_SET));
1326
Maxim Levitsky81f76ad2021-01-07 11:38:52 +02001327 svm->nested.nested_run_pending =
1328 !!(kvm_state->flags & KVM_STATE_NESTED_RUN_PENDING);
1329
Maxim Levitsky0dd16b52020-08-27 20:11:39 +03001330 svm->nested.vmcb12_gpa = kvm_state->hdr.svm.vmcb_pa;
Paolo Bonzinic08f3902020-11-17 02:51:35 -05001331
1332 svm->vmcb01.ptr->save.es = save->es;
1333 svm->vmcb01.ptr->save.cs = save->cs;
1334 svm->vmcb01.ptr->save.ss = save->ss;
1335 svm->vmcb01.ptr->save.ds = save->ds;
1336 svm->vmcb01.ptr->save.gdtr = save->gdtr;
1337 svm->vmcb01.ptr->save.idtr = save->idtr;
1338 svm->vmcb01.ptr->save.rflags = save->rflags | X86_EFLAGS_FIXED;
1339 svm->vmcb01.ptr->save.efer = save->efer;
1340 svm->vmcb01.ptr->save.cr0 = save->cr0;
1341 svm->vmcb01.ptr->save.cr3 = save->cr3;
1342 svm->vmcb01.ptr->save.cr4 = save->cr4;
1343 svm->vmcb01.ptr->save.rax = save->rax;
1344 svm->vmcb01.ptr->save.rsp = save->rsp;
1345 svm->vmcb01.ptr->save.rip = save->rip;
1346 svm->vmcb01.ptr->save.cpl = 0;
1347
Paolo Bonzini9e8f0fb2020-11-17 05:15:41 -05001348 nested_load_control_from_vmcb12(svm, ctl);
Cathy Avery4995a362021-01-13 07:07:52 -05001349
1350 svm_switch_vmcb(svm, &svm->nested.vmcb02);
1351
Paolo Bonzini9e8f0fb2020-11-17 05:15:41 -05001352 nested_vmcb02_prepare_control(svm);
Paolo Bonzinicc440cd2020-05-13 13:36:32 -04001353
Paolo Bonzinia7d5c7c2020-09-22 07:43:14 -04001354 kvm_make_request(KVM_REQ_GET_NESTED_STATE_PAGES, vcpu);
Joerg Roedel6ccbd292020-09-07 15:15:02 +02001355 ret = 0;
1356out_free:
1357 kfree(save);
1358 kfree(ctl);
1359
1360 return ret;
Paolo Bonzinicc440cd2020-05-13 13:36:32 -04001361}
1362
Maxim Levitsky232f75d2021-04-01 17:18:10 +03001363static bool svm_get_nested_state_pages(struct kvm_vcpu *vcpu)
1364{
1365 struct vcpu_svm *svm = to_svm(vcpu);
1366
1367 if (WARN_ON(!is_guest_mode(vcpu)))
1368 return true;
1369
Maxim Levitsky158a48e2021-06-07 12:02:03 +03001370 if (!vcpu->arch.pdptrs_from_userspace &&
1371 !nested_npt_enabled(svm) && is_pae_paging(vcpu))
Maxim Levitskyb222b0b2021-06-07 12:01:59 +03001372 /*
1373 * Reload the guest's PDPTRs since after a migration
1374 * the guest CR3 might be restored prior to setting the nested
1375 * state which can lead to a load of wrong PDPTRs.
1376 */
1377 if (CC(!load_pdptrs(vcpu, vcpu->arch.walk_mmu, vcpu->arch.cr3)))
1378 return false;
Maxim Levitsky232f75d2021-04-01 17:18:10 +03001379
1380 if (!nested_svm_vmrun_msrpm(svm)) {
1381 vcpu->run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
1382 vcpu->run->internal.suberror =
1383 KVM_INTERNAL_ERROR_EMULATION;
1384 vcpu->run->internal.ndata = 0;
1385 return false;
1386 }
1387
1388 return true;
1389}
1390
Paolo Bonzini33b22172020-04-17 10:24:18 -04001391struct kvm_x86_nested_ops svm_nested_ops = {
1392 .check_events = svm_check_nested_events,
Sean Christophersoncb6a32c2021-03-02 09:45:14 -08001393 .triple_fault = nested_svm_triple_fault,
Paolo Bonzinia7d5c7c2020-09-22 07:43:14 -04001394 .get_nested_state_pages = svm_get_nested_state_pages,
Paolo Bonzinicc440cd2020-05-13 13:36:32 -04001395 .get_state = svm_get_nested_state,
1396 .set_state = svm_set_nested_state,
Paolo Bonzini33b22172020-04-17 10:24:18 -04001397};