1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef __KVM_X86_VMX_H
3 #define __KVM_X86_VMX_H
5 #include <linux/kvm_host.h>
8 #include <asm/intel_pt.h>
10 #include "capabilities.h"
11 #include "kvm_cache_regs.h"
12 #include "posted_intr.h"
17 extern const u32 vmx_msr_index[];
23 #define X2APIC_MSR(r) (APIC_BASE_MSR + ((r) >> 4))
26 #define MAX_NR_USER_RETURN_MSRS 7
28 #define MAX_NR_USER_RETURN_MSRS 4
31 #define MAX_NR_LOADSTORE_MSRS 8
35 struct vmx_msr_entry val[MAX_NR_LOADSTORE_MSRS];
39 unsigned int slot; /* The MSR's slot in kvm_user_return_msrs. */
44 enum segment_cache_field {
53 #define RTIT_ADDR_RANGE 4
61 u64 addr_a[RTIT_ADDR_RANGE];
62 u64 addr_b[RTIT_ADDR_RANGE];
68 u32 caps[PT_CPUID_REGS_NUM * PT_CPUID_LEAVES];
73 union vmx_exit_reason {
86 u32 bus_lock_detected : 1;
88 u32 smi_pending_mtf : 1;
89 u32 smi_from_vmx_root : 1;
91 u32 failed_vmentry : 1;
96 #define vcpu_to_lbr_desc(vcpu) (&to_vmx(vcpu)->lbr_desc)
97 #define vcpu_to_lbr_records(vcpu) (&to_vmx(vcpu)->lbr_desc.records)
99 bool intel_pmu_lbr_is_compatible(struct kvm_vcpu *vcpu);
100 bool intel_pmu_lbr_is_enabled(struct kvm_vcpu *vcpu);
102 int intel_pmu_create_guest_lbr_event(struct kvm_vcpu *vcpu);
103 void vmx_passthrough_lbr_msrs(struct kvm_vcpu *vcpu);
106 /* Basic info about guest LBR records. */
107 struct x86_pmu_lbr records;
110 * Emulate LBR feature via passthrough LBR registers when the
111 * per-vcpu guest LBR event is scheduled on the current pcpu.
113 * The records may be inaccurate if the host reclaims the LBR.
115 struct perf_event *event;
117 /* True if LBRs are marked as not intercepted in the MSR bitmap */
118 bool msr_passthrough;
122 * The nested_vmx structure is part of vcpu_vmx, and holds information we need
123 * for correct emulation of VMX (i.e., nested VMX) on this vcpu.
126 /* Has the level1 guest done vmxon? */
131 /* The guest-physical address of the current VMCS L1 keeps for L2 */
134 * Cache of the guest's VMCS, existing outside of guest memory.
135 * Loaded from guest memory during VMPTRLD. Flushed to guest
136 * memory during VMCLEAR and VMPTRLD.
138 struct vmcs12 *cached_vmcs12;
140 * Cache of the guest's shadow VMCS, existing outside of guest
141 * memory. Loaded from guest memory during VM entry. Flushed
142 * to guest memory during VM exit.
144 struct vmcs12 *cached_shadow_vmcs12;
147 * Indicates if the shadow vmcs or enlightened vmcs must be updated
148 * with the data held by struct vmcs12.
150 bool need_vmcs12_to_shadow_sync;
154 * Indicates lazily loaded guest state has not yet been decached from
157 bool need_sync_vmcs02_to_vmcs12_rare;
160 * vmcs02 has been initialized, i.e. state that is constant for
161 * vmcs02 has been written to the backing VMCS. Initialization
162 * is delayed until L1 actually attempts to run a nested VM.
164 bool vmcs02_initialized;
166 bool change_vmcs01_virtual_apic_mode;
167 bool reload_vmcs01_apic_access_page;
168 bool update_vmcs01_cpu_dirty_logging;
171 * Enlightened VMCS has been enabled. It does not mean that L1 has to
172 * use it. However, VMX features available to L1 will be limited based
173 * on what the enlightened VMCS supports.
175 bool enlightened_vmcs_enabled;
177 /* L2 must run next, and mustn't decide to exit to L1. */
178 bool nested_run_pending;
180 /* Pending MTF VM-exit into L1. */
183 struct loaded_vmcs vmcs02;
186 * Guest pages referred to in the vmcs02 with host-physical
187 * pointers, so we must keep them pinned while L2 runs.
189 struct page *apic_access_page;
190 struct kvm_host_map virtual_apic_map;
191 struct kvm_host_map pi_desc_map;
193 struct kvm_host_map msr_bitmap_map;
195 struct pi_desc *pi_desc;
199 struct hrtimer preemption_timer;
200 u64 preemption_timer_deadline;
201 bool has_preemption_timer_deadline;
202 bool preemption_timer_expired;
204 /* to migrate it to L2 if VM_ENTRY_LOAD_DEBUG_CONTROLS is off */
206 u64 vmcs01_guest_bndcfgs;
208 /* to migrate it to L1 if L2 writes to L1's CR8 directly */
209 int l1_tpr_threshold;
214 struct nested_vmx_msrs msrs;
216 /* SMM related state */
218 /* in VMX operation on SMM entry? */
220 /* in guest mode on SMM entry? */
224 gpa_t hv_evmcs_vmptr;
225 struct kvm_host_map hv_evmcs_map;
226 struct hv_enlightened_vmcs *hv_evmcs;
230 struct kvm_vcpu vcpu;
235 * If true, host state has been stored in vmx->loaded_vmcs for
236 * the CPU registers that only need to be switched when transitioning
237 * to/from the kernel, and the registers have been loaded with guest
238 * values. If false, host state is loaded in the CPU registers
239 * and vmx->loaded_vmcs->host_state is invalid.
241 bool guest_state_loaded;
243 unsigned long exit_qualification;
245 u32 idt_vectoring_info;
248 struct vmx_uret_msr guest_uret_msrs[MAX_NR_USER_RETURN_MSRS];
250 int nr_active_uret_msrs;
251 bool guest_uret_msrs_loaded;
253 u64 msr_host_kernel_gs_base;
254 u64 msr_guest_kernel_gs_base;
258 u32 msr_ia32_umwait_control;
260 u32 secondary_exec_control;
263 * loaded_vmcs points to the VMCS currently used in this vcpu. For a
264 * non-nested (L1) guest, it always points to vmcs01. For a nested
265 * guest (L2), it points to a different VMCS.
267 struct loaded_vmcs vmcs01;
268 struct loaded_vmcs *loaded_vmcs;
270 struct msr_autoload {
271 struct vmx_msrs guest;
272 struct vmx_msrs host;
275 struct msr_autostore {
276 struct vmx_msrs guest;
282 struct kvm_segment segs[8];
285 u32 bitmask; /* 4 bits per segment (1 bit per field) */
286 struct kvm_save_segment {
294 bool emulation_required;
296 union vmx_exit_reason exit_reason;
298 /* Posted interrupt descriptor */
299 struct pi_desc pi_desc;
301 /* Support for a guest hypervisor (nested VMX) */
302 struct nested_vmx nested;
304 /* Dynamic PLE window. */
305 unsigned int ple_window;
306 bool ple_window_dirty;
308 bool req_immediate_exit;
310 /* Support for PML */
311 #define PML_ENTITY_NUM 512
314 /* apic deadline value in host tsc */
317 u64 current_tsc_ratio;
319 unsigned long host_debugctlmsr;
322 * Only bits masked by msr_ia32_feature_control_valid_bits can be set in
323 * msr_ia32_feature_control. FEAT_CTL_LOCKED is always included
324 * in msr_ia32_feature_control_valid_bits.
326 u64 msr_ia32_feature_control;
327 u64 msr_ia32_feature_control_valid_bits;
330 struct pt_desc pt_desc;
331 struct lbr_desc lbr_desc;
333 /* Save desired MSR intercept (read: pass-through) state */
334 #define MAX_POSSIBLE_PASSTHROUGH_MSRS 13
336 DECLARE_BITMAP(read, MAX_POSSIBLE_PASSTHROUGH_MSRS);
337 DECLARE_BITMAP(write, MAX_POSSIBLE_PASSTHROUGH_MSRS);
338 } shadow_msr_intercept;
341 enum ept_pointers_status {
342 EPT_POINTERS_CHECK = 0,
343 EPT_POINTERS_MATCH = 1,
344 EPT_POINTERS_MISMATCH = 2
350 unsigned int tss_addr;
351 bool ept_identity_pagetable_done;
352 gpa_t ept_identity_map_addr;
354 enum ept_pointers_status ept_pointers_match;
355 spinlock_t ept_pointer_lock;
358 bool nested_vmx_allowed(struct kvm_vcpu *vcpu);
359 void vmx_vcpu_load_vmcs(struct kvm_vcpu *vcpu, int cpu,
360 struct loaded_vmcs *buddy);
361 int allocate_vpid(void);
362 void free_vpid(int vpid);
363 void vmx_set_constant_host_state(struct vcpu_vmx *vmx);
364 void vmx_prepare_switch_to_guest(struct kvm_vcpu *vcpu);
365 void vmx_set_host_fs_gs(struct vmcs_host_state *host, u16 fs_sel, u16 gs_sel,
366 unsigned long fs_base, unsigned long gs_base);
367 int vmx_get_cpl(struct kvm_vcpu *vcpu);
368 unsigned long vmx_get_rflags(struct kvm_vcpu *vcpu);
369 void vmx_set_rflags(struct kvm_vcpu *vcpu, unsigned long rflags);
370 u32 vmx_get_interrupt_shadow(struct kvm_vcpu *vcpu);
371 void vmx_set_interrupt_shadow(struct kvm_vcpu *vcpu, int mask);
372 int vmx_set_efer(struct kvm_vcpu *vcpu, u64 efer);
373 void vmx_set_cr0(struct kvm_vcpu *vcpu, unsigned long cr0);
374 void vmx_set_cr4(struct kvm_vcpu *vcpu, unsigned long cr4);
375 void set_cr4_guest_host_mask(struct vcpu_vmx *vmx);
376 void ept_save_pdptrs(struct kvm_vcpu *vcpu);
377 void vmx_get_segment(struct kvm_vcpu *vcpu, struct kvm_segment *var, int seg);
378 void vmx_set_segment(struct kvm_vcpu *vcpu, struct kvm_segment *var, int seg);
379 u64 construct_eptp(struct kvm_vcpu *vcpu, unsigned long root_hpa,
382 void vmx_update_exception_bitmap(struct kvm_vcpu *vcpu);
383 void vmx_update_msr_bitmap(struct kvm_vcpu *vcpu);
384 bool vmx_nmi_blocked(struct kvm_vcpu *vcpu);
385 bool vmx_interrupt_blocked(struct kvm_vcpu *vcpu);
386 bool vmx_get_nmi_mask(struct kvm_vcpu *vcpu);
387 void vmx_set_nmi_mask(struct kvm_vcpu *vcpu, bool masked);
388 void vmx_set_virtual_apic_mode(struct kvm_vcpu *vcpu);
389 struct vmx_uret_msr *vmx_find_uret_msr(struct vcpu_vmx *vmx, u32 msr);
390 void pt_update_intercept_for_msr(struct kvm_vcpu *vcpu);
391 void vmx_update_host_rsp(struct vcpu_vmx *vmx, unsigned long host_rsp);
392 bool __vmx_vcpu_run(struct vcpu_vmx *vmx, unsigned long *regs, bool launched);
393 int vmx_find_loadstore_msr_slot(struct vmx_msrs *m, u32 msr);
394 void vmx_ept_load_pdptrs(struct kvm_vcpu *vcpu);
395 void vmx_set_intercept_for_msr(struct kvm_vcpu *vcpu,
396 u32 msr, int type, bool value);
397 void vmx_update_cpu_dirty_logging(struct kvm_vcpu *vcpu);
399 static inline u8 vmx_get_rvi(void)
401 return vmcs_read16(GUEST_INTR_STATUS) & 0xff;
404 #define BUILD_CONTROLS_SHADOW(lname, uname) \
405 static inline void lname##_controls_set(struct vcpu_vmx *vmx, u32 val) \
407 if (vmx->loaded_vmcs->controls_shadow.lname != val) { \
408 vmcs_write32(uname, val); \
409 vmx->loaded_vmcs->controls_shadow.lname = val; \
412 static inline u32 lname##_controls_get(struct vcpu_vmx *vmx) \
414 return vmx->loaded_vmcs->controls_shadow.lname; \
416 static inline void lname##_controls_setbit(struct vcpu_vmx *vmx, u32 val) \
418 lname##_controls_set(vmx, lname##_controls_get(vmx) | val); \
420 static inline void lname##_controls_clearbit(struct vcpu_vmx *vmx, u32 val) \
422 lname##_controls_set(vmx, lname##_controls_get(vmx) & ~val); \
424 BUILD_CONTROLS_SHADOW(vm_entry, VM_ENTRY_CONTROLS)
425 BUILD_CONTROLS_SHADOW(vm_exit, VM_EXIT_CONTROLS)
426 BUILD_CONTROLS_SHADOW(pin, PIN_BASED_VM_EXEC_CONTROL)
427 BUILD_CONTROLS_SHADOW(exec, CPU_BASED_VM_EXEC_CONTROL)
428 BUILD_CONTROLS_SHADOW(secondary_exec, SECONDARY_VM_EXEC_CONTROL)
430 static inline void vmx_register_cache_reset(struct kvm_vcpu *vcpu)
432 vcpu->arch.regs_avail = ~((1 << VCPU_REGS_RIP) | (1 << VCPU_REGS_RSP)
433 | (1 << VCPU_EXREG_RFLAGS)
434 | (1 << VCPU_EXREG_PDPTR)
435 | (1 << VCPU_EXREG_SEGMENTS)
436 | (1 << VCPU_EXREG_CR0)
437 | (1 << VCPU_EXREG_CR3)
438 | (1 << VCPU_EXREG_CR4)
439 | (1 << VCPU_EXREG_EXIT_INFO_1)
440 | (1 << VCPU_EXREG_EXIT_INFO_2));
441 vcpu->arch.regs_dirty = 0;
444 static inline u32 vmx_vmentry_ctrl(void)
446 u32 vmentry_ctrl = vmcs_config.vmentry_ctrl;
447 if (vmx_pt_mode_is_system())
448 vmentry_ctrl &= ~(VM_ENTRY_PT_CONCEAL_PIP |
449 VM_ENTRY_LOAD_IA32_RTIT_CTL);
450 /* Loading of EFER and PERF_GLOBAL_CTRL are toggled dynamically */
451 return vmentry_ctrl &
452 ~(VM_ENTRY_LOAD_IA32_PERF_GLOBAL_CTRL | VM_ENTRY_LOAD_IA32_EFER);
455 static inline u32 vmx_vmexit_ctrl(void)
457 u32 vmexit_ctrl = vmcs_config.vmexit_ctrl;
458 if (vmx_pt_mode_is_system())
459 vmexit_ctrl &= ~(VM_EXIT_PT_CONCEAL_PIP |
460 VM_EXIT_CLEAR_IA32_RTIT_CTL);
461 /* Loading of EFER and PERF_GLOBAL_CTRL are toggled dynamically */
463 ~(VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL | VM_EXIT_LOAD_IA32_EFER);
466 u32 vmx_exec_control(struct vcpu_vmx *vmx);
467 u32 vmx_pin_based_exec_ctrl(struct vcpu_vmx *vmx);
469 static inline struct kvm_vmx *to_kvm_vmx(struct kvm *kvm)
471 return container_of(kvm, struct kvm_vmx, kvm);
474 static inline struct vcpu_vmx *to_vmx(struct kvm_vcpu *vcpu)
476 return container_of(vcpu, struct vcpu_vmx, vcpu);
479 static inline unsigned long vmx_get_exit_qual(struct kvm_vcpu *vcpu)
481 struct vcpu_vmx *vmx = to_vmx(vcpu);
483 if (!kvm_register_is_available(vcpu, VCPU_EXREG_EXIT_INFO_1)) {
484 kvm_register_mark_available(vcpu, VCPU_EXREG_EXIT_INFO_1);
485 vmx->exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
487 return vmx->exit_qualification;
490 static inline u32 vmx_get_intr_info(struct kvm_vcpu *vcpu)
492 struct vcpu_vmx *vmx = to_vmx(vcpu);
494 if (!kvm_register_is_available(vcpu, VCPU_EXREG_EXIT_INFO_2)) {
495 kvm_register_mark_available(vcpu, VCPU_EXREG_EXIT_INFO_2);
496 vmx->exit_intr_info = vmcs_read32(VM_EXIT_INTR_INFO);
498 return vmx->exit_intr_info;
501 struct vmcs *alloc_vmcs_cpu(bool shadow, int cpu, gfp_t flags);
502 void free_vmcs(struct vmcs *vmcs);
503 int alloc_loaded_vmcs(struct loaded_vmcs *loaded_vmcs);
504 void free_loaded_vmcs(struct loaded_vmcs *loaded_vmcs);
505 void loaded_vmcs_clear(struct loaded_vmcs *loaded_vmcs);
507 static inline struct vmcs *alloc_vmcs(bool shadow)
509 return alloc_vmcs_cpu(shadow, raw_smp_processor_id(),
513 static inline void decache_tsc_multiplier(struct vcpu_vmx *vmx)
515 vmx->current_tsc_ratio = vmx->vcpu.arch.tsc_scaling_ratio;
516 vmcs_write64(TSC_MULTIPLIER, vmx->current_tsc_ratio);
519 static inline bool vmx_has_waitpkg(struct vcpu_vmx *vmx)
521 return vmx->secondary_exec_control &
522 SECONDARY_EXEC_ENABLE_USR_WAIT_PAUSE;
525 static inline bool vmx_need_pf_intercept(struct kvm_vcpu *vcpu)
530 return allow_smaller_maxphyaddr && cpuid_maxphyaddr(vcpu) < boot_cpu_data.x86_phys_bits;
533 static inline bool is_unrestricted_guest(struct kvm_vcpu *vcpu)
535 return enable_unrestricted_guest && (!is_guest_mode(vcpu) ||
536 (secondary_exec_controls_get(to_vmx(vcpu)) &
537 SECONDARY_EXEC_UNRESTRICTED_GUEST));
540 bool __vmx_guest_state_valid(struct kvm_vcpu *vcpu);
541 static inline bool vmx_guest_state_valid(struct kvm_vcpu *vcpu)
543 return is_unrestricted_guest(vcpu) || __vmx_guest_state_valid(vcpu);
546 void dump_vmcs(void);
548 #endif /* __KVM_X86_VMX_H */