Sean Christopherson | 8373d25 | 2018-12-03 13:53:08 -0800 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0 */ |
| 2 | #ifndef __KVM_X86_VMX_H |
| 3 | #define __KVM_X86_VMX_H |
| 4 | |
| 5 | #include <linux/kvm_host.h> |
| 6 | |
| 7 | #include <asm/kvm.h> |
Chao Peng | f99e3da | 2018-10-24 16:05:10 +0800 | [diff] [blame] | 8 | #include <asm/intel_pt.h> |
Sean Christopherson | 8373d25 | 2018-12-03 13:53:08 -0800 | [diff] [blame] | 9 | |
| 10 | #include "capabilities.h" |
Sean Christopherson | e5d03de | 2020-04-15 13:34:51 -0700 | [diff] [blame] | 11 | #include "kvm_cache_regs.h" |
Xiaoyao Li | 8888cdd | 2020-09-23 11:31:11 -0700 | [diff] [blame] | 12 | #include "posted_intr.h" |
Sean Christopherson | 8373d25 | 2018-12-03 13:53:08 -0800 | [diff] [blame] | 13 | #include "vmcs.h" |
Sean Christopherson | 5a08532 | 2020-09-23 11:31:12 -0700 | [diff] [blame] | 14 | #include "vmx_ops.h" |
Mohammed Gamal | 1dbf5d68 | 2020-07-10 17:48:09 +0200 | [diff] [blame] | 15 | #include "cpuid.h" |
Sean Christopherson | 8373d25 | 2018-12-03 13:53:08 -0800 | [diff] [blame] | 16 | |
Sean Christopherson | cf3646e | 2018-12-03 13:53:15 -0800 | [diff] [blame] | 17 | extern const u32 vmx_msr_index[]; |
Sean Christopherson | cf3646e | 2018-12-03 13:53:15 -0800 | [diff] [blame] | 18 | |
Sean Christopherson | 8373d25 | 2018-12-03 13:53:08 -0800 | [diff] [blame] | 19 | #define MSR_TYPE_R 1 |
| 20 | #define MSR_TYPE_W 2 |
| 21 | #define MSR_TYPE_RW 3 |
| 22 | |
| 23 | #define X2APIC_MSR(r) (APIC_BASE_MSR + ((r) >> 4)) |
| 24 | |
Jim Mattson | 7d73710 | 2019-12-03 16:24:42 -0800 | [diff] [blame] | 25 | #ifdef CONFIG_X86_64 |
Sean Christopherson | eb3db1b | 2020-09-23 11:03:58 -0700 | [diff] [blame] | 26 | #define MAX_NR_USER_RETURN_MSRS 7 |
Jim Mattson | 7d73710 | 2019-12-03 16:24:42 -0800 | [diff] [blame] | 27 | #else |
Sean Christopherson | eb3db1b | 2020-09-23 11:03:58 -0700 | [diff] [blame] | 28 | #define MAX_NR_USER_RETURN_MSRS 4 |
Jim Mattson | 7d73710 | 2019-12-03 16:24:42 -0800 | [diff] [blame] | 29 | #endif |
| 30 | |
Sean Christopherson | ce833b2 | 2020-09-23 11:03:56 -0700 | [diff] [blame] | 31 | #define MAX_NR_LOADSTORE_MSRS 8 |
Sean Christopherson | 8373d25 | 2018-12-03 13:53:08 -0800 | [diff] [blame] | 32 | |
| 33 | struct vmx_msrs { |
| 34 | unsigned int nr; |
Sean Christopherson | ce833b2 | 2020-09-23 11:03:56 -0700 | [diff] [blame] | 35 | struct vmx_msr_entry val[MAX_NR_LOADSTORE_MSRS]; |
Sean Christopherson | 8373d25 | 2018-12-03 13:53:08 -0800 | [diff] [blame] | 36 | }; |
| 37 | |
Sean Christopherson | eb3db1b | 2020-09-23 11:03:58 -0700 | [diff] [blame] | 38 | struct vmx_uret_msr { |
Sean Christopherson | 802145c | 2020-09-23 11:04:09 -0700 | [diff] [blame] | 39 | unsigned int slot; /* The MSR's slot in kvm_user_return_msrs. */ |
Sean Christopherson | 8373d25 | 2018-12-03 13:53:08 -0800 | [diff] [blame] | 40 | u64 data; |
| 41 | u64 mask; |
| 42 | }; |
| 43 | |
| 44 | enum segment_cache_field { |
| 45 | SEG_FIELD_SEL = 0, |
| 46 | SEG_FIELD_BASE = 1, |
| 47 | SEG_FIELD_LIMIT = 2, |
| 48 | SEG_FIELD_AR = 3, |
| 49 | |
| 50 | SEG_FIELD_NR = 4 |
| 51 | }; |
| 52 | |
Chao Peng | 2ef444f | 2018-10-24 16:05:12 +0800 | [diff] [blame] | 53 | #define RTIT_ADDR_RANGE 4 |
| 54 | |
| 55 | struct pt_ctx { |
| 56 | u64 ctl; |
| 57 | u64 status; |
| 58 | u64 output_base; |
| 59 | u64 output_mask; |
| 60 | u64 cr3_match; |
| 61 | u64 addr_a[RTIT_ADDR_RANGE]; |
| 62 | u64 addr_b[RTIT_ADDR_RANGE]; |
| 63 | }; |
| 64 | |
| 65 | struct pt_desc { |
| 66 | u64 ctl_bitmask; |
| 67 | u32 addr_range; |
| 68 | u32 caps[PT_CPUID_REGS_NUM * PT_CPUID_LEAVES]; |
| 69 | struct pt_ctx host; |
| 70 | struct pt_ctx guest; |
| 71 | }; |
Sean Christopherson | 8373d25 | 2018-12-03 13:53:08 -0800 | [diff] [blame] | 72 | |
| 73 | /* |
| 74 | * The nested_vmx structure is part of vcpu_vmx, and holds information we need |
| 75 | * for correct emulation of VMX (i.e., nested VMX) on this vcpu. |
| 76 | */ |
| 77 | struct nested_vmx { |
| 78 | /* Has the level1 guest done vmxon? */ |
| 79 | bool vmxon; |
| 80 | gpa_t vmxon_ptr; |
| 81 | bool pml_full; |
| 82 | |
| 83 | /* The guest-physical address of the current VMCS L1 keeps for L2 */ |
| 84 | gpa_t current_vmptr; |
| 85 | /* |
| 86 | * Cache of the guest's VMCS, existing outside of guest memory. |
| 87 | * Loaded from guest memory during VMPTRLD. Flushed to guest |
| 88 | * memory during VMCLEAR and VMPTRLD. |
| 89 | */ |
| 90 | struct vmcs12 *cached_vmcs12; |
| 91 | /* |
| 92 | * Cache of the guest's shadow VMCS, existing outside of guest |
| 93 | * memory. Loaded from guest memory during VM entry. Flushed |
| 94 | * to guest memory during VM exit. |
| 95 | */ |
| 96 | struct vmcs12 *cached_shadow_vmcs12; |
Sean Christopherson | 7952d76 | 2019-05-07 08:36:29 -0700 | [diff] [blame] | 97 | |
Sean Christopherson | 8373d25 | 2018-12-03 13:53:08 -0800 | [diff] [blame] | 98 | /* |
| 99 | * Indicates if the shadow vmcs or enlightened vmcs must be updated |
| 100 | * with the data held by struct vmcs12. |
| 101 | */ |
Sean Christopherson | 3731905ef | 2019-05-07 08:36:27 -0700 | [diff] [blame] | 102 | bool need_vmcs12_to_shadow_sync; |
Sean Christopherson | 8373d25 | 2018-12-03 13:53:08 -0800 | [diff] [blame] | 103 | bool dirty_vmcs12; |
| 104 | |
| 105 | /* |
Sean Christopherson | 7952d76 | 2019-05-07 08:36:29 -0700 | [diff] [blame] | 106 | * Indicates lazily loaded guest state has not yet been decached from |
| 107 | * vmcs02. |
| 108 | */ |
| 109 | bool need_sync_vmcs02_to_vmcs12_rare; |
| 110 | |
| 111 | /* |
Sean Christopherson | 8373d25 | 2018-12-03 13:53:08 -0800 | [diff] [blame] | 112 | * vmcs02 has been initialized, i.e. state that is constant for |
| 113 | * vmcs02 has been written to the backing VMCS. Initialization |
| 114 | * is delayed until L1 actually attempts to run a nested VM. |
| 115 | */ |
| 116 | bool vmcs02_initialized; |
| 117 | |
| 118 | bool change_vmcs01_virtual_apic_mode; |
Sean Christopherson | 1196cb9 | 2020-03-20 14:28:23 -0700 | [diff] [blame] | 119 | bool reload_vmcs01_apic_access_page; |
Sean Christopherson | 8373d25 | 2018-12-03 13:53:08 -0800 | [diff] [blame] | 120 | |
| 121 | /* |
| 122 | * Enlightened VMCS has been enabled. It does not mean that L1 has to |
| 123 | * use it. However, VMX features available to L1 will be limited based |
| 124 | * on what the enlightened VMCS supports. |
| 125 | */ |
| 126 | bool enlightened_vmcs_enabled; |
| 127 | |
| 128 | /* L2 must run next, and mustn't decide to exit to L1. */ |
| 129 | bool nested_run_pending; |
| 130 | |
Oliver Upton | 5ef8acb | 2020-02-07 02:36:07 -0800 | [diff] [blame] | 131 | /* Pending MTF VM-exit into L1. */ |
| 132 | bool mtf_pending; |
| 133 | |
Sean Christopherson | 8373d25 | 2018-12-03 13:53:08 -0800 | [diff] [blame] | 134 | struct loaded_vmcs vmcs02; |
| 135 | |
| 136 | /* |
| 137 | * Guest pages referred to in the vmcs02 with host-physical |
| 138 | * pointers, so we must keep them pinned while L2 runs. |
| 139 | */ |
| 140 | struct page *apic_access_page; |
KarimAllah Ahmed | 96c66e8 | 2019-01-31 21:24:37 +0100 | [diff] [blame] | 141 | struct kvm_host_map virtual_apic_map; |
KarimAllah Ahmed | 3278e04 | 2019-01-31 21:24:38 +0100 | [diff] [blame] | 142 | struct kvm_host_map pi_desc_map; |
KarimAllah Ahmed | 31f0b6c | 2019-01-31 21:24:36 +0100 | [diff] [blame] | 143 | |
| 144 | struct kvm_host_map msr_bitmap_map; |
| 145 | |
Sean Christopherson | 8373d25 | 2018-12-03 13:53:08 -0800 | [diff] [blame] | 146 | struct pi_desc *pi_desc; |
| 147 | bool pi_pending; |
| 148 | u16 posted_intr_nv; |
| 149 | |
| 150 | struct hrtimer preemption_timer; |
Peter Shier | 850448f | 2020-05-26 14:51:06 -0700 | [diff] [blame] | 151 | u64 preemption_timer_deadline; |
| 152 | bool has_preemption_timer_deadline; |
Sean Christopherson | 8373d25 | 2018-12-03 13:53:08 -0800 | [diff] [blame] | 153 | bool preemption_timer_expired; |
| 154 | |
| 155 | /* to migrate it to L2 if VM_ENTRY_LOAD_DEBUG_CONTROLS is off */ |
| 156 | u64 vmcs01_debugctl; |
| 157 | u64 vmcs01_guest_bndcfgs; |
| 158 | |
Liran Alon | 02d496cf | 2019-11-11 14:30:55 +0200 | [diff] [blame] | 159 | /* to migrate it to L1 if L2 writes to L1's CR8 directly */ |
| 160 | int l1_tpr_threshold; |
| 161 | |
Sean Christopherson | 8373d25 | 2018-12-03 13:53:08 -0800 | [diff] [blame] | 162 | u16 vpid02; |
| 163 | u16 last_vpid; |
| 164 | |
| 165 | struct nested_vmx_msrs msrs; |
| 166 | |
| 167 | /* SMM related state */ |
| 168 | struct { |
| 169 | /* in VMX operation on SMM entry? */ |
| 170 | bool vmxon; |
| 171 | /* in guest mode on SMM entry? */ |
| 172 | bool guest_mode; |
| 173 | } smm; |
| 174 | |
| 175 | gpa_t hv_evmcs_vmptr; |
KarimAllah Ahmed | dee9c04 | 2019-01-31 21:24:42 +0100 | [diff] [blame] | 176 | struct kvm_host_map hv_evmcs_map; |
Sean Christopherson | 8373d25 | 2018-12-03 13:53:08 -0800 | [diff] [blame] | 177 | struct hv_enlightened_vmcs *hv_evmcs; |
| 178 | }; |
| 179 | |
| 180 | struct vcpu_vmx { |
| 181 | struct kvm_vcpu vcpu; |
Sean Christopherson | 8373d25 | 2018-12-03 13:53:08 -0800 | [diff] [blame] | 182 | u8 fail; |
| 183 | u8 msr_bitmap_mode; |
Paolo Bonzini | b464f57e | 2019-06-07 19:00:14 +0200 | [diff] [blame] | 184 | |
| 185 | /* |
| 186 | * If true, host state has been stored in vmx->loaded_vmcs for |
| 187 | * the CPU registers that only need to be switched when transitioning |
| 188 | * to/from the kernel, and the registers have been loaded with guest |
| 189 | * values. If false, host state is loaded in the CPU registers |
| 190 | * and vmx->loaded_vmcs->host_state is invalid. |
| 191 | */ |
| 192 | bool guest_state_loaded; |
| 193 | |
Sean Christopherson | 5addc23 | 2020-04-15 13:34:53 -0700 | [diff] [blame] | 194 | unsigned long exit_qualification; |
Sean Christopherson | 8373d25 | 2018-12-03 13:53:08 -0800 | [diff] [blame] | 195 | u32 exit_intr_info; |
| 196 | u32 idt_vectoring_info; |
| 197 | ulong rflags; |
Sean Christopherson | 70f932e | 2019-05-07 12:17:54 -0700 | [diff] [blame] | 198 | |
Sean Christopherson | eb3db1b | 2020-09-23 11:03:58 -0700 | [diff] [blame] | 199 | struct vmx_uret_msr guest_uret_msrs[MAX_NR_USER_RETURN_MSRS]; |
Sean Christopherson | fbc1800 | 2020-09-23 11:03:59 -0700 | [diff] [blame] | 200 | int nr_uret_msrs; |
Sean Christopherson | e9bb1ae | 2020-09-23 11:04:00 -0700 | [diff] [blame] | 201 | int nr_active_uret_msrs; |
Sean Christopherson | 658ece8 | 2020-09-23 11:04:01 -0700 | [diff] [blame] | 202 | bool guest_uret_msrs_loaded; |
Sean Christopherson | 8373d25 | 2018-12-03 13:53:08 -0800 | [diff] [blame] | 203 | #ifdef CONFIG_X86_64 |
| 204 | u64 msr_host_kernel_gs_base; |
| 205 | u64 msr_guest_kernel_gs_base; |
| 206 | #endif |
| 207 | |
Sean Christopherson | 8373d25 | 2018-12-03 13:53:08 -0800 | [diff] [blame] | 208 | u64 spec_ctrl; |
Tao Xu | 6e3ba4a | 2019-07-16 14:55:50 +0800 | [diff] [blame] | 209 | u32 msr_ia32_umwait_control; |
Sean Christopherson | 8373d25 | 2018-12-03 13:53:08 -0800 | [diff] [blame] | 210 | |
Sean Christopherson | 8373d25 | 2018-12-03 13:53:08 -0800 | [diff] [blame] | 211 | u32 secondary_exec_control; |
| 212 | |
| 213 | /* |
| 214 | * loaded_vmcs points to the VMCS currently used in this vcpu. For a |
| 215 | * non-nested (L1) guest, it always points to vmcs01. For a nested |
Paolo Bonzini | b464f57e | 2019-06-07 19:00:14 +0200 | [diff] [blame] | 216 | * guest (L2), it points to a different VMCS. |
Sean Christopherson | 8373d25 | 2018-12-03 13:53:08 -0800 | [diff] [blame] | 217 | */ |
| 218 | struct loaded_vmcs vmcs01; |
| 219 | struct loaded_vmcs *loaded_vmcs; |
Sean Christopherson | c9afc58 | 2019-01-25 07:41:05 -0800 | [diff] [blame] | 220 | |
Sean Christopherson | 8373d25 | 2018-12-03 13:53:08 -0800 | [diff] [blame] | 221 | struct msr_autoload { |
| 222 | struct vmx_msrs guest; |
| 223 | struct vmx_msrs host; |
| 224 | } msr_autoload; |
| 225 | |
Aaron Lewis | 662f1d1 | 2019-11-07 21:14:39 -0800 | [diff] [blame] | 226 | struct msr_autostore { |
| 227 | struct vmx_msrs guest; |
| 228 | } msr_autostore; |
| 229 | |
Sean Christopherson | 8373d25 | 2018-12-03 13:53:08 -0800 | [diff] [blame] | 230 | struct { |
| 231 | int vm86_active; |
| 232 | ulong save_rflags; |
| 233 | struct kvm_segment segs[8]; |
| 234 | } rmode; |
| 235 | struct { |
| 236 | u32 bitmask; /* 4 bits per segment (1 bit per field) */ |
| 237 | struct kvm_save_segment { |
| 238 | u16 selector; |
| 239 | unsigned long base; |
| 240 | u32 limit; |
| 241 | u32 ar; |
| 242 | } seg[8]; |
| 243 | } segment_cache; |
| 244 | int vpid; |
| 245 | bool emulation_required; |
| 246 | |
| 247 | u32 exit_reason; |
| 248 | |
| 249 | /* Posted interrupt descriptor */ |
| 250 | struct pi_desc pi_desc; |
| 251 | |
| 252 | /* Support for a guest hypervisor (nested VMX) */ |
| 253 | struct nested_vmx nested; |
| 254 | |
| 255 | /* Dynamic PLE window. */ |
Peter Xu | c5c5d6f | 2019-09-06 10:17:21 +0800 | [diff] [blame] | 256 | unsigned int ple_window; |
Sean Christopherson | 8373d25 | 2018-12-03 13:53:08 -0800 | [diff] [blame] | 257 | bool ple_window_dirty; |
| 258 | |
| 259 | bool req_immediate_exit; |
| 260 | |
| 261 | /* Support for PML */ |
| 262 | #define PML_ENTITY_NUM 512 |
| 263 | struct page *pml_pg; |
| 264 | |
| 265 | /* apic deadline value in host tsc */ |
| 266 | u64 hv_deadline_tsc; |
| 267 | |
| 268 | u64 current_tsc_ratio; |
| 269 | |
Sean Christopherson | 8373d25 | 2018-12-03 13:53:08 -0800 | [diff] [blame] | 270 | unsigned long host_debugctlmsr; |
| 271 | |
| 272 | /* |
| 273 | * Only bits masked by msr_ia32_feature_control_valid_bits can be set in |
Sean Christopherson | 32ad73d | 2019-12-20 20:44:55 -0800 | [diff] [blame] | 274 | * msr_ia32_feature_control. FEAT_CTL_LOCKED is always included |
Sean Christopherson | 8373d25 | 2018-12-03 13:53:08 -0800 | [diff] [blame] | 275 | * in msr_ia32_feature_control_valid_bits. |
| 276 | */ |
| 277 | u64 msr_ia32_feature_control; |
| 278 | u64 msr_ia32_feature_control_valid_bits; |
| 279 | u64 ept_pointer; |
Chao Peng | 2ef444f | 2018-10-24 16:05:12 +0800 | [diff] [blame] | 280 | |
| 281 | struct pt_desc pt_desc; |
Sean Christopherson | 8373d25 | 2018-12-03 13:53:08 -0800 | [diff] [blame] | 282 | }; |
| 283 | |
| 284 | enum ept_pointers_status { |
| 285 | EPT_POINTERS_CHECK = 0, |
| 286 | EPT_POINTERS_MATCH = 1, |
| 287 | EPT_POINTERS_MISMATCH = 2 |
| 288 | }; |
| 289 | |
| 290 | struct kvm_vmx { |
| 291 | struct kvm kvm; |
| 292 | |
| 293 | unsigned int tss_addr; |
| 294 | bool ept_identity_pagetable_done; |
| 295 | gpa_t ept_identity_map_addr; |
| 296 | |
| 297 | enum ept_pointers_status ept_pointers_match; |
| 298 | spinlock_t ept_pointer_lock; |
| 299 | }; |
| 300 | |
Sean Christopherson | 7c97fcb | 2018-12-03 13:53:17 -0800 | [diff] [blame] | 301 | bool nested_vmx_allowed(struct kvm_vcpu *vcpu); |
Sean Christopherson | 5c911be | 2020-05-01 09:31:17 -0700 | [diff] [blame] | 302 | void vmx_vcpu_load_vmcs(struct kvm_vcpu *vcpu, int cpu, |
| 303 | struct loaded_vmcs *buddy); |
Sean Christopherson | 97b7ead | 2018-12-03 13:53:16 -0800 | [diff] [blame] | 304 | int allocate_vpid(void); |
| 305 | void free_vpid(int vpid); |
| 306 | void vmx_set_constant_host_state(struct vcpu_vmx *vmx); |
| 307 | void vmx_prepare_switch_to_guest(struct kvm_vcpu *vcpu); |
Sean Christopherson | 13b964a | 2019-05-07 09:06:31 -0700 | [diff] [blame] | 308 | void vmx_set_host_fs_gs(struct vmcs_host_state *host, u16 fs_sel, u16 gs_sel, |
| 309 | unsigned long fs_base, unsigned long gs_base); |
Sean Christopherson | 97b7ead | 2018-12-03 13:53:16 -0800 | [diff] [blame] | 310 | int vmx_get_cpl(struct kvm_vcpu *vcpu); |
| 311 | unsigned long vmx_get_rflags(struct kvm_vcpu *vcpu); |
| 312 | void vmx_set_rflags(struct kvm_vcpu *vcpu, unsigned long rflags); |
| 313 | u32 vmx_get_interrupt_shadow(struct kvm_vcpu *vcpu); |
| 314 | void vmx_set_interrupt_shadow(struct kvm_vcpu *vcpu, int mask); |
| 315 | void vmx_set_efer(struct kvm_vcpu *vcpu, u64 efer); |
| 316 | void vmx_set_cr0(struct kvm_vcpu *vcpu, unsigned long cr0); |
Sean Christopherson | 97b7ead | 2018-12-03 13:53:16 -0800 | [diff] [blame] | 317 | int vmx_set_cr4(struct kvm_vcpu *vcpu, unsigned long cr4); |
| 318 | void set_cr4_guest_host_mask(struct vcpu_vmx *vmx); |
| 319 | void ept_save_pdptrs(struct kvm_vcpu *vcpu); |
| 320 | void vmx_get_segment(struct kvm_vcpu *vcpu, struct kvm_segment *var, int seg); |
| 321 | void vmx_set_segment(struct kvm_vcpu *vcpu, struct kvm_segment *var, int seg); |
Sean Christopherson | 2a40b90 | 2020-07-15 20:41:18 -0700 | [diff] [blame] | 322 | u64 construct_eptp(struct kvm_vcpu *vcpu, unsigned long root_hpa, |
| 323 | int root_level); |
Sean Christopherson | 2ba4493 | 2020-09-23 11:44:48 -0700 | [diff] [blame] | 324 | |
Sean Christopherson | 97b7ead | 2018-12-03 13:53:16 -0800 | [diff] [blame] | 325 | void update_exception_bitmap(struct kvm_vcpu *vcpu); |
| 326 | void vmx_update_msr_bitmap(struct kvm_vcpu *vcpu); |
Sean Christopherson | 1b660b6 | 2020-04-22 19:25:44 -0700 | [diff] [blame] | 327 | bool vmx_nmi_blocked(struct kvm_vcpu *vcpu); |
| 328 | bool vmx_interrupt_blocked(struct kvm_vcpu *vcpu); |
Sean Christopherson | 97b7ead | 2018-12-03 13:53:16 -0800 | [diff] [blame] | 329 | bool vmx_get_nmi_mask(struct kvm_vcpu *vcpu); |
| 330 | void vmx_set_nmi_mask(struct kvm_vcpu *vcpu, bool masked); |
| 331 | void vmx_set_virtual_apic_mode(struct kvm_vcpu *vcpu); |
Sean Christopherson | d85a803 | 2020-09-23 11:04:06 -0700 | [diff] [blame] | 332 | struct vmx_uret_msr *vmx_find_uret_msr(struct vcpu_vmx *vmx, u32 msr); |
Aaron Lewis | 476c9bd | 2020-09-25 16:34:18 +0200 | [diff] [blame^] | 333 | void pt_update_intercept_for_msr(struct kvm_vcpu *vcpu); |
Yi Wang | 4d25996 | 2019-05-20 12:27:47 +0800 | [diff] [blame] | 334 | void vmx_update_host_rsp(struct vcpu_vmx *vmx, unsigned long host_rsp); |
Sean Christopherson | a128a93 | 2020-09-23 11:03:57 -0700 | [diff] [blame] | 335 | int vmx_find_loadstore_msr_slot(struct vmx_msrs *m, u32 msr); |
Peter Shier | 43fea4e | 2020-08-20 16:05:45 -0700 | [diff] [blame] | 336 | void vmx_ept_load_pdptrs(struct kvm_vcpu *vcpu); |
Sean Christopherson | 97b7ead | 2018-12-03 13:53:16 -0800 | [diff] [blame] | 337 | |
Sean Christopherson | 89b0c9f | 2018-12-03 13:53:07 -0800 | [diff] [blame] | 338 | static inline u8 vmx_get_rvi(void) |
| 339 | { |
| 340 | return vmcs_read16(GUEST_INTR_STATUS) & 0xff; |
| 341 | } |
| 342 | |
Sean Christopherson | 70f932e | 2019-05-07 12:17:54 -0700 | [diff] [blame] | 343 | #define BUILD_CONTROLS_SHADOW(lname, uname) \ |
Sean Christopherson | 70f932e | 2019-05-07 12:17:54 -0700 | [diff] [blame] | 344 | static inline void lname##_controls_set(struct vcpu_vmx *vmx, u32 val) \ |
| 345 | { \ |
Sean Christopherson | 09e226c | 2019-05-07 12:17:58 -0700 | [diff] [blame] | 346 | if (vmx->loaded_vmcs->controls_shadow.lname != val) { \ |
| 347 | vmcs_write32(uname, val); \ |
| 348 | vmx->loaded_vmcs->controls_shadow.lname = val; \ |
| 349 | } \ |
Sean Christopherson | 70f932e | 2019-05-07 12:17:54 -0700 | [diff] [blame] | 350 | } \ |
| 351 | static inline u32 lname##_controls_get(struct vcpu_vmx *vmx) \ |
| 352 | { \ |
Sean Christopherson | 09e226c | 2019-05-07 12:17:58 -0700 | [diff] [blame] | 353 | return vmx->loaded_vmcs->controls_shadow.lname; \ |
Sean Christopherson | 70f932e | 2019-05-07 12:17:54 -0700 | [diff] [blame] | 354 | } \ |
| 355 | static inline void lname##_controls_setbit(struct vcpu_vmx *vmx, u32 val) \ |
| 356 | { \ |
| 357 | lname##_controls_set(vmx, lname##_controls_get(vmx) | val); \ |
| 358 | } \ |
| 359 | static inline void lname##_controls_clearbit(struct vcpu_vmx *vmx, u32 val) \ |
| 360 | { \ |
| 361 | lname##_controls_set(vmx, lname##_controls_get(vmx) & ~val); \ |
Sean Christopherson | 89b0c9f | 2018-12-03 13:53:07 -0800 | [diff] [blame] | 362 | } |
Sean Christopherson | 70f932e | 2019-05-07 12:17:54 -0700 | [diff] [blame] | 363 | BUILD_CONTROLS_SHADOW(vm_entry, VM_ENTRY_CONTROLS) |
| 364 | BUILD_CONTROLS_SHADOW(vm_exit, VM_EXIT_CONTROLS) |
Sean Christopherson | c5f2c76 | 2019-05-07 12:17:55 -0700 | [diff] [blame] | 365 | BUILD_CONTROLS_SHADOW(pin, PIN_BASED_VM_EXEC_CONTROL) |
Sean Christopherson | 2183f56 | 2019-05-07 12:17:56 -0700 | [diff] [blame] | 366 | BUILD_CONTROLS_SHADOW(exec, CPU_BASED_VM_EXEC_CONTROL) |
Sean Christopherson | fe7f895d | 2019-05-07 12:17:57 -0700 | [diff] [blame] | 367 | BUILD_CONTROLS_SHADOW(secondary_exec, SECONDARY_VM_EXEC_CONTROL) |
Sean Christopherson | 89b0c9f | 2018-12-03 13:53:07 -0800 | [diff] [blame] | 368 | |
Sean Christopherson | e5d03de | 2020-04-15 13:34:51 -0700 | [diff] [blame] | 369 | static inline void vmx_register_cache_reset(struct kvm_vcpu *vcpu) |
| 370 | { |
| 371 | vcpu->arch.regs_avail = ~((1 << VCPU_REGS_RIP) | (1 << VCPU_REGS_RSP) |
| 372 | | (1 << VCPU_EXREG_RFLAGS) |
| 373 | | (1 << VCPU_EXREG_PDPTR) |
| 374 | | (1 << VCPU_EXREG_SEGMENTS) |
Sean Christopherson | bd31fe4 | 2020-05-01 21:32:31 -0700 | [diff] [blame] | 375 | | (1 << VCPU_EXREG_CR0) |
Sean Christopherson | 5addc23 | 2020-04-15 13:34:53 -0700 | [diff] [blame] | 376 | | (1 << VCPU_EXREG_CR3) |
Sean Christopherson | f98c1e7 | 2020-05-01 21:32:30 -0700 | [diff] [blame] | 377 | | (1 << VCPU_EXREG_CR4) |
Sean Christopherson | 8791585 | 2020-04-15 13:34:54 -0700 | [diff] [blame] | 378 | | (1 << VCPU_EXREG_EXIT_INFO_1) |
| 379 | | (1 << VCPU_EXREG_EXIT_INFO_2)); |
Sean Christopherson | e5d03de | 2020-04-15 13:34:51 -0700 | [diff] [blame] | 380 | vcpu->arch.regs_dirty = 0; |
| 381 | } |
| 382 | |
Sean Christopherson | 8373d25 | 2018-12-03 13:53:08 -0800 | [diff] [blame] | 383 | static inline u32 vmx_vmentry_ctrl(void) |
| 384 | { |
Chao Peng | f99e3da | 2018-10-24 16:05:10 +0800 | [diff] [blame] | 385 | u32 vmentry_ctrl = vmcs_config.vmentry_ctrl; |
Sean Christopherson | 2ef7619 | 2020-03-02 15:56:22 -0800 | [diff] [blame] | 386 | if (vmx_pt_mode_is_system()) |
Yu Zhang | d929359 | 2019-01-31 11:26:39 +0800 | [diff] [blame] | 387 | vmentry_ctrl &= ~(VM_ENTRY_PT_CONCEAL_PIP | |
| 388 | VM_ENTRY_LOAD_IA32_RTIT_CTL); |
Sean Christopherson | 8373d25 | 2018-12-03 13:53:08 -0800 | [diff] [blame] | 389 | /* Loading of EFER and PERF_GLOBAL_CTRL are toggled dynamically */ |
Chao Peng | f99e3da | 2018-10-24 16:05:10 +0800 | [diff] [blame] | 390 | return vmentry_ctrl & |
Sean Christopherson | 8373d25 | 2018-12-03 13:53:08 -0800 | [diff] [blame] | 391 | ~(VM_ENTRY_LOAD_IA32_PERF_GLOBAL_CTRL | VM_ENTRY_LOAD_IA32_EFER); |
| 392 | } |
| 393 | |
| 394 | static inline u32 vmx_vmexit_ctrl(void) |
| 395 | { |
Chao Peng | f99e3da | 2018-10-24 16:05:10 +0800 | [diff] [blame] | 396 | u32 vmexit_ctrl = vmcs_config.vmexit_ctrl; |
Sean Christopherson | 2ef7619 | 2020-03-02 15:56:22 -0800 | [diff] [blame] | 397 | if (vmx_pt_mode_is_system()) |
Yu Zhang | d929359 | 2019-01-31 11:26:39 +0800 | [diff] [blame] | 398 | vmexit_ctrl &= ~(VM_EXIT_PT_CONCEAL_PIP | |
| 399 | VM_EXIT_CLEAR_IA32_RTIT_CTL); |
Sean Christopherson | 8373d25 | 2018-12-03 13:53:08 -0800 | [diff] [blame] | 400 | /* Loading of EFER and PERF_GLOBAL_CTRL are toggled dynamically */ |
Yu Zhang | d929359 | 2019-01-31 11:26:39 +0800 | [diff] [blame] | 401 | return vmexit_ctrl & |
Sean Christopherson | 8373d25 | 2018-12-03 13:53:08 -0800 | [diff] [blame] | 402 | ~(VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL | VM_EXIT_LOAD_IA32_EFER); |
| 403 | } |
| 404 | |
| 405 | u32 vmx_exec_control(struct vcpu_vmx *vmx); |
Sean Christopherson | c075c3e | 2019-05-07 12:17:53 -0700 | [diff] [blame] | 406 | u32 vmx_pin_based_exec_ctrl(struct vcpu_vmx *vmx); |
Sean Christopherson | 8373d25 | 2018-12-03 13:53:08 -0800 | [diff] [blame] | 407 | |
| 408 | static inline struct kvm_vmx *to_kvm_vmx(struct kvm *kvm) |
| 409 | { |
| 410 | return container_of(kvm, struct kvm_vmx, kvm); |
| 411 | } |
| 412 | |
| 413 | static inline struct vcpu_vmx *to_vmx(struct kvm_vcpu *vcpu) |
| 414 | { |
| 415 | return container_of(vcpu, struct vcpu_vmx, vcpu); |
| 416 | } |
| 417 | |
Sean Christopherson | 5addc23 | 2020-04-15 13:34:53 -0700 | [diff] [blame] | 418 | static inline unsigned long vmx_get_exit_qual(struct kvm_vcpu *vcpu) |
| 419 | { |
| 420 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
| 421 | |
| 422 | if (!kvm_register_is_available(vcpu, VCPU_EXREG_EXIT_INFO_1)) { |
| 423 | kvm_register_mark_available(vcpu, VCPU_EXREG_EXIT_INFO_1); |
| 424 | vmx->exit_qualification = vmcs_readl(EXIT_QUALIFICATION); |
| 425 | } |
| 426 | return vmx->exit_qualification; |
| 427 | } |
| 428 | |
Sean Christopherson | 8791585 | 2020-04-15 13:34:54 -0700 | [diff] [blame] | 429 | static inline u32 vmx_get_intr_info(struct kvm_vcpu *vcpu) |
| 430 | { |
| 431 | struct vcpu_vmx *vmx = to_vmx(vcpu); |
| 432 | |
| 433 | if (!kvm_register_is_available(vcpu, VCPU_EXREG_EXIT_INFO_2)) { |
| 434 | kvm_register_mark_available(vcpu, VCPU_EXREG_EXIT_INFO_2); |
| 435 | vmx->exit_intr_info = vmcs_read32(VM_EXIT_INTR_INFO); |
| 436 | } |
| 437 | return vmx->exit_intr_info; |
| 438 | } |
| 439 | |
Ben Gardon | 4183683 | 2019-02-11 11:02:52 -0800 | [diff] [blame] | 440 | struct vmcs *alloc_vmcs_cpu(bool shadow, int cpu, gfp_t flags); |
Sean Christopherson | 89b0c9f | 2018-12-03 13:53:07 -0800 | [diff] [blame] | 441 | void free_vmcs(struct vmcs *vmcs); |
| 442 | int alloc_loaded_vmcs(struct loaded_vmcs *loaded_vmcs); |
| 443 | void free_loaded_vmcs(struct loaded_vmcs *loaded_vmcs); |
Sean Christopherson | 89b0c9f | 2018-12-03 13:53:07 -0800 | [diff] [blame] | 444 | void loaded_vmcs_clear(struct loaded_vmcs *loaded_vmcs); |
| 445 | |
| 446 | static inline struct vmcs *alloc_vmcs(bool shadow) |
| 447 | { |
Ben Gardon | 4183683 | 2019-02-11 11:02:52 -0800 | [diff] [blame] | 448 | return alloc_vmcs_cpu(shadow, raw_smp_processor_id(), |
| 449 | GFP_KERNEL_ACCOUNT); |
Sean Christopherson | 89b0c9f | 2018-12-03 13:53:07 -0800 | [diff] [blame] | 450 | } |
| 451 | |
Sean Christopherson | 89b0c9f | 2018-12-03 13:53:07 -0800 | [diff] [blame] | 452 | static inline void decache_tsc_multiplier(struct vcpu_vmx *vmx) |
| 453 | { |
| 454 | vmx->current_tsc_ratio = vmx->vcpu.arch.tsc_scaling_ratio; |
| 455 | vmcs_write64(TSC_MULTIPLIER, vmx->current_tsc_ratio); |
| 456 | } |
| 457 | |
Tao Xu | 6e3ba4a | 2019-07-16 14:55:50 +0800 | [diff] [blame] | 458 | static inline bool vmx_has_waitpkg(struct vcpu_vmx *vmx) |
| 459 | { |
| 460 | return vmx->secondary_exec_control & |
| 461 | SECONDARY_EXEC_ENABLE_USR_WAIT_PAUSE; |
| 462 | } |
| 463 | |
Paolo Bonzini | a0c1343 | 2020-07-10 17:48:08 +0200 | [diff] [blame] | 464 | static inline bool vmx_need_pf_intercept(struct kvm_vcpu *vcpu) |
| 465 | { |
Mohammed Gamal | 1dbf5d68 | 2020-07-10 17:48:09 +0200 | [diff] [blame] | 466 | return !enable_ept || cpuid_maxphyaddr(vcpu) < boot_cpu_data.x86_phys_bits; |
Paolo Bonzini | a0c1343 | 2020-07-10 17:48:08 +0200 | [diff] [blame] | 467 | } |
| 468 | |
Krish Sadhukhan | bddd82d | 2020-09-21 08:10:25 +0000 | [diff] [blame] | 469 | static inline bool is_unrestricted_guest(struct kvm_vcpu *vcpu) |
| 470 | { |
| 471 | return enable_unrestricted_guest && (!is_guest_mode(vcpu) || |
| 472 | (secondary_exec_controls_get(to_vmx(vcpu)) & |
| 473 | SECONDARY_EXEC_UNRESTRICTED_GUEST)); |
| 474 | } |
| 475 | |
Sean Christopherson | 2ba4493 | 2020-09-23 11:44:48 -0700 | [diff] [blame] | 476 | bool __vmx_guest_state_valid(struct kvm_vcpu *vcpu); |
| 477 | static inline bool vmx_guest_state_valid(struct kvm_vcpu *vcpu) |
| 478 | { |
| 479 | return is_unrestricted_guest(vcpu) || __vmx_guest_state_valid(vcpu); |
| 480 | } |
| 481 | |
Paolo Bonzini | 6909081 | 2019-04-15 15:16:17 +0200 | [diff] [blame] | 482 | void dump_vmcs(void); |
| 483 | |
Sean Christopherson | 8373d25 | 2018-12-03 13:53:08 -0800 | [diff] [blame] | 484 | #endif /* __KVM_X86_VMX_H */ |