blob: b516c24494e38a63f89e271cd4474ea33bbf5c3b [file] [log] [blame]
Sean Christopherson55d23752018-12-03 13:53:18 -08001// SPDX-License-Identifier: GPL-2.0
2
3#include <linux/frame.h>
4#include <linux/percpu.h>
5
6#include <asm/debugreg.h>
7#include <asm/mmu_context.h>
8
9#include "cpuid.h"
10#include "hyperv.h"
11#include "mmu.h"
12#include "nested.h"
Oliver Uptonbfc6ad62019-11-13 16:17:16 -080013#include "pmu.h"
Sean Christopherson55d23752018-12-03 13:53:18 -080014#include "trace.h"
15#include "x86.h"
16
17static bool __read_mostly enable_shadow_vmcs = 1;
18module_param_named(enable_shadow_vmcs, enable_shadow_vmcs, bool, S_IRUGO);
19
20static bool __read_mostly nested_early_check = 0;
21module_param(nested_early_check, bool, S_IRUGO);
22
Sean Christopherson5497b952019-07-11 08:58:29 -070023#define CC(consistency_check) \
24({ \
25 bool failed = (consistency_check); \
26 if (failed) \
Sean Christopherson380e0052019-07-11 08:58:30 -070027 trace_kvm_nested_vmenter_failed(#consistency_check, 0); \
Sean Christopherson5497b952019-07-11 08:58:29 -070028 failed; \
29})
30
Sean Christopherson55d23752018-12-03 13:53:18 -080031/*
32 * Hyper-V requires all of these, so mark them as supported even though
33 * they are just treated the same as all-context.
34 */
35#define VMX_VPID_EXTENT_SUPPORTED_MASK \
36 (VMX_VPID_EXTENT_INDIVIDUAL_ADDR_BIT | \
37 VMX_VPID_EXTENT_SINGLE_CONTEXT_BIT | \
38 VMX_VPID_EXTENT_GLOBAL_CONTEXT_BIT | \
39 VMX_VPID_EXTENT_SINGLE_NON_GLOBAL_BIT)
40
41#define VMX_MISC_EMULATED_PREEMPTION_TIMER_RATE 5
42
43enum {
44 VMX_VMREAD_BITMAP,
45 VMX_VMWRITE_BITMAP,
46 VMX_BITMAP_NR
47};
48static unsigned long *vmx_bitmap[VMX_BITMAP_NR];
49
50#define vmx_vmread_bitmap (vmx_bitmap[VMX_VMREAD_BITMAP])
51#define vmx_vmwrite_bitmap (vmx_bitmap[VMX_VMWRITE_BITMAP])
52
Sean Christopherson1c6f0b42019-05-07 08:36:25 -070053struct shadow_vmcs_field {
54 u16 encoding;
55 u16 offset;
56};
57static struct shadow_vmcs_field shadow_read_only_fields[] = {
58#define SHADOW_FIELD_RO(x, y) { x, offsetof(struct vmcs12, y) },
Sean Christopherson55d23752018-12-03 13:53:18 -080059#include "vmcs_shadow_fields.h"
60};
61static int max_shadow_read_only_fields =
62 ARRAY_SIZE(shadow_read_only_fields);
63
Sean Christopherson1c6f0b42019-05-07 08:36:25 -070064static struct shadow_vmcs_field shadow_read_write_fields[] = {
65#define SHADOW_FIELD_RW(x, y) { x, offsetof(struct vmcs12, y) },
Sean Christopherson55d23752018-12-03 13:53:18 -080066#include "vmcs_shadow_fields.h"
67};
68static int max_shadow_read_write_fields =
69 ARRAY_SIZE(shadow_read_write_fields);
70
Yi Wang8997f652019-01-21 15:27:05 +080071static void init_vmcs_shadow_fields(void)
Sean Christopherson55d23752018-12-03 13:53:18 -080072{
73 int i, j;
74
75 memset(vmx_vmread_bitmap, 0xff, PAGE_SIZE);
76 memset(vmx_vmwrite_bitmap, 0xff, PAGE_SIZE);
77
78 for (i = j = 0; i < max_shadow_read_only_fields; i++) {
Sean Christopherson1c6f0b42019-05-07 08:36:25 -070079 struct shadow_vmcs_field entry = shadow_read_only_fields[i];
80 u16 field = entry.encoding;
Sean Christopherson55d23752018-12-03 13:53:18 -080081
82 if (vmcs_field_width(field) == VMCS_FIELD_WIDTH_U64 &&
83 (i + 1 == max_shadow_read_only_fields ||
Sean Christopherson1c6f0b42019-05-07 08:36:25 -070084 shadow_read_only_fields[i + 1].encoding != field + 1))
Sean Christopherson55d23752018-12-03 13:53:18 -080085 pr_err("Missing field from shadow_read_only_field %x\n",
86 field + 1);
87
88 clear_bit(field, vmx_vmread_bitmap);
Sean Christopherson55d23752018-12-03 13:53:18 -080089 if (field & 1)
Sean Christopherson1c6f0b42019-05-07 08:36:25 -070090#ifdef CONFIG_X86_64
Sean Christopherson55d23752018-12-03 13:53:18 -080091 continue;
Sean Christopherson1c6f0b42019-05-07 08:36:25 -070092#else
93 entry.offset += sizeof(u32);
Sean Christopherson55d23752018-12-03 13:53:18 -080094#endif
Sean Christopherson1c6f0b42019-05-07 08:36:25 -070095 shadow_read_only_fields[j++] = entry;
Sean Christopherson55d23752018-12-03 13:53:18 -080096 }
97 max_shadow_read_only_fields = j;
98
99 for (i = j = 0; i < max_shadow_read_write_fields; i++) {
Sean Christopherson1c6f0b42019-05-07 08:36:25 -0700100 struct shadow_vmcs_field entry = shadow_read_write_fields[i];
101 u16 field = entry.encoding;
Sean Christopherson55d23752018-12-03 13:53:18 -0800102
103 if (vmcs_field_width(field) == VMCS_FIELD_WIDTH_U64 &&
104 (i + 1 == max_shadow_read_write_fields ||
Sean Christopherson1c6f0b42019-05-07 08:36:25 -0700105 shadow_read_write_fields[i + 1].encoding != field + 1))
Sean Christopherson55d23752018-12-03 13:53:18 -0800106 pr_err("Missing field from shadow_read_write_field %x\n",
107 field + 1);
108
Sean Christophersonb6437802019-05-07 08:36:24 -0700109 WARN_ONCE(field >= GUEST_ES_AR_BYTES &&
110 field <= GUEST_TR_AR_BYTES,
Sean Christopherson1c6f0b42019-05-07 08:36:25 -0700111 "Update vmcs12_write_any() to drop reserved bits from AR_BYTES");
Sean Christophersonb6437802019-05-07 08:36:24 -0700112
Sean Christopherson55d23752018-12-03 13:53:18 -0800113 /*
114 * PML and the preemption timer can be emulated, but the
115 * processor cannot vmwrite to fields that don't exist
116 * on bare metal.
117 */
118 switch (field) {
119 case GUEST_PML_INDEX:
120 if (!cpu_has_vmx_pml())
121 continue;
122 break;
123 case VMX_PREEMPTION_TIMER_VALUE:
124 if (!cpu_has_vmx_preemption_timer())
125 continue;
126 break;
127 case GUEST_INTR_STATUS:
128 if (!cpu_has_vmx_apicv())
129 continue;
130 break;
131 default:
132 break;
133 }
134
135 clear_bit(field, vmx_vmwrite_bitmap);
136 clear_bit(field, vmx_vmread_bitmap);
Sean Christopherson55d23752018-12-03 13:53:18 -0800137 if (field & 1)
Sean Christopherson1c6f0b42019-05-07 08:36:25 -0700138#ifdef CONFIG_X86_64
Sean Christopherson55d23752018-12-03 13:53:18 -0800139 continue;
Sean Christopherson1c6f0b42019-05-07 08:36:25 -0700140#else
141 entry.offset += sizeof(u32);
Sean Christopherson55d23752018-12-03 13:53:18 -0800142#endif
Sean Christopherson1c6f0b42019-05-07 08:36:25 -0700143 shadow_read_write_fields[j++] = entry;
Sean Christopherson55d23752018-12-03 13:53:18 -0800144 }
145 max_shadow_read_write_fields = j;
146}
147
148/*
149 * The following 3 functions, nested_vmx_succeed()/failValid()/failInvalid(),
150 * set the success or error code of an emulated VMX instruction (as specified
151 * by Vol 2B, VMX Instruction Reference, "Conventions"), and skip the emulated
152 * instruction.
153 */
154static int nested_vmx_succeed(struct kvm_vcpu *vcpu)
155{
156 vmx_set_rflags(vcpu, vmx_get_rflags(vcpu)
157 & ~(X86_EFLAGS_CF | X86_EFLAGS_PF | X86_EFLAGS_AF |
158 X86_EFLAGS_ZF | X86_EFLAGS_SF | X86_EFLAGS_OF));
159 return kvm_skip_emulated_instruction(vcpu);
160}
161
162static int nested_vmx_failInvalid(struct kvm_vcpu *vcpu)
163{
164 vmx_set_rflags(vcpu, (vmx_get_rflags(vcpu)
165 & ~(X86_EFLAGS_PF | X86_EFLAGS_AF | X86_EFLAGS_ZF |
166 X86_EFLAGS_SF | X86_EFLAGS_OF))
167 | X86_EFLAGS_CF);
168 return kvm_skip_emulated_instruction(vcpu);
169}
170
171static int nested_vmx_failValid(struct kvm_vcpu *vcpu,
172 u32 vm_instruction_error)
173{
174 struct vcpu_vmx *vmx = to_vmx(vcpu);
175
176 /*
177 * failValid writes the error number to the current VMCS, which
178 * can't be done if there isn't a current VMCS.
179 */
180 if (vmx->nested.current_vmptr == -1ull && !vmx->nested.hv_evmcs)
181 return nested_vmx_failInvalid(vcpu);
182
183 vmx_set_rflags(vcpu, (vmx_get_rflags(vcpu)
184 & ~(X86_EFLAGS_CF | X86_EFLAGS_PF | X86_EFLAGS_AF |
185 X86_EFLAGS_SF | X86_EFLAGS_OF))
186 | X86_EFLAGS_ZF);
187 get_vmcs12(vcpu)->vm_instruction_error = vm_instruction_error;
188 /*
189 * We don't need to force a shadow sync because
190 * VM_INSTRUCTION_ERROR is not shadowed
191 */
192 return kvm_skip_emulated_instruction(vcpu);
193}
194
195static void nested_vmx_abort(struct kvm_vcpu *vcpu, u32 indicator)
196{
197 /* TODO: not to reset guest simply here. */
198 kvm_make_request(KVM_REQ_TRIPLE_FAULT, vcpu);
199 pr_debug_ratelimited("kvm: nested vmx abort, indicator %d\n", indicator);
200}
201
Marc Orrf0b51052019-09-17 11:50:57 -0700202static inline bool vmx_control_verify(u32 control, u32 low, u32 high)
203{
204 return fixed_bits_valid(control, low, high);
205}
206
207static inline u64 vmx_control_msr(u32 low, u32 high)
208{
209 return low | ((u64)high << 32);
210}
211
Sean Christopherson55d23752018-12-03 13:53:18 -0800212static void vmx_disable_shadow_vmcs(struct vcpu_vmx *vmx)
213{
Sean Christophersonfe7f895d2019-05-07 12:17:57 -0700214 secondary_exec_controls_clearbit(vmx, SECONDARY_EXEC_SHADOW_VMCS);
Sean Christopherson55d23752018-12-03 13:53:18 -0800215 vmcs_write64(VMCS_LINK_POINTER, -1ull);
Paolo Bonzini88dddc12019-07-19 18:41:10 +0200216 vmx->nested.need_vmcs12_to_shadow_sync = false;
Sean Christopherson55d23752018-12-03 13:53:18 -0800217}
218
219static inline void nested_release_evmcs(struct kvm_vcpu *vcpu)
220{
221 struct vcpu_vmx *vmx = to_vmx(vcpu);
222
223 if (!vmx->nested.hv_evmcs)
224 return;
225
KarimAllah Ahmeddee9c042019-01-31 21:24:42 +0100226 kvm_vcpu_unmap(vcpu, &vmx->nested.hv_evmcs_map, true);
Vitaly Kuznetsov95fa1012020-03-09 16:52:11 +0100227 vmx->nested.hv_evmcs_vmptr = 0;
Sean Christopherson55d23752018-12-03 13:53:18 -0800228 vmx->nested.hv_evmcs = NULL;
229}
230
231/*
232 * Free whatever needs to be freed from vmx->nested when L1 goes down, or
233 * just stops using VMX.
234 */
235static void free_nested(struct kvm_vcpu *vcpu)
236{
237 struct vcpu_vmx *vmx = to_vmx(vcpu);
238
239 if (!vmx->nested.vmxon && !vmx->nested.smm.vmxon)
240 return;
241
Jan Kiszkacf645272019-07-21 13:52:18 +0200242 kvm_clear_request(KVM_REQ_GET_VMCS12_PAGES, vcpu);
243
Sean Christopherson55d23752018-12-03 13:53:18 -0800244 vmx->nested.vmxon = false;
245 vmx->nested.smm.vmxon = false;
246 free_vpid(vmx->nested.vpid02);
247 vmx->nested.posted_intr_nv = -1;
248 vmx->nested.current_vmptr = -1ull;
249 if (enable_shadow_vmcs) {
250 vmx_disable_shadow_vmcs(vmx);
251 vmcs_clear(vmx->vmcs01.shadow_vmcs);
252 free_vmcs(vmx->vmcs01.shadow_vmcs);
253 vmx->vmcs01.shadow_vmcs = NULL;
254 }
255 kfree(vmx->nested.cached_vmcs12);
Jan Kiszkac6bf2ae2019-07-21 16:01:36 +0200256 vmx->nested.cached_vmcs12 = NULL;
Sean Christopherson55d23752018-12-03 13:53:18 -0800257 kfree(vmx->nested.cached_shadow_vmcs12);
Jan Kiszkac6bf2ae2019-07-21 16:01:36 +0200258 vmx->nested.cached_shadow_vmcs12 = NULL;
Sean Christopherson55d23752018-12-03 13:53:18 -0800259 /* Unpin physical memory we referred to in the vmcs02 */
260 if (vmx->nested.apic_access_page) {
Liran Alonb11494b2019-11-21 00:31:47 +0200261 kvm_release_page_clean(vmx->nested.apic_access_page);
Sean Christopherson55d23752018-12-03 13:53:18 -0800262 vmx->nested.apic_access_page = NULL;
263 }
KarimAllah Ahmed96c66e82019-01-31 21:24:37 +0100264 kvm_vcpu_unmap(vcpu, &vmx->nested.virtual_apic_map, true);
KarimAllah Ahmed3278e042019-01-31 21:24:38 +0100265 kvm_vcpu_unmap(vcpu, &vmx->nested.pi_desc_map, true);
266 vmx->nested.pi_desc = NULL;
Sean Christopherson55d23752018-12-03 13:53:18 -0800267
268 kvm_mmu_free_roots(vcpu, &vcpu->arch.guest_mmu, KVM_MMU_ROOTS_ALL);
269
270 nested_release_evmcs(vcpu);
271
272 free_loaded_vmcs(&vmx->nested.vmcs02);
273}
274
Sean Christopherson13b964a2019-05-07 09:06:31 -0700275static void vmx_sync_vmcs_host_state(struct vcpu_vmx *vmx,
276 struct loaded_vmcs *prev)
277{
278 struct vmcs_host_state *dest, *src;
279
280 if (unlikely(!vmx->guest_state_loaded))
281 return;
282
283 src = &prev->host_state;
284 dest = &vmx->loaded_vmcs->host_state;
285
286 vmx_set_host_fs_gs(dest, src->fs_sel, src->gs_sel, src->fs_base, src->gs_base);
287 dest->ldt_sel = src->ldt_sel;
288#ifdef CONFIG_X86_64
289 dest->ds_sel = src->ds_sel;
290 dest->es_sel = src->es_sel;
291#endif
292}
293
Sean Christopherson55d23752018-12-03 13:53:18 -0800294static void vmx_switch_vmcs(struct kvm_vcpu *vcpu, struct loaded_vmcs *vmcs)
295{
296 struct vcpu_vmx *vmx = to_vmx(vcpu);
Sean Christopherson13b964a2019-05-07 09:06:31 -0700297 struct loaded_vmcs *prev;
Sean Christopherson55d23752018-12-03 13:53:18 -0800298 int cpu;
299
300 if (vmx->loaded_vmcs == vmcs)
301 return;
302
303 cpu = get_cpu();
Sean Christopherson13b964a2019-05-07 09:06:31 -0700304 prev = vmx->loaded_vmcs;
Sean Christopherson55d23752018-12-03 13:53:18 -0800305 vmx->loaded_vmcs = vmcs;
Sean Christopherson8ef863e2019-05-07 09:06:32 -0700306 vmx_vcpu_load_vmcs(vcpu, cpu);
Sean Christopherson13b964a2019-05-07 09:06:31 -0700307 vmx_sync_vmcs_host_state(vmx, prev);
Sean Christopherson55d23752018-12-03 13:53:18 -0800308 put_cpu();
309
Sean Christophersone5d03de2020-04-15 13:34:51 -0700310 vmx_register_cache_reset(vcpu);
Sean Christopherson55d23752018-12-03 13:53:18 -0800311}
312
313/*
314 * Ensure that the current vmcs of the logical processor is the
315 * vmcs01 of the vcpu before calling free_nested().
316 */
317void nested_vmx_free_vcpu(struct kvm_vcpu *vcpu)
318{
319 vcpu_load(vcpu);
Paolo Bonzinib4b65b52019-01-29 19:12:35 +0100320 vmx_leave_nested(vcpu);
Sean Christopherson55d23752018-12-03 13:53:18 -0800321 vmx_switch_vmcs(vcpu, &to_vmx(vcpu)->vmcs01);
322 free_nested(vcpu);
323 vcpu_put(vcpu);
324}
325
326static void nested_ept_inject_page_fault(struct kvm_vcpu *vcpu,
327 struct x86_exception *fault)
328{
329 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
330 struct vcpu_vmx *vmx = to_vmx(vcpu);
Sean Christopherson4dcefa32020-04-15 10:55:18 -0700331 u32 vm_exit_reason;
Sean Christopherson55d23752018-12-03 13:53:18 -0800332 unsigned long exit_qualification = vcpu->arch.exit_qualification;
333
334 if (vmx->nested.pml_full) {
Sean Christopherson4dcefa32020-04-15 10:55:18 -0700335 vm_exit_reason = EXIT_REASON_PML_FULL;
Sean Christopherson55d23752018-12-03 13:53:18 -0800336 vmx->nested.pml_full = false;
337 exit_qualification &= INTR_INFO_UNBLOCK_NMI;
338 } else if (fault->error_code & PFERR_RSVD_MASK)
Sean Christopherson4dcefa32020-04-15 10:55:18 -0700339 vm_exit_reason = EXIT_REASON_EPT_MISCONFIG;
Sean Christopherson55d23752018-12-03 13:53:18 -0800340 else
Sean Christopherson4dcefa32020-04-15 10:55:18 -0700341 vm_exit_reason = EXIT_REASON_EPT_VIOLATION;
Sean Christopherson55d23752018-12-03 13:53:18 -0800342
Sean Christopherson4dcefa32020-04-15 10:55:18 -0700343 nested_vmx_vmexit(vcpu, vm_exit_reason, 0, exit_qualification);
Sean Christopherson55d23752018-12-03 13:53:18 -0800344 vmcs12->guest_physical_address = fault->address;
345}
346
347static void nested_ept_init_mmu_context(struct kvm_vcpu *vcpu)
348{
349 WARN_ON(mmu_is_nested(vcpu));
350
351 vcpu->arch.mmu = &vcpu->arch.guest_mmu;
352 kvm_init_shadow_ept_mmu(vcpu,
353 to_vmx(vcpu)->nested.msrs.ept_caps &
354 VMX_EPT_EXECUTE_ONLY_BIT,
355 nested_ept_ad_enabled(vcpu),
Sean Christophersonac69dfa2020-03-02 18:02:37 -0800356 nested_ept_get_eptp(vcpu));
Sean Christophersond8dd54e2020-03-02 18:02:39 -0800357 vcpu->arch.mmu->get_guest_pgd = nested_ept_get_eptp;
Sean Christopherson55d23752018-12-03 13:53:18 -0800358 vcpu->arch.mmu->inject_page_fault = nested_ept_inject_page_fault;
359 vcpu->arch.mmu->get_pdptr = kvm_pdptr_read;
360
361 vcpu->arch.walk_mmu = &vcpu->arch.nested_mmu;
362}
363
364static void nested_ept_uninit_mmu_context(struct kvm_vcpu *vcpu)
365{
366 vcpu->arch.mmu = &vcpu->arch.root_mmu;
367 vcpu->arch.walk_mmu = &vcpu->arch.root_mmu;
368}
369
370static bool nested_vmx_is_page_fault_vmexit(struct vmcs12 *vmcs12,
371 u16 error_code)
372{
373 bool inequality, bit;
374
375 bit = (vmcs12->exception_bitmap & (1u << PF_VECTOR)) != 0;
376 inequality =
377 (error_code & vmcs12->page_fault_error_code_mask) !=
378 vmcs12->page_fault_error_code_match;
379 return inequality ^ bit;
380}
381
382
383/*
384 * KVM wants to inject page-faults which it got to the guest. This function
385 * checks whether in a nested guest, we need to inject them to L1 or L2.
386 */
387static int nested_vmx_check_exception(struct kvm_vcpu *vcpu, unsigned long *exit_qual)
388{
389 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
390 unsigned int nr = vcpu->arch.exception.nr;
391 bool has_payload = vcpu->arch.exception.has_payload;
392 unsigned long payload = vcpu->arch.exception.payload;
393
394 if (nr == PF_VECTOR) {
395 if (vcpu->arch.exception.nested_apf) {
396 *exit_qual = vcpu->arch.apf.nested_apf_token;
397 return 1;
398 }
399 if (nested_vmx_is_page_fault_vmexit(vmcs12,
400 vcpu->arch.exception.error_code)) {
401 *exit_qual = has_payload ? payload : vcpu->arch.cr2;
402 return 1;
403 }
404 } else if (vmcs12->exception_bitmap & (1u << nr)) {
405 if (nr == DB_VECTOR) {
406 if (!has_payload) {
407 payload = vcpu->arch.dr6;
408 payload &= ~(DR6_FIXED_1 | DR6_BT);
409 payload ^= DR6_RTM;
410 }
411 *exit_qual = payload;
412 } else
413 *exit_qual = 0;
414 return 1;
415 }
416
417 return 0;
418}
419
420
421static void vmx_inject_page_fault_nested(struct kvm_vcpu *vcpu,
422 struct x86_exception *fault)
423{
424 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
425
426 WARN_ON(!is_guest_mode(vcpu));
427
428 if (nested_vmx_is_page_fault_vmexit(vmcs12, fault->error_code) &&
429 !to_vmx(vcpu)->nested.nested_run_pending) {
430 vmcs12->vm_exit_intr_error_code = fault->error_code;
431 nested_vmx_vmexit(vcpu, EXIT_REASON_EXCEPTION_NMI,
432 PF_VECTOR | INTR_TYPE_HARD_EXCEPTION |
433 INTR_INFO_DELIVER_CODE_MASK | INTR_INFO_VALID_MASK,
434 fault->address);
435 } else {
436 kvm_inject_page_fault(vcpu, fault);
437 }
438}
439
440static bool page_address_valid(struct kvm_vcpu *vcpu, gpa_t gpa)
441{
442 return PAGE_ALIGNED(gpa) && !(gpa >> cpuid_maxphyaddr(vcpu));
443}
444
445static int nested_vmx_check_io_bitmap_controls(struct kvm_vcpu *vcpu,
446 struct vmcs12 *vmcs12)
447{
448 if (!nested_cpu_has(vmcs12, CPU_BASED_USE_IO_BITMAPS))
449 return 0;
450
Sean Christopherson5497b952019-07-11 08:58:29 -0700451 if (CC(!page_address_valid(vcpu, vmcs12->io_bitmap_a)) ||
452 CC(!page_address_valid(vcpu, vmcs12->io_bitmap_b)))
Sean Christopherson55d23752018-12-03 13:53:18 -0800453 return -EINVAL;
454
455 return 0;
456}
457
458static int nested_vmx_check_msr_bitmap_controls(struct kvm_vcpu *vcpu,
459 struct vmcs12 *vmcs12)
460{
461 if (!nested_cpu_has(vmcs12, CPU_BASED_USE_MSR_BITMAPS))
462 return 0;
463
Sean Christopherson5497b952019-07-11 08:58:29 -0700464 if (CC(!page_address_valid(vcpu, vmcs12->msr_bitmap)))
Sean Christopherson55d23752018-12-03 13:53:18 -0800465 return -EINVAL;
466
467 return 0;
468}
469
470static int nested_vmx_check_tpr_shadow_controls(struct kvm_vcpu *vcpu,
471 struct vmcs12 *vmcs12)
472{
473 if (!nested_cpu_has(vmcs12, CPU_BASED_TPR_SHADOW))
474 return 0;
475
Sean Christopherson5497b952019-07-11 08:58:29 -0700476 if (CC(!page_address_valid(vcpu, vmcs12->virtual_apic_page_addr)))
Sean Christopherson55d23752018-12-03 13:53:18 -0800477 return -EINVAL;
478
479 return 0;
480}
481
482/*
483 * Check if MSR is intercepted for L01 MSR bitmap.
484 */
485static bool msr_write_intercepted_l01(struct kvm_vcpu *vcpu, u32 msr)
486{
487 unsigned long *msr_bitmap;
488 int f = sizeof(unsigned long);
489
490 if (!cpu_has_vmx_msr_bitmap())
491 return true;
492
493 msr_bitmap = to_vmx(vcpu)->vmcs01.msr_bitmap;
494
495 if (msr <= 0x1fff) {
496 return !!test_bit(msr, msr_bitmap + 0x800 / f);
497 } else if ((msr >= 0xc0000000) && (msr <= 0xc0001fff)) {
498 msr &= 0x1fff;
499 return !!test_bit(msr, msr_bitmap + 0xc00 / f);
500 }
501
502 return true;
503}
504
505/*
506 * If a msr is allowed by L0, we should check whether it is allowed by L1.
507 * The corresponding bit will be cleared unless both of L0 and L1 allow it.
508 */
509static void nested_vmx_disable_intercept_for_msr(unsigned long *msr_bitmap_l1,
510 unsigned long *msr_bitmap_nested,
511 u32 msr, int type)
512{
513 int f = sizeof(unsigned long);
514
515 /*
516 * See Intel PRM Vol. 3, 20.6.9 (MSR-Bitmap Address). Early manuals
517 * have the write-low and read-high bitmap offsets the wrong way round.
518 * We can control MSRs 0x00000000-0x00001fff and 0xc0000000-0xc0001fff.
519 */
520 if (msr <= 0x1fff) {
521 if (type & MSR_TYPE_R &&
522 !test_bit(msr, msr_bitmap_l1 + 0x000 / f))
523 /* read-low */
524 __clear_bit(msr, msr_bitmap_nested + 0x000 / f);
525
526 if (type & MSR_TYPE_W &&
527 !test_bit(msr, msr_bitmap_l1 + 0x800 / f))
528 /* write-low */
529 __clear_bit(msr, msr_bitmap_nested + 0x800 / f);
530
531 } else if ((msr >= 0xc0000000) && (msr <= 0xc0001fff)) {
532 msr &= 0x1fff;
533 if (type & MSR_TYPE_R &&
534 !test_bit(msr, msr_bitmap_l1 + 0x400 / f))
535 /* read-high */
536 __clear_bit(msr, msr_bitmap_nested + 0x400 / f);
537
538 if (type & MSR_TYPE_W &&
539 !test_bit(msr, msr_bitmap_l1 + 0xc00 / f))
540 /* write-high */
541 __clear_bit(msr, msr_bitmap_nested + 0xc00 / f);
542
543 }
544}
545
Miaohe Linffdbd502020-02-07 23:22:45 +0800546static inline void enable_x2apic_msr_intercepts(unsigned long *msr_bitmap)
547{
Marc Orracff7842019-04-01 23:55:59 -0700548 int msr;
549
550 for (msr = 0x800; msr <= 0x8ff; msr += BITS_PER_LONG) {
551 unsigned word = msr / BITS_PER_LONG;
552
553 msr_bitmap[word] = ~0;
554 msr_bitmap[word + (0x800 / sizeof(long))] = ~0;
555 }
556}
557
Sean Christopherson55d23752018-12-03 13:53:18 -0800558/*
559 * Merge L0's and L1's MSR bitmap, return false to indicate that
560 * we do not use the hardware.
561 */
562static inline bool nested_vmx_prepare_msr_bitmap(struct kvm_vcpu *vcpu,
563 struct vmcs12 *vmcs12)
564{
565 int msr;
Sean Christopherson55d23752018-12-03 13:53:18 -0800566 unsigned long *msr_bitmap_l1;
567 unsigned long *msr_bitmap_l0 = to_vmx(vcpu)->nested.vmcs02.msr_bitmap;
KarimAllah Ahmed31f0b6c2019-01-31 21:24:36 +0100568 struct kvm_host_map *map = &to_vmx(vcpu)->nested.msr_bitmap_map;
Sean Christopherson55d23752018-12-03 13:53:18 -0800569
570 /* Nothing to do if the MSR bitmap is not in use. */
571 if (!cpu_has_vmx_msr_bitmap() ||
572 !nested_cpu_has(vmcs12, CPU_BASED_USE_MSR_BITMAPS))
573 return false;
574
KarimAllah Ahmed31f0b6c2019-01-31 21:24:36 +0100575 if (kvm_vcpu_map(vcpu, gpa_to_gfn(vmcs12->msr_bitmap), map))
Sean Christopherson55d23752018-12-03 13:53:18 -0800576 return false;
577
KarimAllah Ahmed31f0b6c2019-01-31 21:24:36 +0100578 msr_bitmap_l1 = (unsigned long *)map->hva;
Sean Christopherson55d23752018-12-03 13:53:18 -0800579
Marc Orracff7842019-04-01 23:55:59 -0700580 /*
581 * To keep the control flow simple, pay eight 8-byte writes (sixteen
582 * 4-byte writes on 32-bit systems) up front to enable intercepts for
583 * the x2APIC MSR range and selectively disable them below.
584 */
585 enable_x2apic_msr_intercepts(msr_bitmap_l0);
Sean Christopherson55d23752018-12-03 13:53:18 -0800586
Marc Orracff7842019-04-01 23:55:59 -0700587 if (nested_cpu_has_virt_x2apic_mode(vmcs12)) {
588 if (nested_cpu_has_apic_reg_virt(vmcs12)) {
589 /*
590 * L0 need not intercept reads for MSRs between 0x800
591 * and 0x8ff, it just lets the processor take the value
592 * from the virtual-APIC page; take those 256 bits
593 * directly from the L1 bitmap.
594 */
595 for (msr = 0x800; msr <= 0x8ff; msr += BITS_PER_LONG) {
596 unsigned word = msr / BITS_PER_LONG;
597
598 msr_bitmap_l0[word] = msr_bitmap_l1[word];
599 }
600 }
601
Sean Christopherson55d23752018-12-03 13:53:18 -0800602 nested_vmx_disable_intercept_for_msr(
603 msr_bitmap_l1, msr_bitmap_l0,
Marc Orracff7842019-04-01 23:55:59 -0700604 X2APIC_MSR(APIC_TASKPRI),
Marc Orrc73f4c92019-04-01 23:56:00 -0700605 MSR_TYPE_R | MSR_TYPE_W);
Marc Orracff7842019-04-01 23:55:59 -0700606
607 if (nested_cpu_has_vid(vmcs12)) {
608 nested_vmx_disable_intercept_for_msr(
609 msr_bitmap_l1, msr_bitmap_l0,
610 X2APIC_MSR(APIC_EOI),
611 MSR_TYPE_W);
612 nested_vmx_disable_intercept_for_msr(
613 msr_bitmap_l1, msr_bitmap_l0,
614 X2APIC_MSR(APIC_SELF_IPI),
615 MSR_TYPE_W);
616 }
Sean Christopherson55d23752018-12-03 13:53:18 -0800617 }
618
Sean Christophersond69129b2019-05-08 07:32:15 -0700619 /* KVM unconditionally exposes the FS/GS base MSRs to L1. */
620 nested_vmx_disable_intercept_for_msr(msr_bitmap_l1, msr_bitmap_l0,
621 MSR_FS_BASE, MSR_TYPE_RW);
622
623 nested_vmx_disable_intercept_for_msr(msr_bitmap_l1, msr_bitmap_l0,
624 MSR_GS_BASE, MSR_TYPE_RW);
625
626 nested_vmx_disable_intercept_for_msr(msr_bitmap_l1, msr_bitmap_l0,
627 MSR_KERNEL_GS_BASE, MSR_TYPE_RW);
628
629 /*
630 * Checking the L0->L1 bitmap is trying to verify two things:
631 *
632 * 1. L0 gave a permission to L1 to actually passthrough the MSR. This
633 * ensures that we do not accidentally generate an L02 MSR bitmap
634 * from the L12 MSR bitmap that is too permissive.
635 * 2. That L1 or L2s have actually used the MSR. This avoids
636 * unnecessarily merging of the bitmap if the MSR is unused. This
637 * works properly because we only update the L01 MSR bitmap lazily.
638 * So even if L0 should pass L1 these MSRs, the L01 bitmap is only
639 * updated to reflect this when L1 (or its L2s) actually write to
640 * the MSR.
641 */
642 if (!msr_write_intercepted_l01(vcpu, MSR_IA32_SPEC_CTRL))
Sean Christopherson55d23752018-12-03 13:53:18 -0800643 nested_vmx_disable_intercept_for_msr(
644 msr_bitmap_l1, msr_bitmap_l0,
645 MSR_IA32_SPEC_CTRL,
646 MSR_TYPE_R | MSR_TYPE_W);
647
Sean Christophersond69129b2019-05-08 07:32:15 -0700648 if (!msr_write_intercepted_l01(vcpu, MSR_IA32_PRED_CMD))
Sean Christopherson55d23752018-12-03 13:53:18 -0800649 nested_vmx_disable_intercept_for_msr(
650 msr_bitmap_l1, msr_bitmap_l0,
651 MSR_IA32_PRED_CMD,
652 MSR_TYPE_W);
653
KarimAllah Ahmed31f0b6c2019-01-31 21:24:36 +0100654 kvm_vcpu_unmap(vcpu, &to_vmx(vcpu)->nested.msr_bitmap_map, false);
Sean Christopherson55d23752018-12-03 13:53:18 -0800655
656 return true;
657}
658
659static void nested_cache_shadow_vmcs12(struct kvm_vcpu *vcpu,
660 struct vmcs12 *vmcs12)
661{
KarimAllah Ahmed88925302019-01-31 21:24:41 +0100662 struct kvm_host_map map;
Sean Christopherson55d23752018-12-03 13:53:18 -0800663 struct vmcs12 *shadow;
Sean Christopherson55d23752018-12-03 13:53:18 -0800664
665 if (!nested_cpu_has_shadow_vmcs(vmcs12) ||
666 vmcs12->vmcs_link_pointer == -1ull)
667 return;
668
669 shadow = get_shadow_vmcs12(vcpu);
Sean Christopherson55d23752018-12-03 13:53:18 -0800670
KarimAllah Ahmed88925302019-01-31 21:24:41 +0100671 if (kvm_vcpu_map(vcpu, gpa_to_gfn(vmcs12->vmcs_link_pointer), &map))
672 return;
Sean Christopherson55d23752018-12-03 13:53:18 -0800673
KarimAllah Ahmed88925302019-01-31 21:24:41 +0100674 memcpy(shadow, map.hva, VMCS12_SIZE);
675 kvm_vcpu_unmap(vcpu, &map, false);
Sean Christopherson55d23752018-12-03 13:53:18 -0800676}
677
678static void nested_flush_cached_shadow_vmcs12(struct kvm_vcpu *vcpu,
679 struct vmcs12 *vmcs12)
680{
681 struct vcpu_vmx *vmx = to_vmx(vcpu);
682
683 if (!nested_cpu_has_shadow_vmcs(vmcs12) ||
684 vmcs12->vmcs_link_pointer == -1ull)
685 return;
686
687 kvm_write_guest(vmx->vcpu.kvm, vmcs12->vmcs_link_pointer,
688 get_shadow_vmcs12(vcpu), VMCS12_SIZE);
689}
690
691/*
692 * In nested virtualization, check if L1 has set
693 * VM_EXIT_ACK_INTR_ON_EXIT
694 */
695static bool nested_exit_intr_ack_set(struct kvm_vcpu *vcpu)
696{
697 return get_vmcs12(vcpu)->vm_exit_controls &
698 VM_EXIT_ACK_INTR_ON_EXIT;
699}
700
701static bool nested_exit_on_nmi(struct kvm_vcpu *vcpu)
702{
703 return nested_cpu_has_nmi_exiting(get_vmcs12(vcpu));
704}
705
706static int nested_vmx_check_apic_access_controls(struct kvm_vcpu *vcpu,
707 struct vmcs12 *vmcs12)
708{
709 if (nested_cpu_has2(vmcs12, SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES) &&
Sean Christopherson5497b952019-07-11 08:58:29 -0700710 CC(!page_address_valid(vcpu, vmcs12->apic_access_addr)))
Sean Christopherson55d23752018-12-03 13:53:18 -0800711 return -EINVAL;
712 else
713 return 0;
714}
715
716static int nested_vmx_check_apicv_controls(struct kvm_vcpu *vcpu,
717 struct vmcs12 *vmcs12)
718{
719 if (!nested_cpu_has_virt_x2apic_mode(vmcs12) &&
720 !nested_cpu_has_apic_reg_virt(vmcs12) &&
721 !nested_cpu_has_vid(vmcs12) &&
722 !nested_cpu_has_posted_intr(vmcs12))
723 return 0;
724
725 /*
726 * If virtualize x2apic mode is enabled,
727 * virtualize apic access must be disabled.
728 */
Sean Christopherson5497b952019-07-11 08:58:29 -0700729 if (CC(nested_cpu_has_virt_x2apic_mode(vmcs12) &&
730 nested_cpu_has2(vmcs12, SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES)))
Sean Christopherson55d23752018-12-03 13:53:18 -0800731 return -EINVAL;
732
733 /*
734 * If virtual interrupt delivery is enabled,
735 * we must exit on external interrupts.
736 */
Sean Christopherson5497b952019-07-11 08:58:29 -0700737 if (CC(nested_cpu_has_vid(vmcs12) && !nested_exit_on_intr(vcpu)))
Sean Christopherson55d23752018-12-03 13:53:18 -0800738 return -EINVAL;
739
740 /*
741 * bits 15:8 should be zero in posted_intr_nv,
742 * the descriptor address has been already checked
743 * in nested_get_vmcs12_pages.
744 *
745 * bits 5:0 of posted_intr_desc_addr should be zero.
746 */
747 if (nested_cpu_has_posted_intr(vmcs12) &&
Sean Christopherson5497b952019-07-11 08:58:29 -0700748 (CC(!nested_cpu_has_vid(vmcs12)) ||
749 CC(!nested_exit_intr_ack_set(vcpu)) ||
750 CC((vmcs12->posted_intr_nv & 0xff00)) ||
751 CC((vmcs12->posted_intr_desc_addr & 0x3f)) ||
752 CC((vmcs12->posted_intr_desc_addr >> cpuid_maxphyaddr(vcpu)))))
Sean Christopherson55d23752018-12-03 13:53:18 -0800753 return -EINVAL;
754
755 /* tpr shadow is needed by all apicv features. */
Sean Christopherson5497b952019-07-11 08:58:29 -0700756 if (CC(!nested_cpu_has(vmcs12, CPU_BASED_TPR_SHADOW)))
Sean Christopherson55d23752018-12-03 13:53:18 -0800757 return -EINVAL;
758
759 return 0;
760}
761
762static int nested_vmx_check_msr_switch(struct kvm_vcpu *vcpu,
Sean Christophersonf9b245e2018-12-12 13:30:08 -0500763 u32 count, u64 addr)
Sean Christopherson55d23752018-12-03 13:53:18 -0800764{
Sean Christopherson55d23752018-12-03 13:53:18 -0800765 int maxphyaddr;
Sean Christopherson55d23752018-12-03 13:53:18 -0800766
Sean Christopherson55d23752018-12-03 13:53:18 -0800767 if (count == 0)
768 return 0;
769 maxphyaddr = cpuid_maxphyaddr(vcpu);
770 if (!IS_ALIGNED(addr, 16) || addr >> maxphyaddr ||
Sean Christophersonf9b245e2018-12-12 13:30:08 -0500771 (addr + count * sizeof(struct vmx_msr_entry) - 1) >> maxphyaddr)
Sean Christopherson55d23752018-12-03 13:53:18 -0800772 return -EINVAL;
Sean Christophersonf9b245e2018-12-12 13:30:08 -0500773
Sean Christopherson55d23752018-12-03 13:53:18 -0800774 return 0;
775}
776
Krish Sadhukhan61446ba2018-12-12 13:30:09 -0500777static int nested_vmx_check_exit_msr_switch_controls(struct kvm_vcpu *vcpu,
778 struct vmcs12 *vmcs12)
Sean Christopherson55d23752018-12-03 13:53:18 -0800779{
Sean Christopherson5497b952019-07-11 08:58:29 -0700780 if (CC(nested_vmx_check_msr_switch(vcpu,
781 vmcs12->vm_exit_msr_load_count,
782 vmcs12->vm_exit_msr_load_addr)) ||
783 CC(nested_vmx_check_msr_switch(vcpu,
784 vmcs12->vm_exit_msr_store_count,
785 vmcs12->vm_exit_msr_store_addr)))
Sean Christopherson55d23752018-12-03 13:53:18 -0800786 return -EINVAL;
Sean Christophersonf9b245e2018-12-12 13:30:08 -0500787
Sean Christopherson55d23752018-12-03 13:53:18 -0800788 return 0;
789}
790
Krish Sadhukhan5fbf9632018-12-12 13:30:10 -0500791static int nested_vmx_check_entry_msr_switch_controls(struct kvm_vcpu *vcpu,
792 struct vmcs12 *vmcs12)
Krish Sadhukhan61446ba2018-12-12 13:30:09 -0500793{
Sean Christopherson5497b952019-07-11 08:58:29 -0700794 if (CC(nested_vmx_check_msr_switch(vcpu,
795 vmcs12->vm_entry_msr_load_count,
796 vmcs12->vm_entry_msr_load_addr)))
Krish Sadhukhan61446ba2018-12-12 13:30:09 -0500797 return -EINVAL;
798
799 return 0;
800}
801
Sean Christopherson55d23752018-12-03 13:53:18 -0800802static int nested_vmx_check_pml_controls(struct kvm_vcpu *vcpu,
803 struct vmcs12 *vmcs12)
804{
805 if (!nested_cpu_has_pml(vmcs12))
806 return 0;
807
Sean Christopherson5497b952019-07-11 08:58:29 -0700808 if (CC(!nested_cpu_has_ept(vmcs12)) ||
809 CC(!page_address_valid(vcpu, vmcs12->pml_address)))
Sean Christopherson55d23752018-12-03 13:53:18 -0800810 return -EINVAL;
811
812 return 0;
813}
814
815static int nested_vmx_check_unrestricted_guest_controls(struct kvm_vcpu *vcpu,
816 struct vmcs12 *vmcs12)
817{
Sean Christopherson5497b952019-07-11 08:58:29 -0700818 if (CC(nested_cpu_has2(vmcs12, SECONDARY_EXEC_UNRESTRICTED_GUEST) &&
819 !nested_cpu_has_ept(vmcs12)))
Sean Christopherson55d23752018-12-03 13:53:18 -0800820 return -EINVAL;
821 return 0;
822}
823
824static int nested_vmx_check_mode_based_ept_exec_controls(struct kvm_vcpu *vcpu,
825 struct vmcs12 *vmcs12)
826{
Sean Christopherson5497b952019-07-11 08:58:29 -0700827 if (CC(nested_cpu_has2(vmcs12, SECONDARY_EXEC_MODE_BASED_EPT_EXEC) &&
828 !nested_cpu_has_ept(vmcs12)))
Sean Christopherson55d23752018-12-03 13:53:18 -0800829 return -EINVAL;
830 return 0;
831}
832
833static int nested_vmx_check_shadow_vmcs_controls(struct kvm_vcpu *vcpu,
834 struct vmcs12 *vmcs12)
835{
836 if (!nested_cpu_has_shadow_vmcs(vmcs12))
837 return 0;
838
Sean Christopherson5497b952019-07-11 08:58:29 -0700839 if (CC(!page_address_valid(vcpu, vmcs12->vmread_bitmap)) ||
840 CC(!page_address_valid(vcpu, vmcs12->vmwrite_bitmap)))
Sean Christopherson55d23752018-12-03 13:53:18 -0800841 return -EINVAL;
842
843 return 0;
844}
845
846static int nested_vmx_msr_check_common(struct kvm_vcpu *vcpu,
847 struct vmx_msr_entry *e)
848{
849 /* x2APIC MSR accesses are not allowed */
Sean Christopherson5497b952019-07-11 08:58:29 -0700850 if (CC(vcpu->arch.apic_base & X2APIC_ENABLE && e->index >> 8 == 0x8))
Sean Christopherson55d23752018-12-03 13:53:18 -0800851 return -EINVAL;
Sean Christopherson5497b952019-07-11 08:58:29 -0700852 if (CC(e->index == MSR_IA32_UCODE_WRITE) || /* SDM Table 35-2 */
853 CC(e->index == MSR_IA32_UCODE_REV))
Sean Christopherson55d23752018-12-03 13:53:18 -0800854 return -EINVAL;
Sean Christopherson5497b952019-07-11 08:58:29 -0700855 if (CC(e->reserved != 0))
Sean Christopherson55d23752018-12-03 13:53:18 -0800856 return -EINVAL;
857 return 0;
858}
859
860static int nested_vmx_load_msr_check(struct kvm_vcpu *vcpu,
861 struct vmx_msr_entry *e)
862{
Sean Christopherson5497b952019-07-11 08:58:29 -0700863 if (CC(e->index == MSR_FS_BASE) ||
864 CC(e->index == MSR_GS_BASE) ||
865 CC(e->index == MSR_IA32_SMM_MONITOR_CTL) || /* SMM is not supported */
Sean Christopherson55d23752018-12-03 13:53:18 -0800866 nested_vmx_msr_check_common(vcpu, e))
867 return -EINVAL;
868 return 0;
869}
870
871static int nested_vmx_store_msr_check(struct kvm_vcpu *vcpu,
872 struct vmx_msr_entry *e)
873{
Sean Christopherson5497b952019-07-11 08:58:29 -0700874 if (CC(e->index == MSR_IA32_SMBASE) || /* SMM is not supported */
Sean Christopherson55d23752018-12-03 13:53:18 -0800875 nested_vmx_msr_check_common(vcpu, e))
876 return -EINVAL;
877 return 0;
878}
879
Marc Orrf0b51052019-09-17 11:50:57 -0700880static u32 nested_vmx_max_atomic_switch_msrs(struct kvm_vcpu *vcpu)
881{
882 struct vcpu_vmx *vmx = to_vmx(vcpu);
883 u64 vmx_misc = vmx_control_msr(vmx->nested.msrs.misc_low,
884 vmx->nested.msrs.misc_high);
885
886 return (vmx_misc_max_msr(vmx_misc) + 1) * VMX_MISC_MSR_LIST_MULTIPLIER;
887}
888
Sean Christopherson55d23752018-12-03 13:53:18 -0800889/*
890 * Load guest's/host's msr at nested entry/exit.
891 * return 0 for success, entry index for failure.
Marc Orrf0b51052019-09-17 11:50:57 -0700892 *
893 * One of the failure modes for MSR load/store is when a list exceeds the
894 * virtual hardware's capacity. To maintain compatibility with hardware inasmuch
895 * as possible, process all valid entries before failing rather than precheck
896 * for a capacity violation.
Sean Christopherson55d23752018-12-03 13:53:18 -0800897 */
898static u32 nested_vmx_load_msr(struct kvm_vcpu *vcpu, u64 gpa, u32 count)
899{
900 u32 i;
901 struct vmx_msr_entry e;
Marc Orrf0b51052019-09-17 11:50:57 -0700902 u32 max_msr_list_size = nested_vmx_max_atomic_switch_msrs(vcpu);
Sean Christopherson55d23752018-12-03 13:53:18 -0800903
Sean Christopherson55d23752018-12-03 13:53:18 -0800904 for (i = 0; i < count; i++) {
Marc Orrf0b51052019-09-17 11:50:57 -0700905 if (unlikely(i >= max_msr_list_size))
906 goto fail;
907
Sean Christopherson55d23752018-12-03 13:53:18 -0800908 if (kvm_vcpu_read_guest(vcpu, gpa + i * sizeof(e),
909 &e, sizeof(e))) {
910 pr_debug_ratelimited(
911 "%s cannot read MSR entry (%u, 0x%08llx)\n",
912 __func__, i, gpa + i * sizeof(e));
913 goto fail;
914 }
915 if (nested_vmx_load_msr_check(vcpu, &e)) {
916 pr_debug_ratelimited(
917 "%s check failed (%u, 0x%x, 0x%x)\n",
918 __func__, i, e.index, e.reserved);
919 goto fail;
920 }
Sean Christophersonf20935d2019-09-05 14:22:54 -0700921 if (kvm_set_msr(vcpu, e.index, e.value)) {
Sean Christopherson55d23752018-12-03 13:53:18 -0800922 pr_debug_ratelimited(
923 "%s cannot write MSR (%u, 0x%x, 0x%llx)\n",
924 __func__, i, e.index, e.value);
925 goto fail;
926 }
927 }
928 return 0;
929fail:
930 return i + 1;
931}
932
Aaron Lewis662f1d12019-11-07 21:14:39 -0800933static bool nested_vmx_get_vmexit_msr_value(struct kvm_vcpu *vcpu,
934 u32 msr_index,
935 u64 *data)
936{
937 struct vcpu_vmx *vmx = to_vmx(vcpu);
938
939 /*
940 * If the L0 hypervisor stored a more accurate value for the TSC that
941 * does not include the time taken for emulation of the L2->L1
942 * VM-exit in L0, use the more accurate value.
943 */
944 if (msr_index == MSR_IA32_TSC) {
945 int index = vmx_find_msr_index(&vmx->msr_autostore.guest,
946 MSR_IA32_TSC);
947
948 if (index >= 0) {
949 u64 val = vmx->msr_autostore.guest.val[index].value;
950
951 *data = kvm_read_l1_tsc(vcpu, val);
952 return true;
953 }
954 }
955
956 if (kvm_get_msr(vcpu, msr_index, data)) {
957 pr_debug_ratelimited("%s cannot read MSR (0x%x)\n", __func__,
958 msr_index);
959 return false;
960 }
961 return true;
962}
963
Aaron Lewis365d3d52019-11-07 21:14:36 -0800964static bool read_and_check_msr_entry(struct kvm_vcpu *vcpu, u64 gpa, int i,
965 struct vmx_msr_entry *e)
966{
967 if (kvm_vcpu_read_guest(vcpu,
968 gpa + i * sizeof(*e),
969 e, 2 * sizeof(u32))) {
970 pr_debug_ratelimited(
971 "%s cannot read MSR entry (%u, 0x%08llx)\n",
972 __func__, i, gpa + i * sizeof(*e));
973 return false;
974 }
975 if (nested_vmx_store_msr_check(vcpu, e)) {
976 pr_debug_ratelimited(
977 "%s check failed (%u, 0x%x, 0x%x)\n",
978 __func__, i, e->index, e->reserved);
979 return false;
980 }
981 return true;
982}
983
Sean Christopherson55d23752018-12-03 13:53:18 -0800984static int nested_vmx_store_msr(struct kvm_vcpu *vcpu, u64 gpa, u32 count)
985{
Sean Christophersonf20935d2019-09-05 14:22:54 -0700986 u64 data;
Sean Christopherson55d23752018-12-03 13:53:18 -0800987 u32 i;
988 struct vmx_msr_entry e;
Marc Orrf0b51052019-09-17 11:50:57 -0700989 u32 max_msr_list_size = nested_vmx_max_atomic_switch_msrs(vcpu);
Sean Christopherson55d23752018-12-03 13:53:18 -0800990
991 for (i = 0; i < count; i++) {
Marc Orrf0b51052019-09-17 11:50:57 -0700992 if (unlikely(i >= max_msr_list_size))
993 return -EINVAL;
994
Aaron Lewis365d3d52019-11-07 21:14:36 -0800995 if (!read_and_check_msr_entry(vcpu, gpa, i, &e))
Sean Christopherson55d23752018-12-03 13:53:18 -0800996 return -EINVAL;
Aaron Lewis365d3d52019-11-07 21:14:36 -0800997
Aaron Lewis662f1d12019-11-07 21:14:39 -0800998 if (!nested_vmx_get_vmexit_msr_value(vcpu, e.index, &data))
Sean Christopherson55d23752018-12-03 13:53:18 -0800999 return -EINVAL;
Aaron Lewis662f1d12019-11-07 21:14:39 -08001000
Sean Christopherson55d23752018-12-03 13:53:18 -08001001 if (kvm_vcpu_write_guest(vcpu,
1002 gpa + i * sizeof(e) +
1003 offsetof(struct vmx_msr_entry, value),
Sean Christophersonf20935d2019-09-05 14:22:54 -07001004 &data, sizeof(data))) {
Sean Christopherson55d23752018-12-03 13:53:18 -08001005 pr_debug_ratelimited(
1006 "%s cannot write MSR (%u, 0x%x, 0x%llx)\n",
Sean Christophersonf20935d2019-09-05 14:22:54 -07001007 __func__, i, e.index, data);
Sean Christopherson55d23752018-12-03 13:53:18 -08001008 return -EINVAL;
1009 }
1010 }
1011 return 0;
1012}
1013
Aaron Lewis662f1d12019-11-07 21:14:39 -08001014static bool nested_msr_store_list_has_msr(struct kvm_vcpu *vcpu, u32 msr_index)
1015{
1016 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
1017 u32 count = vmcs12->vm_exit_msr_store_count;
1018 u64 gpa = vmcs12->vm_exit_msr_store_addr;
1019 struct vmx_msr_entry e;
1020 u32 i;
1021
1022 for (i = 0; i < count; i++) {
1023 if (!read_and_check_msr_entry(vcpu, gpa, i, &e))
1024 return false;
1025
1026 if (e.index == msr_index)
1027 return true;
1028 }
1029 return false;
1030}
1031
1032static void prepare_vmx_msr_autostore_list(struct kvm_vcpu *vcpu,
1033 u32 msr_index)
1034{
1035 struct vcpu_vmx *vmx = to_vmx(vcpu);
1036 struct vmx_msrs *autostore = &vmx->msr_autostore.guest;
1037 bool in_vmcs12_store_list;
1038 int msr_autostore_index;
1039 bool in_autostore_list;
1040 int last;
1041
1042 msr_autostore_index = vmx_find_msr_index(autostore, msr_index);
1043 in_autostore_list = msr_autostore_index >= 0;
1044 in_vmcs12_store_list = nested_msr_store_list_has_msr(vcpu, msr_index);
1045
1046 if (in_vmcs12_store_list && !in_autostore_list) {
1047 if (autostore->nr == NR_LOADSTORE_MSRS) {
1048 /*
1049 * Emulated VMEntry does not fail here. Instead a less
1050 * accurate value will be returned by
1051 * nested_vmx_get_vmexit_msr_value() using kvm_get_msr()
1052 * instead of reading the value from the vmcs02 VMExit
1053 * MSR-store area.
1054 */
1055 pr_warn_ratelimited(
1056 "Not enough msr entries in msr_autostore. Can't add msr %x\n",
1057 msr_index);
1058 return;
1059 }
1060 last = autostore->nr++;
1061 autostore->val[last].index = msr_index;
1062 } else if (!in_vmcs12_store_list && in_autostore_list) {
1063 last = --autostore->nr;
1064 autostore->val[msr_autostore_index] = autostore->val[last];
1065 }
1066}
1067
Sean Christopherson55d23752018-12-03 13:53:18 -08001068static bool nested_cr3_valid(struct kvm_vcpu *vcpu, unsigned long val)
1069{
1070 unsigned long invalid_mask;
1071
1072 invalid_mask = (~0ULL) << cpuid_maxphyaddr(vcpu);
1073 return (val & invalid_mask) == 0;
1074}
1075
1076/*
Sean Christopherson41fab65e2020-03-20 14:28:29 -07001077 * Returns true if the MMU needs to be sync'd on nested VM-Enter/VM-Exit.
1078 * tl;dr: the MMU needs a sync if L0 is using shadow paging and L1 didn't
1079 * enable VPID for L2 (implying it expects a TLB flush on VMX transitions).
1080 * Here's why.
1081 *
1082 * If EPT is enabled by L0 a sync is never needed:
1083 * - if it is disabled by L1, then L0 is not shadowing L1 or L2 PTEs, there
1084 * cannot be unsync'd SPTEs for either L1 or L2.
1085 *
1086 * - if it is also enabled by L1, then L0 doesn't need to sync on VM-Enter
1087 * VM-Enter as VM-Enter isn't required to invalidate guest-physical mappings
1088 * (irrespective of VPID), i.e. L1 can't rely on the (virtual) CPU to flush
1089 * stale guest-physical mappings for L2 from the TLB. And as above, L0 isn't
1090 * shadowing L1 PTEs so there are no unsync'd SPTEs to sync on VM-Exit.
1091 *
1092 * If EPT is disabled by L0:
1093 * - if VPID is enabled by L1 (for L2), the situation is similar to when L1
1094 * enables EPT: L0 doesn't need to sync as VM-Enter and VM-Exit aren't
1095 * required to invalidate linear mappings (EPT is disabled so there are
1096 * no combined or guest-physical mappings), i.e. L1 can't rely on the
1097 * (virtual) CPU to flush stale linear mappings for either L2 or itself (L1).
1098 *
1099 * - however if VPID is disabled by L1, then a sync is needed as L1 expects all
1100 * linear mappings (EPT is disabled so there are no combined or guest-physical
1101 * mappings) to be invalidated on both VM-Enter and VM-Exit.
1102 *
1103 * Note, this logic is subtly different than nested_has_guest_tlb_tag(), which
1104 * additionally checks that L2 has been assigned a VPID (when EPT is disabled).
1105 * Whether or not L2 has been assigned a VPID by L0 is irrelevant with respect
1106 * to L1's expectations, e.g. L0 needs to invalidate hardware TLB entries if L2
1107 * doesn't have a unique VPID to prevent reusing L1's entries (assuming L1 has
1108 * been assigned a VPID), but L0 doesn't need to do a MMU sync because L1
1109 * doesn't expect stale (virtual) TLB entries to be flushed, i.e. L1 doesn't
1110 * know that L0 will flush the TLB and so L1 will do INVVPID as needed to flush
1111 * stale TLB entries, at which point L0 will sync L2's MMU.
1112 */
1113static bool nested_vmx_transition_mmu_sync(struct kvm_vcpu *vcpu)
1114{
1115 return !enable_ept && !nested_cpu_has_vpid(get_vmcs12(vcpu));
1116}
1117
1118/*
Sean Christophersonea79a752020-02-04 07:32:59 -08001119 * Load guest's/host's cr3 at nested entry/exit. @nested_ept is true if we are
1120 * emulating VM-Entry into a guest with EPT enabled. On failure, the expected
1121 * Exit Qualification (for a VM-Entry consistency check VM-Exit) is assigned to
1122 * @entry_failure_code.
Sean Christopherson55d23752018-12-03 13:53:18 -08001123 */
1124static int nested_vmx_load_cr3(struct kvm_vcpu *vcpu, unsigned long cr3, bool nested_ept,
1125 u32 *entry_failure_code)
1126{
1127 if (cr3 != kvm_read_cr3(vcpu) || (!nested_ept && pdptrs_changed(vcpu))) {
Sean Christopherson5497b952019-07-11 08:58:29 -07001128 if (CC(!nested_cr3_valid(vcpu, cr3))) {
Sean Christopherson55d23752018-12-03 13:53:18 -08001129 *entry_failure_code = ENTRY_FAIL_DEFAULT;
Sean Christophersonc80add02019-04-11 12:18:09 -07001130 return -EINVAL;
Sean Christopherson55d23752018-12-03 13:53:18 -08001131 }
1132
1133 /*
1134 * If PAE paging and EPT are both on, CR3 is not used by the CPU and
1135 * must not be dereferenced.
1136 */
Paolo Bonzinibf03d4f2019-06-06 18:52:44 +02001137 if (is_pae_paging(vcpu) && !nested_ept) {
Sean Christopherson5497b952019-07-11 08:58:29 -07001138 if (CC(!load_pdptrs(vcpu, vcpu->arch.walk_mmu, cr3))) {
Sean Christopherson55d23752018-12-03 13:53:18 -08001139 *entry_failure_code = ENTRY_FAIL_PDPTE;
Sean Christophersonc80add02019-04-11 12:18:09 -07001140 return -EINVAL;
Sean Christopherson55d23752018-12-03 13:53:18 -08001141 }
1142 }
1143 }
1144
Sean Christopherson41fab65e2020-03-20 14:28:29 -07001145 /*
Sean Christopherson9805c5f2020-03-20 14:28:30 -07001146 * Unconditionally skip the TLB flush on fast CR3 switch, all TLB
1147 * flushes are handled by nested_vmx_transition_tlb_flush(). See
1148 * nested_vmx_transition_mmu_sync for details on skipping the MMU sync.
Sean Christopherson41fab65e2020-03-20 14:28:29 -07001149 */
Sean Christopherson55d23752018-12-03 13:53:18 -08001150 if (!nested_ept)
Sean Christophersonbe01e8e2020-03-20 14:28:32 -07001151 kvm_mmu_new_pgd(vcpu, cr3, true,
Sean Christopherson41fab65e2020-03-20 14:28:29 -07001152 !nested_vmx_transition_mmu_sync(vcpu));
Sean Christopherson55d23752018-12-03 13:53:18 -08001153
1154 vcpu->arch.cr3 = cr3;
Sean Christophersoncb3c1e22019-09-27 14:45:22 -07001155 kvm_register_mark_available(vcpu, VCPU_EXREG_CR3);
Sean Christopherson55d23752018-12-03 13:53:18 -08001156
1157 kvm_init_mmu(vcpu, false);
1158
1159 return 0;
1160}
1161
1162/*
1163 * Returns if KVM is able to config CPU to tag TLB entries
1164 * populated by L2 differently than TLB entries populated
1165 * by L1.
1166 *
Liran Alon992edea2019-11-20 14:24:52 +02001167 * If L0 uses EPT, L1 and L2 run with different EPTP because
1168 * guest_mode is part of kvm_mmu_page_role. Thus, TLB entries
1169 * are tagged with different EPTP.
Sean Christopherson55d23752018-12-03 13:53:18 -08001170 *
1171 * If L1 uses VPID and we allocated a vpid02, TLB entries are tagged
1172 * with different VPID (L1 entries are tagged with vmx->vpid
1173 * while L2 entries are tagged with vmx->nested.vpid02).
1174 */
1175static bool nested_has_guest_tlb_tag(struct kvm_vcpu *vcpu)
1176{
1177 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
1178
Liran Alon992edea2019-11-20 14:24:52 +02001179 return enable_ept ||
Sean Christopherson55d23752018-12-03 13:53:18 -08001180 (nested_cpu_has_vpid(vmcs12) && to_vmx(vcpu)->nested.vpid02);
1181}
1182
Sean Christopherson50b265a2020-03-20 14:28:19 -07001183static void nested_vmx_transition_tlb_flush(struct kvm_vcpu *vcpu,
1184 struct vmcs12 *vmcs12,
1185 bool is_vmenter)
1186{
1187 struct vcpu_vmx *vmx = to_vmx(vcpu);
1188
1189 /*
1190 * If VPID is disabled, linear and combined mappings are flushed on
1191 * VM-Enter/VM-Exit, and guest-physical mappings are valid only for
1192 * their associated EPTP.
1193 */
1194 if (!enable_vpid)
1195 return;
1196
1197 /*
1198 * If vmcs12 doesn't use VPID, L1 expects linear and combined mappings
1199 * for *all* contexts to be flushed on VM-Enter/VM-Exit.
1200 *
1201 * If VPID is enabled and used by vmc12, but L2 does not have a unique
1202 * TLB tag (ASID), i.e. EPT is disabled and KVM was unable to allocate
Sean Christophersonc51e1ff2020-03-20 14:28:22 -07001203 * a VPID for L2, flush the current context as the effective ASID is
1204 * common to both L1 and L2.
Sean Christopherson50b265a2020-03-20 14:28:19 -07001205 *
1206 * Defer the flush so that it runs after vmcs02.EPTP has been set by
1207 * KVM_REQ_LOAD_MMU_PGD (if nested EPT is enabled) and to avoid
1208 * redundant flushes further down the nested pipeline.
1209 *
1210 * If a TLB flush isn't required due to any of the above, and vpid12 is
1211 * changing then the new "virtual" VPID (vpid12) will reuse the same
1212 * "real" VPID (vpid02), and so needs to be sync'd. There is no direct
1213 * mapping between vpid02 and vpid12, vpid02 is per-vCPU and reused for
1214 * all nested vCPUs.
1215 */
Sean Christophersonc51e1ff2020-03-20 14:28:22 -07001216 if (!nested_cpu_has_vpid(vmcs12)) {
Sean Christopherson50b265a2020-03-20 14:28:19 -07001217 kvm_make_request(KVM_REQ_TLB_FLUSH, vcpu);
Sean Christophersonc51e1ff2020-03-20 14:28:22 -07001218 } else if (!nested_has_guest_tlb_tag(vcpu)) {
1219 kvm_make_request(KVM_REQ_TLB_FLUSH_CURRENT, vcpu);
Sean Christopherson50b265a2020-03-20 14:28:19 -07001220 } else if (is_vmenter &&
1221 vmcs12->virtual_processor_id != vmx->nested.last_vpid) {
1222 vmx->nested.last_vpid = vmcs12->virtual_processor_id;
1223 vpid_sync_context(nested_get_vpid02(vcpu));
1224 }
1225}
1226
Sean Christopherson55d23752018-12-03 13:53:18 -08001227static bool is_bitwise_subset(u64 superset, u64 subset, u64 mask)
1228{
1229 superset &= mask;
1230 subset &= mask;
1231
1232 return (superset | subset) == superset;
1233}
1234
1235static int vmx_restore_vmx_basic(struct vcpu_vmx *vmx, u64 data)
1236{
1237 const u64 feature_and_reserved =
1238 /* feature (except bit 48; see below) */
1239 BIT_ULL(49) | BIT_ULL(54) | BIT_ULL(55) |
1240 /* reserved */
1241 BIT_ULL(31) | GENMASK_ULL(47, 45) | GENMASK_ULL(63, 56);
1242 u64 vmx_basic = vmx->nested.msrs.basic;
1243
1244 if (!is_bitwise_subset(vmx_basic, data, feature_and_reserved))
1245 return -EINVAL;
1246
1247 /*
1248 * KVM does not emulate a version of VMX that constrains physical
1249 * addresses of VMX structures (e.g. VMCS) to 32-bits.
1250 */
1251 if (data & BIT_ULL(48))
1252 return -EINVAL;
1253
1254 if (vmx_basic_vmcs_revision_id(vmx_basic) !=
1255 vmx_basic_vmcs_revision_id(data))
1256 return -EINVAL;
1257
1258 if (vmx_basic_vmcs_size(vmx_basic) > vmx_basic_vmcs_size(data))
1259 return -EINVAL;
1260
1261 vmx->nested.msrs.basic = data;
1262 return 0;
1263}
1264
1265static int
1266vmx_restore_control_msr(struct vcpu_vmx *vmx, u32 msr_index, u64 data)
1267{
1268 u64 supported;
1269 u32 *lowp, *highp;
1270
1271 switch (msr_index) {
1272 case MSR_IA32_VMX_TRUE_PINBASED_CTLS:
1273 lowp = &vmx->nested.msrs.pinbased_ctls_low;
1274 highp = &vmx->nested.msrs.pinbased_ctls_high;
1275 break;
1276 case MSR_IA32_VMX_TRUE_PROCBASED_CTLS:
1277 lowp = &vmx->nested.msrs.procbased_ctls_low;
1278 highp = &vmx->nested.msrs.procbased_ctls_high;
1279 break;
1280 case MSR_IA32_VMX_TRUE_EXIT_CTLS:
1281 lowp = &vmx->nested.msrs.exit_ctls_low;
1282 highp = &vmx->nested.msrs.exit_ctls_high;
1283 break;
1284 case MSR_IA32_VMX_TRUE_ENTRY_CTLS:
1285 lowp = &vmx->nested.msrs.entry_ctls_low;
1286 highp = &vmx->nested.msrs.entry_ctls_high;
1287 break;
1288 case MSR_IA32_VMX_PROCBASED_CTLS2:
1289 lowp = &vmx->nested.msrs.secondary_ctls_low;
1290 highp = &vmx->nested.msrs.secondary_ctls_high;
1291 break;
1292 default:
1293 BUG();
1294 }
1295
1296 supported = vmx_control_msr(*lowp, *highp);
1297
1298 /* Check must-be-1 bits are still 1. */
1299 if (!is_bitwise_subset(data, supported, GENMASK_ULL(31, 0)))
1300 return -EINVAL;
1301
1302 /* Check must-be-0 bits are still 0. */
1303 if (!is_bitwise_subset(supported, data, GENMASK_ULL(63, 32)))
1304 return -EINVAL;
1305
1306 *lowp = data;
1307 *highp = data >> 32;
1308 return 0;
1309}
1310
1311static int vmx_restore_vmx_misc(struct vcpu_vmx *vmx, u64 data)
1312{
1313 const u64 feature_and_reserved_bits =
1314 /* feature */
1315 BIT_ULL(5) | GENMASK_ULL(8, 6) | BIT_ULL(14) | BIT_ULL(15) |
1316 BIT_ULL(28) | BIT_ULL(29) | BIT_ULL(30) |
1317 /* reserved */
1318 GENMASK_ULL(13, 9) | BIT_ULL(31);
1319 u64 vmx_misc;
1320
1321 vmx_misc = vmx_control_msr(vmx->nested.msrs.misc_low,
1322 vmx->nested.msrs.misc_high);
1323
1324 if (!is_bitwise_subset(vmx_misc, data, feature_and_reserved_bits))
1325 return -EINVAL;
1326
1327 if ((vmx->nested.msrs.pinbased_ctls_high &
1328 PIN_BASED_VMX_PREEMPTION_TIMER) &&
1329 vmx_misc_preemption_timer_rate(data) !=
1330 vmx_misc_preemption_timer_rate(vmx_misc))
1331 return -EINVAL;
1332
1333 if (vmx_misc_cr3_count(data) > vmx_misc_cr3_count(vmx_misc))
1334 return -EINVAL;
1335
1336 if (vmx_misc_max_msr(data) > vmx_misc_max_msr(vmx_misc))
1337 return -EINVAL;
1338
1339 if (vmx_misc_mseg_revid(data) != vmx_misc_mseg_revid(vmx_misc))
1340 return -EINVAL;
1341
1342 vmx->nested.msrs.misc_low = data;
1343 vmx->nested.msrs.misc_high = data >> 32;
1344
Sean Christopherson55d23752018-12-03 13:53:18 -08001345 return 0;
1346}
1347
1348static int vmx_restore_vmx_ept_vpid_cap(struct vcpu_vmx *vmx, u64 data)
1349{
1350 u64 vmx_ept_vpid_cap;
1351
1352 vmx_ept_vpid_cap = vmx_control_msr(vmx->nested.msrs.ept_caps,
1353 vmx->nested.msrs.vpid_caps);
1354
1355 /* Every bit is either reserved or a feature bit. */
1356 if (!is_bitwise_subset(vmx_ept_vpid_cap, data, -1ULL))
1357 return -EINVAL;
1358
1359 vmx->nested.msrs.ept_caps = data;
1360 vmx->nested.msrs.vpid_caps = data >> 32;
1361 return 0;
1362}
1363
1364static int vmx_restore_fixed0_msr(struct vcpu_vmx *vmx, u32 msr_index, u64 data)
1365{
1366 u64 *msr;
1367
1368 switch (msr_index) {
1369 case MSR_IA32_VMX_CR0_FIXED0:
1370 msr = &vmx->nested.msrs.cr0_fixed0;
1371 break;
1372 case MSR_IA32_VMX_CR4_FIXED0:
1373 msr = &vmx->nested.msrs.cr4_fixed0;
1374 break;
1375 default:
1376 BUG();
1377 }
1378
1379 /*
1380 * 1 bits (which indicates bits which "must-be-1" during VMX operation)
1381 * must be 1 in the restored value.
1382 */
1383 if (!is_bitwise_subset(data, *msr, -1ULL))
1384 return -EINVAL;
1385
1386 *msr = data;
1387 return 0;
1388}
1389
1390/*
1391 * Called when userspace is restoring VMX MSRs.
1392 *
1393 * Returns 0 on success, non-0 otherwise.
1394 */
1395int vmx_set_vmx_msr(struct kvm_vcpu *vcpu, u32 msr_index, u64 data)
1396{
1397 struct vcpu_vmx *vmx = to_vmx(vcpu);
1398
1399 /*
1400 * Don't allow changes to the VMX capability MSRs while the vCPU
1401 * is in VMX operation.
1402 */
1403 if (vmx->nested.vmxon)
1404 return -EBUSY;
1405
1406 switch (msr_index) {
1407 case MSR_IA32_VMX_BASIC:
1408 return vmx_restore_vmx_basic(vmx, data);
1409 case MSR_IA32_VMX_PINBASED_CTLS:
1410 case MSR_IA32_VMX_PROCBASED_CTLS:
1411 case MSR_IA32_VMX_EXIT_CTLS:
1412 case MSR_IA32_VMX_ENTRY_CTLS:
1413 /*
1414 * The "non-true" VMX capability MSRs are generated from the
1415 * "true" MSRs, so we do not support restoring them directly.
1416 *
1417 * If userspace wants to emulate VMX_BASIC[55]=0, userspace
1418 * should restore the "true" MSRs with the must-be-1 bits
1419 * set according to the SDM Vol 3. A.2 "RESERVED CONTROLS AND
1420 * DEFAULT SETTINGS".
1421 */
1422 return -EINVAL;
1423 case MSR_IA32_VMX_TRUE_PINBASED_CTLS:
1424 case MSR_IA32_VMX_TRUE_PROCBASED_CTLS:
1425 case MSR_IA32_VMX_TRUE_EXIT_CTLS:
1426 case MSR_IA32_VMX_TRUE_ENTRY_CTLS:
1427 case MSR_IA32_VMX_PROCBASED_CTLS2:
1428 return vmx_restore_control_msr(vmx, msr_index, data);
1429 case MSR_IA32_VMX_MISC:
1430 return vmx_restore_vmx_misc(vmx, data);
1431 case MSR_IA32_VMX_CR0_FIXED0:
1432 case MSR_IA32_VMX_CR4_FIXED0:
1433 return vmx_restore_fixed0_msr(vmx, msr_index, data);
1434 case MSR_IA32_VMX_CR0_FIXED1:
1435 case MSR_IA32_VMX_CR4_FIXED1:
1436 /*
1437 * These MSRs are generated based on the vCPU's CPUID, so we
1438 * do not support restoring them directly.
1439 */
1440 return -EINVAL;
1441 case MSR_IA32_VMX_EPT_VPID_CAP:
1442 return vmx_restore_vmx_ept_vpid_cap(vmx, data);
1443 case MSR_IA32_VMX_VMCS_ENUM:
1444 vmx->nested.msrs.vmcs_enum = data;
1445 return 0;
Paolo Bonzinie8a70bd2019-07-02 14:40:40 +02001446 case MSR_IA32_VMX_VMFUNC:
1447 if (data & ~vmx->nested.msrs.vmfunc_controls)
1448 return -EINVAL;
1449 vmx->nested.msrs.vmfunc_controls = data;
1450 return 0;
Sean Christopherson55d23752018-12-03 13:53:18 -08001451 default:
1452 /*
1453 * The rest of the VMX capability MSRs do not support restore.
1454 */
1455 return -EINVAL;
1456 }
1457}
1458
1459/* Returns 0 on success, non-0 otherwise. */
1460int vmx_get_vmx_msr(struct nested_vmx_msrs *msrs, u32 msr_index, u64 *pdata)
1461{
1462 switch (msr_index) {
1463 case MSR_IA32_VMX_BASIC:
1464 *pdata = msrs->basic;
1465 break;
1466 case MSR_IA32_VMX_TRUE_PINBASED_CTLS:
1467 case MSR_IA32_VMX_PINBASED_CTLS:
1468 *pdata = vmx_control_msr(
1469 msrs->pinbased_ctls_low,
1470 msrs->pinbased_ctls_high);
1471 if (msr_index == MSR_IA32_VMX_PINBASED_CTLS)
1472 *pdata |= PIN_BASED_ALWAYSON_WITHOUT_TRUE_MSR;
1473 break;
1474 case MSR_IA32_VMX_TRUE_PROCBASED_CTLS:
1475 case MSR_IA32_VMX_PROCBASED_CTLS:
1476 *pdata = vmx_control_msr(
1477 msrs->procbased_ctls_low,
1478 msrs->procbased_ctls_high);
1479 if (msr_index == MSR_IA32_VMX_PROCBASED_CTLS)
1480 *pdata |= CPU_BASED_ALWAYSON_WITHOUT_TRUE_MSR;
1481 break;
1482 case MSR_IA32_VMX_TRUE_EXIT_CTLS:
1483 case MSR_IA32_VMX_EXIT_CTLS:
1484 *pdata = vmx_control_msr(
1485 msrs->exit_ctls_low,
1486 msrs->exit_ctls_high);
1487 if (msr_index == MSR_IA32_VMX_EXIT_CTLS)
1488 *pdata |= VM_EXIT_ALWAYSON_WITHOUT_TRUE_MSR;
1489 break;
1490 case MSR_IA32_VMX_TRUE_ENTRY_CTLS:
1491 case MSR_IA32_VMX_ENTRY_CTLS:
1492 *pdata = vmx_control_msr(
1493 msrs->entry_ctls_low,
1494 msrs->entry_ctls_high);
1495 if (msr_index == MSR_IA32_VMX_ENTRY_CTLS)
1496 *pdata |= VM_ENTRY_ALWAYSON_WITHOUT_TRUE_MSR;
1497 break;
1498 case MSR_IA32_VMX_MISC:
1499 *pdata = vmx_control_msr(
1500 msrs->misc_low,
1501 msrs->misc_high);
1502 break;
1503 case MSR_IA32_VMX_CR0_FIXED0:
1504 *pdata = msrs->cr0_fixed0;
1505 break;
1506 case MSR_IA32_VMX_CR0_FIXED1:
1507 *pdata = msrs->cr0_fixed1;
1508 break;
1509 case MSR_IA32_VMX_CR4_FIXED0:
1510 *pdata = msrs->cr4_fixed0;
1511 break;
1512 case MSR_IA32_VMX_CR4_FIXED1:
1513 *pdata = msrs->cr4_fixed1;
1514 break;
1515 case MSR_IA32_VMX_VMCS_ENUM:
1516 *pdata = msrs->vmcs_enum;
1517 break;
1518 case MSR_IA32_VMX_PROCBASED_CTLS2:
1519 *pdata = vmx_control_msr(
1520 msrs->secondary_ctls_low,
1521 msrs->secondary_ctls_high);
1522 break;
1523 case MSR_IA32_VMX_EPT_VPID_CAP:
1524 *pdata = msrs->ept_caps |
1525 ((u64)msrs->vpid_caps << 32);
1526 break;
1527 case MSR_IA32_VMX_VMFUNC:
1528 *pdata = msrs->vmfunc_controls;
1529 break;
1530 default:
1531 return 1;
1532 }
1533
1534 return 0;
1535}
1536
1537/*
Sean Christophersonfadcead2019-05-07 08:36:23 -07001538 * Copy the writable VMCS shadow fields back to the VMCS12, in case they have
1539 * been modified by the L1 guest. Note, "writable" in this context means
1540 * "writable by the guest", i.e. tagged SHADOW_FIELD_RW; the set of
1541 * fields tagged SHADOW_FIELD_RO may or may not align with the "read-only"
1542 * VM-exit information fields (which are actually writable if the vCPU is
1543 * configured to support "VMWRITE to any supported field in the VMCS").
Sean Christopherson55d23752018-12-03 13:53:18 -08001544 */
1545static void copy_shadow_to_vmcs12(struct vcpu_vmx *vmx)
1546{
Sean Christopherson55d23752018-12-03 13:53:18 -08001547 struct vmcs *shadow_vmcs = vmx->vmcs01.shadow_vmcs;
Sean Christophersonfadcead2019-05-07 08:36:23 -07001548 struct vmcs12 *vmcs12 = get_vmcs12(&vmx->vcpu);
Sean Christopherson1c6f0b42019-05-07 08:36:25 -07001549 struct shadow_vmcs_field field;
1550 unsigned long val;
Sean Christophersonfadcead2019-05-07 08:36:23 -07001551 int i;
Sean Christopherson55d23752018-12-03 13:53:18 -08001552
Paolo Bonzini88dddc12019-07-19 18:41:10 +02001553 if (WARN_ON(!shadow_vmcs))
1554 return;
1555
Sean Christopherson55d23752018-12-03 13:53:18 -08001556 preempt_disable();
1557
1558 vmcs_load(shadow_vmcs);
1559
Sean Christophersonfadcead2019-05-07 08:36:23 -07001560 for (i = 0; i < max_shadow_read_write_fields; i++) {
1561 field = shadow_read_write_fields[i];
Sean Christopherson1c6f0b42019-05-07 08:36:25 -07001562 val = __vmcs_readl(field.encoding);
1563 vmcs12_write_any(vmcs12, field.encoding, field.offset, val);
Sean Christopherson55d23752018-12-03 13:53:18 -08001564 }
1565
1566 vmcs_clear(shadow_vmcs);
1567 vmcs_load(vmx->loaded_vmcs->vmcs);
1568
1569 preempt_enable();
1570}
1571
1572static void copy_vmcs12_to_shadow(struct vcpu_vmx *vmx)
1573{
Sean Christopherson1c6f0b42019-05-07 08:36:25 -07001574 const struct shadow_vmcs_field *fields[] = {
Sean Christopherson55d23752018-12-03 13:53:18 -08001575 shadow_read_write_fields,
1576 shadow_read_only_fields
1577 };
1578 const int max_fields[] = {
1579 max_shadow_read_write_fields,
1580 max_shadow_read_only_fields
1581 };
Sean Christopherson55d23752018-12-03 13:53:18 -08001582 struct vmcs *shadow_vmcs = vmx->vmcs01.shadow_vmcs;
Sean Christopherson1c6f0b42019-05-07 08:36:25 -07001583 struct vmcs12 *vmcs12 = get_vmcs12(&vmx->vcpu);
1584 struct shadow_vmcs_field field;
1585 unsigned long val;
1586 int i, q;
Sean Christopherson55d23752018-12-03 13:53:18 -08001587
Paolo Bonzini88dddc12019-07-19 18:41:10 +02001588 if (WARN_ON(!shadow_vmcs))
1589 return;
1590
Sean Christopherson55d23752018-12-03 13:53:18 -08001591 vmcs_load(shadow_vmcs);
1592
1593 for (q = 0; q < ARRAY_SIZE(fields); q++) {
1594 for (i = 0; i < max_fields[q]; i++) {
1595 field = fields[q][i];
Sean Christopherson1c6f0b42019-05-07 08:36:25 -07001596 val = vmcs12_read_any(vmcs12, field.encoding,
1597 field.offset);
1598 __vmcs_writel(field.encoding, val);
Sean Christopherson55d23752018-12-03 13:53:18 -08001599 }
1600 }
1601
1602 vmcs_clear(shadow_vmcs);
1603 vmcs_load(vmx->loaded_vmcs->vmcs);
1604}
1605
1606static int copy_enlightened_to_vmcs12(struct vcpu_vmx *vmx)
1607{
1608 struct vmcs12 *vmcs12 = vmx->nested.cached_vmcs12;
1609 struct hv_enlightened_vmcs *evmcs = vmx->nested.hv_evmcs;
1610
1611 /* HV_VMX_ENLIGHTENED_CLEAN_FIELD_NONE */
1612 vmcs12->tpr_threshold = evmcs->tpr_threshold;
1613 vmcs12->guest_rip = evmcs->guest_rip;
1614
1615 if (unlikely(!(evmcs->hv_clean_fields &
1616 HV_VMX_ENLIGHTENED_CLEAN_FIELD_GUEST_BASIC))) {
1617 vmcs12->guest_rsp = evmcs->guest_rsp;
1618 vmcs12->guest_rflags = evmcs->guest_rflags;
1619 vmcs12->guest_interruptibility_info =
1620 evmcs->guest_interruptibility_info;
1621 }
1622
1623 if (unlikely(!(evmcs->hv_clean_fields &
1624 HV_VMX_ENLIGHTENED_CLEAN_FIELD_CONTROL_PROC))) {
1625 vmcs12->cpu_based_vm_exec_control =
1626 evmcs->cpu_based_vm_exec_control;
1627 }
1628
1629 if (unlikely(!(evmcs->hv_clean_fields &
Vitaly Kuznetsovf9bc5222019-06-13 13:35:02 +02001630 HV_VMX_ENLIGHTENED_CLEAN_FIELD_CONTROL_EXCPN))) {
Sean Christopherson55d23752018-12-03 13:53:18 -08001631 vmcs12->exception_bitmap = evmcs->exception_bitmap;
1632 }
1633
1634 if (unlikely(!(evmcs->hv_clean_fields &
1635 HV_VMX_ENLIGHTENED_CLEAN_FIELD_CONTROL_ENTRY))) {
1636 vmcs12->vm_entry_controls = evmcs->vm_entry_controls;
1637 }
1638
1639 if (unlikely(!(evmcs->hv_clean_fields &
1640 HV_VMX_ENLIGHTENED_CLEAN_FIELD_CONTROL_EVENT))) {
1641 vmcs12->vm_entry_intr_info_field =
1642 evmcs->vm_entry_intr_info_field;
1643 vmcs12->vm_entry_exception_error_code =
1644 evmcs->vm_entry_exception_error_code;
1645 vmcs12->vm_entry_instruction_len =
1646 evmcs->vm_entry_instruction_len;
1647 }
1648
1649 if (unlikely(!(evmcs->hv_clean_fields &
1650 HV_VMX_ENLIGHTENED_CLEAN_FIELD_HOST_GRP1))) {
1651 vmcs12->host_ia32_pat = evmcs->host_ia32_pat;
1652 vmcs12->host_ia32_efer = evmcs->host_ia32_efer;
1653 vmcs12->host_cr0 = evmcs->host_cr0;
1654 vmcs12->host_cr3 = evmcs->host_cr3;
1655 vmcs12->host_cr4 = evmcs->host_cr4;
1656 vmcs12->host_ia32_sysenter_esp = evmcs->host_ia32_sysenter_esp;
1657 vmcs12->host_ia32_sysenter_eip = evmcs->host_ia32_sysenter_eip;
1658 vmcs12->host_rip = evmcs->host_rip;
1659 vmcs12->host_ia32_sysenter_cs = evmcs->host_ia32_sysenter_cs;
1660 vmcs12->host_es_selector = evmcs->host_es_selector;
1661 vmcs12->host_cs_selector = evmcs->host_cs_selector;
1662 vmcs12->host_ss_selector = evmcs->host_ss_selector;
1663 vmcs12->host_ds_selector = evmcs->host_ds_selector;
1664 vmcs12->host_fs_selector = evmcs->host_fs_selector;
1665 vmcs12->host_gs_selector = evmcs->host_gs_selector;
1666 vmcs12->host_tr_selector = evmcs->host_tr_selector;
1667 }
1668
1669 if (unlikely(!(evmcs->hv_clean_fields &
Vitaly Kuznetsovf9bc5222019-06-13 13:35:02 +02001670 HV_VMX_ENLIGHTENED_CLEAN_FIELD_CONTROL_GRP1))) {
Sean Christopherson55d23752018-12-03 13:53:18 -08001671 vmcs12->pin_based_vm_exec_control =
1672 evmcs->pin_based_vm_exec_control;
1673 vmcs12->vm_exit_controls = evmcs->vm_exit_controls;
1674 vmcs12->secondary_vm_exec_control =
1675 evmcs->secondary_vm_exec_control;
1676 }
1677
1678 if (unlikely(!(evmcs->hv_clean_fields &
1679 HV_VMX_ENLIGHTENED_CLEAN_FIELD_IO_BITMAP))) {
1680 vmcs12->io_bitmap_a = evmcs->io_bitmap_a;
1681 vmcs12->io_bitmap_b = evmcs->io_bitmap_b;
1682 }
1683
1684 if (unlikely(!(evmcs->hv_clean_fields &
1685 HV_VMX_ENLIGHTENED_CLEAN_FIELD_MSR_BITMAP))) {
1686 vmcs12->msr_bitmap = evmcs->msr_bitmap;
1687 }
1688
1689 if (unlikely(!(evmcs->hv_clean_fields &
1690 HV_VMX_ENLIGHTENED_CLEAN_FIELD_GUEST_GRP2))) {
1691 vmcs12->guest_es_base = evmcs->guest_es_base;
1692 vmcs12->guest_cs_base = evmcs->guest_cs_base;
1693 vmcs12->guest_ss_base = evmcs->guest_ss_base;
1694 vmcs12->guest_ds_base = evmcs->guest_ds_base;
1695 vmcs12->guest_fs_base = evmcs->guest_fs_base;
1696 vmcs12->guest_gs_base = evmcs->guest_gs_base;
1697 vmcs12->guest_ldtr_base = evmcs->guest_ldtr_base;
1698 vmcs12->guest_tr_base = evmcs->guest_tr_base;
1699 vmcs12->guest_gdtr_base = evmcs->guest_gdtr_base;
1700 vmcs12->guest_idtr_base = evmcs->guest_idtr_base;
1701 vmcs12->guest_es_limit = evmcs->guest_es_limit;
1702 vmcs12->guest_cs_limit = evmcs->guest_cs_limit;
1703 vmcs12->guest_ss_limit = evmcs->guest_ss_limit;
1704 vmcs12->guest_ds_limit = evmcs->guest_ds_limit;
1705 vmcs12->guest_fs_limit = evmcs->guest_fs_limit;
1706 vmcs12->guest_gs_limit = evmcs->guest_gs_limit;
1707 vmcs12->guest_ldtr_limit = evmcs->guest_ldtr_limit;
1708 vmcs12->guest_tr_limit = evmcs->guest_tr_limit;
1709 vmcs12->guest_gdtr_limit = evmcs->guest_gdtr_limit;
1710 vmcs12->guest_idtr_limit = evmcs->guest_idtr_limit;
1711 vmcs12->guest_es_ar_bytes = evmcs->guest_es_ar_bytes;
1712 vmcs12->guest_cs_ar_bytes = evmcs->guest_cs_ar_bytes;
1713 vmcs12->guest_ss_ar_bytes = evmcs->guest_ss_ar_bytes;
1714 vmcs12->guest_ds_ar_bytes = evmcs->guest_ds_ar_bytes;
1715 vmcs12->guest_fs_ar_bytes = evmcs->guest_fs_ar_bytes;
1716 vmcs12->guest_gs_ar_bytes = evmcs->guest_gs_ar_bytes;
1717 vmcs12->guest_ldtr_ar_bytes = evmcs->guest_ldtr_ar_bytes;
1718 vmcs12->guest_tr_ar_bytes = evmcs->guest_tr_ar_bytes;
1719 vmcs12->guest_es_selector = evmcs->guest_es_selector;
1720 vmcs12->guest_cs_selector = evmcs->guest_cs_selector;
1721 vmcs12->guest_ss_selector = evmcs->guest_ss_selector;
1722 vmcs12->guest_ds_selector = evmcs->guest_ds_selector;
1723 vmcs12->guest_fs_selector = evmcs->guest_fs_selector;
1724 vmcs12->guest_gs_selector = evmcs->guest_gs_selector;
1725 vmcs12->guest_ldtr_selector = evmcs->guest_ldtr_selector;
1726 vmcs12->guest_tr_selector = evmcs->guest_tr_selector;
1727 }
1728
1729 if (unlikely(!(evmcs->hv_clean_fields &
1730 HV_VMX_ENLIGHTENED_CLEAN_FIELD_CONTROL_GRP2))) {
1731 vmcs12->tsc_offset = evmcs->tsc_offset;
1732 vmcs12->virtual_apic_page_addr = evmcs->virtual_apic_page_addr;
1733 vmcs12->xss_exit_bitmap = evmcs->xss_exit_bitmap;
1734 }
1735
1736 if (unlikely(!(evmcs->hv_clean_fields &
1737 HV_VMX_ENLIGHTENED_CLEAN_FIELD_CRDR))) {
1738 vmcs12->cr0_guest_host_mask = evmcs->cr0_guest_host_mask;
1739 vmcs12->cr4_guest_host_mask = evmcs->cr4_guest_host_mask;
1740 vmcs12->cr0_read_shadow = evmcs->cr0_read_shadow;
1741 vmcs12->cr4_read_shadow = evmcs->cr4_read_shadow;
1742 vmcs12->guest_cr0 = evmcs->guest_cr0;
1743 vmcs12->guest_cr3 = evmcs->guest_cr3;
1744 vmcs12->guest_cr4 = evmcs->guest_cr4;
1745 vmcs12->guest_dr7 = evmcs->guest_dr7;
1746 }
1747
1748 if (unlikely(!(evmcs->hv_clean_fields &
1749 HV_VMX_ENLIGHTENED_CLEAN_FIELD_HOST_POINTER))) {
1750 vmcs12->host_fs_base = evmcs->host_fs_base;
1751 vmcs12->host_gs_base = evmcs->host_gs_base;
1752 vmcs12->host_tr_base = evmcs->host_tr_base;
1753 vmcs12->host_gdtr_base = evmcs->host_gdtr_base;
1754 vmcs12->host_idtr_base = evmcs->host_idtr_base;
1755 vmcs12->host_rsp = evmcs->host_rsp;
1756 }
1757
1758 if (unlikely(!(evmcs->hv_clean_fields &
1759 HV_VMX_ENLIGHTENED_CLEAN_FIELD_CONTROL_XLAT))) {
1760 vmcs12->ept_pointer = evmcs->ept_pointer;
1761 vmcs12->virtual_processor_id = evmcs->virtual_processor_id;
1762 }
1763
1764 if (unlikely(!(evmcs->hv_clean_fields &
1765 HV_VMX_ENLIGHTENED_CLEAN_FIELD_GUEST_GRP1))) {
1766 vmcs12->vmcs_link_pointer = evmcs->vmcs_link_pointer;
1767 vmcs12->guest_ia32_debugctl = evmcs->guest_ia32_debugctl;
1768 vmcs12->guest_ia32_pat = evmcs->guest_ia32_pat;
1769 vmcs12->guest_ia32_efer = evmcs->guest_ia32_efer;
1770 vmcs12->guest_pdptr0 = evmcs->guest_pdptr0;
1771 vmcs12->guest_pdptr1 = evmcs->guest_pdptr1;
1772 vmcs12->guest_pdptr2 = evmcs->guest_pdptr2;
1773 vmcs12->guest_pdptr3 = evmcs->guest_pdptr3;
1774 vmcs12->guest_pending_dbg_exceptions =
1775 evmcs->guest_pending_dbg_exceptions;
1776 vmcs12->guest_sysenter_esp = evmcs->guest_sysenter_esp;
1777 vmcs12->guest_sysenter_eip = evmcs->guest_sysenter_eip;
1778 vmcs12->guest_bndcfgs = evmcs->guest_bndcfgs;
1779 vmcs12->guest_activity_state = evmcs->guest_activity_state;
1780 vmcs12->guest_sysenter_cs = evmcs->guest_sysenter_cs;
1781 }
1782
1783 /*
1784 * Not used?
1785 * vmcs12->vm_exit_msr_store_addr = evmcs->vm_exit_msr_store_addr;
1786 * vmcs12->vm_exit_msr_load_addr = evmcs->vm_exit_msr_load_addr;
1787 * vmcs12->vm_entry_msr_load_addr = evmcs->vm_entry_msr_load_addr;
Sean Christopherson55d23752018-12-03 13:53:18 -08001788 * vmcs12->page_fault_error_code_mask =
1789 * evmcs->page_fault_error_code_mask;
1790 * vmcs12->page_fault_error_code_match =
1791 * evmcs->page_fault_error_code_match;
1792 * vmcs12->cr3_target_count = evmcs->cr3_target_count;
1793 * vmcs12->vm_exit_msr_store_count = evmcs->vm_exit_msr_store_count;
1794 * vmcs12->vm_exit_msr_load_count = evmcs->vm_exit_msr_load_count;
1795 * vmcs12->vm_entry_msr_load_count = evmcs->vm_entry_msr_load_count;
1796 */
1797
1798 /*
1799 * Read only fields:
1800 * vmcs12->guest_physical_address = evmcs->guest_physical_address;
1801 * vmcs12->vm_instruction_error = evmcs->vm_instruction_error;
1802 * vmcs12->vm_exit_reason = evmcs->vm_exit_reason;
1803 * vmcs12->vm_exit_intr_info = evmcs->vm_exit_intr_info;
1804 * vmcs12->vm_exit_intr_error_code = evmcs->vm_exit_intr_error_code;
1805 * vmcs12->idt_vectoring_info_field = evmcs->idt_vectoring_info_field;
1806 * vmcs12->idt_vectoring_error_code = evmcs->idt_vectoring_error_code;
1807 * vmcs12->vm_exit_instruction_len = evmcs->vm_exit_instruction_len;
1808 * vmcs12->vmx_instruction_info = evmcs->vmx_instruction_info;
1809 * vmcs12->exit_qualification = evmcs->exit_qualification;
1810 * vmcs12->guest_linear_address = evmcs->guest_linear_address;
1811 *
1812 * Not present in struct vmcs12:
1813 * vmcs12->exit_io_instruction_ecx = evmcs->exit_io_instruction_ecx;
1814 * vmcs12->exit_io_instruction_esi = evmcs->exit_io_instruction_esi;
1815 * vmcs12->exit_io_instruction_edi = evmcs->exit_io_instruction_edi;
1816 * vmcs12->exit_io_instruction_eip = evmcs->exit_io_instruction_eip;
1817 */
1818
1819 return 0;
1820}
1821
1822static int copy_vmcs12_to_enlightened(struct vcpu_vmx *vmx)
1823{
1824 struct vmcs12 *vmcs12 = vmx->nested.cached_vmcs12;
1825 struct hv_enlightened_vmcs *evmcs = vmx->nested.hv_evmcs;
1826
1827 /*
1828 * Should not be changed by KVM:
1829 *
1830 * evmcs->host_es_selector = vmcs12->host_es_selector;
1831 * evmcs->host_cs_selector = vmcs12->host_cs_selector;
1832 * evmcs->host_ss_selector = vmcs12->host_ss_selector;
1833 * evmcs->host_ds_selector = vmcs12->host_ds_selector;
1834 * evmcs->host_fs_selector = vmcs12->host_fs_selector;
1835 * evmcs->host_gs_selector = vmcs12->host_gs_selector;
1836 * evmcs->host_tr_selector = vmcs12->host_tr_selector;
1837 * evmcs->host_ia32_pat = vmcs12->host_ia32_pat;
1838 * evmcs->host_ia32_efer = vmcs12->host_ia32_efer;
1839 * evmcs->host_cr0 = vmcs12->host_cr0;
1840 * evmcs->host_cr3 = vmcs12->host_cr3;
1841 * evmcs->host_cr4 = vmcs12->host_cr4;
1842 * evmcs->host_ia32_sysenter_esp = vmcs12->host_ia32_sysenter_esp;
1843 * evmcs->host_ia32_sysenter_eip = vmcs12->host_ia32_sysenter_eip;
1844 * evmcs->host_rip = vmcs12->host_rip;
1845 * evmcs->host_ia32_sysenter_cs = vmcs12->host_ia32_sysenter_cs;
1846 * evmcs->host_fs_base = vmcs12->host_fs_base;
1847 * evmcs->host_gs_base = vmcs12->host_gs_base;
1848 * evmcs->host_tr_base = vmcs12->host_tr_base;
1849 * evmcs->host_gdtr_base = vmcs12->host_gdtr_base;
1850 * evmcs->host_idtr_base = vmcs12->host_idtr_base;
1851 * evmcs->host_rsp = vmcs12->host_rsp;
Sean Christopherson3731905ef2019-05-07 08:36:27 -07001852 * sync_vmcs02_to_vmcs12() doesn't read these:
Sean Christopherson55d23752018-12-03 13:53:18 -08001853 * evmcs->io_bitmap_a = vmcs12->io_bitmap_a;
1854 * evmcs->io_bitmap_b = vmcs12->io_bitmap_b;
1855 * evmcs->msr_bitmap = vmcs12->msr_bitmap;
1856 * evmcs->ept_pointer = vmcs12->ept_pointer;
1857 * evmcs->xss_exit_bitmap = vmcs12->xss_exit_bitmap;
1858 * evmcs->vm_exit_msr_store_addr = vmcs12->vm_exit_msr_store_addr;
1859 * evmcs->vm_exit_msr_load_addr = vmcs12->vm_exit_msr_load_addr;
1860 * evmcs->vm_entry_msr_load_addr = vmcs12->vm_entry_msr_load_addr;
Sean Christopherson55d23752018-12-03 13:53:18 -08001861 * evmcs->tpr_threshold = vmcs12->tpr_threshold;
1862 * evmcs->virtual_processor_id = vmcs12->virtual_processor_id;
1863 * evmcs->exception_bitmap = vmcs12->exception_bitmap;
1864 * evmcs->vmcs_link_pointer = vmcs12->vmcs_link_pointer;
1865 * evmcs->pin_based_vm_exec_control = vmcs12->pin_based_vm_exec_control;
1866 * evmcs->vm_exit_controls = vmcs12->vm_exit_controls;
1867 * evmcs->secondary_vm_exec_control = vmcs12->secondary_vm_exec_control;
1868 * evmcs->page_fault_error_code_mask =
1869 * vmcs12->page_fault_error_code_mask;
1870 * evmcs->page_fault_error_code_match =
1871 * vmcs12->page_fault_error_code_match;
1872 * evmcs->cr3_target_count = vmcs12->cr3_target_count;
1873 * evmcs->virtual_apic_page_addr = vmcs12->virtual_apic_page_addr;
1874 * evmcs->tsc_offset = vmcs12->tsc_offset;
1875 * evmcs->guest_ia32_debugctl = vmcs12->guest_ia32_debugctl;
1876 * evmcs->cr0_guest_host_mask = vmcs12->cr0_guest_host_mask;
1877 * evmcs->cr4_guest_host_mask = vmcs12->cr4_guest_host_mask;
1878 * evmcs->cr0_read_shadow = vmcs12->cr0_read_shadow;
1879 * evmcs->cr4_read_shadow = vmcs12->cr4_read_shadow;
1880 * evmcs->vm_exit_msr_store_count = vmcs12->vm_exit_msr_store_count;
1881 * evmcs->vm_exit_msr_load_count = vmcs12->vm_exit_msr_load_count;
1882 * evmcs->vm_entry_msr_load_count = vmcs12->vm_entry_msr_load_count;
1883 *
1884 * Not present in struct vmcs12:
1885 * evmcs->exit_io_instruction_ecx = vmcs12->exit_io_instruction_ecx;
1886 * evmcs->exit_io_instruction_esi = vmcs12->exit_io_instruction_esi;
1887 * evmcs->exit_io_instruction_edi = vmcs12->exit_io_instruction_edi;
1888 * evmcs->exit_io_instruction_eip = vmcs12->exit_io_instruction_eip;
1889 */
1890
1891 evmcs->guest_es_selector = vmcs12->guest_es_selector;
1892 evmcs->guest_cs_selector = vmcs12->guest_cs_selector;
1893 evmcs->guest_ss_selector = vmcs12->guest_ss_selector;
1894 evmcs->guest_ds_selector = vmcs12->guest_ds_selector;
1895 evmcs->guest_fs_selector = vmcs12->guest_fs_selector;
1896 evmcs->guest_gs_selector = vmcs12->guest_gs_selector;
1897 evmcs->guest_ldtr_selector = vmcs12->guest_ldtr_selector;
1898 evmcs->guest_tr_selector = vmcs12->guest_tr_selector;
1899
1900 evmcs->guest_es_limit = vmcs12->guest_es_limit;
1901 evmcs->guest_cs_limit = vmcs12->guest_cs_limit;
1902 evmcs->guest_ss_limit = vmcs12->guest_ss_limit;
1903 evmcs->guest_ds_limit = vmcs12->guest_ds_limit;
1904 evmcs->guest_fs_limit = vmcs12->guest_fs_limit;
1905 evmcs->guest_gs_limit = vmcs12->guest_gs_limit;
1906 evmcs->guest_ldtr_limit = vmcs12->guest_ldtr_limit;
1907 evmcs->guest_tr_limit = vmcs12->guest_tr_limit;
1908 evmcs->guest_gdtr_limit = vmcs12->guest_gdtr_limit;
1909 evmcs->guest_idtr_limit = vmcs12->guest_idtr_limit;
1910
1911 evmcs->guest_es_ar_bytes = vmcs12->guest_es_ar_bytes;
1912 evmcs->guest_cs_ar_bytes = vmcs12->guest_cs_ar_bytes;
1913 evmcs->guest_ss_ar_bytes = vmcs12->guest_ss_ar_bytes;
1914 evmcs->guest_ds_ar_bytes = vmcs12->guest_ds_ar_bytes;
1915 evmcs->guest_fs_ar_bytes = vmcs12->guest_fs_ar_bytes;
1916 evmcs->guest_gs_ar_bytes = vmcs12->guest_gs_ar_bytes;
1917 evmcs->guest_ldtr_ar_bytes = vmcs12->guest_ldtr_ar_bytes;
1918 evmcs->guest_tr_ar_bytes = vmcs12->guest_tr_ar_bytes;
1919
1920 evmcs->guest_es_base = vmcs12->guest_es_base;
1921 evmcs->guest_cs_base = vmcs12->guest_cs_base;
1922 evmcs->guest_ss_base = vmcs12->guest_ss_base;
1923 evmcs->guest_ds_base = vmcs12->guest_ds_base;
1924 evmcs->guest_fs_base = vmcs12->guest_fs_base;
1925 evmcs->guest_gs_base = vmcs12->guest_gs_base;
1926 evmcs->guest_ldtr_base = vmcs12->guest_ldtr_base;
1927 evmcs->guest_tr_base = vmcs12->guest_tr_base;
1928 evmcs->guest_gdtr_base = vmcs12->guest_gdtr_base;
1929 evmcs->guest_idtr_base = vmcs12->guest_idtr_base;
1930
1931 evmcs->guest_ia32_pat = vmcs12->guest_ia32_pat;
1932 evmcs->guest_ia32_efer = vmcs12->guest_ia32_efer;
1933
1934 evmcs->guest_pdptr0 = vmcs12->guest_pdptr0;
1935 evmcs->guest_pdptr1 = vmcs12->guest_pdptr1;
1936 evmcs->guest_pdptr2 = vmcs12->guest_pdptr2;
1937 evmcs->guest_pdptr3 = vmcs12->guest_pdptr3;
1938
1939 evmcs->guest_pending_dbg_exceptions =
1940 vmcs12->guest_pending_dbg_exceptions;
1941 evmcs->guest_sysenter_esp = vmcs12->guest_sysenter_esp;
1942 evmcs->guest_sysenter_eip = vmcs12->guest_sysenter_eip;
1943
1944 evmcs->guest_activity_state = vmcs12->guest_activity_state;
1945 evmcs->guest_sysenter_cs = vmcs12->guest_sysenter_cs;
1946
1947 evmcs->guest_cr0 = vmcs12->guest_cr0;
1948 evmcs->guest_cr3 = vmcs12->guest_cr3;
1949 evmcs->guest_cr4 = vmcs12->guest_cr4;
1950 evmcs->guest_dr7 = vmcs12->guest_dr7;
1951
1952 evmcs->guest_physical_address = vmcs12->guest_physical_address;
1953
1954 evmcs->vm_instruction_error = vmcs12->vm_instruction_error;
1955 evmcs->vm_exit_reason = vmcs12->vm_exit_reason;
1956 evmcs->vm_exit_intr_info = vmcs12->vm_exit_intr_info;
1957 evmcs->vm_exit_intr_error_code = vmcs12->vm_exit_intr_error_code;
1958 evmcs->idt_vectoring_info_field = vmcs12->idt_vectoring_info_field;
1959 evmcs->idt_vectoring_error_code = vmcs12->idt_vectoring_error_code;
1960 evmcs->vm_exit_instruction_len = vmcs12->vm_exit_instruction_len;
1961 evmcs->vmx_instruction_info = vmcs12->vmx_instruction_info;
1962
1963 evmcs->exit_qualification = vmcs12->exit_qualification;
1964
1965 evmcs->guest_linear_address = vmcs12->guest_linear_address;
1966 evmcs->guest_rsp = vmcs12->guest_rsp;
1967 evmcs->guest_rflags = vmcs12->guest_rflags;
1968
1969 evmcs->guest_interruptibility_info =
1970 vmcs12->guest_interruptibility_info;
1971 evmcs->cpu_based_vm_exec_control = vmcs12->cpu_based_vm_exec_control;
1972 evmcs->vm_entry_controls = vmcs12->vm_entry_controls;
1973 evmcs->vm_entry_intr_info_field = vmcs12->vm_entry_intr_info_field;
1974 evmcs->vm_entry_exception_error_code =
1975 vmcs12->vm_entry_exception_error_code;
1976 evmcs->vm_entry_instruction_len = vmcs12->vm_entry_instruction_len;
1977
1978 evmcs->guest_rip = vmcs12->guest_rip;
1979
1980 evmcs->guest_bndcfgs = vmcs12->guest_bndcfgs;
1981
1982 return 0;
1983}
1984
1985/*
1986 * This is an equivalent of the nested hypervisor executing the vmptrld
1987 * instruction.
1988 */
Vitaly Kuznetsovb6a06532020-03-09 16:52:13 +01001989static enum nested_evmptrld_status nested_vmx_handle_enlightened_vmptrld(
1990 struct kvm_vcpu *vcpu, bool from_launch)
Sean Christopherson55d23752018-12-03 13:53:18 -08001991{
1992 struct vcpu_vmx *vmx = to_vmx(vcpu);
Vitaly Kuznetsova21a39c2019-06-28 13:23:32 +02001993 bool evmcs_gpa_changed = false;
Vitaly Kuznetsov11e34912019-06-28 13:23:33 +02001994 u64 evmcs_gpa;
Sean Christopherson55d23752018-12-03 13:53:18 -08001995
1996 if (likely(!vmx->nested.enlightened_vmcs_enabled))
Vitaly Kuznetsovb6a06532020-03-09 16:52:13 +01001997 return EVMPTRLD_DISABLED;
Sean Christopherson55d23752018-12-03 13:53:18 -08001998
Vitaly Kuznetsov11e34912019-06-28 13:23:33 +02001999 if (!nested_enlightened_vmentry(vcpu, &evmcs_gpa))
Vitaly Kuznetsovb6a06532020-03-09 16:52:13 +01002000 return EVMPTRLD_DISABLED;
Sean Christopherson55d23752018-12-03 13:53:18 -08002001
Vitaly Kuznetsov95fa1012020-03-09 16:52:11 +01002002 if (unlikely(!vmx->nested.hv_evmcs ||
2003 evmcs_gpa != vmx->nested.hv_evmcs_vmptr)) {
Sean Christopherson55d23752018-12-03 13:53:18 -08002004 if (!vmx->nested.hv_evmcs)
2005 vmx->nested.current_vmptr = -1ull;
2006
2007 nested_release_evmcs(vcpu);
2008
Vitaly Kuznetsov11e34912019-06-28 13:23:33 +02002009 if (kvm_vcpu_map(vcpu, gpa_to_gfn(evmcs_gpa),
KarimAllah Ahmeddee9c042019-01-31 21:24:42 +01002010 &vmx->nested.hv_evmcs_map))
Vitaly Kuznetsovb6a06532020-03-09 16:52:13 +01002011 return EVMPTRLD_ERROR;
Sean Christopherson55d23752018-12-03 13:53:18 -08002012
KarimAllah Ahmeddee9c042019-01-31 21:24:42 +01002013 vmx->nested.hv_evmcs = vmx->nested.hv_evmcs_map.hva;
Sean Christopherson55d23752018-12-03 13:53:18 -08002014
2015 /*
2016 * Currently, KVM only supports eVMCS version 1
2017 * (== KVM_EVMCS_VERSION) and thus we expect guest to set this
2018 * value to first u32 field of eVMCS which should specify eVMCS
2019 * VersionNumber.
2020 *
2021 * Guest should be aware of supported eVMCS versions by host by
2022 * examining CPUID.0x4000000A.EAX[0:15]. Host userspace VMM is
2023 * expected to set this CPUID leaf according to the value
2024 * returned in vmcs_version from nested_enable_evmcs().
2025 *
2026 * However, it turns out that Microsoft Hyper-V fails to comply
2027 * to their own invented interface: When Hyper-V use eVMCS, it
2028 * just sets first u32 field of eVMCS to revision_id specified
2029 * in MSR_IA32_VMX_BASIC. Instead of used eVMCS version number
2030 * which is one of the supported versions specified in
2031 * CPUID.0x4000000A.EAX[0:15].
2032 *
2033 * To overcome Hyper-V bug, we accept here either a supported
2034 * eVMCS version or VMCS12 revision_id as valid values for first
2035 * u32 field of eVMCS.
2036 */
2037 if ((vmx->nested.hv_evmcs->revision_id != KVM_EVMCS_VERSION) &&
2038 (vmx->nested.hv_evmcs->revision_id != VMCS12_REVISION)) {
2039 nested_release_evmcs(vcpu);
Vitaly Kuznetsovb6a06532020-03-09 16:52:13 +01002040 return EVMPTRLD_VMFAIL;
Sean Christopherson55d23752018-12-03 13:53:18 -08002041 }
2042
2043 vmx->nested.dirty_vmcs12 = true;
Vitaly Kuznetsov11e34912019-06-28 13:23:33 +02002044 vmx->nested.hv_evmcs_vmptr = evmcs_gpa;
Sean Christopherson55d23752018-12-03 13:53:18 -08002045
Vitaly Kuznetsova21a39c2019-06-28 13:23:32 +02002046 evmcs_gpa_changed = true;
Sean Christopherson55d23752018-12-03 13:53:18 -08002047 /*
2048 * Unlike normal vmcs12, enlightened vmcs12 is not fully
2049 * reloaded from guest's memory (read only fields, fields not
2050 * present in struct hv_enlightened_vmcs, ...). Make sure there
2051 * are no leftovers.
2052 */
2053 if (from_launch) {
2054 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
2055 memset(vmcs12, 0, sizeof(*vmcs12));
2056 vmcs12->hdr.revision_id = VMCS12_REVISION;
2057 }
2058
2059 }
Vitaly Kuznetsova21a39c2019-06-28 13:23:32 +02002060
2061 /*
Miaohe Linffdbd502020-02-07 23:22:45 +08002062 * Clean fields data can't be used on VMLAUNCH and when we switch
Vitaly Kuznetsova21a39c2019-06-28 13:23:32 +02002063 * between different L2 guests as KVM keeps a single VMCS12 per L1.
2064 */
2065 if (from_launch || evmcs_gpa_changed)
2066 vmx->nested.hv_evmcs->hv_clean_fields &=
2067 ~HV_VMX_ENLIGHTENED_CLEAN_FIELD_ALL;
2068
Vitaly Kuznetsovb6a06532020-03-09 16:52:13 +01002069 return EVMPTRLD_SUCCEEDED;
Sean Christopherson55d23752018-12-03 13:53:18 -08002070}
2071
Sean Christopherson3731905ef2019-05-07 08:36:27 -07002072void nested_sync_vmcs12_to_shadow(struct kvm_vcpu *vcpu)
Sean Christopherson55d23752018-12-03 13:53:18 -08002073{
2074 struct vcpu_vmx *vmx = to_vmx(vcpu);
2075
Sean Christopherson55d23752018-12-03 13:53:18 -08002076 if (vmx->nested.hv_evmcs) {
2077 copy_vmcs12_to_enlightened(vmx);
2078 /* All fields are clean */
2079 vmx->nested.hv_evmcs->hv_clean_fields |=
2080 HV_VMX_ENLIGHTENED_CLEAN_FIELD_ALL;
2081 } else {
2082 copy_vmcs12_to_shadow(vmx);
2083 }
2084
Sean Christopherson3731905ef2019-05-07 08:36:27 -07002085 vmx->nested.need_vmcs12_to_shadow_sync = false;
Sean Christopherson55d23752018-12-03 13:53:18 -08002086}
2087
2088static enum hrtimer_restart vmx_preemption_timer_fn(struct hrtimer *timer)
2089{
2090 struct vcpu_vmx *vmx =
2091 container_of(timer, struct vcpu_vmx, nested.preemption_timer);
2092
2093 vmx->nested.preemption_timer_expired = true;
2094 kvm_make_request(KVM_REQ_EVENT, &vmx->vcpu);
2095 kvm_vcpu_kick(&vmx->vcpu);
2096
2097 return HRTIMER_NORESTART;
2098}
2099
2100static void vmx_start_preemption_timer(struct kvm_vcpu *vcpu)
2101{
2102 u64 preemption_timeout = get_vmcs12(vcpu)->vmx_preemption_timer_value;
2103 struct vcpu_vmx *vmx = to_vmx(vcpu);
2104
2105 /*
2106 * A timer value of zero is architecturally guaranteed to cause
2107 * a VMExit prior to executing any instructions in the guest.
2108 */
2109 if (preemption_timeout == 0) {
2110 vmx_preemption_timer_fn(&vmx->nested.preemption_timer);
2111 return;
2112 }
2113
2114 if (vcpu->arch.virtual_tsc_khz == 0)
2115 return;
2116
2117 preemption_timeout <<= VMX_MISC_EMULATED_PREEMPTION_TIMER_RATE;
2118 preemption_timeout *= 1000000;
2119 do_div(preemption_timeout, vcpu->arch.virtual_tsc_khz);
2120 hrtimer_start(&vmx->nested.preemption_timer,
2121 ns_to_ktime(preemption_timeout), HRTIMER_MODE_REL);
2122}
2123
2124static u64 nested_vmx_calc_efer(struct vcpu_vmx *vmx, struct vmcs12 *vmcs12)
2125{
2126 if (vmx->nested.nested_run_pending &&
2127 (vmcs12->vm_entry_controls & VM_ENTRY_LOAD_IA32_EFER))
2128 return vmcs12->guest_ia32_efer;
2129 else if (vmcs12->vm_entry_controls & VM_ENTRY_IA32E_MODE)
2130 return vmx->vcpu.arch.efer | (EFER_LMA | EFER_LME);
2131 else
2132 return vmx->vcpu.arch.efer & ~(EFER_LMA | EFER_LME);
2133}
2134
2135static void prepare_vmcs02_constant_state(struct vcpu_vmx *vmx)
2136{
2137 /*
2138 * If vmcs02 hasn't been initialized, set the constant vmcs02 state
2139 * according to L0's settings (vmcs12 is irrelevant here). Host
2140 * fields that come from L0 and are not constant, e.g. HOST_CR3,
2141 * will be set as needed prior to VMLAUNCH/VMRESUME.
2142 */
2143 if (vmx->nested.vmcs02_initialized)
2144 return;
2145 vmx->nested.vmcs02_initialized = true;
2146
2147 /*
2148 * We don't care what the EPTP value is we just need to guarantee
2149 * it's valid so we don't get a false positive when doing early
2150 * consistency checks.
2151 */
2152 if (enable_ept && nested_early_check)
2153 vmcs_write64(EPT_POINTER, construct_eptp(&vmx->vcpu, 0));
2154
2155 /* All VMFUNCs are currently emulated through L0 vmexits. */
2156 if (cpu_has_vmx_vmfunc())
2157 vmcs_write64(VM_FUNCTION_CONTROL, 0);
2158
2159 if (cpu_has_vmx_posted_intr())
2160 vmcs_write16(POSTED_INTR_NV, POSTED_INTR_NESTED_VECTOR);
2161
2162 if (cpu_has_vmx_msr_bitmap())
2163 vmcs_write64(MSR_BITMAP, __pa(vmx->nested.vmcs02.msr_bitmap));
2164
Sean Christopherson4d6c9892019-05-07 09:06:30 -07002165 /*
2166 * The PML address never changes, so it is constant in vmcs02.
2167 * Conceptually we want to copy the PML index from vmcs01 here,
2168 * and then back to vmcs01 on nested vmexit. But since we flush
2169 * the log and reset GUEST_PML_INDEX on each vmexit, the PML
2170 * index is also effectively constant in vmcs02.
2171 */
2172 if (enable_pml) {
Sean Christopherson55d23752018-12-03 13:53:18 -08002173 vmcs_write64(PML_ADDRESS, page_to_phys(vmx->pml_pg));
Sean Christopherson4d6c9892019-05-07 09:06:30 -07002174 vmcs_write16(GUEST_PML_INDEX, PML_ENTITY_NUM - 1);
2175 }
Sean Christopherson55d23752018-12-03 13:53:18 -08002176
Sean Christophersonc538d572019-05-07 09:06:29 -07002177 if (cpu_has_vmx_encls_vmexit())
2178 vmcs_write64(ENCLS_EXITING_BITMAP, -1ull);
Sean Christopherson55d23752018-12-03 13:53:18 -08002179
2180 /*
2181 * Set the MSR load/store lists to match L0's settings. Only the
2182 * addresses are constant (for vmcs02), the counts can change based
2183 * on L2's behavior, e.g. switching to/from long mode.
2184 */
Aaron Lewis662f1d12019-11-07 21:14:39 -08002185 vmcs_write64(VM_EXIT_MSR_STORE_ADDR, __pa(vmx->msr_autostore.guest.val));
Sean Christopherson55d23752018-12-03 13:53:18 -08002186 vmcs_write64(VM_EXIT_MSR_LOAD_ADDR, __pa(vmx->msr_autoload.host.val));
2187 vmcs_write64(VM_ENTRY_MSR_LOAD_ADDR, __pa(vmx->msr_autoload.guest.val));
2188
2189 vmx_set_constant_host_state(vmx);
2190}
2191
Paolo Bonzinib1346ab2019-06-06 17:24:00 +02002192static void prepare_vmcs02_early_rare(struct vcpu_vmx *vmx,
Sean Christopherson55d23752018-12-03 13:53:18 -08002193 struct vmcs12 *vmcs12)
2194{
2195 prepare_vmcs02_constant_state(vmx);
2196
2197 vmcs_write64(VMCS_LINK_POINTER, -1ull);
2198
2199 if (enable_vpid) {
2200 if (nested_cpu_has_vpid(vmcs12) && vmx->nested.vpid02)
2201 vmcs_write16(VIRTUAL_PROCESSOR_ID, vmx->nested.vpid02);
2202 else
2203 vmcs_write16(VIRTUAL_PROCESSOR_ID, vmx->vpid);
2204 }
2205}
2206
2207static void prepare_vmcs02_early(struct vcpu_vmx *vmx, struct vmcs12 *vmcs12)
2208{
2209 u32 exec_control, vmcs12_exec_ctrl;
2210 u64 guest_efer = nested_vmx_calc_efer(vmx, vmcs12);
2211
2212 if (vmx->nested.dirty_vmcs12 || vmx->nested.hv_evmcs)
Paolo Bonzinib1346ab2019-06-06 17:24:00 +02002213 prepare_vmcs02_early_rare(vmx, vmcs12);
Sean Christopherson55d23752018-12-03 13:53:18 -08002214
2215 /*
Sean Christopherson55d23752018-12-03 13:53:18 -08002216 * PIN CONTROLS
2217 */
Sean Christophersonc075c3e2019-05-07 12:17:53 -07002218 exec_control = vmx_pin_based_exec_ctrl(vmx);
Sean Christopherson804939e2019-05-07 12:18:05 -07002219 exec_control |= (vmcs12->pin_based_vm_exec_control &
2220 ~PIN_BASED_VMX_PREEMPTION_TIMER);
Sean Christopherson55d23752018-12-03 13:53:18 -08002221
2222 /* Posted interrupts setting is only taken from vmcs12. */
2223 if (nested_cpu_has_posted_intr(vmcs12)) {
2224 vmx->nested.posted_intr_nv = vmcs12->posted_intr_nv;
2225 vmx->nested.pi_pending = false;
2226 } else {
2227 exec_control &= ~PIN_BASED_POSTED_INTR;
2228 }
Sean Christopherson3af80fe2019-05-07 12:18:00 -07002229 pin_controls_set(vmx, exec_control);
Sean Christopherson55d23752018-12-03 13:53:18 -08002230
2231 /*
2232 * EXEC CONTROLS
2233 */
2234 exec_control = vmx_exec_control(vmx); /* L0's desires */
Xiaoyao Li9dadc2f2019-12-06 16:45:24 +08002235 exec_control &= ~CPU_BASED_INTR_WINDOW_EXITING;
Xiaoyao Li4e2a0bc2019-12-06 16:45:25 +08002236 exec_control &= ~CPU_BASED_NMI_WINDOW_EXITING;
Sean Christopherson55d23752018-12-03 13:53:18 -08002237 exec_control &= ~CPU_BASED_TPR_SHADOW;
2238 exec_control |= vmcs12->cpu_based_vm_exec_control;
2239
Liran Alon02d496cf2019-11-11 14:30:55 +02002240 vmx->nested.l1_tpr_threshold = -1;
Sean Christophersonca2f5462019-05-07 09:06:33 -07002241 if (exec_control & CPU_BASED_TPR_SHADOW)
Sean Christopherson55d23752018-12-03 13:53:18 -08002242 vmcs_write32(TPR_THRESHOLD, vmcs12->tpr_threshold);
Sean Christopherson55d23752018-12-03 13:53:18 -08002243#ifdef CONFIG_X86_64
Sean Christophersonca2f5462019-05-07 09:06:33 -07002244 else
Sean Christopherson55d23752018-12-03 13:53:18 -08002245 exec_control |= CPU_BASED_CR8_LOAD_EXITING |
2246 CPU_BASED_CR8_STORE_EXITING;
2247#endif
Sean Christopherson55d23752018-12-03 13:53:18 -08002248
2249 /*
2250 * A vmexit (to either L1 hypervisor or L0 userspace) is always needed
2251 * for I/O port accesses.
2252 */
Sean Christopherson55d23752018-12-03 13:53:18 -08002253 exec_control |= CPU_BASED_UNCOND_IO_EXITING;
Sean Christophersonde0286b2019-05-07 12:18:01 -07002254 exec_control &= ~CPU_BASED_USE_IO_BITMAPS;
2255
2256 /*
2257 * This bit will be computed in nested_get_vmcs12_pages, because
2258 * we do not have access to L1's MSR bitmap yet. For now, keep
2259 * the same bit as before, hoping to avoid multiple VMWRITEs that
2260 * only set/clear this bit.
2261 */
2262 exec_control &= ~CPU_BASED_USE_MSR_BITMAPS;
2263 exec_control |= exec_controls_get(vmx) & CPU_BASED_USE_MSR_BITMAPS;
2264
Sean Christopherson3af80fe2019-05-07 12:18:00 -07002265 exec_controls_set(vmx, exec_control);
Sean Christopherson55d23752018-12-03 13:53:18 -08002266
2267 /*
2268 * SECONDARY EXEC CONTROLS
2269 */
2270 if (cpu_has_secondary_exec_ctrls()) {
2271 exec_control = vmx->secondary_exec_control;
2272
2273 /* Take the following fields only from vmcs12 */
2274 exec_control &= ~(SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES |
2275 SECONDARY_EXEC_ENABLE_INVPCID |
2276 SECONDARY_EXEC_RDTSCP |
2277 SECONDARY_EXEC_XSAVES |
Tao Xue69e72fa2019-07-16 14:55:49 +08002278 SECONDARY_EXEC_ENABLE_USR_WAIT_PAUSE |
Sean Christopherson55d23752018-12-03 13:53:18 -08002279 SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY |
2280 SECONDARY_EXEC_APIC_REGISTER_VIRT |
2281 SECONDARY_EXEC_ENABLE_VMFUNC);
2282 if (nested_cpu_has(vmcs12,
2283 CPU_BASED_ACTIVATE_SECONDARY_CONTROLS)) {
2284 vmcs12_exec_ctrl = vmcs12->secondary_vm_exec_control &
2285 ~SECONDARY_EXEC_ENABLE_PML;
2286 exec_control |= vmcs12_exec_ctrl;
2287 }
2288
2289 /* VMCS shadowing for L2 is emulated for now */
2290 exec_control &= ~SECONDARY_EXEC_SHADOW_VMCS;
2291
Sean Christopherson469debd2019-05-07 12:18:02 -07002292 /*
2293 * Preset *DT exiting when emulating UMIP, so that vmx_set_cr4()
2294 * will not have to rewrite the controls just for this bit.
2295 */
2296 if (!boot_cpu_has(X86_FEATURE_UMIP) && vmx_umip_emulated() &&
2297 (vmcs12->guest_cr4 & X86_CR4_UMIP))
2298 exec_control |= SECONDARY_EXEC_DESC;
2299
Sean Christopherson55d23752018-12-03 13:53:18 -08002300 if (exec_control & SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY)
2301 vmcs_write16(GUEST_INTR_STATUS,
2302 vmcs12->guest_intr_status);
2303
Sean Christopherson3af80fe2019-05-07 12:18:00 -07002304 secondary_exec_controls_set(vmx, exec_control);
Sean Christopherson55d23752018-12-03 13:53:18 -08002305 }
2306
2307 /*
2308 * ENTRY CONTROLS
2309 *
2310 * vmcs12's VM_{ENTRY,EXIT}_LOAD_IA32_EFER and VM_ENTRY_IA32E_MODE
2311 * are emulated by vmx_set_efer() in prepare_vmcs02(), but speculate
2312 * on the related bits (if supported by the CPU) in the hope that
2313 * we can avoid VMWrites during vmx_set_efer().
2314 */
2315 exec_control = (vmcs12->vm_entry_controls | vmx_vmentry_ctrl()) &
2316 ~VM_ENTRY_IA32E_MODE & ~VM_ENTRY_LOAD_IA32_EFER;
2317 if (cpu_has_load_ia32_efer()) {
2318 if (guest_efer & EFER_LMA)
2319 exec_control |= VM_ENTRY_IA32E_MODE;
2320 if (guest_efer != host_efer)
2321 exec_control |= VM_ENTRY_LOAD_IA32_EFER;
2322 }
Sean Christopherson3af80fe2019-05-07 12:18:00 -07002323 vm_entry_controls_set(vmx, exec_control);
Sean Christopherson55d23752018-12-03 13:53:18 -08002324
2325 /*
2326 * EXIT CONTROLS
2327 *
2328 * L2->L1 exit controls are emulated - the hardware exit is to L0 so
2329 * we should use its exit controls. Note that VM_EXIT_LOAD_IA32_EFER
2330 * bits may be modified by vmx_set_efer() in prepare_vmcs02().
2331 */
2332 exec_control = vmx_vmexit_ctrl();
2333 if (cpu_has_load_ia32_efer() && guest_efer != host_efer)
2334 exec_control |= VM_EXIT_LOAD_IA32_EFER;
Sean Christopherson3af80fe2019-05-07 12:18:00 -07002335 vm_exit_controls_set(vmx, exec_control);
Sean Christopherson55d23752018-12-03 13:53:18 -08002336
2337 /*
2338 * Interrupt/Exception Fields
2339 */
2340 if (vmx->nested.nested_run_pending) {
2341 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD,
2342 vmcs12->vm_entry_intr_info_field);
2343 vmcs_write32(VM_ENTRY_EXCEPTION_ERROR_CODE,
2344 vmcs12->vm_entry_exception_error_code);
2345 vmcs_write32(VM_ENTRY_INSTRUCTION_LEN,
2346 vmcs12->vm_entry_instruction_len);
2347 vmcs_write32(GUEST_INTERRUPTIBILITY_INFO,
2348 vmcs12->guest_interruptibility_info);
2349 vmx->loaded_vmcs->nmi_known_unmasked =
2350 !(vmcs12->guest_interruptibility_info & GUEST_INTR_STATE_NMI);
2351 } else {
2352 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, 0);
2353 }
2354}
2355
Paolo Bonzinib1346ab2019-06-06 17:24:00 +02002356static void prepare_vmcs02_rare(struct vcpu_vmx *vmx, struct vmcs12 *vmcs12)
Sean Christopherson55d23752018-12-03 13:53:18 -08002357{
2358 struct hv_enlightened_vmcs *hv_evmcs = vmx->nested.hv_evmcs;
2359
2360 if (!hv_evmcs || !(hv_evmcs->hv_clean_fields &
2361 HV_VMX_ENLIGHTENED_CLEAN_FIELD_GUEST_GRP2)) {
2362 vmcs_write16(GUEST_ES_SELECTOR, vmcs12->guest_es_selector);
2363 vmcs_write16(GUEST_CS_SELECTOR, vmcs12->guest_cs_selector);
2364 vmcs_write16(GUEST_SS_SELECTOR, vmcs12->guest_ss_selector);
2365 vmcs_write16(GUEST_DS_SELECTOR, vmcs12->guest_ds_selector);
2366 vmcs_write16(GUEST_FS_SELECTOR, vmcs12->guest_fs_selector);
2367 vmcs_write16(GUEST_GS_SELECTOR, vmcs12->guest_gs_selector);
2368 vmcs_write16(GUEST_LDTR_SELECTOR, vmcs12->guest_ldtr_selector);
2369 vmcs_write16(GUEST_TR_SELECTOR, vmcs12->guest_tr_selector);
2370 vmcs_write32(GUEST_ES_LIMIT, vmcs12->guest_es_limit);
2371 vmcs_write32(GUEST_CS_LIMIT, vmcs12->guest_cs_limit);
2372 vmcs_write32(GUEST_SS_LIMIT, vmcs12->guest_ss_limit);
2373 vmcs_write32(GUEST_DS_LIMIT, vmcs12->guest_ds_limit);
2374 vmcs_write32(GUEST_FS_LIMIT, vmcs12->guest_fs_limit);
2375 vmcs_write32(GUEST_GS_LIMIT, vmcs12->guest_gs_limit);
2376 vmcs_write32(GUEST_LDTR_LIMIT, vmcs12->guest_ldtr_limit);
2377 vmcs_write32(GUEST_TR_LIMIT, vmcs12->guest_tr_limit);
2378 vmcs_write32(GUEST_GDTR_LIMIT, vmcs12->guest_gdtr_limit);
2379 vmcs_write32(GUEST_IDTR_LIMIT, vmcs12->guest_idtr_limit);
Sean Christopherson1c6f0b42019-05-07 08:36:25 -07002380 vmcs_write32(GUEST_CS_AR_BYTES, vmcs12->guest_cs_ar_bytes);
2381 vmcs_write32(GUEST_SS_AR_BYTES, vmcs12->guest_ss_ar_bytes);
Sean Christopherson55d23752018-12-03 13:53:18 -08002382 vmcs_write32(GUEST_ES_AR_BYTES, vmcs12->guest_es_ar_bytes);
2383 vmcs_write32(GUEST_DS_AR_BYTES, vmcs12->guest_ds_ar_bytes);
2384 vmcs_write32(GUEST_FS_AR_BYTES, vmcs12->guest_fs_ar_bytes);
2385 vmcs_write32(GUEST_GS_AR_BYTES, vmcs12->guest_gs_ar_bytes);
2386 vmcs_write32(GUEST_LDTR_AR_BYTES, vmcs12->guest_ldtr_ar_bytes);
2387 vmcs_write32(GUEST_TR_AR_BYTES, vmcs12->guest_tr_ar_bytes);
2388 vmcs_writel(GUEST_ES_BASE, vmcs12->guest_es_base);
2389 vmcs_writel(GUEST_CS_BASE, vmcs12->guest_cs_base);
2390 vmcs_writel(GUEST_SS_BASE, vmcs12->guest_ss_base);
2391 vmcs_writel(GUEST_DS_BASE, vmcs12->guest_ds_base);
2392 vmcs_writel(GUEST_FS_BASE, vmcs12->guest_fs_base);
2393 vmcs_writel(GUEST_GS_BASE, vmcs12->guest_gs_base);
2394 vmcs_writel(GUEST_LDTR_BASE, vmcs12->guest_ldtr_base);
2395 vmcs_writel(GUEST_TR_BASE, vmcs12->guest_tr_base);
2396 vmcs_writel(GUEST_GDTR_BASE, vmcs12->guest_gdtr_base);
2397 vmcs_writel(GUEST_IDTR_BASE, vmcs12->guest_idtr_base);
2398 }
2399
2400 if (!hv_evmcs || !(hv_evmcs->hv_clean_fields &
2401 HV_VMX_ENLIGHTENED_CLEAN_FIELD_GUEST_GRP1)) {
2402 vmcs_write32(GUEST_SYSENTER_CS, vmcs12->guest_sysenter_cs);
2403 vmcs_writel(GUEST_PENDING_DBG_EXCEPTIONS,
2404 vmcs12->guest_pending_dbg_exceptions);
2405 vmcs_writel(GUEST_SYSENTER_ESP, vmcs12->guest_sysenter_esp);
2406 vmcs_writel(GUEST_SYSENTER_EIP, vmcs12->guest_sysenter_eip);
2407
2408 /*
2409 * L1 may access the L2's PDPTR, so save them to construct
2410 * vmcs12
2411 */
2412 if (enable_ept) {
2413 vmcs_write64(GUEST_PDPTR0, vmcs12->guest_pdptr0);
2414 vmcs_write64(GUEST_PDPTR1, vmcs12->guest_pdptr1);
2415 vmcs_write64(GUEST_PDPTR2, vmcs12->guest_pdptr2);
2416 vmcs_write64(GUEST_PDPTR3, vmcs12->guest_pdptr3);
2417 }
Sean Christophersonc27e5b02019-05-07 09:06:39 -07002418
2419 if (kvm_mpx_supported() && vmx->nested.nested_run_pending &&
2420 (vmcs12->vm_entry_controls & VM_ENTRY_LOAD_BNDCFGS))
2421 vmcs_write64(GUEST_BNDCFGS, vmcs12->guest_bndcfgs);
Sean Christopherson55d23752018-12-03 13:53:18 -08002422 }
2423
2424 if (nested_cpu_has_xsaves(vmcs12))
2425 vmcs_write64(XSS_EXIT_BITMAP, vmcs12->xss_exit_bitmap);
2426
2427 /*
2428 * Whether page-faults are trapped is determined by a combination of
2429 * 3 settings: PFEC_MASK, PFEC_MATCH and EXCEPTION_BITMAP.PF.
2430 * If enable_ept, L0 doesn't care about page faults and we should
2431 * set all of these to L1's desires. However, if !enable_ept, L0 does
2432 * care about (at least some) page faults, and because it is not easy
2433 * (if at all possible?) to merge L0 and L1's desires, we simply ask
2434 * to exit on each and every L2 page fault. This is done by setting
2435 * MASK=MATCH=0 and (see below) EB.PF=1.
2436 * Note that below we don't need special code to set EB.PF beyond the
2437 * "or"ing of the EB of vmcs01 and vmcs12, because when enable_ept,
2438 * vmcs01's EB.PF is 0 so the "or" will take vmcs12's value, and when
2439 * !enable_ept, EB.PF is 1, so the "or" will always be 1.
2440 */
2441 vmcs_write32(PAGE_FAULT_ERROR_CODE_MASK,
2442 enable_ept ? vmcs12->page_fault_error_code_mask : 0);
2443 vmcs_write32(PAGE_FAULT_ERROR_CODE_MATCH,
2444 enable_ept ? vmcs12->page_fault_error_code_match : 0);
2445
2446 if (cpu_has_vmx_apicv()) {
2447 vmcs_write64(EOI_EXIT_BITMAP0, vmcs12->eoi_exit_bitmap0);
2448 vmcs_write64(EOI_EXIT_BITMAP1, vmcs12->eoi_exit_bitmap1);
2449 vmcs_write64(EOI_EXIT_BITMAP2, vmcs12->eoi_exit_bitmap2);
2450 vmcs_write64(EOI_EXIT_BITMAP3, vmcs12->eoi_exit_bitmap3);
2451 }
2452
Aaron Lewis662f1d12019-11-07 21:14:39 -08002453 /*
2454 * Make sure the msr_autostore list is up to date before we set the
2455 * count in the vmcs02.
2456 */
2457 prepare_vmx_msr_autostore_list(&vmx->vcpu, MSR_IA32_TSC);
2458
2459 vmcs_write32(VM_EXIT_MSR_STORE_COUNT, vmx->msr_autostore.guest.nr);
Sean Christopherson55d23752018-12-03 13:53:18 -08002460 vmcs_write32(VM_EXIT_MSR_LOAD_COUNT, vmx->msr_autoload.host.nr);
2461 vmcs_write32(VM_ENTRY_MSR_LOAD_COUNT, vmx->msr_autoload.guest.nr);
2462
2463 set_cr4_guest_host_mask(vmx);
Sean Christopherson55d23752018-12-03 13:53:18 -08002464}
2465
2466/*
2467 * prepare_vmcs02 is called when the L1 guest hypervisor runs its nested
2468 * L2 guest. L1 has a vmcs for L2 (vmcs12), and this function "merges" it
2469 * with L0's requirements for its guest (a.k.a. vmcs01), so we can run the L2
2470 * guest in a way that will both be appropriate to L1's requests, and our
2471 * needs. In addition to modifying the active vmcs (which is vmcs02), this
2472 * function also has additional necessary side-effects, like setting various
2473 * vcpu->arch fields.
2474 * Returns 0 on success, 1 on failure. Invalid state exit qualification code
2475 * is assigned to entry_failure_code on failure.
2476 */
2477static int prepare_vmcs02(struct kvm_vcpu *vcpu, struct vmcs12 *vmcs12,
2478 u32 *entry_failure_code)
2479{
2480 struct vcpu_vmx *vmx = to_vmx(vcpu);
2481 struct hv_enlightened_vmcs *hv_evmcs = vmx->nested.hv_evmcs;
Sean Christophersonc7554efc2019-05-07 09:06:40 -07002482 bool load_guest_pdptrs_vmcs12 = false;
Sean Christopherson55d23752018-12-03 13:53:18 -08002483
Sean Christophersonc7554efc2019-05-07 09:06:40 -07002484 if (vmx->nested.dirty_vmcs12 || hv_evmcs) {
Paolo Bonzinib1346ab2019-06-06 17:24:00 +02002485 prepare_vmcs02_rare(vmx, vmcs12);
Sean Christopherson55d23752018-12-03 13:53:18 -08002486 vmx->nested.dirty_vmcs12 = false;
Sean Christopherson55d23752018-12-03 13:53:18 -08002487
Sean Christophersonc7554efc2019-05-07 09:06:40 -07002488 load_guest_pdptrs_vmcs12 = !hv_evmcs ||
2489 !(hv_evmcs->hv_clean_fields &
2490 HV_VMX_ENLIGHTENED_CLEAN_FIELD_GUEST_GRP1);
Sean Christopherson55d23752018-12-03 13:53:18 -08002491 }
2492
2493 if (vmx->nested.nested_run_pending &&
2494 (vmcs12->vm_entry_controls & VM_ENTRY_LOAD_DEBUG_CONTROLS)) {
2495 kvm_set_dr(vcpu, 7, vmcs12->guest_dr7);
2496 vmcs_write64(GUEST_IA32_DEBUGCTL, vmcs12->guest_ia32_debugctl);
2497 } else {
2498 kvm_set_dr(vcpu, 7, vcpu->arch.dr7);
2499 vmcs_write64(GUEST_IA32_DEBUGCTL, vmx->nested.vmcs01_debugctl);
2500 }
Sean Christopherson3b013a22019-05-07 09:06:28 -07002501 if (kvm_mpx_supported() && (!vmx->nested.nested_run_pending ||
2502 !(vmcs12->vm_entry_controls & VM_ENTRY_LOAD_BNDCFGS)))
2503 vmcs_write64(GUEST_BNDCFGS, vmx->nested.vmcs01_guest_bndcfgs);
Sean Christopherson55d23752018-12-03 13:53:18 -08002504 vmx_set_rflags(vcpu, vmcs12->guest_rflags);
2505
Sean Christopherson55d23752018-12-03 13:53:18 -08002506 /* EXCEPTION_BITMAP and CR0_GUEST_HOST_MASK should basically be the
2507 * bitwise-or of what L1 wants to trap for L2, and what we want to
2508 * trap. Note that CR0.TS also needs updating - we do this later.
2509 */
2510 update_exception_bitmap(vcpu);
2511 vcpu->arch.cr0_guest_owned_bits &= ~vmcs12->cr0_guest_host_mask;
2512 vmcs_writel(CR0_GUEST_HOST_MASK, ~vcpu->arch.cr0_guest_owned_bits);
2513
2514 if (vmx->nested.nested_run_pending &&
2515 (vmcs12->vm_entry_controls & VM_ENTRY_LOAD_IA32_PAT)) {
2516 vmcs_write64(GUEST_IA32_PAT, vmcs12->guest_ia32_pat);
2517 vcpu->arch.pat = vmcs12->guest_ia32_pat;
2518 } else if (vmcs_config.vmentry_ctrl & VM_ENTRY_LOAD_IA32_PAT) {
2519 vmcs_write64(GUEST_IA32_PAT, vmx->vcpu.arch.pat);
2520 }
2521
2522 vmcs_write64(TSC_OFFSET, vcpu->arch.tsc_offset);
2523
2524 if (kvm_has_tsc_control)
2525 decache_tsc_multiplier(vmx);
2526
Sean Christopherson50b265a2020-03-20 14:28:19 -07002527 nested_vmx_transition_tlb_flush(vcpu, vmcs12, true);
Sean Christopherson55d23752018-12-03 13:53:18 -08002528
2529 if (nested_cpu_has_ept(vmcs12))
2530 nested_ept_init_mmu_context(vcpu);
Sean Christopherson55d23752018-12-03 13:53:18 -08002531
2532 /*
2533 * This sets GUEST_CR0 to vmcs12->guest_cr0, possibly modifying those
2534 * bits which we consider mandatory enabled.
2535 * The CR0_READ_SHADOW is what L2 should have expected to read given
2536 * the specifications by L1; It's not enough to take
2537 * vmcs12->cr0_read_shadow because on our cr0_guest_host_mask we we
2538 * have more bits than L1 expected.
2539 */
2540 vmx_set_cr0(vcpu, vmcs12->guest_cr0);
2541 vmcs_writel(CR0_READ_SHADOW, nested_read_cr0(vmcs12));
2542
2543 vmx_set_cr4(vcpu, vmcs12->guest_cr4);
2544 vmcs_writel(CR4_READ_SHADOW, nested_read_cr4(vmcs12));
2545
2546 vcpu->arch.efer = nested_vmx_calc_efer(vmx, vmcs12);
2547 /* Note: may modify VM_ENTRY/EXIT_CONTROLS and GUEST/HOST_IA32_EFER */
2548 vmx_set_efer(vcpu, vcpu->arch.efer);
2549
2550 /*
2551 * Guest state is invalid and unrestricted guest is disabled,
2552 * which means L1 attempted VMEntry to L2 with invalid state.
2553 * Fail the VMEntry.
2554 */
2555 if (vmx->emulation_required) {
2556 *entry_failure_code = ENTRY_FAIL_DEFAULT;
Sean Christophersonc80add02019-04-11 12:18:09 -07002557 return -EINVAL;
Sean Christopherson55d23752018-12-03 13:53:18 -08002558 }
2559
2560 /* Shadow page tables on either EPT or shadow page tables. */
2561 if (nested_vmx_load_cr3(vcpu, vmcs12->guest_cr3, nested_cpu_has_ept(vmcs12),
2562 entry_failure_code))
Sean Christophersonc80add02019-04-11 12:18:09 -07002563 return -EINVAL;
Sean Christopherson55d23752018-12-03 13:53:18 -08002564
Sean Christopherson04f11ef2019-09-27 14:45:16 -07002565 /*
2566 * Immediately write vmcs02.GUEST_CR3. It will be propagated to vmcs12
2567 * on nested VM-Exit, which can occur without actually running L2 and
Paolo Bonzini727a7e22020-03-05 03:52:50 -05002568 * thus without hitting vmx_load_mmu_pgd(), e.g. if L1 is entering L2 with
Sean Christopherson04f11ef2019-09-27 14:45:16 -07002569 * vmcs12.GUEST_ACTIVITYSTATE=HLT, in which case KVM will intercept the
2570 * transition to HLT instead of running L2.
2571 */
2572 if (enable_ept)
2573 vmcs_writel(GUEST_CR3, vmcs12->guest_cr3);
2574
Sean Christophersonc7554efc2019-05-07 09:06:40 -07002575 /* Late preparation of GUEST_PDPTRs now that EFER and CRs are set. */
2576 if (load_guest_pdptrs_vmcs12 && nested_cpu_has_ept(vmcs12) &&
2577 is_pae_paging(vcpu)) {
2578 vmcs_write64(GUEST_PDPTR0, vmcs12->guest_pdptr0);
2579 vmcs_write64(GUEST_PDPTR1, vmcs12->guest_pdptr1);
2580 vmcs_write64(GUEST_PDPTR2, vmcs12->guest_pdptr2);
2581 vmcs_write64(GUEST_PDPTR3, vmcs12->guest_pdptr3);
2582 }
2583
Sean Christopherson55d23752018-12-03 13:53:18 -08002584 if (!enable_ept)
2585 vcpu->arch.walk_mmu->inject_page_fault = vmx_inject_page_fault_nested;
2586
Oliver Upton71f73472019-11-13 16:17:19 -08002587 if ((vmcs12->vm_entry_controls & VM_ENTRY_LOAD_IA32_PERF_GLOBAL_CTRL) &&
Oliver Uptond1968422019-12-13 16:33:58 -08002588 WARN_ON_ONCE(kvm_set_msr(vcpu, MSR_CORE_PERF_GLOBAL_CTRL,
2589 vmcs12->guest_ia32_perf_global_ctrl)))
Oliver Upton71f73472019-11-13 16:17:19 -08002590 return -EINVAL;
2591
Paolo Bonzinie9c16c72019-04-30 22:07:26 +02002592 kvm_rsp_write(vcpu, vmcs12->guest_rsp);
2593 kvm_rip_write(vcpu, vmcs12->guest_rip);
Sean Christopherson55d23752018-12-03 13:53:18 -08002594 return 0;
2595}
2596
2597static int nested_vmx_check_nmi_controls(struct vmcs12 *vmcs12)
2598{
Sean Christopherson5497b952019-07-11 08:58:29 -07002599 if (CC(!nested_cpu_has_nmi_exiting(vmcs12) &&
2600 nested_cpu_has_virtual_nmis(vmcs12)))
Sean Christopherson55d23752018-12-03 13:53:18 -08002601 return -EINVAL;
2602
Sean Christopherson5497b952019-07-11 08:58:29 -07002603 if (CC(!nested_cpu_has_virtual_nmis(vmcs12) &&
Xiaoyao Li4e2a0bc2019-12-06 16:45:25 +08002604 nested_cpu_has(vmcs12, CPU_BASED_NMI_WINDOW_EXITING)))
Sean Christopherson55d23752018-12-03 13:53:18 -08002605 return -EINVAL;
2606
2607 return 0;
2608}
2609
Sean Christophersonac6389a2020-03-02 18:02:38 -08002610static bool nested_vmx_check_eptp(struct kvm_vcpu *vcpu, u64 new_eptp)
Sean Christopherson55d23752018-12-03 13:53:18 -08002611{
2612 struct vcpu_vmx *vmx = to_vmx(vcpu);
2613 int maxphyaddr = cpuid_maxphyaddr(vcpu);
2614
2615 /* Check for memory type validity */
Sean Christophersonac6389a2020-03-02 18:02:38 -08002616 switch (new_eptp & VMX_EPTP_MT_MASK) {
Sean Christopherson55d23752018-12-03 13:53:18 -08002617 case VMX_EPTP_MT_UC:
Sean Christopherson5497b952019-07-11 08:58:29 -07002618 if (CC(!(vmx->nested.msrs.ept_caps & VMX_EPTP_UC_BIT)))
Sean Christopherson55d23752018-12-03 13:53:18 -08002619 return false;
2620 break;
2621 case VMX_EPTP_MT_WB:
Sean Christopherson5497b952019-07-11 08:58:29 -07002622 if (CC(!(vmx->nested.msrs.ept_caps & VMX_EPTP_WB_BIT)))
Sean Christopherson55d23752018-12-03 13:53:18 -08002623 return false;
2624 break;
2625 default:
2626 return false;
2627 }
2628
Sean Christophersonbb1fcc72020-03-02 18:02:36 -08002629 /* Page-walk levels validity. */
Sean Christophersonac6389a2020-03-02 18:02:38 -08002630 switch (new_eptp & VMX_EPTP_PWL_MASK) {
Sean Christophersonbb1fcc72020-03-02 18:02:36 -08002631 case VMX_EPTP_PWL_5:
2632 if (CC(!(vmx->nested.msrs.ept_caps & VMX_EPT_PAGE_WALK_5_BIT)))
2633 return false;
2634 break;
2635 case VMX_EPTP_PWL_4:
2636 if (CC(!(vmx->nested.msrs.ept_caps & VMX_EPT_PAGE_WALK_4_BIT)))
2637 return false;
2638 break;
2639 default:
Sean Christopherson55d23752018-12-03 13:53:18 -08002640 return false;
Sean Christophersonbb1fcc72020-03-02 18:02:36 -08002641 }
Sean Christopherson55d23752018-12-03 13:53:18 -08002642
2643 /* Reserved bits should not be set */
Sean Christophersonac6389a2020-03-02 18:02:38 -08002644 if (CC(new_eptp >> maxphyaddr || ((new_eptp >> 7) & 0x1f)))
Sean Christopherson55d23752018-12-03 13:53:18 -08002645 return false;
2646
2647 /* AD, if set, should be supported */
Sean Christophersonac6389a2020-03-02 18:02:38 -08002648 if (new_eptp & VMX_EPTP_AD_ENABLE_BIT) {
Sean Christopherson5497b952019-07-11 08:58:29 -07002649 if (CC(!(vmx->nested.msrs.ept_caps & VMX_EPT_AD_BIT)))
Sean Christopherson55d23752018-12-03 13:53:18 -08002650 return false;
2651 }
2652
2653 return true;
2654}
2655
Krish Sadhukhan461b4ba2018-12-12 13:30:07 -05002656/*
2657 * Checks related to VM-Execution Control Fields
2658 */
2659static int nested_check_vm_execution_controls(struct kvm_vcpu *vcpu,
2660 struct vmcs12 *vmcs12)
2661{
2662 struct vcpu_vmx *vmx = to_vmx(vcpu);
2663
Sean Christopherson5497b952019-07-11 08:58:29 -07002664 if (CC(!vmx_control_verify(vmcs12->pin_based_vm_exec_control,
2665 vmx->nested.msrs.pinbased_ctls_low,
2666 vmx->nested.msrs.pinbased_ctls_high)) ||
2667 CC(!vmx_control_verify(vmcs12->cpu_based_vm_exec_control,
2668 vmx->nested.msrs.procbased_ctls_low,
2669 vmx->nested.msrs.procbased_ctls_high)))
Krish Sadhukhan461b4ba2018-12-12 13:30:07 -05002670 return -EINVAL;
2671
2672 if (nested_cpu_has(vmcs12, CPU_BASED_ACTIVATE_SECONDARY_CONTROLS) &&
Sean Christopherson5497b952019-07-11 08:58:29 -07002673 CC(!vmx_control_verify(vmcs12->secondary_vm_exec_control,
2674 vmx->nested.msrs.secondary_ctls_low,
2675 vmx->nested.msrs.secondary_ctls_high)))
Krish Sadhukhan461b4ba2018-12-12 13:30:07 -05002676 return -EINVAL;
2677
Sean Christopherson5497b952019-07-11 08:58:29 -07002678 if (CC(vmcs12->cr3_target_count > nested_cpu_vmx_misc_cr3_count(vcpu)) ||
Krish Sadhukhan461b4ba2018-12-12 13:30:07 -05002679 nested_vmx_check_io_bitmap_controls(vcpu, vmcs12) ||
2680 nested_vmx_check_msr_bitmap_controls(vcpu, vmcs12) ||
2681 nested_vmx_check_tpr_shadow_controls(vcpu, vmcs12) ||
2682 nested_vmx_check_apic_access_controls(vcpu, vmcs12) ||
2683 nested_vmx_check_apicv_controls(vcpu, vmcs12) ||
2684 nested_vmx_check_nmi_controls(vmcs12) ||
2685 nested_vmx_check_pml_controls(vcpu, vmcs12) ||
2686 nested_vmx_check_unrestricted_guest_controls(vcpu, vmcs12) ||
2687 nested_vmx_check_mode_based_ept_exec_controls(vcpu, vmcs12) ||
2688 nested_vmx_check_shadow_vmcs_controls(vcpu, vmcs12) ||
Sean Christopherson5497b952019-07-11 08:58:29 -07002689 CC(nested_cpu_has_vpid(vmcs12) && !vmcs12->virtual_processor_id))
Krish Sadhukhan461b4ba2018-12-12 13:30:07 -05002690 return -EINVAL;
2691
Sean Christophersonbc441212019-02-12 16:42:23 -08002692 if (!nested_cpu_has_preemption_timer(vmcs12) &&
2693 nested_cpu_has_save_preemption_timer(vmcs12))
2694 return -EINVAL;
2695
Krish Sadhukhan461b4ba2018-12-12 13:30:07 -05002696 if (nested_cpu_has_ept(vmcs12) &&
Sean Christophersonac6389a2020-03-02 18:02:38 -08002697 CC(!nested_vmx_check_eptp(vcpu, vmcs12->ept_pointer)))
Krish Sadhukhan461b4ba2018-12-12 13:30:07 -05002698 return -EINVAL;
2699
2700 if (nested_cpu_has_vmfunc(vmcs12)) {
Sean Christopherson5497b952019-07-11 08:58:29 -07002701 if (CC(vmcs12->vm_function_control &
2702 ~vmx->nested.msrs.vmfunc_controls))
Krish Sadhukhan461b4ba2018-12-12 13:30:07 -05002703 return -EINVAL;
2704
2705 if (nested_cpu_has_eptp_switching(vmcs12)) {
Sean Christopherson5497b952019-07-11 08:58:29 -07002706 if (CC(!nested_cpu_has_ept(vmcs12)) ||
2707 CC(!page_address_valid(vcpu, vmcs12->eptp_list_address)))
Krish Sadhukhan461b4ba2018-12-12 13:30:07 -05002708 return -EINVAL;
2709 }
2710 }
2711
2712 return 0;
2713}
2714
Krish Sadhukhan61446ba2018-12-12 13:30:09 -05002715/*
2716 * Checks related to VM-Exit Control Fields
2717 */
2718static int nested_check_vm_exit_controls(struct kvm_vcpu *vcpu,
2719 struct vmcs12 *vmcs12)
2720{
2721 struct vcpu_vmx *vmx = to_vmx(vcpu);
2722
Sean Christopherson5497b952019-07-11 08:58:29 -07002723 if (CC(!vmx_control_verify(vmcs12->vm_exit_controls,
2724 vmx->nested.msrs.exit_ctls_low,
2725 vmx->nested.msrs.exit_ctls_high)) ||
2726 CC(nested_vmx_check_exit_msr_switch_controls(vcpu, vmcs12)))
Krish Sadhukhan61446ba2018-12-12 13:30:09 -05002727 return -EINVAL;
2728
2729 return 0;
2730}
2731
Krish Sadhukhan5fbf9632018-12-12 13:30:10 -05002732/*
2733 * Checks related to VM-Entry Control Fields
2734 */
2735static int nested_check_vm_entry_controls(struct kvm_vcpu *vcpu,
2736 struct vmcs12 *vmcs12)
Sean Christopherson55d23752018-12-03 13:53:18 -08002737{
2738 struct vcpu_vmx *vmx = to_vmx(vcpu);
Sean Christopherson55d23752018-12-03 13:53:18 -08002739
Sean Christopherson5497b952019-07-11 08:58:29 -07002740 if (CC(!vmx_control_verify(vmcs12->vm_entry_controls,
2741 vmx->nested.msrs.entry_ctls_low,
2742 vmx->nested.msrs.entry_ctls_high)))
Krish Sadhukhan5fbf9632018-12-12 13:30:10 -05002743 return -EINVAL;
Sean Christopherson55d23752018-12-03 13:53:18 -08002744
2745 /*
2746 * From the Intel SDM, volume 3:
2747 * Fields relevant to VM-entry event injection must be set properly.
2748 * These fields are the VM-entry interruption-information field, the
2749 * VM-entry exception error code, and the VM-entry instruction length.
2750 */
2751 if (vmcs12->vm_entry_intr_info_field & INTR_INFO_VALID_MASK) {
2752 u32 intr_info = vmcs12->vm_entry_intr_info_field;
2753 u8 vector = intr_info & INTR_INFO_VECTOR_MASK;
2754 u32 intr_type = intr_info & INTR_INFO_INTR_TYPE_MASK;
2755 bool has_error_code = intr_info & INTR_INFO_DELIVER_CODE_MASK;
2756 bool should_have_error_code;
2757 bool urg = nested_cpu_has2(vmcs12,
2758 SECONDARY_EXEC_UNRESTRICTED_GUEST);
2759 bool prot_mode = !urg || vmcs12->guest_cr0 & X86_CR0_PE;
2760
2761 /* VM-entry interruption-info field: interruption type */
Sean Christopherson5497b952019-07-11 08:58:29 -07002762 if (CC(intr_type == INTR_TYPE_RESERVED) ||
2763 CC(intr_type == INTR_TYPE_OTHER_EVENT &&
2764 !nested_cpu_supports_monitor_trap_flag(vcpu)))
Krish Sadhukhan5fbf9632018-12-12 13:30:10 -05002765 return -EINVAL;
Sean Christopherson55d23752018-12-03 13:53:18 -08002766
2767 /* VM-entry interruption-info field: vector */
Sean Christopherson5497b952019-07-11 08:58:29 -07002768 if (CC(intr_type == INTR_TYPE_NMI_INTR && vector != NMI_VECTOR) ||
2769 CC(intr_type == INTR_TYPE_HARD_EXCEPTION && vector > 31) ||
2770 CC(intr_type == INTR_TYPE_OTHER_EVENT && vector != 0))
Krish Sadhukhan5fbf9632018-12-12 13:30:10 -05002771 return -EINVAL;
Sean Christopherson55d23752018-12-03 13:53:18 -08002772
2773 /* VM-entry interruption-info field: deliver error code */
2774 should_have_error_code =
2775 intr_type == INTR_TYPE_HARD_EXCEPTION && prot_mode &&
2776 x86_exception_has_error_code(vector);
Sean Christopherson5497b952019-07-11 08:58:29 -07002777 if (CC(has_error_code != should_have_error_code))
Krish Sadhukhan5fbf9632018-12-12 13:30:10 -05002778 return -EINVAL;
Sean Christopherson55d23752018-12-03 13:53:18 -08002779
2780 /* VM-entry exception error code */
Sean Christopherson5497b952019-07-11 08:58:29 -07002781 if (CC(has_error_code &&
Sean Christopherson567926c2019-10-01 09:21:23 -07002782 vmcs12->vm_entry_exception_error_code & GENMASK(31, 16)))
Krish Sadhukhan5fbf9632018-12-12 13:30:10 -05002783 return -EINVAL;
Sean Christopherson55d23752018-12-03 13:53:18 -08002784
2785 /* VM-entry interruption-info field: reserved bits */
Sean Christopherson5497b952019-07-11 08:58:29 -07002786 if (CC(intr_info & INTR_INFO_RESVD_BITS_MASK))
Krish Sadhukhan5fbf9632018-12-12 13:30:10 -05002787 return -EINVAL;
Sean Christopherson55d23752018-12-03 13:53:18 -08002788
2789 /* VM-entry instruction length */
2790 switch (intr_type) {
2791 case INTR_TYPE_SOFT_EXCEPTION:
2792 case INTR_TYPE_SOFT_INTR:
2793 case INTR_TYPE_PRIV_SW_EXCEPTION:
Sean Christopherson5497b952019-07-11 08:58:29 -07002794 if (CC(vmcs12->vm_entry_instruction_len > 15) ||
2795 CC(vmcs12->vm_entry_instruction_len == 0 &&
2796 CC(!nested_cpu_has_zero_length_injection(vcpu))))
Krish Sadhukhan5fbf9632018-12-12 13:30:10 -05002797 return -EINVAL;
Sean Christopherson55d23752018-12-03 13:53:18 -08002798 }
2799 }
2800
Krish Sadhukhan5fbf9632018-12-12 13:30:10 -05002801 if (nested_vmx_check_entry_msr_switch_controls(vcpu, vmcs12))
2802 return -EINVAL;
2803
2804 return 0;
2805}
2806
Sean Christopherson5478ba32019-04-11 12:18:06 -07002807static int nested_vmx_check_controls(struct kvm_vcpu *vcpu,
2808 struct vmcs12 *vmcs12)
2809{
2810 if (nested_check_vm_execution_controls(vcpu, vmcs12) ||
2811 nested_check_vm_exit_controls(vcpu, vmcs12) ||
2812 nested_check_vm_entry_controls(vcpu, vmcs12))
Paolo Bonzini98d9e852019-04-12 10:19:57 +02002813 return -EINVAL;
Sean Christopherson5478ba32019-04-11 12:18:06 -07002814
Vitaly Kuznetsova8350232020-02-05 13:30:34 +01002815 if (to_vmx(vcpu)->nested.enlightened_vmcs_enabled)
2816 return nested_evmcs_check_controls(vmcs12);
2817
Sean Christopherson5478ba32019-04-11 12:18:06 -07002818 return 0;
2819}
2820
Paolo Bonzini98d9e852019-04-12 10:19:57 +02002821static int nested_vmx_check_host_state(struct kvm_vcpu *vcpu,
2822 struct vmcs12 *vmcs12)
Krish Sadhukhan5fbf9632018-12-12 13:30:10 -05002823{
2824 bool ia32e;
2825
Sean Christopherson5497b952019-07-11 08:58:29 -07002826 if (CC(!nested_host_cr0_valid(vcpu, vmcs12->host_cr0)) ||
2827 CC(!nested_host_cr4_valid(vcpu, vmcs12->host_cr4)) ||
2828 CC(!nested_cr3_valid(vcpu, vmcs12->host_cr3)))
Krish Sadhukhan254b2f32018-12-12 13:30:11 -05002829 return -EINVAL;
Krish Sadhukhan711eff32019-02-07 14:05:30 -05002830
Sean Christopherson5497b952019-07-11 08:58:29 -07002831 if (CC(is_noncanonical_address(vmcs12->host_ia32_sysenter_esp, vcpu)) ||
2832 CC(is_noncanonical_address(vmcs12->host_ia32_sysenter_eip, vcpu)))
Krish Sadhukhan711eff32019-02-07 14:05:30 -05002833 return -EINVAL;
2834
Krish Sadhukhanf6b0db1f2019-04-08 17:35:11 -04002835 if ((vmcs12->vm_exit_controls & VM_EXIT_LOAD_IA32_PAT) &&
Sean Christopherson5497b952019-07-11 08:58:29 -07002836 CC(!kvm_pat_valid(vmcs12->host_ia32_pat)))
Krish Sadhukhanf6b0db1f2019-04-08 17:35:11 -04002837 return -EINVAL;
2838
Oliver Uptonc547cb62019-11-13 16:17:17 -08002839 if ((vmcs12->vm_exit_controls & VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL) &&
2840 CC(!kvm_valid_perf_global_ctrl(vcpu_to_pmu(vcpu),
2841 vmcs12->host_ia32_perf_global_ctrl)))
2842 return -EINVAL;
2843
Paolo Bonzinifd3edd42019-09-25 18:33:53 +02002844#ifdef CONFIG_X86_64
2845 ia32e = !!(vcpu->arch.efer & EFER_LMA);
2846#else
2847 ia32e = false;
2848#endif
2849
2850 if (ia32e) {
2851 if (CC(!(vmcs12->vm_exit_controls & VM_EXIT_HOST_ADDR_SPACE_SIZE)) ||
2852 CC(!(vmcs12->host_cr4 & X86_CR4_PAE)))
2853 return -EINVAL;
2854 } else {
2855 if (CC(vmcs12->vm_exit_controls & VM_EXIT_HOST_ADDR_SPACE_SIZE) ||
2856 CC(vmcs12->vm_entry_controls & VM_ENTRY_IA32E_MODE) ||
2857 CC(vmcs12->host_cr4 & X86_CR4_PCIDE) ||
2858 CC((vmcs12->host_rip) >> 32))
2859 return -EINVAL;
2860 }
Krish Sadhukhan1ef23e12019-07-03 19:54:35 -04002861
Sean Christopherson5497b952019-07-11 08:58:29 -07002862 if (CC(vmcs12->host_cs_selector & (SEGMENT_RPL_MASK | SEGMENT_TI_MASK)) ||
2863 CC(vmcs12->host_ss_selector & (SEGMENT_RPL_MASK | SEGMENT_TI_MASK)) ||
2864 CC(vmcs12->host_ds_selector & (SEGMENT_RPL_MASK | SEGMENT_TI_MASK)) ||
2865 CC(vmcs12->host_es_selector & (SEGMENT_RPL_MASK | SEGMENT_TI_MASK)) ||
2866 CC(vmcs12->host_fs_selector & (SEGMENT_RPL_MASK | SEGMENT_TI_MASK)) ||
2867 CC(vmcs12->host_gs_selector & (SEGMENT_RPL_MASK | SEGMENT_TI_MASK)) ||
2868 CC(vmcs12->host_tr_selector & (SEGMENT_RPL_MASK | SEGMENT_TI_MASK)) ||
2869 CC(vmcs12->host_cs_selector == 0) ||
2870 CC(vmcs12->host_tr_selector == 0) ||
2871 CC(vmcs12->host_ss_selector == 0 && !ia32e))
Krish Sadhukhan1ef23e12019-07-03 19:54:35 -04002872 return -EINVAL;
2873
Sean Christopherson5497b952019-07-11 08:58:29 -07002874 if (CC(is_noncanonical_address(vmcs12->host_fs_base, vcpu)) ||
2875 CC(is_noncanonical_address(vmcs12->host_gs_base, vcpu)) ||
2876 CC(is_noncanonical_address(vmcs12->host_gdtr_base, vcpu)) ||
2877 CC(is_noncanonical_address(vmcs12->host_idtr_base, vcpu)) ||
Paolo Bonzinifd3edd42019-09-25 18:33:53 +02002878 CC(is_noncanonical_address(vmcs12->host_tr_base, vcpu)) ||
2879 CC(is_noncanonical_address(vmcs12->host_rip, vcpu)))
Krish Sadhukhan58450382019-08-09 12:26:19 -07002880 return -EINVAL;
Krish Sadhukhan1ef23e12019-07-03 19:54:35 -04002881
Krish Sadhukhan5fbf9632018-12-12 13:30:10 -05002882 /*
2883 * If the load IA32_EFER VM-exit control is 1, bits reserved in the
2884 * IA32_EFER MSR must be 0 in the field for that register. In addition,
2885 * the values of the LMA and LME bits in the field must each be that of
2886 * the host address-space size VM-exit control.
2887 */
2888 if (vmcs12->vm_exit_controls & VM_EXIT_LOAD_IA32_EFER) {
Sean Christopherson5497b952019-07-11 08:58:29 -07002889 if (CC(!kvm_valid_efer(vcpu, vmcs12->host_ia32_efer)) ||
2890 CC(ia32e != !!(vmcs12->host_ia32_efer & EFER_LMA)) ||
2891 CC(ia32e != !!(vmcs12->host_ia32_efer & EFER_LME)))
Krish Sadhukhan254b2f32018-12-12 13:30:11 -05002892 return -EINVAL;
Krish Sadhukhan5fbf9632018-12-12 13:30:10 -05002893 }
2894
Sean Christopherson55d23752018-12-03 13:53:18 -08002895 return 0;
2896}
2897
2898static int nested_vmx_check_vmcs_link_ptr(struct kvm_vcpu *vcpu,
2899 struct vmcs12 *vmcs12)
2900{
KarimAllah Ahmed88925302019-01-31 21:24:41 +01002901 int r = 0;
Sean Christopherson55d23752018-12-03 13:53:18 -08002902 struct vmcs12 *shadow;
KarimAllah Ahmed88925302019-01-31 21:24:41 +01002903 struct kvm_host_map map;
Sean Christopherson55d23752018-12-03 13:53:18 -08002904
2905 if (vmcs12->vmcs_link_pointer == -1ull)
2906 return 0;
2907
Sean Christopherson5497b952019-07-11 08:58:29 -07002908 if (CC(!page_address_valid(vcpu, vmcs12->vmcs_link_pointer)))
Sean Christopherson55d23752018-12-03 13:53:18 -08002909 return -EINVAL;
2910
Sean Christopherson5497b952019-07-11 08:58:29 -07002911 if (CC(kvm_vcpu_map(vcpu, gpa_to_gfn(vmcs12->vmcs_link_pointer), &map)))
Sean Christopherson55d23752018-12-03 13:53:18 -08002912 return -EINVAL;
2913
KarimAllah Ahmed88925302019-01-31 21:24:41 +01002914 shadow = map.hva;
2915
Sean Christopherson5497b952019-07-11 08:58:29 -07002916 if (CC(shadow->hdr.revision_id != VMCS12_REVISION) ||
2917 CC(shadow->hdr.shadow_vmcs != nested_cpu_has_shadow_vmcs(vmcs12)))
Sean Christopherson55d23752018-12-03 13:53:18 -08002918 r = -EINVAL;
KarimAllah Ahmed88925302019-01-31 21:24:41 +01002919
2920 kvm_vcpu_unmap(vcpu, &map, false);
Sean Christopherson55d23752018-12-03 13:53:18 -08002921 return r;
2922}
2923
Sean Christopherson55d23752018-12-03 13:53:18 -08002924/*
2925 * Checks related to Guest Non-register State
2926 */
2927static int nested_check_guest_non_reg_state(struct vmcs12 *vmcs12)
2928{
Sean Christopherson5497b952019-07-11 08:58:29 -07002929 if (CC(vmcs12->guest_activity_state != GUEST_ACTIVITY_ACTIVE &&
2930 vmcs12->guest_activity_state != GUEST_ACTIVITY_HLT))
Sean Christopherson55d23752018-12-03 13:53:18 -08002931 return -EINVAL;
2932
2933 return 0;
2934}
2935
Sean Christopherson5478ba32019-04-11 12:18:06 -07002936static int nested_vmx_check_guest_state(struct kvm_vcpu *vcpu,
2937 struct vmcs12 *vmcs12,
2938 u32 *exit_qual)
Sean Christopherson55d23752018-12-03 13:53:18 -08002939{
2940 bool ia32e;
2941
2942 *exit_qual = ENTRY_FAIL_DEFAULT;
2943
Sean Christopherson5497b952019-07-11 08:58:29 -07002944 if (CC(!nested_guest_cr0_valid(vcpu, vmcs12->guest_cr0)) ||
2945 CC(!nested_guest_cr4_valid(vcpu, vmcs12->guest_cr4)))
Sean Christophersonc80add02019-04-11 12:18:09 -07002946 return -EINVAL;
Sean Christopherson55d23752018-12-03 13:53:18 -08002947
Krish Sadhukhanb91991b2020-01-15 19:54:32 -05002948 if ((vmcs12->vm_entry_controls & VM_ENTRY_LOAD_DEBUG_CONTROLS) &&
2949 CC(!kvm_dr7_valid(vmcs12->guest_dr7)))
2950 return -EINVAL;
2951
Krish Sadhukhande2bc2b2019-04-08 17:35:12 -04002952 if ((vmcs12->vm_entry_controls & VM_ENTRY_LOAD_IA32_PAT) &&
Sean Christopherson5497b952019-07-11 08:58:29 -07002953 CC(!kvm_pat_valid(vmcs12->guest_ia32_pat)))
Sean Christophersonc80add02019-04-11 12:18:09 -07002954 return -EINVAL;
Sean Christopherson55d23752018-12-03 13:53:18 -08002955
2956 if (nested_vmx_check_vmcs_link_ptr(vcpu, vmcs12)) {
2957 *exit_qual = ENTRY_FAIL_VMCS_LINK_PTR;
Sean Christophersonc80add02019-04-11 12:18:09 -07002958 return -EINVAL;
Sean Christopherson55d23752018-12-03 13:53:18 -08002959 }
2960
Oliver Uptonbfc6ad62019-11-13 16:17:16 -08002961 if ((vmcs12->vm_entry_controls & VM_ENTRY_LOAD_IA32_PERF_GLOBAL_CTRL) &&
2962 CC(!kvm_valid_perf_global_ctrl(vcpu_to_pmu(vcpu),
2963 vmcs12->guest_ia32_perf_global_ctrl)))
2964 return -EINVAL;
2965
Sean Christopherson55d23752018-12-03 13:53:18 -08002966 /*
2967 * If the load IA32_EFER VM-entry control is 1, the following checks
2968 * are performed on the field for the IA32_EFER MSR:
2969 * - Bits reserved in the IA32_EFER MSR must be 0.
2970 * - Bit 10 (corresponding to IA32_EFER.LMA) must equal the value of
2971 * the IA-32e mode guest VM-exit control. It must also be identical
2972 * to bit 8 (LME) if bit 31 in the CR0 field (corresponding to
2973 * CR0.PG) is 1.
2974 */
2975 if (to_vmx(vcpu)->nested.nested_run_pending &&
2976 (vmcs12->vm_entry_controls & VM_ENTRY_LOAD_IA32_EFER)) {
2977 ia32e = (vmcs12->vm_entry_controls & VM_ENTRY_IA32E_MODE) != 0;
Sean Christopherson5497b952019-07-11 08:58:29 -07002978 if (CC(!kvm_valid_efer(vcpu, vmcs12->guest_ia32_efer)) ||
2979 CC(ia32e != !!(vmcs12->guest_ia32_efer & EFER_LMA)) ||
2980 CC(((vmcs12->guest_cr0 & X86_CR0_PG) &&
2981 ia32e != !!(vmcs12->guest_ia32_efer & EFER_LME))))
Sean Christophersonc80add02019-04-11 12:18:09 -07002982 return -EINVAL;
Sean Christopherson55d23752018-12-03 13:53:18 -08002983 }
2984
2985 if ((vmcs12->vm_entry_controls & VM_ENTRY_LOAD_BNDCFGS) &&
Sean Christopherson5497b952019-07-11 08:58:29 -07002986 (CC(is_noncanonical_address(vmcs12->guest_bndcfgs & PAGE_MASK, vcpu)) ||
2987 CC((vmcs12->guest_bndcfgs & MSR_IA32_BNDCFGS_RSVD))))
Sean Christophersonc80add02019-04-11 12:18:09 -07002988 return -EINVAL;
Sean Christopherson55d23752018-12-03 13:53:18 -08002989
Sean Christopherson9c3e9222019-04-11 12:18:05 -07002990 if (nested_check_guest_non_reg_state(vmcs12))
Sean Christophersonc80add02019-04-11 12:18:09 -07002991 return -EINVAL;
Sean Christopherson55d23752018-12-03 13:53:18 -08002992
2993 return 0;
2994}
2995
Sean Christopherson453eafb2018-12-20 12:25:17 -08002996static int nested_vmx_check_vmentry_hw(struct kvm_vcpu *vcpu)
Sean Christopherson55d23752018-12-03 13:53:18 -08002997{
2998 struct vcpu_vmx *vmx = to_vmx(vcpu);
2999 unsigned long cr3, cr4;
Sean Christophersonf1727b42019-01-25 07:40:58 -08003000 bool vm_fail;
Sean Christopherson55d23752018-12-03 13:53:18 -08003001
3002 if (!nested_early_check)
3003 return 0;
3004
3005 if (vmx->msr_autoload.host.nr)
3006 vmcs_write32(VM_EXIT_MSR_LOAD_COUNT, 0);
3007 if (vmx->msr_autoload.guest.nr)
3008 vmcs_write32(VM_ENTRY_MSR_LOAD_COUNT, 0);
3009
3010 preempt_disable();
3011
3012 vmx_prepare_switch_to_guest(vcpu);
3013
3014 /*
3015 * Induce a consistency check VMExit by clearing bit 1 in GUEST_RFLAGS,
3016 * which is reserved to '1' by hardware. GUEST_RFLAGS is guaranteed to
Miaohe Lin49f933d2020-02-27 11:20:54 +08003017 * be written (by prepare_vmcs02()) before the "real" VMEnter, i.e.
Sean Christopherson55d23752018-12-03 13:53:18 -08003018 * there is no need to preserve other bits or save/restore the field.
3019 */
3020 vmcs_writel(GUEST_RFLAGS, 0);
3021
Sean Christopherson55d23752018-12-03 13:53:18 -08003022 cr3 = __get_current_cr3_fast();
3023 if (unlikely(cr3 != vmx->loaded_vmcs->host_state.cr3)) {
3024 vmcs_writel(HOST_CR3, cr3);
3025 vmx->loaded_vmcs->host_state.cr3 = cr3;
3026 }
3027
3028 cr4 = cr4_read_shadow();
3029 if (unlikely(cr4 != vmx->loaded_vmcs->host_state.cr4)) {
3030 vmcs_writel(HOST_CR4, cr4);
3031 vmx->loaded_vmcs->host_state.cr4 = cr4;
3032 }
3033
Sean Christopherson55d23752018-12-03 13:53:18 -08003034 asm(
Sean Christopherson453eafb2018-12-20 12:25:17 -08003035 "sub $%c[wordsize], %%" _ASM_SP "\n\t" /* temporarily adjust RSP for CALL */
Sean Christopherson5a878162019-01-25 07:41:02 -08003036 "cmp %%" _ASM_SP ", %c[host_state_rsp](%[loaded_vmcs]) \n\t"
3037 "je 1f \n\t"
Sean Christophersonfbda0fd2019-01-25 07:41:01 -08003038 __ex("vmwrite %%" _ASM_SP ", %[HOST_RSP]") "\n\t"
Sean Christopherson5a878162019-01-25 07:41:02 -08003039 "mov %%" _ASM_SP ", %c[host_state_rsp](%[loaded_vmcs]) \n\t"
3040 "1: \n\t"
Sean Christopherson453eafb2018-12-20 12:25:17 -08003041 "add $%c[wordsize], %%" _ASM_SP "\n\t" /* un-adjust RSP */
Sean Christopherson55d23752018-12-03 13:53:18 -08003042
3043 /* Check if vmlaunch or vmresume is needed */
Sean Christopherson74dfa272019-01-25 07:41:00 -08003044 "cmpb $0, %c[launched](%[loaded_vmcs])\n\t"
Sean Christopherson453eafb2018-12-20 12:25:17 -08003045
Sean Christophersonf1727b42019-01-25 07:40:58 -08003046 /*
3047 * VMLAUNCH and VMRESUME clear RFLAGS.{CF,ZF} on VM-Exit, set
3048 * RFLAGS.CF on VM-Fail Invalid and set RFLAGS.ZF on VM-Fail
3049 * Valid. vmx_vmenter() directly "returns" RFLAGS, and so the
Sean Christophersonbbc0b822019-01-25 07:40:59 -08003050 * results of VM-Enter is captured via CC_{SET,OUT} to vm_fail.
Sean Christophersonf1727b42019-01-25 07:40:58 -08003051 */
Sean Christopherson453eafb2018-12-20 12:25:17 -08003052 "call vmx_vmenter\n\t"
3053
Sean Christophersonbbc0b822019-01-25 07:40:59 -08003054 CC_SET(be)
3055 : ASM_CALL_CONSTRAINT, CC_OUT(be) (vm_fail)
Sean Christopherson5a878162019-01-25 07:41:02 -08003056 : [HOST_RSP]"r"((unsigned long)HOST_RSP),
Sean Christopherson74dfa272019-01-25 07:41:00 -08003057 [loaded_vmcs]"r"(vmx->loaded_vmcs),
3058 [launched]"i"(offsetof(struct loaded_vmcs, launched)),
Sean Christopherson5a878162019-01-25 07:41:02 -08003059 [host_state_rsp]"i"(offsetof(struct loaded_vmcs, host_state.rsp)),
Sean Christopherson453eafb2018-12-20 12:25:17 -08003060 [wordsize]"i"(sizeof(ulong))
Jan Beulich5a253552019-05-27 02:45:44 -06003061 : "memory"
Sean Christopherson55d23752018-12-03 13:53:18 -08003062 );
3063
Sean Christopherson55d23752018-12-03 13:53:18 -08003064 if (vmx->msr_autoload.host.nr)
3065 vmcs_write32(VM_EXIT_MSR_LOAD_COUNT, vmx->msr_autoload.host.nr);
3066 if (vmx->msr_autoload.guest.nr)
3067 vmcs_write32(VM_ENTRY_MSR_LOAD_COUNT, vmx->msr_autoload.guest.nr);
3068
Sean Christophersonf1727b42019-01-25 07:40:58 -08003069 if (vm_fail) {
Sean Christopherson380e0052019-07-11 08:58:30 -07003070 u32 error = vmcs_read32(VM_INSTRUCTION_ERROR);
3071
Wanpeng Li541e8862019-05-17 16:49:50 +08003072 preempt_enable();
Sean Christopherson380e0052019-07-11 08:58:30 -07003073
3074 trace_kvm_nested_vmenter_failed(
3075 "early hardware check VM-instruction error: ", error);
3076 WARN_ON_ONCE(error != VMXERR_ENTRY_INVALID_CONTROL_FIELD);
Sean Christopherson55d23752018-12-03 13:53:18 -08003077 return 1;
3078 }
3079
3080 /*
3081 * VMExit clears RFLAGS.IF and DR7, even on a consistency check.
3082 */
3083 local_irq_enable();
3084 if (hw_breakpoint_active())
3085 set_debugreg(__this_cpu_read(cpu_dr7), 7);
Wanpeng Li541e8862019-05-17 16:49:50 +08003086 preempt_enable();
Sean Christopherson55d23752018-12-03 13:53:18 -08003087
3088 /*
3089 * A non-failing VMEntry means we somehow entered guest mode with
3090 * an illegal RIP, and that's just the tip of the iceberg. There
3091 * is no telling what memory has been modified or what state has
3092 * been exposed to unknown code. Hitting this all but guarantees
3093 * a (very critical) hardware issue.
3094 */
3095 WARN_ON(!(vmcs_read32(VM_EXIT_REASON) &
3096 VMX_EXIT_REASONS_FAILED_VMENTRY));
3097
3098 return 0;
3099}
Sean Christopherson55d23752018-12-03 13:53:18 -08003100
Jim Mattson671ddc72019-10-15 10:44:05 -07003101static bool nested_get_vmcs12_pages(struct kvm_vcpu *vcpu)
Sean Christopherson55d23752018-12-03 13:53:18 -08003102{
3103 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
3104 struct vcpu_vmx *vmx = to_vmx(vcpu);
KarimAllah Ahmed96c66e82019-01-31 21:24:37 +01003105 struct kvm_host_map *map;
Sean Christopherson55d23752018-12-03 13:53:18 -08003106 struct page *page;
3107 u64 hpa;
3108
Vitaly Kuznetsove942dbf2020-03-09 16:52:12 +01003109 /*
3110 * hv_evmcs may end up being not mapped after migration (when
3111 * L2 was running), map it here to make sure vmcs12 changes are
3112 * properly reflected.
3113 */
Vitaly Kuznetsovb6a06532020-03-09 16:52:13 +01003114 if (vmx->nested.enlightened_vmcs_enabled && !vmx->nested.hv_evmcs) {
3115 enum nested_evmptrld_status evmptrld_status =
3116 nested_vmx_handle_enlightened_vmptrld(vcpu, false);
3117
3118 if (evmptrld_status == EVMPTRLD_VMFAIL ||
3119 evmptrld_status == EVMPTRLD_ERROR) {
3120 pr_debug_ratelimited("%s: enlightened vmptrld failed\n",
3121 __func__);
3122 vcpu->run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
3123 vcpu->run->internal.suberror =
3124 KVM_INTERNAL_ERROR_EMULATION;
3125 vcpu->run->internal.ndata = 0;
3126 return false;
3127 }
3128 }
Vitaly Kuznetsove942dbf2020-03-09 16:52:12 +01003129
Sean Christopherson55d23752018-12-03 13:53:18 -08003130 if (nested_cpu_has2(vmcs12, SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES)) {
3131 /*
3132 * Translate L1 physical address to host physical
3133 * address for vmcs02. Keep the page pinned, so this
3134 * physical address remains valid. We keep a reference
3135 * to it so we can release it later.
3136 */
3137 if (vmx->nested.apic_access_page) { /* shouldn't happen */
Liran Alonb11494b2019-11-21 00:31:47 +02003138 kvm_release_page_clean(vmx->nested.apic_access_page);
Sean Christopherson55d23752018-12-03 13:53:18 -08003139 vmx->nested.apic_access_page = NULL;
3140 }
3141 page = kvm_vcpu_gpa_to_page(vcpu, vmcs12->apic_access_addr);
Sean Christopherson55d23752018-12-03 13:53:18 -08003142 if (!is_error_page(page)) {
3143 vmx->nested.apic_access_page = page;
3144 hpa = page_to_phys(vmx->nested.apic_access_page);
3145 vmcs_write64(APIC_ACCESS_ADDR, hpa);
3146 } else {
Jim Mattson671ddc72019-10-15 10:44:05 -07003147 pr_debug_ratelimited("%s: no backing 'struct page' for APIC-access address in vmcs12\n",
3148 __func__);
3149 vcpu->run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
3150 vcpu->run->internal.suberror =
3151 KVM_INTERNAL_ERROR_EMULATION;
3152 vcpu->run->internal.ndata = 0;
3153 return false;
Sean Christopherson55d23752018-12-03 13:53:18 -08003154 }
3155 }
3156
3157 if (nested_cpu_has(vmcs12, CPU_BASED_TPR_SHADOW)) {
KarimAllah Ahmed96c66e82019-01-31 21:24:37 +01003158 map = &vmx->nested.virtual_apic_map;
Sean Christopherson55d23752018-12-03 13:53:18 -08003159
KarimAllah Ahmed96c66e82019-01-31 21:24:37 +01003160 if (!kvm_vcpu_map(vcpu, gpa_to_gfn(vmcs12->virtual_apic_page_addr), map)) {
3161 vmcs_write64(VIRTUAL_APIC_PAGE_ADDR, pfn_to_hpa(map->pfn));
Paolo Bonzini69090812019-04-15 15:16:17 +02003162 } else if (nested_cpu_has(vmcs12, CPU_BASED_CR8_LOAD_EXITING) &&
3163 nested_cpu_has(vmcs12, CPU_BASED_CR8_STORE_EXITING) &&
3164 !nested_cpu_has2(vmcs12, SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES)) {
3165 /*
3166 * The processor will never use the TPR shadow, simply
3167 * clear the bit from the execution control. Such a
3168 * configuration is useless, but it happens in tests.
3169 * For any other configuration, failing the vm entry is
3170 * _not_ what the processor does but it's basically the
3171 * only possibility we have.
3172 */
Sean Christopherson2183f562019-05-07 12:17:56 -07003173 exec_controls_clearbit(vmx, CPU_BASED_TPR_SHADOW);
Paolo Bonzini69090812019-04-15 15:16:17 +02003174 } else {
Sean Christophersonca2f5462019-05-07 09:06:33 -07003175 /*
3176 * Write an illegal value to VIRTUAL_APIC_PAGE_ADDR to
3177 * force VM-Entry to fail.
3178 */
3179 vmcs_write64(VIRTUAL_APIC_PAGE_ADDR, -1ull);
Sean Christopherson55d23752018-12-03 13:53:18 -08003180 }
3181 }
3182
3183 if (nested_cpu_has_posted_intr(vmcs12)) {
KarimAllah Ahmed3278e042019-01-31 21:24:38 +01003184 map = &vmx->nested.pi_desc_map;
3185
3186 if (!kvm_vcpu_map(vcpu, gpa_to_gfn(vmcs12->posted_intr_desc_addr), map)) {
3187 vmx->nested.pi_desc =
3188 (struct pi_desc *)(((void *)map->hva) +
3189 offset_in_page(vmcs12->posted_intr_desc_addr));
3190 vmcs_write64(POSTED_INTR_DESC_ADDR,
3191 pfn_to_hpa(map->pfn) + offset_in_page(vmcs12->posted_intr_desc_addr));
Sean Christopherson55d23752018-12-03 13:53:18 -08003192 }
Sean Christopherson55d23752018-12-03 13:53:18 -08003193 }
3194 if (nested_vmx_prepare_msr_bitmap(vcpu, vmcs12))
Sean Christopherson2183f562019-05-07 12:17:56 -07003195 exec_controls_setbit(vmx, CPU_BASED_USE_MSR_BITMAPS);
Sean Christopherson55d23752018-12-03 13:53:18 -08003196 else
Sean Christopherson2183f562019-05-07 12:17:56 -07003197 exec_controls_clearbit(vmx, CPU_BASED_USE_MSR_BITMAPS);
Jim Mattson671ddc72019-10-15 10:44:05 -07003198 return true;
Sean Christopherson55d23752018-12-03 13:53:18 -08003199}
3200
3201/*
3202 * Intel's VMX Instruction Reference specifies a common set of prerequisites
3203 * for running VMX instructions (except VMXON, whose prerequisites are
3204 * slightly different). It also specifies what exception to inject otherwise.
3205 * Note that many of these exceptions have priority over VM exits, so they
3206 * don't have to be checked again here.
3207 */
3208static int nested_vmx_check_permission(struct kvm_vcpu *vcpu)
3209{
3210 if (!to_vmx(vcpu)->nested.vmxon) {
3211 kvm_queue_exception(vcpu, UD_VECTOR);
3212 return 0;
3213 }
3214
3215 if (vmx_get_cpl(vcpu)) {
3216 kvm_inject_gp(vcpu, 0);
3217 return 0;
3218 }
3219
3220 return 1;
3221}
3222
3223static u8 vmx_has_apicv_interrupt(struct kvm_vcpu *vcpu)
3224{
3225 u8 rvi = vmx_get_rvi();
3226 u8 vppr = kvm_lapic_get_reg(vcpu->arch.apic, APIC_PROCPRI);
3227
3228 return ((rvi & 0xf0) > (vppr & 0xf0));
3229}
3230
3231static void load_vmcs12_host_state(struct kvm_vcpu *vcpu,
3232 struct vmcs12 *vmcs12);
3233
3234/*
3235 * If from_vmentry is false, this is being called from state restore (either RSM
3236 * or KVM_SET_NESTED_STATE). Otherwise it's called from vmlaunch/vmresume.
Jim Mattson671ddc72019-10-15 10:44:05 -07003237 *
3238 * Returns:
Miaohe Lin463bfee2020-02-14 10:44:05 +08003239 * NVMX_VMENTRY_SUCCESS: Entered VMX non-root mode
3240 * NVMX_VMENTRY_VMFAIL: Consistency check VMFail
3241 * NVMX_VMENTRY_VMEXIT: Consistency check VMExit
3242 * NVMX_VMENTRY_KVM_INTERNAL_ERROR: KVM internal error
Sean Christopherson55d23752018-12-03 13:53:18 -08003243 */
Jim Mattson671ddc72019-10-15 10:44:05 -07003244enum nvmx_vmentry_status nested_vmx_enter_non_root_mode(struct kvm_vcpu *vcpu,
3245 bool from_vmentry)
Sean Christopherson55d23752018-12-03 13:53:18 -08003246{
3247 struct vcpu_vmx *vmx = to_vmx(vcpu);
3248 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
3249 bool evaluate_pending_interrupts;
3250 u32 exit_reason = EXIT_REASON_INVALID_STATE;
3251 u32 exit_qual;
3252
Sean Christophersoneeeb4f62020-03-20 14:28:20 -07003253 if (kvm_check_request(KVM_REQ_TLB_FLUSH_CURRENT, vcpu))
3254 kvm_vcpu_flush_tlb_current(vcpu);
3255
Sean Christopherson2183f562019-05-07 12:17:56 -07003256 evaluate_pending_interrupts = exec_controls_get(vmx) &
Xiaoyao Li4e2a0bc2019-12-06 16:45:25 +08003257 (CPU_BASED_INTR_WINDOW_EXITING | CPU_BASED_NMI_WINDOW_EXITING);
Sean Christopherson55d23752018-12-03 13:53:18 -08003258 if (likely(!evaluate_pending_interrupts) && kvm_vcpu_apicv_active(vcpu))
3259 evaluate_pending_interrupts |= vmx_has_apicv_interrupt(vcpu);
3260
3261 if (!(vmcs12->vm_entry_controls & VM_ENTRY_LOAD_DEBUG_CONTROLS))
3262 vmx->nested.vmcs01_debugctl = vmcs_read64(GUEST_IA32_DEBUGCTL);
3263 if (kvm_mpx_supported() &&
3264 !(vmcs12->vm_entry_controls & VM_ENTRY_LOAD_BNDCFGS))
3265 vmx->nested.vmcs01_guest_bndcfgs = vmcs_read64(GUEST_BNDCFGS);
3266
Sean Christophersonf087a022019-06-07 11:55:34 -07003267 /*
3268 * Overwrite vmcs01.GUEST_CR3 with L1's CR3 if EPT is disabled *and*
3269 * nested early checks are disabled. In the event of a "late" VM-Fail,
3270 * i.e. a VM-Fail detected by hardware but not KVM, KVM must unwind its
3271 * software model to the pre-VMEntry host state. When EPT is disabled,
3272 * GUEST_CR3 holds KVM's shadow CR3, not L1's "real" CR3, which causes
3273 * nested_vmx_restore_host_state() to corrupt vcpu->arch.cr3. Stuffing
3274 * vmcs01.GUEST_CR3 results in the unwind naturally setting arch.cr3 to
3275 * the correct value. Smashing vmcs01.GUEST_CR3 is safe because nested
3276 * VM-Exits, and the unwind, reset KVM's MMU, i.e. vmcs01.GUEST_CR3 is
3277 * guaranteed to be overwritten with a shadow CR3 prior to re-entering
3278 * L1. Don't stuff vmcs01.GUEST_CR3 when using nested early checks as
3279 * KVM modifies vcpu->arch.cr3 if and only if the early hardware checks
3280 * pass, and early VM-Fails do not reset KVM's MMU, i.e. the VM-Fail
3281 * path would need to manually save/restore vmcs01.GUEST_CR3.
3282 */
3283 if (!enable_ept && !nested_early_check)
3284 vmcs_writel(GUEST_CR3, vcpu->arch.cr3);
3285
Sean Christopherson55d23752018-12-03 13:53:18 -08003286 vmx_switch_vmcs(vcpu, &vmx->nested.vmcs02);
3287
3288 prepare_vmcs02_early(vmx, vmcs12);
3289
3290 if (from_vmentry) {
Jim Mattson671ddc72019-10-15 10:44:05 -07003291 if (unlikely(!nested_get_vmcs12_pages(vcpu)))
3292 return NVMX_VMENTRY_KVM_INTERNAL_ERROR;
Sean Christopherson55d23752018-12-03 13:53:18 -08003293
3294 if (nested_vmx_check_vmentry_hw(vcpu)) {
3295 vmx_switch_vmcs(vcpu, &vmx->vmcs01);
Jim Mattson671ddc72019-10-15 10:44:05 -07003296 return NVMX_VMENTRY_VMFAIL;
Sean Christopherson55d23752018-12-03 13:53:18 -08003297 }
3298
Sean Christopherson5478ba32019-04-11 12:18:06 -07003299 if (nested_vmx_check_guest_state(vcpu, vmcs12, &exit_qual))
Sean Christopherson55d23752018-12-03 13:53:18 -08003300 goto vmentry_fail_vmexit;
3301 }
3302
3303 enter_guest_mode(vcpu);
Xiaoyao Li5e3d3942019-12-06 16:45:26 +08003304 if (vmcs12->cpu_based_vm_exec_control & CPU_BASED_USE_TSC_OFFSETTING)
Sean Christopherson55d23752018-12-03 13:53:18 -08003305 vcpu->arch.tsc_offset += vmcs12->tsc_offset;
3306
3307 if (prepare_vmcs02(vcpu, vmcs12, &exit_qual))
3308 goto vmentry_fail_vmexit_guest_mode;
3309
3310 if (from_vmentry) {
3311 exit_reason = EXIT_REASON_MSR_LOAD_FAIL;
3312 exit_qual = nested_vmx_load_msr(vcpu,
3313 vmcs12->vm_entry_msr_load_addr,
3314 vmcs12->vm_entry_msr_load_count);
3315 if (exit_qual)
3316 goto vmentry_fail_vmexit_guest_mode;
3317 } else {
3318 /*
3319 * The MMU is not initialized to point at the right entities yet and
3320 * "get pages" would need to read data from the guest (i.e. we will
3321 * need to perform gpa to hpa translation). Request a call
3322 * to nested_get_vmcs12_pages before the next VM-entry. The MSRs
3323 * have already been set at vmentry time and should not be reset.
3324 */
3325 kvm_make_request(KVM_REQ_GET_VMCS12_PAGES, vcpu);
3326 }
3327
3328 /*
3329 * If L1 had a pending IRQ/NMI until it executed
3330 * VMLAUNCH/VMRESUME which wasn't delivered because it was
3331 * disallowed (e.g. interrupts disabled), L0 needs to
3332 * evaluate if this pending event should cause an exit from L2
3333 * to L1 or delivered directly to L2 (e.g. In case L1 don't
3334 * intercept EXTERNAL_INTERRUPT).
3335 *
3336 * Usually this would be handled by the processor noticing an
3337 * IRQ/NMI window request, or checking RVI during evaluation of
3338 * pending virtual interrupts. However, this setting was done
3339 * on VMCS01 and now VMCS02 is active instead. Thus, we force L0
3340 * to perform pending event evaluation by requesting a KVM_REQ_EVENT.
3341 */
3342 if (unlikely(evaluate_pending_interrupts))
3343 kvm_make_request(KVM_REQ_EVENT, vcpu);
3344
3345 /*
Paolo Bonzini359a6c32019-01-29 19:14:46 +01003346 * Do not start the preemption timer hrtimer until after we know
3347 * we are successful, so that only nested_vmx_vmexit needs to cancel
3348 * the timer.
3349 */
3350 vmx->nested.preemption_timer_expired = false;
3351 if (nested_cpu_has_preemption_timer(vmcs12))
3352 vmx_start_preemption_timer(vcpu);
3353
3354 /*
Sean Christopherson55d23752018-12-03 13:53:18 -08003355 * Note no nested_vmx_succeed or nested_vmx_fail here. At this point
3356 * we are no longer running L1, and VMLAUNCH/VMRESUME has not yet
3357 * returned as far as L1 is concerned. It will only return (and set
3358 * the success flag) when L2 exits (see nested_vmx_vmexit()).
3359 */
Jim Mattson671ddc72019-10-15 10:44:05 -07003360 return NVMX_VMENTRY_SUCCESS;
Sean Christopherson55d23752018-12-03 13:53:18 -08003361
3362 /*
3363 * A failed consistency check that leads to a VMExit during L1's
3364 * VMEnter to L2 is a variation of a normal VMexit, as explained in
3365 * 26.7 "VM-entry failures during or after loading guest state".
3366 */
3367vmentry_fail_vmexit_guest_mode:
Xiaoyao Li5e3d3942019-12-06 16:45:26 +08003368 if (vmcs12->cpu_based_vm_exec_control & CPU_BASED_USE_TSC_OFFSETTING)
Sean Christopherson55d23752018-12-03 13:53:18 -08003369 vcpu->arch.tsc_offset -= vmcs12->tsc_offset;
3370 leave_guest_mode(vcpu);
3371
3372vmentry_fail_vmexit:
3373 vmx_switch_vmcs(vcpu, &vmx->vmcs01);
3374
3375 if (!from_vmentry)
Jim Mattson671ddc72019-10-15 10:44:05 -07003376 return NVMX_VMENTRY_VMEXIT;
Sean Christopherson55d23752018-12-03 13:53:18 -08003377
3378 load_vmcs12_host_state(vcpu, vmcs12);
3379 vmcs12->vm_exit_reason = exit_reason | VMX_EXIT_REASONS_FAILED_VMENTRY;
3380 vmcs12->exit_qualification = exit_qual;
3381 if (enable_shadow_vmcs || vmx->nested.hv_evmcs)
Sean Christopherson3731905ef2019-05-07 08:36:27 -07003382 vmx->nested.need_vmcs12_to_shadow_sync = true;
Jim Mattson671ddc72019-10-15 10:44:05 -07003383 return NVMX_VMENTRY_VMEXIT;
Sean Christopherson55d23752018-12-03 13:53:18 -08003384}
3385
3386/*
3387 * nested_vmx_run() handles a nested entry, i.e., a VMLAUNCH or VMRESUME on L1
3388 * for running an L2 nested guest.
3389 */
3390static int nested_vmx_run(struct kvm_vcpu *vcpu, bool launch)
3391{
3392 struct vmcs12 *vmcs12;
Jim Mattson671ddc72019-10-15 10:44:05 -07003393 enum nvmx_vmentry_status status;
Sean Christopherson55d23752018-12-03 13:53:18 -08003394 struct vcpu_vmx *vmx = to_vmx(vcpu);
3395 u32 interrupt_shadow = vmx_get_interrupt_shadow(vcpu);
Vitaly Kuznetsovb6a06532020-03-09 16:52:13 +01003396 enum nested_evmptrld_status evmptrld_status;
Sean Christopherson55d23752018-12-03 13:53:18 -08003397
3398 if (!nested_vmx_check_permission(vcpu))
3399 return 1;
3400
Vitaly Kuznetsovb6a06532020-03-09 16:52:13 +01003401 evmptrld_status = nested_vmx_handle_enlightened_vmptrld(vcpu, launch);
3402 if (evmptrld_status == EVMPTRLD_ERROR) {
3403 kvm_queue_exception(vcpu, UD_VECTOR);
Sean Christopherson55d23752018-12-03 13:53:18 -08003404 return 1;
Vitaly Kuznetsovb6a06532020-03-09 16:52:13 +01003405 } else if (evmptrld_status == EVMPTRLD_VMFAIL) {
3406 return nested_vmx_failInvalid(vcpu);
3407 }
Sean Christopherson55d23752018-12-03 13:53:18 -08003408
3409 if (!vmx->nested.hv_evmcs && vmx->nested.current_vmptr == -1ull)
3410 return nested_vmx_failInvalid(vcpu);
3411
3412 vmcs12 = get_vmcs12(vcpu);
3413
3414 /*
3415 * Can't VMLAUNCH or VMRESUME a shadow VMCS. Despite the fact
3416 * that there *is* a valid VMCS pointer, RFLAGS.CF is set
3417 * rather than RFLAGS.ZF, and no error number is stored to the
3418 * VM-instruction error field.
3419 */
3420 if (vmcs12->hdr.shadow_vmcs)
3421 return nested_vmx_failInvalid(vcpu);
3422
3423 if (vmx->nested.hv_evmcs) {
3424 copy_enlightened_to_vmcs12(vmx);
3425 /* Enlightened VMCS doesn't have launch state */
3426 vmcs12->launch_state = !launch;
3427 } else if (enable_shadow_vmcs) {
3428 copy_shadow_to_vmcs12(vmx);
3429 }
3430
3431 /*
3432 * The nested entry process starts with enforcing various prerequisites
3433 * on vmcs12 as required by the Intel SDM, and act appropriately when
3434 * they fail: As the SDM explains, some conditions should cause the
3435 * instruction to fail, while others will cause the instruction to seem
3436 * to succeed, but return an EXIT_REASON_INVALID_STATE.
3437 * To speed up the normal (success) code path, we should avoid checking
3438 * for misconfigurations which will anyway be caught by the processor
3439 * when using the merged vmcs02.
3440 */
3441 if (interrupt_shadow & KVM_X86_SHADOW_INT_MOV_SS)
3442 return nested_vmx_failValid(vcpu,
3443 VMXERR_ENTRY_EVENTS_BLOCKED_BY_MOV_SS);
3444
3445 if (vmcs12->launch_state == launch)
3446 return nested_vmx_failValid(vcpu,
3447 launch ? VMXERR_VMLAUNCH_NONCLEAR_VMCS
3448 : VMXERR_VMRESUME_NONLAUNCHED_VMCS);
3449
Paolo Bonzini98d9e852019-04-12 10:19:57 +02003450 if (nested_vmx_check_controls(vcpu, vmcs12))
3451 return nested_vmx_failValid(vcpu, VMXERR_ENTRY_INVALID_CONTROL_FIELD);
Sean Christopherson5478ba32019-04-11 12:18:06 -07003452
Paolo Bonzini98d9e852019-04-12 10:19:57 +02003453 if (nested_vmx_check_host_state(vcpu, vmcs12))
3454 return nested_vmx_failValid(vcpu, VMXERR_ENTRY_INVALID_HOST_STATE_FIELD);
Sean Christopherson55d23752018-12-03 13:53:18 -08003455
3456 /*
3457 * We're finally done with prerequisite checking, and can start with
3458 * the nested entry.
3459 */
3460 vmx->nested.nested_run_pending = 1;
Jim Mattson671ddc72019-10-15 10:44:05 -07003461 status = nested_vmx_enter_non_root_mode(vcpu, true);
3462 if (unlikely(status != NVMX_VMENTRY_SUCCESS))
3463 goto vmentry_failed;
Sean Christopherson55d23752018-12-03 13:53:18 -08003464
3465 /* Hide L1D cache contents from the nested guest. */
3466 vmx->vcpu.arch.l1tf_flush_l1d = true;
3467
3468 /*
3469 * Must happen outside of nested_vmx_enter_non_root_mode() as it will
3470 * also be used as part of restoring nVMX state for
3471 * snapshot restore (migration).
3472 *
3473 * In this flow, it is assumed that vmcs12 cache was
3474 * trasferred as part of captured nVMX state and should
3475 * therefore not be read from guest memory (which may not
3476 * exist on destination host yet).
3477 */
3478 nested_cache_shadow_vmcs12(vcpu, vmcs12);
3479
3480 /*
Jim Mattson9ebdfe52018-11-26 11:22:32 -08003481 * If we're entering a halted L2 vcpu and the L2 vcpu won't be
3482 * awakened by event injection or by an NMI-window VM-exit or
3483 * by an interrupt-window VM-exit, halt the vcpu.
Sean Christopherson55d23752018-12-03 13:53:18 -08003484 */
3485 if ((vmcs12->guest_activity_state == GUEST_ACTIVITY_HLT) &&
Jim Mattson9ebdfe52018-11-26 11:22:32 -08003486 !(vmcs12->vm_entry_intr_info_field & INTR_INFO_VALID_MASK) &&
Xiaoyao Li4e2a0bc2019-12-06 16:45:25 +08003487 !(vmcs12->cpu_based_vm_exec_control & CPU_BASED_NMI_WINDOW_EXITING) &&
Xiaoyao Li9dadc2f2019-12-06 16:45:24 +08003488 !((vmcs12->cpu_based_vm_exec_control & CPU_BASED_INTR_WINDOW_EXITING) &&
Jim Mattson9ebdfe52018-11-26 11:22:32 -08003489 (vmcs12->guest_rflags & X86_EFLAGS_IF))) {
Sean Christopherson55d23752018-12-03 13:53:18 -08003490 vmx->nested.nested_run_pending = 0;
3491 return kvm_vcpu_halt(vcpu);
3492 }
3493 return 1;
Jim Mattson671ddc72019-10-15 10:44:05 -07003494
3495vmentry_failed:
3496 vmx->nested.nested_run_pending = 0;
3497 if (status == NVMX_VMENTRY_KVM_INTERNAL_ERROR)
3498 return 0;
3499 if (status == NVMX_VMENTRY_VMEXIT)
3500 return 1;
3501 WARN_ON_ONCE(status != NVMX_VMENTRY_VMFAIL);
3502 return nested_vmx_failValid(vcpu, VMXERR_ENTRY_INVALID_CONTROL_FIELD);
Sean Christopherson55d23752018-12-03 13:53:18 -08003503}
3504
3505/*
3506 * On a nested exit from L2 to L1, vmcs12.guest_cr0 might not be up-to-date
Miaohe Lin67b0ae42019-12-11 14:26:22 +08003507 * because L2 may have changed some cr0 bits directly (CR0_GUEST_HOST_MASK).
Sean Christopherson55d23752018-12-03 13:53:18 -08003508 * This function returns the new value we should put in vmcs12.guest_cr0.
3509 * It's not enough to just return the vmcs02 GUEST_CR0. Rather,
3510 * 1. Bits that neither L0 nor L1 trapped, were set directly by L2 and are now
3511 * available in vmcs02 GUEST_CR0. (Note: It's enough to check that L0
3512 * didn't trap the bit, because if L1 did, so would L0).
3513 * 2. Bits that L1 asked to trap (and therefore L0 also did) could not have
3514 * been modified by L2, and L1 knows it. So just leave the old value of
3515 * the bit from vmcs12.guest_cr0. Note that the bit from vmcs02 GUEST_CR0
3516 * isn't relevant, because if L0 traps this bit it can set it to anything.
3517 * 3. Bits that L1 didn't trap, but L0 did. L1 believes the guest could have
3518 * changed these bits, and therefore they need to be updated, but L0
3519 * didn't necessarily allow them to be changed in GUEST_CR0 - and rather
3520 * put them in vmcs02 CR0_READ_SHADOW. So take these bits from there.
3521 */
3522static inline unsigned long
3523vmcs12_guest_cr0(struct kvm_vcpu *vcpu, struct vmcs12 *vmcs12)
3524{
3525 return
3526 /*1*/ (vmcs_readl(GUEST_CR0) & vcpu->arch.cr0_guest_owned_bits) |
3527 /*2*/ (vmcs12->guest_cr0 & vmcs12->cr0_guest_host_mask) |
3528 /*3*/ (vmcs_readl(CR0_READ_SHADOW) & ~(vmcs12->cr0_guest_host_mask |
3529 vcpu->arch.cr0_guest_owned_bits));
3530}
3531
3532static inline unsigned long
3533vmcs12_guest_cr4(struct kvm_vcpu *vcpu, struct vmcs12 *vmcs12)
3534{
3535 return
3536 /*1*/ (vmcs_readl(GUEST_CR4) & vcpu->arch.cr4_guest_owned_bits) |
3537 /*2*/ (vmcs12->guest_cr4 & vmcs12->cr4_guest_host_mask) |
3538 /*3*/ (vmcs_readl(CR4_READ_SHADOW) & ~(vmcs12->cr4_guest_host_mask |
3539 vcpu->arch.cr4_guest_owned_bits));
3540}
3541
3542static void vmcs12_save_pending_event(struct kvm_vcpu *vcpu,
3543 struct vmcs12 *vmcs12)
3544{
3545 u32 idt_vectoring;
3546 unsigned int nr;
3547
3548 if (vcpu->arch.exception.injected) {
3549 nr = vcpu->arch.exception.nr;
3550 idt_vectoring = nr | VECTORING_INFO_VALID_MASK;
3551
3552 if (kvm_exception_is_soft(nr)) {
3553 vmcs12->vm_exit_instruction_len =
3554 vcpu->arch.event_exit_inst_len;
3555 idt_vectoring |= INTR_TYPE_SOFT_EXCEPTION;
3556 } else
3557 idt_vectoring |= INTR_TYPE_HARD_EXCEPTION;
3558
3559 if (vcpu->arch.exception.has_error_code) {
3560 idt_vectoring |= VECTORING_INFO_DELIVER_CODE_MASK;
3561 vmcs12->idt_vectoring_error_code =
3562 vcpu->arch.exception.error_code;
3563 }
3564
3565 vmcs12->idt_vectoring_info_field = idt_vectoring;
3566 } else if (vcpu->arch.nmi_injected) {
3567 vmcs12->idt_vectoring_info_field =
3568 INTR_TYPE_NMI_INTR | INTR_INFO_VALID_MASK | NMI_VECTOR;
3569 } else if (vcpu->arch.interrupt.injected) {
3570 nr = vcpu->arch.interrupt.nr;
3571 idt_vectoring = nr | VECTORING_INFO_VALID_MASK;
3572
3573 if (vcpu->arch.interrupt.soft) {
3574 idt_vectoring |= INTR_TYPE_SOFT_INTR;
3575 vmcs12->vm_entry_instruction_len =
3576 vcpu->arch.event_exit_inst_len;
3577 } else
3578 idt_vectoring |= INTR_TYPE_EXT_INTR;
3579
3580 vmcs12->idt_vectoring_info_field = idt_vectoring;
3581 }
3582}
3583
3584
Paolo Bonzini96b100c2020-03-17 18:32:50 +01003585void nested_mark_vmcs12_pages_dirty(struct kvm_vcpu *vcpu)
Sean Christopherson55d23752018-12-03 13:53:18 -08003586{
3587 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
3588 gfn_t gfn;
3589
3590 /*
3591 * Don't need to mark the APIC access page dirty; it is never
3592 * written to by the CPU during APIC virtualization.
3593 */
3594
3595 if (nested_cpu_has(vmcs12, CPU_BASED_TPR_SHADOW)) {
3596 gfn = vmcs12->virtual_apic_page_addr >> PAGE_SHIFT;
3597 kvm_vcpu_mark_page_dirty(vcpu, gfn);
3598 }
3599
3600 if (nested_cpu_has_posted_intr(vmcs12)) {
3601 gfn = vmcs12->posted_intr_desc_addr >> PAGE_SHIFT;
3602 kvm_vcpu_mark_page_dirty(vcpu, gfn);
3603 }
3604}
3605
3606static void vmx_complete_nested_posted_interrupt(struct kvm_vcpu *vcpu)
3607{
3608 struct vcpu_vmx *vmx = to_vmx(vcpu);
3609 int max_irr;
3610 void *vapic_page;
3611 u16 status;
3612
3613 if (!vmx->nested.pi_desc || !vmx->nested.pi_pending)
3614 return;
3615
3616 vmx->nested.pi_pending = false;
3617 if (!pi_test_and_clear_on(vmx->nested.pi_desc))
3618 return;
3619
3620 max_irr = find_last_bit((unsigned long *)vmx->nested.pi_desc->pir, 256);
3621 if (max_irr != 256) {
KarimAllah Ahmed96c66e82019-01-31 21:24:37 +01003622 vapic_page = vmx->nested.virtual_apic_map.hva;
3623 if (!vapic_page)
3624 return;
3625
Sean Christopherson55d23752018-12-03 13:53:18 -08003626 __kvm_apic_update_irr(vmx->nested.pi_desc->pir,
3627 vapic_page, &max_irr);
Sean Christopherson55d23752018-12-03 13:53:18 -08003628 status = vmcs_read16(GUEST_INTR_STATUS);
3629 if ((u8)max_irr > ((u8)status & 0xff)) {
3630 status &= ~0xff;
3631 status |= (u8)max_irr;
3632 vmcs_write16(GUEST_INTR_STATUS, status);
3633 }
3634 }
3635
3636 nested_mark_vmcs12_pages_dirty(vcpu);
3637}
3638
3639static void nested_vmx_inject_exception_vmexit(struct kvm_vcpu *vcpu,
3640 unsigned long exit_qual)
3641{
3642 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
3643 unsigned int nr = vcpu->arch.exception.nr;
3644 u32 intr_info = nr | INTR_INFO_VALID_MASK;
3645
3646 if (vcpu->arch.exception.has_error_code) {
3647 vmcs12->vm_exit_intr_error_code = vcpu->arch.exception.error_code;
3648 intr_info |= INTR_INFO_DELIVER_CODE_MASK;
3649 }
3650
3651 if (kvm_exception_is_soft(nr))
3652 intr_info |= INTR_TYPE_SOFT_EXCEPTION;
3653 else
3654 intr_info |= INTR_TYPE_HARD_EXCEPTION;
3655
3656 if (!(vmcs12->idt_vectoring_info_field & VECTORING_INFO_VALID_MASK) &&
3657 vmx_get_nmi_mask(vcpu))
3658 intr_info |= INTR_INFO_UNBLOCK_NMI;
3659
3660 nested_vmx_vmexit(vcpu, EXIT_REASON_EXCEPTION_NMI, intr_info, exit_qual);
3661}
3662
Oliver Upton684c0422020-02-07 02:36:05 -08003663/*
3664 * Returns true if a debug trap is pending delivery.
3665 *
3666 * In KVM, debug traps bear an exception payload. As such, the class of a #DB
3667 * exception may be inferred from the presence of an exception payload.
3668 */
3669static inline bool vmx_pending_dbg_trap(struct kvm_vcpu *vcpu)
3670{
3671 return vcpu->arch.exception.pending &&
3672 vcpu->arch.exception.nr == DB_VECTOR &&
3673 vcpu->arch.exception.payload;
3674}
3675
3676/*
3677 * Certain VM-exits set the 'pending debug exceptions' field to indicate a
3678 * recognized #DB (data or single-step) that has yet to be delivered. Since KVM
3679 * represents these debug traps with a payload that is said to be compatible
3680 * with the 'pending debug exceptions' field, write the payload to the VMCS
3681 * field if a VM-exit is delivered before the debug trap.
3682 */
3683static void nested_vmx_update_pending_dbg(struct kvm_vcpu *vcpu)
3684{
3685 if (vmx_pending_dbg_trap(vcpu))
3686 vmcs_writel(GUEST_PENDING_DBG_EXCEPTIONS,
3687 vcpu->arch.exception.payload);
3688}
3689
Sean Christophersona1c77ab2020-03-02 22:27:35 -08003690static int vmx_check_nested_events(struct kvm_vcpu *vcpu)
Sean Christopherson55d23752018-12-03 13:53:18 -08003691{
3692 struct vcpu_vmx *vmx = to_vmx(vcpu);
3693 unsigned long exit_qual;
3694 bool block_nested_events =
3695 vmx->nested.nested_run_pending || kvm_event_needs_reinjection(vcpu);
Oliver Upton5ef8acb2020-02-07 02:36:07 -08003696 bool mtf_pending = vmx->nested.mtf_pending;
Liran Alon4b9852f2019-08-26 13:24:49 +03003697 struct kvm_lapic *apic = vcpu->arch.apic;
3698
Oliver Upton5ef8acb2020-02-07 02:36:07 -08003699 /*
3700 * Clear the MTF state. If a higher priority VM-exit is delivered first,
3701 * this state is discarded.
3702 */
Oliver Upton5c8beb42020-04-06 20:12:37 +00003703 if (!block_nested_events)
3704 vmx->nested.mtf_pending = false;
Oliver Upton5ef8acb2020-02-07 02:36:07 -08003705
Liran Alon4b9852f2019-08-26 13:24:49 +03003706 if (lapic_in_kernel(vcpu) &&
3707 test_bit(KVM_APIC_INIT, &apic->pending_events)) {
3708 if (block_nested_events)
3709 return -EBUSY;
Oliver Upton684c0422020-02-07 02:36:05 -08003710 nested_vmx_update_pending_dbg(vcpu);
Liran Alone64a8502019-11-11 14:16:05 +02003711 clear_bit(KVM_APIC_INIT, &apic->pending_events);
Liran Alon4b9852f2019-08-26 13:24:49 +03003712 nested_vmx_vmexit(vcpu, EXIT_REASON_INIT_SIGNAL, 0, 0);
3713 return 0;
3714 }
Sean Christopherson55d23752018-12-03 13:53:18 -08003715
Oliver Upton5ef8acb2020-02-07 02:36:07 -08003716 /*
3717 * Process any exceptions that are not debug traps before MTF.
3718 */
Sean Christopherson55d23752018-12-03 13:53:18 -08003719 if (vcpu->arch.exception.pending &&
Oliver Upton5ef8acb2020-02-07 02:36:07 -08003720 !vmx_pending_dbg_trap(vcpu) &&
3721 nested_vmx_check_exception(vcpu, &exit_qual)) {
3722 if (block_nested_events)
3723 return -EBUSY;
3724 nested_vmx_inject_exception_vmexit(vcpu, exit_qual);
3725 return 0;
3726 }
3727
3728 if (mtf_pending) {
3729 if (block_nested_events)
3730 return -EBUSY;
3731 nested_vmx_update_pending_dbg(vcpu);
3732 nested_vmx_vmexit(vcpu, EXIT_REASON_MONITOR_TRAP_FLAG, 0, 0);
3733 return 0;
3734 }
3735
3736 if (vcpu->arch.exception.pending &&
3737 nested_vmx_check_exception(vcpu, &exit_qual)) {
Sean Christopherson55d23752018-12-03 13:53:18 -08003738 if (block_nested_events)
3739 return -EBUSY;
3740 nested_vmx_inject_exception_vmexit(vcpu, exit_qual);
3741 return 0;
3742 }
3743
3744 if (nested_cpu_has_preemption_timer(get_vmcs12(vcpu)) &&
3745 vmx->nested.preemption_timer_expired) {
3746 if (block_nested_events)
3747 return -EBUSY;
3748 nested_vmx_vmexit(vcpu, EXIT_REASON_PREEMPTION_TIMER, 0, 0);
3749 return 0;
3750 }
3751
3752 if (vcpu->arch.nmi_pending && nested_exit_on_nmi(vcpu)) {
3753 if (block_nested_events)
3754 return -EBUSY;
3755 nested_vmx_vmexit(vcpu, EXIT_REASON_EXCEPTION_NMI,
3756 NMI_VECTOR | INTR_TYPE_NMI_INTR |
3757 INTR_INFO_VALID_MASK, 0);
3758 /*
3759 * The NMI-triggered VM exit counts as injection:
3760 * clear this one and block further NMIs.
3761 */
3762 vcpu->arch.nmi_pending = 0;
3763 vmx_set_nmi_mask(vcpu, true);
3764 return 0;
3765 }
3766
Sean Christophersona1c77ab2020-03-02 22:27:35 -08003767 if (kvm_cpu_has_interrupt(vcpu) && nested_exit_on_intr(vcpu)) {
Sean Christopherson55d23752018-12-03 13:53:18 -08003768 if (block_nested_events)
3769 return -EBUSY;
3770 nested_vmx_vmexit(vcpu, EXIT_REASON_EXTERNAL_INTERRUPT, 0, 0);
3771 return 0;
3772 }
3773
3774 vmx_complete_nested_posted_interrupt(vcpu);
3775 return 0;
3776}
3777
3778static u32 vmx_get_preemption_timer_value(struct kvm_vcpu *vcpu)
3779{
3780 ktime_t remaining =
3781 hrtimer_get_remaining(&to_vmx(vcpu)->nested.preemption_timer);
3782 u64 value;
3783
3784 if (ktime_to_ns(remaining) <= 0)
3785 return 0;
3786
3787 value = ktime_to_ns(remaining) * vcpu->arch.virtual_tsc_khz;
3788 do_div(value, 1000000);
3789 return value >> VMX_MISC_EMULATED_PREEMPTION_TIMER_RATE;
3790}
3791
Sean Christopherson7952d762019-05-07 08:36:29 -07003792static bool is_vmcs12_ext_field(unsigned long field)
Sean Christopherson55d23752018-12-03 13:53:18 -08003793{
Sean Christopherson7952d762019-05-07 08:36:29 -07003794 switch (field) {
3795 case GUEST_ES_SELECTOR:
3796 case GUEST_CS_SELECTOR:
3797 case GUEST_SS_SELECTOR:
3798 case GUEST_DS_SELECTOR:
3799 case GUEST_FS_SELECTOR:
3800 case GUEST_GS_SELECTOR:
3801 case GUEST_LDTR_SELECTOR:
3802 case GUEST_TR_SELECTOR:
3803 case GUEST_ES_LIMIT:
3804 case GUEST_CS_LIMIT:
3805 case GUEST_SS_LIMIT:
3806 case GUEST_DS_LIMIT:
3807 case GUEST_FS_LIMIT:
3808 case GUEST_GS_LIMIT:
3809 case GUEST_LDTR_LIMIT:
3810 case GUEST_TR_LIMIT:
3811 case GUEST_GDTR_LIMIT:
3812 case GUEST_IDTR_LIMIT:
3813 case GUEST_ES_AR_BYTES:
3814 case GUEST_DS_AR_BYTES:
3815 case GUEST_FS_AR_BYTES:
3816 case GUEST_GS_AR_BYTES:
3817 case GUEST_LDTR_AR_BYTES:
3818 case GUEST_TR_AR_BYTES:
3819 case GUEST_ES_BASE:
3820 case GUEST_CS_BASE:
3821 case GUEST_SS_BASE:
3822 case GUEST_DS_BASE:
3823 case GUEST_FS_BASE:
3824 case GUEST_GS_BASE:
3825 case GUEST_LDTR_BASE:
3826 case GUEST_TR_BASE:
3827 case GUEST_GDTR_BASE:
3828 case GUEST_IDTR_BASE:
3829 case GUEST_PENDING_DBG_EXCEPTIONS:
3830 case GUEST_BNDCFGS:
3831 return true;
3832 default:
3833 break;
3834 }
Sean Christopherson55d23752018-12-03 13:53:18 -08003835
Sean Christopherson7952d762019-05-07 08:36:29 -07003836 return false;
3837}
3838
3839static void sync_vmcs02_to_vmcs12_rare(struct kvm_vcpu *vcpu,
3840 struct vmcs12 *vmcs12)
3841{
3842 struct vcpu_vmx *vmx = to_vmx(vcpu);
Sean Christopherson55d23752018-12-03 13:53:18 -08003843
3844 vmcs12->guest_es_selector = vmcs_read16(GUEST_ES_SELECTOR);
3845 vmcs12->guest_cs_selector = vmcs_read16(GUEST_CS_SELECTOR);
3846 vmcs12->guest_ss_selector = vmcs_read16(GUEST_SS_SELECTOR);
3847 vmcs12->guest_ds_selector = vmcs_read16(GUEST_DS_SELECTOR);
3848 vmcs12->guest_fs_selector = vmcs_read16(GUEST_FS_SELECTOR);
3849 vmcs12->guest_gs_selector = vmcs_read16(GUEST_GS_SELECTOR);
3850 vmcs12->guest_ldtr_selector = vmcs_read16(GUEST_LDTR_SELECTOR);
3851 vmcs12->guest_tr_selector = vmcs_read16(GUEST_TR_SELECTOR);
3852 vmcs12->guest_es_limit = vmcs_read32(GUEST_ES_LIMIT);
3853 vmcs12->guest_cs_limit = vmcs_read32(GUEST_CS_LIMIT);
3854 vmcs12->guest_ss_limit = vmcs_read32(GUEST_SS_LIMIT);
3855 vmcs12->guest_ds_limit = vmcs_read32(GUEST_DS_LIMIT);
3856 vmcs12->guest_fs_limit = vmcs_read32(GUEST_FS_LIMIT);
3857 vmcs12->guest_gs_limit = vmcs_read32(GUEST_GS_LIMIT);
3858 vmcs12->guest_ldtr_limit = vmcs_read32(GUEST_LDTR_LIMIT);
3859 vmcs12->guest_tr_limit = vmcs_read32(GUEST_TR_LIMIT);
3860 vmcs12->guest_gdtr_limit = vmcs_read32(GUEST_GDTR_LIMIT);
3861 vmcs12->guest_idtr_limit = vmcs_read32(GUEST_IDTR_LIMIT);
3862 vmcs12->guest_es_ar_bytes = vmcs_read32(GUEST_ES_AR_BYTES);
Sean Christopherson55d23752018-12-03 13:53:18 -08003863 vmcs12->guest_ds_ar_bytes = vmcs_read32(GUEST_DS_AR_BYTES);
3864 vmcs12->guest_fs_ar_bytes = vmcs_read32(GUEST_FS_AR_BYTES);
3865 vmcs12->guest_gs_ar_bytes = vmcs_read32(GUEST_GS_AR_BYTES);
3866 vmcs12->guest_ldtr_ar_bytes = vmcs_read32(GUEST_LDTR_AR_BYTES);
3867 vmcs12->guest_tr_ar_bytes = vmcs_read32(GUEST_TR_AR_BYTES);
3868 vmcs12->guest_es_base = vmcs_readl(GUEST_ES_BASE);
3869 vmcs12->guest_cs_base = vmcs_readl(GUEST_CS_BASE);
3870 vmcs12->guest_ss_base = vmcs_readl(GUEST_SS_BASE);
3871 vmcs12->guest_ds_base = vmcs_readl(GUEST_DS_BASE);
3872 vmcs12->guest_fs_base = vmcs_readl(GUEST_FS_BASE);
3873 vmcs12->guest_gs_base = vmcs_readl(GUEST_GS_BASE);
3874 vmcs12->guest_ldtr_base = vmcs_readl(GUEST_LDTR_BASE);
3875 vmcs12->guest_tr_base = vmcs_readl(GUEST_TR_BASE);
3876 vmcs12->guest_gdtr_base = vmcs_readl(GUEST_GDTR_BASE);
3877 vmcs12->guest_idtr_base = vmcs_readl(GUEST_IDTR_BASE);
Sean Christopherson7952d762019-05-07 08:36:29 -07003878 vmcs12->guest_pending_dbg_exceptions =
3879 vmcs_readl(GUEST_PENDING_DBG_EXCEPTIONS);
3880 if (kvm_mpx_supported())
3881 vmcs12->guest_bndcfgs = vmcs_read64(GUEST_BNDCFGS);
3882
3883 vmx->nested.need_sync_vmcs02_to_vmcs12_rare = false;
3884}
3885
3886static void copy_vmcs02_to_vmcs12_rare(struct kvm_vcpu *vcpu,
3887 struct vmcs12 *vmcs12)
3888{
3889 struct vcpu_vmx *vmx = to_vmx(vcpu);
3890 int cpu;
3891
3892 if (!vmx->nested.need_sync_vmcs02_to_vmcs12_rare)
3893 return;
3894
3895
3896 WARN_ON_ONCE(vmx->loaded_vmcs != &vmx->vmcs01);
3897
3898 cpu = get_cpu();
3899 vmx->loaded_vmcs = &vmx->nested.vmcs02;
3900 vmx_vcpu_load(&vmx->vcpu, cpu);
3901
3902 sync_vmcs02_to_vmcs12_rare(vcpu, vmcs12);
3903
3904 vmx->loaded_vmcs = &vmx->vmcs01;
3905 vmx_vcpu_load(&vmx->vcpu, cpu);
3906 put_cpu();
3907}
3908
3909/*
3910 * Update the guest state fields of vmcs12 to reflect changes that
3911 * occurred while L2 was running. (The "IA-32e mode guest" bit of the
3912 * VM-entry controls is also updated, since this is really a guest
3913 * state bit.)
3914 */
3915static void sync_vmcs02_to_vmcs12(struct kvm_vcpu *vcpu, struct vmcs12 *vmcs12)
3916{
3917 struct vcpu_vmx *vmx = to_vmx(vcpu);
3918
3919 if (vmx->nested.hv_evmcs)
3920 sync_vmcs02_to_vmcs12_rare(vcpu, vmcs12);
3921
3922 vmx->nested.need_sync_vmcs02_to_vmcs12_rare = !vmx->nested.hv_evmcs;
3923
3924 vmcs12->guest_cr0 = vmcs12_guest_cr0(vcpu, vmcs12);
3925 vmcs12->guest_cr4 = vmcs12_guest_cr4(vcpu, vmcs12);
3926
3927 vmcs12->guest_rsp = kvm_rsp_read(vcpu);
3928 vmcs12->guest_rip = kvm_rip_read(vcpu);
3929 vmcs12->guest_rflags = vmcs_readl(GUEST_RFLAGS);
3930
3931 vmcs12->guest_cs_ar_bytes = vmcs_read32(GUEST_CS_AR_BYTES);
3932 vmcs12->guest_ss_ar_bytes = vmcs_read32(GUEST_SS_AR_BYTES);
Sean Christopherson55d23752018-12-03 13:53:18 -08003933
Sean Christophersonde70d272019-05-07 09:06:36 -07003934 vmcs12->guest_sysenter_cs = vmcs_read32(GUEST_SYSENTER_CS);
3935 vmcs12->guest_sysenter_esp = vmcs_readl(GUEST_SYSENTER_ESP);
3936 vmcs12->guest_sysenter_eip = vmcs_readl(GUEST_SYSENTER_EIP);
Sean Christopherson55d23752018-12-03 13:53:18 -08003937
3938 vmcs12->guest_interruptibility_info =
3939 vmcs_read32(GUEST_INTERRUPTIBILITY_INFO);
Sean Christopherson7952d762019-05-07 08:36:29 -07003940
Sean Christopherson55d23752018-12-03 13:53:18 -08003941 if (vcpu->arch.mp_state == KVM_MP_STATE_HALTED)
3942 vmcs12->guest_activity_state = GUEST_ACTIVITY_HLT;
3943 else
3944 vmcs12->guest_activity_state = GUEST_ACTIVITY_ACTIVE;
3945
Paolo Bonzinib4b65b52019-01-29 19:12:35 +01003946 if (nested_cpu_has_preemption_timer(vmcs12) &&
3947 vmcs12->vm_exit_controls & VM_EXIT_SAVE_VMX_PREEMPTION_TIMER)
Sean Christopherson55d23752018-12-03 13:53:18 -08003948 vmcs12->vmx_preemption_timer_value =
3949 vmx_get_preemption_timer_value(vcpu);
Sean Christopherson55d23752018-12-03 13:53:18 -08003950
3951 /*
3952 * In some cases (usually, nested EPT), L2 is allowed to change its
3953 * own CR3 without exiting. If it has changed it, we must keep it.
3954 * Of course, if L0 is using shadow page tables, GUEST_CR3 was defined
3955 * by L0, not L1 or L2, so we mustn't unconditionally copy it to vmcs12.
3956 *
3957 * Additionally, restore L2's PDPTR to vmcs12.
3958 */
3959 if (enable_ept) {
3960 vmcs12->guest_cr3 = vmcs_readl(GUEST_CR3);
Sean Christophersonc7554efc2019-05-07 09:06:40 -07003961 if (nested_cpu_has_ept(vmcs12) && is_pae_paging(vcpu)) {
3962 vmcs12->guest_pdptr0 = vmcs_read64(GUEST_PDPTR0);
3963 vmcs12->guest_pdptr1 = vmcs_read64(GUEST_PDPTR1);
3964 vmcs12->guest_pdptr2 = vmcs_read64(GUEST_PDPTR2);
3965 vmcs12->guest_pdptr3 = vmcs_read64(GUEST_PDPTR3);
3966 }
Sean Christopherson55d23752018-12-03 13:53:18 -08003967 }
3968
3969 vmcs12->guest_linear_address = vmcs_readl(GUEST_LINEAR_ADDRESS);
3970
3971 if (nested_cpu_has_vid(vmcs12))
3972 vmcs12->guest_intr_status = vmcs_read16(GUEST_INTR_STATUS);
3973
3974 vmcs12->vm_entry_controls =
3975 (vmcs12->vm_entry_controls & ~VM_ENTRY_IA32E_MODE) |
3976 (vm_entry_controls_get(to_vmx(vcpu)) & VM_ENTRY_IA32E_MODE);
3977
Sean Christopherson699a1ac2019-05-07 09:06:37 -07003978 if (vmcs12->vm_exit_controls & VM_EXIT_SAVE_DEBUG_CONTROLS)
Sean Christopherson55d23752018-12-03 13:53:18 -08003979 kvm_get_dr(vcpu, 7, (unsigned long *)&vmcs12->guest_dr7);
Sean Christopherson55d23752018-12-03 13:53:18 -08003980
Sean Christopherson55d23752018-12-03 13:53:18 -08003981 if (vmcs12->vm_exit_controls & VM_EXIT_SAVE_IA32_EFER)
3982 vmcs12->guest_ia32_efer = vcpu->arch.efer;
Sean Christopherson55d23752018-12-03 13:53:18 -08003983}
3984
3985/*
3986 * prepare_vmcs12 is part of what we need to do when the nested L2 guest exits
3987 * and we want to prepare to run its L1 parent. L1 keeps a vmcs for L2 (vmcs12),
3988 * and this function updates it to reflect the changes to the guest state while
3989 * L2 was running (and perhaps made some exits which were handled directly by L0
3990 * without going back to L1), and to reflect the exit reason.
3991 * Note that we do not have to copy here all VMCS fields, just those that
3992 * could have changed by the L2 guest or the exit - i.e., the guest-state and
3993 * exit-information fields only. Other fields are modified by L1 with VMWRITE,
3994 * which already writes to vmcs12 directly.
3995 */
3996static void prepare_vmcs12(struct kvm_vcpu *vcpu, struct vmcs12 *vmcs12,
Sean Christopherson4dcefa32020-04-15 10:55:18 -07003997 u32 vm_exit_reason, u32 exit_intr_info,
Sean Christopherson55d23752018-12-03 13:53:18 -08003998 unsigned long exit_qualification)
3999{
Sean Christopherson55d23752018-12-03 13:53:18 -08004000 /* update exit information fields: */
Sean Christopherson4dcefa32020-04-15 10:55:18 -07004001 vmcs12->vm_exit_reason = vm_exit_reason;
Sean Christopherson55d23752018-12-03 13:53:18 -08004002 vmcs12->exit_qualification = exit_qualification;
4003 vmcs12->vm_exit_intr_info = exit_intr_info;
4004
4005 vmcs12->idt_vectoring_info_field = 0;
4006 vmcs12->vm_exit_instruction_len = vmcs_read32(VM_EXIT_INSTRUCTION_LEN);
4007 vmcs12->vmx_instruction_info = vmcs_read32(VMX_INSTRUCTION_INFO);
4008
4009 if (!(vmcs12->vm_exit_reason & VMX_EXIT_REASONS_FAILED_VMENTRY)) {
4010 vmcs12->launch_state = 1;
4011
4012 /* vm_entry_intr_info_field is cleared on exit. Emulate this
4013 * instead of reading the real value. */
4014 vmcs12->vm_entry_intr_info_field &= ~INTR_INFO_VALID_MASK;
4015
4016 /*
4017 * Transfer the event that L0 or L1 may wanted to inject into
4018 * L2 to IDT_VECTORING_INFO_FIELD.
4019 */
4020 vmcs12_save_pending_event(vcpu, vmcs12);
Krish Sadhukhana0d4f802018-12-04 19:00:13 -05004021
4022 /*
4023 * According to spec, there's no need to store the guest's
4024 * MSRs if the exit is due to a VM-entry failure that occurs
4025 * during or after loading the guest state. Since this exit
4026 * does not fall in that category, we need to save the MSRs.
4027 */
4028 if (nested_vmx_store_msr(vcpu,
4029 vmcs12->vm_exit_msr_store_addr,
4030 vmcs12->vm_exit_msr_store_count))
4031 nested_vmx_abort(vcpu,
4032 VMX_ABORT_SAVE_GUEST_MSR_FAIL);
Sean Christopherson55d23752018-12-03 13:53:18 -08004033 }
4034
4035 /*
4036 * Drop what we picked up for L2 via vmx_complete_interrupts. It is
4037 * preserved above and would only end up incorrectly in L1.
4038 */
4039 vcpu->arch.nmi_injected = false;
4040 kvm_clear_exception_queue(vcpu);
4041 kvm_clear_interrupt_queue(vcpu);
4042}
4043
4044/*
4045 * A part of what we need to when the nested L2 guest exits and we want to
4046 * run its L1 parent, is to reset L1's guest state to the host state specified
4047 * in vmcs12.
4048 * This function is to be called not only on normal nested exit, but also on
4049 * a nested entry failure, as explained in Intel's spec, 3B.23.7 ("VM-Entry
4050 * Failures During or After Loading Guest State").
4051 * This function should be called when the active VMCS is L1's (vmcs01).
4052 */
4053static void load_vmcs12_host_state(struct kvm_vcpu *vcpu,
4054 struct vmcs12 *vmcs12)
4055{
4056 struct kvm_segment seg;
4057 u32 entry_failure_code;
4058
4059 if (vmcs12->vm_exit_controls & VM_EXIT_LOAD_IA32_EFER)
4060 vcpu->arch.efer = vmcs12->host_ia32_efer;
4061 else if (vmcs12->vm_exit_controls & VM_EXIT_HOST_ADDR_SPACE_SIZE)
4062 vcpu->arch.efer |= (EFER_LMA | EFER_LME);
4063 else
4064 vcpu->arch.efer &= ~(EFER_LMA | EFER_LME);
4065 vmx_set_efer(vcpu, vcpu->arch.efer);
4066
Paolo Bonzinie9c16c72019-04-30 22:07:26 +02004067 kvm_rsp_write(vcpu, vmcs12->host_rsp);
4068 kvm_rip_write(vcpu, vmcs12->host_rip);
Sean Christopherson55d23752018-12-03 13:53:18 -08004069 vmx_set_rflags(vcpu, X86_EFLAGS_FIXED);
4070 vmx_set_interrupt_shadow(vcpu, 0);
4071
4072 /*
4073 * Note that calling vmx_set_cr0 is important, even if cr0 hasn't
4074 * actually changed, because vmx_set_cr0 refers to efer set above.
4075 *
4076 * CR0_GUEST_HOST_MASK is already set in the original vmcs01
4077 * (KVM doesn't change it);
4078 */
4079 vcpu->arch.cr0_guest_owned_bits = X86_CR0_TS;
4080 vmx_set_cr0(vcpu, vmcs12->host_cr0);
4081
4082 /* Same as above - no reason to call set_cr4_guest_host_mask(). */
4083 vcpu->arch.cr4_guest_owned_bits = ~vmcs_readl(CR4_GUEST_HOST_MASK);
4084 vmx_set_cr4(vcpu, vmcs12->host_cr4);
4085
4086 nested_ept_uninit_mmu_context(vcpu);
4087
4088 /*
4089 * Only PDPTE load can fail as the value of cr3 was checked on entry and
4090 * couldn't have changed.
4091 */
4092 if (nested_vmx_load_cr3(vcpu, vmcs12->host_cr3, false, &entry_failure_code))
4093 nested_vmx_abort(vcpu, VMX_ABORT_LOAD_HOST_PDPTE_FAIL);
4094
4095 if (!enable_ept)
4096 vcpu->arch.walk_mmu->inject_page_fault = kvm_inject_page_fault;
4097
Sean Christopherson50b265a2020-03-20 14:28:19 -07004098 nested_vmx_transition_tlb_flush(vcpu, vmcs12, false);
Sean Christopherson55d23752018-12-03 13:53:18 -08004099
4100 vmcs_write32(GUEST_SYSENTER_CS, vmcs12->host_ia32_sysenter_cs);
4101 vmcs_writel(GUEST_SYSENTER_ESP, vmcs12->host_ia32_sysenter_esp);
4102 vmcs_writel(GUEST_SYSENTER_EIP, vmcs12->host_ia32_sysenter_eip);
4103 vmcs_writel(GUEST_IDTR_BASE, vmcs12->host_idtr_base);
4104 vmcs_writel(GUEST_GDTR_BASE, vmcs12->host_gdtr_base);
4105 vmcs_write32(GUEST_IDTR_LIMIT, 0xFFFF);
4106 vmcs_write32(GUEST_GDTR_LIMIT, 0xFFFF);
4107
4108 /* If not VM_EXIT_CLEAR_BNDCFGS, the L2 value propagates to L1. */
4109 if (vmcs12->vm_exit_controls & VM_EXIT_CLEAR_BNDCFGS)
4110 vmcs_write64(GUEST_BNDCFGS, 0);
4111
4112 if (vmcs12->vm_exit_controls & VM_EXIT_LOAD_IA32_PAT) {
4113 vmcs_write64(GUEST_IA32_PAT, vmcs12->host_ia32_pat);
4114 vcpu->arch.pat = vmcs12->host_ia32_pat;
4115 }
4116 if (vmcs12->vm_exit_controls & VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL)
Oliver Uptond1968422019-12-13 16:33:58 -08004117 WARN_ON_ONCE(kvm_set_msr(vcpu, MSR_CORE_PERF_GLOBAL_CTRL,
4118 vmcs12->host_ia32_perf_global_ctrl));
Sean Christopherson55d23752018-12-03 13:53:18 -08004119
4120 /* Set L1 segment info according to Intel SDM
4121 27.5.2 Loading Host Segment and Descriptor-Table Registers */
4122 seg = (struct kvm_segment) {
4123 .base = 0,
4124 .limit = 0xFFFFFFFF,
4125 .selector = vmcs12->host_cs_selector,
4126 .type = 11,
4127 .present = 1,
4128 .s = 1,
4129 .g = 1
4130 };
4131 if (vmcs12->vm_exit_controls & VM_EXIT_HOST_ADDR_SPACE_SIZE)
4132 seg.l = 1;
4133 else
4134 seg.db = 1;
4135 vmx_set_segment(vcpu, &seg, VCPU_SREG_CS);
4136 seg = (struct kvm_segment) {
4137 .base = 0,
4138 .limit = 0xFFFFFFFF,
4139 .type = 3,
4140 .present = 1,
4141 .s = 1,
4142 .db = 1,
4143 .g = 1
4144 };
4145 seg.selector = vmcs12->host_ds_selector;
4146 vmx_set_segment(vcpu, &seg, VCPU_SREG_DS);
4147 seg.selector = vmcs12->host_es_selector;
4148 vmx_set_segment(vcpu, &seg, VCPU_SREG_ES);
4149 seg.selector = vmcs12->host_ss_selector;
4150 vmx_set_segment(vcpu, &seg, VCPU_SREG_SS);
4151 seg.selector = vmcs12->host_fs_selector;
4152 seg.base = vmcs12->host_fs_base;
4153 vmx_set_segment(vcpu, &seg, VCPU_SREG_FS);
4154 seg.selector = vmcs12->host_gs_selector;
4155 seg.base = vmcs12->host_gs_base;
4156 vmx_set_segment(vcpu, &seg, VCPU_SREG_GS);
4157 seg = (struct kvm_segment) {
4158 .base = vmcs12->host_tr_base,
4159 .limit = 0x67,
4160 .selector = vmcs12->host_tr_selector,
4161 .type = 11,
4162 .present = 1
4163 };
4164 vmx_set_segment(vcpu, &seg, VCPU_SREG_TR);
4165
4166 kvm_set_dr(vcpu, 7, 0x400);
4167 vmcs_write64(GUEST_IA32_DEBUGCTL, 0);
4168
4169 if (cpu_has_vmx_msr_bitmap())
4170 vmx_update_msr_bitmap(vcpu);
4171
4172 if (nested_vmx_load_msr(vcpu, vmcs12->vm_exit_msr_load_addr,
4173 vmcs12->vm_exit_msr_load_count))
4174 nested_vmx_abort(vcpu, VMX_ABORT_LOAD_HOST_MSR_FAIL);
4175}
4176
4177static inline u64 nested_vmx_get_vmcs01_guest_efer(struct vcpu_vmx *vmx)
4178{
4179 struct shared_msr_entry *efer_msr;
4180 unsigned int i;
4181
4182 if (vm_entry_controls_get(vmx) & VM_ENTRY_LOAD_IA32_EFER)
4183 return vmcs_read64(GUEST_IA32_EFER);
4184
4185 if (cpu_has_load_ia32_efer())
4186 return host_efer;
4187
4188 for (i = 0; i < vmx->msr_autoload.guest.nr; ++i) {
4189 if (vmx->msr_autoload.guest.val[i].index == MSR_EFER)
4190 return vmx->msr_autoload.guest.val[i].value;
4191 }
4192
4193 efer_msr = find_msr_entry(vmx, MSR_EFER);
4194 if (efer_msr)
4195 return efer_msr->data;
4196
4197 return host_efer;
4198}
4199
4200static void nested_vmx_restore_host_state(struct kvm_vcpu *vcpu)
4201{
4202 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
4203 struct vcpu_vmx *vmx = to_vmx(vcpu);
4204 struct vmx_msr_entry g, h;
Sean Christopherson55d23752018-12-03 13:53:18 -08004205 gpa_t gpa;
4206 u32 i, j;
4207
4208 vcpu->arch.pat = vmcs_read64(GUEST_IA32_PAT);
4209
4210 if (vmcs12->vm_entry_controls & VM_ENTRY_LOAD_DEBUG_CONTROLS) {
4211 /*
4212 * L1's host DR7 is lost if KVM_GUESTDBG_USE_HW_BP is set
4213 * as vmcs01.GUEST_DR7 contains a userspace defined value
4214 * and vcpu->arch.dr7 is not squirreled away before the
4215 * nested VMENTER (not worth adding a variable in nested_vmx).
4216 */
4217 if (vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP)
4218 kvm_set_dr(vcpu, 7, DR7_FIXED_1);
4219 else
4220 WARN_ON(kvm_set_dr(vcpu, 7, vmcs_readl(GUEST_DR7)));
4221 }
4222
4223 /*
4224 * Note that calling vmx_set_{efer,cr0,cr4} is important as they
4225 * handle a variety of side effects to KVM's software model.
4226 */
4227 vmx_set_efer(vcpu, nested_vmx_get_vmcs01_guest_efer(vmx));
4228
4229 vcpu->arch.cr0_guest_owned_bits = X86_CR0_TS;
4230 vmx_set_cr0(vcpu, vmcs_readl(CR0_READ_SHADOW));
4231
4232 vcpu->arch.cr4_guest_owned_bits = ~vmcs_readl(CR4_GUEST_HOST_MASK);
4233 vmx_set_cr4(vcpu, vmcs_readl(CR4_READ_SHADOW));
4234
4235 nested_ept_uninit_mmu_context(vcpu);
Sean Christophersonf087a022019-06-07 11:55:34 -07004236 vcpu->arch.cr3 = vmcs_readl(GUEST_CR3);
Sean Christophersoncb3c1e22019-09-27 14:45:22 -07004237 kvm_register_mark_available(vcpu, VCPU_EXREG_CR3);
Sean Christopherson55d23752018-12-03 13:53:18 -08004238
4239 /*
4240 * Use ept_save_pdptrs(vcpu) to load the MMU's cached PDPTRs
4241 * from vmcs01 (if necessary). The PDPTRs are not loaded on
4242 * VMFail, like everything else we just need to ensure our
4243 * software model is up-to-date.
4244 */
Sean Christopherson9932b492020-04-15 13:34:50 -07004245 if (enable_ept && is_pae_paging(vcpu))
Sean Christophersonf087a022019-06-07 11:55:34 -07004246 ept_save_pdptrs(vcpu);
Sean Christopherson55d23752018-12-03 13:53:18 -08004247
4248 kvm_mmu_reset_context(vcpu);
4249
4250 if (cpu_has_vmx_msr_bitmap())
4251 vmx_update_msr_bitmap(vcpu);
4252
4253 /*
4254 * This nasty bit of open coding is a compromise between blindly
4255 * loading L1's MSRs using the exit load lists (incorrect emulation
4256 * of VMFail), leaving the nested VM's MSRs in the software model
4257 * (incorrect behavior) and snapshotting the modified MSRs (too
4258 * expensive since the lists are unbound by hardware). For each
4259 * MSR that was (prematurely) loaded from the nested VMEntry load
4260 * list, reload it from the exit load list if it exists and differs
4261 * from the guest value. The intent is to stuff host state as
4262 * silently as possible, not to fully process the exit load list.
4263 */
Sean Christopherson55d23752018-12-03 13:53:18 -08004264 for (i = 0; i < vmcs12->vm_entry_msr_load_count; i++) {
4265 gpa = vmcs12->vm_entry_msr_load_addr + (i * sizeof(g));
4266 if (kvm_vcpu_read_guest(vcpu, gpa, &g, sizeof(g))) {
4267 pr_debug_ratelimited(
4268 "%s read MSR index failed (%u, 0x%08llx)\n",
4269 __func__, i, gpa);
4270 goto vmabort;
4271 }
4272
4273 for (j = 0; j < vmcs12->vm_exit_msr_load_count; j++) {
4274 gpa = vmcs12->vm_exit_msr_load_addr + (j * sizeof(h));
4275 if (kvm_vcpu_read_guest(vcpu, gpa, &h, sizeof(h))) {
4276 pr_debug_ratelimited(
4277 "%s read MSR failed (%u, 0x%08llx)\n",
4278 __func__, j, gpa);
4279 goto vmabort;
4280 }
4281 if (h.index != g.index)
4282 continue;
4283 if (h.value == g.value)
4284 break;
4285
4286 if (nested_vmx_load_msr_check(vcpu, &h)) {
4287 pr_debug_ratelimited(
4288 "%s check failed (%u, 0x%x, 0x%x)\n",
4289 __func__, j, h.index, h.reserved);
4290 goto vmabort;
4291 }
4292
Sean Christophersonf20935d2019-09-05 14:22:54 -07004293 if (kvm_set_msr(vcpu, h.index, h.value)) {
Sean Christopherson55d23752018-12-03 13:53:18 -08004294 pr_debug_ratelimited(
4295 "%s WRMSR failed (%u, 0x%x, 0x%llx)\n",
4296 __func__, j, h.index, h.value);
4297 goto vmabort;
4298 }
4299 }
4300 }
4301
4302 return;
4303
4304vmabort:
4305 nested_vmx_abort(vcpu, VMX_ABORT_LOAD_HOST_MSR_FAIL);
4306}
4307
4308/*
4309 * Emulate an exit from nested guest (L2) to L1, i.e., prepare to run L1
4310 * and modify vmcs12 to make it see what it would expect to see there if
4311 * L2 was its real guest. Must only be called when in L2 (is_guest_mode())
4312 */
Sean Christopherson4dcefa32020-04-15 10:55:18 -07004313void nested_vmx_vmexit(struct kvm_vcpu *vcpu, u32 vm_exit_reason,
Sean Christopherson55d23752018-12-03 13:53:18 -08004314 u32 exit_intr_info, unsigned long exit_qualification)
4315{
4316 struct vcpu_vmx *vmx = to_vmx(vcpu);
4317 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
4318
4319 /* trying to cancel vmlaunch/vmresume is a bug */
4320 WARN_ON_ONCE(vmx->nested.nested_run_pending);
4321
Sean Christophersoneeeb4f62020-03-20 14:28:20 -07004322 /* Service the TLB flush request for L2 before switching to L1. */
4323 if (kvm_check_request(KVM_REQ_TLB_FLUSH_CURRENT, vcpu))
4324 kvm_vcpu_flush_tlb_current(vcpu);
4325
Sean Christopherson55d23752018-12-03 13:53:18 -08004326 leave_guest_mode(vcpu);
4327
Paolo Bonzinib4b65b52019-01-29 19:12:35 +01004328 if (nested_cpu_has_preemption_timer(vmcs12))
4329 hrtimer_cancel(&to_vmx(vcpu)->nested.preemption_timer);
4330
Xiaoyao Li5e3d3942019-12-06 16:45:26 +08004331 if (vmcs12->cpu_based_vm_exec_control & CPU_BASED_USE_TSC_OFFSETTING)
Sean Christopherson55d23752018-12-03 13:53:18 -08004332 vcpu->arch.tsc_offset -= vmcs12->tsc_offset;
4333
4334 if (likely(!vmx->fail)) {
Sean Christopherson3731905ef2019-05-07 08:36:27 -07004335 sync_vmcs02_to_vmcs12(vcpu, vmcs12);
Sean Christophersonf4f83162019-05-07 08:36:26 -07004336
Sean Christopherson4dcefa32020-04-15 10:55:18 -07004337 if (vm_exit_reason != -1)
4338 prepare_vmcs12(vcpu, vmcs12, vm_exit_reason,
4339 exit_intr_info, exit_qualification);
Sean Christopherson55d23752018-12-03 13:53:18 -08004340
4341 /*
Sean Christopherson3731905ef2019-05-07 08:36:27 -07004342 * Must happen outside of sync_vmcs02_to_vmcs12() as it will
Sean Christopherson55d23752018-12-03 13:53:18 -08004343 * also be used to capture vmcs12 cache as part of
4344 * capturing nVMX state for snapshot (migration).
4345 *
4346 * Otherwise, this flush will dirty guest memory at a
4347 * point it is already assumed by user-space to be
4348 * immutable.
4349 */
4350 nested_flush_cached_shadow_vmcs12(vcpu, vmcs12);
Sean Christopherson55d23752018-12-03 13:53:18 -08004351 } else {
4352 /*
4353 * The only expected VM-instruction error is "VM entry with
4354 * invalid control field(s)." Anything else indicates a
4355 * problem with L0. And we should never get here with a
4356 * VMFail of any type if early consistency checks are enabled.
4357 */
4358 WARN_ON_ONCE(vmcs_read32(VM_INSTRUCTION_ERROR) !=
4359 VMXERR_ENTRY_INVALID_CONTROL_FIELD);
4360 WARN_ON_ONCE(nested_early_check);
4361 }
4362
4363 vmx_switch_vmcs(vcpu, &vmx->vmcs01);
4364
4365 /* Update any VMCS fields that might have changed while L2 ran */
4366 vmcs_write32(VM_EXIT_MSR_LOAD_COUNT, vmx->msr_autoload.host.nr);
4367 vmcs_write32(VM_ENTRY_MSR_LOAD_COUNT, vmx->msr_autoload.guest.nr);
4368 vmcs_write64(TSC_OFFSET, vcpu->arch.tsc_offset);
Liran Alon02d496cf2019-11-11 14:30:55 +02004369 if (vmx->nested.l1_tpr_threshold != -1)
4370 vmcs_write32(TPR_THRESHOLD, vmx->nested.l1_tpr_threshold);
Sean Christopherson55d23752018-12-03 13:53:18 -08004371
4372 if (kvm_has_tsc_control)
4373 decache_tsc_multiplier(vmx);
4374
4375 if (vmx->nested.change_vmcs01_virtual_apic_mode) {
4376 vmx->nested.change_vmcs01_virtual_apic_mode = false;
4377 vmx_set_virtual_apic_mode(vcpu);
Sean Christopherson55d23752018-12-03 13:53:18 -08004378 }
4379
Sean Christopherson55d23752018-12-03 13:53:18 -08004380 /* Unpin physical memory we referred to in vmcs02 */
4381 if (vmx->nested.apic_access_page) {
Liran Alonb11494b2019-11-21 00:31:47 +02004382 kvm_release_page_clean(vmx->nested.apic_access_page);
Sean Christopherson55d23752018-12-03 13:53:18 -08004383 vmx->nested.apic_access_page = NULL;
4384 }
KarimAllah Ahmed96c66e82019-01-31 21:24:37 +01004385 kvm_vcpu_unmap(vcpu, &vmx->nested.virtual_apic_map, true);
KarimAllah Ahmed3278e042019-01-31 21:24:38 +01004386 kvm_vcpu_unmap(vcpu, &vmx->nested.pi_desc_map, true);
4387 vmx->nested.pi_desc = NULL;
Sean Christopherson55d23752018-12-03 13:53:18 -08004388
Sean Christopherson1196cb92020-03-20 14:28:23 -07004389 if (vmx->nested.reload_vmcs01_apic_access_page) {
4390 vmx->nested.reload_vmcs01_apic_access_page = false;
4391 kvm_make_request(KVM_REQ_APIC_PAGE_RELOAD, vcpu);
4392 }
Sean Christopherson55d23752018-12-03 13:53:18 -08004393
Sean Christopherson4dcefa32020-04-15 10:55:18 -07004394 if ((vm_exit_reason != -1) &&
4395 (enable_shadow_vmcs || vmx->nested.hv_evmcs))
Sean Christopherson3731905ef2019-05-07 08:36:27 -07004396 vmx->nested.need_vmcs12_to_shadow_sync = true;
Sean Christopherson55d23752018-12-03 13:53:18 -08004397
4398 /* in case we halted in L2 */
4399 vcpu->arch.mp_state = KVM_MP_STATE_RUNNABLE;
4400
4401 if (likely(!vmx->fail)) {
Sean Christopherson4dcefa32020-04-15 10:55:18 -07004402 if ((u16)vm_exit_reason == EXIT_REASON_EXTERNAL_INTERRUPT &&
Sean Christophersona1c77ab2020-03-02 22:27:35 -08004403 nested_exit_intr_ack_set(vcpu)) {
Sean Christopherson55d23752018-12-03 13:53:18 -08004404 int irq = kvm_cpu_get_interrupt(vcpu);
4405 WARN_ON(irq < 0);
4406 vmcs12->vm_exit_intr_info = irq |
4407 INTR_INFO_VALID_MASK | INTR_TYPE_EXT_INTR;
4408 }
4409
Sean Christopherson4dcefa32020-04-15 10:55:18 -07004410 if (vm_exit_reason != -1)
Sean Christopherson55d23752018-12-03 13:53:18 -08004411 trace_kvm_nested_vmexit_inject(vmcs12->vm_exit_reason,
4412 vmcs12->exit_qualification,
4413 vmcs12->idt_vectoring_info_field,
4414 vmcs12->vm_exit_intr_info,
4415 vmcs12->vm_exit_intr_error_code,
4416 KVM_ISA_VMX);
4417
4418 load_vmcs12_host_state(vcpu, vmcs12);
4419
4420 return;
4421 }
4422
4423 /*
4424 * After an early L2 VM-entry failure, we're now back
4425 * in L1 which thinks it just finished a VMLAUNCH or
4426 * VMRESUME instruction, so we need to set the failure
4427 * flag and the VM-instruction error field of the VMCS
4428 * accordingly, and skip the emulated instruction.
4429 */
4430 (void)nested_vmx_failValid(vcpu, VMXERR_ENTRY_INVALID_CONTROL_FIELD);
4431
4432 /*
4433 * Restore L1's host state to KVM's software model. We're here
4434 * because a consistency check was caught by hardware, which
4435 * means some amount of guest state has been propagated to KVM's
4436 * model and needs to be unwound to the host's state.
4437 */
4438 nested_vmx_restore_host_state(vcpu);
4439
4440 vmx->fail = 0;
4441}
4442
4443/*
4444 * Decode the memory-address operand of a vmx instruction, as recorded on an
4445 * exit caused by such an instruction (run by a guest hypervisor).
4446 * On success, returns 0. When the operand is invalid, returns 1 and throws
Miaohe Lin49f933d2020-02-27 11:20:54 +08004447 * #UD, #GP, or #SS.
Sean Christopherson55d23752018-12-03 13:53:18 -08004448 */
4449int get_vmx_mem_address(struct kvm_vcpu *vcpu, unsigned long exit_qualification,
Eugene Korenevskyfdb28612019-06-06 00:19:16 +03004450 u32 vmx_instruction_info, bool wr, int len, gva_t *ret)
Sean Christopherson55d23752018-12-03 13:53:18 -08004451{
4452 gva_t off;
4453 bool exn;
4454 struct kvm_segment s;
4455
4456 /*
4457 * According to Vol. 3B, "Information for VM Exits Due to Instruction
4458 * Execution", on an exit, vmx_instruction_info holds most of the
4459 * addressing components of the operand. Only the displacement part
4460 * is put in exit_qualification (see 3B, "Basic VM-Exit Information").
4461 * For how an actual address is calculated from all these components,
4462 * refer to Vol. 1, "Operand Addressing".
4463 */
4464 int scaling = vmx_instruction_info & 3;
4465 int addr_size = (vmx_instruction_info >> 7) & 7;
4466 bool is_reg = vmx_instruction_info & (1u << 10);
4467 int seg_reg = (vmx_instruction_info >> 15) & 7;
4468 int index_reg = (vmx_instruction_info >> 18) & 0xf;
4469 bool index_is_valid = !(vmx_instruction_info & (1u << 22));
4470 int base_reg = (vmx_instruction_info >> 23) & 0xf;
4471 bool base_is_valid = !(vmx_instruction_info & (1u << 27));
4472
4473 if (is_reg) {
4474 kvm_queue_exception(vcpu, UD_VECTOR);
4475 return 1;
4476 }
4477
4478 /* Addr = segment_base + offset */
4479 /* offset = base + [index * scale] + displacement */
4480 off = exit_qualification; /* holds the displacement */
Sean Christopherson946c5222019-01-23 14:39:23 -08004481 if (addr_size == 1)
4482 off = (gva_t)sign_extend64(off, 31);
4483 else if (addr_size == 0)
4484 off = (gva_t)sign_extend64(off, 15);
Sean Christopherson55d23752018-12-03 13:53:18 -08004485 if (base_is_valid)
4486 off += kvm_register_read(vcpu, base_reg);
4487 if (index_is_valid)
Miaohe Line6302692020-02-15 10:44:22 +08004488 off += kvm_register_read(vcpu, index_reg) << scaling;
Sean Christopherson55d23752018-12-03 13:53:18 -08004489 vmx_get_segment(vcpu, &s, seg_reg);
Sean Christopherson55d23752018-12-03 13:53:18 -08004490
Sean Christopherson8570f9e2019-01-23 14:39:24 -08004491 /*
4492 * The effective address, i.e. @off, of a memory operand is truncated
4493 * based on the address size of the instruction. Note that this is
4494 * the *effective address*, i.e. the address prior to accounting for
4495 * the segment's base.
4496 */
Sean Christopherson55d23752018-12-03 13:53:18 -08004497 if (addr_size == 1) /* 32 bit */
Sean Christopherson8570f9e2019-01-23 14:39:24 -08004498 off &= 0xffffffff;
4499 else if (addr_size == 0) /* 16 bit */
4500 off &= 0xffff;
Sean Christopherson55d23752018-12-03 13:53:18 -08004501
4502 /* Checks for #GP/#SS exceptions. */
4503 exn = false;
4504 if (is_long_mode(vcpu)) {
Sean Christopherson8570f9e2019-01-23 14:39:24 -08004505 /*
4506 * The virtual/linear address is never truncated in 64-bit
4507 * mode, e.g. a 32-bit address size can yield a 64-bit virtual
4508 * address when using FS/GS with a non-zero base.
4509 */
Liran Alon6694e482019-07-15 18:47:44 +03004510 if (seg_reg == VCPU_SREG_FS || seg_reg == VCPU_SREG_GS)
4511 *ret = s.base + off;
4512 else
4513 *ret = off;
Sean Christopherson8570f9e2019-01-23 14:39:24 -08004514
Sean Christopherson55d23752018-12-03 13:53:18 -08004515 /* Long mode: #GP(0)/#SS(0) if the memory address is in a
4516 * non-canonical form. This is the only check on the memory
4517 * destination for long mode!
4518 */
4519 exn = is_noncanonical_address(*ret, vcpu);
Paolo Bonzinie0dfacb2019-01-30 17:25:38 +01004520 } else {
Sean Christopherson8570f9e2019-01-23 14:39:24 -08004521 /*
4522 * When not in long mode, the virtual/linear address is
4523 * unconditionally truncated to 32 bits regardless of the
4524 * address size.
4525 */
4526 *ret = (s.base + off) & 0xffffffff;
4527
Sean Christopherson55d23752018-12-03 13:53:18 -08004528 /* Protected mode: apply checks for segment validity in the
4529 * following order:
4530 * - segment type check (#GP(0) may be thrown)
4531 * - usability check (#GP(0)/#SS(0))
4532 * - limit check (#GP(0)/#SS(0))
4533 */
4534 if (wr)
4535 /* #GP(0) if the destination operand is located in a
4536 * read-only data segment or any code segment.
4537 */
4538 exn = ((s.type & 0xa) == 0 || (s.type & 8));
4539 else
4540 /* #GP(0) if the source operand is located in an
4541 * execute-only code segment
4542 */
4543 exn = ((s.type & 0xa) == 8);
4544 if (exn) {
4545 kvm_queue_exception_e(vcpu, GP_VECTOR, 0);
4546 return 1;
4547 }
4548 /* Protected mode: #GP(0)/#SS(0) if the segment is unusable.
4549 */
4550 exn = (s.unusable != 0);
Sean Christopherson34333cc2019-01-23 14:39:25 -08004551
4552 /*
4553 * Protected mode: #GP(0)/#SS(0) if the memory operand is
4554 * outside the segment limit. All CPUs that support VMX ignore
4555 * limit checks for flat segments, i.e. segments with base==0,
4556 * limit==0xffffffff and of type expand-up data or code.
Sean Christopherson55d23752018-12-03 13:53:18 -08004557 */
Sean Christopherson34333cc2019-01-23 14:39:25 -08004558 if (!(s.base == 0 && s.limit == 0xffffffff &&
4559 ((s.type & 8) || !(s.type & 4))))
Eugene Korenevskyfdb28612019-06-06 00:19:16 +03004560 exn = exn || ((u64)off + len - 1 > s.limit);
Sean Christopherson55d23752018-12-03 13:53:18 -08004561 }
4562 if (exn) {
4563 kvm_queue_exception_e(vcpu,
4564 seg_reg == VCPU_SREG_SS ?
4565 SS_VECTOR : GP_VECTOR,
4566 0);
4567 return 1;
4568 }
4569
4570 return 0;
4571}
4572
Oliver Upton03a8871a2019-11-13 16:17:20 -08004573void nested_vmx_pmu_entry_exit_ctls_update(struct kvm_vcpu *vcpu)
4574{
4575 struct vcpu_vmx *vmx;
4576
4577 if (!nested_vmx_allowed(vcpu))
4578 return;
4579
4580 vmx = to_vmx(vcpu);
Sean Christophersonafaf0b22020-03-21 13:26:00 -07004581 if (kvm_x86_ops.pmu_ops->is_valid_msr(vcpu, MSR_CORE_PERF_GLOBAL_CTRL)) {
Oliver Upton03a8871a2019-11-13 16:17:20 -08004582 vmx->nested.msrs.entry_ctls_high |=
4583 VM_ENTRY_LOAD_IA32_PERF_GLOBAL_CTRL;
4584 vmx->nested.msrs.exit_ctls_high |=
4585 VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL;
4586 } else {
4587 vmx->nested.msrs.entry_ctls_high &=
4588 ~VM_ENTRY_LOAD_IA32_PERF_GLOBAL_CTRL;
4589 vmx->nested.msrs.exit_ctls_high &=
4590 ~VM_ENTRY_LOAD_IA32_PERF_GLOBAL_CTRL;
4591 }
4592}
4593
Sean Christopherson55d23752018-12-03 13:53:18 -08004594static int nested_vmx_get_vmptr(struct kvm_vcpu *vcpu, gpa_t *vmpointer)
4595{
4596 gva_t gva;
4597 struct x86_exception e;
4598
Sean Christopherson5addc232020-04-15 13:34:53 -07004599 if (get_vmx_mem_address(vcpu, vmx_get_exit_qual(vcpu),
Eugene Korenevskyfdb28612019-06-06 00:19:16 +03004600 vmcs_read32(VMX_INSTRUCTION_INFO), false,
4601 sizeof(*vmpointer), &gva))
Sean Christopherson55d23752018-12-03 13:53:18 -08004602 return 1;
4603
4604 if (kvm_read_guest_virt(vcpu, gva, vmpointer, sizeof(*vmpointer), &e)) {
Junaid Shahidee1fa202020-03-20 14:28:03 -07004605 kvm_inject_emulated_page_fault(vcpu, &e);
Sean Christopherson55d23752018-12-03 13:53:18 -08004606 return 1;
4607 }
4608
4609 return 0;
4610}
4611
4612/*
4613 * Allocate a shadow VMCS and associate it with the currently loaded
4614 * VMCS, unless such a shadow VMCS already exists. The newly allocated
4615 * VMCS is also VMCLEARed, so that it is ready for use.
4616 */
4617static struct vmcs *alloc_shadow_vmcs(struct kvm_vcpu *vcpu)
4618{
4619 struct vcpu_vmx *vmx = to_vmx(vcpu);
4620 struct loaded_vmcs *loaded_vmcs = vmx->loaded_vmcs;
4621
4622 /*
4623 * We should allocate a shadow vmcs for vmcs01 only when L1
4624 * executes VMXON and free it when L1 executes VMXOFF.
4625 * As it is invalid to execute VMXON twice, we shouldn't reach
4626 * here when vmcs01 already have an allocated shadow vmcs.
4627 */
4628 WARN_ON(loaded_vmcs == &vmx->vmcs01 && loaded_vmcs->shadow_vmcs);
4629
4630 if (!loaded_vmcs->shadow_vmcs) {
4631 loaded_vmcs->shadow_vmcs = alloc_vmcs(true);
4632 if (loaded_vmcs->shadow_vmcs)
4633 vmcs_clear(loaded_vmcs->shadow_vmcs);
4634 }
4635 return loaded_vmcs->shadow_vmcs;
4636}
4637
4638static int enter_vmx_operation(struct kvm_vcpu *vcpu)
4639{
4640 struct vcpu_vmx *vmx = to_vmx(vcpu);
4641 int r;
4642
4643 r = alloc_loaded_vmcs(&vmx->nested.vmcs02);
4644 if (r < 0)
4645 goto out_vmcs02;
4646
Ben Gardon41836832019-02-11 11:02:52 -08004647 vmx->nested.cached_vmcs12 = kzalloc(VMCS12_SIZE, GFP_KERNEL_ACCOUNT);
Sean Christopherson55d23752018-12-03 13:53:18 -08004648 if (!vmx->nested.cached_vmcs12)
4649 goto out_cached_vmcs12;
4650
Ben Gardon41836832019-02-11 11:02:52 -08004651 vmx->nested.cached_shadow_vmcs12 = kzalloc(VMCS12_SIZE, GFP_KERNEL_ACCOUNT);
Sean Christopherson55d23752018-12-03 13:53:18 -08004652 if (!vmx->nested.cached_shadow_vmcs12)
4653 goto out_cached_shadow_vmcs12;
4654
4655 if (enable_shadow_vmcs && !alloc_shadow_vmcs(vcpu))
4656 goto out_shadow_vmcs;
4657
4658 hrtimer_init(&vmx->nested.preemption_timer, CLOCK_MONOTONIC,
4659 HRTIMER_MODE_REL_PINNED);
4660 vmx->nested.preemption_timer.function = vmx_preemption_timer_fn;
4661
4662 vmx->nested.vpid02 = allocate_vpid();
4663
4664 vmx->nested.vmcs02_initialized = false;
4665 vmx->nested.vmxon = true;
Luwei Kangee85dec2018-10-24 16:05:16 +08004666
Sean Christopherson2ef76192020-03-02 15:56:22 -08004667 if (vmx_pt_mode_is_host_guest()) {
Luwei Kangee85dec2018-10-24 16:05:16 +08004668 vmx->pt_desc.guest.ctl = 0;
4669 pt_update_intercept_for_msr(vmx);
4670 }
4671
Sean Christopherson55d23752018-12-03 13:53:18 -08004672 return 0;
4673
4674out_shadow_vmcs:
4675 kfree(vmx->nested.cached_shadow_vmcs12);
4676
4677out_cached_shadow_vmcs12:
4678 kfree(vmx->nested.cached_vmcs12);
4679
4680out_cached_vmcs12:
4681 free_loaded_vmcs(&vmx->nested.vmcs02);
4682
4683out_vmcs02:
4684 return -ENOMEM;
4685}
4686
4687/*
4688 * Emulate the VMXON instruction.
4689 * Currently, we just remember that VMX is active, and do not save or even
4690 * inspect the argument to VMXON (the so-called "VMXON pointer") because we
4691 * do not currently need to store anything in that guest-allocated memory
4692 * region. Consequently, VMCLEAR and VMPTRLD also do not verify that the their
4693 * argument is different from the VMXON pointer (which the spec says they do).
4694 */
4695static int handle_vmon(struct kvm_vcpu *vcpu)
4696{
4697 int ret;
4698 gpa_t vmptr;
KarimAllah Ahmed2e408932019-01-31 21:24:31 +01004699 uint32_t revision;
Sean Christopherson55d23752018-12-03 13:53:18 -08004700 struct vcpu_vmx *vmx = to_vmx(vcpu);
Sean Christopherson32ad73d2019-12-20 20:44:55 -08004701 const u64 VMXON_NEEDED_FEATURES = FEAT_CTL_LOCKED
4702 | FEAT_CTL_VMX_ENABLED_OUTSIDE_SMX;
Sean Christopherson55d23752018-12-03 13:53:18 -08004703
4704 /*
4705 * The Intel VMX Instruction Reference lists a bunch of bits that are
4706 * prerequisite to running VMXON, most notably cr4.VMXE must be set to
4707 * 1 (see vmx_set_cr4() for when we allow the guest to set this).
4708 * Otherwise, we should fail with #UD. But most faulting conditions
4709 * have already been checked by hardware, prior to the VM-exit for
4710 * VMXON. We do test guest cr4.VMXE because processor CR4 always has
4711 * that bit set to 1 in non-root mode.
4712 */
4713 if (!kvm_read_cr4_bits(vcpu, X86_CR4_VMXE)) {
4714 kvm_queue_exception(vcpu, UD_VECTOR);
4715 return 1;
4716 }
4717
4718 /* CPL=0 must be checked manually. */
4719 if (vmx_get_cpl(vcpu)) {
4720 kvm_inject_gp(vcpu, 0);
4721 return 1;
4722 }
4723
4724 if (vmx->nested.vmxon)
4725 return nested_vmx_failValid(vcpu,
4726 VMXERR_VMXON_IN_VMX_ROOT_OPERATION);
4727
4728 if ((vmx->msr_ia32_feature_control & VMXON_NEEDED_FEATURES)
4729 != VMXON_NEEDED_FEATURES) {
4730 kvm_inject_gp(vcpu, 0);
4731 return 1;
4732 }
4733
4734 if (nested_vmx_get_vmptr(vcpu, &vmptr))
4735 return 1;
4736
4737 /*
4738 * SDM 3: 24.11.5
4739 * The first 4 bytes of VMXON region contain the supported
4740 * VMCS revision identifier
4741 *
4742 * Note - IA32_VMX_BASIC[48] will never be 1 for the nested case;
4743 * which replaces physical address width with 32
4744 */
KarimAllah Ahmede0bf2662019-01-31 21:24:43 +01004745 if (!page_address_valid(vcpu, vmptr))
Sean Christopherson55d23752018-12-03 13:53:18 -08004746 return nested_vmx_failInvalid(vcpu);
4747
KarimAllah Ahmed2e408932019-01-31 21:24:31 +01004748 if (kvm_read_guest(vcpu->kvm, vmptr, &revision, sizeof(revision)) ||
4749 revision != VMCS12_REVISION)
Sean Christopherson55d23752018-12-03 13:53:18 -08004750 return nested_vmx_failInvalid(vcpu);
4751
Sean Christopherson55d23752018-12-03 13:53:18 -08004752 vmx->nested.vmxon_ptr = vmptr;
4753 ret = enter_vmx_operation(vcpu);
4754 if (ret)
4755 return ret;
4756
4757 return nested_vmx_succeed(vcpu);
4758}
4759
4760static inline void nested_release_vmcs12(struct kvm_vcpu *vcpu)
4761{
4762 struct vcpu_vmx *vmx = to_vmx(vcpu);
4763
4764 if (vmx->nested.current_vmptr == -1ull)
4765 return;
4766
Sean Christopherson7952d762019-05-07 08:36:29 -07004767 copy_vmcs02_to_vmcs12_rare(vcpu, get_vmcs12(vcpu));
4768
Sean Christopherson55d23752018-12-03 13:53:18 -08004769 if (enable_shadow_vmcs) {
4770 /* copy to memory all shadowed fields in case
4771 they were modified */
4772 copy_shadow_to_vmcs12(vmx);
Sean Christopherson55d23752018-12-03 13:53:18 -08004773 vmx_disable_shadow_vmcs(vmx);
4774 }
4775 vmx->nested.posted_intr_nv = -1;
4776
4777 /* Flush VMCS12 to guest memory */
4778 kvm_vcpu_write_guest_page(vcpu,
4779 vmx->nested.current_vmptr >> PAGE_SHIFT,
4780 vmx->nested.cached_vmcs12, 0, VMCS12_SIZE);
4781
4782 kvm_mmu_free_roots(vcpu, &vcpu->arch.guest_mmu, KVM_MMU_ROOTS_ALL);
4783
4784 vmx->nested.current_vmptr = -1ull;
4785}
4786
4787/* Emulate the VMXOFF instruction */
4788static int handle_vmoff(struct kvm_vcpu *vcpu)
4789{
4790 if (!nested_vmx_check_permission(vcpu))
4791 return 1;
Liran Alon4b9852f2019-08-26 13:24:49 +03004792
Sean Christopherson55d23752018-12-03 13:53:18 -08004793 free_nested(vcpu);
Liran Alon4b9852f2019-08-26 13:24:49 +03004794
4795 /* Process a latched INIT during time CPU was in VMX operation */
4796 kvm_make_request(KVM_REQ_EVENT, vcpu);
4797
Sean Christopherson55d23752018-12-03 13:53:18 -08004798 return nested_vmx_succeed(vcpu);
4799}
4800
4801/* Emulate the VMCLEAR instruction */
4802static int handle_vmclear(struct kvm_vcpu *vcpu)
4803{
4804 struct vcpu_vmx *vmx = to_vmx(vcpu);
4805 u32 zero = 0;
4806 gpa_t vmptr;
Vitaly Kuznetsov11e34912019-06-28 13:23:33 +02004807 u64 evmcs_gpa;
Sean Christopherson55d23752018-12-03 13:53:18 -08004808
4809 if (!nested_vmx_check_permission(vcpu))
4810 return 1;
4811
4812 if (nested_vmx_get_vmptr(vcpu, &vmptr))
4813 return 1;
4814
KarimAllah Ahmede0bf2662019-01-31 21:24:43 +01004815 if (!page_address_valid(vcpu, vmptr))
Sean Christopherson55d23752018-12-03 13:53:18 -08004816 return nested_vmx_failValid(vcpu,
4817 VMXERR_VMCLEAR_INVALID_ADDRESS);
4818
4819 if (vmptr == vmx->nested.vmxon_ptr)
4820 return nested_vmx_failValid(vcpu,
4821 VMXERR_VMCLEAR_VMXON_POINTER);
4822
Vitaly Kuznetsov11e34912019-06-28 13:23:33 +02004823 /*
4824 * When Enlightened VMEntry is enabled on the calling CPU we treat
4825 * memory area pointer by vmptr as Enlightened VMCS (as there's no good
4826 * way to distinguish it from VMCS12) and we must not corrupt it by
4827 * writing to the non-existent 'launch_state' field. The area doesn't
4828 * have to be the currently active EVMCS on the calling CPU and there's
4829 * nothing KVM has to do to transition it from 'active' to 'non-active'
4830 * state. It is possible that the area will stay mapped as
4831 * vmx->nested.hv_evmcs but this shouldn't be a problem.
4832 */
4833 if (likely(!vmx->nested.enlightened_vmcs_enabled ||
4834 !nested_enlightened_vmentry(vcpu, &evmcs_gpa))) {
Sean Christopherson55d23752018-12-03 13:53:18 -08004835 if (vmptr == vmx->nested.current_vmptr)
4836 nested_release_vmcs12(vcpu);
4837
4838 kvm_vcpu_write_guest(vcpu,
4839 vmptr + offsetof(struct vmcs12,
4840 launch_state),
4841 &zero, sizeof(zero));
4842 }
4843
4844 return nested_vmx_succeed(vcpu);
4845}
4846
Sean Christopherson55d23752018-12-03 13:53:18 -08004847/* Emulate the VMLAUNCH instruction */
4848static int handle_vmlaunch(struct kvm_vcpu *vcpu)
4849{
4850 return nested_vmx_run(vcpu, true);
4851}
4852
4853/* Emulate the VMRESUME instruction */
4854static int handle_vmresume(struct kvm_vcpu *vcpu)
4855{
4856
4857 return nested_vmx_run(vcpu, false);
4858}
4859
4860static int handle_vmread(struct kvm_vcpu *vcpu)
4861{
Jim Mattsondd2d6042019-12-06 15:46:35 -08004862 struct vmcs12 *vmcs12 = is_guest_mode(vcpu) ? get_shadow_vmcs12(vcpu)
4863 : get_vmcs12(vcpu);
Sean Christopherson5addc232020-04-15 13:34:53 -07004864 unsigned long exit_qualification = vmx_get_exit_qual(vcpu);
Jim Mattsonc90f4d02019-12-06 15:46:37 -08004865 u32 instr_info = vmcs_read32(VMX_INSTRUCTION_INFO);
4866 struct vcpu_vmx *vmx = to_vmx(vcpu);
Paolo Bonzinif7eea632019-09-14 00:26:27 +02004867 struct x86_exception e;
Jim Mattsonc90f4d02019-12-06 15:46:37 -08004868 unsigned long field;
4869 u64 value;
4870 gva_t gva = 0;
Sean Christopherson1c6f0b42019-05-07 08:36:25 -07004871 short offset;
Jim Mattsonc90f4d02019-12-06 15:46:37 -08004872 int len;
Sean Christopherson55d23752018-12-03 13:53:18 -08004873
4874 if (!nested_vmx_check_permission(vcpu))
4875 return 1;
4876
Jim Mattsondd2d6042019-12-06 15:46:35 -08004877 /*
4878 * In VMX non-root operation, when the VMCS-link pointer is -1ull,
4879 * any VMREAD sets the ALU flags for VMfailInvalid.
4880 */
4881 if (vmx->nested.current_vmptr == -1ull ||
4882 (is_guest_mode(vcpu) &&
4883 get_vmcs12(vcpu)->vmcs_link_pointer == -1ull))
Sean Christopherson55d23752018-12-03 13:53:18 -08004884 return nested_vmx_failInvalid(vcpu);
4885
Sean Christopherson55d23752018-12-03 13:53:18 -08004886 /* Decode instruction info and find the field to read */
Jim Mattsonc90f4d02019-12-06 15:46:37 -08004887 field = kvm_register_readl(vcpu, (((instr_info) >> 28) & 0xf));
Sean Christopherson1c6f0b42019-05-07 08:36:25 -07004888
4889 offset = vmcs_field_to_offset(field);
4890 if (offset < 0)
Sean Christopherson55d23752018-12-03 13:53:18 -08004891 return nested_vmx_failValid(vcpu,
4892 VMXERR_UNSUPPORTED_VMCS_COMPONENT);
4893
Sean Christopherson7952d762019-05-07 08:36:29 -07004894 if (!is_guest_mode(vcpu) && is_vmcs12_ext_field(field))
4895 copy_vmcs02_to_vmcs12_rare(vcpu, vmcs12);
4896
Jim Mattsonc90f4d02019-12-06 15:46:37 -08004897 /* Read the field, zero-extended to a u64 value */
4898 value = vmcs12_read_any(vmcs12, field, offset);
Sean Christopherson1c6f0b42019-05-07 08:36:25 -07004899
Sean Christopherson55d23752018-12-03 13:53:18 -08004900 /*
4901 * Now copy part of this value to register or memory, as requested.
4902 * Note that the number of bits actually copied is 32 or 64 depending
4903 * on the guest's mode (32 or 64 bit), not on the given field's length.
4904 */
Jim Mattsonc90f4d02019-12-06 15:46:37 -08004905 if (instr_info & BIT(10)) {
4906 kvm_register_writel(vcpu, (((instr_info) >> 3) & 0xf), value);
Sean Christopherson55d23752018-12-03 13:53:18 -08004907 } else {
Eugene Korenevskyfdb28612019-06-06 00:19:16 +03004908 len = is_64_bit_mode(vcpu) ? 8 : 4;
Sean Christopherson55d23752018-12-03 13:53:18 -08004909 if (get_vmx_mem_address(vcpu, exit_qualification,
Jim Mattsonc90f4d02019-12-06 15:46:37 -08004910 instr_info, true, len, &gva))
Sean Christopherson55d23752018-12-03 13:53:18 -08004911 return 1;
4912 /* _system ok, nested_vmx_check_permission has verified cpl=0 */
Miaohe Lina4d956b2019-12-28 14:25:24 +08004913 if (kvm_write_guest_virt_system(vcpu, gva, &value, len, &e)) {
Junaid Shahidee1fa202020-03-20 14:28:03 -07004914 kvm_inject_emulated_page_fault(vcpu, &e);
Miaohe Lina4d956b2019-12-28 14:25:24 +08004915 return 1;
4916 }
Sean Christopherson55d23752018-12-03 13:53:18 -08004917 }
4918
4919 return nested_vmx_succeed(vcpu);
4920}
4921
Sean Christophersone2174292019-05-07 08:36:28 -07004922static bool is_shadow_field_rw(unsigned long field)
4923{
4924 switch (field) {
4925#define SHADOW_FIELD_RW(x, y) case x:
4926#include "vmcs_shadow_fields.h"
4927 return true;
4928 default:
4929 break;
4930 }
4931 return false;
4932}
4933
4934static bool is_shadow_field_ro(unsigned long field)
4935{
4936 switch (field) {
4937#define SHADOW_FIELD_RO(x, y) case x:
4938#include "vmcs_shadow_fields.h"
4939 return true;
4940 default:
4941 break;
4942 }
4943 return false;
4944}
Sean Christopherson55d23752018-12-03 13:53:18 -08004945
4946static int handle_vmwrite(struct kvm_vcpu *vcpu)
4947{
Jim Mattsondd2d6042019-12-06 15:46:35 -08004948 struct vmcs12 *vmcs12 = is_guest_mode(vcpu) ? get_shadow_vmcs12(vcpu)
4949 : get_vmcs12(vcpu);
Sean Christopherson5addc232020-04-15 13:34:53 -07004950 unsigned long exit_qualification = vmx_get_exit_qual(vcpu);
Jim Mattsonc90f4d02019-12-06 15:46:37 -08004951 u32 instr_info = vmcs_read32(VMX_INSTRUCTION_INFO);
4952 struct vcpu_vmx *vmx = to_vmx(vcpu);
4953 struct x86_exception e;
4954 unsigned long field;
Sean Christopherson1c6f0b42019-05-07 08:36:25 -07004955 short offset;
Jim Mattsonc90f4d02019-12-06 15:46:37 -08004956 gva_t gva;
4957 int len;
Sean Christopherson55d23752018-12-03 13:53:18 -08004958
Jim Mattsonc90f4d02019-12-06 15:46:37 -08004959 /*
4960 * The value to write might be 32 or 64 bits, depending on L1's long
Sean Christopherson55d23752018-12-03 13:53:18 -08004961 * mode, and eventually we need to write that into a field of several
4962 * possible lengths. The code below first zero-extends the value to 64
Jim Mattsonc90f4d02019-12-06 15:46:37 -08004963 * bit (value), and then copies only the appropriate number of
Sean Christopherson55d23752018-12-03 13:53:18 -08004964 * bits into the vmcs12 field.
4965 */
Jim Mattsonc90f4d02019-12-06 15:46:37 -08004966 u64 value = 0;
Sean Christopherson55d23752018-12-03 13:53:18 -08004967
4968 if (!nested_vmx_check_permission(vcpu))
4969 return 1;
4970
Jim Mattsondd2d6042019-12-06 15:46:35 -08004971 /*
4972 * In VMX non-root operation, when the VMCS-link pointer is -1ull,
4973 * any VMWRITE sets the ALU flags for VMfailInvalid.
4974 */
4975 if (vmx->nested.current_vmptr == -1ull ||
4976 (is_guest_mode(vcpu) &&
4977 get_vmcs12(vcpu)->vmcs_link_pointer == -1ull))
Sean Christopherson55d23752018-12-03 13:53:18 -08004978 return nested_vmx_failInvalid(vcpu);
4979
Jim Mattsonc90f4d02019-12-06 15:46:37 -08004980 if (instr_info & BIT(10))
4981 value = kvm_register_readl(vcpu, (((instr_info) >> 3) & 0xf));
Sean Christopherson55d23752018-12-03 13:53:18 -08004982 else {
Eugene Korenevskyfdb28612019-06-06 00:19:16 +03004983 len = is_64_bit_mode(vcpu) ? 8 : 4;
Sean Christopherson55d23752018-12-03 13:53:18 -08004984 if (get_vmx_mem_address(vcpu, exit_qualification,
Jim Mattsonc90f4d02019-12-06 15:46:37 -08004985 instr_info, false, len, &gva))
Sean Christopherson55d23752018-12-03 13:53:18 -08004986 return 1;
Jim Mattsonc90f4d02019-12-06 15:46:37 -08004987 if (kvm_read_guest_virt(vcpu, gva, &value, len, &e)) {
Junaid Shahidee1fa202020-03-20 14:28:03 -07004988 kvm_inject_emulated_page_fault(vcpu, &e);
Sean Christopherson55d23752018-12-03 13:53:18 -08004989 return 1;
4990 }
4991 }
4992
Jim Mattsonc90f4d02019-12-06 15:46:37 -08004993 field = kvm_register_readl(vcpu, (((instr_info) >> 28) & 0xf));
Sean Christopherson55d23752018-12-03 13:53:18 -08004994
Jim Mattson693e02c2019-12-06 15:46:36 -08004995 offset = vmcs_field_to_offset(field);
4996 if (offset < 0)
4997 return nested_vmx_failValid(vcpu,
4998 VMXERR_UNSUPPORTED_VMCS_COMPONENT);
4999
Sean Christopherson55d23752018-12-03 13:53:18 -08005000 /*
5001 * If the vCPU supports "VMWRITE to any supported field in the
5002 * VMCS," then the "read-only" fields are actually read/write.
5003 */
5004 if (vmcs_field_readonly(field) &&
5005 !nested_cpu_has_vmwrite_any_field(vcpu))
5006 return nested_vmx_failValid(vcpu,
5007 VMXERR_VMWRITE_READ_ONLY_VMCS_COMPONENT);
5008
Jim Mattsondd2d6042019-12-06 15:46:35 -08005009 /*
5010 * Ensure vmcs12 is up-to-date before any VMWRITE that dirties
5011 * vmcs12, else we may crush a field or consume a stale value.
5012 */
5013 if (!is_guest_mode(vcpu) && !is_shadow_field_rw(field))
5014 copy_vmcs02_to_vmcs12_rare(vcpu, vmcs12);
Sean Christopherson55d23752018-12-03 13:53:18 -08005015
5016 /*
Sean Christophersonb6437802019-05-07 08:36:24 -07005017 * Some Intel CPUs intentionally drop the reserved bits of the AR byte
5018 * fields on VMWRITE. Emulate this behavior to ensure consistent KVM
5019 * behavior regardless of the underlying hardware, e.g. if an AR_BYTE
5020 * field is intercepted for VMWRITE but not VMREAD (in L1), then VMREAD
5021 * from L1 will return a different value than VMREAD from L2 (L1 sees
5022 * the stripped down value, L2 sees the full value as stored by KVM).
Sean Christopherson55d23752018-12-03 13:53:18 -08005023 */
Sean Christophersonb6437802019-05-07 08:36:24 -07005024 if (field >= GUEST_ES_AR_BYTES && field <= GUEST_TR_AR_BYTES)
Jim Mattsonc90f4d02019-12-06 15:46:37 -08005025 value &= 0x1f0ff;
Sean Christophersonb6437802019-05-07 08:36:24 -07005026
Jim Mattsonc90f4d02019-12-06 15:46:37 -08005027 vmcs12_write_any(vmcs12, field, offset, value);
Sean Christopherson55d23752018-12-03 13:53:18 -08005028
5029 /*
Sean Christophersone2174292019-05-07 08:36:28 -07005030 * Do not track vmcs12 dirty-state if in guest-mode as we actually
5031 * dirty shadow vmcs12 instead of vmcs12. Fields that can be updated
5032 * by L1 without a vmexit are always updated in the vmcs02, i.e. don't
5033 * "dirty" vmcs12, all others go down the prepare_vmcs02() slow path.
Sean Christopherson55d23752018-12-03 13:53:18 -08005034 */
Sean Christophersone2174292019-05-07 08:36:28 -07005035 if (!is_guest_mode(vcpu) && !is_shadow_field_rw(field)) {
5036 /*
5037 * L1 can read these fields without exiting, ensure the
5038 * shadow VMCS is up-to-date.
5039 */
5040 if (enable_shadow_vmcs && is_shadow_field_ro(field)) {
5041 preempt_disable();
5042 vmcs_load(vmx->vmcs01.shadow_vmcs);
Sean Christophersonfadcead2019-05-07 08:36:23 -07005043
Jim Mattsonc90f4d02019-12-06 15:46:37 -08005044 __vmcs_writel(field, value);
Sean Christophersonfadcead2019-05-07 08:36:23 -07005045
Sean Christophersone2174292019-05-07 08:36:28 -07005046 vmcs_clear(vmx->vmcs01.shadow_vmcs);
5047 vmcs_load(vmx->loaded_vmcs->vmcs);
5048 preempt_enable();
Sean Christopherson55d23752018-12-03 13:53:18 -08005049 }
Sean Christophersone2174292019-05-07 08:36:28 -07005050 vmx->nested.dirty_vmcs12 = true;
Sean Christopherson55d23752018-12-03 13:53:18 -08005051 }
5052
5053 return nested_vmx_succeed(vcpu);
5054}
5055
5056static void set_current_vmptr(struct vcpu_vmx *vmx, gpa_t vmptr)
5057{
5058 vmx->nested.current_vmptr = vmptr;
5059 if (enable_shadow_vmcs) {
Sean Christophersonfe7f895d2019-05-07 12:17:57 -07005060 secondary_exec_controls_setbit(vmx, SECONDARY_EXEC_SHADOW_VMCS);
Sean Christopherson55d23752018-12-03 13:53:18 -08005061 vmcs_write64(VMCS_LINK_POINTER,
5062 __pa(vmx->vmcs01.shadow_vmcs));
Sean Christopherson3731905ef2019-05-07 08:36:27 -07005063 vmx->nested.need_vmcs12_to_shadow_sync = true;
Sean Christopherson55d23752018-12-03 13:53:18 -08005064 }
5065 vmx->nested.dirty_vmcs12 = true;
5066}
5067
5068/* Emulate the VMPTRLD instruction */
5069static int handle_vmptrld(struct kvm_vcpu *vcpu)
5070{
5071 struct vcpu_vmx *vmx = to_vmx(vcpu);
5072 gpa_t vmptr;
5073
5074 if (!nested_vmx_check_permission(vcpu))
5075 return 1;
5076
5077 if (nested_vmx_get_vmptr(vcpu, &vmptr))
5078 return 1;
5079
KarimAllah Ahmede0bf2662019-01-31 21:24:43 +01005080 if (!page_address_valid(vcpu, vmptr))
Sean Christopherson55d23752018-12-03 13:53:18 -08005081 return nested_vmx_failValid(vcpu,
5082 VMXERR_VMPTRLD_INVALID_ADDRESS);
5083
5084 if (vmptr == vmx->nested.vmxon_ptr)
5085 return nested_vmx_failValid(vcpu,
5086 VMXERR_VMPTRLD_VMXON_POINTER);
5087
5088 /* Forbid normal VMPTRLD if Enlightened version was used */
5089 if (vmx->nested.hv_evmcs)
5090 return 1;
5091
5092 if (vmx->nested.current_vmptr != vmptr) {
KarimAllah Ahmedb146b832019-01-31 21:24:35 +01005093 struct kvm_host_map map;
Sean Christopherson55d23752018-12-03 13:53:18 -08005094 struct vmcs12 *new_vmcs12;
Sean Christopherson55d23752018-12-03 13:53:18 -08005095
KarimAllah Ahmedb146b832019-01-31 21:24:35 +01005096 if (kvm_vcpu_map(vcpu, gpa_to_gfn(vmptr), &map)) {
Sean Christopherson55d23752018-12-03 13:53:18 -08005097 /*
5098 * Reads from an unbacked page return all 1s,
5099 * which means that the 32 bits located at the
5100 * given physical address won't match the required
5101 * VMCS12_REVISION identifier.
5102 */
Vitaly Kuznetsov826c1362019-01-09 18:22:56 +01005103 return nested_vmx_failValid(vcpu,
Sean Christopherson55d23752018-12-03 13:53:18 -08005104 VMXERR_VMPTRLD_INCORRECT_VMCS_REVISION_ID);
Sean Christopherson55d23752018-12-03 13:53:18 -08005105 }
KarimAllah Ahmedb146b832019-01-31 21:24:35 +01005106
5107 new_vmcs12 = map.hva;
5108
Sean Christopherson55d23752018-12-03 13:53:18 -08005109 if (new_vmcs12->hdr.revision_id != VMCS12_REVISION ||
5110 (new_vmcs12->hdr.shadow_vmcs &&
5111 !nested_cpu_has_vmx_shadow_vmcs(vcpu))) {
KarimAllah Ahmedb146b832019-01-31 21:24:35 +01005112 kvm_vcpu_unmap(vcpu, &map, false);
Sean Christopherson55d23752018-12-03 13:53:18 -08005113 return nested_vmx_failValid(vcpu,
5114 VMXERR_VMPTRLD_INCORRECT_VMCS_REVISION_ID);
5115 }
5116
5117 nested_release_vmcs12(vcpu);
5118
5119 /*
5120 * Load VMCS12 from guest memory since it is not already
5121 * cached.
5122 */
5123 memcpy(vmx->nested.cached_vmcs12, new_vmcs12, VMCS12_SIZE);
KarimAllah Ahmedb146b832019-01-31 21:24:35 +01005124 kvm_vcpu_unmap(vcpu, &map, false);
Sean Christopherson55d23752018-12-03 13:53:18 -08005125
5126 set_current_vmptr(vmx, vmptr);
5127 }
5128
5129 return nested_vmx_succeed(vcpu);
5130}
5131
5132/* Emulate the VMPTRST instruction */
5133static int handle_vmptrst(struct kvm_vcpu *vcpu)
5134{
Sean Christopherson5addc232020-04-15 13:34:53 -07005135 unsigned long exit_qual = vmx_get_exit_qual(vcpu);
Sean Christopherson55d23752018-12-03 13:53:18 -08005136 u32 instr_info = vmcs_read32(VMX_INSTRUCTION_INFO);
5137 gpa_t current_vmptr = to_vmx(vcpu)->nested.current_vmptr;
5138 struct x86_exception e;
5139 gva_t gva;
5140
5141 if (!nested_vmx_check_permission(vcpu))
5142 return 1;
5143
5144 if (unlikely(to_vmx(vcpu)->nested.hv_evmcs))
5145 return 1;
5146
Eugene Korenevskyfdb28612019-06-06 00:19:16 +03005147 if (get_vmx_mem_address(vcpu, exit_qual, instr_info,
5148 true, sizeof(gpa_t), &gva))
Sean Christopherson55d23752018-12-03 13:53:18 -08005149 return 1;
5150 /* *_system ok, nested_vmx_check_permission has verified cpl=0 */
5151 if (kvm_write_guest_virt_system(vcpu, gva, (void *)&current_vmptr,
5152 sizeof(gpa_t), &e)) {
Junaid Shahidee1fa202020-03-20 14:28:03 -07005153 kvm_inject_emulated_page_fault(vcpu, &e);
Sean Christopherson55d23752018-12-03 13:53:18 -08005154 return 1;
5155 }
5156 return nested_vmx_succeed(vcpu);
5157}
5158
Sean Christophersonce8fe7b2020-03-20 14:28:31 -07005159#define EPTP_PA_MASK GENMASK_ULL(51, 12)
5160
5161static bool nested_ept_root_matches(hpa_t root_hpa, u64 root_eptp, u64 eptp)
5162{
5163 return VALID_PAGE(root_hpa) &&
5164 ((root_eptp & EPTP_PA_MASK) == (eptp & EPTP_PA_MASK));
5165}
5166
Sean Christopherson55d23752018-12-03 13:53:18 -08005167/* Emulate the INVEPT instruction */
5168static int handle_invept(struct kvm_vcpu *vcpu)
5169{
5170 struct vcpu_vmx *vmx = to_vmx(vcpu);
5171 u32 vmx_instruction_info, types;
Sean Christophersonce8fe7b2020-03-20 14:28:31 -07005172 unsigned long type, roots_to_free;
5173 struct kvm_mmu *mmu;
Sean Christopherson55d23752018-12-03 13:53:18 -08005174 gva_t gva;
5175 struct x86_exception e;
5176 struct {
5177 u64 eptp, gpa;
5178 } operand;
Sean Christophersonce8fe7b2020-03-20 14:28:31 -07005179 int i;
Sean Christopherson55d23752018-12-03 13:53:18 -08005180
5181 if (!(vmx->nested.msrs.secondary_ctls_high &
5182 SECONDARY_EXEC_ENABLE_EPT) ||
5183 !(vmx->nested.msrs.ept_caps & VMX_EPT_INVEPT_BIT)) {
5184 kvm_queue_exception(vcpu, UD_VECTOR);
5185 return 1;
5186 }
5187
5188 if (!nested_vmx_check_permission(vcpu))
5189 return 1;
5190
5191 vmx_instruction_info = vmcs_read32(VMX_INSTRUCTION_INFO);
5192 type = kvm_register_readl(vcpu, (vmx_instruction_info >> 28) & 0xf);
5193
5194 types = (vmx->nested.msrs.ept_caps >> VMX_EPT_EXTENT_SHIFT) & 6;
5195
5196 if (type >= 32 || !(types & (1 << type)))
5197 return nested_vmx_failValid(vcpu,
5198 VMXERR_INVALID_OPERAND_TO_INVEPT_INVVPID);
5199
5200 /* According to the Intel VMX instruction reference, the memory
5201 * operand is read even if it isn't needed (e.g., for type==global)
5202 */
Sean Christopherson5addc232020-04-15 13:34:53 -07005203 if (get_vmx_mem_address(vcpu, vmx_get_exit_qual(vcpu),
Eugene Korenevskyfdb28612019-06-06 00:19:16 +03005204 vmx_instruction_info, false, sizeof(operand), &gva))
Sean Christopherson55d23752018-12-03 13:53:18 -08005205 return 1;
5206 if (kvm_read_guest_virt(vcpu, gva, &operand, sizeof(operand), &e)) {
Junaid Shahidee1fa202020-03-20 14:28:03 -07005207 kvm_inject_emulated_page_fault(vcpu, &e);
Sean Christopherson55d23752018-12-03 13:53:18 -08005208 return 1;
5209 }
5210
Sean Christophersonce8fe7b2020-03-20 14:28:31 -07005211 /*
5212 * Nested EPT roots are always held through guest_mmu,
5213 * not root_mmu.
5214 */
5215 mmu = &vcpu->arch.guest_mmu;
5216
Sean Christopherson55d23752018-12-03 13:53:18 -08005217 switch (type) {
Sean Christopherson55d23752018-12-03 13:53:18 -08005218 case VMX_EPT_EXTENT_CONTEXT:
Sean Christophersoneed00302020-03-20 14:27:58 -07005219 if (!nested_vmx_check_eptp(vcpu, operand.eptp))
5220 return nested_vmx_failValid(vcpu,
5221 VMXERR_INVALID_OPERAND_TO_INVEPT_INVVPID);
Sean Christophersonf8aa7e32020-03-20 14:27:59 -07005222
Sean Christophersonce8fe7b2020-03-20 14:28:31 -07005223 roots_to_free = 0;
Sean Christophersonbe01e8e2020-03-20 14:28:32 -07005224 if (nested_ept_root_matches(mmu->root_hpa, mmu->root_pgd,
Sean Christophersonce8fe7b2020-03-20 14:28:31 -07005225 operand.eptp))
5226 roots_to_free |= KVM_MMU_ROOT_CURRENT;
5227
5228 for (i = 0; i < KVM_MMU_NUM_PREV_ROOTS; i++) {
5229 if (nested_ept_root_matches(mmu->prev_roots[i].hpa,
Sean Christophersonbe01e8e2020-03-20 14:28:32 -07005230 mmu->prev_roots[i].pgd,
Sean Christophersonce8fe7b2020-03-20 14:28:31 -07005231 operand.eptp))
5232 roots_to_free |= KVM_MMU_ROOT_PREVIOUS(i);
5233 }
5234 break;
Sean Christophersoneed00302020-03-20 14:27:58 -07005235 case VMX_EPT_EXTENT_GLOBAL:
Sean Christophersonce8fe7b2020-03-20 14:28:31 -07005236 roots_to_free = KVM_MMU_ROOTS_ALL;
Sean Christopherson55d23752018-12-03 13:53:18 -08005237 break;
5238 default:
5239 BUG_ON(1);
5240 break;
5241 }
5242
Sean Christophersonce8fe7b2020-03-20 14:28:31 -07005243 if (roots_to_free)
5244 kvm_mmu_free_roots(vcpu, mmu, roots_to_free);
5245
Sean Christopherson55d23752018-12-03 13:53:18 -08005246 return nested_vmx_succeed(vcpu);
5247}
5248
5249static int handle_invvpid(struct kvm_vcpu *vcpu)
5250{
5251 struct vcpu_vmx *vmx = to_vmx(vcpu);
5252 u32 vmx_instruction_info;
5253 unsigned long type, types;
5254 gva_t gva;
5255 struct x86_exception e;
5256 struct {
5257 u64 vpid;
5258 u64 gla;
5259 } operand;
5260 u16 vpid02;
5261
5262 if (!(vmx->nested.msrs.secondary_ctls_high &
5263 SECONDARY_EXEC_ENABLE_VPID) ||
5264 !(vmx->nested.msrs.vpid_caps & VMX_VPID_INVVPID_BIT)) {
5265 kvm_queue_exception(vcpu, UD_VECTOR);
5266 return 1;
5267 }
5268
5269 if (!nested_vmx_check_permission(vcpu))
5270 return 1;
5271
5272 vmx_instruction_info = vmcs_read32(VMX_INSTRUCTION_INFO);
5273 type = kvm_register_readl(vcpu, (vmx_instruction_info >> 28) & 0xf);
5274
5275 types = (vmx->nested.msrs.vpid_caps &
5276 VMX_VPID_EXTENT_SUPPORTED_MASK) >> 8;
5277
5278 if (type >= 32 || !(types & (1 << type)))
5279 return nested_vmx_failValid(vcpu,
5280 VMXERR_INVALID_OPERAND_TO_INVEPT_INVVPID);
5281
5282 /* according to the intel vmx instruction reference, the memory
5283 * operand is read even if it isn't needed (e.g., for type==global)
5284 */
Sean Christopherson5addc232020-04-15 13:34:53 -07005285 if (get_vmx_mem_address(vcpu, vmx_get_exit_qual(vcpu),
Eugene Korenevskyfdb28612019-06-06 00:19:16 +03005286 vmx_instruction_info, false, sizeof(operand), &gva))
Sean Christopherson55d23752018-12-03 13:53:18 -08005287 return 1;
5288 if (kvm_read_guest_virt(vcpu, gva, &operand, sizeof(operand), &e)) {
Junaid Shahidee1fa202020-03-20 14:28:03 -07005289 kvm_inject_emulated_page_fault(vcpu, &e);
Sean Christopherson55d23752018-12-03 13:53:18 -08005290 return 1;
5291 }
5292 if (operand.vpid >> 16)
5293 return nested_vmx_failValid(vcpu,
5294 VMXERR_INVALID_OPERAND_TO_INVEPT_INVVPID);
5295
5296 vpid02 = nested_get_vpid02(vcpu);
5297 switch (type) {
5298 case VMX_VPID_EXTENT_INDIVIDUAL_ADDR:
5299 if (!operand.vpid ||
5300 is_noncanonical_address(operand.gla, vcpu))
5301 return nested_vmx_failValid(vcpu,
5302 VMXERR_INVALID_OPERAND_TO_INVEPT_INVVPID);
Sean Christophersonbc41d0c2020-03-20 14:28:09 -07005303 vpid_sync_vcpu_addr(vpid02, operand.gla);
Sean Christopherson55d23752018-12-03 13:53:18 -08005304 break;
5305 case VMX_VPID_EXTENT_SINGLE_CONTEXT:
5306 case VMX_VPID_EXTENT_SINGLE_NON_GLOBAL:
5307 if (!operand.vpid)
5308 return nested_vmx_failValid(vcpu,
5309 VMXERR_INVALID_OPERAND_TO_INVEPT_INVVPID);
Sean Christopherson446ace42020-03-20 14:28:05 -07005310 vpid_sync_context(vpid02);
Sean Christopherson55d23752018-12-03 13:53:18 -08005311 break;
5312 case VMX_VPID_EXTENT_ALL_CONTEXT:
Sean Christopherson446ace42020-03-20 14:28:05 -07005313 vpid_sync_context(vpid02);
Sean Christopherson55d23752018-12-03 13:53:18 -08005314 break;
5315 default:
5316 WARN_ON_ONCE(1);
5317 return kvm_skip_emulated_instruction(vcpu);
5318 }
5319
Junaid Shahidd6e3f832020-03-20 14:28:00 -07005320 /*
5321 * Sync the shadow page tables if EPT is disabled, L1 is invalidating
5322 * linear mappings for L2 (tagged with L2's VPID). Free all roots as
5323 * VPIDs are not tracked in the MMU role.
5324 *
5325 * Note, this operates on root_mmu, not guest_mmu, as L1 and L2 share
5326 * an MMU when EPT is disabled.
5327 *
5328 * TODO: sync only the affected SPTEs for INVDIVIDUAL_ADDR.
5329 */
5330 if (!enable_ept)
5331 kvm_mmu_free_roots(vcpu, &vcpu->arch.root_mmu,
5332 KVM_MMU_ROOTS_ALL);
5333
Sean Christopherson55d23752018-12-03 13:53:18 -08005334 return nested_vmx_succeed(vcpu);
5335}
5336
5337static int nested_vmx_eptp_switching(struct kvm_vcpu *vcpu,
5338 struct vmcs12 *vmcs12)
5339{
Sean Christopherson2b3eaf82019-04-30 10:36:19 -07005340 u32 index = kvm_rcx_read(vcpu);
Sean Christophersonac6389a2020-03-02 18:02:38 -08005341 u64 new_eptp;
Sean Christopherson55d23752018-12-03 13:53:18 -08005342 bool accessed_dirty;
5343 struct kvm_mmu *mmu = vcpu->arch.walk_mmu;
5344
5345 if (!nested_cpu_has_eptp_switching(vmcs12) ||
5346 !nested_cpu_has_ept(vmcs12))
5347 return 1;
5348
5349 if (index >= VMFUNC_EPTP_ENTRIES)
5350 return 1;
5351
5352
5353 if (kvm_vcpu_read_guest_page(vcpu, vmcs12->eptp_list_address >> PAGE_SHIFT,
Sean Christophersonac6389a2020-03-02 18:02:38 -08005354 &new_eptp, index * 8, 8))
Sean Christopherson55d23752018-12-03 13:53:18 -08005355 return 1;
5356
Sean Christophersonac6389a2020-03-02 18:02:38 -08005357 accessed_dirty = !!(new_eptp & VMX_EPTP_AD_ENABLE_BIT);
Sean Christopherson55d23752018-12-03 13:53:18 -08005358
5359 /*
5360 * If the (L2) guest does a vmfunc to the currently
5361 * active ept pointer, we don't have to do anything else
5362 */
Sean Christophersonac6389a2020-03-02 18:02:38 -08005363 if (vmcs12->ept_pointer != new_eptp) {
5364 if (!nested_vmx_check_eptp(vcpu, new_eptp))
Sean Christopherson55d23752018-12-03 13:53:18 -08005365 return 1;
5366
5367 kvm_mmu_unload(vcpu);
5368 mmu->ept_ad = accessed_dirty;
5369 mmu->mmu_role.base.ad_disabled = !accessed_dirty;
Sean Christophersonac6389a2020-03-02 18:02:38 -08005370 vmcs12->ept_pointer = new_eptp;
Sean Christopherson55d23752018-12-03 13:53:18 -08005371 /*
5372 * TODO: Check what's the correct approach in case
5373 * mmu reload fails. Currently, we just let the next
5374 * reload potentially fail
5375 */
5376 kvm_mmu_reload(vcpu);
5377 }
5378
5379 return 0;
5380}
5381
5382static int handle_vmfunc(struct kvm_vcpu *vcpu)
5383{
5384 struct vcpu_vmx *vmx = to_vmx(vcpu);
5385 struct vmcs12 *vmcs12;
Sean Christopherson2b3eaf82019-04-30 10:36:19 -07005386 u32 function = kvm_rax_read(vcpu);
Sean Christopherson55d23752018-12-03 13:53:18 -08005387
5388 /*
5389 * VMFUNC is only supported for nested guests, but we always enable the
5390 * secondary control for simplicity; for non-nested mode, fake that we
5391 * didn't by injecting #UD.
5392 */
5393 if (!is_guest_mode(vcpu)) {
5394 kvm_queue_exception(vcpu, UD_VECTOR);
5395 return 1;
5396 }
5397
5398 vmcs12 = get_vmcs12(vcpu);
5399 if ((vmcs12->vm_function_control & (1 << function)) == 0)
5400 goto fail;
5401
5402 switch (function) {
5403 case 0:
5404 if (nested_vmx_eptp_switching(vcpu, vmcs12))
5405 goto fail;
5406 break;
5407 default:
5408 goto fail;
5409 }
5410 return kvm_skip_emulated_instruction(vcpu);
5411
5412fail:
5413 nested_vmx_vmexit(vcpu, vmx->exit_reason,
Sean Christopherson87915852020-04-15 13:34:54 -07005414 vmx_get_intr_info(vcpu),
Sean Christopherson5addc232020-04-15 13:34:53 -07005415 vmx_get_exit_qual(vcpu));
Sean Christopherson55d23752018-12-03 13:53:18 -08005416 return 1;
5417}
5418
Oliver Uptone71237d2020-02-04 15:26:30 -08005419/*
5420 * Return true if an IO instruction with the specified port and size should cause
5421 * a VM-exit into L1.
5422 */
5423bool nested_vmx_check_io_bitmaps(struct kvm_vcpu *vcpu, unsigned int port,
5424 int size)
Sean Christopherson55d23752018-12-03 13:53:18 -08005425{
Oliver Uptone71237d2020-02-04 15:26:30 -08005426 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
Sean Christopherson55d23752018-12-03 13:53:18 -08005427 gpa_t bitmap, last_bitmap;
Sean Christopherson55d23752018-12-03 13:53:18 -08005428 u8 b;
5429
Sean Christopherson55d23752018-12-03 13:53:18 -08005430 last_bitmap = (gpa_t)-1;
5431 b = -1;
5432
5433 while (size > 0) {
5434 if (port < 0x8000)
5435 bitmap = vmcs12->io_bitmap_a;
5436 else if (port < 0x10000)
5437 bitmap = vmcs12->io_bitmap_b;
5438 else
5439 return true;
5440 bitmap += (port & 0x7fff) / 8;
5441
5442 if (last_bitmap != bitmap)
5443 if (kvm_vcpu_read_guest(vcpu, bitmap, &b, 1))
5444 return true;
5445 if (b & (1 << (port & 7)))
5446 return true;
5447
5448 port++;
5449 size--;
5450 last_bitmap = bitmap;
5451 }
5452
5453 return false;
5454}
5455
Oliver Uptone71237d2020-02-04 15:26:30 -08005456static bool nested_vmx_exit_handled_io(struct kvm_vcpu *vcpu,
5457 struct vmcs12 *vmcs12)
5458{
5459 unsigned long exit_qualification;
Oliver Upton35a57132020-02-04 15:26:31 -08005460 unsigned short port;
Oliver Uptone71237d2020-02-04 15:26:30 -08005461 int size;
5462
5463 if (!nested_cpu_has(vmcs12, CPU_BASED_USE_IO_BITMAPS))
5464 return nested_cpu_has(vmcs12, CPU_BASED_UNCOND_IO_EXITING);
5465
Sean Christopherson5addc232020-04-15 13:34:53 -07005466 exit_qualification = vmx_get_exit_qual(vcpu);
Oliver Uptone71237d2020-02-04 15:26:30 -08005467
5468 port = exit_qualification >> 16;
5469 size = (exit_qualification & 7) + 1;
5470
5471 return nested_vmx_check_io_bitmaps(vcpu, port, size);
5472}
5473
Sean Christopherson55d23752018-12-03 13:53:18 -08005474/*
Miaohe Lin463bfee2020-02-14 10:44:05 +08005475 * Return 1 if we should exit from L2 to L1 to handle an MSR access,
Sean Christopherson55d23752018-12-03 13:53:18 -08005476 * rather than handle it ourselves in L0. I.e., check whether L1 expressed
5477 * disinterest in the current event (read or write a specific MSR) by using an
5478 * MSR bitmap. This may be the case even when L0 doesn't use MSR bitmaps.
5479 */
5480static bool nested_vmx_exit_handled_msr(struct kvm_vcpu *vcpu,
5481 struct vmcs12 *vmcs12, u32 exit_reason)
5482{
Sean Christopherson2b3eaf82019-04-30 10:36:19 -07005483 u32 msr_index = kvm_rcx_read(vcpu);
Sean Christopherson55d23752018-12-03 13:53:18 -08005484 gpa_t bitmap;
5485
5486 if (!nested_cpu_has(vmcs12, CPU_BASED_USE_MSR_BITMAPS))
5487 return true;
5488
5489 /*
5490 * The MSR_BITMAP page is divided into four 1024-byte bitmaps,
5491 * for the four combinations of read/write and low/high MSR numbers.
5492 * First we need to figure out which of the four to use:
5493 */
5494 bitmap = vmcs12->msr_bitmap;
5495 if (exit_reason == EXIT_REASON_MSR_WRITE)
5496 bitmap += 2048;
5497 if (msr_index >= 0xc0000000) {
5498 msr_index -= 0xc0000000;
5499 bitmap += 1024;
5500 }
5501
5502 /* Then read the msr_index'th bit from this bitmap: */
5503 if (msr_index < 1024*8) {
5504 unsigned char b;
5505 if (kvm_vcpu_read_guest(vcpu, bitmap + msr_index/8, &b, 1))
5506 return true;
5507 return 1 & (b >> (msr_index & 7));
5508 } else
5509 return true; /* let L1 handle the wrong parameter */
5510}
5511
5512/*
5513 * Return 1 if we should exit from L2 to L1 to handle a CR access exit,
5514 * rather than handle it ourselves in L0. I.e., check if L1 wanted to
5515 * intercept (via guest_host_mask etc.) the current event.
5516 */
5517static bool nested_vmx_exit_handled_cr(struct kvm_vcpu *vcpu,
5518 struct vmcs12 *vmcs12)
5519{
Sean Christopherson5addc232020-04-15 13:34:53 -07005520 unsigned long exit_qualification = vmx_get_exit_qual(vcpu);
Sean Christopherson55d23752018-12-03 13:53:18 -08005521 int cr = exit_qualification & 15;
5522 int reg;
5523 unsigned long val;
5524
5525 switch ((exit_qualification >> 4) & 3) {
5526 case 0: /* mov to cr */
5527 reg = (exit_qualification >> 8) & 15;
5528 val = kvm_register_readl(vcpu, reg);
5529 switch (cr) {
5530 case 0:
5531 if (vmcs12->cr0_guest_host_mask &
5532 (val ^ vmcs12->cr0_read_shadow))
5533 return true;
5534 break;
5535 case 3:
Sean Christopherson55d23752018-12-03 13:53:18 -08005536 if (nested_cpu_has(vmcs12, CPU_BASED_CR3_LOAD_EXITING))
5537 return true;
5538 break;
5539 case 4:
5540 if (vmcs12->cr4_guest_host_mask &
5541 (vmcs12->cr4_read_shadow ^ val))
5542 return true;
5543 break;
5544 case 8:
5545 if (nested_cpu_has(vmcs12, CPU_BASED_CR8_LOAD_EXITING))
5546 return true;
5547 break;
5548 }
5549 break;
5550 case 2: /* clts */
5551 if ((vmcs12->cr0_guest_host_mask & X86_CR0_TS) &&
5552 (vmcs12->cr0_read_shadow & X86_CR0_TS))
5553 return true;
5554 break;
5555 case 1: /* mov from cr */
5556 switch (cr) {
5557 case 3:
5558 if (vmcs12->cpu_based_vm_exec_control &
5559 CPU_BASED_CR3_STORE_EXITING)
5560 return true;
5561 break;
5562 case 8:
5563 if (vmcs12->cpu_based_vm_exec_control &
5564 CPU_BASED_CR8_STORE_EXITING)
5565 return true;
5566 break;
5567 }
5568 break;
5569 case 3: /* lmsw */
5570 /*
5571 * lmsw can change bits 1..3 of cr0, and only set bit 0 of
5572 * cr0. Other attempted changes are ignored, with no exit.
5573 */
5574 val = (exit_qualification >> LMSW_SOURCE_DATA_SHIFT) & 0x0f;
5575 if (vmcs12->cr0_guest_host_mask & 0xe &
5576 (val ^ vmcs12->cr0_read_shadow))
5577 return true;
5578 if ((vmcs12->cr0_guest_host_mask & 0x1) &&
5579 !(vmcs12->cr0_read_shadow & 0x1) &&
5580 (val & 0x1))
5581 return true;
5582 break;
5583 }
5584 return false;
5585}
5586
5587static bool nested_vmx_exit_handled_vmcs_access(struct kvm_vcpu *vcpu,
5588 struct vmcs12 *vmcs12, gpa_t bitmap)
5589{
5590 u32 vmx_instruction_info;
5591 unsigned long field;
5592 u8 b;
5593
5594 if (!nested_cpu_has_shadow_vmcs(vmcs12))
5595 return true;
5596
5597 /* Decode instruction info and find the field to access */
5598 vmx_instruction_info = vmcs_read32(VMX_INSTRUCTION_INFO);
5599 field = kvm_register_read(vcpu, (((vmx_instruction_info) >> 28) & 0xf));
5600
5601 /* Out-of-range fields always cause a VM exit from L2 to L1 */
5602 if (field >> 15)
5603 return true;
5604
5605 if (kvm_vcpu_read_guest(vcpu, bitmap + field/8, &b, 1))
5606 return true;
5607
5608 return 1 & (b >> (field & 7));
5609}
5610
Oliver Uptonb045ae92020-04-14 22:47:45 +00005611static bool nested_vmx_exit_handled_mtf(struct vmcs12 *vmcs12)
5612{
5613 u32 entry_intr_info = vmcs12->vm_entry_intr_info_field;
5614
5615 if (nested_cpu_has_mtf(vmcs12))
5616 return true;
5617
5618 /*
5619 * An MTF VM-exit may be injected into the guest by setting the
5620 * interruption-type to 7 (other event) and the vector field to 0. Such
5621 * is the case regardless of the 'monitor trap flag' VM-execution
5622 * control.
5623 */
5624 return entry_intr_info == (INTR_INFO_VALID_MASK
5625 | INTR_TYPE_OTHER_EVENT);
5626}
5627
Sean Christopherson55d23752018-12-03 13:53:18 -08005628/*
Sean Christopherson2c1f3322020-04-15 10:55:14 -07005629 * Return true if L0 wants to handle an exit from L2 regardless of whether or not
5630 * L1 wants the exit. Only call this when in is_guest_mode (L2).
Sean Christopherson55d23752018-12-03 13:53:18 -08005631 */
Sean Christopherson2c1f3322020-04-15 10:55:14 -07005632static bool nested_vmx_l0_wants_exit(struct kvm_vcpu *vcpu, u32 exit_reason)
Sean Christopherson55d23752018-12-03 13:53:18 -08005633{
Sean Christopherson2c1f3322020-04-15 10:55:14 -07005634 u32 intr_info;
5635
5636 switch (exit_reason) {
5637 case EXIT_REASON_EXCEPTION_NMI:
Sean Christopherson87915852020-04-15 13:34:54 -07005638 intr_info = vmx_get_intr_info(vcpu);
Sean Christopherson2c1f3322020-04-15 10:55:14 -07005639 if (is_nmi(intr_info))
5640 return true;
5641 else if (is_page_fault(intr_info))
5642 return vcpu->arch.apf.host_apf_reason || !enable_ept;
5643 else if (is_debug(intr_info) &&
5644 vcpu->guest_debug &
5645 (KVM_GUESTDBG_SINGLESTEP | KVM_GUESTDBG_USE_HW_BP))
5646 return true;
5647 else if (is_breakpoint(intr_info) &&
5648 vcpu->guest_debug & KVM_GUESTDBG_USE_SW_BP)
5649 return true;
5650 return false;
5651 case EXIT_REASON_EXTERNAL_INTERRUPT:
5652 return true;
5653 case EXIT_REASON_MCE_DURING_VMENTRY:
5654 return true;
5655 case EXIT_REASON_EPT_VIOLATION:
5656 /*
5657 * L0 always deals with the EPT violation. If nested EPT is
5658 * used, and the nested mmu code discovers that the address is
5659 * missing in the guest EPT table (EPT12), the EPT violation
5660 * will be injected with nested_ept_inject_page_fault()
5661 */
5662 return true;
5663 case EXIT_REASON_EPT_MISCONFIG:
5664 /*
5665 * L2 never uses directly L1's EPT, but rather L0's own EPT
5666 * table (shadow on EPT) or a merged EPT table that L0 built
5667 * (EPT on EPT). So any problems with the structure of the
5668 * table is L0's fault.
5669 */
5670 return true;
5671 case EXIT_REASON_PREEMPTION_TIMER:
5672 return true;
5673 case EXIT_REASON_PML_FULL:
5674 /* We emulate PML support to L1. */
5675 return true;
5676 case EXIT_REASON_VMFUNC:
5677 /* VM functions are emulated through L2->L0 vmexits. */
5678 return true;
5679 case EXIT_REASON_ENCLS:
5680 /* SGX is never exposed to L1 */
5681 return true;
5682 default:
5683 break;
5684 }
5685 return false;
5686}
5687
5688/*
5689 * Return 1 if L1 wants to intercept an exit from L2. Only call this when in
5690 * is_guest_mode (L2).
5691 */
5692static bool nested_vmx_l1_wants_exit(struct kvm_vcpu *vcpu, u32 exit_reason)
5693{
Sean Christopherson55d23752018-12-03 13:53:18 -08005694 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
Sean Christopherson9bd4af22020-04-21 00:53:27 -07005695 u32 intr_info;
Sean Christopherson55d23752018-12-03 13:53:18 -08005696
5697 switch (exit_reason) {
5698 case EXIT_REASON_EXCEPTION_NMI:
Sean Christopherson87915852020-04-15 13:34:54 -07005699 intr_info = vmx_get_intr_info(vcpu);
Sean Christopherson55d23752018-12-03 13:53:18 -08005700 if (is_nmi(intr_info))
Sean Christopherson2c1f3322020-04-15 10:55:14 -07005701 return true;
Sean Christopherson55d23752018-12-03 13:53:18 -08005702 else if (is_page_fault(intr_info))
Sean Christopherson2c1f3322020-04-15 10:55:14 -07005703 return true;
Sean Christopherson55d23752018-12-03 13:53:18 -08005704 return vmcs12->exception_bitmap &
5705 (1u << (intr_info & INTR_INFO_VECTOR_MASK));
5706 case EXIT_REASON_EXTERNAL_INTERRUPT:
Sean Christopherson2c1f3322020-04-15 10:55:14 -07005707 return nested_exit_on_intr(vcpu);
Sean Christopherson55d23752018-12-03 13:53:18 -08005708 case EXIT_REASON_TRIPLE_FAULT:
5709 return true;
Xiaoyao Li9dadc2f2019-12-06 16:45:24 +08005710 case EXIT_REASON_INTERRUPT_WINDOW:
5711 return nested_cpu_has(vmcs12, CPU_BASED_INTR_WINDOW_EXITING);
Sean Christopherson55d23752018-12-03 13:53:18 -08005712 case EXIT_REASON_NMI_WINDOW:
Xiaoyao Li4e2a0bc2019-12-06 16:45:25 +08005713 return nested_cpu_has(vmcs12, CPU_BASED_NMI_WINDOW_EXITING);
Sean Christopherson55d23752018-12-03 13:53:18 -08005714 case EXIT_REASON_TASK_SWITCH:
5715 return true;
5716 case EXIT_REASON_CPUID:
5717 return true;
5718 case EXIT_REASON_HLT:
5719 return nested_cpu_has(vmcs12, CPU_BASED_HLT_EXITING);
5720 case EXIT_REASON_INVD:
5721 return true;
5722 case EXIT_REASON_INVLPG:
5723 return nested_cpu_has(vmcs12, CPU_BASED_INVLPG_EXITING);
5724 case EXIT_REASON_RDPMC:
5725 return nested_cpu_has(vmcs12, CPU_BASED_RDPMC_EXITING);
5726 case EXIT_REASON_RDRAND:
5727 return nested_cpu_has2(vmcs12, SECONDARY_EXEC_RDRAND_EXITING);
5728 case EXIT_REASON_RDSEED:
5729 return nested_cpu_has2(vmcs12, SECONDARY_EXEC_RDSEED_EXITING);
5730 case EXIT_REASON_RDTSC: case EXIT_REASON_RDTSCP:
5731 return nested_cpu_has(vmcs12, CPU_BASED_RDTSC_EXITING);
5732 case EXIT_REASON_VMREAD:
5733 return nested_vmx_exit_handled_vmcs_access(vcpu, vmcs12,
5734 vmcs12->vmread_bitmap);
5735 case EXIT_REASON_VMWRITE:
5736 return nested_vmx_exit_handled_vmcs_access(vcpu, vmcs12,
5737 vmcs12->vmwrite_bitmap);
5738 case EXIT_REASON_VMCALL: case EXIT_REASON_VMCLEAR:
5739 case EXIT_REASON_VMLAUNCH: case EXIT_REASON_VMPTRLD:
5740 case EXIT_REASON_VMPTRST: case EXIT_REASON_VMRESUME:
5741 case EXIT_REASON_VMOFF: case EXIT_REASON_VMON:
5742 case EXIT_REASON_INVEPT: case EXIT_REASON_INVVPID:
5743 /*
5744 * VMX instructions trap unconditionally. This allows L1 to
5745 * emulate them for its L2 guest, i.e., allows 3-level nesting!
5746 */
5747 return true;
5748 case EXIT_REASON_CR_ACCESS:
5749 return nested_vmx_exit_handled_cr(vcpu, vmcs12);
5750 case EXIT_REASON_DR_ACCESS:
5751 return nested_cpu_has(vmcs12, CPU_BASED_MOV_DR_EXITING);
5752 case EXIT_REASON_IO_INSTRUCTION:
5753 return nested_vmx_exit_handled_io(vcpu, vmcs12);
5754 case EXIT_REASON_GDTR_IDTR: case EXIT_REASON_LDTR_TR:
5755 return nested_cpu_has2(vmcs12, SECONDARY_EXEC_DESC);
5756 case EXIT_REASON_MSR_READ:
5757 case EXIT_REASON_MSR_WRITE:
5758 return nested_vmx_exit_handled_msr(vcpu, vmcs12, exit_reason);
5759 case EXIT_REASON_INVALID_STATE:
5760 return true;
5761 case EXIT_REASON_MWAIT_INSTRUCTION:
5762 return nested_cpu_has(vmcs12, CPU_BASED_MWAIT_EXITING);
5763 case EXIT_REASON_MONITOR_TRAP_FLAG:
Oliver Uptonb045ae92020-04-14 22:47:45 +00005764 return nested_vmx_exit_handled_mtf(vmcs12);
Sean Christopherson55d23752018-12-03 13:53:18 -08005765 case EXIT_REASON_MONITOR_INSTRUCTION:
5766 return nested_cpu_has(vmcs12, CPU_BASED_MONITOR_EXITING);
5767 case EXIT_REASON_PAUSE_INSTRUCTION:
5768 return nested_cpu_has(vmcs12, CPU_BASED_PAUSE_EXITING) ||
5769 nested_cpu_has2(vmcs12,
5770 SECONDARY_EXEC_PAUSE_LOOP_EXITING);
5771 case EXIT_REASON_MCE_DURING_VMENTRY:
Sean Christopherson2c1f3322020-04-15 10:55:14 -07005772 return true;
Sean Christopherson55d23752018-12-03 13:53:18 -08005773 case EXIT_REASON_TPR_BELOW_THRESHOLD:
5774 return nested_cpu_has(vmcs12, CPU_BASED_TPR_SHADOW);
5775 case EXIT_REASON_APIC_ACCESS:
5776 case EXIT_REASON_APIC_WRITE:
5777 case EXIT_REASON_EOI_INDUCED:
5778 /*
5779 * The controls for "virtualize APIC accesses," "APIC-
5780 * register virtualization," and "virtual-interrupt
5781 * delivery" only come from vmcs12.
5782 */
5783 return true;
Sean Christopherson55d23752018-12-03 13:53:18 -08005784 case EXIT_REASON_INVPCID:
5785 return
5786 nested_cpu_has2(vmcs12, SECONDARY_EXEC_ENABLE_INVPCID) &&
5787 nested_cpu_has(vmcs12, CPU_BASED_INVLPG_EXITING);
5788 case EXIT_REASON_WBINVD:
5789 return nested_cpu_has2(vmcs12, SECONDARY_EXEC_WBINVD_EXITING);
5790 case EXIT_REASON_XSETBV:
5791 return true;
5792 case EXIT_REASON_XSAVES: case EXIT_REASON_XRSTORS:
5793 /*
5794 * This should never happen, since it is not possible to
5795 * set XSS to a non-zero value---neither in L1 nor in L2.
5796 * If if it were, XSS would have to be checked against
5797 * the XSS exit bitmap in vmcs12.
5798 */
5799 return nested_cpu_has2(vmcs12, SECONDARY_EXEC_XSAVES);
Tao Xubf653b72019-07-16 14:55:51 +08005800 case EXIT_REASON_UMWAIT:
5801 case EXIT_REASON_TPAUSE:
5802 return nested_cpu_has2(vmcs12,
5803 SECONDARY_EXEC_ENABLE_USR_WAIT_PAUSE);
Sean Christopherson55d23752018-12-03 13:53:18 -08005804 default:
5805 return true;
5806 }
5807}
5808
Sean Christopherson7b7bd872020-04-15 10:55:11 -07005809/*
5810 * Conditionally reflect a VM-Exit into L1. Returns %true if the VM-Exit was
5811 * reflected into L1.
5812 */
Sean Christophersonf47baae2020-04-15 10:55:16 -07005813bool nested_vmx_reflect_vmexit(struct kvm_vcpu *vcpu)
Sean Christopherson7b7bd872020-04-15 10:55:11 -07005814{
Sean Christophersonfbdd5022020-04-15 10:55:12 -07005815 struct vcpu_vmx *vmx = to_vmx(vcpu);
Sean Christophersonf47baae2020-04-15 10:55:16 -07005816 u32 exit_reason = vmx->exit_reason;
Sean Christopherson87796552020-04-22 17:11:27 -07005817 unsigned long exit_qual;
5818 u32 exit_intr_info;
Sean Christophersonfbdd5022020-04-15 10:55:12 -07005819
5820 WARN_ON_ONCE(vmx->nested.nested_run_pending);
5821
5822 /*
5823 * Late nested VM-Fail shares the same flow as nested VM-Exit since KVM
5824 * has already loaded L2's state.
5825 */
5826 if (unlikely(vmx->fail)) {
5827 trace_kvm_nested_vmenter_failed(
5828 "hardware VM-instruction error: ",
5829 vmcs_read32(VM_INSTRUCTION_ERROR));
5830 exit_intr_info = 0;
5831 exit_qual = 0;
5832 goto reflect_vmexit;
5833 }
Sean Christopherson7b7bd872020-04-15 10:55:11 -07005834
Sean Christopherson87915852020-04-15 13:34:54 -07005835 exit_intr_info = vmx_get_intr_info(vcpu);
Sean Christopherson5addc232020-04-15 13:34:53 -07005836 exit_qual = vmx_get_exit_qual(vcpu);
Sean Christopherson236871b2020-04-15 10:55:13 -07005837
5838 trace_kvm_nested_vmexit(kvm_rip_read(vcpu), exit_reason, exit_qual,
5839 vmx->idt_vectoring_info, exit_intr_info,
5840 vmcs_read32(VM_EXIT_INTR_ERROR_CODE),
5841 KVM_ISA_VMX);
5842
Sean Christopherson2c1f3322020-04-15 10:55:14 -07005843 /* If L0 (KVM) wants the exit, it trumps L1's desires. */
5844 if (nested_vmx_l0_wants_exit(vcpu, exit_reason))
5845 return false;
5846
5847 /* If L1 doesn't want the exit, handle it in L0. */
5848 if (!nested_vmx_l1_wants_exit(vcpu, exit_reason))
Sean Christopherson7b7bd872020-04-15 10:55:11 -07005849 return false;
5850
5851 /*
Sean Christopherson1d283062020-04-15 10:55:15 -07005852 * vmcs.VM_EXIT_INTR_INFO is only valid for EXCEPTION_NMI exits. For
5853 * EXTERNAL_INTERRUPT, the value for vmcs12->vm_exit_intr_info would
5854 * need to be synthesized by querying the in-kernel LAPIC, but external
5855 * interrupts are never reflected to L1 so it's a non-issue.
Sean Christopherson7b7bd872020-04-15 10:55:11 -07005856 */
Sean Christopherson7b7bd872020-04-15 10:55:11 -07005857 if ((exit_intr_info &
5858 (INTR_INFO_VALID_MASK | INTR_INFO_DELIVER_CODE_MASK)) ==
5859 (INTR_INFO_VALID_MASK | INTR_INFO_DELIVER_CODE_MASK)) {
5860 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
5861
5862 vmcs12->vm_exit_intr_error_code =
5863 vmcs_read32(VM_EXIT_INTR_ERROR_CODE);
5864 }
5865
Sean Christophersonfbdd5022020-04-15 10:55:12 -07005866reflect_vmexit:
5867 nested_vmx_vmexit(vcpu, exit_reason, exit_intr_info, exit_qual);
Sean Christopherson7b7bd872020-04-15 10:55:11 -07005868 return true;
5869}
Sean Christopherson55d23752018-12-03 13:53:18 -08005870
5871static int vmx_get_nested_state(struct kvm_vcpu *vcpu,
5872 struct kvm_nested_state __user *user_kvm_nested_state,
5873 u32 user_data_size)
5874{
5875 struct vcpu_vmx *vmx;
5876 struct vmcs12 *vmcs12;
5877 struct kvm_nested_state kvm_state = {
5878 .flags = 0,
Liran Alon6ca00df2019-06-16 15:03:10 +03005879 .format = KVM_STATE_NESTED_FORMAT_VMX,
Sean Christopherson55d23752018-12-03 13:53:18 -08005880 .size = sizeof(kvm_state),
Liran Alon6ca00df2019-06-16 15:03:10 +03005881 .hdr.vmx.vmxon_pa = -1ull,
5882 .hdr.vmx.vmcs12_pa = -1ull,
Sean Christopherson55d23752018-12-03 13:53:18 -08005883 };
Liran Alon6ca00df2019-06-16 15:03:10 +03005884 struct kvm_vmx_nested_state_data __user *user_vmx_nested_state =
5885 &user_kvm_nested_state->data.vmx[0];
Sean Christopherson55d23752018-12-03 13:53:18 -08005886
5887 if (!vcpu)
Liran Alon6ca00df2019-06-16 15:03:10 +03005888 return kvm_state.size + sizeof(*user_vmx_nested_state);
Sean Christopherson55d23752018-12-03 13:53:18 -08005889
5890 vmx = to_vmx(vcpu);
5891 vmcs12 = get_vmcs12(vcpu);
5892
Sean Christopherson55d23752018-12-03 13:53:18 -08005893 if (nested_vmx_allowed(vcpu) &&
5894 (vmx->nested.vmxon || vmx->nested.smm.vmxon)) {
Liran Alon6ca00df2019-06-16 15:03:10 +03005895 kvm_state.hdr.vmx.vmxon_pa = vmx->nested.vmxon_ptr;
5896 kvm_state.hdr.vmx.vmcs12_pa = vmx->nested.current_vmptr;
Sean Christopherson55d23752018-12-03 13:53:18 -08005897
5898 if (vmx_has_valid_vmcs12(vcpu)) {
Liran Alon6ca00df2019-06-16 15:03:10 +03005899 kvm_state.size += sizeof(user_vmx_nested_state->vmcs12);
Sean Christopherson55d23752018-12-03 13:53:18 -08005900
Liran Alon323d73a2019-06-26 16:09:27 +03005901 if (vmx->nested.hv_evmcs)
5902 kvm_state.flags |= KVM_STATE_NESTED_EVMCS;
5903
Sean Christopherson55d23752018-12-03 13:53:18 -08005904 if (is_guest_mode(vcpu) &&
5905 nested_cpu_has_shadow_vmcs(vmcs12) &&
5906 vmcs12->vmcs_link_pointer != -1ull)
Liran Alon6ca00df2019-06-16 15:03:10 +03005907 kvm_state.size += sizeof(user_vmx_nested_state->shadow_vmcs12);
Sean Christopherson55d23752018-12-03 13:53:18 -08005908 }
5909
5910 if (vmx->nested.smm.vmxon)
Liran Alon6ca00df2019-06-16 15:03:10 +03005911 kvm_state.hdr.vmx.smm.flags |= KVM_STATE_NESTED_SMM_VMXON;
Sean Christopherson55d23752018-12-03 13:53:18 -08005912
5913 if (vmx->nested.smm.guest_mode)
Liran Alon6ca00df2019-06-16 15:03:10 +03005914 kvm_state.hdr.vmx.smm.flags |= KVM_STATE_NESTED_SMM_GUEST_MODE;
Sean Christopherson55d23752018-12-03 13:53:18 -08005915
5916 if (is_guest_mode(vcpu)) {
5917 kvm_state.flags |= KVM_STATE_NESTED_GUEST_MODE;
5918
5919 if (vmx->nested.nested_run_pending)
5920 kvm_state.flags |= KVM_STATE_NESTED_RUN_PENDING;
Oliver Upton5ef8acb2020-02-07 02:36:07 -08005921
5922 if (vmx->nested.mtf_pending)
5923 kvm_state.flags |= KVM_STATE_NESTED_MTF_PENDING;
Sean Christopherson55d23752018-12-03 13:53:18 -08005924 }
5925 }
5926
5927 if (user_data_size < kvm_state.size)
5928 goto out;
5929
5930 if (copy_to_user(user_kvm_nested_state, &kvm_state, sizeof(kvm_state)))
5931 return -EFAULT;
5932
5933 if (!vmx_has_valid_vmcs12(vcpu))
5934 goto out;
5935
5936 /*
5937 * When running L2, the authoritative vmcs12 state is in the
5938 * vmcs02. When running L1, the authoritative vmcs12 state is
5939 * in the shadow or enlightened vmcs linked to vmcs01, unless
Sean Christopherson3731905ef2019-05-07 08:36:27 -07005940 * need_vmcs12_to_shadow_sync is set, in which case, the authoritative
Sean Christopherson55d23752018-12-03 13:53:18 -08005941 * vmcs12 state is in the vmcs12 already.
5942 */
5943 if (is_guest_mode(vcpu)) {
Sean Christopherson3731905ef2019-05-07 08:36:27 -07005944 sync_vmcs02_to_vmcs12(vcpu, vmcs12);
Sean Christopherson7952d762019-05-07 08:36:29 -07005945 sync_vmcs02_to_vmcs12_rare(vcpu, vmcs12);
Sean Christopherson3731905ef2019-05-07 08:36:27 -07005946 } else if (!vmx->nested.need_vmcs12_to_shadow_sync) {
Sean Christopherson55d23752018-12-03 13:53:18 -08005947 if (vmx->nested.hv_evmcs)
5948 copy_enlightened_to_vmcs12(vmx);
5949 else if (enable_shadow_vmcs)
5950 copy_shadow_to_vmcs12(vmx);
5951 }
5952
Liran Alon6ca00df2019-06-16 15:03:10 +03005953 BUILD_BUG_ON(sizeof(user_vmx_nested_state->vmcs12) < VMCS12_SIZE);
5954 BUILD_BUG_ON(sizeof(user_vmx_nested_state->shadow_vmcs12) < VMCS12_SIZE);
5955
Tom Roeder3a33d032019-01-24 13:48:20 -08005956 /*
5957 * Copy over the full allocated size of vmcs12 rather than just the size
5958 * of the struct.
5959 */
Liran Alon6ca00df2019-06-16 15:03:10 +03005960 if (copy_to_user(user_vmx_nested_state->vmcs12, vmcs12, VMCS12_SIZE))
Sean Christopherson55d23752018-12-03 13:53:18 -08005961 return -EFAULT;
5962
5963 if (nested_cpu_has_shadow_vmcs(vmcs12) &&
5964 vmcs12->vmcs_link_pointer != -1ull) {
Liran Alon6ca00df2019-06-16 15:03:10 +03005965 if (copy_to_user(user_vmx_nested_state->shadow_vmcs12,
Tom Roeder3a33d032019-01-24 13:48:20 -08005966 get_shadow_vmcs12(vcpu), VMCS12_SIZE))
Sean Christopherson55d23752018-12-03 13:53:18 -08005967 return -EFAULT;
5968 }
5969
5970out:
5971 return kvm_state.size;
5972}
5973
5974/*
5975 * Forcibly leave nested mode in order to be able to reset the VCPU later on.
5976 */
5977void vmx_leave_nested(struct kvm_vcpu *vcpu)
5978{
5979 if (is_guest_mode(vcpu)) {
5980 to_vmx(vcpu)->nested.nested_run_pending = 0;
5981 nested_vmx_vmexit(vcpu, -1, 0, 0);
5982 }
5983 free_nested(vcpu);
5984}
5985
5986static int vmx_set_nested_state(struct kvm_vcpu *vcpu,
5987 struct kvm_nested_state __user *user_kvm_nested_state,
5988 struct kvm_nested_state *kvm_state)
5989{
5990 struct vcpu_vmx *vmx = to_vmx(vcpu);
5991 struct vmcs12 *vmcs12;
5992 u32 exit_qual;
Liran Alon6ca00df2019-06-16 15:03:10 +03005993 struct kvm_vmx_nested_state_data __user *user_vmx_nested_state =
5994 &user_kvm_nested_state->data.vmx[0];
Sean Christopherson55d23752018-12-03 13:53:18 -08005995 int ret;
5996
Liran Alon6ca00df2019-06-16 15:03:10 +03005997 if (kvm_state->format != KVM_STATE_NESTED_FORMAT_VMX)
Sean Christopherson55d23752018-12-03 13:53:18 -08005998 return -EINVAL;
5999
Liran Alon6ca00df2019-06-16 15:03:10 +03006000 if (kvm_state->hdr.vmx.vmxon_pa == -1ull) {
6001 if (kvm_state->hdr.vmx.smm.flags)
Sean Christopherson55d23752018-12-03 13:53:18 -08006002 return -EINVAL;
6003
Liran Alon6ca00df2019-06-16 15:03:10 +03006004 if (kvm_state->hdr.vmx.vmcs12_pa != -1ull)
Sean Christopherson55d23752018-12-03 13:53:18 -08006005 return -EINVAL;
6006
Liran Alon323d73a2019-06-26 16:09:27 +03006007 /*
6008 * KVM_STATE_NESTED_EVMCS used to signal that KVM should
6009 * enable eVMCS capability on vCPU. However, since then
6010 * code was changed such that flag signals vmcs12 should
6011 * be copied into eVMCS in guest memory.
6012 *
6013 * To preserve backwards compatability, allow user
6014 * to set this flag even when there is no VMXON region.
6015 */
Paolo Bonzini9fd58872019-06-19 16:52:27 +02006016 if (kvm_state->flags & ~KVM_STATE_NESTED_EVMCS)
6017 return -EINVAL;
6018 } else {
6019 if (!nested_vmx_allowed(vcpu))
6020 return -EINVAL;
Sean Christopherson55d23752018-12-03 13:53:18 -08006021
Paolo Bonzini9fd58872019-06-19 16:52:27 +02006022 if (!page_address_valid(vcpu, kvm_state->hdr.vmx.vmxon_pa))
6023 return -EINVAL;
Liran Alon323d73a2019-06-26 16:09:27 +03006024 }
Sean Christopherson55d23752018-12-03 13:53:18 -08006025
Liran Alon6ca00df2019-06-16 15:03:10 +03006026 if ((kvm_state->hdr.vmx.smm.flags & KVM_STATE_NESTED_SMM_GUEST_MODE) &&
Sean Christopherson55d23752018-12-03 13:53:18 -08006027 (kvm_state->flags & KVM_STATE_NESTED_GUEST_MODE))
6028 return -EINVAL;
6029
Liran Alon6ca00df2019-06-16 15:03:10 +03006030 if (kvm_state->hdr.vmx.smm.flags &
Sean Christopherson55d23752018-12-03 13:53:18 -08006031 ~(KVM_STATE_NESTED_SMM_GUEST_MODE | KVM_STATE_NESTED_SMM_VMXON))
6032 return -EINVAL;
6033
6034 /*
6035 * SMM temporarily disables VMX, so we cannot be in guest mode,
6036 * nor can VMLAUNCH/VMRESUME be pending. Outside SMM, SMM flags
6037 * must be zero.
6038 */
Liran Alon65b712f12019-06-25 14:26:42 +03006039 if (is_smm(vcpu) ?
6040 (kvm_state->flags &
6041 (KVM_STATE_NESTED_GUEST_MODE | KVM_STATE_NESTED_RUN_PENDING))
6042 : kvm_state->hdr.vmx.smm.flags)
Sean Christopherson55d23752018-12-03 13:53:18 -08006043 return -EINVAL;
6044
Liran Alon6ca00df2019-06-16 15:03:10 +03006045 if ((kvm_state->hdr.vmx.smm.flags & KVM_STATE_NESTED_SMM_GUEST_MODE) &&
6046 !(kvm_state->hdr.vmx.smm.flags & KVM_STATE_NESTED_SMM_VMXON))
Sean Christopherson55d23752018-12-03 13:53:18 -08006047 return -EINVAL;
6048
Liran Alon323d73a2019-06-26 16:09:27 +03006049 if ((kvm_state->flags & KVM_STATE_NESTED_EVMCS) &&
6050 (!nested_vmx_allowed(vcpu) || !vmx->nested.enlightened_vmcs_enabled))
Paolo Bonzini9fd58872019-06-19 16:52:27 +02006051 return -EINVAL;
6052
Liran Alon323d73a2019-06-26 16:09:27 +03006053 vmx_leave_nested(vcpu);
Paolo Bonzini9fd58872019-06-19 16:52:27 +02006054
Liran Alon6ca00df2019-06-16 15:03:10 +03006055 if (kvm_state->hdr.vmx.vmxon_pa == -1ull)
Sean Christopherson55d23752018-12-03 13:53:18 -08006056 return 0;
6057
Liran Alon6ca00df2019-06-16 15:03:10 +03006058 vmx->nested.vmxon_ptr = kvm_state->hdr.vmx.vmxon_pa;
Sean Christopherson55d23752018-12-03 13:53:18 -08006059 ret = enter_vmx_operation(vcpu);
6060 if (ret)
6061 return ret;
6062
6063 /* Empty 'VMXON' state is permitted */
Jim Mattsone8ab8d22019-01-17 11:55:58 -08006064 if (kvm_state->size < sizeof(*kvm_state) + sizeof(*vmcs12))
Sean Christopherson55d23752018-12-03 13:53:18 -08006065 return 0;
6066
Liran Alon6ca00df2019-06-16 15:03:10 +03006067 if (kvm_state->hdr.vmx.vmcs12_pa != -1ull) {
6068 if (kvm_state->hdr.vmx.vmcs12_pa == kvm_state->hdr.vmx.vmxon_pa ||
6069 !page_address_valid(vcpu, kvm_state->hdr.vmx.vmcs12_pa))
Sean Christopherson55d23752018-12-03 13:53:18 -08006070 return -EINVAL;
6071
Liran Alon6ca00df2019-06-16 15:03:10 +03006072 set_current_vmptr(vmx, kvm_state->hdr.vmx.vmcs12_pa);
Sean Christopherson55d23752018-12-03 13:53:18 -08006073 } else if (kvm_state->flags & KVM_STATE_NESTED_EVMCS) {
6074 /*
Vitaly Kuznetsove942dbf2020-03-09 16:52:12 +01006075 * nested_vmx_handle_enlightened_vmptrld() cannot be called
6076 * directly from here as HV_X64_MSR_VP_ASSIST_PAGE may not be
6077 * restored yet. EVMCS will be mapped from
6078 * nested_get_vmcs12_pages().
Sean Christopherson55d23752018-12-03 13:53:18 -08006079 */
Vitaly Kuznetsove942dbf2020-03-09 16:52:12 +01006080 kvm_make_request(KVM_REQ_GET_VMCS12_PAGES, vcpu);
Sean Christopherson55d23752018-12-03 13:53:18 -08006081 } else {
6082 return -EINVAL;
6083 }
6084
Liran Alon6ca00df2019-06-16 15:03:10 +03006085 if (kvm_state->hdr.vmx.smm.flags & KVM_STATE_NESTED_SMM_VMXON) {
Sean Christopherson55d23752018-12-03 13:53:18 -08006086 vmx->nested.smm.vmxon = true;
6087 vmx->nested.vmxon = false;
6088
Liran Alon6ca00df2019-06-16 15:03:10 +03006089 if (kvm_state->hdr.vmx.smm.flags & KVM_STATE_NESTED_SMM_GUEST_MODE)
Sean Christopherson55d23752018-12-03 13:53:18 -08006090 vmx->nested.smm.guest_mode = true;
6091 }
6092
6093 vmcs12 = get_vmcs12(vcpu);
Liran Alon6ca00df2019-06-16 15:03:10 +03006094 if (copy_from_user(vmcs12, user_vmx_nested_state->vmcs12, sizeof(*vmcs12)))
Sean Christopherson55d23752018-12-03 13:53:18 -08006095 return -EFAULT;
6096
6097 if (vmcs12->hdr.revision_id != VMCS12_REVISION)
6098 return -EINVAL;
6099
6100 if (!(kvm_state->flags & KVM_STATE_NESTED_GUEST_MODE))
6101 return 0;
6102
Sean Christopherson21be4ca2019-05-08 11:04:32 -07006103 vmx->nested.nested_run_pending =
6104 !!(kvm_state->flags & KVM_STATE_NESTED_RUN_PENDING);
6105
Oliver Upton5ef8acb2020-02-07 02:36:07 -08006106 vmx->nested.mtf_pending =
6107 !!(kvm_state->flags & KVM_STATE_NESTED_MTF_PENDING);
6108
Sean Christopherson21be4ca2019-05-08 11:04:32 -07006109 ret = -EINVAL;
Sean Christopherson55d23752018-12-03 13:53:18 -08006110 if (nested_cpu_has_shadow_vmcs(vmcs12) &&
6111 vmcs12->vmcs_link_pointer != -1ull) {
6112 struct vmcs12 *shadow_vmcs12 = get_shadow_vmcs12(vcpu);
6113
Liran Alon6ca00df2019-06-16 15:03:10 +03006114 if (kvm_state->size <
6115 sizeof(*kvm_state) +
6116 sizeof(user_vmx_nested_state->vmcs12) + sizeof(*shadow_vmcs12))
Sean Christopherson21be4ca2019-05-08 11:04:32 -07006117 goto error_guest_mode;
Sean Christopherson55d23752018-12-03 13:53:18 -08006118
6119 if (copy_from_user(shadow_vmcs12,
Liran Alon6ca00df2019-06-16 15:03:10 +03006120 user_vmx_nested_state->shadow_vmcs12,
6121 sizeof(*shadow_vmcs12))) {
Sean Christopherson21be4ca2019-05-08 11:04:32 -07006122 ret = -EFAULT;
6123 goto error_guest_mode;
6124 }
Sean Christopherson55d23752018-12-03 13:53:18 -08006125
6126 if (shadow_vmcs12->hdr.revision_id != VMCS12_REVISION ||
6127 !shadow_vmcs12->hdr.shadow_vmcs)
Sean Christopherson21be4ca2019-05-08 11:04:32 -07006128 goto error_guest_mode;
Sean Christopherson55d23752018-12-03 13:53:18 -08006129 }
6130
Sean Christopherson5478ba32019-04-11 12:18:06 -07006131 if (nested_vmx_check_controls(vcpu, vmcs12) ||
6132 nested_vmx_check_host_state(vcpu, vmcs12) ||
6133 nested_vmx_check_guest_state(vcpu, vmcs12, &exit_qual))
Sean Christopherson21be4ca2019-05-08 11:04:32 -07006134 goto error_guest_mode;
Sean Christopherson55d23752018-12-03 13:53:18 -08006135
6136 vmx->nested.dirty_vmcs12 = true;
6137 ret = nested_vmx_enter_non_root_mode(vcpu, false);
Sean Christopherson21be4ca2019-05-08 11:04:32 -07006138 if (ret)
6139 goto error_guest_mode;
Sean Christopherson55d23752018-12-03 13:53:18 -08006140
6141 return 0;
Sean Christopherson21be4ca2019-05-08 11:04:32 -07006142
6143error_guest_mode:
6144 vmx->nested.nested_run_pending = 0;
6145 return ret;
Sean Christopherson55d23752018-12-03 13:53:18 -08006146}
6147
Xiaoyao Li1b842922019-10-20 17:11:01 +08006148void nested_vmx_set_vmcs_shadowing_bitmap(void)
Sean Christopherson55d23752018-12-03 13:53:18 -08006149{
6150 if (enable_shadow_vmcs) {
Sean Christopherson55d23752018-12-03 13:53:18 -08006151 vmcs_write64(VMREAD_BITMAP, __pa(vmx_vmread_bitmap));
Sean Christophersonfadcead2019-05-07 08:36:23 -07006152 vmcs_write64(VMWRITE_BITMAP, __pa(vmx_vmwrite_bitmap));
Sean Christopherson55d23752018-12-03 13:53:18 -08006153 }
6154}
6155
6156/*
6157 * nested_vmx_setup_ctls_msrs() sets up variables containing the values to be
6158 * returned for the various VMX controls MSRs when nested VMX is enabled.
6159 * The same values should also be used to verify that vmcs12 control fields are
6160 * valid during nested entry from L1 to L2.
6161 * Each of these control msrs has a low and high 32-bit half: A low bit is on
6162 * if the corresponding bit in the (32-bit) control field *must* be on, and a
6163 * bit in the high half is on if the corresponding bit in the control field
6164 * may be on. See also vmx_control_verify().
6165 */
Vitaly Kuznetsova4443262020-02-20 18:22:04 +01006166void nested_vmx_setup_ctls_msrs(struct nested_vmx_msrs *msrs, u32 ept_caps)
Sean Christopherson55d23752018-12-03 13:53:18 -08006167{
6168 /*
6169 * Note that as a general rule, the high half of the MSRs (bits in
6170 * the control fields which may be 1) should be initialized by the
6171 * intersection of the underlying hardware's MSR (i.e., features which
6172 * can be supported) and the list of features we want to expose -
6173 * because they are known to be properly supported in our code.
6174 * Also, usually, the low half of the MSRs (bits which must be 1) can
6175 * be set to 0, meaning that L1 may turn off any of these bits. The
6176 * reason is that if one of these bits is necessary, it will appear
6177 * in vmcs01 and prepare_vmcs02, when it bitwise-or's the control
6178 * fields of vmcs01 and vmcs02, will turn these bits off - and
Sean Christopherson2c1f3322020-04-15 10:55:14 -07006179 * nested_vmx_l1_wants_exit() will not pass related exits to L1.
Sean Christopherson55d23752018-12-03 13:53:18 -08006180 * These rules have exceptions below.
6181 */
6182
6183 /* pin-based controls */
6184 rdmsr(MSR_IA32_VMX_PINBASED_CTLS,
6185 msrs->pinbased_ctls_low,
6186 msrs->pinbased_ctls_high);
6187 msrs->pinbased_ctls_low |=
6188 PIN_BASED_ALWAYSON_WITHOUT_TRUE_MSR;
6189 msrs->pinbased_ctls_high &=
6190 PIN_BASED_EXT_INTR_MASK |
6191 PIN_BASED_NMI_EXITING |
6192 PIN_BASED_VIRTUAL_NMIS |
Vitaly Kuznetsova4443262020-02-20 18:22:04 +01006193 (enable_apicv ? PIN_BASED_POSTED_INTR : 0);
Sean Christopherson55d23752018-12-03 13:53:18 -08006194 msrs->pinbased_ctls_high |=
6195 PIN_BASED_ALWAYSON_WITHOUT_TRUE_MSR |
6196 PIN_BASED_VMX_PREEMPTION_TIMER;
6197
6198 /* exit controls */
6199 rdmsr(MSR_IA32_VMX_EXIT_CTLS,
6200 msrs->exit_ctls_low,
6201 msrs->exit_ctls_high);
6202 msrs->exit_ctls_low =
6203 VM_EXIT_ALWAYSON_WITHOUT_TRUE_MSR;
6204
6205 msrs->exit_ctls_high &=
6206#ifdef CONFIG_X86_64
6207 VM_EXIT_HOST_ADDR_SPACE_SIZE |
6208#endif
6209 VM_EXIT_LOAD_IA32_PAT | VM_EXIT_SAVE_IA32_PAT;
6210 msrs->exit_ctls_high |=
6211 VM_EXIT_ALWAYSON_WITHOUT_TRUE_MSR |
6212 VM_EXIT_LOAD_IA32_EFER | VM_EXIT_SAVE_IA32_EFER |
6213 VM_EXIT_SAVE_VMX_PREEMPTION_TIMER | VM_EXIT_ACK_INTR_ON_EXIT;
6214
6215 /* We support free control of debug control saving. */
6216 msrs->exit_ctls_low &= ~VM_EXIT_SAVE_DEBUG_CONTROLS;
6217
6218 /* entry controls */
6219 rdmsr(MSR_IA32_VMX_ENTRY_CTLS,
6220 msrs->entry_ctls_low,
6221 msrs->entry_ctls_high);
6222 msrs->entry_ctls_low =
6223 VM_ENTRY_ALWAYSON_WITHOUT_TRUE_MSR;
6224 msrs->entry_ctls_high &=
6225#ifdef CONFIG_X86_64
6226 VM_ENTRY_IA32E_MODE |
6227#endif
6228 VM_ENTRY_LOAD_IA32_PAT;
6229 msrs->entry_ctls_high |=
6230 (VM_ENTRY_ALWAYSON_WITHOUT_TRUE_MSR | VM_ENTRY_LOAD_IA32_EFER);
6231
6232 /* We support free control of debug control loading. */
6233 msrs->entry_ctls_low &= ~VM_ENTRY_LOAD_DEBUG_CONTROLS;
6234
6235 /* cpu-based controls */
6236 rdmsr(MSR_IA32_VMX_PROCBASED_CTLS,
6237 msrs->procbased_ctls_low,
6238 msrs->procbased_ctls_high);
6239 msrs->procbased_ctls_low =
6240 CPU_BASED_ALWAYSON_WITHOUT_TRUE_MSR;
6241 msrs->procbased_ctls_high &=
Xiaoyao Li9dadc2f2019-12-06 16:45:24 +08006242 CPU_BASED_INTR_WINDOW_EXITING |
Xiaoyao Li5e3d3942019-12-06 16:45:26 +08006243 CPU_BASED_NMI_WINDOW_EXITING | CPU_BASED_USE_TSC_OFFSETTING |
Sean Christopherson55d23752018-12-03 13:53:18 -08006244 CPU_BASED_HLT_EXITING | CPU_BASED_INVLPG_EXITING |
6245 CPU_BASED_MWAIT_EXITING | CPU_BASED_CR3_LOAD_EXITING |
6246 CPU_BASED_CR3_STORE_EXITING |
6247#ifdef CONFIG_X86_64
6248 CPU_BASED_CR8_LOAD_EXITING | CPU_BASED_CR8_STORE_EXITING |
6249#endif
6250 CPU_BASED_MOV_DR_EXITING | CPU_BASED_UNCOND_IO_EXITING |
6251 CPU_BASED_USE_IO_BITMAPS | CPU_BASED_MONITOR_TRAP_FLAG |
6252 CPU_BASED_MONITOR_EXITING | CPU_BASED_RDPMC_EXITING |
6253 CPU_BASED_RDTSC_EXITING | CPU_BASED_PAUSE_EXITING |
6254 CPU_BASED_TPR_SHADOW | CPU_BASED_ACTIVATE_SECONDARY_CONTROLS;
6255 /*
6256 * We can allow some features even when not supported by the
6257 * hardware. For example, L1 can specify an MSR bitmap - and we
6258 * can use it to avoid exits to L1 - even when L0 runs L2
6259 * without MSR bitmaps.
6260 */
6261 msrs->procbased_ctls_high |=
6262 CPU_BASED_ALWAYSON_WITHOUT_TRUE_MSR |
6263 CPU_BASED_USE_MSR_BITMAPS;
6264
6265 /* We support free control of CR3 access interception. */
6266 msrs->procbased_ctls_low &=
6267 ~(CPU_BASED_CR3_LOAD_EXITING | CPU_BASED_CR3_STORE_EXITING);
6268
6269 /*
6270 * secondary cpu-based controls. Do not include those that
6271 * depend on CPUID bits, they are added later by vmx_cpuid_update.
6272 */
Vitaly Kuznetsov6b1971c2019-02-07 11:42:14 +01006273 if (msrs->procbased_ctls_high & CPU_BASED_ACTIVATE_SECONDARY_CONTROLS)
6274 rdmsr(MSR_IA32_VMX_PROCBASED_CTLS2,
6275 msrs->secondary_ctls_low,
6276 msrs->secondary_ctls_high);
6277
Sean Christopherson55d23752018-12-03 13:53:18 -08006278 msrs->secondary_ctls_low = 0;
6279 msrs->secondary_ctls_high &=
6280 SECONDARY_EXEC_DESC |
Paolo Bonzini6defc592019-07-02 14:39:29 +02006281 SECONDARY_EXEC_RDTSCP |
Sean Christopherson55d23752018-12-03 13:53:18 -08006282 SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE |
Paolo Bonzini6defc592019-07-02 14:39:29 +02006283 SECONDARY_EXEC_WBINVD_EXITING |
Sean Christopherson55d23752018-12-03 13:53:18 -08006284 SECONDARY_EXEC_APIC_REGISTER_VIRT |
6285 SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY |
Paolo Bonzini6defc592019-07-02 14:39:29 +02006286 SECONDARY_EXEC_RDRAND_EXITING |
6287 SECONDARY_EXEC_ENABLE_INVPCID |
6288 SECONDARY_EXEC_RDSEED_EXITING |
6289 SECONDARY_EXEC_XSAVES;
Sean Christopherson55d23752018-12-03 13:53:18 -08006290
6291 /*
6292 * We can emulate "VMCS shadowing," even if the hardware
6293 * doesn't support it.
6294 */
6295 msrs->secondary_ctls_high |=
6296 SECONDARY_EXEC_SHADOW_VMCS;
6297
6298 if (enable_ept) {
6299 /* nested EPT: emulate EPT also to L1 */
6300 msrs->secondary_ctls_high |=
6301 SECONDARY_EXEC_ENABLE_EPT;
Sean Christophersonbb1fcc72020-03-02 18:02:36 -08006302 msrs->ept_caps =
6303 VMX_EPT_PAGE_WALK_4_BIT |
6304 VMX_EPT_PAGE_WALK_5_BIT |
6305 VMX_EPTP_WB_BIT |
Sean Christopherson96d47012020-03-02 18:02:40 -08006306 VMX_EPT_INVEPT_BIT |
6307 VMX_EPT_EXECUTE_ONLY_BIT;
6308
Sean Christopherson55d23752018-12-03 13:53:18 -08006309 msrs->ept_caps &= ept_caps;
6310 msrs->ept_caps |= VMX_EPT_EXTENT_GLOBAL_BIT |
6311 VMX_EPT_EXTENT_CONTEXT_BIT | VMX_EPT_2MB_PAGE_BIT |
6312 VMX_EPT_1GB_PAGE_BIT;
6313 if (enable_ept_ad_bits) {
6314 msrs->secondary_ctls_high |=
6315 SECONDARY_EXEC_ENABLE_PML;
6316 msrs->ept_caps |= VMX_EPT_AD_BIT;
6317 }
6318 }
6319
6320 if (cpu_has_vmx_vmfunc()) {
6321 msrs->secondary_ctls_high |=
6322 SECONDARY_EXEC_ENABLE_VMFUNC;
6323 /*
6324 * Advertise EPTP switching unconditionally
6325 * since we emulate it
6326 */
6327 if (enable_ept)
6328 msrs->vmfunc_controls =
6329 VMX_VMFUNC_EPTP_SWITCHING;
6330 }
6331
6332 /*
6333 * Old versions of KVM use the single-context version without
6334 * checking for support, so declare that it is supported even
6335 * though it is treated as global context. The alternative is
6336 * not failing the single-context invvpid, and it is worse.
6337 */
6338 if (enable_vpid) {
6339 msrs->secondary_ctls_high |=
6340 SECONDARY_EXEC_ENABLE_VPID;
6341 msrs->vpid_caps = VMX_VPID_INVVPID_BIT |
6342 VMX_VPID_EXTENT_SUPPORTED_MASK;
6343 }
6344
6345 if (enable_unrestricted_guest)
6346 msrs->secondary_ctls_high |=
6347 SECONDARY_EXEC_UNRESTRICTED_GUEST;
6348
6349 if (flexpriority_enabled)
6350 msrs->secondary_ctls_high |=
6351 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES;
6352
6353 /* miscellaneous data */
6354 rdmsr(MSR_IA32_VMX_MISC,
6355 msrs->misc_low,
6356 msrs->misc_high);
6357 msrs->misc_low &= VMX_MISC_SAVE_EFER_LMA;
6358 msrs->misc_low |=
6359 MSR_IA32_VMX_MISC_VMWRITE_SHADOW_RO_FIELDS |
6360 VMX_MISC_EMULATED_PREEMPTION_TIMER_RATE |
6361 VMX_MISC_ACTIVITY_HLT;
6362 msrs->misc_high = 0;
6363
6364 /*
6365 * This MSR reports some information about VMX support. We
6366 * should return information about the VMX we emulate for the
6367 * guest, and the VMCS structure we give it - not about the
6368 * VMX support of the underlying hardware.
6369 */
6370 msrs->basic =
6371 VMCS12_REVISION |
6372 VMX_BASIC_TRUE_CTLS |
6373 ((u64)VMCS12_SIZE << VMX_BASIC_VMCS_SIZE_SHIFT) |
6374 (VMX_BASIC_MEM_TYPE_WB << VMX_BASIC_MEM_TYPE_SHIFT);
6375
6376 if (cpu_has_vmx_basic_inout())
6377 msrs->basic |= VMX_BASIC_INOUT;
6378
6379 /*
6380 * These MSRs specify bits which the guest must keep fixed on
6381 * while L1 is in VMXON mode (in L1's root mode, or running an L2).
6382 * We picked the standard core2 setting.
6383 */
6384#define VMXON_CR0_ALWAYSON (X86_CR0_PE | X86_CR0_PG | X86_CR0_NE)
6385#define VMXON_CR4_ALWAYSON X86_CR4_VMXE
6386 msrs->cr0_fixed0 = VMXON_CR0_ALWAYSON;
6387 msrs->cr4_fixed0 = VMXON_CR4_ALWAYSON;
6388
6389 /* These MSRs specify bits which the guest must keep fixed off. */
6390 rdmsrl(MSR_IA32_VMX_CR0_FIXED1, msrs->cr0_fixed1);
6391 rdmsrl(MSR_IA32_VMX_CR4_FIXED1, msrs->cr4_fixed1);
6392
6393 /* highest index: VMX_PREEMPTION_TIMER_VALUE */
6394 msrs->vmcs_enum = VMCS12_MAX_FIELD_INDEX << 1;
6395}
6396
6397void nested_vmx_hardware_unsetup(void)
6398{
6399 int i;
6400
6401 if (enable_shadow_vmcs) {
6402 for (i = 0; i < VMX_BITMAP_NR; i++)
6403 free_page((unsigned long)vmx_bitmap[i]);
6404 }
6405}
6406
Sean Christopherson72b0eaa2020-03-21 13:25:58 -07006407__init int nested_vmx_hardware_setup(struct kvm_x86_ops *ops,
6408 int (*exit_handlers[])(struct kvm_vcpu *))
Sean Christopherson55d23752018-12-03 13:53:18 -08006409{
6410 int i;
6411
6412 if (!cpu_has_vmx_shadow_vmcs())
6413 enable_shadow_vmcs = 0;
6414 if (enable_shadow_vmcs) {
6415 for (i = 0; i < VMX_BITMAP_NR; i++) {
Ben Gardon41836832019-02-11 11:02:52 -08006416 /*
6417 * The vmx_bitmap is not tied to a VM and so should
6418 * not be charged to a memcg.
6419 */
Sean Christopherson55d23752018-12-03 13:53:18 -08006420 vmx_bitmap[i] = (unsigned long *)
6421 __get_free_page(GFP_KERNEL);
6422 if (!vmx_bitmap[i]) {
6423 nested_vmx_hardware_unsetup();
6424 return -ENOMEM;
6425 }
6426 }
6427
6428 init_vmcs_shadow_fields();
6429 }
6430
Liran Aloncc877672019-11-18 21:11:21 +02006431 exit_handlers[EXIT_REASON_VMCLEAR] = handle_vmclear;
6432 exit_handlers[EXIT_REASON_VMLAUNCH] = handle_vmlaunch;
6433 exit_handlers[EXIT_REASON_VMPTRLD] = handle_vmptrld;
6434 exit_handlers[EXIT_REASON_VMPTRST] = handle_vmptrst;
6435 exit_handlers[EXIT_REASON_VMREAD] = handle_vmread;
6436 exit_handlers[EXIT_REASON_VMRESUME] = handle_vmresume;
6437 exit_handlers[EXIT_REASON_VMWRITE] = handle_vmwrite;
6438 exit_handlers[EXIT_REASON_VMOFF] = handle_vmoff;
6439 exit_handlers[EXIT_REASON_VMON] = handle_vmon;
6440 exit_handlers[EXIT_REASON_INVEPT] = handle_invept;
6441 exit_handlers[EXIT_REASON_INVVPID] = handle_invvpid;
6442 exit_handlers[EXIT_REASON_VMFUNC] = handle_vmfunc;
Sean Christopherson55d23752018-12-03 13:53:18 -08006443
Sean Christopherson55d23752018-12-03 13:53:18 -08006444 return 0;
6445}
Paolo Bonzini33b22172020-04-17 10:24:18 -04006446
6447struct kvm_x86_nested_ops vmx_nested_ops = {
6448 .check_events = vmx_check_nested_events,
6449 .get_state = vmx_get_nested_state,
6450 .set_state = vmx_set_nested_state,
6451 .get_vmcs12_pages = nested_get_vmcs12_pages,
6452 .enable_evmcs = nested_enable_evmcs,
6453 .get_evmcs_version = nested_get_evmcs_version,
6454};