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