]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - arch/x86/kvm/vmx.c
KVM: x86: emulating descriptor load misses long-mode case
[mirror_ubuntu-artful-kernel.git] / arch / x86 / kvm / vmx.c
CommitLineData
6aa8b732
AK
1/*
2 * Kernel-based Virtual Machine driver for Linux
3 *
4 * This module enables machines with Intel VT-x extensions to run virtual
5 * machines without emulation or binary translation.
6 *
7 * Copyright (C) 2006 Qumranet, Inc.
9611c187 8 * Copyright 2010 Red Hat, Inc. and/or its affiliates.
6aa8b732
AK
9 *
10 * Authors:
11 * Avi Kivity <avi@qumranet.com>
12 * Yaniv Kamay <yaniv@qumranet.com>
13 *
14 * This work is licensed under the terms of the GNU GPL, version 2. See
15 * the COPYING file in the top-level directory.
16 *
17 */
18
85f455f7 19#include "irq.h"
1d737c8a 20#include "mmu.h"
00b27a3e 21#include "cpuid.h"
e495606d 22
edf88417 23#include <linux/kvm_host.h>
6aa8b732 24#include <linux/module.h>
9d8f549d 25#include <linux/kernel.h>
6aa8b732
AK
26#include <linux/mm.h>
27#include <linux/highmem.h>
e8edc6e0 28#include <linux/sched.h>
c7addb90 29#include <linux/moduleparam.h>
e9bda3b3 30#include <linux/mod_devicetable.h>
229456fc 31#include <linux/ftrace_event.h>
5a0e3ad6 32#include <linux/slab.h>
cafd6659 33#include <linux/tboot.h>
f4124500 34#include <linux/hrtimer.h>
5fdbf976 35#include "kvm_cache_regs.h"
35920a35 36#include "x86.h"
e495606d 37
6aa8b732 38#include <asm/io.h>
3b3be0d1 39#include <asm/desc.h>
13673a90 40#include <asm/vmx.h>
6210e37b 41#include <asm/virtext.h>
a0861c02 42#include <asm/mce.h>
2acf923e
DC
43#include <asm/i387.h>
44#include <asm/xcr.h>
d7cd9796 45#include <asm/perf_event.h>
81908bf4 46#include <asm/debugreg.h>
8f536b76 47#include <asm/kexec.h>
6aa8b732 48
229456fc
MT
49#include "trace.h"
50
4ecac3fd 51#define __ex(x) __kvm_handle_fault_on_reboot(x)
5e520e62
AK
52#define __ex_clear(x, reg) \
53 ____kvm_handle_fault_on_reboot(x, "xor " reg " , " reg)
4ecac3fd 54
6aa8b732
AK
55MODULE_AUTHOR("Qumranet");
56MODULE_LICENSE("GPL");
57
e9bda3b3
JT
58static const struct x86_cpu_id vmx_cpu_id[] = {
59 X86_FEATURE_MATCH(X86_FEATURE_VMX),
60 {}
61};
62MODULE_DEVICE_TABLE(x86cpu, vmx_cpu_id);
63
476bc001 64static bool __read_mostly enable_vpid = 1;
736caefe 65module_param_named(vpid, enable_vpid, bool, 0444);
2384d2b3 66
476bc001 67static bool __read_mostly flexpriority_enabled = 1;
736caefe 68module_param_named(flexpriority, flexpriority_enabled, bool, S_IRUGO);
4c9fc8ef 69
476bc001 70static bool __read_mostly enable_ept = 1;
736caefe 71module_param_named(ept, enable_ept, bool, S_IRUGO);
d56f546d 72
476bc001 73static bool __read_mostly enable_unrestricted_guest = 1;
3a624e29
NK
74module_param_named(unrestricted_guest,
75 enable_unrestricted_guest, bool, S_IRUGO);
76
83c3a331
XH
77static bool __read_mostly enable_ept_ad_bits = 1;
78module_param_named(eptad, enable_ept_ad_bits, bool, S_IRUGO);
79
a27685c3 80static bool __read_mostly emulate_invalid_guest_state = true;
c1f8bc04 81module_param(emulate_invalid_guest_state, bool, S_IRUGO);
04fa4d32 82
476bc001 83static bool __read_mostly vmm_exclusive = 1;
b923e62e
DX
84module_param(vmm_exclusive, bool, S_IRUGO);
85
476bc001 86static bool __read_mostly fasteoi = 1;
58fbbf26
KT
87module_param(fasteoi, bool, S_IRUGO);
88
5a71785d 89static bool __read_mostly enable_apicv = 1;
01e439be 90module_param(enable_apicv, bool, S_IRUGO);
83d4c286 91
abc4fc58
AG
92static bool __read_mostly enable_shadow_vmcs = 1;
93module_param_named(enable_shadow_vmcs, enable_shadow_vmcs, bool, S_IRUGO);
801d3424
NHE
94/*
95 * If nested=1, nested virtualization is supported, i.e., guests may use
96 * VMX and be a hypervisor for its own guests. If nested=0, guests may not
97 * use VMX instructions.
98 */
476bc001 99static bool __read_mostly nested = 0;
801d3424
NHE
100module_param(nested, bool, S_IRUGO);
101
5037878e
GN
102#define KVM_GUEST_CR0_MASK (X86_CR0_NW | X86_CR0_CD)
103#define KVM_VM_CR0_ALWAYS_ON_UNRESTRICTED_GUEST (X86_CR0_WP | X86_CR0_NE)
cdc0e244
AK
104#define KVM_VM_CR0_ALWAYS_ON \
105 (KVM_VM_CR0_ALWAYS_ON_UNRESTRICTED_GUEST | X86_CR0_PG | X86_CR0_PE)
4c38609a
AK
106#define KVM_CR4_GUEST_OWNED_BITS \
107 (X86_CR4_PVI | X86_CR4_DE | X86_CR4_PCE | X86_CR4_OSFXSR \
108 | X86_CR4_OSXMMEXCPT)
109
cdc0e244
AK
110#define KVM_PMODE_VM_CR4_ALWAYS_ON (X86_CR4_PAE | X86_CR4_VMXE)
111#define KVM_RMODE_VM_CR4_ALWAYS_ON (X86_CR4_VME | X86_CR4_PAE | X86_CR4_VMXE)
112
78ac8b47
AK
113#define RMODE_GUEST_OWNED_EFLAGS_BITS (~(X86_EFLAGS_IOPL | X86_EFLAGS_VM))
114
f4124500
JK
115#define VMX_MISC_EMULATED_PREEMPTION_TIMER_RATE 5
116
4b8d54f9
ZE
117/*
118 * These 2 parameters are used to config the controls for Pause-Loop Exiting:
119 * ple_gap: upper bound on the amount of time between two successive
120 * executions of PAUSE in a loop. Also indicate if ple enabled.
00c25bce 121 * According to test, this time is usually smaller than 128 cycles.
4b8d54f9
ZE
122 * ple_window: upper bound on the amount of time a guest is allowed to execute
123 * in a PAUSE loop. Tests indicate that most spinlocks are held for
124 * less than 2^12 cycles
125 * Time is measured based on a counter that runs at the same rate as the TSC,
126 * refer SDM volume 3b section 21.6.13 & 22.1.3.
127 */
b4a2d31d
RK
128#define KVM_VMX_DEFAULT_PLE_GAP 128
129#define KVM_VMX_DEFAULT_PLE_WINDOW 4096
130#define KVM_VMX_DEFAULT_PLE_WINDOW_GROW 2
131#define KVM_VMX_DEFAULT_PLE_WINDOW_SHRINK 0
132#define KVM_VMX_DEFAULT_PLE_WINDOW_MAX \
133 INT_MAX / KVM_VMX_DEFAULT_PLE_WINDOW_GROW
134
4b8d54f9
ZE
135static int ple_gap = KVM_VMX_DEFAULT_PLE_GAP;
136module_param(ple_gap, int, S_IRUGO);
137
138static int ple_window = KVM_VMX_DEFAULT_PLE_WINDOW;
139module_param(ple_window, int, S_IRUGO);
140
b4a2d31d
RK
141/* Default doubles per-vcpu window every exit. */
142static int ple_window_grow = KVM_VMX_DEFAULT_PLE_WINDOW_GROW;
143module_param(ple_window_grow, int, S_IRUGO);
144
145/* Default resets per-vcpu window every exit to ple_window. */
146static int ple_window_shrink = KVM_VMX_DEFAULT_PLE_WINDOW_SHRINK;
147module_param(ple_window_shrink, int, S_IRUGO);
148
149/* Default is to compute the maximum so we can never overflow. */
150static int ple_window_actual_max = KVM_VMX_DEFAULT_PLE_WINDOW_MAX;
151static int ple_window_max = KVM_VMX_DEFAULT_PLE_WINDOW_MAX;
152module_param(ple_window_max, int, S_IRUGO);
153
83287ea4
AK
154extern const ulong vmx_return;
155
8bf00a52 156#define NR_AUTOLOAD_MSRS 8
ff2f6fe9 157#define VMCS02_POOL_SIZE 1
61d2ef2c 158
a2fa3e9f
GH
159struct vmcs {
160 u32 revision_id;
161 u32 abort;
162 char data[0];
163};
164
d462b819
NHE
165/*
166 * Track a VMCS that may be loaded on a certain CPU. If it is (cpu!=-1), also
167 * remember whether it was VMLAUNCHed, and maintain a linked list of all VMCSs
168 * loaded on this CPU (so we can clear them if the CPU goes down).
169 */
170struct loaded_vmcs {
171 struct vmcs *vmcs;
172 int cpu;
173 int launched;
174 struct list_head loaded_vmcss_on_cpu_link;
175};
176
26bb0981
AK
177struct shared_msr_entry {
178 unsigned index;
179 u64 data;
d5696725 180 u64 mask;
26bb0981
AK
181};
182
a9d30f33
NHE
183/*
184 * struct vmcs12 describes the state that our guest hypervisor (L1) keeps for a
185 * single nested guest (L2), hence the name vmcs12. Any VMX implementation has
186 * a VMCS structure, and vmcs12 is our emulated VMX's VMCS. This structure is
187 * stored in guest memory specified by VMPTRLD, but is opaque to the guest,
188 * which must access it using VMREAD/VMWRITE/VMCLEAR instructions.
189 * More than one of these structures may exist, if L1 runs multiple L2 guests.
190 * nested_vmx_run() will use the data here to build a vmcs02: a VMCS for the
191 * underlying hardware which will be used to run L2.
192 * This structure is packed to ensure that its layout is identical across
193 * machines (necessary for live migration).
194 * If there are changes in this struct, VMCS12_REVISION must be changed.
195 */
22bd0358 196typedef u64 natural_width;
a9d30f33
NHE
197struct __packed vmcs12 {
198 /* According to the Intel spec, a VMCS region must start with the
199 * following two fields. Then follow implementation-specific data.
200 */
201 u32 revision_id;
202 u32 abort;
22bd0358 203
27d6c865
NHE
204 u32 launch_state; /* set to 0 by VMCLEAR, to 1 by VMLAUNCH */
205 u32 padding[7]; /* room for future expansion */
206
22bd0358
NHE
207 u64 io_bitmap_a;
208 u64 io_bitmap_b;
209 u64 msr_bitmap;
210 u64 vm_exit_msr_store_addr;
211 u64 vm_exit_msr_load_addr;
212 u64 vm_entry_msr_load_addr;
213 u64 tsc_offset;
214 u64 virtual_apic_page_addr;
215 u64 apic_access_addr;
216 u64 ept_pointer;
217 u64 guest_physical_address;
218 u64 vmcs_link_pointer;
219 u64 guest_ia32_debugctl;
220 u64 guest_ia32_pat;
221 u64 guest_ia32_efer;
222 u64 guest_ia32_perf_global_ctrl;
223 u64 guest_pdptr0;
224 u64 guest_pdptr1;
225 u64 guest_pdptr2;
226 u64 guest_pdptr3;
36be0b9d 227 u64 guest_bndcfgs;
22bd0358
NHE
228 u64 host_ia32_pat;
229 u64 host_ia32_efer;
230 u64 host_ia32_perf_global_ctrl;
231 u64 padding64[8]; /* room for future expansion */
232 /*
233 * To allow migration of L1 (complete with its L2 guests) between
234 * machines of different natural widths (32 or 64 bit), we cannot have
235 * unsigned long fields with no explict size. We use u64 (aliased
236 * natural_width) instead. Luckily, x86 is little-endian.
237 */
238 natural_width cr0_guest_host_mask;
239 natural_width cr4_guest_host_mask;
240 natural_width cr0_read_shadow;
241 natural_width cr4_read_shadow;
242 natural_width cr3_target_value0;
243 natural_width cr3_target_value1;
244 natural_width cr3_target_value2;
245 natural_width cr3_target_value3;
246 natural_width exit_qualification;
247 natural_width guest_linear_address;
248 natural_width guest_cr0;
249 natural_width guest_cr3;
250 natural_width guest_cr4;
251 natural_width guest_es_base;
252 natural_width guest_cs_base;
253 natural_width guest_ss_base;
254 natural_width guest_ds_base;
255 natural_width guest_fs_base;
256 natural_width guest_gs_base;
257 natural_width guest_ldtr_base;
258 natural_width guest_tr_base;
259 natural_width guest_gdtr_base;
260 natural_width guest_idtr_base;
261 natural_width guest_dr7;
262 natural_width guest_rsp;
263 natural_width guest_rip;
264 natural_width guest_rflags;
265 natural_width guest_pending_dbg_exceptions;
266 natural_width guest_sysenter_esp;
267 natural_width guest_sysenter_eip;
268 natural_width host_cr0;
269 natural_width host_cr3;
270 natural_width host_cr4;
271 natural_width host_fs_base;
272 natural_width host_gs_base;
273 natural_width host_tr_base;
274 natural_width host_gdtr_base;
275 natural_width host_idtr_base;
276 natural_width host_ia32_sysenter_esp;
277 natural_width host_ia32_sysenter_eip;
278 natural_width host_rsp;
279 natural_width host_rip;
280 natural_width paddingl[8]; /* room for future expansion */
281 u32 pin_based_vm_exec_control;
282 u32 cpu_based_vm_exec_control;
283 u32 exception_bitmap;
284 u32 page_fault_error_code_mask;
285 u32 page_fault_error_code_match;
286 u32 cr3_target_count;
287 u32 vm_exit_controls;
288 u32 vm_exit_msr_store_count;
289 u32 vm_exit_msr_load_count;
290 u32 vm_entry_controls;
291 u32 vm_entry_msr_load_count;
292 u32 vm_entry_intr_info_field;
293 u32 vm_entry_exception_error_code;
294 u32 vm_entry_instruction_len;
295 u32 tpr_threshold;
296 u32 secondary_vm_exec_control;
297 u32 vm_instruction_error;
298 u32 vm_exit_reason;
299 u32 vm_exit_intr_info;
300 u32 vm_exit_intr_error_code;
301 u32 idt_vectoring_info_field;
302 u32 idt_vectoring_error_code;
303 u32 vm_exit_instruction_len;
304 u32 vmx_instruction_info;
305 u32 guest_es_limit;
306 u32 guest_cs_limit;
307 u32 guest_ss_limit;
308 u32 guest_ds_limit;
309 u32 guest_fs_limit;
310 u32 guest_gs_limit;
311 u32 guest_ldtr_limit;
312 u32 guest_tr_limit;
313 u32 guest_gdtr_limit;
314 u32 guest_idtr_limit;
315 u32 guest_es_ar_bytes;
316 u32 guest_cs_ar_bytes;
317 u32 guest_ss_ar_bytes;
318 u32 guest_ds_ar_bytes;
319 u32 guest_fs_ar_bytes;
320 u32 guest_gs_ar_bytes;
321 u32 guest_ldtr_ar_bytes;
322 u32 guest_tr_ar_bytes;
323 u32 guest_interruptibility_info;
324 u32 guest_activity_state;
325 u32 guest_sysenter_cs;
326 u32 host_ia32_sysenter_cs;
0238ea91
JK
327 u32 vmx_preemption_timer_value;
328 u32 padding32[7]; /* room for future expansion */
22bd0358
NHE
329 u16 virtual_processor_id;
330 u16 guest_es_selector;
331 u16 guest_cs_selector;
332 u16 guest_ss_selector;
333 u16 guest_ds_selector;
334 u16 guest_fs_selector;
335 u16 guest_gs_selector;
336 u16 guest_ldtr_selector;
337 u16 guest_tr_selector;
338 u16 host_es_selector;
339 u16 host_cs_selector;
340 u16 host_ss_selector;
341 u16 host_ds_selector;
342 u16 host_fs_selector;
343 u16 host_gs_selector;
344 u16 host_tr_selector;
a9d30f33
NHE
345};
346
347/*
348 * VMCS12_REVISION is an arbitrary id that should be changed if the content or
349 * layout of struct vmcs12 is changed. MSR_IA32_VMX_BASIC returns this id, and
350 * VMPTRLD verifies that the VMCS region that L1 is loading contains this id.
351 */
352#define VMCS12_REVISION 0x11e57ed0
353
354/*
355 * VMCS12_SIZE is the number of bytes L1 should allocate for the VMXON region
356 * and any VMCS region. Although only sizeof(struct vmcs12) are used by the
357 * current implementation, 4K are reserved to avoid future complications.
358 */
359#define VMCS12_SIZE 0x1000
360
ff2f6fe9
NHE
361/* Used to remember the last vmcs02 used for some recently used vmcs12s */
362struct vmcs02_list {
363 struct list_head list;
364 gpa_t vmptr;
365 struct loaded_vmcs vmcs02;
366};
367
ec378aee
NHE
368/*
369 * The nested_vmx structure is part of vcpu_vmx, and holds information we need
370 * for correct emulation of VMX (i.e., nested VMX) on this vcpu.
371 */
372struct nested_vmx {
373 /* Has the level1 guest done vmxon? */
374 bool vmxon;
3573e22c 375 gpa_t vmxon_ptr;
a9d30f33
NHE
376
377 /* The guest-physical address of the current VMCS L1 keeps for L2 */
378 gpa_t current_vmptr;
379 /* The host-usable pointer to the above */
380 struct page *current_vmcs12_page;
381 struct vmcs12 *current_vmcs12;
8de48833 382 struct vmcs *current_shadow_vmcs;
012f83cb
AG
383 /*
384 * Indicates if the shadow vmcs must be updated with the
385 * data hold by vmcs12
386 */
387 bool sync_shadow_vmcs;
ff2f6fe9
NHE
388
389 /* vmcs02_list cache of VMCSs recently used to run L2 guests */
390 struct list_head vmcs02_pool;
391 int vmcs02_num;
fe3ef05c 392 u64 vmcs01_tsc_offset;
644d711a
NHE
393 /* L2 must run next, and mustn't decide to exit to L1. */
394 bool nested_run_pending;
fe3ef05c
NHE
395 /*
396 * Guest pages referred to in vmcs02 with host-physical pointers, so
397 * we must keep them pinned while L2 runs.
398 */
399 struct page *apic_access_page;
a7c0b07d 400 struct page *virtual_apic_page;
b3897a49 401 u64 msr_ia32_feature_control;
f4124500
JK
402
403 struct hrtimer preemption_timer;
404 bool preemption_timer_expired;
2996fca0
JK
405
406 /* to migrate it to L2 if VM_ENTRY_LOAD_DEBUG_CONTROLS is off */
407 u64 vmcs01_debugctl;
ec378aee
NHE
408};
409
01e439be
YZ
410#define POSTED_INTR_ON 0
411/* Posted-Interrupt Descriptor */
412struct pi_desc {
413 u32 pir[8]; /* Posted interrupt requested */
414 u32 control; /* bit 0 of control is outstanding notification bit */
415 u32 rsvd[7];
416} __aligned(64);
417
a20ed54d
YZ
418static bool pi_test_and_set_on(struct pi_desc *pi_desc)
419{
420 return test_and_set_bit(POSTED_INTR_ON,
421 (unsigned long *)&pi_desc->control);
422}
423
424static bool pi_test_and_clear_on(struct pi_desc *pi_desc)
425{
426 return test_and_clear_bit(POSTED_INTR_ON,
427 (unsigned long *)&pi_desc->control);
428}
429
430static int pi_test_and_set_pir(int vector, struct pi_desc *pi_desc)
431{
432 return test_and_set_bit(vector, (unsigned long *)pi_desc->pir);
433}
434
a2fa3e9f 435struct vcpu_vmx {
fb3f0f51 436 struct kvm_vcpu vcpu;
313dbd49 437 unsigned long host_rsp;
29bd8a78 438 u8 fail;
9d58b931 439 bool nmi_known_unmasked;
51aa01d1 440 u32 exit_intr_info;
1155f76a 441 u32 idt_vectoring_info;
6de12732 442 ulong rflags;
26bb0981 443 struct shared_msr_entry *guest_msrs;
a2fa3e9f
GH
444 int nmsrs;
445 int save_nmsrs;
a547c6db 446 unsigned long host_idt_base;
a2fa3e9f 447#ifdef CONFIG_X86_64
44ea2b17
AK
448 u64 msr_host_kernel_gs_base;
449 u64 msr_guest_kernel_gs_base;
a2fa3e9f 450#endif
2961e876
GN
451 u32 vm_entry_controls_shadow;
452 u32 vm_exit_controls_shadow;
d462b819
NHE
453 /*
454 * loaded_vmcs points to the VMCS currently used in this vcpu. For a
455 * non-nested (L1) guest, it always points to vmcs01. For a nested
456 * guest (L2), it points to a different VMCS.
457 */
458 struct loaded_vmcs vmcs01;
459 struct loaded_vmcs *loaded_vmcs;
460 bool __launched; /* temporary, used in vmx_vcpu_run */
61d2ef2c
AK
461 struct msr_autoload {
462 unsigned nr;
463 struct vmx_msr_entry guest[NR_AUTOLOAD_MSRS];
464 struct vmx_msr_entry host[NR_AUTOLOAD_MSRS];
465 } msr_autoload;
a2fa3e9f
GH
466 struct {
467 int loaded;
468 u16 fs_sel, gs_sel, ldt_sel;
b2da15ac
AK
469#ifdef CONFIG_X86_64
470 u16 ds_sel, es_sel;
471#endif
152d3f2f
LV
472 int gs_ldt_reload_needed;
473 int fs_reload_needed;
da8999d3 474 u64 msr_host_bndcfgs;
d77c26fc 475 } host_state;
9c8cba37 476 struct {
7ffd92c5 477 int vm86_active;
78ac8b47 478 ulong save_rflags;
f5f7b2fe
AK
479 struct kvm_segment segs[8];
480 } rmode;
481 struct {
482 u32 bitmask; /* 4 bits per segment (1 bit per field) */
7ffd92c5
AK
483 struct kvm_save_segment {
484 u16 selector;
485 unsigned long base;
486 u32 limit;
487 u32 ar;
f5f7b2fe 488 } seg[8];
2fb92db1 489 } segment_cache;
2384d2b3 490 int vpid;
04fa4d32 491 bool emulation_required;
3b86cd99
JK
492
493 /* Support for vnmi-less CPUs */
494 int soft_vnmi_blocked;
495 ktime_t entry_time;
496 s64 vnmi_blocked_time;
a0861c02 497 u32 exit_reason;
4e47c7a6
SY
498
499 bool rdtscp_enabled;
ec378aee 500
01e439be
YZ
501 /* Posted interrupt descriptor */
502 struct pi_desc pi_desc;
503
ec378aee
NHE
504 /* Support for a guest hypervisor (nested VMX) */
505 struct nested_vmx nested;
a7653ecd
RK
506
507 /* Dynamic PLE window. */
508 int ple_window;
509 bool ple_window_dirty;
a2fa3e9f
GH
510};
511
2fb92db1
AK
512enum segment_cache_field {
513 SEG_FIELD_SEL = 0,
514 SEG_FIELD_BASE = 1,
515 SEG_FIELD_LIMIT = 2,
516 SEG_FIELD_AR = 3,
517
518 SEG_FIELD_NR = 4
519};
520
a2fa3e9f
GH
521static inline struct vcpu_vmx *to_vmx(struct kvm_vcpu *vcpu)
522{
fb3f0f51 523 return container_of(vcpu, struct vcpu_vmx, vcpu);
a2fa3e9f
GH
524}
525
22bd0358
NHE
526#define VMCS12_OFFSET(x) offsetof(struct vmcs12, x)
527#define FIELD(number, name) [number] = VMCS12_OFFSET(name)
528#define FIELD64(number, name) [number] = VMCS12_OFFSET(name), \
529 [number##_HIGH] = VMCS12_OFFSET(name)+4
530
4607c2d7 531
fe2b201b 532static unsigned long shadow_read_only_fields[] = {
4607c2d7
AG
533 /*
534 * We do NOT shadow fields that are modified when L0
535 * traps and emulates any vmx instruction (e.g. VMPTRLD,
536 * VMXON...) executed by L1.
537 * For example, VM_INSTRUCTION_ERROR is read
538 * by L1 if a vmx instruction fails (part of the error path).
539 * Note the code assumes this logic. If for some reason
540 * we start shadowing these fields then we need to
541 * force a shadow sync when L0 emulates vmx instructions
542 * (e.g. force a sync if VM_INSTRUCTION_ERROR is modified
543 * by nested_vmx_failValid)
544 */
545 VM_EXIT_REASON,
546 VM_EXIT_INTR_INFO,
547 VM_EXIT_INSTRUCTION_LEN,
548 IDT_VECTORING_INFO_FIELD,
549 IDT_VECTORING_ERROR_CODE,
550 VM_EXIT_INTR_ERROR_CODE,
551 EXIT_QUALIFICATION,
552 GUEST_LINEAR_ADDRESS,
553 GUEST_PHYSICAL_ADDRESS
554};
fe2b201b 555static int max_shadow_read_only_fields =
4607c2d7
AG
556 ARRAY_SIZE(shadow_read_only_fields);
557
fe2b201b 558static unsigned long shadow_read_write_fields[] = {
a7c0b07d 559 TPR_THRESHOLD,
4607c2d7
AG
560 GUEST_RIP,
561 GUEST_RSP,
562 GUEST_CR0,
563 GUEST_CR3,
564 GUEST_CR4,
565 GUEST_INTERRUPTIBILITY_INFO,
566 GUEST_RFLAGS,
567 GUEST_CS_SELECTOR,
568 GUEST_CS_AR_BYTES,
569 GUEST_CS_LIMIT,
570 GUEST_CS_BASE,
571 GUEST_ES_BASE,
36be0b9d 572 GUEST_BNDCFGS,
4607c2d7
AG
573 CR0_GUEST_HOST_MASK,
574 CR0_READ_SHADOW,
575 CR4_READ_SHADOW,
576 TSC_OFFSET,
577 EXCEPTION_BITMAP,
578 CPU_BASED_VM_EXEC_CONTROL,
579 VM_ENTRY_EXCEPTION_ERROR_CODE,
580 VM_ENTRY_INTR_INFO_FIELD,
581 VM_ENTRY_INSTRUCTION_LEN,
582 VM_ENTRY_EXCEPTION_ERROR_CODE,
583 HOST_FS_BASE,
584 HOST_GS_BASE,
585 HOST_FS_SELECTOR,
586 HOST_GS_SELECTOR
587};
fe2b201b 588static int max_shadow_read_write_fields =
4607c2d7
AG
589 ARRAY_SIZE(shadow_read_write_fields);
590
772e0318 591static const unsigned short vmcs_field_to_offset_table[] = {
22bd0358
NHE
592 FIELD(VIRTUAL_PROCESSOR_ID, virtual_processor_id),
593 FIELD(GUEST_ES_SELECTOR, guest_es_selector),
594 FIELD(GUEST_CS_SELECTOR, guest_cs_selector),
595 FIELD(GUEST_SS_SELECTOR, guest_ss_selector),
596 FIELD(GUEST_DS_SELECTOR, guest_ds_selector),
597 FIELD(GUEST_FS_SELECTOR, guest_fs_selector),
598 FIELD(GUEST_GS_SELECTOR, guest_gs_selector),
599 FIELD(GUEST_LDTR_SELECTOR, guest_ldtr_selector),
600 FIELD(GUEST_TR_SELECTOR, guest_tr_selector),
601 FIELD(HOST_ES_SELECTOR, host_es_selector),
602 FIELD(HOST_CS_SELECTOR, host_cs_selector),
603 FIELD(HOST_SS_SELECTOR, host_ss_selector),
604 FIELD(HOST_DS_SELECTOR, host_ds_selector),
605 FIELD(HOST_FS_SELECTOR, host_fs_selector),
606 FIELD(HOST_GS_SELECTOR, host_gs_selector),
607 FIELD(HOST_TR_SELECTOR, host_tr_selector),
608 FIELD64(IO_BITMAP_A, io_bitmap_a),
609 FIELD64(IO_BITMAP_B, io_bitmap_b),
610 FIELD64(MSR_BITMAP, msr_bitmap),
611 FIELD64(VM_EXIT_MSR_STORE_ADDR, vm_exit_msr_store_addr),
612 FIELD64(VM_EXIT_MSR_LOAD_ADDR, vm_exit_msr_load_addr),
613 FIELD64(VM_ENTRY_MSR_LOAD_ADDR, vm_entry_msr_load_addr),
614 FIELD64(TSC_OFFSET, tsc_offset),
615 FIELD64(VIRTUAL_APIC_PAGE_ADDR, virtual_apic_page_addr),
616 FIELD64(APIC_ACCESS_ADDR, apic_access_addr),
617 FIELD64(EPT_POINTER, ept_pointer),
618 FIELD64(GUEST_PHYSICAL_ADDRESS, guest_physical_address),
619 FIELD64(VMCS_LINK_POINTER, vmcs_link_pointer),
620 FIELD64(GUEST_IA32_DEBUGCTL, guest_ia32_debugctl),
621 FIELD64(GUEST_IA32_PAT, guest_ia32_pat),
622 FIELD64(GUEST_IA32_EFER, guest_ia32_efer),
623 FIELD64(GUEST_IA32_PERF_GLOBAL_CTRL, guest_ia32_perf_global_ctrl),
624 FIELD64(GUEST_PDPTR0, guest_pdptr0),
625 FIELD64(GUEST_PDPTR1, guest_pdptr1),
626 FIELD64(GUEST_PDPTR2, guest_pdptr2),
627 FIELD64(GUEST_PDPTR3, guest_pdptr3),
36be0b9d 628 FIELD64(GUEST_BNDCFGS, guest_bndcfgs),
22bd0358
NHE
629 FIELD64(HOST_IA32_PAT, host_ia32_pat),
630 FIELD64(HOST_IA32_EFER, host_ia32_efer),
631 FIELD64(HOST_IA32_PERF_GLOBAL_CTRL, host_ia32_perf_global_ctrl),
632 FIELD(PIN_BASED_VM_EXEC_CONTROL, pin_based_vm_exec_control),
633 FIELD(CPU_BASED_VM_EXEC_CONTROL, cpu_based_vm_exec_control),
634 FIELD(EXCEPTION_BITMAP, exception_bitmap),
635 FIELD(PAGE_FAULT_ERROR_CODE_MASK, page_fault_error_code_mask),
636 FIELD(PAGE_FAULT_ERROR_CODE_MATCH, page_fault_error_code_match),
637 FIELD(CR3_TARGET_COUNT, cr3_target_count),
638 FIELD(VM_EXIT_CONTROLS, vm_exit_controls),
639 FIELD(VM_EXIT_MSR_STORE_COUNT, vm_exit_msr_store_count),
640 FIELD(VM_EXIT_MSR_LOAD_COUNT, vm_exit_msr_load_count),
641 FIELD(VM_ENTRY_CONTROLS, vm_entry_controls),
642 FIELD(VM_ENTRY_MSR_LOAD_COUNT, vm_entry_msr_load_count),
643 FIELD(VM_ENTRY_INTR_INFO_FIELD, vm_entry_intr_info_field),
644 FIELD(VM_ENTRY_EXCEPTION_ERROR_CODE, vm_entry_exception_error_code),
645 FIELD(VM_ENTRY_INSTRUCTION_LEN, vm_entry_instruction_len),
646 FIELD(TPR_THRESHOLD, tpr_threshold),
647 FIELD(SECONDARY_VM_EXEC_CONTROL, secondary_vm_exec_control),
648 FIELD(VM_INSTRUCTION_ERROR, vm_instruction_error),
649 FIELD(VM_EXIT_REASON, vm_exit_reason),
650 FIELD(VM_EXIT_INTR_INFO, vm_exit_intr_info),
651 FIELD(VM_EXIT_INTR_ERROR_CODE, vm_exit_intr_error_code),
652 FIELD(IDT_VECTORING_INFO_FIELD, idt_vectoring_info_field),
653 FIELD(IDT_VECTORING_ERROR_CODE, idt_vectoring_error_code),
654 FIELD(VM_EXIT_INSTRUCTION_LEN, vm_exit_instruction_len),
655 FIELD(VMX_INSTRUCTION_INFO, vmx_instruction_info),
656 FIELD(GUEST_ES_LIMIT, guest_es_limit),
657 FIELD(GUEST_CS_LIMIT, guest_cs_limit),
658 FIELD(GUEST_SS_LIMIT, guest_ss_limit),
659 FIELD(GUEST_DS_LIMIT, guest_ds_limit),
660 FIELD(GUEST_FS_LIMIT, guest_fs_limit),
661 FIELD(GUEST_GS_LIMIT, guest_gs_limit),
662 FIELD(GUEST_LDTR_LIMIT, guest_ldtr_limit),
663 FIELD(GUEST_TR_LIMIT, guest_tr_limit),
664 FIELD(GUEST_GDTR_LIMIT, guest_gdtr_limit),
665 FIELD(GUEST_IDTR_LIMIT, guest_idtr_limit),
666 FIELD(GUEST_ES_AR_BYTES, guest_es_ar_bytes),
667 FIELD(GUEST_CS_AR_BYTES, guest_cs_ar_bytes),
668 FIELD(GUEST_SS_AR_BYTES, guest_ss_ar_bytes),
669 FIELD(GUEST_DS_AR_BYTES, guest_ds_ar_bytes),
670 FIELD(GUEST_FS_AR_BYTES, guest_fs_ar_bytes),
671 FIELD(GUEST_GS_AR_BYTES, guest_gs_ar_bytes),
672 FIELD(GUEST_LDTR_AR_BYTES, guest_ldtr_ar_bytes),
673 FIELD(GUEST_TR_AR_BYTES, guest_tr_ar_bytes),
674 FIELD(GUEST_INTERRUPTIBILITY_INFO, guest_interruptibility_info),
675 FIELD(GUEST_ACTIVITY_STATE, guest_activity_state),
676 FIELD(GUEST_SYSENTER_CS, guest_sysenter_cs),
677 FIELD(HOST_IA32_SYSENTER_CS, host_ia32_sysenter_cs),
0238ea91 678 FIELD(VMX_PREEMPTION_TIMER_VALUE, vmx_preemption_timer_value),
22bd0358
NHE
679 FIELD(CR0_GUEST_HOST_MASK, cr0_guest_host_mask),
680 FIELD(CR4_GUEST_HOST_MASK, cr4_guest_host_mask),
681 FIELD(CR0_READ_SHADOW, cr0_read_shadow),
682 FIELD(CR4_READ_SHADOW, cr4_read_shadow),
683 FIELD(CR3_TARGET_VALUE0, cr3_target_value0),
684 FIELD(CR3_TARGET_VALUE1, cr3_target_value1),
685 FIELD(CR3_TARGET_VALUE2, cr3_target_value2),
686 FIELD(CR3_TARGET_VALUE3, cr3_target_value3),
687 FIELD(EXIT_QUALIFICATION, exit_qualification),
688 FIELD(GUEST_LINEAR_ADDRESS, guest_linear_address),
689 FIELD(GUEST_CR0, guest_cr0),
690 FIELD(GUEST_CR3, guest_cr3),
691 FIELD(GUEST_CR4, guest_cr4),
692 FIELD(GUEST_ES_BASE, guest_es_base),
693 FIELD(GUEST_CS_BASE, guest_cs_base),
694 FIELD(GUEST_SS_BASE, guest_ss_base),
695 FIELD(GUEST_DS_BASE, guest_ds_base),
696 FIELD(GUEST_FS_BASE, guest_fs_base),
697 FIELD(GUEST_GS_BASE, guest_gs_base),
698 FIELD(GUEST_LDTR_BASE, guest_ldtr_base),
699 FIELD(GUEST_TR_BASE, guest_tr_base),
700 FIELD(GUEST_GDTR_BASE, guest_gdtr_base),
701 FIELD(GUEST_IDTR_BASE, guest_idtr_base),
702 FIELD(GUEST_DR7, guest_dr7),
703 FIELD(GUEST_RSP, guest_rsp),
704 FIELD(GUEST_RIP, guest_rip),
705 FIELD(GUEST_RFLAGS, guest_rflags),
706 FIELD(GUEST_PENDING_DBG_EXCEPTIONS, guest_pending_dbg_exceptions),
707 FIELD(GUEST_SYSENTER_ESP, guest_sysenter_esp),
708 FIELD(GUEST_SYSENTER_EIP, guest_sysenter_eip),
709 FIELD(HOST_CR0, host_cr0),
710 FIELD(HOST_CR3, host_cr3),
711 FIELD(HOST_CR4, host_cr4),
712 FIELD(HOST_FS_BASE, host_fs_base),
713 FIELD(HOST_GS_BASE, host_gs_base),
714 FIELD(HOST_TR_BASE, host_tr_base),
715 FIELD(HOST_GDTR_BASE, host_gdtr_base),
716 FIELD(HOST_IDTR_BASE, host_idtr_base),
717 FIELD(HOST_IA32_SYSENTER_ESP, host_ia32_sysenter_esp),
718 FIELD(HOST_IA32_SYSENTER_EIP, host_ia32_sysenter_eip),
719 FIELD(HOST_RSP, host_rsp),
720 FIELD(HOST_RIP, host_rip),
721};
722static const int max_vmcs_field = ARRAY_SIZE(vmcs_field_to_offset_table);
723
724static inline short vmcs_field_to_offset(unsigned long field)
725{
726 if (field >= max_vmcs_field || vmcs_field_to_offset_table[field] == 0)
727 return -1;
728 return vmcs_field_to_offset_table[field];
729}
730
a9d30f33
NHE
731static inline struct vmcs12 *get_vmcs12(struct kvm_vcpu *vcpu)
732{
733 return to_vmx(vcpu)->nested.current_vmcs12;
734}
735
736static struct page *nested_get_page(struct kvm_vcpu *vcpu, gpa_t addr)
737{
738 struct page *page = gfn_to_page(vcpu->kvm, addr >> PAGE_SHIFT);
32cad84f 739 if (is_error_page(page))
a9d30f33 740 return NULL;
32cad84f 741
a9d30f33
NHE
742 return page;
743}
744
745static void nested_release_page(struct page *page)
746{
747 kvm_release_page_dirty(page);
748}
749
750static void nested_release_page_clean(struct page *page)
751{
752 kvm_release_page_clean(page);
753}
754
bfd0a56b 755static unsigned long nested_ept_get_cr3(struct kvm_vcpu *vcpu);
4e1096d2 756static u64 construct_eptp(unsigned long root_hpa);
4610c9cc
DX
757static void kvm_cpu_vmxon(u64 addr);
758static void kvm_cpu_vmxoff(void);
93c4adc7 759static bool vmx_mpx_supported(void);
776e58ea 760static int vmx_set_tss_addr(struct kvm *kvm, unsigned int addr);
b246dd5d
OW
761static void vmx_set_segment(struct kvm_vcpu *vcpu,
762 struct kvm_segment *var, int seg);
763static void vmx_get_segment(struct kvm_vcpu *vcpu,
764 struct kvm_segment *var, int seg);
d99e4152
GN
765static bool guest_state_valid(struct kvm_vcpu *vcpu);
766static u32 vmx_segment_access_rights(struct kvm_segment *var);
a20ed54d 767static void vmx_sync_pir_to_irr_dummy(struct kvm_vcpu *vcpu);
c3114420 768static void copy_vmcs12_to_shadow(struct vcpu_vmx *vmx);
16f5b903 769static void copy_shadow_to_vmcs12(struct vcpu_vmx *vmx);
a255d479 770static int alloc_identity_pagetable(struct kvm *kvm);
75880a01 771
6aa8b732
AK
772static DEFINE_PER_CPU(struct vmcs *, vmxarea);
773static DEFINE_PER_CPU(struct vmcs *, current_vmcs);
d462b819
NHE
774/*
775 * We maintain a per-CPU linked-list of VMCS loaded on that CPU. This is needed
776 * when a CPU is brought down, and we need to VMCLEAR all VMCSs loaded on it.
777 */
778static DEFINE_PER_CPU(struct list_head, loaded_vmcss_on_cpu);
3444d7da 779static DEFINE_PER_CPU(struct desc_ptr, host_gdt);
6aa8b732 780
3e7c73e9
AK
781static unsigned long *vmx_io_bitmap_a;
782static unsigned long *vmx_io_bitmap_b;
5897297b
AK
783static unsigned long *vmx_msr_bitmap_legacy;
784static unsigned long *vmx_msr_bitmap_longmode;
8d14695f
YZ
785static unsigned long *vmx_msr_bitmap_legacy_x2apic;
786static unsigned long *vmx_msr_bitmap_longmode_x2apic;
4607c2d7
AG
787static unsigned long *vmx_vmread_bitmap;
788static unsigned long *vmx_vmwrite_bitmap;
fdef3ad1 789
110312c8 790static bool cpu_has_load_ia32_efer;
8bf00a52 791static bool cpu_has_load_perf_global_ctrl;
110312c8 792
2384d2b3
SY
793static DECLARE_BITMAP(vmx_vpid_bitmap, VMX_NR_VPIDS);
794static DEFINE_SPINLOCK(vmx_vpid_lock);
795
1c3d14fe 796static struct vmcs_config {
6aa8b732
AK
797 int size;
798 int order;
799 u32 revision_id;
1c3d14fe
YS
800 u32 pin_based_exec_ctrl;
801 u32 cpu_based_exec_ctrl;
f78e0e2e 802 u32 cpu_based_2nd_exec_ctrl;
1c3d14fe
YS
803 u32 vmexit_ctrl;
804 u32 vmentry_ctrl;
805} vmcs_config;
6aa8b732 806
efff9e53 807static struct vmx_capability {
d56f546d
SY
808 u32 ept;
809 u32 vpid;
810} vmx_capability;
811
6aa8b732
AK
812#define VMX_SEGMENT_FIELD(seg) \
813 [VCPU_SREG_##seg] = { \
814 .selector = GUEST_##seg##_SELECTOR, \
815 .base = GUEST_##seg##_BASE, \
816 .limit = GUEST_##seg##_LIMIT, \
817 .ar_bytes = GUEST_##seg##_AR_BYTES, \
818 }
819
772e0318 820static const struct kvm_vmx_segment_field {
6aa8b732
AK
821 unsigned selector;
822 unsigned base;
823 unsigned limit;
824 unsigned ar_bytes;
825} kvm_vmx_segment_fields[] = {
826 VMX_SEGMENT_FIELD(CS),
827 VMX_SEGMENT_FIELD(DS),
828 VMX_SEGMENT_FIELD(ES),
829 VMX_SEGMENT_FIELD(FS),
830 VMX_SEGMENT_FIELD(GS),
831 VMX_SEGMENT_FIELD(SS),
832 VMX_SEGMENT_FIELD(TR),
833 VMX_SEGMENT_FIELD(LDTR),
834};
835
26bb0981
AK
836static u64 host_efer;
837
6de4f3ad
AK
838static void ept_save_pdptrs(struct kvm_vcpu *vcpu);
839
4d56c8a7 840/*
8c06585d 841 * Keep MSR_STAR at the end, as setup_msrs() will try to optimize it
4d56c8a7
AK
842 * away by decrementing the array size.
843 */
6aa8b732 844static const u32 vmx_msr_index[] = {
05b3e0c2 845#ifdef CONFIG_X86_64
44ea2b17 846 MSR_SYSCALL_MASK, MSR_LSTAR, MSR_CSTAR,
6aa8b732 847#endif
8c06585d 848 MSR_EFER, MSR_TSC_AUX, MSR_STAR,
6aa8b732 849};
6aa8b732 850
31299944 851static inline bool is_page_fault(u32 intr_info)
6aa8b732
AK
852{
853 return (intr_info & (INTR_INFO_INTR_TYPE_MASK | INTR_INFO_VECTOR_MASK |
854 INTR_INFO_VALID_MASK)) ==
8ab2d2e2 855 (INTR_TYPE_HARD_EXCEPTION | PF_VECTOR | INTR_INFO_VALID_MASK);
6aa8b732
AK
856}
857
31299944 858static inline bool is_no_device(u32 intr_info)
2ab455cc
AL
859{
860 return (intr_info & (INTR_INFO_INTR_TYPE_MASK | INTR_INFO_VECTOR_MASK |
861 INTR_INFO_VALID_MASK)) ==
8ab2d2e2 862 (INTR_TYPE_HARD_EXCEPTION | NM_VECTOR | INTR_INFO_VALID_MASK);
2ab455cc
AL
863}
864
31299944 865static inline bool is_invalid_opcode(u32 intr_info)
7aa81cc0
AL
866{
867 return (intr_info & (INTR_INFO_INTR_TYPE_MASK | INTR_INFO_VECTOR_MASK |
868 INTR_INFO_VALID_MASK)) ==
8ab2d2e2 869 (INTR_TYPE_HARD_EXCEPTION | UD_VECTOR | INTR_INFO_VALID_MASK);
7aa81cc0
AL
870}
871
31299944 872static inline bool is_external_interrupt(u32 intr_info)
6aa8b732
AK
873{
874 return (intr_info & (INTR_INFO_INTR_TYPE_MASK | INTR_INFO_VALID_MASK))
875 == (INTR_TYPE_EXT_INTR | INTR_INFO_VALID_MASK);
876}
877
31299944 878static inline bool is_machine_check(u32 intr_info)
a0861c02
AK
879{
880 return (intr_info & (INTR_INFO_INTR_TYPE_MASK | INTR_INFO_VECTOR_MASK |
881 INTR_INFO_VALID_MASK)) ==
882 (INTR_TYPE_HARD_EXCEPTION | MC_VECTOR | INTR_INFO_VALID_MASK);
883}
884
31299944 885static inline bool cpu_has_vmx_msr_bitmap(void)
25c5f225 886{
04547156 887 return vmcs_config.cpu_based_exec_ctrl & CPU_BASED_USE_MSR_BITMAPS;
25c5f225
SY
888}
889
31299944 890static inline bool cpu_has_vmx_tpr_shadow(void)
6e5d865c 891{
04547156 892 return vmcs_config.cpu_based_exec_ctrl & CPU_BASED_TPR_SHADOW;
6e5d865c
YS
893}
894
31299944 895static inline bool vm_need_tpr_shadow(struct kvm *kvm)
6e5d865c 896{
04547156 897 return (cpu_has_vmx_tpr_shadow()) && (irqchip_in_kernel(kvm));
6e5d865c
YS
898}
899
31299944 900static inline bool cpu_has_secondary_exec_ctrls(void)
f78e0e2e 901{
04547156
SY
902 return vmcs_config.cpu_based_exec_ctrl &
903 CPU_BASED_ACTIVATE_SECONDARY_CONTROLS;
f78e0e2e
SY
904}
905
774ead3a 906static inline bool cpu_has_vmx_virtualize_apic_accesses(void)
f78e0e2e 907{
04547156
SY
908 return vmcs_config.cpu_based_2nd_exec_ctrl &
909 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES;
910}
911
8d14695f
YZ
912static inline bool cpu_has_vmx_virtualize_x2apic_mode(void)
913{
914 return vmcs_config.cpu_based_2nd_exec_ctrl &
915 SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE;
916}
917
83d4c286
YZ
918static inline bool cpu_has_vmx_apic_register_virt(void)
919{
920 return vmcs_config.cpu_based_2nd_exec_ctrl &
921 SECONDARY_EXEC_APIC_REGISTER_VIRT;
922}
923
c7c9c56c
YZ
924static inline bool cpu_has_vmx_virtual_intr_delivery(void)
925{
926 return vmcs_config.cpu_based_2nd_exec_ctrl &
927 SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY;
928}
929
01e439be
YZ
930static inline bool cpu_has_vmx_posted_intr(void)
931{
932 return vmcs_config.pin_based_exec_ctrl & PIN_BASED_POSTED_INTR;
933}
934
935static inline bool cpu_has_vmx_apicv(void)
936{
937 return cpu_has_vmx_apic_register_virt() &&
938 cpu_has_vmx_virtual_intr_delivery() &&
939 cpu_has_vmx_posted_intr();
940}
941
04547156
SY
942static inline bool cpu_has_vmx_flexpriority(void)
943{
944 return cpu_has_vmx_tpr_shadow() &&
945 cpu_has_vmx_virtualize_apic_accesses();
f78e0e2e
SY
946}
947
e799794e
MT
948static inline bool cpu_has_vmx_ept_execute_only(void)
949{
31299944 950 return vmx_capability.ept & VMX_EPT_EXECUTE_ONLY_BIT;
e799794e
MT
951}
952
953static inline bool cpu_has_vmx_eptp_uncacheable(void)
954{
31299944 955 return vmx_capability.ept & VMX_EPTP_UC_BIT;
e799794e
MT
956}
957
958static inline bool cpu_has_vmx_eptp_writeback(void)
959{
31299944 960 return vmx_capability.ept & VMX_EPTP_WB_BIT;
e799794e
MT
961}
962
963static inline bool cpu_has_vmx_ept_2m_page(void)
964{
31299944 965 return vmx_capability.ept & VMX_EPT_2MB_PAGE_BIT;
e799794e
MT
966}
967
878403b7
SY
968static inline bool cpu_has_vmx_ept_1g_page(void)
969{
31299944 970 return vmx_capability.ept & VMX_EPT_1GB_PAGE_BIT;
878403b7
SY
971}
972
4bc9b982
SY
973static inline bool cpu_has_vmx_ept_4levels(void)
974{
975 return vmx_capability.ept & VMX_EPT_PAGE_WALK_4_BIT;
976}
977
83c3a331
XH
978static inline bool cpu_has_vmx_ept_ad_bits(void)
979{
980 return vmx_capability.ept & VMX_EPT_AD_BIT;
981}
982
31299944 983static inline bool cpu_has_vmx_invept_context(void)
d56f546d 984{
31299944 985 return vmx_capability.ept & VMX_EPT_EXTENT_CONTEXT_BIT;
d56f546d
SY
986}
987
31299944 988static inline bool cpu_has_vmx_invept_global(void)
d56f546d 989{
31299944 990 return vmx_capability.ept & VMX_EPT_EXTENT_GLOBAL_BIT;
d56f546d
SY
991}
992
518c8aee
GJ
993static inline bool cpu_has_vmx_invvpid_single(void)
994{
995 return vmx_capability.vpid & VMX_VPID_EXTENT_SINGLE_CONTEXT_BIT;
996}
997
b9d762fa
GJ
998static inline bool cpu_has_vmx_invvpid_global(void)
999{
1000 return vmx_capability.vpid & VMX_VPID_EXTENT_GLOBAL_CONTEXT_BIT;
1001}
1002
31299944 1003static inline bool cpu_has_vmx_ept(void)
d56f546d 1004{
04547156
SY
1005 return vmcs_config.cpu_based_2nd_exec_ctrl &
1006 SECONDARY_EXEC_ENABLE_EPT;
d56f546d
SY
1007}
1008
31299944 1009static inline bool cpu_has_vmx_unrestricted_guest(void)
3a624e29
NK
1010{
1011 return vmcs_config.cpu_based_2nd_exec_ctrl &
1012 SECONDARY_EXEC_UNRESTRICTED_GUEST;
1013}
1014
31299944 1015static inline bool cpu_has_vmx_ple(void)
4b8d54f9
ZE
1016{
1017 return vmcs_config.cpu_based_2nd_exec_ctrl &
1018 SECONDARY_EXEC_PAUSE_LOOP_EXITING;
1019}
1020
31299944 1021static inline bool vm_need_virtualize_apic_accesses(struct kvm *kvm)
f78e0e2e 1022{
6d3e435e 1023 return flexpriority_enabled && irqchip_in_kernel(kvm);
f78e0e2e
SY
1024}
1025
31299944 1026static inline bool cpu_has_vmx_vpid(void)
2384d2b3 1027{
04547156
SY
1028 return vmcs_config.cpu_based_2nd_exec_ctrl &
1029 SECONDARY_EXEC_ENABLE_VPID;
2384d2b3
SY
1030}
1031
31299944 1032static inline bool cpu_has_vmx_rdtscp(void)
4e47c7a6
SY
1033{
1034 return vmcs_config.cpu_based_2nd_exec_ctrl &
1035 SECONDARY_EXEC_RDTSCP;
1036}
1037
ad756a16
MJ
1038static inline bool cpu_has_vmx_invpcid(void)
1039{
1040 return vmcs_config.cpu_based_2nd_exec_ctrl &
1041 SECONDARY_EXEC_ENABLE_INVPCID;
1042}
1043
31299944 1044static inline bool cpu_has_virtual_nmis(void)
f08864b4
SY
1045{
1046 return vmcs_config.pin_based_exec_ctrl & PIN_BASED_VIRTUAL_NMIS;
1047}
1048
f5f48ee1
SY
1049static inline bool cpu_has_vmx_wbinvd_exit(void)
1050{
1051 return vmcs_config.cpu_based_2nd_exec_ctrl &
1052 SECONDARY_EXEC_WBINVD_EXITING;
1053}
1054
abc4fc58
AG
1055static inline bool cpu_has_vmx_shadow_vmcs(void)
1056{
1057 u64 vmx_msr;
1058 rdmsrl(MSR_IA32_VMX_MISC, vmx_msr);
1059 /* check if the cpu supports writing r/o exit information fields */
1060 if (!(vmx_msr & MSR_IA32_VMX_MISC_VMWRITE_SHADOW_RO_FIELDS))
1061 return false;
1062
1063 return vmcs_config.cpu_based_2nd_exec_ctrl &
1064 SECONDARY_EXEC_SHADOW_VMCS;
1065}
1066
04547156
SY
1067static inline bool report_flexpriority(void)
1068{
1069 return flexpriority_enabled;
1070}
1071
fe3ef05c
NHE
1072static inline bool nested_cpu_has(struct vmcs12 *vmcs12, u32 bit)
1073{
1074 return vmcs12->cpu_based_vm_exec_control & bit;
1075}
1076
1077static inline bool nested_cpu_has2(struct vmcs12 *vmcs12, u32 bit)
1078{
1079 return (vmcs12->cpu_based_vm_exec_control &
1080 CPU_BASED_ACTIVATE_SECONDARY_CONTROLS) &&
1081 (vmcs12->secondary_vm_exec_control & bit);
1082}
1083
f5c4368f 1084static inline bool nested_cpu_has_virtual_nmis(struct vmcs12 *vmcs12)
644d711a
NHE
1085{
1086 return vmcs12->pin_based_vm_exec_control & PIN_BASED_VIRTUAL_NMIS;
1087}
1088
f4124500
JK
1089static inline bool nested_cpu_has_preemption_timer(struct vmcs12 *vmcs12)
1090{
1091 return vmcs12->pin_based_vm_exec_control &
1092 PIN_BASED_VMX_PREEMPTION_TIMER;
1093}
1094
155a97a3
NHE
1095static inline int nested_cpu_has_ept(struct vmcs12 *vmcs12)
1096{
1097 return nested_cpu_has2(vmcs12, SECONDARY_EXEC_ENABLE_EPT);
1098}
1099
644d711a
NHE
1100static inline bool is_exception(u32 intr_info)
1101{
1102 return (intr_info & (INTR_INFO_INTR_TYPE_MASK | INTR_INFO_VALID_MASK))
1103 == (INTR_TYPE_HARD_EXCEPTION | INTR_INFO_VALID_MASK);
1104}
1105
533558bc
JK
1106static void nested_vmx_vmexit(struct kvm_vcpu *vcpu, u32 exit_reason,
1107 u32 exit_intr_info,
1108 unsigned long exit_qualification);
7c177938
NHE
1109static void nested_vmx_entry_failure(struct kvm_vcpu *vcpu,
1110 struct vmcs12 *vmcs12,
1111 u32 reason, unsigned long qualification);
1112
8b9cf98c 1113static int __find_msr_index(struct vcpu_vmx *vmx, u32 msr)
7725f0ba
AK
1114{
1115 int i;
1116
a2fa3e9f 1117 for (i = 0; i < vmx->nmsrs; ++i)
26bb0981 1118 if (vmx_msr_index[vmx->guest_msrs[i].index] == msr)
a75beee6
ED
1119 return i;
1120 return -1;
1121}
1122
2384d2b3
SY
1123static inline void __invvpid(int ext, u16 vpid, gva_t gva)
1124{
1125 struct {
1126 u64 vpid : 16;
1127 u64 rsvd : 48;
1128 u64 gva;
1129 } operand = { vpid, 0, gva };
1130
4ecac3fd 1131 asm volatile (__ex(ASM_VMX_INVVPID)
2384d2b3
SY
1132 /* CF==1 or ZF==1 --> rc = -1 */
1133 "; ja 1f ; ud2 ; 1:"
1134 : : "a"(&operand), "c"(ext) : "cc", "memory");
1135}
1136
1439442c
SY
1137static inline void __invept(int ext, u64 eptp, gpa_t gpa)
1138{
1139 struct {
1140 u64 eptp, gpa;
1141 } operand = {eptp, gpa};
1142
4ecac3fd 1143 asm volatile (__ex(ASM_VMX_INVEPT)
1439442c
SY
1144 /* CF==1 or ZF==1 --> rc = -1 */
1145 "; ja 1f ; ud2 ; 1:\n"
1146 : : "a" (&operand), "c" (ext) : "cc", "memory");
1147}
1148
26bb0981 1149static struct shared_msr_entry *find_msr_entry(struct vcpu_vmx *vmx, u32 msr)
a75beee6
ED
1150{
1151 int i;
1152
8b9cf98c 1153 i = __find_msr_index(vmx, msr);
a75beee6 1154 if (i >= 0)
a2fa3e9f 1155 return &vmx->guest_msrs[i];
8b6d44c7 1156 return NULL;
7725f0ba
AK
1157}
1158
6aa8b732
AK
1159static void vmcs_clear(struct vmcs *vmcs)
1160{
1161 u64 phys_addr = __pa(vmcs);
1162 u8 error;
1163
4ecac3fd 1164 asm volatile (__ex(ASM_VMX_VMCLEAR_RAX) "; setna %0"
16d8f72f 1165 : "=qm"(error) : "a"(&phys_addr), "m"(phys_addr)
6aa8b732
AK
1166 : "cc", "memory");
1167 if (error)
1168 printk(KERN_ERR "kvm: vmclear fail: %p/%llx\n",
1169 vmcs, phys_addr);
1170}
1171
d462b819
NHE
1172static inline void loaded_vmcs_init(struct loaded_vmcs *loaded_vmcs)
1173{
1174 vmcs_clear(loaded_vmcs->vmcs);
1175 loaded_vmcs->cpu = -1;
1176 loaded_vmcs->launched = 0;
1177}
1178
7725b894
DX
1179static void vmcs_load(struct vmcs *vmcs)
1180{
1181 u64 phys_addr = __pa(vmcs);
1182 u8 error;
1183
1184 asm volatile (__ex(ASM_VMX_VMPTRLD_RAX) "; setna %0"
16d8f72f 1185 : "=qm"(error) : "a"(&phys_addr), "m"(phys_addr)
7725b894
DX
1186 : "cc", "memory");
1187 if (error)
2844d849 1188 printk(KERN_ERR "kvm: vmptrld %p/%llx failed\n",
7725b894
DX
1189 vmcs, phys_addr);
1190}
1191
8f536b76
ZY
1192#ifdef CONFIG_KEXEC
1193/*
1194 * This bitmap is used to indicate whether the vmclear
1195 * operation is enabled on all cpus. All disabled by
1196 * default.
1197 */
1198static cpumask_t crash_vmclear_enabled_bitmap = CPU_MASK_NONE;
1199
1200static inline void crash_enable_local_vmclear(int cpu)
1201{
1202 cpumask_set_cpu(cpu, &crash_vmclear_enabled_bitmap);
1203}
1204
1205static inline void crash_disable_local_vmclear(int cpu)
1206{
1207 cpumask_clear_cpu(cpu, &crash_vmclear_enabled_bitmap);
1208}
1209
1210static inline int crash_local_vmclear_enabled(int cpu)
1211{
1212 return cpumask_test_cpu(cpu, &crash_vmclear_enabled_bitmap);
1213}
1214
1215static void crash_vmclear_local_loaded_vmcss(void)
1216{
1217 int cpu = raw_smp_processor_id();
1218 struct loaded_vmcs *v;
1219
1220 if (!crash_local_vmclear_enabled(cpu))
1221 return;
1222
1223 list_for_each_entry(v, &per_cpu(loaded_vmcss_on_cpu, cpu),
1224 loaded_vmcss_on_cpu_link)
1225 vmcs_clear(v->vmcs);
1226}
1227#else
1228static inline void crash_enable_local_vmclear(int cpu) { }
1229static inline void crash_disable_local_vmclear(int cpu) { }
1230#endif /* CONFIG_KEXEC */
1231
d462b819 1232static void __loaded_vmcs_clear(void *arg)
6aa8b732 1233{
d462b819 1234 struct loaded_vmcs *loaded_vmcs = arg;
d3b2c338 1235 int cpu = raw_smp_processor_id();
6aa8b732 1236
d462b819
NHE
1237 if (loaded_vmcs->cpu != cpu)
1238 return; /* vcpu migration can race with cpu offline */
1239 if (per_cpu(current_vmcs, cpu) == loaded_vmcs->vmcs)
6aa8b732 1240 per_cpu(current_vmcs, cpu) = NULL;
8f536b76 1241 crash_disable_local_vmclear(cpu);
d462b819 1242 list_del(&loaded_vmcs->loaded_vmcss_on_cpu_link);
5a560f8b
XG
1243
1244 /*
1245 * we should ensure updating loaded_vmcs->loaded_vmcss_on_cpu_link
1246 * is before setting loaded_vmcs->vcpu to -1 which is done in
1247 * loaded_vmcs_init. Otherwise, other cpu can see vcpu = -1 fist
1248 * then adds the vmcs into percpu list before it is deleted.
1249 */
1250 smp_wmb();
1251
d462b819 1252 loaded_vmcs_init(loaded_vmcs);
8f536b76 1253 crash_enable_local_vmclear(cpu);
6aa8b732
AK
1254}
1255
d462b819 1256static void loaded_vmcs_clear(struct loaded_vmcs *loaded_vmcs)
8d0be2b3 1257{
e6c7d321
XG
1258 int cpu = loaded_vmcs->cpu;
1259
1260 if (cpu != -1)
1261 smp_call_function_single(cpu,
1262 __loaded_vmcs_clear, loaded_vmcs, 1);
8d0be2b3
AK
1263}
1264
1760dd49 1265static inline void vpid_sync_vcpu_single(struct vcpu_vmx *vmx)
2384d2b3
SY
1266{
1267 if (vmx->vpid == 0)
1268 return;
1269
518c8aee
GJ
1270 if (cpu_has_vmx_invvpid_single())
1271 __invvpid(VMX_VPID_EXTENT_SINGLE_CONTEXT, vmx->vpid, 0);
2384d2b3
SY
1272}
1273
b9d762fa
GJ
1274static inline void vpid_sync_vcpu_global(void)
1275{
1276 if (cpu_has_vmx_invvpid_global())
1277 __invvpid(VMX_VPID_EXTENT_ALL_CONTEXT, 0, 0);
1278}
1279
1280static inline void vpid_sync_context(struct vcpu_vmx *vmx)
1281{
1282 if (cpu_has_vmx_invvpid_single())
1760dd49 1283 vpid_sync_vcpu_single(vmx);
b9d762fa
GJ
1284 else
1285 vpid_sync_vcpu_global();
1286}
1287
1439442c
SY
1288static inline void ept_sync_global(void)
1289{
1290 if (cpu_has_vmx_invept_global())
1291 __invept(VMX_EPT_EXTENT_GLOBAL, 0, 0);
1292}
1293
1294static inline void ept_sync_context(u64 eptp)
1295{
089d034e 1296 if (enable_ept) {
1439442c
SY
1297 if (cpu_has_vmx_invept_context())
1298 __invept(VMX_EPT_EXTENT_CONTEXT, eptp, 0);
1299 else
1300 ept_sync_global();
1301 }
1302}
1303
96304217 1304static __always_inline unsigned long vmcs_readl(unsigned long field)
6aa8b732 1305{
5e520e62 1306 unsigned long value;
6aa8b732 1307
5e520e62
AK
1308 asm volatile (__ex_clear(ASM_VMX_VMREAD_RDX_RAX, "%0")
1309 : "=a"(value) : "d"(field) : "cc");
6aa8b732
AK
1310 return value;
1311}
1312
96304217 1313static __always_inline u16 vmcs_read16(unsigned long field)
6aa8b732
AK
1314{
1315 return vmcs_readl(field);
1316}
1317
96304217 1318static __always_inline u32 vmcs_read32(unsigned long field)
6aa8b732
AK
1319{
1320 return vmcs_readl(field);
1321}
1322
96304217 1323static __always_inline u64 vmcs_read64(unsigned long field)
6aa8b732 1324{
05b3e0c2 1325#ifdef CONFIG_X86_64
6aa8b732
AK
1326 return vmcs_readl(field);
1327#else
1328 return vmcs_readl(field) | ((u64)vmcs_readl(field+1) << 32);
1329#endif
1330}
1331
e52de1b8
AK
1332static noinline void vmwrite_error(unsigned long field, unsigned long value)
1333{
1334 printk(KERN_ERR "vmwrite error: reg %lx value %lx (err %d)\n",
1335 field, value, vmcs_read32(VM_INSTRUCTION_ERROR));
1336 dump_stack();
1337}
1338
6aa8b732
AK
1339static void vmcs_writel(unsigned long field, unsigned long value)
1340{
1341 u8 error;
1342
4ecac3fd 1343 asm volatile (__ex(ASM_VMX_VMWRITE_RAX_RDX) "; setna %0"
d77c26fc 1344 : "=q"(error) : "a"(value), "d"(field) : "cc");
e52de1b8
AK
1345 if (unlikely(error))
1346 vmwrite_error(field, value);
6aa8b732
AK
1347}
1348
1349static void vmcs_write16(unsigned long field, u16 value)
1350{
1351 vmcs_writel(field, value);
1352}
1353
1354static void vmcs_write32(unsigned long field, u32 value)
1355{
1356 vmcs_writel(field, value);
1357}
1358
1359static void vmcs_write64(unsigned long field, u64 value)
1360{
6aa8b732 1361 vmcs_writel(field, value);
7682f2d0 1362#ifndef CONFIG_X86_64
6aa8b732
AK
1363 asm volatile ("");
1364 vmcs_writel(field+1, value >> 32);
1365#endif
1366}
1367
2ab455cc
AL
1368static void vmcs_clear_bits(unsigned long field, u32 mask)
1369{
1370 vmcs_writel(field, vmcs_readl(field) & ~mask);
1371}
1372
1373static void vmcs_set_bits(unsigned long field, u32 mask)
1374{
1375 vmcs_writel(field, vmcs_readl(field) | mask);
1376}
1377
2961e876
GN
1378static inline void vm_entry_controls_init(struct vcpu_vmx *vmx, u32 val)
1379{
1380 vmcs_write32(VM_ENTRY_CONTROLS, val);
1381 vmx->vm_entry_controls_shadow = val;
1382}
1383
1384static inline void vm_entry_controls_set(struct vcpu_vmx *vmx, u32 val)
1385{
1386 if (vmx->vm_entry_controls_shadow != val)
1387 vm_entry_controls_init(vmx, val);
1388}
1389
1390static inline u32 vm_entry_controls_get(struct vcpu_vmx *vmx)
1391{
1392 return vmx->vm_entry_controls_shadow;
1393}
1394
1395
1396static inline void vm_entry_controls_setbit(struct vcpu_vmx *vmx, u32 val)
1397{
1398 vm_entry_controls_set(vmx, vm_entry_controls_get(vmx) | val);
1399}
1400
1401static inline void vm_entry_controls_clearbit(struct vcpu_vmx *vmx, u32 val)
1402{
1403 vm_entry_controls_set(vmx, vm_entry_controls_get(vmx) & ~val);
1404}
1405
1406static inline void vm_exit_controls_init(struct vcpu_vmx *vmx, u32 val)
1407{
1408 vmcs_write32(VM_EXIT_CONTROLS, val);
1409 vmx->vm_exit_controls_shadow = val;
1410}
1411
1412static inline void vm_exit_controls_set(struct vcpu_vmx *vmx, u32 val)
1413{
1414 if (vmx->vm_exit_controls_shadow != val)
1415 vm_exit_controls_init(vmx, val);
1416}
1417
1418static inline u32 vm_exit_controls_get(struct vcpu_vmx *vmx)
1419{
1420 return vmx->vm_exit_controls_shadow;
1421}
1422
1423
1424static inline void vm_exit_controls_setbit(struct vcpu_vmx *vmx, u32 val)
1425{
1426 vm_exit_controls_set(vmx, vm_exit_controls_get(vmx) | val);
1427}
1428
1429static inline void vm_exit_controls_clearbit(struct vcpu_vmx *vmx, u32 val)
1430{
1431 vm_exit_controls_set(vmx, vm_exit_controls_get(vmx) & ~val);
1432}
1433
2fb92db1
AK
1434static void vmx_segment_cache_clear(struct vcpu_vmx *vmx)
1435{
1436 vmx->segment_cache.bitmask = 0;
1437}
1438
1439static bool vmx_segment_cache_test_set(struct vcpu_vmx *vmx, unsigned seg,
1440 unsigned field)
1441{
1442 bool ret;
1443 u32 mask = 1 << (seg * SEG_FIELD_NR + field);
1444
1445 if (!(vmx->vcpu.arch.regs_avail & (1 << VCPU_EXREG_SEGMENTS))) {
1446 vmx->vcpu.arch.regs_avail |= (1 << VCPU_EXREG_SEGMENTS);
1447 vmx->segment_cache.bitmask = 0;
1448 }
1449 ret = vmx->segment_cache.bitmask & mask;
1450 vmx->segment_cache.bitmask |= mask;
1451 return ret;
1452}
1453
1454static u16 vmx_read_guest_seg_selector(struct vcpu_vmx *vmx, unsigned seg)
1455{
1456 u16 *p = &vmx->segment_cache.seg[seg].selector;
1457
1458 if (!vmx_segment_cache_test_set(vmx, seg, SEG_FIELD_SEL))
1459 *p = vmcs_read16(kvm_vmx_segment_fields[seg].selector);
1460 return *p;
1461}
1462
1463static ulong vmx_read_guest_seg_base(struct vcpu_vmx *vmx, unsigned seg)
1464{
1465 ulong *p = &vmx->segment_cache.seg[seg].base;
1466
1467 if (!vmx_segment_cache_test_set(vmx, seg, SEG_FIELD_BASE))
1468 *p = vmcs_readl(kvm_vmx_segment_fields[seg].base);
1469 return *p;
1470}
1471
1472static u32 vmx_read_guest_seg_limit(struct vcpu_vmx *vmx, unsigned seg)
1473{
1474 u32 *p = &vmx->segment_cache.seg[seg].limit;
1475
1476 if (!vmx_segment_cache_test_set(vmx, seg, SEG_FIELD_LIMIT))
1477 *p = vmcs_read32(kvm_vmx_segment_fields[seg].limit);
1478 return *p;
1479}
1480
1481static u32 vmx_read_guest_seg_ar(struct vcpu_vmx *vmx, unsigned seg)
1482{
1483 u32 *p = &vmx->segment_cache.seg[seg].ar;
1484
1485 if (!vmx_segment_cache_test_set(vmx, seg, SEG_FIELD_AR))
1486 *p = vmcs_read32(kvm_vmx_segment_fields[seg].ar_bytes);
1487 return *p;
1488}
1489
abd3f2d6
AK
1490static void update_exception_bitmap(struct kvm_vcpu *vcpu)
1491{
1492 u32 eb;
1493
fd7373cc
JK
1494 eb = (1u << PF_VECTOR) | (1u << UD_VECTOR) | (1u << MC_VECTOR) |
1495 (1u << NM_VECTOR) | (1u << DB_VECTOR);
1496 if ((vcpu->guest_debug &
1497 (KVM_GUESTDBG_ENABLE | KVM_GUESTDBG_USE_SW_BP)) ==
1498 (KVM_GUESTDBG_ENABLE | KVM_GUESTDBG_USE_SW_BP))
1499 eb |= 1u << BP_VECTOR;
7ffd92c5 1500 if (to_vmx(vcpu)->rmode.vm86_active)
abd3f2d6 1501 eb = ~0;
089d034e 1502 if (enable_ept)
1439442c 1503 eb &= ~(1u << PF_VECTOR); /* bypass_guest_pf = 0 */
02daab21
AK
1504 if (vcpu->fpu_active)
1505 eb &= ~(1u << NM_VECTOR);
36cf24e0
NHE
1506
1507 /* When we are running a nested L2 guest and L1 specified for it a
1508 * certain exception bitmap, we must trap the same exceptions and pass
1509 * them to L1. When running L2, we will only handle the exceptions
1510 * specified above if L1 did not want them.
1511 */
1512 if (is_guest_mode(vcpu))
1513 eb |= get_vmcs12(vcpu)->exception_bitmap;
1514
abd3f2d6
AK
1515 vmcs_write32(EXCEPTION_BITMAP, eb);
1516}
1517
2961e876
GN
1518static void clear_atomic_switch_msr_special(struct vcpu_vmx *vmx,
1519 unsigned long entry, unsigned long exit)
8bf00a52 1520{
2961e876
GN
1521 vm_entry_controls_clearbit(vmx, entry);
1522 vm_exit_controls_clearbit(vmx, exit);
8bf00a52
GN
1523}
1524
61d2ef2c
AK
1525static void clear_atomic_switch_msr(struct vcpu_vmx *vmx, unsigned msr)
1526{
1527 unsigned i;
1528 struct msr_autoload *m = &vmx->msr_autoload;
1529
8bf00a52
GN
1530 switch (msr) {
1531 case MSR_EFER:
1532 if (cpu_has_load_ia32_efer) {
2961e876
GN
1533 clear_atomic_switch_msr_special(vmx,
1534 VM_ENTRY_LOAD_IA32_EFER,
8bf00a52
GN
1535 VM_EXIT_LOAD_IA32_EFER);
1536 return;
1537 }
1538 break;
1539 case MSR_CORE_PERF_GLOBAL_CTRL:
1540 if (cpu_has_load_perf_global_ctrl) {
2961e876 1541 clear_atomic_switch_msr_special(vmx,
8bf00a52
GN
1542 VM_ENTRY_LOAD_IA32_PERF_GLOBAL_CTRL,
1543 VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL);
1544 return;
1545 }
1546 break;
110312c8
AK
1547 }
1548
61d2ef2c
AK
1549 for (i = 0; i < m->nr; ++i)
1550 if (m->guest[i].index == msr)
1551 break;
1552
1553 if (i == m->nr)
1554 return;
1555 --m->nr;
1556 m->guest[i] = m->guest[m->nr];
1557 m->host[i] = m->host[m->nr];
1558 vmcs_write32(VM_ENTRY_MSR_LOAD_COUNT, m->nr);
1559 vmcs_write32(VM_EXIT_MSR_LOAD_COUNT, m->nr);
1560}
1561
2961e876
GN
1562static void add_atomic_switch_msr_special(struct vcpu_vmx *vmx,
1563 unsigned long entry, unsigned long exit,
1564 unsigned long guest_val_vmcs, unsigned long host_val_vmcs,
1565 u64 guest_val, u64 host_val)
8bf00a52
GN
1566{
1567 vmcs_write64(guest_val_vmcs, guest_val);
1568 vmcs_write64(host_val_vmcs, host_val);
2961e876
GN
1569 vm_entry_controls_setbit(vmx, entry);
1570 vm_exit_controls_setbit(vmx, exit);
8bf00a52
GN
1571}
1572
61d2ef2c
AK
1573static void add_atomic_switch_msr(struct vcpu_vmx *vmx, unsigned msr,
1574 u64 guest_val, u64 host_val)
1575{
1576 unsigned i;
1577 struct msr_autoload *m = &vmx->msr_autoload;
1578
8bf00a52
GN
1579 switch (msr) {
1580 case MSR_EFER:
1581 if (cpu_has_load_ia32_efer) {
2961e876
GN
1582 add_atomic_switch_msr_special(vmx,
1583 VM_ENTRY_LOAD_IA32_EFER,
8bf00a52
GN
1584 VM_EXIT_LOAD_IA32_EFER,
1585 GUEST_IA32_EFER,
1586 HOST_IA32_EFER,
1587 guest_val, host_val);
1588 return;
1589 }
1590 break;
1591 case MSR_CORE_PERF_GLOBAL_CTRL:
1592 if (cpu_has_load_perf_global_ctrl) {
2961e876 1593 add_atomic_switch_msr_special(vmx,
8bf00a52
GN
1594 VM_ENTRY_LOAD_IA32_PERF_GLOBAL_CTRL,
1595 VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL,
1596 GUEST_IA32_PERF_GLOBAL_CTRL,
1597 HOST_IA32_PERF_GLOBAL_CTRL,
1598 guest_val, host_val);
1599 return;
1600 }
1601 break;
110312c8
AK
1602 }
1603
61d2ef2c
AK
1604 for (i = 0; i < m->nr; ++i)
1605 if (m->guest[i].index == msr)
1606 break;
1607
e7fc6f93 1608 if (i == NR_AUTOLOAD_MSRS) {
60266204 1609 printk_once(KERN_WARNING "Not enough msr switch entries. "
e7fc6f93
GN
1610 "Can't add msr %x\n", msr);
1611 return;
1612 } else if (i == m->nr) {
61d2ef2c
AK
1613 ++m->nr;
1614 vmcs_write32(VM_ENTRY_MSR_LOAD_COUNT, m->nr);
1615 vmcs_write32(VM_EXIT_MSR_LOAD_COUNT, m->nr);
1616 }
1617
1618 m->guest[i].index = msr;
1619 m->guest[i].value = guest_val;
1620 m->host[i].index = msr;
1621 m->host[i].value = host_val;
1622}
1623
33ed6329
AK
1624static void reload_tss(void)
1625{
33ed6329
AK
1626 /*
1627 * VT restores TR but not its size. Useless.
1628 */
d359192f 1629 struct desc_ptr *gdt = &__get_cpu_var(host_gdt);
a5f61300 1630 struct desc_struct *descs;
33ed6329 1631
d359192f 1632 descs = (void *)gdt->address;
33ed6329
AK
1633 descs[GDT_ENTRY_TSS].type = 9; /* available TSS */
1634 load_TR_desc();
33ed6329
AK
1635}
1636
92c0d900 1637static bool update_transition_efer(struct vcpu_vmx *vmx, int efer_offset)
2cc51560 1638{
3a34a881 1639 u64 guest_efer;
51c6cf66
AK
1640 u64 ignore_bits;
1641
f6801dff 1642 guest_efer = vmx->vcpu.arch.efer;
3a34a881 1643
51c6cf66 1644 /*
0fa06071 1645 * NX is emulated; LMA and LME handled by hardware; SCE meaningless
51c6cf66
AK
1646 * outside long mode
1647 */
1648 ignore_bits = EFER_NX | EFER_SCE;
1649#ifdef CONFIG_X86_64
1650 ignore_bits |= EFER_LMA | EFER_LME;
1651 /* SCE is meaningful only in long mode on Intel */
1652 if (guest_efer & EFER_LMA)
1653 ignore_bits &= ~(u64)EFER_SCE;
1654#endif
51c6cf66
AK
1655 guest_efer &= ~ignore_bits;
1656 guest_efer |= host_efer & ignore_bits;
26bb0981 1657 vmx->guest_msrs[efer_offset].data = guest_efer;
d5696725 1658 vmx->guest_msrs[efer_offset].mask = ~ignore_bits;
84ad33ef
AK
1659
1660 clear_atomic_switch_msr(vmx, MSR_EFER);
1661 /* On ept, can't emulate nx, and must switch nx atomically */
1662 if (enable_ept && ((vmx->vcpu.arch.efer ^ host_efer) & EFER_NX)) {
1663 guest_efer = vmx->vcpu.arch.efer;
1664 if (!(guest_efer & EFER_LMA))
1665 guest_efer &= ~EFER_LME;
1666 add_atomic_switch_msr(vmx, MSR_EFER, guest_efer, host_efer);
1667 return false;
1668 }
1669
26bb0981 1670 return true;
51c6cf66
AK
1671}
1672
2d49ec72
GN
1673static unsigned long segment_base(u16 selector)
1674{
d359192f 1675 struct desc_ptr *gdt = &__get_cpu_var(host_gdt);
2d49ec72
GN
1676 struct desc_struct *d;
1677 unsigned long table_base;
1678 unsigned long v;
1679
1680 if (!(selector & ~3))
1681 return 0;
1682
d359192f 1683 table_base = gdt->address;
2d49ec72
GN
1684
1685 if (selector & 4) { /* from ldt */
1686 u16 ldt_selector = kvm_read_ldt();
1687
1688 if (!(ldt_selector & ~3))
1689 return 0;
1690
1691 table_base = segment_base(ldt_selector);
1692 }
1693 d = (struct desc_struct *)(table_base + (selector & ~7));
1694 v = get_desc_base(d);
1695#ifdef CONFIG_X86_64
1696 if (d->s == 0 && (d->type == 2 || d->type == 9 || d->type == 11))
1697 v |= ((unsigned long)((struct ldttss_desc64 *)d)->base3) << 32;
1698#endif
1699 return v;
1700}
1701
1702static inline unsigned long kvm_read_tr_base(void)
1703{
1704 u16 tr;
1705 asm("str %0" : "=g"(tr));
1706 return segment_base(tr);
1707}
1708
04d2cc77 1709static void vmx_save_host_state(struct kvm_vcpu *vcpu)
33ed6329 1710{
04d2cc77 1711 struct vcpu_vmx *vmx = to_vmx(vcpu);
26bb0981 1712 int i;
04d2cc77 1713
a2fa3e9f 1714 if (vmx->host_state.loaded)
33ed6329
AK
1715 return;
1716
a2fa3e9f 1717 vmx->host_state.loaded = 1;
33ed6329
AK
1718 /*
1719 * Set host fs and gs selectors. Unfortunately, 22.2.3 does not
1720 * allow segment selectors with cpl > 0 or ti == 1.
1721 */
d6e88aec 1722 vmx->host_state.ldt_sel = kvm_read_ldt();
152d3f2f 1723 vmx->host_state.gs_ldt_reload_needed = vmx->host_state.ldt_sel;
9581d442 1724 savesegment(fs, vmx->host_state.fs_sel);
152d3f2f 1725 if (!(vmx->host_state.fs_sel & 7)) {
a2fa3e9f 1726 vmcs_write16(HOST_FS_SELECTOR, vmx->host_state.fs_sel);
152d3f2f
LV
1727 vmx->host_state.fs_reload_needed = 0;
1728 } else {
33ed6329 1729 vmcs_write16(HOST_FS_SELECTOR, 0);
152d3f2f 1730 vmx->host_state.fs_reload_needed = 1;
33ed6329 1731 }
9581d442 1732 savesegment(gs, vmx->host_state.gs_sel);
a2fa3e9f
GH
1733 if (!(vmx->host_state.gs_sel & 7))
1734 vmcs_write16(HOST_GS_SELECTOR, vmx->host_state.gs_sel);
33ed6329
AK
1735 else {
1736 vmcs_write16(HOST_GS_SELECTOR, 0);
152d3f2f 1737 vmx->host_state.gs_ldt_reload_needed = 1;
33ed6329
AK
1738 }
1739
b2da15ac
AK
1740#ifdef CONFIG_X86_64
1741 savesegment(ds, vmx->host_state.ds_sel);
1742 savesegment(es, vmx->host_state.es_sel);
1743#endif
1744
33ed6329
AK
1745#ifdef CONFIG_X86_64
1746 vmcs_writel(HOST_FS_BASE, read_msr(MSR_FS_BASE));
1747 vmcs_writel(HOST_GS_BASE, read_msr(MSR_GS_BASE));
1748#else
a2fa3e9f
GH
1749 vmcs_writel(HOST_FS_BASE, segment_base(vmx->host_state.fs_sel));
1750 vmcs_writel(HOST_GS_BASE, segment_base(vmx->host_state.gs_sel));
33ed6329 1751#endif
707c0874
AK
1752
1753#ifdef CONFIG_X86_64
c8770e7b
AK
1754 rdmsrl(MSR_KERNEL_GS_BASE, vmx->msr_host_kernel_gs_base);
1755 if (is_long_mode(&vmx->vcpu))
44ea2b17 1756 wrmsrl(MSR_KERNEL_GS_BASE, vmx->msr_guest_kernel_gs_base);
707c0874 1757#endif
da8999d3
LJ
1758 if (boot_cpu_has(X86_FEATURE_MPX))
1759 rdmsrl(MSR_IA32_BNDCFGS, vmx->host_state.msr_host_bndcfgs);
26bb0981
AK
1760 for (i = 0; i < vmx->save_nmsrs; ++i)
1761 kvm_set_shared_msr(vmx->guest_msrs[i].index,
d5696725
AK
1762 vmx->guest_msrs[i].data,
1763 vmx->guest_msrs[i].mask);
33ed6329
AK
1764}
1765
a9b21b62 1766static void __vmx_load_host_state(struct vcpu_vmx *vmx)
33ed6329 1767{
a2fa3e9f 1768 if (!vmx->host_state.loaded)
33ed6329
AK
1769 return;
1770
e1beb1d3 1771 ++vmx->vcpu.stat.host_state_reload;
a2fa3e9f 1772 vmx->host_state.loaded = 0;
c8770e7b
AK
1773#ifdef CONFIG_X86_64
1774 if (is_long_mode(&vmx->vcpu))
1775 rdmsrl(MSR_KERNEL_GS_BASE, vmx->msr_guest_kernel_gs_base);
1776#endif
152d3f2f 1777 if (vmx->host_state.gs_ldt_reload_needed) {
d6e88aec 1778 kvm_load_ldt(vmx->host_state.ldt_sel);
33ed6329 1779#ifdef CONFIG_X86_64
9581d442 1780 load_gs_index(vmx->host_state.gs_sel);
9581d442
AK
1781#else
1782 loadsegment(gs, vmx->host_state.gs_sel);
33ed6329 1783#endif
33ed6329 1784 }
0a77fe4c
AK
1785 if (vmx->host_state.fs_reload_needed)
1786 loadsegment(fs, vmx->host_state.fs_sel);
b2da15ac
AK
1787#ifdef CONFIG_X86_64
1788 if (unlikely(vmx->host_state.ds_sel | vmx->host_state.es_sel)) {
1789 loadsegment(ds, vmx->host_state.ds_sel);
1790 loadsegment(es, vmx->host_state.es_sel);
1791 }
b2da15ac 1792#endif
152d3f2f 1793 reload_tss();
44ea2b17 1794#ifdef CONFIG_X86_64
c8770e7b 1795 wrmsrl(MSR_KERNEL_GS_BASE, vmx->msr_host_kernel_gs_base);
44ea2b17 1796#endif
da8999d3
LJ
1797 if (vmx->host_state.msr_host_bndcfgs)
1798 wrmsrl(MSR_IA32_BNDCFGS, vmx->host_state.msr_host_bndcfgs);
b1a74bf8
SS
1799 /*
1800 * If the FPU is not active (through the host task or
1801 * the guest vcpu), then restore the cr0.TS bit.
1802 */
1803 if (!user_has_fpu() && !vmx->vcpu.guest_fpu_loaded)
1804 stts();
3444d7da 1805 load_gdt(&__get_cpu_var(host_gdt));
33ed6329
AK
1806}
1807
a9b21b62
AK
1808static void vmx_load_host_state(struct vcpu_vmx *vmx)
1809{
1810 preempt_disable();
1811 __vmx_load_host_state(vmx);
1812 preempt_enable();
1813}
1814
6aa8b732
AK
1815/*
1816 * Switches to specified vcpu, until a matching vcpu_put(), but assumes
1817 * vcpu mutex is already taken.
1818 */
15ad7146 1819static void vmx_vcpu_load(struct kvm_vcpu *vcpu, int cpu)
6aa8b732 1820{
a2fa3e9f 1821 struct vcpu_vmx *vmx = to_vmx(vcpu);
4610c9cc 1822 u64 phys_addr = __pa(per_cpu(vmxarea, cpu));
6aa8b732 1823
4610c9cc
DX
1824 if (!vmm_exclusive)
1825 kvm_cpu_vmxon(phys_addr);
d462b819
NHE
1826 else if (vmx->loaded_vmcs->cpu != cpu)
1827 loaded_vmcs_clear(vmx->loaded_vmcs);
6aa8b732 1828
d462b819
NHE
1829 if (per_cpu(current_vmcs, cpu) != vmx->loaded_vmcs->vmcs) {
1830 per_cpu(current_vmcs, cpu) = vmx->loaded_vmcs->vmcs;
1831 vmcs_load(vmx->loaded_vmcs->vmcs);
6aa8b732
AK
1832 }
1833
d462b819 1834 if (vmx->loaded_vmcs->cpu != cpu) {
d359192f 1835 struct desc_ptr *gdt = &__get_cpu_var(host_gdt);
6aa8b732
AK
1836 unsigned long sysenter_esp;
1837
a8eeb04a 1838 kvm_make_request(KVM_REQ_TLB_FLUSH, vcpu);
92fe13be 1839 local_irq_disable();
8f536b76 1840 crash_disable_local_vmclear(cpu);
5a560f8b
XG
1841
1842 /*
1843 * Read loaded_vmcs->cpu should be before fetching
1844 * loaded_vmcs->loaded_vmcss_on_cpu_link.
1845 * See the comments in __loaded_vmcs_clear().
1846 */
1847 smp_rmb();
1848
d462b819
NHE
1849 list_add(&vmx->loaded_vmcs->loaded_vmcss_on_cpu_link,
1850 &per_cpu(loaded_vmcss_on_cpu, cpu));
8f536b76 1851 crash_enable_local_vmclear(cpu);
92fe13be
DX
1852 local_irq_enable();
1853
6aa8b732
AK
1854 /*
1855 * Linux uses per-cpu TSS and GDT, so set these when switching
1856 * processors.
1857 */
d6e88aec 1858 vmcs_writel(HOST_TR_BASE, kvm_read_tr_base()); /* 22.2.4 */
d359192f 1859 vmcs_writel(HOST_GDTR_BASE, gdt->address); /* 22.2.4 */
6aa8b732
AK
1860
1861 rdmsrl(MSR_IA32_SYSENTER_ESP, sysenter_esp);
1862 vmcs_writel(HOST_IA32_SYSENTER_ESP, sysenter_esp); /* 22.2.3 */
d462b819 1863 vmx->loaded_vmcs->cpu = cpu;
6aa8b732 1864 }
6aa8b732
AK
1865}
1866
1867static void vmx_vcpu_put(struct kvm_vcpu *vcpu)
1868{
a9b21b62 1869 __vmx_load_host_state(to_vmx(vcpu));
4610c9cc 1870 if (!vmm_exclusive) {
d462b819
NHE
1871 __loaded_vmcs_clear(to_vmx(vcpu)->loaded_vmcs);
1872 vcpu->cpu = -1;
4610c9cc
DX
1873 kvm_cpu_vmxoff();
1874 }
6aa8b732
AK
1875}
1876
5fd86fcf
AK
1877static void vmx_fpu_activate(struct kvm_vcpu *vcpu)
1878{
81231c69
AK
1879 ulong cr0;
1880
5fd86fcf
AK
1881 if (vcpu->fpu_active)
1882 return;
1883 vcpu->fpu_active = 1;
81231c69
AK
1884 cr0 = vmcs_readl(GUEST_CR0);
1885 cr0 &= ~(X86_CR0_TS | X86_CR0_MP);
1886 cr0 |= kvm_read_cr0_bits(vcpu, X86_CR0_TS | X86_CR0_MP);
1887 vmcs_writel(GUEST_CR0, cr0);
5fd86fcf 1888 update_exception_bitmap(vcpu);
edcafe3c 1889 vcpu->arch.cr0_guest_owned_bits = X86_CR0_TS;
36cf24e0
NHE
1890 if (is_guest_mode(vcpu))
1891 vcpu->arch.cr0_guest_owned_bits &=
1892 ~get_vmcs12(vcpu)->cr0_guest_host_mask;
edcafe3c 1893 vmcs_writel(CR0_GUEST_HOST_MASK, ~vcpu->arch.cr0_guest_owned_bits);
5fd86fcf
AK
1894}
1895
edcafe3c
AK
1896static void vmx_decache_cr0_guest_bits(struct kvm_vcpu *vcpu);
1897
fe3ef05c
NHE
1898/*
1899 * Return the cr0 value that a nested guest would read. This is a combination
1900 * of the real cr0 used to run the guest (guest_cr0), and the bits shadowed by
1901 * its hypervisor (cr0_read_shadow).
1902 */
1903static inline unsigned long nested_read_cr0(struct vmcs12 *fields)
1904{
1905 return (fields->guest_cr0 & ~fields->cr0_guest_host_mask) |
1906 (fields->cr0_read_shadow & fields->cr0_guest_host_mask);
1907}
1908static inline unsigned long nested_read_cr4(struct vmcs12 *fields)
1909{
1910 return (fields->guest_cr4 & ~fields->cr4_guest_host_mask) |
1911 (fields->cr4_read_shadow & fields->cr4_guest_host_mask);
1912}
1913
5fd86fcf
AK
1914static void vmx_fpu_deactivate(struct kvm_vcpu *vcpu)
1915{
36cf24e0
NHE
1916 /* Note that there is no vcpu->fpu_active = 0 here. The caller must
1917 * set this *before* calling this function.
1918 */
edcafe3c 1919 vmx_decache_cr0_guest_bits(vcpu);
81231c69 1920 vmcs_set_bits(GUEST_CR0, X86_CR0_TS | X86_CR0_MP);
5fd86fcf 1921 update_exception_bitmap(vcpu);
edcafe3c
AK
1922 vcpu->arch.cr0_guest_owned_bits = 0;
1923 vmcs_writel(CR0_GUEST_HOST_MASK, ~vcpu->arch.cr0_guest_owned_bits);
36cf24e0
NHE
1924 if (is_guest_mode(vcpu)) {
1925 /*
1926 * L1's specified read shadow might not contain the TS bit,
1927 * so now that we turned on shadowing of this bit, we need to
1928 * set this bit of the shadow. Like in nested_vmx_run we need
1929 * nested_read_cr0(vmcs12), but vmcs12->guest_cr0 is not yet
1930 * up-to-date here because we just decached cr0.TS (and we'll
1931 * only update vmcs12->guest_cr0 on nested exit).
1932 */
1933 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
1934 vmcs12->guest_cr0 = (vmcs12->guest_cr0 & ~X86_CR0_TS) |
1935 (vcpu->arch.cr0 & X86_CR0_TS);
1936 vmcs_writel(CR0_READ_SHADOW, nested_read_cr0(vmcs12));
1937 } else
1938 vmcs_writel(CR0_READ_SHADOW, vcpu->arch.cr0);
5fd86fcf
AK
1939}
1940
6aa8b732
AK
1941static unsigned long vmx_get_rflags(struct kvm_vcpu *vcpu)
1942{
78ac8b47 1943 unsigned long rflags, save_rflags;
345dcaa8 1944
6de12732
AK
1945 if (!test_bit(VCPU_EXREG_RFLAGS, (ulong *)&vcpu->arch.regs_avail)) {
1946 __set_bit(VCPU_EXREG_RFLAGS, (ulong *)&vcpu->arch.regs_avail);
1947 rflags = vmcs_readl(GUEST_RFLAGS);
1948 if (to_vmx(vcpu)->rmode.vm86_active) {
1949 rflags &= RMODE_GUEST_OWNED_EFLAGS_BITS;
1950 save_rflags = to_vmx(vcpu)->rmode.save_rflags;
1951 rflags |= save_rflags & ~RMODE_GUEST_OWNED_EFLAGS_BITS;
1952 }
1953 to_vmx(vcpu)->rflags = rflags;
78ac8b47 1954 }
6de12732 1955 return to_vmx(vcpu)->rflags;
6aa8b732
AK
1956}
1957
1958static void vmx_set_rflags(struct kvm_vcpu *vcpu, unsigned long rflags)
1959{
6de12732
AK
1960 __set_bit(VCPU_EXREG_RFLAGS, (ulong *)&vcpu->arch.regs_avail);
1961 to_vmx(vcpu)->rflags = rflags;
78ac8b47
AK
1962 if (to_vmx(vcpu)->rmode.vm86_active) {
1963 to_vmx(vcpu)->rmode.save_rflags = rflags;
053de044 1964 rflags |= X86_EFLAGS_IOPL | X86_EFLAGS_VM;
78ac8b47 1965 }
6aa8b732
AK
1966 vmcs_writel(GUEST_RFLAGS, rflags);
1967}
1968
37ccdcbe 1969static u32 vmx_get_interrupt_shadow(struct kvm_vcpu *vcpu)
2809f5d2
GC
1970{
1971 u32 interruptibility = vmcs_read32(GUEST_INTERRUPTIBILITY_INFO);
1972 int ret = 0;
1973
1974 if (interruptibility & GUEST_INTR_STATE_STI)
48005f64 1975 ret |= KVM_X86_SHADOW_INT_STI;
2809f5d2 1976 if (interruptibility & GUEST_INTR_STATE_MOV_SS)
48005f64 1977 ret |= KVM_X86_SHADOW_INT_MOV_SS;
2809f5d2 1978
37ccdcbe 1979 return ret;
2809f5d2
GC
1980}
1981
1982static void vmx_set_interrupt_shadow(struct kvm_vcpu *vcpu, int mask)
1983{
1984 u32 interruptibility_old = vmcs_read32(GUEST_INTERRUPTIBILITY_INFO);
1985 u32 interruptibility = interruptibility_old;
1986
1987 interruptibility &= ~(GUEST_INTR_STATE_STI | GUEST_INTR_STATE_MOV_SS);
1988
48005f64 1989 if (mask & KVM_X86_SHADOW_INT_MOV_SS)
2809f5d2 1990 interruptibility |= GUEST_INTR_STATE_MOV_SS;
48005f64 1991 else if (mask & KVM_X86_SHADOW_INT_STI)
2809f5d2
GC
1992 interruptibility |= GUEST_INTR_STATE_STI;
1993
1994 if ((interruptibility != interruptibility_old))
1995 vmcs_write32(GUEST_INTERRUPTIBILITY_INFO, interruptibility);
1996}
1997
6aa8b732
AK
1998static void skip_emulated_instruction(struct kvm_vcpu *vcpu)
1999{
2000 unsigned long rip;
6aa8b732 2001
5fdbf976 2002 rip = kvm_rip_read(vcpu);
6aa8b732 2003 rip += vmcs_read32(VM_EXIT_INSTRUCTION_LEN);
5fdbf976 2004 kvm_rip_write(vcpu, rip);
6aa8b732 2005
2809f5d2
GC
2006 /* skipping an emulated instruction also counts */
2007 vmx_set_interrupt_shadow(vcpu, 0);
6aa8b732
AK
2008}
2009
0b6ac343
NHE
2010/*
2011 * KVM wants to inject page-faults which it got to the guest. This function
2012 * checks whether in a nested guest, we need to inject them to L1 or L2.
0b6ac343 2013 */
e011c663 2014static int nested_vmx_check_exception(struct kvm_vcpu *vcpu, unsigned nr)
0b6ac343
NHE
2015{
2016 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
2017
e011c663 2018 if (!(vmcs12->exception_bitmap & (1u << nr)))
0b6ac343
NHE
2019 return 0;
2020
533558bc
JK
2021 nested_vmx_vmexit(vcpu, to_vmx(vcpu)->exit_reason,
2022 vmcs_read32(VM_EXIT_INTR_INFO),
2023 vmcs_readl(EXIT_QUALIFICATION));
0b6ac343
NHE
2024 return 1;
2025}
2026
298101da 2027static void vmx_queue_exception(struct kvm_vcpu *vcpu, unsigned nr,
ce7ddec4
JR
2028 bool has_error_code, u32 error_code,
2029 bool reinject)
298101da 2030{
77ab6db0 2031 struct vcpu_vmx *vmx = to_vmx(vcpu);
8ab2d2e2 2032 u32 intr_info = nr | INTR_INFO_VALID_MASK;
77ab6db0 2033
e011c663
GN
2034 if (!reinject && is_guest_mode(vcpu) &&
2035 nested_vmx_check_exception(vcpu, nr))
0b6ac343
NHE
2036 return;
2037
8ab2d2e2 2038 if (has_error_code) {
77ab6db0 2039 vmcs_write32(VM_ENTRY_EXCEPTION_ERROR_CODE, error_code);
8ab2d2e2
JK
2040 intr_info |= INTR_INFO_DELIVER_CODE_MASK;
2041 }
77ab6db0 2042
7ffd92c5 2043 if (vmx->rmode.vm86_active) {
71f9833b
SH
2044 int inc_eip = 0;
2045 if (kvm_exception_is_soft(nr))
2046 inc_eip = vcpu->arch.event_exit_inst_len;
2047 if (kvm_inject_realmode_interrupt(vcpu, nr, inc_eip) != EMULATE_DONE)
a92601bb 2048 kvm_make_request(KVM_REQ_TRIPLE_FAULT, vcpu);
77ab6db0
JK
2049 return;
2050 }
2051
66fd3f7f
GN
2052 if (kvm_exception_is_soft(nr)) {
2053 vmcs_write32(VM_ENTRY_INSTRUCTION_LEN,
2054 vmx->vcpu.arch.event_exit_inst_len);
8ab2d2e2
JK
2055 intr_info |= INTR_TYPE_SOFT_EXCEPTION;
2056 } else
2057 intr_info |= INTR_TYPE_HARD_EXCEPTION;
2058
2059 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, intr_info);
298101da
AK
2060}
2061
4e47c7a6
SY
2062static bool vmx_rdtscp_supported(void)
2063{
2064 return cpu_has_vmx_rdtscp();
2065}
2066
ad756a16
MJ
2067static bool vmx_invpcid_supported(void)
2068{
2069 return cpu_has_vmx_invpcid() && enable_ept;
2070}
2071
a75beee6
ED
2072/*
2073 * Swap MSR entry in host/guest MSR entry array.
2074 */
8b9cf98c 2075static void move_msr_up(struct vcpu_vmx *vmx, int from, int to)
a75beee6 2076{
26bb0981 2077 struct shared_msr_entry tmp;
a2fa3e9f
GH
2078
2079 tmp = vmx->guest_msrs[to];
2080 vmx->guest_msrs[to] = vmx->guest_msrs[from];
2081 vmx->guest_msrs[from] = tmp;
a75beee6
ED
2082}
2083
8d14695f
YZ
2084static void vmx_set_msr_bitmap(struct kvm_vcpu *vcpu)
2085{
2086 unsigned long *msr_bitmap;
2087
2088 if (irqchip_in_kernel(vcpu->kvm) && apic_x2apic_mode(vcpu->arch.apic)) {
2089 if (is_long_mode(vcpu))
2090 msr_bitmap = vmx_msr_bitmap_longmode_x2apic;
2091 else
2092 msr_bitmap = vmx_msr_bitmap_legacy_x2apic;
2093 } else {
2094 if (is_long_mode(vcpu))
2095 msr_bitmap = vmx_msr_bitmap_longmode;
2096 else
2097 msr_bitmap = vmx_msr_bitmap_legacy;
2098 }
2099
2100 vmcs_write64(MSR_BITMAP, __pa(msr_bitmap));
2101}
2102
e38aea3e
AK
2103/*
2104 * Set up the vmcs to automatically save and restore system
2105 * msrs. Don't touch the 64-bit msrs if the guest is in legacy
2106 * mode, as fiddling with msrs is very expensive.
2107 */
8b9cf98c 2108static void setup_msrs(struct vcpu_vmx *vmx)
e38aea3e 2109{
26bb0981 2110 int save_nmsrs, index;
e38aea3e 2111
a75beee6
ED
2112 save_nmsrs = 0;
2113#ifdef CONFIG_X86_64
8b9cf98c 2114 if (is_long_mode(&vmx->vcpu)) {
8b9cf98c 2115 index = __find_msr_index(vmx, MSR_SYSCALL_MASK);
a75beee6 2116 if (index >= 0)
8b9cf98c
RR
2117 move_msr_up(vmx, index, save_nmsrs++);
2118 index = __find_msr_index(vmx, MSR_LSTAR);
a75beee6 2119 if (index >= 0)
8b9cf98c
RR
2120 move_msr_up(vmx, index, save_nmsrs++);
2121 index = __find_msr_index(vmx, MSR_CSTAR);
a75beee6 2122 if (index >= 0)
8b9cf98c 2123 move_msr_up(vmx, index, save_nmsrs++);
4e47c7a6
SY
2124 index = __find_msr_index(vmx, MSR_TSC_AUX);
2125 if (index >= 0 && vmx->rdtscp_enabled)
2126 move_msr_up(vmx, index, save_nmsrs++);
a75beee6 2127 /*
8c06585d 2128 * MSR_STAR is only needed on long mode guests, and only
a75beee6
ED
2129 * if efer.sce is enabled.
2130 */
8c06585d 2131 index = __find_msr_index(vmx, MSR_STAR);
f6801dff 2132 if ((index >= 0) && (vmx->vcpu.arch.efer & EFER_SCE))
8b9cf98c 2133 move_msr_up(vmx, index, save_nmsrs++);
a75beee6
ED
2134 }
2135#endif
92c0d900
AK
2136 index = __find_msr_index(vmx, MSR_EFER);
2137 if (index >= 0 && update_transition_efer(vmx, index))
26bb0981 2138 move_msr_up(vmx, index, save_nmsrs++);
e38aea3e 2139
26bb0981 2140 vmx->save_nmsrs = save_nmsrs;
5897297b 2141
8d14695f
YZ
2142 if (cpu_has_vmx_msr_bitmap())
2143 vmx_set_msr_bitmap(&vmx->vcpu);
e38aea3e
AK
2144}
2145
6aa8b732
AK
2146/*
2147 * reads and returns guest's timestamp counter "register"
2148 * guest_tsc = host_tsc + tsc_offset -- 21.3
2149 */
2150static u64 guest_read_tsc(void)
2151{
2152 u64 host_tsc, tsc_offset;
2153
2154 rdtscll(host_tsc);
2155 tsc_offset = vmcs_read64(TSC_OFFSET);
2156 return host_tsc + tsc_offset;
2157}
2158
d5c1785d
NHE
2159/*
2160 * Like guest_read_tsc, but always returns L1's notion of the timestamp
2161 * counter, even if a nested guest (L2) is currently running.
2162 */
48d89b92 2163static u64 vmx_read_l1_tsc(struct kvm_vcpu *vcpu, u64 host_tsc)
d5c1785d 2164{
886b470c 2165 u64 tsc_offset;
d5c1785d 2166
d5c1785d
NHE
2167 tsc_offset = is_guest_mode(vcpu) ?
2168 to_vmx(vcpu)->nested.vmcs01_tsc_offset :
2169 vmcs_read64(TSC_OFFSET);
2170 return host_tsc + tsc_offset;
2171}
2172
4051b188 2173/*
cc578287
ZA
2174 * Engage any workarounds for mis-matched TSC rates. Currently limited to
2175 * software catchup for faster rates on slower CPUs.
4051b188 2176 */
cc578287 2177static void vmx_set_tsc_khz(struct kvm_vcpu *vcpu, u32 user_tsc_khz, bool scale)
4051b188 2178{
cc578287
ZA
2179 if (!scale)
2180 return;
2181
2182 if (user_tsc_khz > tsc_khz) {
2183 vcpu->arch.tsc_catchup = 1;
2184 vcpu->arch.tsc_always_catchup = 1;
2185 } else
2186 WARN(1, "user requested TSC rate below hardware speed\n");
4051b188
JR
2187}
2188
ba904635
WA
2189static u64 vmx_read_tsc_offset(struct kvm_vcpu *vcpu)
2190{
2191 return vmcs_read64(TSC_OFFSET);
2192}
2193
6aa8b732 2194/*
99e3e30a 2195 * writes 'offset' into guest's timestamp counter offset register
6aa8b732 2196 */
99e3e30a 2197static void vmx_write_tsc_offset(struct kvm_vcpu *vcpu, u64 offset)
6aa8b732 2198{
27fc51b2 2199 if (is_guest_mode(vcpu)) {
7991825b 2200 /*
27fc51b2
NHE
2201 * We're here if L1 chose not to trap WRMSR to TSC. According
2202 * to the spec, this should set L1's TSC; The offset that L1
2203 * set for L2 remains unchanged, and still needs to be added
2204 * to the newly set TSC to get L2's TSC.
7991825b 2205 */
27fc51b2
NHE
2206 struct vmcs12 *vmcs12;
2207 to_vmx(vcpu)->nested.vmcs01_tsc_offset = offset;
2208 /* recalculate vmcs02.TSC_OFFSET: */
2209 vmcs12 = get_vmcs12(vcpu);
2210 vmcs_write64(TSC_OFFSET, offset +
2211 (nested_cpu_has(vmcs12, CPU_BASED_USE_TSC_OFFSETING) ?
2212 vmcs12->tsc_offset : 0));
2213 } else {
489223ed
YY
2214 trace_kvm_write_tsc_offset(vcpu->vcpu_id,
2215 vmcs_read64(TSC_OFFSET), offset);
27fc51b2
NHE
2216 vmcs_write64(TSC_OFFSET, offset);
2217 }
6aa8b732
AK
2218}
2219
f1e2b260 2220static void vmx_adjust_tsc_offset(struct kvm_vcpu *vcpu, s64 adjustment, bool host)
e48672fa
ZA
2221{
2222 u64 offset = vmcs_read64(TSC_OFFSET);
489223ed 2223
e48672fa 2224 vmcs_write64(TSC_OFFSET, offset + adjustment);
7991825b
NHE
2225 if (is_guest_mode(vcpu)) {
2226 /* Even when running L2, the adjustment needs to apply to L1 */
2227 to_vmx(vcpu)->nested.vmcs01_tsc_offset += adjustment;
489223ed
YY
2228 } else
2229 trace_kvm_write_tsc_offset(vcpu->vcpu_id, offset,
2230 offset + adjustment);
e48672fa
ZA
2231}
2232
857e4099
JR
2233static u64 vmx_compute_tsc_offset(struct kvm_vcpu *vcpu, u64 target_tsc)
2234{
2235 return target_tsc - native_read_tsc();
2236}
2237
801d3424
NHE
2238static bool guest_cpuid_has_vmx(struct kvm_vcpu *vcpu)
2239{
2240 struct kvm_cpuid_entry2 *best = kvm_find_cpuid_entry(vcpu, 1, 0);
2241 return best && (best->ecx & (1 << (X86_FEATURE_VMX & 31)));
2242}
2243
2244/*
2245 * nested_vmx_allowed() checks whether a guest should be allowed to use VMX
2246 * instructions and MSRs (i.e., nested VMX). Nested VMX is disabled for
2247 * all guests if the "nested" module option is off, and can also be disabled
2248 * for a single guest by disabling its VMX cpuid bit.
2249 */
2250static inline bool nested_vmx_allowed(struct kvm_vcpu *vcpu)
2251{
2252 return nested && guest_cpuid_has_vmx(vcpu);
2253}
2254
b87a51ae
NHE
2255/*
2256 * nested_vmx_setup_ctls_msrs() sets up variables containing the values to be
2257 * returned for the various VMX controls MSRs when nested VMX is enabled.
2258 * The same values should also be used to verify that vmcs12 control fields are
2259 * valid during nested entry from L1 to L2.
2260 * Each of these control msrs has a low and high 32-bit half: A low bit is on
2261 * if the corresponding bit in the (32-bit) control field *must* be on, and a
2262 * bit in the high half is on if the corresponding bit in the control field
2263 * may be on. See also vmx_control_verify().
2264 * TODO: allow these variables to be modified (downgraded) by module options
2265 * or other means.
2266 */
2267static u32 nested_vmx_procbased_ctls_low, nested_vmx_procbased_ctls_high;
3dcdf3ec 2268static u32 nested_vmx_true_procbased_ctls_low;
b87a51ae
NHE
2269static u32 nested_vmx_secondary_ctls_low, nested_vmx_secondary_ctls_high;
2270static u32 nested_vmx_pinbased_ctls_low, nested_vmx_pinbased_ctls_high;
2271static u32 nested_vmx_exit_ctls_low, nested_vmx_exit_ctls_high;
2996fca0 2272static u32 nested_vmx_true_exit_ctls_low;
b87a51ae 2273static u32 nested_vmx_entry_ctls_low, nested_vmx_entry_ctls_high;
2996fca0 2274static u32 nested_vmx_true_entry_ctls_low;
c18911a2 2275static u32 nested_vmx_misc_low, nested_vmx_misc_high;
bfd0a56b 2276static u32 nested_vmx_ept_caps;
b87a51ae
NHE
2277static __init void nested_vmx_setup_ctls_msrs(void)
2278{
2279 /*
2280 * Note that as a general rule, the high half of the MSRs (bits in
2281 * the control fields which may be 1) should be initialized by the
2282 * intersection of the underlying hardware's MSR (i.e., features which
2283 * can be supported) and the list of features we want to expose -
2284 * because they are known to be properly supported in our code.
2285 * Also, usually, the low half of the MSRs (bits which must be 1) can
2286 * be set to 0, meaning that L1 may turn off any of these bits. The
2287 * reason is that if one of these bits is necessary, it will appear
2288 * in vmcs01 and prepare_vmcs02, when it bitwise-or's the control
2289 * fields of vmcs01 and vmcs02, will turn these bits off - and
2290 * nested_vmx_exit_handled() will not pass related exits to L1.
2291 * These rules have exceptions below.
2292 */
2293
2294 /* pin-based controls */
eabeaacc
JK
2295 rdmsr(MSR_IA32_VMX_PINBASED_CTLS,
2296 nested_vmx_pinbased_ctls_low, nested_vmx_pinbased_ctls_high);
eabeaacc
JK
2297 nested_vmx_pinbased_ctls_low |= PIN_BASED_ALWAYSON_WITHOUT_TRUE_MSR;
2298 nested_vmx_pinbased_ctls_high &= PIN_BASED_EXT_INTR_MASK |
f4124500
JK
2299 PIN_BASED_NMI_EXITING | PIN_BASED_VIRTUAL_NMIS;
2300 nested_vmx_pinbased_ctls_high |= PIN_BASED_ALWAYSON_WITHOUT_TRUE_MSR |
0238ea91 2301 PIN_BASED_VMX_PREEMPTION_TIMER;
b87a51ae 2302
3dbcd8da 2303 /* exit controls */
c0dfee58
ACL
2304 rdmsr(MSR_IA32_VMX_EXIT_CTLS,
2305 nested_vmx_exit_ctls_low, nested_vmx_exit_ctls_high);
33fb20c3 2306 nested_vmx_exit_ctls_low = VM_EXIT_ALWAYSON_WITHOUT_TRUE_MSR;
e0ba1a6f 2307
c0dfee58 2308 nested_vmx_exit_ctls_high &=
b87a51ae 2309#ifdef CONFIG_X86_64
c0dfee58 2310 VM_EXIT_HOST_ADDR_SPACE_SIZE |
b87a51ae 2311#endif
f4124500
JK
2312 VM_EXIT_LOAD_IA32_PAT | VM_EXIT_SAVE_IA32_PAT;
2313 nested_vmx_exit_ctls_high |= VM_EXIT_ALWAYSON_WITHOUT_TRUE_MSR |
2314 VM_EXIT_LOAD_IA32_EFER | VM_EXIT_SAVE_IA32_EFER |
e0ba1a6f
BD
2315 VM_EXIT_SAVE_VMX_PREEMPTION_TIMER | VM_EXIT_ACK_INTR_ON_EXIT;
2316
36be0b9d
PB
2317 if (vmx_mpx_supported())
2318 nested_vmx_exit_ctls_high |= VM_EXIT_CLEAR_BNDCFGS;
b87a51ae 2319
2996fca0
JK
2320 /* We support free control of debug control saving. */
2321 nested_vmx_true_exit_ctls_low = nested_vmx_exit_ctls_low &
2322 ~VM_EXIT_SAVE_DEBUG_CONTROLS;
2323
b87a51ae
NHE
2324 /* entry controls */
2325 rdmsr(MSR_IA32_VMX_ENTRY_CTLS,
2326 nested_vmx_entry_ctls_low, nested_vmx_entry_ctls_high);
33fb20c3 2327 nested_vmx_entry_ctls_low = VM_ENTRY_ALWAYSON_WITHOUT_TRUE_MSR;
b87a51ae 2328 nested_vmx_entry_ctls_high &=
57435349
JK
2329#ifdef CONFIG_X86_64
2330 VM_ENTRY_IA32E_MODE |
2331#endif
2332 VM_ENTRY_LOAD_IA32_PAT;
8049d651
NHE
2333 nested_vmx_entry_ctls_high |= (VM_ENTRY_ALWAYSON_WITHOUT_TRUE_MSR |
2334 VM_ENTRY_LOAD_IA32_EFER);
36be0b9d
PB
2335 if (vmx_mpx_supported())
2336 nested_vmx_entry_ctls_high |= VM_ENTRY_LOAD_BNDCFGS;
57435349 2337
2996fca0
JK
2338 /* We support free control of debug control loading. */
2339 nested_vmx_true_entry_ctls_low = nested_vmx_entry_ctls_low &
2340 ~VM_ENTRY_LOAD_DEBUG_CONTROLS;
2341
b87a51ae
NHE
2342 /* cpu-based controls */
2343 rdmsr(MSR_IA32_VMX_PROCBASED_CTLS,
2344 nested_vmx_procbased_ctls_low, nested_vmx_procbased_ctls_high);
560b7ee1 2345 nested_vmx_procbased_ctls_low = CPU_BASED_ALWAYSON_WITHOUT_TRUE_MSR;
b87a51ae 2346 nested_vmx_procbased_ctls_high &=
a294c9bb
JK
2347 CPU_BASED_VIRTUAL_INTR_PENDING |
2348 CPU_BASED_VIRTUAL_NMI_PENDING | CPU_BASED_USE_TSC_OFFSETING |
b87a51ae
NHE
2349 CPU_BASED_HLT_EXITING | CPU_BASED_INVLPG_EXITING |
2350 CPU_BASED_MWAIT_EXITING | CPU_BASED_CR3_LOAD_EXITING |
2351 CPU_BASED_CR3_STORE_EXITING |
2352#ifdef CONFIG_X86_64
2353 CPU_BASED_CR8_LOAD_EXITING | CPU_BASED_CR8_STORE_EXITING |
2354#endif
2355 CPU_BASED_MOV_DR_EXITING | CPU_BASED_UNCOND_IO_EXITING |
2356 CPU_BASED_USE_IO_BITMAPS | CPU_BASED_MONITOR_EXITING |
dbcb4e79 2357 CPU_BASED_RDPMC_EXITING | CPU_BASED_RDTSC_EXITING |
a7c0b07d 2358 CPU_BASED_PAUSE_EXITING | CPU_BASED_TPR_SHADOW |
b87a51ae
NHE
2359 CPU_BASED_ACTIVATE_SECONDARY_CONTROLS;
2360 /*
2361 * We can allow some features even when not supported by the
2362 * hardware. For example, L1 can specify an MSR bitmap - and we
2363 * can use it to avoid exits to L1 - even when L0 runs L2
2364 * without MSR bitmaps.
2365 */
560b7ee1
JK
2366 nested_vmx_procbased_ctls_high |= CPU_BASED_ALWAYSON_WITHOUT_TRUE_MSR |
2367 CPU_BASED_USE_MSR_BITMAPS;
b87a51ae 2368
3dcdf3ec
JK
2369 /* We support free control of CR3 access interception. */
2370 nested_vmx_true_procbased_ctls_low = nested_vmx_procbased_ctls_low &
2371 ~(CPU_BASED_CR3_LOAD_EXITING | CPU_BASED_CR3_STORE_EXITING);
2372
b87a51ae
NHE
2373 /* secondary cpu-based controls */
2374 rdmsr(MSR_IA32_VMX_PROCBASED_CTLS2,
2375 nested_vmx_secondary_ctls_low, nested_vmx_secondary_ctls_high);
2376 nested_vmx_secondary_ctls_low = 0;
2377 nested_vmx_secondary_ctls_high &=
d6851fbe 2378 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES |
92fbc7b1 2379 SECONDARY_EXEC_UNRESTRICTED_GUEST |
d6851fbe 2380 SECONDARY_EXEC_WBINVD_EXITING;
c18911a2 2381
afa61f75
NHE
2382 if (enable_ept) {
2383 /* nested EPT: emulate EPT also to L1 */
2384 nested_vmx_secondary_ctls_high |= SECONDARY_EXEC_ENABLE_EPT;
ca72d970 2385 nested_vmx_ept_caps = VMX_EPT_PAGE_WALK_4_BIT |
d3134dbf
JK
2386 VMX_EPTP_WB_BIT | VMX_EPT_2MB_PAGE_BIT |
2387 VMX_EPT_INVEPT_BIT;
afa61f75
NHE
2388 nested_vmx_ept_caps &= vmx_capability.ept;
2389 /*
4b855078
BD
2390 * For nested guests, we don't do anything specific
2391 * for single context invalidation. Hence, only advertise
2392 * support for global context invalidation.
afa61f75 2393 */
4b855078 2394 nested_vmx_ept_caps |= VMX_EPT_EXTENT_GLOBAL_BIT;
afa61f75
NHE
2395 } else
2396 nested_vmx_ept_caps = 0;
2397
c18911a2
JK
2398 /* miscellaneous data */
2399 rdmsr(MSR_IA32_VMX_MISC, nested_vmx_misc_low, nested_vmx_misc_high);
f4124500
JK
2400 nested_vmx_misc_low &= VMX_MISC_SAVE_EFER_LMA;
2401 nested_vmx_misc_low |= VMX_MISC_EMULATED_PREEMPTION_TIMER_RATE |
2402 VMX_MISC_ACTIVITY_HLT;
c18911a2 2403 nested_vmx_misc_high = 0;
b87a51ae
NHE
2404}
2405
2406static inline bool vmx_control_verify(u32 control, u32 low, u32 high)
2407{
2408 /*
2409 * Bits 0 in high must be 0, and bits 1 in low must be 1.
2410 */
2411 return ((control & high) | low) == control;
2412}
2413
2414static inline u64 vmx_control_msr(u32 low, u32 high)
2415{
2416 return low | ((u64)high << 32);
2417}
2418
cae50139 2419/* Returns 0 on success, non-0 otherwise. */
b87a51ae
NHE
2420static int vmx_get_vmx_msr(struct kvm_vcpu *vcpu, u32 msr_index, u64 *pdata)
2421{
b87a51ae 2422 switch (msr_index) {
b87a51ae
NHE
2423 case MSR_IA32_VMX_BASIC:
2424 /*
2425 * This MSR reports some information about VMX support. We
2426 * should return information about the VMX we emulate for the
2427 * guest, and the VMCS structure we give it - not about the
2428 * VMX support of the underlying hardware.
2429 */
3dbcd8da 2430 *pdata = VMCS12_REVISION | VMX_BASIC_TRUE_CTLS |
b87a51ae
NHE
2431 ((u64)VMCS12_SIZE << VMX_BASIC_VMCS_SIZE_SHIFT) |
2432 (VMX_BASIC_MEM_TYPE_WB << VMX_BASIC_MEM_TYPE_SHIFT);
2433 break;
2434 case MSR_IA32_VMX_TRUE_PINBASED_CTLS:
2435 case MSR_IA32_VMX_PINBASED_CTLS:
2436 *pdata = vmx_control_msr(nested_vmx_pinbased_ctls_low,
2437 nested_vmx_pinbased_ctls_high);
2438 break;
2439 case MSR_IA32_VMX_TRUE_PROCBASED_CTLS:
3dcdf3ec
JK
2440 *pdata = vmx_control_msr(nested_vmx_true_procbased_ctls_low,
2441 nested_vmx_procbased_ctls_high);
2442 break;
b87a51ae
NHE
2443 case MSR_IA32_VMX_PROCBASED_CTLS:
2444 *pdata = vmx_control_msr(nested_vmx_procbased_ctls_low,
2445 nested_vmx_procbased_ctls_high);
2446 break;
2447 case MSR_IA32_VMX_TRUE_EXIT_CTLS:
2996fca0
JK
2448 *pdata = vmx_control_msr(nested_vmx_true_exit_ctls_low,
2449 nested_vmx_exit_ctls_high);
2450 break;
b87a51ae
NHE
2451 case MSR_IA32_VMX_EXIT_CTLS:
2452 *pdata = vmx_control_msr(nested_vmx_exit_ctls_low,
2453 nested_vmx_exit_ctls_high);
2454 break;
2455 case MSR_IA32_VMX_TRUE_ENTRY_CTLS:
2996fca0
JK
2456 *pdata = vmx_control_msr(nested_vmx_true_entry_ctls_low,
2457 nested_vmx_entry_ctls_high);
2458 break;
b87a51ae
NHE
2459 case MSR_IA32_VMX_ENTRY_CTLS:
2460 *pdata = vmx_control_msr(nested_vmx_entry_ctls_low,
2461 nested_vmx_entry_ctls_high);
2462 break;
2463 case MSR_IA32_VMX_MISC:
c18911a2
JK
2464 *pdata = vmx_control_msr(nested_vmx_misc_low,
2465 nested_vmx_misc_high);
b87a51ae
NHE
2466 break;
2467 /*
2468 * These MSRs specify bits which the guest must keep fixed (on or off)
2469 * while L1 is in VMXON mode (in L1's root mode, or running an L2).
2470 * We picked the standard core2 setting.
2471 */
2472#define VMXON_CR0_ALWAYSON (X86_CR0_PE | X86_CR0_PG | X86_CR0_NE)
2473#define VMXON_CR4_ALWAYSON X86_CR4_VMXE
2474 case MSR_IA32_VMX_CR0_FIXED0:
2475 *pdata = VMXON_CR0_ALWAYSON;
2476 break;
2477 case MSR_IA32_VMX_CR0_FIXED1:
2478 *pdata = -1ULL;
2479 break;
2480 case MSR_IA32_VMX_CR4_FIXED0:
2481 *pdata = VMXON_CR4_ALWAYSON;
2482 break;
2483 case MSR_IA32_VMX_CR4_FIXED1:
2484 *pdata = -1ULL;
2485 break;
2486 case MSR_IA32_VMX_VMCS_ENUM:
5381417f 2487 *pdata = 0x2e; /* highest index: VMX_PREEMPTION_TIMER_VALUE */
b87a51ae
NHE
2488 break;
2489 case MSR_IA32_VMX_PROCBASED_CTLS2:
2490 *pdata = vmx_control_msr(nested_vmx_secondary_ctls_low,
2491 nested_vmx_secondary_ctls_high);
2492 break;
2493 case MSR_IA32_VMX_EPT_VPID_CAP:
afa61f75
NHE
2494 /* Currently, no nested vpid support */
2495 *pdata = nested_vmx_ept_caps;
b87a51ae
NHE
2496 break;
2497 default:
b87a51ae 2498 return 1;
b3897a49
NHE
2499 }
2500
b87a51ae
NHE
2501 return 0;
2502}
2503
6aa8b732
AK
2504/*
2505 * Reads an msr value (of 'msr_index') into 'pdata'.
2506 * Returns 0 on success, non-0 otherwise.
2507 * Assumes vcpu_load() was already called.
2508 */
2509static int vmx_get_msr(struct kvm_vcpu *vcpu, u32 msr_index, u64 *pdata)
2510{
2511 u64 data;
26bb0981 2512 struct shared_msr_entry *msr;
6aa8b732
AK
2513
2514 if (!pdata) {
2515 printk(KERN_ERR "BUG: get_msr called with NULL pdata\n");
2516 return -EINVAL;
2517 }
2518
2519 switch (msr_index) {
05b3e0c2 2520#ifdef CONFIG_X86_64
6aa8b732
AK
2521 case MSR_FS_BASE:
2522 data = vmcs_readl(GUEST_FS_BASE);
2523 break;
2524 case MSR_GS_BASE:
2525 data = vmcs_readl(GUEST_GS_BASE);
2526 break;
44ea2b17
AK
2527 case MSR_KERNEL_GS_BASE:
2528 vmx_load_host_state(to_vmx(vcpu));
2529 data = to_vmx(vcpu)->msr_guest_kernel_gs_base;
2530 break;
26bb0981 2531#endif
6aa8b732 2532 case MSR_EFER:
3bab1f5d 2533 return kvm_get_msr_common(vcpu, msr_index, pdata);
af24a4e4 2534 case MSR_IA32_TSC:
6aa8b732
AK
2535 data = guest_read_tsc();
2536 break;
2537 case MSR_IA32_SYSENTER_CS:
2538 data = vmcs_read32(GUEST_SYSENTER_CS);
2539 break;
2540 case MSR_IA32_SYSENTER_EIP:
f5b42c33 2541 data = vmcs_readl(GUEST_SYSENTER_EIP);
6aa8b732
AK
2542 break;
2543 case MSR_IA32_SYSENTER_ESP:
f5b42c33 2544 data = vmcs_readl(GUEST_SYSENTER_ESP);
6aa8b732 2545 break;
0dd376e7 2546 case MSR_IA32_BNDCFGS:
93c4adc7
PB
2547 if (!vmx_mpx_supported())
2548 return 1;
0dd376e7
LJ
2549 data = vmcs_read64(GUEST_BNDCFGS);
2550 break;
cae50139
JK
2551 case MSR_IA32_FEATURE_CONTROL:
2552 if (!nested_vmx_allowed(vcpu))
2553 return 1;
2554 data = to_vmx(vcpu)->nested.msr_ia32_feature_control;
2555 break;
2556 case MSR_IA32_VMX_BASIC ... MSR_IA32_VMX_VMFUNC:
2557 if (!nested_vmx_allowed(vcpu))
2558 return 1;
2559 return vmx_get_vmx_msr(vcpu, msr_index, pdata);
4e47c7a6
SY
2560 case MSR_TSC_AUX:
2561 if (!to_vmx(vcpu)->rdtscp_enabled)
2562 return 1;
2563 /* Otherwise falls through */
6aa8b732 2564 default:
8b9cf98c 2565 msr = find_msr_entry(to_vmx(vcpu), msr_index);
3bab1f5d
AK
2566 if (msr) {
2567 data = msr->data;
2568 break;
6aa8b732 2569 }
3bab1f5d 2570 return kvm_get_msr_common(vcpu, msr_index, pdata);
6aa8b732
AK
2571 }
2572
2573 *pdata = data;
2574 return 0;
2575}
2576
cae50139
JK
2577static void vmx_leave_nested(struct kvm_vcpu *vcpu);
2578
6aa8b732
AK
2579/*
2580 * Writes msr value into into the appropriate "register".
2581 * Returns 0 on success, non-0 otherwise.
2582 * Assumes vcpu_load() was already called.
2583 */
8fe8ab46 2584static int vmx_set_msr(struct kvm_vcpu *vcpu, struct msr_data *msr_info)
6aa8b732 2585{
a2fa3e9f 2586 struct vcpu_vmx *vmx = to_vmx(vcpu);
26bb0981 2587 struct shared_msr_entry *msr;
2cc51560 2588 int ret = 0;
8fe8ab46
WA
2589 u32 msr_index = msr_info->index;
2590 u64 data = msr_info->data;
2cc51560 2591
6aa8b732 2592 switch (msr_index) {
3bab1f5d 2593 case MSR_EFER:
8fe8ab46 2594 ret = kvm_set_msr_common(vcpu, msr_info);
2cc51560 2595 break;
16175a79 2596#ifdef CONFIG_X86_64
6aa8b732 2597 case MSR_FS_BASE:
2fb92db1 2598 vmx_segment_cache_clear(vmx);
6aa8b732
AK
2599 vmcs_writel(GUEST_FS_BASE, data);
2600 break;
2601 case MSR_GS_BASE:
2fb92db1 2602 vmx_segment_cache_clear(vmx);
6aa8b732
AK
2603 vmcs_writel(GUEST_GS_BASE, data);
2604 break;
44ea2b17
AK
2605 case MSR_KERNEL_GS_BASE:
2606 vmx_load_host_state(vmx);
2607 vmx->msr_guest_kernel_gs_base = data;
2608 break;
6aa8b732
AK
2609#endif
2610 case MSR_IA32_SYSENTER_CS:
2611 vmcs_write32(GUEST_SYSENTER_CS, data);
2612 break;
2613 case MSR_IA32_SYSENTER_EIP:
f5b42c33 2614 vmcs_writel(GUEST_SYSENTER_EIP, data);
6aa8b732
AK
2615 break;
2616 case MSR_IA32_SYSENTER_ESP:
f5b42c33 2617 vmcs_writel(GUEST_SYSENTER_ESP, data);
6aa8b732 2618 break;
0dd376e7 2619 case MSR_IA32_BNDCFGS:
93c4adc7
PB
2620 if (!vmx_mpx_supported())
2621 return 1;
0dd376e7
LJ
2622 vmcs_write64(GUEST_BNDCFGS, data);
2623 break;
af24a4e4 2624 case MSR_IA32_TSC:
8fe8ab46 2625 kvm_write_tsc(vcpu, msr_info);
6aa8b732 2626 break;
468d472f
SY
2627 case MSR_IA32_CR_PAT:
2628 if (vmcs_config.vmentry_ctrl & VM_ENTRY_LOAD_IA32_PAT) {
2629 vmcs_write64(GUEST_IA32_PAT, data);
2630 vcpu->arch.pat = data;
2631 break;
2632 }
8fe8ab46 2633 ret = kvm_set_msr_common(vcpu, msr_info);
4e47c7a6 2634 break;
ba904635
WA
2635 case MSR_IA32_TSC_ADJUST:
2636 ret = kvm_set_msr_common(vcpu, msr_info);
4e47c7a6 2637 break;
cae50139
JK
2638 case MSR_IA32_FEATURE_CONTROL:
2639 if (!nested_vmx_allowed(vcpu) ||
2640 (to_vmx(vcpu)->nested.msr_ia32_feature_control &
2641 FEATURE_CONTROL_LOCKED && !msr_info->host_initiated))
2642 return 1;
2643 vmx->nested.msr_ia32_feature_control = data;
2644 if (msr_info->host_initiated && data == 0)
2645 vmx_leave_nested(vcpu);
2646 break;
2647 case MSR_IA32_VMX_BASIC ... MSR_IA32_VMX_VMFUNC:
2648 return 1; /* they are read-only */
4e47c7a6
SY
2649 case MSR_TSC_AUX:
2650 if (!vmx->rdtscp_enabled)
2651 return 1;
2652 /* Check reserved bit, higher 32 bits should be zero */
2653 if ((data >> 32) != 0)
2654 return 1;
2655 /* Otherwise falls through */
6aa8b732 2656 default:
8b9cf98c 2657 msr = find_msr_entry(vmx, msr_index);
3bab1f5d
AK
2658 if (msr) {
2659 msr->data = data;
2225fd56
AK
2660 if (msr - vmx->guest_msrs < vmx->save_nmsrs) {
2661 preempt_disable();
9ee73970
AK
2662 kvm_set_shared_msr(msr->index, msr->data,
2663 msr->mask);
2225fd56
AK
2664 preempt_enable();
2665 }
3bab1f5d 2666 break;
6aa8b732 2667 }
8fe8ab46 2668 ret = kvm_set_msr_common(vcpu, msr_info);
6aa8b732
AK
2669 }
2670
2cc51560 2671 return ret;
6aa8b732
AK
2672}
2673
5fdbf976 2674static void vmx_cache_reg(struct kvm_vcpu *vcpu, enum kvm_reg reg)
6aa8b732 2675{
5fdbf976
MT
2676 __set_bit(reg, (unsigned long *)&vcpu->arch.regs_avail);
2677 switch (reg) {
2678 case VCPU_REGS_RSP:
2679 vcpu->arch.regs[VCPU_REGS_RSP] = vmcs_readl(GUEST_RSP);
2680 break;
2681 case VCPU_REGS_RIP:
2682 vcpu->arch.regs[VCPU_REGS_RIP] = vmcs_readl(GUEST_RIP);
2683 break;
6de4f3ad
AK
2684 case VCPU_EXREG_PDPTR:
2685 if (enable_ept)
2686 ept_save_pdptrs(vcpu);
2687 break;
5fdbf976
MT
2688 default:
2689 break;
2690 }
6aa8b732
AK
2691}
2692
6aa8b732
AK
2693static __init int cpu_has_kvm_support(void)
2694{
6210e37b 2695 return cpu_has_vmx();
6aa8b732
AK
2696}
2697
2698static __init int vmx_disabled_by_bios(void)
2699{
2700 u64 msr;
2701
2702 rdmsrl(MSR_IA32_FEATURE_CONTROL, msr);
cafd6659 2703 if (msr & FEATURE_CONTROL_LOCKED) {
23f3e991 2704 /* launched w/ TXT and VMX disabled */
cafd6659
SW
2705 if (!(msr & FEATURE_CONTROL_VMXON_ENABLED_INSIDE_SMX)
2706 && tboot_enabled())
2707 return 1;
23f3e991 2708 /* launched w/o TXT and VMX only enabled w/ TXT */
cafd6659 2709 if (!(msr & FEATURE_CONTROL_VMXON_ENABLED_OUTSIDE_SMX)
23f3e991 2710 && (msr & FEATURE_CONTROL_VMXON_ENABLED_INSIDE_SMX)
f9335afe
SW
2711 && !tboot_enabled()) {
2712 printk(KERN_WARNING "kvm: disable TXT in the BIOS or "
23f3e991 2713 "activate TXT before enabling KVM\n");
cafd6659 2714 return 1;
f9335afe 2715 }
23f3e991
JC
2716 /* launched w/o TXT and VMX disabled */
2717 if (!(msr & FEATURE_CONTROL_VMXON_ENABLED_OUTSIDE_SMX)
2718 && !tboot_enabled())
2719 return 1;
cafd6659
SW
2720 }
2721
2722 return 0;
6aa8b732
AK
2723}
2724
7725b894
DX
2725static void kvm_cpu_vmxon(u64 addr)
2726{
2727 asm volatile (ASM_VMX_VMXON_RAX
2728 : : "a"(&addr), "m"(addr)
2729 : "memory", "cc");
2730}
2731
13a34e06 2732static int hardware_enable(void)
6aa8b732
AK
2733{
2734 int cpu = raw_smp_processor_id();
2735 u64 phys_addr = __pa(per_cpu(vmxarea, cpu));
cafd6659 2736 u64 old, test_bits;
6aa8b732 2737
10474ae8
AG
2738 if (read_cr4() & X86_CR4_VMXE)
2739 return -EBUSY;
2740
d462b819 2741 INIT_LIST_HEAD(&per_cpu(loaded_vmcss_on_cpu, cpu));
8f536b76
ZY
2742
2743 /*
2744 * Now we can enable the vmclear operation in kdump
2745 * since the loaded_vmcss_on_cpu list on this cpu
2746 * has been initialized.
2747 *
2748 * Though the cpu is not in VMX operation now, there
2749 * is no problem to enable the vmclear operation
2750 * for the loaded_vmcss_on_cpu list is empty!
2751 */
2752 crash_enable_local_vmclear(cpu);
2753
6aa8b732 2754 rdmsrl(MSR_IA32_FEATURE_CONTROL, old);
cafd6659
SW
2755
2756 test_bits = FEATURE_CONTROL_LOCKED;
2757 test_bits |= FEATURE_CONTROL_VMXON_ENABLED_OUTSIDE_SMX;
2758 if (tboot_enabled())
2759 test_bits |= FEATURE_CONTROL_VMXON_ENABLED_INSIDE_SMX;
2760
2761 if ((old & test_bits) != test_bits) {
6aa8b732 2762 /* enable and lock */
cafd6659
SW
2763 wrmsrl(MSR_IA32_FEATURE_CONTROL, old | test_bits);
2764 }
66aee91a 2765 write_cr4(read_cr4() | X86_CR4_VMXE); /* FIXME: not cpu hotplug safe */
10474ae8 2766
4610c9cc
DX
2767 if (vmm_exclusive) {
2768 kvm_cpu_vmxon(phys_addr);
2769 ept_sync_global();
2770 }
10474ae8 2771
357d1226 2772 native_store_gdt(&__get_cpu_var(host_gdt));
3444d7da 2773
10474ae8 2774 return 0;
6aa8b732
AK
2775}
2776
d462b819 2777static void vmclear_local_loaded_vmcss(void)
543e4243
AK
2778{
2779 int cpu = raw_smp_processor_id();
d462b819 2780 struct loaded_vmcs *v, *n;
543e4243 2781
d462b819
NHE
2782 list_for_each_entry_safe(v, n, &per_cpu(loaded_vmcss_on_cpu, cpu),
2783 loaded_vmcss_on_cpu_link)
2784 __loaded_vmcs_clear(v);
543e4243
AK
2785}
2786
710ff4a8
EH
2787
2788/* Just like cpu_vmxoff(), but with the __kvm_handle_fault_on_reboot()
2789 * tricks.
2790 */
2791static void kvm_cpu_vmxoff(void)
6aa8b732 2792{
4ecac3fd 2793 asm volatile (__ex(ASM_VMX_VMXOFF) : : : "cc");
6aa8b732
AK
2794}
2795
13a34e06 2796static void hardware_disable(void)
710ff4a8 2797{
4610c9cc 2798 if (vmm_exclusive) {
d462b819 2799 vmclear_local_loaded_vmcss();
4610c9cc
DX
2800 kvm_cpu_vmxoff();
2801 }
7725b894 2802 write_cr4(read_cr4() & ~X86_CR4_VMXE);
710ff4a8
EH
2803}
2804
1c3d14fe 2805static __init int adjust_vmx_controls(u32 ctl_min, u32 ctl_opt,
d77c26fc 2806 u32 msr, u32 *result)
1c3d14fe
YS
2807{
2808 u32 vmx_msr_low, vmx_msr_high;
2809 u32 ctl = ctl_min | ctl_opt;
2810
2811 rdmsr(msr, vmx_msr_low, vmx_msr_high);
2812
2813 ctl &= vmx_msr_high; /* bit == 0 in high word ==> must be zero */
2814 ctl |= vmx_msr_low; /* bit == 1 in low word ==> must be one */
2815
2816 /* Ensure minimum (required) set of control bits are supported. */
2817 if (ctl_min & ~ctl)
002c7f7c 2818 return -EIO;
1c3d14fe
YS
2819
2820 *result = ctl;
2821 return 0;
2822}
2823
110312c8
AK
2824static __init bool allow_1_setting(u32 msr, u32 ctl)
2825{
2826 u32 vmx_msr_low, vmx_msr_high;
2827
2828 rdmsr(msr, vmx_msr_low, vmx_msr_high);
2829 return vmx_msr_high & ctl;
2830}
2831
002c7f7c 2832static __init int setup_vmcs_config(struct vmcs_config *vmcs_conf)
6aa8b732
AK
2833{
2834 u32 vmx_msr_low, vmx_msr_high;
d56f546d 2835 u32 min, opt, min2, opt2;
1c3d14fe
YS
2836 u32 _pin_based_exec_control = 0;
2837 u32 _cpu_based_exec_control = 0;
f78e0e2e 2838 u32 _cpu_based_2nd_exec_control = 0;
1c3d14fe
YS
2839 u32 _vmexit_control = 0;
2840 u32 _vmentry_control = 0;
2841
10166744 2842 min = CPU_BASED_HLT_EXITING |
1c3d14fe
YS
2843#ifdef CONFIG_X86_64
2844 CPU_BASED_CR8_LOAD_EXITING |
2845 CPU_BASED_CR8_STORE_EXITING |
2846#endif
d56f546d
SY
2847 CPU_BASED_CR3_LOAD_EXITING |
2848 CPU_BASED_CR3_STORE_EXITING |
1c3d14fe
YS
2849 CPU_BASED_USE_IO_BITMAPS |
2850 CPU_BASED_MOV_DR_EXITING |
a7052897 2851 CPU_BASED_USE_TSC_OFFSETING |
59708670
SY
2852 CPU_BASED_MWAIT_EXITING |
2853 CPU_BASED_MONITOR_EXITING |
fee84b07
AK
2854 CPU_BASED_INVLPG_EXITING |
2855 CPU_BASED_RDPMC_EXITING;
443381a8 2856
f78e0e2e 2857 opt = CPU_BASED_TPR_SHADOW |
25c5f225 2858 CPU_BASED_USE_MSR_BITMAPS |
f78e0e2e 2859 CPU_BASED_ACTIVATE_SECONDARY_CONTROLS;
1c3d14fe
YS
2860 if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_PROCBASED_CTLS,
2861 &_cpu_based_exec_control) < 0)
002c7f7c 2862 return -EIO;
6e5d865c
YS
2863#ifdef CONFIG_X86_64
2864 if ((_cpu_based_exec_control & CPU_BASED_TPR_SHADOW))
2865 _cpu_based_exec_control &= ~CPU_BASED_CR8_LOAD_EXITING &
2866 ~CPU_BASED_CR8_STORE_EXITING;
2867#endif
f78e0e2e 2868 if (_cpu_based_exec_control & CPU_BASED_ACTIVATE_SECONDARY_CONTROLS) {
d56f546d
SY
2869 min2 = 0;
2870 opt2 = SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES |
8d14695f 2871 SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE |
2384d2b3 2872 SECONDARY_EXEC_WBINVD_EXITING |
d56f546d 2873 SECONDARY_EXEC_ENABLE_VPID |
3a624e29 2874 SECONDARY_EXEC_ENABLE_EPT |
4b8d54f9 2875 SECONDARY_EXEC_UNRESTRICTED_GUEST |
4e47c7a6 2876 SECONDARY_EXEC_PAUSE_LOOP_EXITING |
ad756a16 2877 SECONDARY_EXEC_RDTSCP |
83d4c286 2878 SECONDARY_EXEC_ENABLE_INVPCID |
c7c9c56c 2879 SECONDARY_EXEC_APIC_REGISTER_VIRT |
abc4fc58
AG
2880 SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY |
2881 SECONDARY_EXEC_SHADOW_VMCS;
d56f546d
SY
2882 if (adjust_vmx_controls(min2, opt2,
2883 MSR_IA32_VMX_PROCBASED_CTLS2,
f78e0e2e
SY
2884 &_cpu_based_2nd_exec_control) < 0)
2885 return -EIO;
2886 }
2887#ifndef CONFIG_X86_64
2888 if (!(_cpu_based_2nd_exec_control &
2889 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES))
2890 _cpu_based_exec_control &= ~CPU_BASED_TPR_SHADOW;
2891#endif
83d4c286
YZ
2892
2893 if (!(_cpu_based_exec_control & CPU_BASED_TPR_SHADOW))
2894 _cpu_based_2nd_exec_control &= ~(
8d14695f 2895 SECONDARY_EXEC_APIC_REGISTER_VIRT |
c7c9c56c
YZ
2896 SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE |
2897 SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY);
83d4c286 2898
d56f546d 2899 if (_cpu_based_2nd_exec_control & SECONDARY_EXEC_ENABLE_EPT) {
a7052897
MT
2900 /* CR3 accesses and invlpg don't need to cause VM Exits when EPT
2901 enabled */
5fff7d27
GN
2902 _cpu_based_exec_control &= ~(CPU_BASED_CR3_LOAD_EXITING |
2903 CPU_BASED_CR3_STORE_EXITING |
2904 CPU_BASED_INVLPG_EXITING);
d56f546d
SY
2905 rdmsr(MSR_IA32_VMX_EPT_VPID_CAP,
2906 vmx_capability.ept, vmx_capability.vpid);
2907 }
1c3d14fe 2908
81908bf4 2909 min = VM_EXIT_SAVE_DEBUG_CONTROLS;
1c3d14fe
YS
2910#ifdef CONFIG_X86_64
2911 min |= VM_EXIT_HOST_ADDR_SPACE_SIZE;
2912#endif
a547c6db 2913 opt = VM_EXIT_SAVE_IA32_PAT | VM_EXIT_LOAD_IA32_PAT |
da8999d3 2914 VM_EXIT_ACK_INTR_ON_EXIT | VM_EXIT_CLEAR_BNDCFGS;
1c3d14fe
YS
2915 if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_EXIT_CTLS,
2916 &_vmexit_control) < 0)
002c7f7c 2917 return -EIO;
1c3d14fe 2918
01e439be
YZ
2919 min = PIN_BASED_EXT_INTR_MASK | PIN_BASED_NMI_EXITING;
2920 opt = PIN_BASED_VIRTUAL_NMIS | PIN_BASED_POSTED_INTR;
2921 if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_PINBASED_CTLS,
2922 &_pin_based_exec_control) < 0)
2923 return -EIO;
2924
2925 if (!(_cpu_based_2nd_exec_control &
2926 SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY) ||
2927 !(_vmexit_control & VM_EXIT_ACK_INTR_ON_EXIT))
2928 _pin_based_exec_control &= ~PIN_BASED_POSTED_INTR;
2929
c845f9c6 2930 min = VM_ENTRY_LOAD_DEBUG_CONTROLS;
da8999d3 2931 opt = VM_ENTRY_LOAD_IA32_PAT | VM_ENTRY_LOAD_BNDCFGS;
1c3d14fe
YS
2932 if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_ENTRY_CTLS,
2933 &_vmentry_control) < 0)
002c7f7c 2934 return -EIO;
6aa8b732 2935
c68876fd 2936 rdmsr(MSR_IA32_VMX_BASIC, vmx_msr_low, vmx_msr_high);
1c3d14fe
YS
2937
2938 /* IA-32 SDM Vol 3B: VMCS size is never greater than 4kB. */
2939 if ((vmx_msr_high & 0x1fff) > PAGE_SIZE)
002c7f7c 2940 return -EIO;
1c3d14fe
YS
2941
2942#ifdef CONFIG_X86_64
2943 /* IA-32 SDM Vol 3B: 64-bit CPUs always have VMX_BASIC_MSR[48]==0. */
2944 if (vmx_msr_high & (1u<<16))
002c7f7c 2945 return -EIO;
1c3d14fe
YS
2946#endif
2947
2948 /* Require Write-Back (WB) memory type for VMCS accesses. */
2949 if (((vmx_msr_high >> 18) & 15) != 6)
002c7f7c 2950 return -EIO;
1c3d14fe 2951
002c7f7c
YS
2952 vmcs_conf->size = vmx_msr_high & 0x1fff;
2953 vmcs_conf->order = get_order(vmcs_config.size);
2954 vmcs_conf->revision_id = vmx_msr_low;
1c3d14fe 2955
002c7f7c
YS
2956 vmcs_conf->pin_based_exec_ctrl = _pin_based_exec_control;
2957 vmcs_conf->cpu_based_exec_ctrl = _cpu_based_exec_control;
f78e0e2e 2958 vmcs_conf->cpu_based_2nd_exec_ctrl = _cpu_based_2nd_exec_control;
002c7f7c
YS
2959 vmcs_conf->vmexit_ctrl = _vmexit_control;
2960 vmcs_conf->vmentry_ctrl = _vmentry_control;
1c3d14fe 2961
110312c8
AK
2962 cpu_has_load_ia32_efer =
2963 allow_1_setting(MSR_IA32_VMX_ENTRY_CTLS,
2964 VM_ENTRY_LOAD_IA32_EFER)
2965 && allow_1_setting(MSR_IA32_VMX_EXIT_CTLS,
2966 VM_EXIT_LOAD_IA32_EFER);
2967
8bf00a52
GN
2968 cpu_has_load_perf_global_ctrl =
2969 allow_1_setting(MSR_IA32_VMX_ENTRY_CTLS,
2970 VM_ENTRY_LOAD_IA32_PERF_GLOBAL_CTRL)
2971 && allow_1_setting(MSR_IA32_VMX_EXIT_CTLS,
2972 VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL);
2973
2974 /*
2975 * Some cpus support VM_ENTRY_(LOAD|SAVE)_IA32_PERF_GLOBAL_CTRL
2976 * but due to arrata below it can't be used. Workaround is to use
2977 * msr load mechanism to switch IA32_PERF_GLOBAL_CTRL.
2978 *
2979 * VM Exit May Incorrectly Clear IA32_PERF_GLOBAL_CTRL [34:32]
2980 *
2981 * AAK155 (model 26)
2982 * AAP115 (model 30)
2983 * AAT100 (model 37)
2984 * BC86,AAY89,BD102 (model 44)
2985 * BA97 (model 46)
2986 *
2987 */
2988 if (cpu_has_load_perf_global_ctrl && boot_cpu_data.x86 == 0x6) {
2989 switch (boot_cpu_data.x86_model) {
2990 case 26:
2991 case 30:
2992 case 37:
2993 case 44:
2994 case 46:
2995 cpu_has_load_perf_global_ctrl = false;
2996 printk_once(KERN_WARNING"kvm: VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL "
2997 "does not work properly. Using workaround\n");
2998 break;
2999 default:
3000 break;
3001 }
3002 }
3003
1c3d14fe 3004 return 0;
c68876fd 3005}
6aa8b732
AK
3006
3007static struct vmcs *alloc_vmcs_cpu(int cpu)
3008{
3009 int node = cpu_to_node(cpu);
3010 struct page *pages;
3011 struct vmcs *vmcs;
3012
6484eb3e 3013 pages = alloc_pages_exact_node(node, GFP_KERNEL, vmcs_config.order);
6aa8b732
AK
3014 if (!pages)
3015 return NULL;
3016 vmcs = page_address(pages);
1c3d14fe
YS
3017 memset(vmcs, 0, vmcs_config.size);
3018 vmcs->revision_id = vmcs_config.revision_id; /* vmcs revision id */
6aa8b732
AK
3019 return vmcs;
3020}
3021
3022static struct vmcs *alloc_vmcs(void)
3023{
d3b2c338 3024 return alloc_vmcs_cpu(raw_smp_processor_id());
6aa8b732
AK
3025}
3026
3027static void free_vmcs(struct vmcs *vmcs)
3028{
1c3d14fe 3029 free_pages((unsigned long)vmcs, vmcs_config.order);
6aa8b732
AK
3030}
3031
d462b819
NHE
3032/*
3033 * Free a VMCS, but before that VMCLEAR it on the CPU where it was last loaded
3034 */
3035static void free_loaded_vmcs(struct loaded_vmcs *loaded_vmcs)
3036{
3037 if (!loaded_vmcs->vmcs)
3038 return;
3039 loaded_vmcs_clear(loaded_vmcs);
3040 free_vmcs(loaded_vmcs->vmcs);
3041 loaded_vmcs->vmcs = NULL;
3042}
3043
39959588 3044static void free_kvm_area(void)
6aa8b732
AK
3045{
3046 int cpu;
3047
3230bb47 3048 for_each_possible_cpu(cpu) {
6aa8b732 3049 free_vmcs(per_cpu(vmxarea, cpu));
3230bb47
ZA
3050 per_cpu(vmxarea, cpu) = NULL;
3051 }
6aa8b732
AK
3052}
3053
fe2b201b
BD
3054static void init_vmcs_shadow_fields(void)
3055{
3056 int i, j;
3057
3058 /* No checks for read only fields yet */
3059
3060 for (i = j = 0; i < max_shadow_read_write_fields; i++) {
3061 switch (shadow_read_write_fields[i]) {
3062 case GUEST_BNDCFGS:
3063 if (!vmx_mpx_supported())
3064 continue;
3065 break;
3066 default:
3067 break;
3068 }
3069
3070 if (j < i)
3071 shadow_read_write_fields[j] =
3072 shadow_read_write_fields[i];
3073 j++;
3074 }
3075 max_shadow_read_write_fields = j;
3076
3077 /* shadowed fields guest access without vmexit */
3078 for (i = 0; i < max_shadow_read_write_fields; i++) {
3079 clear_bit(shadow_read_write_fields[i],
3080 vmx_vmwrite_bitmap);
3081 clear_bit(shadow_read_write_fields[i],
3082 vmx_vmread_bitmap);
3083 }
3084 for (i = 0; i < max_shadow_read_only_fields; i++)
3085 clear_bit(shadow_read_only_fields[i],
3086 vmx_vmread_bitmap);
3087}
3088
6aa8b732
AK
3089static __init int alloc_kvm_area(void)
3090{
3091 int cpu;
3092
3230bb47 3093 for_each_possible_cpu(cpu) {
6aa8b732
AK
3094 struct vmcs *vmcs;
3095
3096 vmcs = alloc_vmcs_cpu(cpu);
3097 if (!vmcs) {
3098 free_kvm_area();
3099 return -ENOMEM;
3100 }
3101
3102 per_cpu(vmxarea, cpu) = vmcs;
3103 }
3104 return 0;
3105}
3106
3107static __init int hardware_setup(void)
3108{
002c7f7c
YS
3109 if (setup_vmcs_config(&vmcs_config) < 0)
3110 return -EIO;
50a37eb4
JR
3111
3112 if (boot_cpu_has(X86_FEATURE_NX))
3113 kvm_enable_efer_bits(EFER_NX);
3114
93ba03c2
SY
3115 if (!cpu_has_vmx_vpid())
3116 enable_vpid = 0;
abc4fc58
AG
3117 if (!cpu_has_vmx_shadow_vmcs())
3118 enable_shadow_vmcs = 0;
fe2b201b
BD
3119 if (enable_shadow_vmcs)
3120 init_vmcs_shadow_fields();
93ba03c2 3121
4bc9b982
SY
3122 if (!cpu_has_vmx_ept() ||
3123 !cpu_has_vmx_ept_4levels()) {
93ba03c2 3124 enable_ept = 0;
3a624e29 3125 enable_unrestricted_guest = 0;
83c3a331 3126 enable_ept_ad_bits = 0;
3a624e29
NK
3127 }
3128
83c3a331
XH
3129 if (!cpu_has_vmx_ept_ad_bits())
3130 enable_ept_ad_bits = 0;
3131
3a624e29
NK
3132 if (!cpu_has_vmx_unrestricted_guest())
3133 enable_unrestricted_guest = 0;
93ba03c2
SY
3134
3135 if (!cpu_has_vmx_flexpriority())
3136 flexpriority_enabled = 0;
3137
95ba8273
GN
3138 if (!cpu_has_vmx_tpr_shadow())
3139 kvm_x86_ops->update_cr8_intercept = NULL;
3140
54dee993
MT
3141 if (enable_ept && !cpu_has_vmx_ept_2m_page())
3142 kvm_disable_largepages();
3143
4b8d54f9
ZE
3144 if (!cpu_has_vmx_ple())
3145 ple_gap = 0;
3146
01e439be
YZ
3147 if (!cpu_has_vmx_apicv())
3148 enable_apicv = 0;
c7c9c56c 3149
01e439be 3150 if (enable_apicv)
c7c9c56c 3151 kvm_x86_ops->update_cr8_intercept = NULL;
a20ed54d 3152 else {
c7c9c56c 3153 kvm_x86_ops->hwapic_irr_update = NULL;
a20ed54d
YZ
3154 kvm_x86_ops->deliver_posted_interrupt = NULL;
3155 kvm_x86_ops->sync_pir_to_irr = vmx_sync_pir_to_irr_dummy;
3156 }
83d4c286 3157
b87a51ae
NHE
3158 if (nested)
3159 nested_vmx_setup_ctls_msrs();
3160
6aa8b732
AK
3161 return alloc_kvm_area();
3162}
3163
3164static __exit void hardware_unsetup(void)
3165{
3166 free_kvm_area();
3167}
3168
14168786
GN
3169static bool emulation_required(struct kvm_vcpu *vcpu)
3170{
3171 return emulate_invalid_guest_state && !guest_state_valid(vcpu);
3172}
3173
91b0aa2c 3174static void fix_pmode_seg(struct kvm_vcpu *vcpu, int seg,
d99e4152 3175 struct kvm_segment *save)
6aa8b732 3176{
d99e4152
GN
3177 if (!emulate_invalid_guest_state) {
3178 /*
3179 * CS and SS RPL should be equal during guest entry according
3180 * to VMX spec, but in reality it is not always so. Since vcpu
3181 * is in the middle of the transition from real mode to
3182 * protected mode it is safe to assume that RPL 0 is a good
3183 * default value.
3184 */
3185 if (seg == VCPU_SREG_CS || seg == VCPU_SREG_SS)
3186 save->selector &= ~SELECTOR_RPL_MASK;
3187 save->dpl = save->selector & SELECTOR_RPL_MASK;
3188 save->s = 1;
6aa8b732 3189 }
d99e4152 3190 vmx_set_segment(vcpu, save, seg);
6aa8b732
AK
3191}
3192
3193static void enter_pmode(struct kvm_vcpu *vcpu)
3194{
3195 unsigned long flags;
a89a8fb9 3196 struct vcpu_vmx *vmx = to_vmx(vcpu);
6aa8b732 3197
d99e4152
GN
3198 /*
3199 * Update real mode segment cache. It may be not up-to-date if sement
3200 * register was written while vcpu was in a guest mode.
3201 */
3202 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_ES], VCPU_SREG_ES);
3203 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_DS], VCPU_SREG_DS);
3204 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_FS], VCPU_SREG_FS);
3205 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_GS], VCPU_SREG_GS);
3206 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_SS], VCPU_SREG_SS);
3207 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_CS], VCPU_SREG_CS);
3208
7ffd92c5 3209 vmx->rmode.vm86_active = 0;
6aa8b732 3210
2fb92db1
AK
3211 vmx_segment_cache_clear(vmx);
3212
f5f7b2fe 3213 vmx_set_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_TR], VCPU_SREG_TR);
6aa8b732
AK
3214
3215 flags = vmcs_readl(GUEST_RFLAGS);
78ac8b47
AK
3216 flags &= RMODE_GUEST_OWNED_EFLAGS_BITS;
3217 flags |= vmx->rmode.save_rflags & ~RMODE_GUEST_OWNED_EFLAGS_BITS;
6aa8b732
AK
3218 vmcs_writel(GUEST_RFLAGS, flags);
3219
66aee91a
RR
3220 vmcs_writel(GUEST_CR4, (vmcs_readl(GUEST_CR4) & ~X86_CR4_VME) |
3221 (vmcs_readl(CR4_READ_SHADOW) & X86_CR4_VME));
6aa8b732
AK
3222
3223 update_exception_bitmap(vcpu);
3224
91b0aa2c
GN
3225 fix_pmode_seg(vcpu, VCPU_SREG_CS, &vmx->rmode.segs[VCPU_SREG_CS]);
3226 fix_pmode_seg(vcpu, VCPU_SREG_SS, &vmx->rmode.segs[VCPU_SREG_SS]);
3227 fix_pmode_seg(vcpu, VCPU_SREG_ES, &vmx->rmode.segs[VCPU_SREG_ES]);
3228 fix_pmode_seg(vcpu, VCPU_SREG_DS, &vmx->rmode.segs[VCPU_SREG_DS]);
3229 fix_pmode_seg(vcpu, VCPU_SREG_FS, &vmx->rmode.segs[VCPU_SREG_FS]);
3230 fix_pmode_seg(vcpu, VCPU_SREG_GS, &vmx->rmode.segs[VCPU_SREG_GS]);
6aa8b732
AK
3231}
3232
f5f7b2fe 3233static void fix_rmode_seg(int seg, struct kvm_segment *save)
6aa8b732 3234{
772e0318 3235 const struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg];
d99e4152
GN
3236 struct kvm_segment var = *save;
3237
3238 var.dpl = 0x3;
3239 if (seg == VCPU_SREG_CS)
3240 var.type = 0x3;
3241
3242 if (!emulate_invalid_guest_state) {
3243 var.selector = var.base >> 4;
3244 var.base = var.base & 0xffff0;
3245 var.limit = 0xffff;
3246 var.g = 0;
3247 var.db = 0;
3248 var.present = 1;
3249 var.s = 1;
3250 var.l = 0;
3251 var.unusable = 0;
3252 var.type = 0x3;
3253 var.avl = 0;
3254 if (save->base & 0xf)
3255 printk_once(KERN_WARNING "kvm: segment base is not "
3256 "paragraph aligned when entering "
3257 "protected mode (seg=%d)", seg);
3258 }
6aa8b732 3259
d99e4152
GN
3260 vmcs_write16(sf->selector, var.selector);
3261 vmcs_write32(sf->base, var.base);
3262 vmcs_write32(sf->limit, var.limit);
3263 vmcs_write32(sf->ar_bytes, vmx_segment_access_rights(&var));
6aa8b732
AK
3264}
3265
3266static void enter_rmode(struct kvm_vcpu *vcpu)
3267{
3268 unsigned long flags;
a89a8fb9 3269 struct vcpu_vmx *vmx = to_vmx(vcpu);
6aa8b732 3270
f5f7b2fe
AK
3271 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_TR], VCPU_SREG_TR);
3272 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_ES], VCPU_SREG_ES);
3273 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_DS], VCPU_SREG_DS);
3274 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_FS], VCPU_SREG_FS);
3275 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_GS], VCPU_SREG_GS);
c6ad1153
GN
3276 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_SS], VCPU_SREG_SS);
3277 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_CS], VCPU_SREG_CS);
f5f7b2fe 3278
7ffd92c5 3279 vmx->rmode.vm86_active = 1;
6aa8b732 3280
776e58ea
GN
3281 /*
3282 * Very old userspace does not call KVM_SET_TSS_ADDR before entering
4918c6ca 3283 * vcpu. Warn the user that an update is overdue.
776e58ea 3284 */
4918c6ca 3285 if (!vcpu->kvm->arch.tss_addr)
776e58ea
GN
3286 printk_once(KERN_WARNING "kvm: KVM_SET_TSS_ADDR need to be "
3287 "called before entering vcpu\n");
776e58ea 3288
2fb92db1
AK
3289 vmx_segment_cache_clear(vmx);
3290
4918c6ca 3291 vmcs_writel(GUEST_TR_BASE, vcpu->kvm->arch.tss_addr);
6aa8b732 3292 vmcs_write32(GUEST_TR_LIMIT, RMODE_TSS_SIZE - 1);
6aa8b732
AK
3293 vmcs_write32(GUEST_TR_AR_BYTES, 0x008b);
3294
3295 flags = vmcs_readl(GUEST_RFLAGS);
78ac8b47 3296 vmx->rmode.save_rflags = flags;
6aa8b732 3297
053de044 3298 flags |= X86_EFLAGS_IOPL | X86_EFLAGS_VM;
6aa8b732
AK
3299
3300 vmcs_writel(GUEST_RFLAGS, flags);
66aee91a 3301 vmcs_writel(GUEST_CR4, vmcs_readl(GUEST_CR4) | X86_CR4_VME);
6aa8b732
AK
3302 update_exception_bitmap(vcpu);
3303
d99e4152
GN
3304 fix_rmode_seg(VCPU_SREG_SS, &vmx->rmode.segs[VCPU_SREG_SS]);
3305 fix_rmode_seg(VCPU_SREG_CS, &vmx->rmode.segs[VCPU_SREG_CS]);
3306 fix_rmode_seg(VCPU_SREG_ES, &vmx->rmode.segs[VCPU_SREG_ES]);
3307 fix_rmode_seg(VCPU_SREG_DS, &vmx->rmode.segs[VCPU_SREG_DS]);
3308 fix_rmode_seg(VCPU_SREG_GS, &vmx->rmode.segs[VCPU_SREG_GS]);
3309 fix_rmode_seg(VCPU_SREG_FS, &vmx->rmode.segs[VCPU_SREG_FS]);
b246dd5d 3310
8668a3c4 3311 kvm_mmu_reset_context(vcpu);
6aa8b732
AK
3312}
3313
401d10de
AS
3314static void vmx_set_efer(struct kvm_vcpu *vcpu, u64 efer)
3315{
3316 struct vcpu_vmx *vmx = to_vmx(vcpu);
26bb0981
AK
3317 struct shared_msr_entry *msr = find_msr_entry(vmx, MSR_EFER);
3318
3319 if (!msr)
3320 return;
401d10de 3321
44ea2b17
AK
3322 /*
3323 * Force kernel_gs_base reloading before EFER changes, as control
3324 * of this msr depends on is_long_mode().
3325 */
3326 vmx_load_host_state(to_vmx(vcpu));
f6801dff 3327 vcpu->arch.efer = efer;
401d10de 3328 if (efer & EFER_LMA) {
2961e876 3329 vm_entry_controls_setbit(to_vmx(vcpu), VM_ENTRY_IA32E_MODE);
401d10de
AS
3330 msr->data = efer;
3331 } else {
2961e876 3332 vm_entry_controls_clearbit(to_vmx(vcpu), VM_ENTRY_IA32E_MODE);
401d10de
AS
3333
3334 msr->data = efer & ~EFER_LME;
3335 }
3336 setup_msrs(vmx);
3337}
3338
05b3e0c2 3339#ifdef CONFIG_X86_64
6aa8b732
AK
3340
3341static void enter_lmode(struct kvm_vcpu *vcpu)
3342{
3343 u32 guest_tr_ar;
3344
2fb92db1
AK
3345 vmx_segment_cache_clear(to_vmx(vcpu));
3346
6aa8b732
AK
3347 guest_tr_ar = vmcs_read32(GUEST_TR_AR_BYTES);
3348 if ((guest_tr_ar & AR_TYPE_MASK) != AR_TYPE_BUSY_64_TSS) {
bd80158a
JK
3349 pr_debug_ratelimited("%s: tss fixup for long mode. \n",
3350 __func__);
6aa8b732
AK
3351 vmcs_write32(GUEST_TR_AR_BYTES,
3352 (guest_tr_ar & ~AR_TYPE_MASK)
3353 | AR_TYPE_BUSY_64_TSS);
3354 }
da38f438 3355 vmx_set_efer(vcpu, vcpu->arch.efer | EFER_LMA);
6aa8b732
AK
3356}
3357
3358static void exit_lmode(struct kvm_vcpu *vcpu)
3359{
2961e876 3360 vm_entry_controls_clearbit(to_vmx(vcpu), VM_ENTRY_IA32E_MODE);
da38f438 3361 vmx_set_efer(vcpu, vcpu->arch.efer & ~EFER_LMA);
6aa8b732
AK
3362}
3363
3364#endif
3365
2384d2b3
SY
3366static void vmx_flush_tlb(struct kvm_vcpu *vcpu)
3367{
b9d762fa 3368 vpid_sync_context(to_vmx(vcpu));
dd180b3e
XG
3369 if (enable_ept) {
3370 if (!VALID_PAGE(vcpu->arch.mmu.root_hpa))
3371 return;
4e1096d2 3372 ept_sync_context(construct_eptp(vcpu->arch.mmu.root_hpa));
dd180b3e 3373 }
2384d2b3
SY
3374}
3375
e8467fda
AK
3376static void vmx_decache_cr0_guest_bits(struct kvm_vcpu *vcpu)
3377{
3378 ulong cr0_guest_owned_bits = vcpu->arch.cr0_guest_owned_bits;
3379
3380 vcpu->arch.cr0 &= ~cr0_guest_owned_bits;
3381 vcpu->arch.cr0 |= vmcs_readl(GUEST_CR0) & cr0_guest_owned_bits;
3382}
3383
aff48baa
AK
3384static void vmx_decache_cr3(struct kvm_vcpu *vcpu)
3385{
3386 if (enable_ept && is_paging(vcpu))
3387 vcpu->arch.cr3 = vmcs_readl(GUEST_CR3);
3388 __set_bit(VCPU_EXREG_CR3, (ulong *)&vcpu->arch.regs_avail);
3389}
3390
25c4c276 3391static void vmx_decache_cr4_guest_bits(struct kvm_vcpu *vcpu)
399badf3 3392{
fc78f519
AK
3393 ulong cr4_guest_owned_bits = vcpu->arch.cr4_guest_owned_bits;
3394
3395 vcpu->arch.cr4 &= ~cr4_guest_owned_bits;
3396 vcpu->arch.cr4 |= vmcs_readl(GUEST_CR4) & cr4_guest_owned_bits;
399badf3
AK
3397}
3398
1439442c
SY
3399static void ept_load_pdptrs(struct kvm_vcpu *vcpu)
3400{
d0d538b9
GN
3401 struct kvm_mmu *mmu = vcpu->arch.walk_mmu;
3402
6de4f3ad
AK
3403 if (!test_bit(VCPU_EXREG_PDPTR,
3404 (unsigned long *)&vcpu->arch.regs_dirty))
3405 return;
3406
1439442c 3407 if (is_paging(vcpu) && is_pae(vcpu) && !is_long_mode(vcpu)) {
d0d538b9
GN
3408 vmcs_write64(GUEST_PDPTR0, mmu->pdptrs[0]);
3409 vmcs_write64(GUEST_PDPTR1, mmu->pdptrs[1]);
3410 vmcs_write64(GUEST_PDPTR2, mmu->pdptrs[2]);
3411 vmcs_write64(GUEST_PDPTR3, mmu->pdptrs[3]);
1439442c
SY
3412 }
3413}
3414
8f5d549f
AK
3415static void ept_save_pdptrs(struct kvm_vcpu *vcpu)
3416{
d0d538b9
GN
3417 struct kvm_mmu *mmu = vcpu->arch.walk_mmu;
3418
8f5d549f 3419 if (is_paging(vcpu) && is_pae(vcpu) && !is_long_mode(vcpu)) {
d0d538b9
GN
3420 mmu->pdptrs[0] = vmcs_read64(GUEST_PDPTR0);
3421 mmu->pdptrs[1] = vmcs_read64(GUEST_PDPTR1);
3422 mmu->pdptrs[2] = vmcs_read64(GUEST_PDPTR2);
3423 mmu->pdptrs[3] = vmcs_read64(GUEST_PDPTR3);
8f5d549f 3424 }
6de4f3ad
AK
3425
3426 __set_bit(VCPU_EXREG_PDPTR,
3427 (unsigned long *)&vcpu->arch.regs_avail);
3428 __set_bit(VCPU_EXREG_PDPTR,
3429 (unsigned long *)&vcpu->arch.regs_dirty);
8f5d549f
AK
3430}
3431
5e1746d6 3432static int vmx_set_cr4(struct kvm_vcpu *vcpu, unsigned long cr4);
1439442c
SY
3433
3434static void ept_update_paging_mode_cr0(unsigned long *hw_cr0,
3435 unsigned long cr0,
3436 struct kvm_vcpu *vcpu)
3437{
5233dd51
MT
3438 if (!test_bit(VCPU_EXREG_CR3, (ulong *)&vcpu->arch.regs_avail))
3439 vmx_decache_cr3(vcpu);
1439442c
SY
3440 if (!(cr0 & X86_CR0_PG)) {
3441 /* From paging/starting to nonpaging */
3442 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL,
65267ea1 3443 vmcs_read32(CPU_BASED_VM_EXEC_CONTROL) |
1439442c
SY
3444 (CPU_BASED_CR3_LOAD_EXITING |
3445 CPU_BASED_CR3_STORE_EXITING));
3446 vcpu->arch.cr0 = cr0;
fc78f519 3447 vmx_set_cr4(vcpu, kvm_read_cr4(vcpu));
1439442c
SY
3448 } else if (!is_paging(vcpu)) {
3449 /* From nonpaging to paging */
3450 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL,
65267ea1 3451 vmcs_read32(CPU_BASED_VM_EXEC_CONTROL) &
1439442c
SY
3452 ~(CPU_BASED_CR3_LOAD_EXITING |
3453 CPU_BASED_CR3_STORE_EXITING));
3454 vcpu->arch.cr0 = cr0;
fc78f519 3455 vmx_set_cr4(vcpu, kvm_read_cr4(vcpu));
1439442c 3456 }
95eb84a7
SY
3457
3458 if (!(cr0 & X86_CR0_WP))
3459 *hw_cr0 &= ~X86_CR0_WP;
1439442c
SY
3460}
3461
6aa8b732
AK
3462static void vmx_set_cr0(struct kvm_vcpu *vcpu, unsigned long cr0)
3463{
7ffd92c5 3464 struct vcpu_vmx *vmx = to_vmx(vcpu);
3a624e29
NK
3465 unsigned long hw_cr0;
3466
5037878e 3467 hw_cr0 = (cr0 & ~KVM_GUEST_CR0_MASK);
3a624e29 3468 if (enable_unrestricted_guest)
5037878e 3469 hw_cr0 |= KVM_VM_CR0_ALWAYS_ON_UNRESTRICTED_GUEST;
218e763f 3470 else {
5037878e 3471 hw_cr0 |= KVM_VM_CR0_ALWAYS_ON;
1439442c 3472
218e763f
GN
3473 if (vmx->rmode.vm86_active && (cr0 & X86_CR0_PE))
3474 enter_pmode(vcpu);
6aa8b732 3475
218e763f
GN
3476 if (!vmx->rmode.vm86_active && !(cr0 & X86_CR0_PE))
3477 enter_rmode(vcpu);
3478 }
6aa8b732 3479
05b3e0c2 3480#ifdef CONFIG_X86_64
f6801dff 3481 if (vcpu->arch.efer & EFER_LME) {
707d92fa 3482 if (!is_paging(vcpu) && (cr0 & X86_CR0_PG))
6aa8b732 3483 enter_lmode(vcpu);
707d92fa 3484 if (is_paging(vcpu) && !(cr0 & X86_CR0_PG))
6aa8b732
AK
3485 exit_lmode(vcpu);
3486 }
3487#endif
3488
089d034e 3489 if (enable_ept)
1439442c
SY
3490 ept_update_paging_mode_cr0(&hw_cr0, cr0, vcpu);
3491
02daab21 3492 if (!vcpu->fpu_active)
81231c69 3493 hw_cr0 |= X86_CR0_TS | X86_CR0_MP;
02daab21 3494
6aa8b732 3495 vmcs_writel(CR0_READ_SHADOW, cr0);
1439442c 3496 vmcs_writel(GUEST_CR0, hw_cr0);
ad312c7c 3497 vcpu->arch.cr0 = cr0;
14168786
GN
3498
3499 /* depends on vcpu->arch.cr0 to be set to a new value */
3500 vmx->emulation_required = emulation_required(vcpu);
6aa8b732
AK
3501}
3502
1439442c
SY
3503static u64 construct_eptp(unsigned long root_hpa)
3504{
3505 u64 eptp;
3506
3507 /* TODO write the value reading from MSR */
3508 eptp = VMX_EPT_DEFAULT_MT |
3509 VMX_EPT_DEFAULT_GAW << VMX_EPT_GAW_EPTP_SHIFT;
b38f9934
XH
3510 if (enable_ept_ad_bits)
3511 eptp |= VMX_EPT_AD_ENABLE_BIT;
1439442c
SY
3512 eptp |= (root_hpa & PAGE_MASK);
3513
3514 return eptp;
3515}
3516
6aa8b732
AK
3517static void vmx_set_cr3(struct kvm_vcpu *vcpu, unsigned long cr3)
3518{
1439442c
SY
3519 unsigned long guest_cr3;
3520 u64 eptp;
3521
3522 guest_cr3 = cr3;
089d034e 3523 if (enable_ept) {
1439442c
SY
3524 eptp = construct_eptp(cr3);
3525 vmcs_write64(EPT_POINTER, eptp);
59ab5a8f
JK
3526 if (is_paging(vcpu) || is_guest_mode(vcpu))
3527 guest_cr3 = kvm_read_cr3(vcpu);
3528 else
3529 guest_cr3 = vcpu->kvm->arch.ept_identity_map_addr;
7c93be44 3530 ept_load_pdptrs(vcpu);
1439442c
SY
3531 }
3532
2384d2b3 3533 vmx_flush_tlb(vcpu);
1439442c 3534 vmcs_writel(GUEST_CR3, guest_cr3);
6aa8b732
AK
3535}
3536
5e1746d6 3537static int vmx_set_cr4(struct kvm_vcpu *vcpu, unsigned long cr4)
6aa8b732 3538{
7ffd92c5 3539 unsigned long hw_cr4 = cr4 | (to_vmx(vcpu)->rmode.vm86_active ?
1439442c
SY
3540 KVM_RMODE_VM_CR4_ALWAYS_ON : KVM_PMODE_VM_CR4_ALWAYS_ON);
3541
5e1746d6
NHE
3542 if (cr4 & X86_CR4_VMXE) {
3543 /*
3544 * To use VMXON (and later other VMX instructions), a guest
3545 * must first be able to turn on cr4.VMXE (see handle_vmon()).
3546 * So basically the check on whether to allow nested VMX
3547 * is here.
3548 */
3549 if (!nested_vmx_allowed(vcpu))
3550 return 1;
1a0d74e6
JK
3551 }
3552 if (to_vmx(vcpu)->nested.vmxon &&
3553 ((cr4 & VMXON_CR4_ALWAYSON) != VMXON_CR4_ALWAYSON))
5e1746d6
NHE
3554 return 1;
3555
ad312c7c 3556 vcpu->arch.cr4 = cr4;
bc23008b
AK
3557 if (enable_ept) {
3558 if (!is_paging(vcpu)) {
3559 hw_cr4 &= ~X86_CR4_PAE;
3560 hw_cr4 |= X86_CR4_PSE;
c08800a5 3561 /*
e1e746b3
FW
3562 * SMEP/SMAP is disabled if CPU is in non-paging mode
3563 * in hardware. However KVM always uses paging mode to
c08800a5 3564 * emulate guest non-paging mode with TDP.
e1e746b3
FW
3565 * To emulate this behavior, SMEP/SMAP needs to be
3566 * manually disabled when guest switches to non-paging
3567 * mode.
c08800a5 3568 */
e1e746b3 3569 hw_cr4 &= ~(X86_CR4_SMEP | X86_CR4_SMAP);
bc23008b
AK
3570 } else if (!(cr4 & X86_CR4_PAE)) {
3571 hw_cr4 &= ~X86_CR4_PAE;
3572 }
3573 }
1439442c
SY
3574
3575 vmcs_writel(CR4_READ_SHADOW, cr4);
3576 vmcs_writel(GUEST_CR4, hw_cr4);
5e1746d6 3577 return 0;
6aa8b732
AK
3578}
3579
6aa8b732
AK
3580static void vmx_get_segment(struct kvm_vcpu *vcpu,
3581 struct kvm_segment *var, int seg)
3582{
a9179499 3583 struct vcpu_vmx *vmx = to_vmx(vcpu);
6aa8b732
AK
3584 u32 ar;
3585
c6ad1153 3586 if (vmx->rmode.vm86_active && seg != VCPU_SREG_LDTR) {
f5f7b2fe 3587 *var = vmx->rmode.segs[seg];
a9179499 3588 if (seg == VCPU_SREG_TR
2fb92db1 3589 || var->selector == vmx_read_guest_seg_selector(vmx, seg))
f5f7b2fe 3590 return;
1390a28b
AK
3591 var->base = vmx_read_guest_seg_base(vmx, seg);
3592 var->selector = vmx_read_guest_seg_selector(vmx, seg);
3593 return;
a9179499 3594 }
2fb92db1
AK
3595 var->base = vmx_read_guest_seg_base(vmx, seg);
3596 var->limit = vmx_read_guest_seg_limit(vmx, seg);
3597 var->selector = vmx_read_guest_seg_selector(vmx, seg);
3598 ar = vmx_read_guest_seg_ar(vmx, seg);
03617c18 3599 var->unusable = (ar >> 16) & 1;
6aa8b732
AK
3600 var->type = ar & 15;
3601 var->s = (ar >> 4) & 1;
3602 var->dpl = (ar >> 5) & 3;
03617c18
GN
3603 /*
3604 * Some userspaces do not preserve unusable property. Since usable
3605 * segment has to be present according to VMX spec we can use present
3606 * property to amend userspace bug by making unusable segment always
3607 * nonpresent. vmx_segment_access_rights() already marks nonpresent
3608 * segment as unusable.
3609 */
3610 var->present = !var->unusable;
6aa8b732
AK
3611 var->avl = (ar >> 12) & 1;
3612 var->l = (ar >> 13) & 1;
3613 var->db = (ar >> 14) & 1;
3614 var->g = (ar >> 15) & 1;
6aa8b732
AK
3615}
3616
a9179499
AK
3617static u64 vmx_get_segment_base(struct kvm_vcpu *vcpu, int seg)
3618{
a9179499
AK
3619 struct kvm_segment s;
3620
3621 if (to_vmx(vcpu)->rmode.vm86_active) {
3622 vmx_get_segment(vcpu, &s, seg);
3623 return s.base;
3624 }
2fb92db1 3625 return vmx_read_guest_seg_base(to_vmx(vcpu), seg);
a9179499
AK
3626}
3627
b09408d0 3628static int vmx_get_cpl(struct kvm_vcpu *vcpu)
2e4d2653 3629{
b09408d0
MT
3630 struct vcpu_vmx *vmx = to_vmx(vcpu);
3631
ae9fedc7 3632 if (unlikely(vmx->rmode.vm86_active))
2e4d2653 3633 return 0;
ae9fedc7
PB
3634 else {
3635 int ar = vmx_read_guest_seg_ar(vmx, VCPU_SREG_SS);
3636 return AR_DPL(ar);
69c73028 3637 }
69c73028
AK
3638}
3639
653e3108 3640static u32 vmx_segment_access_rights(struct kvm_segment *var)
6aa8b732 3641{
6aa8b732
AK
3642 u32 ar;
3643
f0495f9b 3644 if (var->unusable || !var->present)
6aa8b732
AK
3645 ar = 1 << 16;
3646 else {
3647 ar = var->type & 15;
3648 ar |= (var->s & 1) << 4;
3649 ar |= (var->dpl & 3) << 5;
3650 ar |= (var->present & 1) << 7;
3651 ar |= (var->avl & 1) << 12;
3652 ar |= (var->l & 1) << 13;
3653 ar |= (var->db & 1) << 14;
3654 ar |= (var->g & 1) << 15;
3655 }
653e3108
AK
3656
3657 return ar;
3658}
3659
3660static void vmx_set_segment(struct kvm_vcpu *vcpu,
3661 struct kvm_segment *var, int seg)
3662{
7ffd92c5 3663 struct vcpu_vmx *vmx = to_vmx(vcpu);
772e0318 3664 const struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg];
653e3108 3665
2fb92db1
AK
3666 vmx_segment_cache_clear(vmx);
3667
1ecd50a9
GN
3668 if (vmx->rmode.vm86_active && seg != VCPU_SREG_LDTR) {
3669 vmx->rmode.segs[seg] = *var;
3670 if (seg == VCPU_SREG_TR)
3671 vmcs_write16(sf->selector, var->selector);
3672 else if (var->s)
3673 fix_rmode_seg(seg, &vmx->rmode.segs[seg]);
d99e4152 3674 goto out;
653e3108 3675 }
1ecd50a9 3676
653e3108
AK
3677 vmcs_writel(sf->base, var->base);
3678 vmcs_write32(sf->limit, var->limit);
3679 vmcs_write16(sf->selector, var->selector);
3a624e29
NK
3680
3681 /*
3682 * Fix the "Accessed" bit in AR field of segment registers for older
3683 * qemu binaries.
3684 * IA32 arch specifies that at the time of processor reset the
3685 * "Accessed" bit in the AR field of segment registers is 1. And qemu
0fa06071 3686 * is setting it to 0 in the userland code. This causes invalid guest
3a624e29
NK
3687 * state vmexit when "unrestricted guest" mode is turned on.
3688 * Fix for this setup issue in cpu_reset is being pushed in the qemu
3689 * tree. Newer qemu binaries with that qemu fix would not need this
3690 * kvm hack.
3691 */
3692 if (enable_unrestricted_guest && (seg != VCPU_SREG_LDTR))
f924d66d 3693 var->type |= 0x1; /* Accessed */
3a624e29 3694
f924d66d 3695 vmcs_write32(sf->ar_bytes, vmx_segment_access_rights(var));
d99e4152
GN
3696
3697out:
98eb2f8b 3698 vmx->emulation_required = emulation_required(vcpu);
6aa8b732
AK
3699}
3700
6aa8b732
AK
3701static void vmx_get_cs_db_l_bits(struct kvm_vcpu *vcpu, int *db, int *l)
3702{
2fb92db1 3703 u32 ar = vmx_read_guest_seg_ar(to_vmx(vcpu), VCPU_SREG_CS);
6aa8b732
AK
3704
3705 *db = (ar >> 14) & 1;
3706 *l = (ar >> 13) & 1;
3707}
3708
89a27f4d 3709static void vmx_get_idt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
6aa8b732 3710{
89a27f4d
GN
3711 dt->size = vmcs_read32(GUEST_IDTR_LIMIT);
3712 dt->address = vmcs_readl(GUEST_IDTR_BASE);
6aa8b732
AK
3713}
3714
89a27f4d 3715static void vmx_set_idt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
6aa8b732 3716{
89a27f4d
GN
3717 vmcs_write32(GUEST_IDTR_LIMIT, dt->size);
3718 vmcs_writel(GUEST_IDTR_BASE, dt->address);
6aa8b732
AK
3719}
3720
89a27f4d 3721static void vmx_get_gdt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
6aa8b732 3722{
89a27f4d
GN
3723 dt->size = vmcs_read32(GUEST_GDTR_LIMIT);
3724 dt->address = vmcs_readl(GUEST_GDTR_BASE);
6aa8b732
AK
3725}
3726
89a27f4d 3727static void vmx_set_gdt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
6aa8b732 3728{
89a27f4d
GN
3729 vmcs_write32(GUEST_GDTR_LIMIT, dt->size);
3730 vmcs_writel(GUEST_GDTR_BASE, dt->address);
6aa8b732
AK
3731}
3732
648dfaa7
MG
3733static bool rmode_segment_valid(struct kvm_vcpu *vcpu, int seg)
3734{
3735 struct kvm_segment var;
3736 u32 ar;
3737
3738 vmx_get_segment(vcpu, &var, seg);
07f42f5f 3739 var.dpl = 0x3;
0647f4aa
GN
3740 if (seg == VCPU_SREG_CS)
3741 var.type = 0x3;
648dfaa7
MG
3742 ar = vmx_segment_access_rights(&var);
3743
3744 if (var.base != (var.selector << 4))
3745 return false;
89efbed0 3746 if (var.limit != 0xffff)
648dfaa7 3747 return false;
07f42f5f 3748 if (ar != 0xf3)
648dfaa7
MG
3749 return false;
3750
3751 return true;
3752}
3753
3754static bool code_segment_valid(struct kvm_vcpu *vcpu)
3755{
3756 struct kvm_segment cs;
3757 unsigned int cs_rpl;
3758
3759 vmx_get_segment(vcpu, &cs, VCPU_SREG_CS);
3760 cs_rpl = cs.selector & SELECTOR_RPL_MASK;
3761
1872a3f4
AK
3762 if (cs.unusable)
3763 return false;
648dfaa7
MG
3764 if (~cs.type & (AR_TYPE_CODE_MASK|AR_TYPE_ACCESSES_MASK))
3765 return false;
3766 if (!cs.s)
3767 return false;
1872a3f4 3768 if (cs.type & AR_TYPE_WRITEABLE_MASK) {
648dfaa7
MG
3769 if (cs.dpl > cs_rpl)
3770 return false;
1872a3f4 3771 } else {
648dfaa7
MG
3772 if (cs.dpl != cs_rpl)
3773 return false;
3774 }
3775 if (!cs.present)
3776 return false;
3777
3778 /* TODO: Add Reserved field check, this'll require a new member in the kvm_segment_field structure */
3779 return true;
3780}
3781
3782static bool stack_segment_valid(struct kvm_vcpu *vcpu)
3783{
3784 struct kvm_segment ss;
3785 unsigned int ss_rpl;
3786
3787 vmx_get_segment(vcpu, &ss, VCPU_SREG_SS);
3788 ss_rpl = ss.selector & SELECTOR_RPL_MASK;
3789
1872a3f4
AK
3790 if (ss.unusable)
3791 return true;
3792 if (ss.type != 3 && ss.type != 7)
648dfaa7
MG
3793 return false;
3794 if (!ss.s)
3795 return false;
3796 if (ss.dpl != ss_rpl) /* DPL != RPL */
3797 return false;
3798 if (!ss.present)
3799 return false;
3800
3801 return true;
3802}
3803
3804static bool data_segment_valid(struct kvm_vcpu *vcpu, int seg)
3805{
3806 struct kvm_segment var;
3807 unsigned int rpl;
3808
3809 vmx_get_segment(vcpu, &var, seg);
3810 rpl = var.selector & SELECTOR_RPL_MASK;
3811
1872a3f4
AK
3812 if (var.unusable)
3813 return true;
648dfaa7
MG
3814 if (!var.s)
3815 return false;
3816 if (!var.present)
3817 return false;
3818 if (~var.type & (AR_TYPE_CODE_MASK|AR_TYPE_WRITEABLE_MASK)) {
3819 if (var.dpl < rpl) /* DPL < RPL */
3820 return false;
3821 }
3822
3823 /* TODO: Add other members to kvm_segment_field to allow checking for other access
3824 * rights flags
3825 */
3826 return true;
3827}
3828
3829static bool tr_valid(struct kvm_vcpu *vcpu)
3830{
3831 struct kvm_segment tr;
3832
3833 vmx_get_segment(vcpu, &tr, VCPU_SREG_TR);
3834
1872a3f4
AK
3835 if (tr.unusable)
3836 return false;
648dfaa7
MG
3837 if (tr.selector & SELECTOR_TI_MASK) /* TI = 1 */
3838 return false;
1872a3f4 3839 if (tr.type != 3 && tr.type != 11) /* TODO: Check if guest is in IA32e mode */
648dfaa7
MG
3840 return false;
3841 if (!tr.present)
3842 return false;
3843
3844 return true;
3845}
3846
3847static bool ldtr_valid(struct kvm_vcpu *vcpu)
3848{
3849 struct kvm_segment ldtr;
3850
3851 vmx_get_segment(vcpu, &ldtr, VCPU_SREG_LDTR);
3852
1872a3f4
AK
3853 if (ldtr.unusable)
3854 return true;
648dfaa7
MG
3855 if (ldtr.selector & SELECTOR_TI_MASK) /* TI = 1 */
3856 return false;
3857 if (ldtr.type != 2)
3858 return false;
3859 if (!ldtr.present)
3860 return false;
3861
3862 return true;
3863}
3864
3865static bool cs_ss_rpl_check(struct kvm_vcpu *vcpu)
3866{
3867 struct kvm_segment cs, ss;
3868
3869 vmx_get_segment(vcpu, &cs, VCPU_SREG_CS);
3870 vmx_get_segment(vcpu, &ss, VCPU_SREG_SS);
3871
3872 return ((cs.selector & SELECTOR_RPL_MASK) ==
3873 (ss.selector & SELECTOR_RPL_MASK));
3874}
3875
3876/*
3877 * Check if guest state is valid. Returns true if valid, false if
3878 * not.
3879 * We assume that registers are always usable
3880 */
3881static bool guest_state_valid(struct kvm_vcpu *vcpu)
3882{
c5e97c80
GN
3883 if (enable_unrestricted_guest)
3884 return true;
3885
648dfaa7 3886 /* real mode guest state checks */
f13882d8 3887 if (!is_protmode(vcpu) || (vmx_get_rflags(vcpu) & X86_EFLAGS_VM)) {
648dfaa7
MG
3888 if (!rmode_segment_valid(vcpu, VCPU_SREG_CS))
3889 return false;
3890 if (!rmode_segment_valid(vcpu, VCPU_SREG_SS))
3891 return false;
3892 if (!rmode_segment_valid(vcpu, VCPU_SREG_DS))
3893 return false;
3894 if (!rmode_segment_valid(vcpu, VCPU_SREG_ES))
3895 return false;
3896 if (!rmode_segment_valid(vcpu, VCPU_SREG_FS))
3897 return false;
3898 if (!rmode_segment_valid(vcpu, VCPU_SREG_GS))
3899 return false;
3900 } else {
3901 /* protected mode guest state checks */
3902 if (!cs_ss_rpl_check(vcpu))
3903 return false;
3904 if (!code_segment_valid(vcpu))
3905 return false;
3906 if (!stack_segment_valid(vcpu))
3907 return false;
3908 if (!data_segment_valid(vcpu, VCPU_SREG_DS))
3909 return false;
3910 if (!data_segment_valid(vcpu, VCPU_SREG_ES))
3911 return false;
3912 if (!data_segment_valid(vcpu, VCPU_SREG_FS))
3913 return false;
3914 if (!data_segment_valid(vcpu, VCPU_SREG_GS))
3915 return false;
3916 if (!tr_valid(vcpu))
3917 return false;
3918 if (!ldtr_valid(vcpu))
3919 return false;
3920 }
3921 /* TODO:
3922 * - Add checks on RIP
3923 * - Add checks on RFLAGS
3924 */
3925
3926 return true;
3927}
3928
d77c26fc 3929static int init_rmode_tss(struct kvm *kvm)
6aa8b732 3930{
40dcaa9f 3931 gfn_t fn;
195aefde 3932 u16 data = 0;
1f755a82 3933 int idx, r;
6aa8b732 3934
40dcaa9f 3935 idx = srcu_read_lock(&kvm->srcu);
4918c6ca 3936 fn = kvm->arch.tss_addr >> PAGE_SHIFT;
195aefde
IE
3937 r = kvm_clear_guest_page(kvm, fn, 0, PAGE_SIZE);
3938 if (r < 0)
10589a46 3939 goto out;
195aefde 3940 data = TSS_BASE_SIZE + TSS_REDIRECTION_SIZE;
464d17c8
SY
3941 r = kvm_write_guest_page(kvm, fn++, &data,
3942 TSS_IOPB_BASE_OFFSET, sizeof(u16));
195aefde 3943 if (r < 0)
10589a46 3944 goto out;
195aefde
IE
3945 r = kvm_clear_guest_page(kvm, fn++, 0, PAGE_SIZE);
3946 if (r < 0)
10589a46 3947 goto out;
195aefde
IE
3948 r = kvm_clear_guest_page(kvm, fn, 0, PAGE_SIZE);
3949 if (r < 0)
10589a46 3950 goto out;
195aefde 3951 data = ~0;
10589a46
MT
3952 r = kvm_write_guest_page(kvm, fn, &data,
3953 RMODE_TSS_SIZE - 2 * PAGE_SIZE - 1,
3954 sizeof(u8));
10589a46 3955out:
40dcaa9f 3956 srcu_read_unlock(&kvm->srcu, idx);
1f755a82 3957 return r;
6aa8b732
AK
3958}
3959
b7ebfb05
SY
3960static int init_rmode_identity_map(struct kvm *kvm)
3961{
f51770ed 3962 int i, idx, r = 0;
b7ebfb05
SY
3963 pfn_t identity_map_pfn;
3964 u32 tmp;
3965
089d034e 3966 if (!enable_ept)
f51770ed 3967 return 0;
a255d479
TC
3968
3969 /* Protect kvm->arch.ept_identity_pagetable_done. */
3970 mutex_lock(&kvm->slots_lock);
3971
f51770ed 3972 if (likely(kvm->arch.ept_identity_pagetable_done))
a255d479 3973 goto out2;
a255d479 3974
b927a3ce 3975 identity_map_pfn = kvm->arch.ept_identity_map_addr >> PAGE_SHIFT;
a255d479
TC
3976
3977 r = alloc_identity_pagetable(kvm);
f51770ed 3978 if (r < 0)
a255d479
TC
3979 goto out2;
3980
40dcaa9f 3981 idx = srcu_read_lock(&kvm->srcu);
b7ebfb05
SY
3982 r = kvm_clear_guest_page(kvm, identity_map_pfn, 0, PAGE_SIZE);
3983 if (r < 0)
3984 goto out;
3985 /* Set up identity-mapping pagetable for EPT in real mode */
3986 for (i = 0; i < PT32_ENT_PER_PAGE; i++) {
3987 tmp = (i << 22) + (_PAGE_PRESENT | _PAGE_RW | _PAGE_USER |
3988 _PAGE_ACCESSED | _PAGE_DIRTY | _PAGE_PSE);
3989 r = kvm_write_guest_page(kvm, identity_map_pfn,
3990 &tmp, i * sizeof(tmp), sizeof(tmp));
3991 if (r < 0)
3992 goto out;
3993 }
3994 kvm->arch.ept_identity_pagetable_done = true;
f51770ed 3995
b7ebfb05 3996out:
40dcaa9f 3997 srcu_read_unlock(&kvm->srcu, idx);
a255d479
TC
3998
3999out2:
4000 mutex_unlock(&kvm->slots_lock);
f51770ed 4001 return r;
b7ebfb05
SY
4002}
4003
6aa8b732
AK
4004static void seg_setup(int seg)
4005{
772e0318 4006 const struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg];
3a624e29 4007 unsigned int ar;
6aa8b732
AK
4008
4009 vmcs_write16(sf->selector, 0);
4010 vmcs_writel(sf->base, 0);
4011 vmcs_write32(sf->limit, 0xffff);
d54d07b2
GN
4012 ar = 0x93;
4013 if (seg == VCPU_SREG_CS)
4014 ar |= 0x08; /* code segment */
3a624e29
NK
4015
4016 vmcs_write32(sf->ar_bytes, ar);
6aa8b732
AK
4017}
4018
f78e0e2e
SY
4019static int alloc_apic_access_page(struct kvm *kvm)
4020{
4484141a 4021 struct page *page;
f78e0e2e
SY
4022 struct kvm_userspace_memory_region kvm_userspace_mem;
4023 int r = 0;
4024
79fac95e 4025 mutex_lock(&kvm->slots_lock);
bfc6d222 4026 if (kvm->arch.apic_access_page)
f78e0e2e
SY
4027 goto out;
4028 kvm_userspace_mem.slot = APIC_ACCESS_PAGE_PRIVATE_MEMSLOT;
4029 kvm_userspace_mem.flags = 0;
73a6d941 4030 kvm_userspace_mem.guest_phys_addr = APIC_DEFAULT_PHYS_BASE;
f78e0e2e 4031 kvm_userspace_mem.memory_size = PAGE_SIZE;
47ae31e2 4032 r = __kvm_set_memory_region(kvm, &kvm_userspace_mem);
f78e0e2e
SY
4033 if (r)
4034 goto out;
72dc67a6 4035
73a6d941 4036 page = gfn_to_page(kvm, APIC_DEFAULT_PHYS_BASE >> PAGE_SHIFT);
4484141a
XG
4037 if (is_error_page(page)) {
4038 r = -EFAULT;
4039 goto out;
4040 }
4041
4042 kvm->arch.apic_access_page = page;
f78e0e2e 4043out:
79fac95e 4044 mutex_unlock(&kvm->slots_lock);
f78e0e2e
SY
4045 return r;
4046}
4047
b7ebfb05
SY
4048static int alloc_identity_pagetable(struct kvm *kvm)
4049{
a255d479
TC
4050 /* Called with kvm->slots_lock held. */
4051
b7ebfb05
SY
4052 struct kvm_userspace_memory_region kvm_userspace_mem;
4053 int r = 0;
4054
a255d479
TC
4055 BUG_ON(kvm->arch.ept_identity_pagetable_done);
4056
b7ebfb05
SY
4057 kvm_userspace_mem.slot = IDENTITY_PAGETABLE_PRIVATE_MEMSLOT;
4058 kvm_userspace_mem.flags = 0;
b927a3ce
SY
4059 kvm_userspace_mem.guest_phys_addr =
4060 kvm->arch.ept_identity_map_addr;
b7ebfb05 4061 kvm_userspace_mem.memory_size = PAGE_SIZE;
47ae31e2 4062 r = __kvm_set_memory_region(kvm, &kvm_userspace_mem);
b7ebfb05 4063
b7ebfb05
SY
4064 return r;
4065}
4066
2384d2b3
SY
4067static void allocate_vpid(struct vcpu_vmx *vmx)
4068{
4069 int vpid;
4070
4071 vmx->vpid = 0;
919818ab 4072 if (!enable_vpid)
2384d2b3
SY
4073 return;
4074 spin_lock(&vmx_vpid_lock);
4075 vpid = find_first_zero_bit(vmx_vpid_bitmap, VMX_NR_VPIDS);
4076 if (vpid < VMX_NR_VPIDS) {
4077 vmx->vpid = vpid;
4078 __set_bit(vpid, vmx_vpid_bitmap);
4079 }
4080 spin_unlock(&vmx_vpid_lock);
4081}
4082
cdbecfc3
LJ
4083static void free_vpid(struct vcpu_vmx *vmx)
4084{
4085 if (!enable_vpid)
4086 return;
4087 spin_lock(&vmx_vpid_lock);
4088 if (vmx->vpid != 0)
4089 __clear_bit(vmx->vpid, vmx_vpid_bitmap);
4090 spin_unlock(&vmx_vpid_lock);
4091}
4092
8d14695f
YZ
4093#define MSR_TYPE_R 1
4094#define MSR_TYPE_W 2
4095static void __vmx_disable_intercept_for_msr(unsigned long *msr_bitmap,
4096 u32 msr, int type)
25c5f225 4097{
3e7c73e9 4098 int f = sizeof(unsigned long);
25c5f225
SY
4099
4100 if (!cpu_has_vmx_msr_bitmap())
4101 return;
4102
4103 /*
4104 * See Intel PRM Vol. 3, 20.6.9 (MSR-Bitmap Address). Early manuals
4105 * have the write-low and read-high bitmap offsets the wrong way round.
4106 * We can control MSRs 0x00000000-0x00001fff and 0xc0000000-0xc0001fff.
4107 */
25c5f225 4108 if (msr <= 0x1fff) {
8d14695f
YZ
4109 if (type & MSR_TYPE_R)
4110 /* read-low */
4111 __clear_bit(msr, msr_bitmap + 0x000 / f);
4112
4113 if (type & MSR_TYPE_W)
4114 /* write-low */
4115 __clear_bit(msr, msr_bitmap + 0x800 / f);
4116
25c5f225
SY
4117 } else if ((msr >= 0xc0000000) && (msr <= 0xc0001fff)) {
4118 msr &= 0x1fff;
8d14695f
YZ
4119 if (type & MSR_TYPE_R)
4120 /* read-high */
4121 __clear_bit(msr, msr_bitmap + 0x400 / f);
4122
4123 if (type & MSR_TYPE_W)
4124 /* write-high */
4125 __clear_bit(msr, msr_bitmap + 0xc00 / f);
4126
4127 }
4128}
4129
4130static void __vmx_enable_intercept_for_msr(unsigned long *msr_bitmap,
4131 u32 msr, int type)
4132{
4133 int f = sizeof(unsigned long);
4134
4135 if (!cpu_has_vmx_msr_bitmap())
4136 return;
4137
4138 /*
4139 * See Intel PRM Vol. 3, 20.6.9 (MSR-Bitmap Address). Early manuals
4140 * have the write-low and read-high bitmap offsets the wrong way round.
4141 * We can control MSRs 0x00000000-0x00001fff and 0xc0000000-0xc0001fff.
4142 */
4143 if (msr <= 0x1fff) {
4144 if (type & MSR_TYPE_R)
4145 /* read-low */
4146 __set_bit(msr, msr_bitmap + 0x000 / f);
4147
4148 if (type & MSR_TYPE_W)
4149 /* write-low */
4150 __set_bit(msr, msr_bitmap + 0x800 / f);
4151
4152 } else if ((msr >= 0xc0000000) && (msr <= 0xc0001fff)) {
4153 msr &= 0x1fff;
4154 if (type & MSR_TYPE_R)
4155 /* read-high */
4156 __set_bit(msr, msr_bitmap + 0x400 / f);
4157
4158 if (type & MSR_TYPE_W)
4159 /* write-high */
4160 __set_bit(msr, msr_bitmap + 0xc00 / f);
4161
25c5f225 4162 }
25c5f225
SY
4163}
4164
5897297b
AK
4165static void vmx_disable_intercept_for_msr(u32 msr, bool longmode_only)
4166{
4167 if (!longmode_only)
8d14695f
YZ
4168 __vmx_disable_intercept_for_msr(vmx_msr_bitmap_legacy,
4169 msr, MSR_TYPE_R | MSR_TYPE_W);
4170 __vmx_disable_intercept_for_msr(vmx_msr_bitmap_longmode,
4171 msr, MSR_TYPE_R | MSR_TYPE_W);
4172}
4173
4174static void vmx_enable_intercept_msr_read_x2apic(u32 msr)
4175{
4176 __vmx_enable_intercept_for_msr(vmx_msr_bitmap_legacy_x2apic,
4177 msr, MSR_TYPE_R);
4178 __vmx_enable_intercept_for_msr(vmx_msr_bitmap_longmode_x2apic,
4179 msr, MSR_TYPE_R);
4180}
4181
4182static void vmx_disable_intercept_msr_read_x2apic(u32 msr)
4183{
4184 __vmx_disable_intercept_for_msr(vmx_msr_bitmap_legacy_x2apic,
4185 msr, MSR_TYPE_R);
4186 __vmx_disable_intercept_for_msr(vmx_msr_bitmap_longmode_x2apic,
4187 msr, MSR_TYPE_R);
4188}
4189
4190static void vmx_disable_intercept_msr_write_x2apic(u32 msr)
4191{
4192 __vmx_disable_intercept_for_msr(vmx_msr_bitmap_legacy_x2apic,
4193 msr, MSR_TYPE_W);
4194 __vmx_disable_intercept_for_msr(vmx_msr_bitmap_longmode_x2apic,
4195 msr, MSR_TYPE_W);
5897297b
AK
4196}
4197
01e439be
YZ
4198static int vmx_vm_has_apicv(struct kvm *kvm)
4199{
4200 return enable_apicv && irqchip_in_kernel(kvm);
4201}
4202
a20ed54d
YZ
4203/*
4204 * Send interrupt to vcpu via posted interrupt way.
4205 * 1. If target vcpu is running(non-root mode), send posted interrupt
4206 * notification to vcpu and hardware will sync PIR to vIRR atomically.
4207 * 2. If target vcpu isn't running(root mode), kick it to pick up the
4208 * interrupt from PIR in next vmentry.
4209 */
4210static void vmx_deliver_posted_interrupt(struct kvm_vcpu *vcpu, int vector)
4211{
4212 struct vcpu_vmx *vmx = to_vmx(vcpu);
4213 int r;
4214
4215 if (pi_test_and_set_pir(vector, &vmx->pi_desc))
4216 return;
4217
4218 r = pi_test_and_set_on(&vmx->pi_desc);
4219 kvm_make_request(KVM_REQ_EVENT, vcpu);
6ffbbbba 4220#ifdef CONFIG_SMP
a20ed54d
YZ
4221 if (!r && (vcpu->mode == IN_GUEST_MODE))
4222 apic->send_IPI_mask(get_cpu_mask(vcpu->cpu),
4223 POSTED_INTR_VECTOR);
4224 else
6ffbbbba 4225#endif
a20ed54d
YZ
4226 kvm_vcpu_kick(vcpu);
4227}
4228
4229static void vmx_sync_pir_to_irr(struct kvm_vcpu *vcpu)
4230{
4231 struct vcpu_vmx *vmx = to_vmx(vcpu);
4232
4233 if (!pi_test_and_clear_on(&vmx->pi_desc))
4234 return;
4235
4236 kvm_apic_update_irr(vcpu, vmx->pi_desc.pir);
4237}
4238
4239static void vmx_sync_pir_to_irr_dummy(struct kvm_vcpu *vcpu)
4240{
4241 return;
4242}
4243
a3a8ff8e
NHE
4244/*
4245 * Set up the vmcs's constant host-state fields, i.e., host-state fields that
4246 * will not change in the lifetime of the guest.
4247 * Note that host-state that does change is set elsewhere. E.g., host-state
4248 * that is set differently for each CPU is set in vmx_vcpu_load(), not here.
4249 */
a547c6db 4250static void vmx_set_constant_host_state(struct vcpu_vmx *vmx)
a3a8ff8e
NHE
4251{
4252 u32 low32, high32;
4253 unsigned long tmpl;
4254 struct desc_ptr dt;
4255
b1a74bf8 4256 vmcs_writel(HOST_CR0, read_cr0() & ~X86_CR0_TS); /* 22.2.3 */
a3a8ff8e
NHE
4257 vmcs_writel(HOST_CR4, read_cr4()); /* 22.2.3, 22.2.5 */
4258 vmcs_writel(HOST_CR3, read_cr3()); /* 22.2.3 FIXME: shadow tables */
4259
4260 vmcs_write16(HOST_CS_SELECTOR, __KERNEL_CS); /* 22.2.4 */
b2da15ac
AK
4261#ifdef CONFIG_X86_64
4262 /*
4263 * Load null selectors, so we can avoid reloading them in
4264 * __vmx_load_host_state(), in case userspace uses the null selectors
4265 * too (the expected case).
4266 */
4267 vmcs_write16(HOST_DS_SELECTOR, 0);
4268 vmcs_write16(HOST_ES_SELECTOR, 0);
4269#else
a3a8ff8e
NHE
4270 vmcs_write16(HOST_DS_SELECTOR, __KERNEL_DS); /* 22.2.4 */
4271 vmcs_write16(HOST_ES_SELECTOR, __KERNEL_DS); /* 22.2.4 */
b2da15ac 4272#endif
a3a8ff8e
NHE
4273 vmcs_write16(HOST_SS_SELECTOR, __KERNEL_DS); /* 22.2.4 */
4274 vmcs_write16(HOST_TR_SELECTOR, GDT_ENTRY_TSS*8); /* 22.2.4 */
4275
4276 native_store_idt(&dt);
4277 vmcs_writel(HOST_IDTR_BASE, dt.address); /* 22.2.4 */
a547c6db 4278 vmx->host_idt_base = dt.address;
a3a8ff8e 4279
83287ea4 4280 vmcs_writel(HOST_RIP, vmx_return); /* 22.2.5 */
a3a8ff8e
NHE
4281
4282 rdmsr(MSR_IA32_SYSENTER_CS, low32, high32);
4283 vmcs_write32(HOST_IA32_SYSENTER_CS, low32);
4284 rdmsrl(MSR_IA32_SYSENTER_EIP, tmpl);
4285 vmcs_writel(HOST_IA32_SYSENTER_EIP, tmpl); /* 22.2.3 */
4286
4287 if (vmcs_config.vmexit_ctrl & VM_EXIT_LOAD_IA32_PAT) {
4288 rdmsr(MSR_IA32_CR_PAT, low32, high32);
4289 vmcs_write64(HOST_IA32_PAT, low32 | ((u64) high32 << 32));
4290 }
4291}
4292
bf8179a0
NHE
4293static void set_cr4_guest_host_mask(struct vcpu_vmx *vmx)
4294{
4295 vmx->vcpu.arch.cr4_guest_owned_bits = KVM_CR4_GUEST_OWNED_BITS;
4296 if (enable_ept)
4297 vmx->vcpu.arch.cr4_guest_owned_bits |= X86_CR4_PGE;
fe3ef05c
NHE
4298 if (is_guest_mode(&vmx->vcpu))
4299 vmx->vcpu.arch.cr4_guest_owned_bits &=
4300 ~get_vmcs12(&vmx->vcpu)->cr4_guest_host_mask;
bf8179a0
NHE
4301 vmcs_writel(CR4_GUEST_HOST_MASK, ~vmx->vcpu.arch.cr4_guest_owned_bits);
4302}
4303
01e439be
YZ
4304static u32 vmx_pin_based_exec_ctrl(struct vcpu_vmx *vmx)
4305{
4306 u32 pin_based_exec_ctrl = vmcs_config.pin_based_exec_ctrl;
4307
4308 if (!vmx_vm_has_apicv(vmx->vcpu.kvm))
4309 pin_based_exec_ctrl &= ~PIN_BASED_POSTED_INTR;
4310 return pin_based_exec_ctrl;
4311}
4312
bf8179a0
NHE
4313static u32 vmx_exec_control(struct vcpu_vmx *vmx)
4314{
4315 u32 exec_control = vmcs_config.cpu_based_exec_ctrl;
d16c293e
PB
4316
4317 if (vmx->vcpu.arch.switch_db_regs & KVM_DEBUGREG_WONT_EXIT)
4318 exec_control &= ~CPU_BASED_MOV_DR_EXITING;
4319
bf8179a0
NHE
4320 if (!vm_need_tpr_shadow(vmx->vcpu.kvm)) {
4321 exec_control &= ~CPU_BASED_TPR_SHADOW;
4322#ifdef CONFIG_X86_64
4323 exec_control |= CPU_BASED_CR8_STORE_EXITING |
4324 CPU_BASED_CR8_LOAD_EXITING;
4325#endif
4326 }
4327 if (!enable_ept)
4328 exec_control |= CPU_BASED_CR3_STORE_EXITING |
4329 CPU_BASED_CR3_LOAD_EXITING |
4330 CPU_BASED_INVLPG_EXITING;
4331 return exec_control;
4332}
4333
4334static u32 vmx_secondary_exec_control(struct vcpu_vmx *vmx)
4335{
4336 u32 exec_control = vmcs_config.cpu_based_2nd_exec_ctrl;
4337 if (!vm_need_virtualize_apic_accesses(vmx->vcpu.kvm))
4338 exec_control &= ~SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES;
4339 if (vmx->vpid == 0)
4340 exec_control &= ~SECONDARY_EXEC_ENABLE_VPID;
4341 if (!enable_ept) {
4342 exec_control &= ~SECONDARY_EXEC_ENABLE_EPT;
4343 enable_unrestricted_guest = 0;
ad756a16
MJ
4344 /* Enable INVPCID for non-ept guests may cause performance regression. */
4345 exec_control &= ~SECONDARY_EXEC_ENABLE_INVPCID;
bf8179a0
NHE
4346 }
4347 if (!enable_unrestricted_guest)
4348 exec_control &= ~SECONDARY_EXEC_UNRESTRICTED_GUEST;
4349 if (!ple_gap)
4350 exec_control &= ~SECONDARY_EXEC_PAUSE_LOOP_EXITING;
c7c9c56c
YZ
4351 if (!vmx_vm_has_apicv(vmx->vcpu.kvm))
4352 exec_control &= ~(SECONDARY_EXEC_APIC_REGISTER_VIRT |
4353 SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY);
8d14695f 4354 exec_control &= ~SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE;
abc4fc58
AG
4355 /* SECONDARY_EXEC_SHADOW_VMCS is enabled when L1 executes VMPTRLD
4356 (handle_vmptrld).
4357 We can NOT enable shadow_vmcs here because we don't have yet
4358 a current VMCS12
4359 */
4360 exec_control &= ~SECONDARY_EXEC_SHADOW_VMCS;
bf8179a0
NHE
4361 return exec_control;
4362}
4363
ce88decf
XG
4364static void ept_set_mmio_spte_mask(void)
4365{
4366 /*
4367 * EPT Misconfigurations can be generated if the value of bits 2:0
4368 * of an EPT paging-structure entry is 110b (write/execute).
885032b9 4369 * Also, magic bits (0x3ull << 62) is set to quickly identify mmio
ce88decf
XG
4370 * spte.
4371 */
885032b9 4372 kvm_mmu_set_mmio_spte_mask((0x3ull << 62) | 0x6ull);
ce88decf
XG
4373}
4374
6aa8b732
AK
4375/*
4376 * Sets up the vmcs for emulated real mode.
4377 */
8b9cf98c 4378static int vmx_vcpu_setup(struct vcpu_vmx *vmx)
6aa8b732 4379{
2e4ce7f5 4380#ifdef CONFIG_X86_64
6aa8b732 4381 unsigned long a;
2e4ce7f5 4382#endif
6aa8b732 4383 int i;
6aa8b732 4384
6aa8b732 4385 /* I/O */
3e7c73e9
AK
4386 vmcs_write64(IO_BITMAP_A, __pa(vmx_io_bitmap_a));
4387 vmcs_write64(IO_BITMAP_B, __pa(vmx_io_bitmap_b));
6aa8b732 4388
4607c2d7
AG
4389 if (enable_shadow_vmcs) {
4390 vmcs_write64(VMREAD_BITMAP, __pa(vmx_vmread_bitmap));
4391 vmcs_write64(VMWRITE_BITMAP, __pa(vmx_vmwrite_bitmap));
4392 }
25c5f225 4393 if (cpu_has_vmx_msr_bitmap())
5897297b 4394 vmcs_write64(MSR_BITMAP, __pa(vmx_msr_bitmap_legacy));
25c5f225 4395
6aa8b732
AK
4396 vmcs_write64(VMCS_LINK_POINTER, -1ull); /* 22.3.1.5 */
4397
6aa8b732 4398 /* Control */
01e439be 4399 vmcs_write32(PIN_BASED_VM_EXEC_CONTROL, vmx_pin_based_exec_ctrl(vmx));
6e5d865c 4400
bf8179a0 4401 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, vmx_exec_control(vmx));
6aa8b732 4402
83ff3b9d 4403 if (cpu_has_secondary_exec_ctrls()) {
bf8179a0
NHE
4404 vmcs_write32(SECONDARY_VM_EXEC_CONTROL,
4405 vmx_secondary_exec_control(vmx));
83ff3b9d 4406 }
f78e0e2e 4407
01e439be 4408 if (vmx_vm_has_apicv(vmx->vcpu.kvm)) {
c7c9c56c
YZ
4409 vmcs_write64(EOI_EXIT_BITMAP0, 0);
4410 vmcs_write64(EOI_EXIT_BITMAP1, 0);
4411 vmcs_write64(EOI_EXIT_BITMAP2, 0);
4412 vmcs_write64(EOI_EXIT_BITMAP3, 0);
4413
4414 vmcs_write16(GUEST_INTR_STATUS, 0);
01e439be
YZ
4415
4416 vmcs_write64(POSTED_INTR_NV, POSTED_INTR_VECTOR);
4417 vmcs_write64(POSTED_INTR_DESC_ADDR, __pa((&vmx->pi_desc)));
c7c9c56c
YZ
4418 }
4419
4b8d54f9
ZE
4420 if (ple_gap) {
4421 vmcs_write32(PLE_GAP, ple_gap);
a7653ecd
RK
4422 vmx->ple_window = ple_window;
4423 vmx->ple_window_dirty = true;
4b8d54f9
ZE
4424 }
4425
c3707958
XG
4426 vmcs_write32(PAGE_FAULT_ERROR_CODE_MASK, 0);
4427 vmcs_write32(PAGE_FAULT_ERROR_CODE_MATCH, 0);
6aa8b732
AK
4428 vmcs_write32(CR3_TARGET_COUNT, 0); /* 22.2.1 */
4429
9581d442
AK
4430 vmcs_write16(HOST_FS_SELECTOR, 0); /* 22.2.4 */
4431 vmcs_write16(HOST_GS_SELECTOR, 0); /* 22.2.4 */
a547c6db 4432 vmx_set_constant_host_state(vmx);
05b3e0c2 4433#ifdef CONFIG_X86_64
6aa8b732
AK
4434 rdmsrl(MSR_FS_BASE, a);
4435 vmcs_writel(HOST_FS_BASE, a); /* 22.2.4 */
4436 rdmsrl(MSR_GS_BASE, a);
4437 vmcs_writel(HOST_GS_BASE, a); /* 22.2.4 */
4438#else
4439 vmcs_writel(HOST_FS_BASE, 0); /* 22.2.4 */
4440 vmcs_writel(HOST_GS_BASE, 0); /* 22.2.4 */
4441#endif
4442
2cc51560
ED
4443 vmcs_write32(VM_EXIT_MSR_STORE_COUNT, 0);
4444 vmcs_write32(VM_EXIT_MSR_LOAD_COUNT, 0);
61d2ef2c 4445 vmcs_write64(VM_EXIT_MSR_LOAD_ADDR, __pa(vmx->msr_autoload.host));
2cc51560 4446 vmcs_write32(VM_ENTRY_MSR_LOAD_COUNT, 0);
61d2ef2c 4447 vmcs_write64(VM_ENTRY_MSR_LOAD_ADDR, __pa(vmx->msr_autoload.guest));
6aa8b732 4448
468d472f 4449 if (vmcs_config.vmentry_ctrl & VM_ENTRY_LOAD_IA32_PAT) {
a3a8ff8e
NHE
4450 u32 msr_low, msr_high;
4451 u64 host_pat;
468d472f
SY
4452 rdmsr(MSR_IA32_CR_PAT, msr_low, msr_high);
4453 host_pat = msr_low | ((u64) msr_high << 32);
4454 /* Write the default value follow host pat */
4455 vmcs_write64(GUEST_IA32_PAT, host_pat);
4456 /* Keep arch.pat sync with GUEST_IA32_PAT */
4457 vmx->vcpu.arch.pat = host_pat;
4458 }
4459
03916db9 4460 for (i = 0; i < ARRAY_SIZE(vmx_msr_index); ++i) {
6aa8b732
AK
4461 u32 index = vmx_msr_index[i];
4462 u32 data_low, data_high;
a2fa3e9f 4463 int j = vmx->nmsrs;
6aa8b732
AK
4464
4465 if (rdmsr_safe(index, &data_low, &data_high) < 0)
4466 continue;
432bd6cb
AK
4467 if (wrmsr_safe(index, data_low, data_high) < 0)
4468 continue;
26bb0981
AK
4469 vmx->guest_msrs[j].index = i;
4470 vmx->guest_msrs[j].data = 0;
d5696725 4471 vmx->guest_msrs[j].mask = -1ull;
a2fa3e9f 4472 ++vmx->nmsrs;
6aa8b732 4473 }
6aa8b732 4474
2961e876
GN
4475
4476 vm_exit_controls_init(vmx, vmcs_config.vmexit_ctrl);
6aa8b732
AK
4477
4478 /* 22.2.1, 20.8.1 */
2961e876 4479 vm_entry_controls_init(vmx, vmcs_config.vmentry_ctrl);
1c3d14fe 4480
e00c8cf2 4481 vmcs_writel(CR0_GUEST_HOST_MASK, ~0UL);
bf8179a0 4482 set_cr4_guest_host_mask(vmx);
e00c8cf2
AK
4483
4484 return 0;
4485}
4486
57f252f2 4487static void vmx_vcpu_reset(struct kvm_vcpu *vcpu)
e00c8cf2
AK
4488{
4489 struct vcpu_vmx *vmx = to_vmx(vcpu);
58cb628d 4490 struct msr_data apic_base_msr;
e00c8cf2 4491
7ffd92c5 4492 vmx->rmode.vm86_active = 0;
e00c8cf2 4493
3b86cd99
JK
4494 vmx->soft_vnmi_blocked = 0;
4495
ad312c7c 4496 vmx->vcpu.arch.regs[VCPU_REGS_RDX] = get_rdx_init_val();
2d3ad1f4 4497 kvm_set_cr8(&vmx->vcpu, 0);
73a6d941 4498 apic_base_msr.data = APIC_DEFAULT_PHYS_BASE | MSR_IA32_APICBASE_ENABLE;
c5af89b6 4499 if (kvm_vcpu_is_bsp(&vmx->vcpu))
58cb628d
JK
4500 apic_base_msr.data |= MSR_IA32_APICBASE_BSP;
4501 apic_base_msr.host_initiated = true;
4502 kvm_set_apic_base(&vmx->vcpu, &apic_base_msr);
e00c8cf2 4503
2fb92db1
AK
4504 vmx_segment_cache_clear(vmx);
4505
5706be0d 4506 seg_setup(VCPU_SREG_CS);
66450a21 4507 vmcs_write16(GUEST_CS_SELECTOR, 0xf000);
04b66839 4508 vmcs_write32(GUEST_CS_BASE, 0xffff0000);
e00c8cf2
AK
4509
4510 seg_setup(VCPU_SREG_DS);
4511 seg_setup(VCPU_SREG_ES);
4512 seg_setup(VCPU_SREG_FS);
4513 seg_setup(VCPU_SREG_GS);
4514 seg_setup(VCPU_SREG_SS);
4515
4516 vmcs_write16(GUEST_TR_SELECTOR, 0);
4517 vmcs_writel(GUEST_TR_BASE, 0);
4518 vmcs_write32(GUEST_TR_LIMIT, 0xffff);
4519 vmcs_write32(GUEST_TR_AR_BYTES, 0x008b);
4520
4521 vmcs_write16(GUEST_LDTR_SELECTOR, 0);
4522 vmcs_writel(GUEST_LDTR_BASE, 0);
4523 vmcs_write32(GUEST_LDTR_LIMIT, 0xffff);
4524 vmcs_write32(GUEST_LDTR_AR_BYTES, 0x00082);
4525
4526 vmcs_write32(GUEST_SYSENTER_CS, 0);
4527 vmcs_writel(GUEST_SYSENTER_ESP, 0);
4528 vmcs_writel(GUEST_SYSENTER_EIP, 0);
4529
4530 vmcs_writel(GUEST_RFLAGS, 0x02);
66450a21 4531 kvm_rip_write(vcpu, 0xfff0);
e00c8cf2 4532
e00c8cf2
AK
4533 vmcs_writel(GUEST_GDTR_BASE, 0);
4534 vmcs_write32(GUEST_GDTR_LIMIT, 0xffff);
4535
4536 vmcs_writel(GUEST_IDTR_BASE, 0);
4537 vmcs_write32(GUEST_IDTR_LIMIT, 0xffff);
4538
443381a8 4539 vmcs_write32(GUEST_ACTIVITY_STATE, GUEST_ACTIVITY_ACTIVE);
e00c8cf2
AK
4540 vmcs_write32(GUEST_INTERRUPTIBILITY_INFO, 0);
4541 vmcs_write32(GUEST_PENDING_DBG_EXCEPTIONS, 0);
4542
e00c8cf2
AK
4543 /* Special registers */
4544 vmcs_write64(GUEST_IA32_DEBUGCTL, 0);
4545
4546 setup_msrs(vmx);
4547
6aa8b732
AK
4548 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, 0); /* 22.2.1 */
4549
f78e0e2e
SY
4550 if (cpu_has_vmx_tpr_shadow()) {
4551 vmcs_write64(VIRTUAL_APIC_PAGE_ADDR, 0);
4552 if (vm_need_tpr_shadow(vmx->vcpu.kvm))
4553 vmcs_write64(VIRTUAL_APIC_PAGE_ADDR,
afc20184 4554 __pa(vmx->vcpu.arch.apic->regs));
f78e0e2e
SY
4555 vmcs_write32(TPR_THRESHOLD, 0);
4556 }
4557
4558 if (vm_need_virtualize_apic_accesses(vmx->vcpu.kvm))
4559 vmcs_write64(APIC_ACCESS_ADDR,
bfc6d222 4560 page_to_phys(vmx->vcpu.kvm->arch.apic_access_page));
6aa8b732 4561
01e439be
YZ
4562 if (vmx_vm_has_apicv(vcpu->kvm))
4563 memset(&vmx->pi_desc, 0, sizeof(struct pi_desc));
4564
2384d2b3
SY
4565 if (vmx->vpid != 0)
4566 vmcs_write16(VIRTUAL_PROCESSOR_ID, vmx->vpid);
4567
fa40052c 4568 vmx->vcpu.arch.cr0 = X86_CR0_NW | X86_CR0_CD | X86_CR0_ET;
4d4ec087 4569 vmx_set_cr0(&vmx->vcpu, kvm_read_cr0(vcpu)); /* enter rmode */
8b9cf98c 4570 vmx_set_cr4(&vmx->vcpu, 0);
8b9cf98c 4571 vmx_set_efer(&vmx->vcpu, 0);
8b9cf98c
RR
4572 vmx_fpu_activate(&vmx->vcpu);
4573 update_exception_bitmap(&vmx->vcpu);
6aa8b732 4574
b9d762fa 4575 vpid_sync_context(vmx);
6aa8b732
AK
4576}
4577
b6f1250e
NHE
4578/*
4579 * In nested virtualization, check if L1 asked to exit on external interrupts.
4580 * For most existing hypervisors, this will always return true.
4581 */
4582static bool nested_exit_on_intr(struct kvm_vcpu *vcpu)
4583{
4584 return get_vmcs12(vcpu)->pin_based_vm_exec_control &
4585 PIN_BASED_EXT_INTR_MASK;
4586}
4587
77b0f5d6
BD
4588/*
4589 * In nested virtualization, check if L1 has set
4590 * VM_EXIT_ACK_INTR_ON_EXIT
4591 */
4592static bool nested_exit_intr_ack_set(struct kvm_vcpu *vcpu)
4593{
4594 return get_vmcs12(vcpu)->vm_exit_controls &
4595 VM_EXIT_ACK_INTR_ON_EXIT;
4596}
4597
ea8ceb83
JK
4598static bool nested_exit_on_nmi(struct kvm_vcpu *vcpu)
4599{
4600 return get_vmcs12(vcpu)->pin_based_vm_exec_control &
4601 PIN_BASED_NMI_EXITING;
4602}
4603
c9a7953f 4604static void enable_irq_window(struct kvm_vcpu *vcpu)
3b86cd99
JK
4605{
4606 u32 cpu_based_vm_exec_control;
730dca42 4607
3b86cd99
JK
4608 cpu_based_vm_exec_control = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL);
4609 cpu_based_vm_exec_control |= CPU_BASED_VIRTUAL_INTR_PENDING;
4610 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, cpu_based_vm_exec_control);
4611}
4612
c9a7953f 4613static void enable_nmi_window(struct kvm_vcpu *vcpu)
3b86cd99
JK
4614{
4615 u32 cpu_based_vm_exec_control;
4616
c9a7953f
JK
4617 if (!cpu_has_virtual_nmis() ||
4618 vmcs_read32(GUEST_INTERRUPTIBILITY_INFO) & GUEST_INTR_STATE_STI) {
4619 enable_irq_window(vcpu);
4620 return;
4621 }
3b86cd99
JK
4622
4623 cpu_based_vm_exec_control = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL);
4624 cpu_based_vm_exec_control |= CPU_BASED_VIRTUAL_NMI_PENDING;
4625 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, cpu_based_vm_exec_control);
4626}
4627
66fd3f7f 4628static void vmx_inject_irq(struct kvm_vcpu *vcpu)
85f455f7 4629{
9c8cba37 4630 struct vcpu_vmx *vmx = to_vmx(vcpu);
66fd3f7f
GN
4631 uint32_t intr;
4632 int irq = vcpu->arch.interrupt.nr;
9c8cba37 4633
229456fc 4634 trace_kvm_inj_virq(irq);
2714d1d3 4635
fa89a817 4636 ++vcpu->stat.irq_injections;
7ffd92c5 4637 if (vmx->rmode.vm86_active) {
71f9833b
SH
4638 int inc_eip = 0;
4639 if (vcpu->arch.interrupt.soft)
4640 inc_eip = vcpu->arch.event_exit_inst_len;
4641 if (kvm_inject_realmode_interrupt(vcpu, irq, inc_eip) != EMULATE_DONE)
a92601bb 4642 kvm_make_request(KVM_REQ_TRIPLE_FAULT, vcpu);
85f455f7
ED
4643 return;
4644 }
66fd3f7f
GN
4645 intr = irq | INTR_INFO_VALID_MASK;
4646 if (vcpu->arch.interrupt.soft) {
4647 intr |= INTR_TYPE_SOFT_INTR;
4648 vmcs_write32(VM_ENTRY_INSTRUCTION_LEN,
4649 vmx->vcpu.arch.event_exit_inst_len);
4650 } else
4651 intr |= INTR_TYPE_EXT_INTR;
4652 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, intr);
85f455f7
ED
4653}
4654
f08864b4
SY
4655static void vmx_inject_nmi(struct kvm_vcpu *vcpu)
4656{
66a5a347
JK
4657 struct vcpu_vmx *vmx = to_vmx(vcpu);
4658
0b6ac343
NHE
4659 if (is_guest_mode(vcpu))
4660 return;
4661
3b86cd99
JK
4662 if (!cpu_has_virtual_nmis()) {
4663 /*
4664 * Tracking the NMI-blocked state in software is built upon
4665 * finding the next open IRQ window. This, in turn, depends on
4666 * well-behaving guests: They have to keep IRQs disabled at
4667 * least as long as the NMI handler runs. Otherwise we may
4668 * cause NMI nesting, maybe breaking the guest. But as this is
4669 * highly unlikely, we can live with the residual risk.
4670 */
4671 vmx->soft_vnmi_blocked = 1;
4672 vmx->vnmi_blocked_time = 0;
4673 }
4674
487b391d 4675 ++vcpu->stat.nmi_injections;
9d58b931 4676 vmx->nmi_known_unmasked = false;
7ffd92c5 4677 if (vmx->rmode.vm86_active) {
71f9833b 4678 if (kvm_inject_realmode_interrupt(vcpu, NMI_VECTOR, 0) != EMULATE_DONE)
a92601bb 4679 kvm_make_request(KVM_REQ_TRIPLE_FAULT, vcpu);
66a5a347
JK
4680 return;
4681 }
f08864b4
SY
4682 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD,
4683 INTR_TYPE_NMI_INTR | INTR_INFO_VALID_MASK | NMI_VECTOR);
f08864b4
SY
4684}
4685
3cfc3092
JK
4686static bool vmx_get_nmi_mask(struct kvm_vcpu *vcpu)
4687{
4688 if (!cpu_has_virtual_nmis())
4689 return to_vmx(vcpu)->soft_vnmi_blocked;
9d58b931
AK
4690 if (to_vmx(vcpu)->nmi_known_unmasked)
4691 return false;
c332c83a 4692 return vmcs_read32(GUEST_INTERRUPTIBILITY_INFO) & GUEST_INTR_STATE_NMI;
3cfc3092
JK
4693}
4694
4695static void vmx_set_nmi_mask(struct kvm_vcpu *vcpu, bool masked)
4696{
4697 struct vcpu_vmx *vmx = to_vmx(vcpu);
4698
4699 if (!cpu_has_virtual_nmis()) {
4700 if (vmx->soft_vnmi_blocked != masked) {
4701 vmx->soft_vnmi_blocked = masked;
4702 vmx->vnmi_blocked_time = 0;
4703 }
4704 } else {
9d58b931 4705 vmx->nmi_known_unmasked = !masked;
3cfc3092
JK
4706 if (masked)
4707 vmcs_set_bits(GUEST_INTERRUPTIBILITY_INFO,
4708 GUEST_INTR_STATE_NMI);
4709 else
4710 vmcs_clear_bits(GUEST_INTERRUPTIBILITY_INFO,
4711 GUEST_INTR_STATE_NMI);
4712 }
4713}
4714
2505dc9f
JK
4715static int vmx_nmi_allowed(struct kvm_vcpu *vcpu)
4716{
b6b8a145
JK
4717 if (to_vmx(vcpu)->nested.nested_run_pending)
4718 return 0;
ea8ceb83 4719
2505dc9f
JK
4720 if (!cpu_has_virtual_nmis() && to_vmx(vcpu)->soft_vnmi_blocked)
4721 return 0;
4722
4723 return !(vmcs_read32(GUEST_INTERRUPTIBILITY_INFO) &
4724 (GUEST_INTR_STATE_MOV_SS | GUEST_INTR_STATE_STI
4725 | GUEST_INTR_STATE_NMI));
4726}
4727
78646121
GN
4728static int vmx_interrupt_allowed(struct kvm_vcpu *vcpu)
4729{
b6b8a145
JK
4730 return (!to_vmx(vcpu)->nested.nested_run_pending &&
4731 vmcs_readl(GUEST_RFLAGS) & X86_EFLAGS_IF) &&
c4282df9
GN
4732 !(vmcs_read32(GUEST_INTERRUPTIBILITY_INFO) &
4733 (GUEST_INTR_STATE_STI | GUEST_INTR_STATE_MOV_SS));
78646121
GN
4734}
4735
cbc94022
IE
4736static int vmx_set_tss_addr(struct kvm *kvm, unsigned int addr)
4737{
4738 int ret;
4739 struct kvm_userspace_memory_region tss_mem = {
6fe63979 4740 .slot = TSS_PRIVATE_MEMSLOT,
cbc94022
IE
4741 .guest_phys_addr = addr,
4742 .memory_size = PAGE_SIZE * 3,
4743 .flags = 0,
4744 };
4745
47ae31e2 4746 ret = kvm_set_memory_region(kvm, &tss_mem);
cbc94022
IE
4747 if (ret)
4748 return ret;
bfc6d222 4749 kvm->arch.tss_addr = addr;
1f755a82 4750 return init_rmode_tss(kvm);
cbc94022
IE
4751}
4752
0ca1b4f4 4753static bool rmode_exception(struct kvm_vcpu *vcpu, int vec)
6aa8b732 4754{
77ab6db0 4755 switch (vec) {
77ab6db0 4756 case BP_VECTOR:
c573cd22
JK
4757 /*
4758 * Update instruction length as we may reinject the exception
4759 * from user space while in guest debugging mode.
4760 */
4761 to_vmx(vcpu)->vcpu.arch.event_exit_inst_len =
4762 vmcs_read32(VM_EXIT_INSTRUCTION_LEN);
d0bfb940 4763 if (vcpu->guest_debug & KVM_GUESTDBG_USE_SW_BP)
0ca1b4f4
GN
4764 return false;
4765 /* fall through */
4766 case DB_VECTOR:
4767 if (vcpu->guest_debug &
4768 (KVM_GUESTDBG_SINGLESTEP | KVM_GUESTDBG_USE_HW_BP))
4769 return false;
d0bfb940
JK
4770 /* fall through */
4771 case DE_VECTOR:
77ab6db0
JK
4772 case OF_VECTOR:
4773 case BR_VECTOR:
4774 case UD_VECTOR:
4775 case DF_VECTOR:
4776 case SS_VECTOR:
4777 case GP_VECTOR:
4778 case MF_VECTOR:
0ca1b4f4
GN
4779 return true;
4780 break;
77ab6db0 4781 }
0ca1b4f4
GN
4782 return false;
4783}
4784
4785static int handle_rmode_exception(struct kvm_vcpu *vcpu,
4786 int vec, u32 err_code)
4787{
4788 /*
4789 * Instruction with address size override prefix opcode 0x67
4790 * Cause the #SS fault with 0 error code in VM86 mode.
4791 */
4792 if (((vec == GP_VECTOR) || (vec == SS_VECTOR)) && err_code == 0) {
4793 if (emulate_instruction(vcpu, 0) == EMULATE_DONE) {
4794 if (vcpu->arch.halt_request) {
4795 vcpu->arch.halt_request = 0;
4796 return kvm_emulate_halt(vcpu);
4797 }
4798 return 1;
4799 }
4800 return 0;
4801 }
4802
4803 /*
4804 * Forward all other exceptions that are valid in real mode.
4805 * FIXME: Breaks guest debugging in real mode, needs to be fixed with
4806 * the required debugging infrastructure rework.
4807 */
4808 kvm_queue_exception(vcpu, vec);
4809 return 1;
6aa8b732
AK
4810}
4811
a0861c02
AK
4812/*
4813 * Trigger machine check on the host. We assume all the MSRs are already set up
4814 * by the CPU and that we still run on the same CPU as the MCE occurred on.
4815 * We pass a fake environment to the machine check handler because we want
4816 * the guest to be always treated like user space, no matter what context
4817 * it used internally.
4818 */
4819static void kvm_machine_check(void)
4820{
4821#if defined(CONFIG_X86_MCE) && defined(CONFIG_X86_64)
4822 struct pt_regs regs = {
4823 .cs = 3, /* Fake ring 3 no matter what the guest ran on */
4824 .flags = X86_EFLAGS_IF,
4825 };
4826
4827 do_machine_check(&regs, 0);
4828#endif
4829}
4830
851ba692 4831static int handle_machine_check(struct kvm_vcpu *vcpu)
a0861c02
AK
4832{
4833 /* already handled by vcpu_run */
4834 return 1;
4835}
4836
851ba692 4837static int handle_exception(struct kvm_vcpu *vcpu)
6aa8b732 4838{
1155f76a 4839 struct vcpu_vmx *vmx = to_vmx(vcpu);
851ba692 4840 struct kvm_run *kvm_run = vcpu->run;
d0bfb940 4841 u32 intr_info, ex_no, error_code;
42dbaa5a 4842 unsigned long cr2, rip, dr6;
6aa8b732
AK
4843 u32 vect_info;
4844 enum emulation_result er;
4845
1155f76a 4846 vect_info = vmx->idt_vectoring_info;
88786475 4847 intr_info = vmx->exit_intr_info;
6aa8b732 4848
a0861c02 4849 if (is_machine_check(intr_info))
851ba692 4850 return handle_machine_check(vcpu);
a0861c02 4851
e4a41889 4852 if ((intr_info & INTR_INFO_INTR_TYPE_MASK) == INTR_TYPE_NMI_INTR)
1b6269db 4853 return 1; /* already handled by vmx_vcpu_run() */
2ab455cc
AL
4854
4855 if (is_no_device(intr_info)) {
5fd86fcf 4856 vmx_fpu_activate(vcpu);
2ab455cc
AL
4857 return 1;
4858 }
4859
7aa81cc0 4860 if (is_invalid_opcode(intr_info)) {
51d8b661 4861 er = emulate_instruction(vcpu, EMULTYPE_TRAP_UD);
7aa81cc0 4862 if (er != EMULATE_DONE)
7ee5d940 4863 kvm_queue_exception(vcpu, UD_VECTOR);
7aa81cc0
AL
4864 return 1;
4865 }
4866
6aa8b732 4867 error_code = 0;
2e11384c 4868 if (intr_info & INTR_INFO_DELIVER_CODE_MASK)
6aa8b732 4869 error_code = vmcs_read32(VM_EXIT_INTR_ERROR_CODE);
bf4ca23e
XG
4870
4871 /*
4872 * The #PF with PFEC.RSVD = 1 indicates the guest is accessing
4873 * MMIO, it is better to report an internal error.
4874 * See the comments in vmx_handle_exit.
4875 */
4876 if ((vect_info & VECTORING_INFO_VALID_MASK) &&
4877 !(is_page_fault(intr_info) && !(error_code & PFERR_RSVD_MASK))) {
4878 vcpu->run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
4879 vcpu->run->internal.suberror = KVM_INTERNAL_ERROR_SIMUL_EX;
4880 vcpu->run->internal.ndata = 2;
4881 vcpu->run->internal.data[0] = vect_info;
4882 vcpu->run->internal.data[1] = intr_info;
4883 return 0;
4884 }
4885
6aa8b732 4886 if (is_page_fault(intr_info)) {
1439442c 4887 /* EPT won't cause page fault directly */
cf3ace79 4888 BUG_ON(enable_ept);
6aa8b732 4889 cr2 = vmcs_readl(EXIT_QUALIFICATION);
229456fc
MT
4890 trace_kvm_page_fault(cr2, error_code);
4891
3298b75c 4892 if (kvm_event_needs_reinjection(vcpu))
577bdc49 4893 kvm_mmu_unprotect_page_virt(vcpu, cr2);
dc25e89e 4894 return kvm_mmu_page_fault(vcpu, cr2, error_code, NULL, 0);
6aa8b732
AK
4895 }
4896
d0bfb940 4897 ex_no = intr_info & INTR_INFO_VECTOR_MASK;
0ca1b4f4
GN
4898
4899 if (vmx->rmode.vm86_active && rmode_exception(vcpu, ex_no))
4900 return handle_rmode_exception(vcpu, ex_no, error_code);
4901
42dbaa5a
JK
4902 switch (ex_no) {
4903 case DB_VECTOR:
4904 dr6 = vmcs_readl(EXIT_QUALIFICATION);
4905 if (!(vcpu->guest_debug &
4906 (KVM_GUESTDBG_SINGLESTEP | KVM_GUESTDBG_USE_HW_BP))) {
8246bf52 4907 vcpu->arch.dr6 &= ~15;
6f43ed01 4908 vcpu->arch.dr6 |= dr6 | DR6_RTM;
fd2a445a
HD
4909 if (!(dr6 & ~DR6_RESERVED)) /* icebp */
4910 skip_emulated_instruction(vcpu);
4911
42dbaa5a
JK
4912 kvm_queue_exception(vcpu, DB_VECTOR);
4913 return 1;
4914 }
4915 kvm_run->debug.arch.dr6 = dr6 | DR6_FIXED_1;
4916 kvm_run->debug.arch.dr7 = vmcs_readl(GUEST_DR7);
4917 /* fall through */
4918 case BP_VECTOR:
c573cd22
JK
4919 /*
4920 * Update instruction length as we may reinject #BP from
4921 * user space while in guest debugging mode. Reading it for
4922 * #DB as well causes no harm, it is not used in that case.
4923 */
4924 vmx->vcpu.arch.event_exit_inst_len =
4925 vmcs_read32(VM_EXIT_INSTRUCTION_LEN);
6aa8b732 4926 kvm_run->exit_reason = KVM_EXIT_DEBUG;
0a434bb2 4927 rip = kvm_rip_read(vcpu);
d0bfb940
JK
4928 kvm_run->debug.arch.pc = vmcs_readl(GUEST_CS_BASE) + rip;
4929 kvm_run->debug.arch.exception = ex_no;
42dbaa5a
JK
4930 break;
4931 default:
d0bfb940
JK
4932 kvm_run->exit_reason = KVM_EXIT_EXCEPTION;
4933 kvm_run->ex.exception = ex_no;
4934 kvm_run->ex.error_code = error_code;
42dbaa5a 4935 break;
6aa8b732 4936 }
6aa8b732
AK
4937 return 0;
4938}
4939
851ba692 4940static int handle_external_interrupt(struct kvm_vcpu *vcpu)
6aa8b732 4941{
1165f5fe 4942 ++vcpu->stat.irq_exits;
6aa8b732
AK
4943 return 1;
4944}
4945
851ba692 4946static int handle_triple_fault(struct kvm_vcpu *vcpu)
988ad74f 4947{
851ba692 4948 vcpu->run->exit_reason = KVM_EXIT_SHUTDOWN;
988ad74f
AK
4949 return 0;
4950}
6aa8b732 4951
851ba692 4952static int handle_io(struct kvm_vcpu *vcpu)
6aa8b732 4953{
bfdaab09 4954 unsigned long exit_qualification;
34c33d16 4955 int size, in, string;
039576c0 4956 unsigned port;
6aa8b732 4957
bfdaab09 4958 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
039576c0 4959 string = (exit_qualification & 16) != 0;
cf8f70bf 4960 in = (exit_qualification & 8) != 0;
e70669ab 4961
cf8f70bf 4962 ++vcpu->stat.io_exits;
e70669ab 4963
cf8f70bf 4964 if (string || in)
51d8b661 4965 return emulate_instruction(vcpu, 0) == EMULATE_DONE;
e70669ab 4966
cf8f70bf
GN
4967 port = exit_qualification >> 16;
4968 size = (exit_qualification & 7) + 1;
e93f36bc 4969 skip_emulated_instruction(vcpu);
cf8f70bf
GN
4970
4971 return kvm_fast_pio_out(vcpu, size, port);
6aa8b732
AK
4972}
4973
102d8325
IM
4974static void
4975vmx_patch_hypercall(struct kvm_vcpu *vcpu, unsigned char *hypercall)
4976{
4977 /*
4978 * Patch in the VMCALL instruction:
4979 */
4980 hypercall[0] = 0x0f;
4981 hypercall[1] = 0x01;
4982 hypercall[2] = 0xc1;
102d8325
IM
4983}
4984
92fbc7b1
JK
4985static bool nested_cr0_valid(struct vmcs12 *vmcs12, unsigned long val)
4986{
4987 unsigned long always_on = VMXON_CR0_ALWAYSON;
4988
4989 if (nested_vmx_secondary_ctls_high &
4990 SECONDARY_EXEC_UNRESTRICTED_GUEST &&
4991 nested_cpu_has2(vmcs12, SECONDARY_EXEC_UNRESTRICTED_GUEST))
4992 always_on &= ~(X86_CR0_PE | X86_CR0_PG);
4993 return (val & always_on) == always_on;
4994}
4995
0fa06071 4996/* called to set cr0 as appropriate for a mov-to-cr0 exit. */
eeadf9e7
NHE
4997static int handle_set_cr0(struct kvm_vcpu *vcpu, unsigned long val)
4998{
eeadf9e7 4999 if (is_guest_mode(vcpu)) {
1a0d74e6
JK
5000 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
5001 unsigned long orig_val = val;
5002
eeadf9e7
NHE
5003 /*
5004 * We get here when L2 changed cr0 in a way that did not change
5005 * any of L1's shadowed bits (see nested_vmx_exit_handled_cr),
1a0d74e6
JK
5006 * but did change L0 shadowed bits. So we first calculate the
5007 * effective cr0 value that L1 would like to write into the
5008 * hardware. It consists of the L2-owned bits from the new
5009 * value combined with the L1-owned bits from L1's guest_cr0.
eeadf9e7 5010 */
1a0d74e6
JK
5011 val = (val & ~vmcs12->cr0_guest_host_mask) |
5012 (vmcs12->guest_cr0 & vmcs12->cr0_guest_host_mask);
5013
92fbc7b1 5014 if (!nested_cr0_valid(vmcs12, val))
eeadf9e7 5015 return 1;
1a0d74e6
JK
5016
5017 if (kvm_set_cr0(vcpu, val))
5018 return 1;
5019 vmcs_writel(CR0_READ_SHADOW, orig_val);
eeadf9e7 5020 return 0;
1a0d74e6
JK
5021 } else {
5022 if (to_vmx(vcpu)->nested.vmxon &&
5023 ((val & VMXON_CR0_ALWAYSON) != VMXON_CR0_ALWAYSON))
5024 return 1;
eeadf9e7 5025 return kvm_set_cr0(vcpu, val);
1a0d74e6 5026 }
eeadf9e7
NHE
5027}
5028
5029static int handle_set_cr4(struct kvm_vcpu *vcpu, unsigned long val)
5030{
5031 if (is_guest_mode(vcpu)) {
1a0d74e6
JK
5032 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
5033 unsigned long orig_val = val;
5034
5035 /* analogously to handle_set_cr0 */
5036 val = (val & ~vmcs12->cr4_guest_host_mask) |
5037 (vmcs12->guest_cr4 & vmcs12->cr4_guest_host_mask);
5038 if (kvm_set_cr4(vcpu, val))
eeadf9e7 5039 return 1;
1a0d74e6 5040 vmcs_writel(CR4_READ_SHADOW, orig_val);
eeadf9e7
NHE
5041 return 0;
5042 } else
5043 return kvm_set_cr4(vcpu, val);
5044}
5045
5046/* called to set cr0 as approriate for clts instruction exit. */
5047static void handle_clts(struct kvm_vcpu *vcpu)
5048{
5049 if (is_guest_mode(vcpu)) {
5050 /*
5051 * We get here when L2 did CLTS, and L1 didn't shadow CR0.TS
5052 * but we did (!fpu_active). We need to keep GUEST_CR0.TS on,
5053 * just pretend it's off (also in arch.cr0 for fpu_activate).
5054 */
5055 vmcs_writel(CR0_READ_SHADOW,
5056 vmcs_readl(CR0_READ_SHADOW) & ~X86_CR0_TS);
5057 vcpu->arch.cr0 &= ~X86_CR0_TS;
5058 } else
5059 vmx_set_cr0(vcpu, kvm_read_cr0_bits(vcpu, ~X86_CR0_TS));
5060}
5061
851ba692 5062static int handle_cr(struct kvm_vcpu *vcpu)
6aa8b732 5063{
229456fc 5064 unsigned long exit_qualification, val;
6aa8b732
AK
5065 int cr;
5066 int reg;
49a9b07e 5067 int err;
6aa8b732 5068
bfdaab09 5069 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
6aa8b732
AK
5070 cr = exit_qualification & 15;
5071 reg = (exit_qualification >> 8) & 15;
5072 switch ((exit_qualification >> 4) & 3) {
5073 case 0: /* mov to cr */
1e32c079 5074 val = kvm_register_readl(vcpu, reg);
229456fc 5075 trace_kvm_cr_write(cr, val);
6aa8b732
AK
5076 switch (cr) {
5077 case 0:
eeadf9e7 5078 err = handle_set_cr0(vcpu, val);
db8fcefa 5079 kvm_complete_insn_gp(vcpu, err);
6aa8b732
AK
5080 return 1;
5081 case 3:
2390218b 5082 err = kvm_set_cr3(vcpu, val);
db8fcefa 5083 kvm_complete_insn_gp(vcpu, err);
6aa8b732
AK
5084 return 1;
5085 case 4:
eeadf9e7 5086 err = handle_set_cr4(vcpu, val);
db8fcefa 5087 kvm_complete_insn_gp(vcpu, err);
6aa8b732 5088 return 1;
0a5fff19
GN
5089 case 8: {
5090 u8 cr8_prev = kvm_get_cr8(vcpu);
1e32c079 5091 u8 cr8 = (u8)val;
eea1cff9 5092 err = kvm_set_cr8(vcpu, cr8);
db8fcefa 5093 kvm_complete_insn_gp(vcpu, err);
0a5fff19
GN
5094 if (irqchip_in_kernel(vcpu->kvm))
5095 return 1;
5096 if (cr8_prev <= cr8)
5097 return 1;
851ba692 5098 vcpu->run->exit_reason = KVM_EXIT_SET_TPR;
0a5fff19
GN
5099 return 0;
5100 }
4b8073e4 5101 }
6aa8b732 5102 break;
25c4c276 5103 case 2: /* clts */
eeadf9e7 5104 handle_clts(vcpu);
4d4ec087 5105 trace_kvm_cr_write(0, kvm_read_cr0(vcpu));
25c4c276 5106 skip_emulated_instruction(vcpu);
6b52d186 5107 vmx_fpu_activate(vcpu);
25c4c276 5108 return 1;
6aa8b732
AK
5109 case 1: /*mov from cr*/
5110 switch (cr) {
5111 case 3:
9f8fe504
AK
5112 val = kvm_read_cr3(vcpu);
5113 kvm_register_write(vcpu, reg, val);
5114 trace_kvm_cr_read(cr, val);
6aa8b732
AK
5115 skip_emulated_instruction(vcpu);
5116 return 1;
5117 case 8:
229456fc
MT
5118 val = kvm_get_cr8(vcpu);
5119 kvm_register_write(vcpu, reg, val);
5120 trace_kvm_cr_read(cr, val);
6aa8b732
AK
5121 skip_emulated_instruction(vcpu);
5122 return 1;
5123 }
5124 break;
5125 case 3: /* lmsw */
a1f83a74 5126 val = (exit_qualification >> LMSW_SOURCE_DATA_SHIFT) & 0x0f;
4d4ec087 5127 trace_kvm_cr_write(0, (kvm_read_cr0(vcpu) & ~0xful) | val);
a1f83a74 5128 kvm_lmsw(vcpu, val);
6aa8b732
AK
5129
5130 skip_emulated_instruction(vcpu);
5131 return 1;
5132 default:
5133 break;
5134 }
851ba692 5135 vcpu->run->exit_reason = 0;
a737f256 5136 vcpu_unimpl(vcpu, "unhandled control register: op %d cr %d\n",
6aa8b732
AK
5137 (int)(exit_qualification >> 4) & 3, cr);
5138 return 0;
5139}
5140
851ba692 5141static int handle_dr(struct kvm_vcpu *vcpu)
6aa8b732 5142{
bfdaab09 5143 unsigned long exit_qualification;
6aa8b732
AK
5144 int dr, reg;
5145
f2483415 5146 /* Do not handle if the CPL > 0, will trigger GP on re-entry */
0a79b009
AK
5147 if (!kvm_require_cpl(vcpu, 0))
5148 return 1;
42dbaa5a
JK
5149 dr = vmcs_readl(GUEST_DR7);
5150 if (dr & DR7_GD) {
5151 /*
5152 * As the vm-exit takes precedence over the debug trap, we
5153 * need to emulate the latter, either for the host or the
5154 * guest debugging itself.
5155 */
5156 if (vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP) {
851ba692
AK
5157 vcpu->run->debug.arch.dr6 = vcpu->arch.dr6;
5158 vcpu->run->debug.arch.dr7 = dr;
5159 vcpu->run->debug.arch.pc =
42dbaa5a
JK
5160 vmcs_readl(GUEST_CS_BASE) +
5161 vmcs_readl(GUEST_RIP);
851ba692
AK
5162 vcpu->run->debug.arch.exception = DB_VECTOR;
5163 vcpu->run->exit_reason = KVM_EXIT_DEBUG;
42dbaa5a
JK
5164 return 0;
5165 } else {
5166 vcpu->arch.dr7 &= ~DR7_GD;
6f43ed01 5167 vcpu->arch.dr6 |= DR6_BD | DR6_RTM;
42dbaa5a
JK
5168 vmcs_writel(GUEST_DR7, vcpu->arch.dr7);
5169 kvm_queue_exception(vcpu, DB_VECTOR);
5170 return 1;
5171 }
5172 }
5173
81908bf4
PB
5174 if (vcpu->guest_debug == 0) {
5175 u32 cpu_based_vm_exec_control;
5176
5177 cpu_based_vm_exec_control = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL);
5178 cpu_based_vm_exec_control &= ~CPU_BASED_MOV_DR_EXITING;
5179 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, cpu_based_vm_exec_control);
5180
5181 /*
5182 * No more DR vmexits; force a reload of the debug registers
5183 * and reenter on this instruction. The next vmexit will
5184 * retrieve the full state of the debug registers.
5185 */
5186 vcpu->arch.switch_db_regs |= KVM_DEBUGREG_WONT_EXIT;
5187 return 1;
5188 }
5189
bfdaab09 5190 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
42dbaa5a
JK
5191 dr = exit_qualification & DEBUG_REG_ACCESS_NUM;
5192 reg = DEBUG_REG_ACCESS_REG(exit_qualification);
5193 if (exit_qualification & TYPE_MOV_FROM_DR) {
020df079 5194 unsigned long val;
4c4d563b
JK
5195
5196 if (kvm_get_dr(vcpu, dr, &val))
5197 return 1;
5198 kvm_register_write(vcpu, reg, val);
020df079 5199 } else
5777392e 5200 if (kvm_set_dr(vcpu, dr, kvm_register_readl(vcpu, reg)))
4c4d563b
JK
5201 return 1;
5202
6aa8b732
AK
5203 skip_emulated_instruction(vcpu);
5204 return 1;
5205}
5206
73aaf249
JK
5207static u64 vmx_get_dr6(struct kvm_vcpu *vcpu)
5208{
5209 return vcpu->arch.dr6;
5210}
5211
5212static void vmx_set_dr6(struct kvm_vcpu *vcpu, unsigned long val)
5213{
5214}
5215
81908bf4
PB
5216static void vmx_sync_dirty_debug_regs(struct kvm_vcpu *vcpu)
5217{
5218 u32 cpu_based_vm_exec_control;
5219
5220 get_debugreg(vcpu->arch.db[0], 0);
5221 get_debugreg(vcpu->arch.db[1], 1);
5222 get_debugreg(vcpu->arch.db[2], 2);
5223 get_debugreg(vcpu->arch.db[3], 3);
5224 get_debugreg(vcpu->arch.dr6, 6);
5225 vcpu->arch.dr7 = vmcs_readl(GUEST_DR7);
5226
5227 vcpu->arch.switch_db_regs &= ~KVM_DEBUGREG_WONT_EXIT;
5228
5229 cpu_based_vm_exec_control = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL);
5230 cpu_based_vm_exec_control |= CPU_BASED_MOV_DR_EXITING;
5231 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, cpu_based_vm_exec_control);
5232}
5233
020df079
GN
5234static void vmx_set_dr7(struct kvm_vcpu *vcpu, unsigned long val)
5235{
5236 vmcs_writel(GUEST_DR7, val);
5237}
5238
851ba692 5239static int handle_cpuid(struct kvm_vcpu *vcpu)
6aa8b732 5240{
06465c5a
AK
5241 kvm_emulate_cpuid(vcpu);
5242 return 1;
6aa8b732
AK
5243}
5244
851ba692 5245static int handle_rdmsr(struct kvm_vcpu *vcpu)
6aa8b732 5246{
ad312c7c 5247 u32 ecx = vcpu->arch.regs[VCPU_REGS_RCX];
6aa8b732
AK
5248 u64 data;
5249
5250 if (vmx_get_msr(vcpu, ecx, &data)) {
59200273 5251 trace_kvm_msr_read_ex(ecx);
c1a5d4f9 5252 kvm_inject_gp(vcpu, 0);
6aa8b732
AK
5253 return 1;
5254 }
5255
229456fc 5256 trace_kvm_msr_read(ecx, data);
2714d1d3 5257
6aa8b732 5258 /* FIXME: handling of bits 32:63 of rax, rdx */
ad312c7c
ZX
5259 vcpu->arch.regs[VCPU_REGS_RAX] = data & -1u;
5260 vcpu->arch.regs[VCPU_REGS_RDX] = (data >> 32) & -1u;
6aa8b732
AK
5261 skip_emulated_instruction(vcpu);
5262 return 1;
5263}
5264
851ba692 5265static int handle_wrmsr(struct kvm_vcpu *vcpu)
6aa8b732 5266{
8fe8ab46 5267 struct msr_data msr;
ad312c7c
ZX
5268 u32 ecx = vcpu->arch.regs[VCPU_REGS_RCX];
5269 u64 data = (vcpu->arch.regs[VCPU_REGS_RAX] & -1u)
5270 | ((u64)(vcpu->arch.regs[VCPU_REGS_RDX] & -1u) << 32);
6aa8b732 5271
8fe8ab46
WA
5272 msr.data = data;
5273 msr.index = ecx;
5274 msr.host_initiated = false;
5275 if (vmx_set_msr(vcpu, &msr) != 0) {
59200273 5276 trace_kvm_msr_write_ex(ecx, data);
c1a5d4f9 5277 kvm_inject_gp(vcpu, 0);
6aa8b732
AK
5278 return 1;
5279 }
5280
59200273 5281 trace_kvm_msr_write(ecx, data);
6aa8b732
AK
5282 skip_emulated_instruction(vcpu);
5283 return 1;
5284}
5285
851ba692 5286static int handle_tpr_below_threshold(struct kvm_vcpu *vcpu)
6e5d865c 5287{
3842d135 5288 kvm_make_request(KVM_REQ_EVENT, vcpu);
6e5d865c
YS
5289 return 1;
5290}
5291
851ba692 5292static int handle_interrupt_window(struct kvm_vcpu *vcpu)
6aa8b732 5293{
85f455f7
ED
5294 u32 cpu_based_vm_exec_control;
5295
5296 /* clear pending irq */
5297 cpu_based_vm_exec_control = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL);
5298 cpu_based_vm_exec_control &= ~CPU_BASED_VIRTUAL_INTR_PENDING;
5299 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, cpu_based_vm_exec_control);
2714d1d3 5300
3842d135
AK
5301 kvm_make_request(KVM_REQ_EVENT, vcpu);
5302
a26bf12a 5303 ++vcpu->stat.irq_window_exits;
2714d1d3 5304
c1150d8c
DL
5305 /*
5306 * If the user space waits to inject interrupts, exit as soon as
5307 * possible
5308 */
8061823a 5309 if (!irqchip_in_kernel(vcpu->kvm) &&
851ba692 5310 vcpu->run->request_interrupt_window &&
8061823a 5311 !kvm_cpu_has_interrupt(vcpu)) {
851ba692 5312 vcpu->run->exit_reason = KVM_EXIT_IRQ_WINDOW_OPEN;
c1150d8c
DL
5313 return 0;
5314 }
6aa8b732
AK
5315 return 1;
5316}
5317
851ba692 5318static int handle_halt(struct kvm_vcpu *vcpu)
6aa8b732
AK
5319{
5320 skip_emulated_instruction(vcpu);
d3bef15f 5321 return kvm_emulate_halt(vcpu);
6aa8b732
AK
5322}
5323
851ba692 5324static int handle_vmcall(struct kvm_vcpu *vcpu)
c21415e8 5325{
510043da 5326 skip_emulated_instruction(vcpu);
7aa81cc0
AL
5327 kvm_emulate_hypercall(vcpu);
5328 return 1;
c21415e8
IM
5329}
5330
ec25d5e6
GN
5331static int handle_invd(struct kvm_vcpu *vcpu)
5332{
51d8b661 5333 return emulate_instruction(vcpu, 0) == EMULATE_DONE;
ec25d5e6
GN
5334}
5335
851ba692 5336static int handle_invlpg(struct kvm_vcpu *vcpu)
a7052897 5337{
f9c617f6 5338 unsigned long exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
a7052897
MT
5339
5340 kvm_mmu_invlpg(vcpu, exit_qualification);
5341 skip_emulated_instruction(vcpu);
5342 return 1;
5343}
5344
fee84b07
AK
5345static int handle_rdpmc(struct kvm_vcpu *vcpu)
5346{
5347 int err;
5348
5349 err = kvm_rdpmc(vcpu);
5350 kvm_complete_insn_gp(vcpu, err);
5351
5352 return 1;
5353}
5354
851ba692 5355static int handle_wbinvd(struct kvm_vcpu *vcpu)
e5edaa01
ED
5356{
5357 skip_emulated_instruction(vcpu);
f5f48ee1 5358 kvm_emulate_wbinvd(vcpu);
e5edaa01
ED
5359 return 1;
5360}
5361
2acf923e
DC
5362static int handle_xsetbv(struct kvm_vcpu *vcpu)
5363{
5364 u64 new_bv = kvm_read_edx_eax(vcpu);
5365 u32 index = kvm_register_read(vcpu, VCPU_REGS_RCX);
5366
5367 if (kvm_set_xcr(vcpu, index, new_bv) == 0)
5368 skip_emulated_instruction(vcpu);
5369 return 1;
5370}
5371
851ba692 5372static int handle_apic_access(struct kvm_vcpu *vcpu)
f78e0e2e 5373{
58fbbf26
KT
5374 if (likely(fasteoi)) {
5375 unsigned long exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
5376 int access_type, offset;
5377
5378 access_type = exit_qualification & APIC_ACCESS_TYPE;
5379 offset = exit_qualification & APIC_ACCESS_OFFSET;
5380 /*
5381 * Sane guest uses MOV to write EOI, with written value
5382 * not cared. So make a short-circuit here by avoiding
5383 * heavy instruction emulation.
5384 */
5385 if ((access_type == TYPE_LINEAR_APIC_INST_WRITE) &&
5386 (offset == APIC_EOI)) {
5387 kvm_lapic_set_eoi(vcpu);
5388 skip_emulated_instruction(vcpu);
5389 return 1;
5390 }
5391 }
51d8b661 5392 return emulate_instruction(vcpu, 0) == EMULATE_DONE;
f78e0e2e
SY
5393}
5394
c7c9c56c
YZ
5395static int handle_apic_eoi_induced(struct kvm_vcpu *vcpu)
5396{
5397 unsigned long exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
5398 int vector = exit_qualification & 0xff;
5399
5400 /* EOI-induced VM exit is trap-like and thus no need to adjust IP */
5401 kvm_apic_set_eoi_accelerated(vcpu, vector);
5402 return 1;
5403}
5404
83d4c286
YZ
5405static int handle_apic_write(struct kvm_vcpu *vcpu)
5406{
5407 unsigned long exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
5408 u32 offset = exit_qualification & 0xfff;
5409
5410 /* APIC-write VM exit is trap-like and thus no need to adjust IP */
5411 kvm_apic_write_nodecode(vcpu, offset);
5412 return 1;
5413}
5414
851ba692 5415static int handle_task_switch(struct kvm_vcpu *vcpu)
37817f29 5416{
60637aac 5417 struct vcpu_vmx *vmx = to_vmx(vcpu);
37817f29 5418 unsigned long exit_qualification;
e269fb21
JK
5419 bool has_error_code = false;
5420 u32 error_code = 0;
37817f29 5421 u16 tss_selector;
7f3d35fd 5422 int reason, type, idt_v, idt_index;
64a7ec06
GN
5423
5424 idt_v = (vmx->idt_vectoring_info & VECTORING_INFO_VALID_MASK);
7f3d35fd 5425 idt_index = (vmx->idt_vectoring_info & VECTORING_INFO_VECTOR_MASK);
64a7ec06 5426 type = (vmx->idt_vectoring_info & VECTORING_INFO_TYPE_MASK);
37817f29
IE
5427
5428 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
5429
5430 reason = (u32)exit_qualification >> 30;
64a7ec06
GN
5431 if (reason == TASK_SWITCH_GATE && idt_v) {
5432 switch (type) {
5433 case INTR_TYPE_NMI_INTR:
5434 vcpu->arch.nmi_injected = false;
654f06fc 5435 vmx_set_nmi_mask(vcpu, true);
64a7ec06
GN
5436 break;
5437 case INTR_TYPE_EXT_INTR:
66fd3f7f 5438 case INTR_TYPE_SOFT_INTR:
64a7ec06
GN
5439 kvm_clear_interrupt_queue(vcpu);
5440 break;
5441 case INTR_TYPE_HARD_EXCEPTION:
e269fb21
JK
5442 if (vmx->idt_vectoring_info &
5443 VECTORING_INFO_DELIVER_CODE_MASK) {
5444 has_error_code = true;
5445 error_code =
5446 vmcs_read32(IDT_VECTORING_ERROR_CODE);
5447 }
5448 /* fall through */
64a7ec06
GN
5449 case INTR_TYPE_SOFT_EXCEPTION:
5450 kvm_clear_exception_queue(vcpu);
5451 break;
5452 default:
5453 break;
5454 }
60637aac 5455 }
37817f29
IE
5456 tss_selector = exit_qualification;
5457
64a7ec06
GN
5458 if (!idt_v || (type != INTR_TYPE_HARD_EXCEPTION &&
5459 type != INTR_TYPE_EXT_INTR &&
5460 type != INTR_TYPE_NMI_INTR))
5461 skip_emulated_instruction(vcpu);
5462
7f3d35fd
KW
5463 if (kvm_task_switch(vcpu, tss_selector,
5464 type == INTR_TYPE_SOFT_INTR ? idt_index : -1, reason,
5465 has_error_code, error_code) == EMULATE_FAIL) {
acb54517
GN
5466 vcpu->run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
5467 vcpu->run->internal.suberror = KVM_INTERNAL_ERROR_EMULATION;
5468 vcpu->run->internal.ndata = 0;
42dbaa5a 5469 return 0;
acb54517 5470 }
42dbaa5a
JK
5471
5472 /* clear all local breakpoint enable flags */
1f854112 5473 vmcs_writel(GUEST_DR7, vmcs_readl(GUEST_DR7) & ~0x55);
42dbaa5a
JK
5474
5475 /*
5476 * TODO: What about debug traps on tss switch?
5477 * Are we supposed to inject them and update dr6?
5478 */
5479
5480 return 1;
37817f29
IE
5481}
5482
851ba692 5483static int handle_ept_violation(struct kvm_vcpu *vcpu)
1439442c 5484{
f9c617f6 5485 unsigned long exit_qualification;
1439442c 5486 gpa_t gpa;
4f5982a5 5487 u32 error_code;
1439442c 5488 int gla_validity;
1439442c 5489
f9c617f6 5490 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
1439442c 5491
1439442c
SY
5492 gla_validity = (exit_qualification >> 7) & 0x3;
5493 if (gla_validity != 0x3 && gla_validity != 0x1 && gla_validity != 0) {
5494 printk(KERN_ERR "EPT: Handling EPT violation failed!\n");
5495 printk(KERN_ERR "EPT: GPA: 0x%lx, GVA: 0x%lx\n",
5496 (long unsigned int)vmcs_read64(GUEST_PHYSICAL_ADDRESS),
f9c617f6 5497 vmcs_readl(GUEST_LINEAR_ADDRESS));
1439442c
SY
5498 printk(KERN_ERR "EPT: Exit qualification is 0x%lx\n",
5499 (long unsigned int)exit_qualification);
851ba692
AK
5500 vcpu->run->exit_reason = KVM_EXIT_UNKNOWN;
5501 vcpu->run->hw.hardware_exit_reason = EXIT_REASON_EPT_VIOLATION;
596ae895 5502 return 0;
1439442c
SY
5503 }
5504
0be9c7a8
GN
5505 /*
5506 * EPT violation happened while executing iret from NMI,
5507 * "blocked by NMI" bit has to be set before next VM entry.
5508 * There are errata that may cause this bit to not be set:
5509 * AAK134, BY25.
5510 */
bcd1c294
GN
5511 if (!(to_vmx(vcpu)->idt_vectoring_info & VECTORING_INFO_VALID_MASK) &&
5512 cpu_has_virtual_nmis() &&
5513 (exit_qualification & INTR_INFO_UNBLOCK_NMI))
0be9c7a8
GN
5514 vmcs_set_bits(GUEST_INTERRUPTIBILITY_INFO, GUEST_INTR_STATE_NMI);
5515
1439442c 5516 gpa = vmcs_read64(GUEST_PHYSICAL_ADDRESS);
229456fc 5517 trace_kvm_page_fault(gpa, exit_qualification);
4f5982a5
XG
5518
5519 /* It is a write fault? */
5520 error_code = exit_qualification & (1U << 1);
25d92081
YZ
5521 /* It is a fetch fault? */
5522 error_code |= (exit_qualification & (1U << 2)) << 2;
4f5982a5
XG
5523 /* ept page table is present? */
5524 error_code |= (exit_qualification >> 3) & 0x1;
5525
25d92081
YZ
5526 vcpu->arch.exit_qualification = exit_qualification;
5527
4f5982a5 5528 return kvm_mmu_page_fault(vcpu, gpa, error_code, NULL, 0);
1439442c
SY
5529}
5530
68f89400
MT
5531static u64 ept_rsvd_mask(u64 spte, int level)
5532{
5533 int i;
5534 u64 mask = 0;
5535
5536 for (i = 51; i > boot_cpu_data.x86_phys_bits; i--)
5537 mask |= (1ULL << i);
5538
a32e8459 5539 if (level == 4)
68f89400
MT
5540 /* bits 7:3 reserved */
5541 mask |= 0xf8;
a32e8459
WL
5542 else if (spte & (1ULL << 7))
5543 /*
5544 * 1GB/2MB page, bits 29:12 or 20:12 reserved respectively,
5545 * level == 1 if the hypervisor is using the ignored bit 7.
5546 */
5547 mask |= (PAGE_SIZE << ((level - 1) * 9)) - PAGE_SIZE;
5548 else if (level > 1)
5549 /* bits 6:3 reserved */
5550 mask |= 0x78;
68f89400
MT
5551
5552 return mask;
5553}
5554
5555static void ept_misconfig_inspect_spte(struct kvm_vcpu *vcpu, u64 spte,
5556 int level)
5557{
5558 printk(KERN_ERR "%s: spte 0x%llx level %d\n", __func__, spte, level);
5559
5560 /* 010b (write-only) */
5561 WARN_ON((spte & 0x7) == 0x2);
5562
5563 /* 110b (write/execute) */
5564 WARN_ON((spte & 0x7) == 0x6);
5565
5566 /* 100b (execute-only) and value not supported by logical processor */
5567 if (!cpu_has_vmx_ept_execute_only())
5568 WARN_ON((spte & 0x7) == 0x4);
5569
5570 /* not 000b */
5571 if ((spte & 0x7)) {
5572 u64 rsvd_bits = spte & ept_rsvd_mask(spte, level);
5573
5574 if (rsvd_bits != 0) {
5575 printk(KERN_ERR "%s: rsvd_bits = 0x%llx\n",
5576 __func__, rsvd_bits);
5577 WARN_ON(1);
5578 }
5579
a32e8459
WL
5580 /* bits 5:3 are _not_ reserved for large page or leaf page */
5581 if ((rsvd_bits & 0x38) == 0) {
68f89400
MT
5582 u64 ept_mem_type = (spte & 0x38) >> 3;
5583
5584 if (ept_mem_type == 2 || ept_mem_type == 3 ||
5585 ept_mem_type == 7) {
5586 printk(KERN_ERR "%s: ept_mem_type=0x%llx\n",
5587 __func__, ept_mem_type);
5588 WARN_ON(1);
5589 }
5590 }
5591 }
5592}
5593
851ba692 5594static int handle_ept_misconfig(struct kvm_vcpu *vcpu)
68f89400
MT
5595{
5596 u64 sptes[4];
ce88decf 5597 int nr_sptes, i, ret;
68f89400
MT
5598 gpa_t gpa;
5599
5600 gpa = vmcs_read64(GUEST_PHYSICAL_ADDRESS);
68c3b4d1
MT
5601 if (!kvm_io_bus_write(vcpu->kvm, KVM_FAST_MMIO_BUS, gpa, 0, NULL)) {
5602 skip_emulated_instruction(vcpu);
5603 return 1;
5604 }
68f89400 5605
ce88decf 5606 ret = handle_mmio_page_fault_common(vcpu, gpa, true);
b37fbea6 5607 if (likely(ret == RET_MMIO_PF_EMULATE))
ce88decf
XG
5608 return x86_emulate_instruction(vcpu, gpa, 0, NULL, 0) ==
5609 EMULATE_DONE;
f8f55942
XG
5610
5611 if (unlikely(ret == RET_MMIO_PF_INVALID))
5612 return kvm_mmu_page_fault(vcpu, gpa, 0, NULL, 0);
5613
b37fbea6 5614 if (unlikely(ret == RET_MMIO_PF_RETRY))
ce88decf
XG
5615 return 1;
5616
5617 /* It is the real ept misconfig */
68f89400
MT
5618 printk(KERN_ERR "EPT: Misconfiguration.\n");
5619 printk(KERN_ERR "EPT: GPA: 0x%llx\n", gpa);
5620
5621 nr_sptes = kvm_mmu_get_spte_hierarchy(vcpu, gpa, sptes);
5622
5623 for (i = PT64_ROOT_LEVEL; i > PT64_ROOT_LEVEL - nr_sptes; --i)
5624 ept_misconfig_inspect_spte(vcpu, sptes[i-1], i);
5625
851ba692
AK
5626 vcpu->run->exit_reason = KVM_EXIT_UNKNOWN;
5627 vcpu->run->hw.hardware_exit_reason = EXIT_REASON_EPT_MISCONFIG;
68f89400
MT
5628
5629 return 0;
5630}
5631
851ba692 5632static int handle_nmi_window(struct kvm_vcpu *vcpu)
f08864b4
SY
5633{
5634 u32 cpu_based_vm_exec_control;
5635
5636 /* clear pending NMI */
5637 cpu_based_vm_exec_control = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL);
5638 cpu_based_vm_exec_control &= ~CPU_BASED_VIRTUAL_NMI_PENDING;
5639 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, cpu_based_vm_exec_control);
5640 ++vcpu->stat.nmi_window_exits;
3842d135 5641 kvm_make_request(KVM_REQ_EVENT, vcpu);
f08864b4
SY
5642
5643 return 1;
5644}
5645
80ced186 5646static int handle_invalid_guest_state(struct kvm_vcpu *vcpu)
ea953ef0 5647{
8b3079a5
AK
5648 struct vcpu_vmx *vmx = to_vmx(vcpu);
5649 enum emulation_result err = EMULATE_DONE;
80ced186 5650 int ret = 1;
49e9d557
AK
5651 u32 cpu_exec_ctrl;
5652 bool intr_window_requested;
b8405c18 5653 unsigned count = 130;
49e9d557
AK
5654
5655 cpu_exec_ctrl = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL);
5656 intr_window_requested = cpu_exec_ctrl & CPU_BASED_VIRTUAL_INTR_PENDING;
ea953ef0 5657
98eb2f8b 5658 while (vmx->emulation_required && count-- != 0) {
bdea48e3 5659 if (intr_window_requested && vmx_interrupt_allowed(vcpu))
49e9d557
AK
5660 return handle_interrupt_window(&vmx->vcpu);
5661
de87dcdd
AK
5662 if (test_bit(KVM_REQ_EVENT, &vcpu->requests))
5663 return 1;
5664
991eebf9 5665 err = emulate_instruction(vcpu, EMULTYPE_NO_REEXECUTE);
ea953ef0 5666
ac0a48c3 5667 if (err == EMULATE_USER_EXIT) {
94452b9e 5668 ++vcpu->stat.mmio_exits;
80ced186
MG
5669 ret = 0;
5670 goto out;
5671 }
1d5a4d9b 5672
de5f70e0
AK
5673 if (err != EMULATE_DONE) {
5674 vcpu->run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
5675 vcpu->run->internal.suberror = KVM_INTERNAL_ERROR_EMULATION;
5676 vcpu->run->internal.ndata = 0;
6d77dbfc 5677 return 0;
de5f70e0 5678 }
ea953ef0 5679
8d76c49e
GN
5680 if (vcpu->arch.halt_request) {
5681 vcpu->arch.halt_request = 0;
5682 ret = kvm_emulate_halt(vcpu);
5683 goto out;
5684 }
5685
ea953ef0 5686 if (signal_pending(current))
80ced186 5687 goto out;
ea953ef0
MG
5688 if (need_resched())
5689 schedule();
5690 }
5691
80ced186
MG
5692out:
5693 return ret;
ea953ef0
MG
5694}
5695
b4a2d31d
RK
5696static int __grow_ple_window(int val)
5697{
5698 if (ple_window_grow < 1)
5699 return ple_window;
5700
5701 val = min(val, ple_window_actual_max);
5702
5703 if (ple_window_grow < ple_window)
5704 val *= ple_window_grow;
5705 else
5706 val += ple_window_grow;
5707
5708 return val;
5709}
5710
5711static int __shrink_ple_window(int val, int modifier, int minimum)
5712{
5713 if (modifier < 1)
5714 return ple_window;
5715
5716 if (modifier < ple_window)
5717 val /= modifier;
5718 else
5719 val -= modifier;
5720
5721 return max(val, minimum);
5722}
5723
5724static void grow_ple_window(struct kvm_vcpu *vcpu)
5725{
5726 struct vcpu_vmx *vmx = to_vmx(vcpu);
5727 int old = vmx->ple_window;
5728
5729 vmx->ple_window = __grow_ple_window(old);
5730
5731 if (vmx->ple_window != old)
5732 vmx->ple_window_dirty = true;
7b46268d
RK
5733
5734 trace_kvm_ple_window_grow(vcpu->vcpu_id, vmx->ple_window, old);
b4a2d31d
RK
5735}
5736
5737static void shrink_ple_window(struct kvm_vcpu *vcpu)
5738{
5739 struct vcpu_vmx *vmx = to_vmx(vcpu);
5740 int old = vmx->ple_window;
5741
5742 vmx->ple_window = __shrink_ple_window(old,
5743 ple_window_shrink, ple_window);
5744
5745 if (vmx->ple_window != old)
5746 vmx->ple_window_dirty = true;
7b46268d
RK
5747
5748 trace_kvm_ple_window_shrink(vcpu->vcpu_id, vmx->ple_window, old);
b4a2d31d
RK
5749}
5750
5751/*
5752 * ple_window_actual_max is computed to be one grow_ple_window() below
5753 * ple_window_max. (See __grow_ple_window for the reason.)
5754 * This prevents overflows, because ple_window_max is int.
5755 * ple_window_max effectively rounded down to a multiple of ple_window_grow in
5756 * this process.
5757 * ple_window_max is also prevented from setting vmx->ple_window < ple_window.
5758 */
5759static void update_ple_window_actual_max(void)
5760{
5761 ple_window_actual_max =
5762 __shrink_ple_window(max(ple_window_max, ple_window),
5763 ple_window_grow, INT_MIN);
5764}
5765
4b8d54f9
ZE
5766/*
5767 * Indicate a busy-waiting vcpu in spinlock. We do not enable the PAUSE
5768 * exiting, so only get here on cpu with PAUSE-Loop-Exiting.
5769 */
9fb41ba8 5770static int handle_pause(struct kvm_vcpu *vcpu)
4b8d54f9 5771{
b4a2d31d
RK
5772 if (ple_gap)
5773 grow_ple_window(vcpu);
5774
4b8d54f9
ZE
5775 skip_emulated_instruction(vcpu);
5776 kvm_vcpu_on_spin(vcpu);
5777
5778 return 1;
5779}
5780
87c00572 5781static int handle_nop(struct kvm_vcpu *vcpu)
59708670 5782{
87c00572 5783 skip_emulated_instruction(vcpu);
59708670
SY
5784 return 1;
5785}
5786
87c00572
GS
5787static int handle_mwait(struct kvm_vcpu *vcpu)
5788{
5789 printk_once(KERN_WARNING "kvm: MWAIT instruction emulated as NOP!\n");
5790 return handle_nop(vcpu);
5791}
5792
5793static int handle_monitor(struct kvm_vcpu *vcpu)
5794{
5795 printk_once(KERN_WARNING "kvm: MONITOR instruction emulated as NOP!\n");
5796 return handle_nop(vcpu);
5797}
5798
ff2f6fe9
NHE
5799/*
5800 * To run an L2 guest, we need a vmcs02 based on the L1-specified vmcs12.
5801 * We could reuse a single VMCS for all the L2 guests, but we also want the
5802 * option to allocate a separate vmcs02 for each separate loaded vmcs12 - this
5803 * allows keeping them loaded on the processor, and in the future will allow
5804 * optimizations where prepare_vmcs02 doesn't need to set all the fields on
5805 * every entry if they never change.
5806 * So we keep, in vmx->nested.vmcs02_pool, a cache of size VMCS02_POOL_SIZE
5807 * (>=0) with a vmcs02 for each recently loaded vmcs12s, most recent first.
5808 *
5809 * The following functions allocate and free a vmcs02 in this pool.
5810 */
5811
5812/* Get a VMCS from the pool to use as vmcs02 for the current vmcs12. */
5813static struct loaded_vmcs *nested_get_current_vmcs02(struct vcpu_vmx *vmx)
5814{
5815 struct vmcs02_list *item;
5816 list_for_each_entry(item, &vmx->nested.vmcs02_pool, list)
5817 if (item->vmptr == vmx->nested.current_vmptr) {
5818 list_move(&item->list, &vmx->nested.vmcs02_pool);
5819 return &item->vmcs02;
5820 }
5821
5822 if (vmx->nested.vmcs02_num >= max(VMCS02_POOL_SIZE, 1)) {
5823 /* Recycle the least recently used VMCS. */
5824 item = list_entry(vmx->nested.vmcs02_pool.prev,
5825 struct vmcs02_list, list);
5826 item->vmptr = vmx->nested.current_vmptr;
5827 list_move(&item->list, &vmx->nested.vmcs02_pool);
5828 return &item->vmcs02;
5829 }
5830
5831 /* Create a new VMCS */
0fa24ce3 5832 item = kmalloc(sizeof(struct vmcs02_list), GFP_KERNEL);
ff2f6fe9
NHE
5833 if (!item)
5834 return NULL;
5835 item->vmcs02.vmcs = alloc_vmcs();
5836 if (!item->vmcs02.vmcs) {
5837 kfree(item);
5838 return NULL;
5839 }
5840 loaded_vmcs_init(&item->vmcs02);
5841 item->vmptr = vmx->nested.current_vmptr;
5842 list_add(&(item->list), &(vmx->nested.vmcs02_pool));
5843 vmx->nested.vmcs02_num++;
5844 return &item->vmcs02;
5845}
5846
5847/* Free and remove from pool a vmcs02 saved for a vmcs12 (if there is one) */
5848static void nested_free_vmcs02(struct vcpu_vmx *vmx, gpa_t vmptr)
5849{
5850 struct vmcs02_list *item;
5851 list_for_each_entry(item, &vmx->nested.vmcs02_pool, list)
5852 if (item->vmptr == vmptr) {
5853 free_loaded_vmcs(&item->vmcs02);
5854 list_del(&item->list);
5855 kfree(item);
5856 vmx->nested.vmcs02_num--;
5857 return;
5858 }
5859}
5860
5861/*
5862 * Free all VMCSs saved for this vcpu, except the one pointed by
4fa7734c
PB
5863 * vmx->loaded_vmcs. We must be running L1, so vmx->loaded_vmcs
5864 * must be &vmx->vmcs01.
ff2f6fe9
NHE
5865 */
5866static void nested_free_all_saved_vmcss(struct vcpu_vmx *vmx)
5867{
5868 struct vmcs02_list *item, *n;
4fa7734c
PB
5869
5870 WARN_ON(vmx->loaded_vmcs != &vmx->vmcs01);
ff2f6fe9 5871 list_for_each_entry_safe(item, n, &vmx->nested.vmcs02_pool, list) {
4fa7734c
PB
5872 /*
5873 * Something will leak if the above WARN triggers. Better than
5874 * a use-after-free.
5875 */
5876 if (vmx->loaded_vmcs == &item->vmcs02)
5877 continue;
5878
5879 free_loaded_vmcs(&item->vmcs02);
ff2f6fe9
NHE
5880 list_del(&item->list);
5881 kfree(item);
4fa7734c 5882 vmx->nested.vmcs02_num--;
ff2f6fe9 5883 }
ff2f6fe9
NHE
5884}
5885
0658fbaa
ACL
5886/*
5887 * The following 3 functions, nested_vmx_succeed()/failValid()/failInvalid(),
5888 * set the success or error code of an emulated VMX instruction, as specified
5889 * by Vol 2B, VMX Instruction Reference, "Conventions".
5890 */
5891static void nested_vmx_succeed(struct kvm_vcpu *vcpu)
5892{
5893 vmx_set_rflags(vcpu, vmx_get_rflags(vcpu)
5894 & ~(X86_EFLAGS_CF | X86_EFLAGS_PF | X86_EFLAGS_AF |
5895 X86_EFLAGS_ZF | X86_EFLAGS_SF | X86_EFLAGS_OF));
5896}
5897
5898static void nested_vmx_failInvalid(struct kvm_vcpu *vcpu)
5899{
5900 vmx_set_rflags(vcpu, (vmx_get_rflags(vcpu)
5901 & ~(X86_EFLAGS_PF | X86_EFLAGS_AF | X86_EFLAGS_ZF |
5902 X86_EFLAGS_SF | X86_EFLAGS_OF))
5903 | X86_EFLAGS_CF);
5904}
5905
145c28dd 5906static void nested_vmx_failValid(struct kvm_vcpu *vcpu,
0658fbaa
ACL
5907 u32 vm_instruction_error)
5908{
5909 if (to_vmx(vcpu)->nested.current_vmptr == -1ull) {
5910 /*
5911 * failValid writes the error number to the current VMCS, which
5912 * can't be done there isn't a current VMCS.
5913 */
5914 nested_vmx_failInvalid(vcpu);
5915 return;
5916 }
5917 vmx_set_rflags(vcpu, (vmx_get_rflags(vcpu)
5918 & ~(X86_EFLAGS_CF | X86_EFLAGS_PF | X86_EFLAGS_AF |
5919 X86_EFLAGS_SF | X86_EFLAGS_OF))
5920 | X86_EFLAGS_ZF);
5921 get_vmcs12(vcpu)->vm_instruction_error = vm_instruction_error;
5922 /*
5923 * We don't need to force a shadow sync because
5924 * VM_INSTRUCTION_ERROR is not shadowed
5925 */
5926}
145c28dd 5927
f4124500
JK
5928static enum hrtimer_restart vmx_preemption_timer_fn(struct hrtimer *timer)
5929{
5930 struct vcpu_vmx *vmx =
5931 container_of(timer, struct vcpu_vmx, nested.preemption_timer);
5932
5933 vmx->nested.preemption_timer_expired = true;
5934 kvm_make_request(KVM_REQ_EVENT, &vmx->vcpu);
5935 kvm_vcpu_kick(&vmx->vcpu);
5936
5937 return HRTIMER_NORESTART;
5938}
5939
19677e32
BD
5940/*
5941 * Decode the memory-address operand of a vmx instruction, as recorded on an
5942 * exit caused by such an instruction (run by a guest hypervisor).
5943 * On success, returns 0. When the operand is invalid, returns 1 and throws
5944 * #UD or #GP.
5945 */
5946static int get_vmx_mem_address(struct kvm_vcpu *vcpu,
5947 unsigned long exit_qualification,
5948 u32 vmx_instruction_info, gva_t *ret)
5949{
5950 /*
5951 * According to Vol. 3B, "Information for VM Exits Due to Instruction
5952 * Execution", on an exit, vmx_instruction_info holds most of the
5953 * addressing components of the operand. Only the displacement part
5954 * is put in exit_qualification (see 3B, "Basic VM-Exit Information").
5955 * For how an actual address is calculated from all these components,
5956 * refer to Vol. 1, "Operand Addressing".
5957 */
5958 int scaling = vmx_instruction_info & 3;
5959 int addr_size = (vmx_instruction_info >> 7) & 7;
5960 bool is_reg = vmx_instruction_info & (1u << 10);
5961 int seg_reg = (vmx_instruction_info >> 15) & 7;
5962 int index_reg = (vmx_instruction_info >> 18) & 0xf;
5963 bool index_is_valid = !(vmx_instruction_info & (1u << 22));
5964 int base_reg = (vmx_instruction_info >> 23) & 0xf;
5965 bool base_is_valid = !(vmx_instruction_info & (1u << 27));
5966
5967 if (is_reg) {
5968 kvm_queue_exception(vcpu, UD_VECTOR);
5969 return 1;
5970 }
5971
5972 /* Addr = segment_base + offset */
5973 /* offset = base + [index * scale] + displacement */
5974 *ret = vmx_get_segment_base(vcpu, seg_reg);
5975 if (base_is_valid)
5976 *ret += kvm_register_read(vcpu, base_reg);
5977 if (index_is_valid)
5978 *ret += kvm_register_read(vcpu, index_reg)<<scaling;
5979 *ret += exit_qualification; /* holds the displacement */
5980
5981 if (addr_size == 1) /* 32 bit */
5982 *ret &= 0xffffffff;
5983
5984 /*
5985 * TODO: throw #GP (and return 1) in various cases that the VM*
5986 * instructions require it - e.g., offset beyond segment limit,
5987 * unusable or unreadable/unwritable segment, non-canonical 64-bit
5988 * address, and so on. Currently these are not checked.
5989 */
5990 return 0;
5991}
5992
3573e22c
BD
5993/*
5994 * This function performs the various checks including
5995 * - if it's 4KB aligned
5996 * - No bits beyond the physical address width are set
5997 * - Returns 0 on success or else 1
4291b588 5998 * (Intel SDM Section 30.3)
3573e22c 5999 */
4291b588
BD
6000static int nested_vmx_check_vmptr(struct kvm_vcpu *vcpu, int exit_reason,
6001 gpa_t *vmpointer)
3573e22c
BD
6002{
6003 gva_t gva;
6004 gpa_t vmptr;
6005 struct x86_exception e;
6006 struct page *page;
6007 struct vcpu_vmx *vmx = to_vmx(vcpu);
6008 int maxphyaddr = cpuid_maxphyaddr(vcpu);
6009
6010 if (get_vmx_mem_address(vcpu, vmcs_readl(EXIT_QUALIFICATION),
6011 vmcs_read32(VMX_INSTRUCTION_INFO), &gva))
6012 return 1;
6013
6014 if (kvm_read_guest_virt(&vcpu->arch.emulate_ctxt, gva, &vmptr,
6015 sizeof(vmptr), &e)) {
6016 kvm_inject_page_fault(vcpu, &e);
6017 return 1;
6018 }
6019
6020 switch (exit_reason) {
6021 case EXIT_REASON_VMON:
6022 /*
6023 * SDM 3: 24.11.5
6024 * The first 4 bytes of VMXON region contain the supported
6025 * VMCS revision identifier
6026 *
6027 * Note - IA32_VMX_BASIC[48] will never be 1
6028 * for the nested case;
6029 * which replaces physical address width with 32
6030 *
6031 */
bc39c4db 6032 if (!PAGE_ALIGNED(vmptr) || (vmptr >> maxphyaddr)) {
3573e22c
BD
6033 nested_vmx_failInvalid(vcpu);
6034 skip_emulated_instruction(vcpu);
6035 return 1;
6036 }
6037
6038 page = nested_get_page(vcpu, vmptr);
6039 if (page == NULL ||
6040 *(u32 *)kmap(page) != VMCS12_REVISION) {
6041 nested_vmx_failInvalid(vcpu);
6042 kunmap(page);
6043 skip_emulated_instruction(vcpu);
6044 return 1;
6045 }
6046 kunmap(page);
6047 vmx->nested.vmxon_ptr = vmptr;
6048 break;
4291b588 6049 case EXIT_REASON_VMCLEAR:
bc39c4db 6050 if (!PAGE_ALIGNED(vmptr) || (vmptr >> maxphyaddr)) {
4291b588
BD
6051 nested_vmx_failValid(vcpu,
6052 VMXERR_VMCLEAR_INVALID_ADDRESS);
6053 skip_emulated_instruction(vcpu);
6054 return 1;
6055 }
6056
6057 if (vmptr == vmx->nested.vmxon_ptr) {
6058 nested_vmx_failValid(vcpu,
6059 VMXERR_VMCLEAR_VMXON_POINTER);
6060 skip_emulated_instruction(vcpu);
6061 return 1;
6062 }
6063 break;
6064 case EXIT_REASON_VMPTRLD:
bc39c4db 6065 if (!PAGE_ALIGNED(vmptr) || (vmptr >> maxphyaddr)) {
4291b588
BD
6066 nested_vmx_failValid(vcpu,
6067 VMXERR_VMPTRLD_INVALID_ADDRESS);
6068 skip_emulated_instruction(vcpu);
6069 return 1;
6070 }
3573e22c 6071
4291b588
BD
6072 if (vmptr == vmx->nested.vmxon_ptr) {
6073 nested_vmx_failValid(vcpu,
6074 VMXERR_VMCLEAR_VMXON_POINTER);
6075 skip_emulated_instruction(vcpu);
6076 return 1;
6077 }
6078 break;
3573e22c
BD
6079 default:
6080 return 1; /* shouldn't happen */
6081 }
6082
4291b588
BD
6083 if (vmpointer)
6084 *vmpointer = vmptr;
3573e22c
BD
6085 return 0;
6086}
6087
ec378aee
NHE
6088/*
6089 * Emulate the VMXON instruction.
6090 * Currently, we just remember that VMX is active, and do not save or even
6091 * inspect the argument to VMXON (the so-called "VMXON pointer") because we
6092 * do not currently need to store anything in that guest-allocated memory
6093 * region. Consequently, VMCLEAR and VMPTRLD also do not verify that the their
6094 * argument is different from the VMXON pointer (which the spec says they do).
6095 */
6096static int handle_vmon(struct kvm_vcpu *vcpu)
6097{
6098 struct kvm_segment cs;
6099 struct vcpu_vmx *vmx = to_vmx(vcpu);
8de48833 6100 struct vmcs *shadow_vmcs;
b3897a49
NHE
6101 const u64 VMXON_NEEDED_FEATURES = FEATURE_CONTROL_LOCKED
6102 | FEATURE_CONTROL_VMXON_ENABLED_OUTSIDE_SMX;
ec378aee
NHE
6103
6104 /* The Intel VMX Instruction Reference lists a bunch of bits that
6105 * are prerequisite to running VMXON, most notably cr4.VMXE must be
6106 * set to 1 (see vmx_set_cr4() for when we allow the guest to set this).
6107 * Otherwise, we should fail with #UD. We test these now:
6108 */
6109 if (!kvm_read_cr4_bits(vcpu, X86_CR4_VMXE) ||
6110 !kvm_read_cr0_bits(vcpu, X86_CR0_PE) ||
6111 (vmx_get_rflags(vcpu) & X86_EFLAGS_VM)) {
6112 kvm_queue_exception(vcpu, UD_VECTOR);
6113 return 1;
6114 }
6115
6116 vmx_get_segment(vcpu, &cs, VCPU_SREG_CS);
6117 if (is_long_mode(vcpu) && !cs.l) {
6118 kvm_queue_exception(vcpu, UD_VECTOR);
6119 return 1;
6120 }
6121
6122 if (vmx_get_cpl(vcpu)) {
6123 kvm_inject_gp(vcpu, 0);
6124 return 1;
6125 }
3573e22c 6126
4291b588 6127 if (nested_vmx_check_vmptr(vcpu, EXIT_REASON_VMON, NULL))
3573e22c
BD
6128 return 1;
6129
145c28dd
AG
6130 if (vmx->nested.vmxon) {
6131 nested_vmx_failValid(vcpu, VMXERR_VMXON_IN_VMX_ROOT_OPERATION);
6132 skip_emulated_instruction(vcpu);
6133 return 1;
6134 }
b3897a49
NHE
6135
6136 if ((vmx->nested.msr_ia32_feature_control & VMXON_NEEDED_FEATURES)
6137 != VMXON_NEEDED_FEATURES) {
6138 kvm_inject_gp(vcpu, 0);
6139 return 1;
6140 }
6141
8de48833
AG
6142 if (enable_shadow_vmcs) {
6143 shadow_vmcs = alloc_vmcs();
6144 if (!shadow_vmcs)
6145 return -ENOMEM;
6146 /* mark vmcs as shadow */
6147 shadow_vmcs->revision_id |= (1u << 31);
6148 /* init shadow vmcs */
6149 vmcs_clear(shadow_vmcs);
6150 vmx->nested.current_shadow_vmcs = shadow_vmcs;
6151 }
ec378aee 6152
ff2f6fe9
NHE
6153 INIT_LIST_HEAD(&(vmx->nested.vmcs02_pool));
6154 vmx->nested.vmcs02_num = 0;
6155
f4124500
JK
6156 hrtimer_init(&vmx->nested.preemption_timer, CLOCK_MONOTONIC,
6157 HRTIMER_MODE_REL);
6158 vmx->nested.preemption_timer.function = vmx_preemption_timer_fn;
6159
ec378aee
NHE
6160 vmx->nested.vmxon = true;
6161
6162 skip_emulated_instruction(vcpu);
a25eb114 6163 nested_vmx_succeed(vcpu);
ec378aee
NHE
6164 return 1;
6165}
6166
6167/*
6168 * Intel's VMX Instruction Reference specifies a common set of prerequisites
6169 * for running VMX instructions (except VMXON, whose prerequisites are
6170 * slightly different). It also specifies what exception to inject otherwise.
6171 */
6172static int nested_vmx_check_permission(struct kvm_vcpu *vcpu)
6173{
6174 struct kvm_segment cs;
6175 struct vcpu_vmx *vmx = to_vmx(vcpu);
6176
6177 if (!vmx->nested.vmxon) {
6178 kvm_queue_exception(vcpu, UD_VECTOR);
6179 return 0;
6180 }
6181
6182 vmx_get_segment(vcpu, &cs, VCPU_SREG_CS);
6183 if ((vmx_get_rflags(vcpu) & X86_EFLAGS_VM) ||
6184 (is_long_mode(vcpu) && !cs.l)) {
6185 kvm_queue_exception(vcpu, UD_VECTOR);
6186 return 0;
6187 }
6188
6189 if (vmx_get_cpl(vcpu)) {
6190 kvm_inject_gp(vcpu, 0);
6191 return 0;
6192 }
6193
6194 return 1;
6195}
6196
e7953d7f
AG
6197static inline void nested_release_vmcs12(struct vcpu_vmx *vmx)
6198{
8a1b9dd0 6199 u32 exec_control;
9a2a05b9
PB
6200 if (vmx->nested.current_vmptr == -1ull)
6201 return;
6202
6203 /* current_vmptr and current_vmcs12 are always set/reset together */
6204 if (WARN_ON(vmx->nested.current_vmcs12 == NULL))
6205 return;
6206
012f83cb 6207 if (enable_shadow_vmcs) {
9a2a05b9
PB
6208 /* copy to memory all shadowed fields in case
6209 they were modified */
6210 copy_shadow_to_vmcs12(vmx);
6211 vmx->nested.sync_shadow_vmcs = false;
6212 exec_control = vmcs_read32(SECONDARY_VM_EXEC_CONTROL);
6213 exec_control &= ~SECONDARY_EXEC_SHADOW_VMCS;
6214 vmcs_write32(SECONDARY_VM_EXEC_CONTROL, exec_control);
6215 vmcs_write64(VMCS_LINK_POINTER, -1ull);
012f83cb 6216 }
e7953d7f
AG
6217 kunmap(vmx->nested.current_vmcs12_page);
6218 nested_release_page(vmx->nested.current_vmcs12_page);
9a2a05b9
PB
6219 vmx->nested.current_vmptr = -1ull;
6220 vmx->nested.current_vmcs12 = NULL;
e7953d7f
AG
6221}
6222
ec378aee
NHE
6223/*
6224 * Free whatever needs to be freed from vmx->nested when L1 goes down, or
6225 * just stops using VMX.
6226 */
6227static void free_nested(struct vcpu_vmx *vmx)
6228{
6229 if (!vmx->nested.vmxon)
6230 return;
9a2a05b9 6231
ec378aee 6232 vmx->nested.vmxon = false;
9a2a05b9 6233 nested_release_vmcs12(vmx);
e7953d7f
AG
6234 if (enable_shadow_vmcs)
6235 free_vmcs(vmx->nested.current_shadow_vmcs);
fe3ef05c
NHE
6236 /* Unpin physical memory we referred to in current vmcs02 */
6237 if (vmx->nested.apic_access_page) {
6238 nested_release_page(vmx->nested.apic_access_page);
48d89b92 6239 vmx->nested.apic_access_page = NULL;
fe3ef05c 6240 }
a7c0b07d
WL
6241 if (vmx->nested.virtual_apic_page) {
6242 nested_release_page(vmx->nested.virtual_apic_page);
48d89b92 6243 vmx->nested.virtual_apic_page = NULL;
a7c0b07d 6244 }
ff2f6fe9
NHE
6245
6246 nested_free_all_saved_vmcss(vmx);
ec378aee
NHE
6247}
6248
6249/* Emulate the VMXOFF instruction */
6250static int handle_vmoff(struct kvm_vcpu *vcpu)
6251{
6252 if (!nested_vmx_check_permission(vcpu))
6253 return 1;
6254 free_nested(to_vmx(vcpu));
6255 skip_emulated_instruction(vcpu);
a25eb114 6256 nested_vmx_succeed(vcpu);
ec378aee
NHE
6257 return 1;
6258}
6259
27d6c865
NHE
6260/* Emulate the VMCLEAR instruction */
6261static int handle_vmclear(struct kvm_vcpu *vcpu)
6262{
6263 struct vcpu_vmx *vmx = to_vmx(vcpu);
27d6c865
NHE
6264 gpa_t vmptr;
6265 struct vmcs12 *vmcs12;
6266 struct page *page;
27d6c865
NHE
6267
6268 if (!nested_vmx_check_permission(vcpu))
6269 return 1;
6270
4291b588 6271 if (nested_vmx_check_vmptr(vcpu, EXIT_REASON_VMCLEAR, &vmptr))
27d6c865 6272 return 1;
27d6c865 6273
9a2a05b9 6274 if (vmptr == vmx->nested.current_vmptr)
e7953d7f 6275 nested_release_vmcs12(vmx);
27d6c865
NHE
6276
6277 page = nested_get_page(vcpu, vmptr);
6278 if (page == NULL) {
6279 /*
6280 * For accurate processor emulation, VMCLEAR beyond available
6281 * physical memory should do nothing at all. However, it is
6282 * possible that a nested vmx bug, not a guest hypervisor bug,
6283 * resulted in this case, so let's shut down before doing any
6284 * more damage:
6285 */
6286 kvm_make_request(KVM_REQ_TRIPLE_FAULT, vcpu);
6287 return 1;
6288 }
6289 vmcs12 = kmap(page);
6290 vmcs12->launch_state = 0;
6291 kunmap(page);
6292 nested_release_page(page);
6293
6294 nested_free_vmcs02(vmx, vmptr);
6295
6296 skip_emulated_instruction(vcpu);
6297 nested_vmx_succeed(vcpu);
6298 return 1;
6299}
6300
cd232ad0
NHE
6301static int nested_vmx_run(struct kvm_vcpu *vcpu, bool launch);
6302
6303/* Emulate the VMLAUNCH instruction */
6304static int handle_vmlaunch(struct kvm_vcpu *vcpu)
6305{
6306 return nested_vmx_run(vcpu, true);
6307}
6308
6309/* Emulate the VMRESUME instruction */
6310static int handle_vmresume(struct kvm_vcpu *vcpu)
6311{
6312
6313 return nested_vmx_run(vcpu, false);
6314}
6315
49f705c5
NHE
6316enum vmcs_field_type {
6317 VMCS_FIELD_TYPE_U16 = 0,
6318 VMCS_FIELD_TYPE_U64 = 1,
6319 VMCS_FIELD_TYPE_U32 = 2,
6320 VMCS_FIELD_TYPE_NATURAL_WIDTH = 3
6321};
6322
6323static inline int vmcs_field_type(unsigned long field)
6324{
6325 if (0x1 & field) /* the *_HIGH fields are all 32 bit */
6326 return VMCS_FIELD_TYPE_U32;
6327 return (field >> 13) & 0x3 ;
6328}
6329
6330static inline int vmcs_field_readonly(unsigned long field)
6331{
6332 return (((field >> 10) & 0x3) == 1);
6333}
6334
6335/*
6336 * Read a vmcs12 field. Since these can have varying lengths and we return
6337 * one type, we chose the biggest type (u64) and zero-extend the return value
6338 * to that size. Note that the caller, handle_vmread, might need to use only
6339 * some of the bits we return here (e.g., on 32-bit guests, only 32 bits of
6340 * 64-bit fields are to be returned).
6341 */
6342static inline bool vmcs12_read_any(struct kvm_vcpu *vcpu,
6343 unsigned long field, u64 *ret)
6344{
6345 short offset = vmcs_field_to_offset(field);
6346 char *p;
6347
6348 if (offset < 0)
6349 return 0;
6350
6351 p = ((char *)(get_vmcs12(vcpu))) + offset;
6352
6353 switch (vmcs_field_type(field)) {
6354 case VMCS_FIELD_TYPE_NATURAL_WIDTH:
6355 *ret = *((natural_width *)p);
6356 return 1;
6357 case VMCS_FIELD_TYPE_U16:
6358 *ret = *((u16 *)p);
6359 return 1;
6360 case VMCS_FIELD_TYPE_U32:
6361 *ret = *((u32 *)p);
6362 return 1;
6363 case VMCS_FIELD_TYPE_U64:
6364 *ret = *((u64 *)p);
6365 return 1;
6366 default:
6367 return 0; /* can never happen. */
6368 }
6369}
6370
20b97fea
AG
6371
6372static inline bool vmcs12_write_any(struct kvm_vcpu *vcpu,
6373 unsigned long field, u64 field_value){
6374 short offset = vmcs_field_to_offset(field);
6375 char *p = ((char *) get_vmcs12(vcpu)) + offset;
6376 if (offset < 0)
6377 return false;
6378
6379 switch (vmcs_field_type(field)) {
6380 case VMCS_FIELD_TYPE_U16:
6381 *(u16 *)p = field_value;
6382 return true;
6383 case VMCS_FIELD_TYPE_U32:
6384 *(u32 *)p = field_value;
6385 return true;
6386 case VMCS_FIELD_TYPE_U64:
6387 *(u64 *)p = field_value;
6388 return true;
6389 case VMCS_FIELD_TYPE_NATURAL_WIDTH:
6390 *(natural_width *)p = field_value;
6391 return true;
6392 default:
6393 return false; /* can never happen. */
6394 }
6395
6396}
6397
16f5b903
AG
6398static void copy_shadow_to_vmcs12(struct vcpu_vmx *vmx)
6399{
6400 int i;
6401 unsigned long field;
6402 u64 field_value;
6403 struct vmcs *shadow_vmcs = vmx->nested.current_shadow_vmcs;
c2bae893
MK
6404 const unsigned long *fields = shadow_read_write_fields;
6405 const int num_fields = max_shadow_read_write_fields;
16f5b903
AG
6406
6407 vmcs_load(shadow_vmcs);
6408
6409 for (i = 0; i < num_fields; i++) {
6410 field = fields[i];
6411 switch (vmcs_field_type(field)) {
6412 case VMCS_FIELD_TYPE_U16:
6413 field_value = vmcs_read16(field);
6414 break;
6415 case VMCS_FIELD_TYPE_U32:
6416 field_value = vmcs_read32(field);
6417 break;
6418 case VMCS_FIELD_TYPE_U64:
6419 field_value = vmcs_read64(field);
6420 break;
6421 case VMCS_FIELD_TYPE_NATURAL_WIDTH:
6422 field_value = vmcs_readl(field);
6423 break;
6424 }
6425 vmcs12_write_any(&vmx->vcpu, field, field_value);
6426 }
6427
6428 vmcs_clear(shadow_vmcs);
6429 vmcs_load(vmx->loaded_vmcs->vmcs);
6430}
6431
c3114420
AG
6432static void copy_vmcs12_to_shadow(struct vcpu_vmx *vmx)
6433{
c2bae893
MK
6434 const unsigned long *fields[] = {
6435 shadow_read_write_fields,
6436 shadow_read_only_fields
c3114420 6437 };
c2bae893 6438 const int max_fields[] = {
c3114420
AG
6439 max_shadow_read_write_fields,
6440 max_shadow_read_only_fields
6441 };
6442 int i, q;
6443 unsigned long field;
6444 u64 field_value = 0;
6445 struct vmcs *shadow_vmcs = vmx->nested.current_shadow_vmcs;
6446
6447 vmcs_load(shadow_vmcs);
6448
c2bae893 6449 for (q = 0; q < ARRAY_SIZE(fields); q++) {
c3114420
AG
6450 for (i = 0; i < max_fields[q]; i++) {
6451 field = fields[q][i];
6452 vmcs12_read_any(&vmx->vcpu, field, &field_value);
6453
6454 switch (vmcs_field_type(field)) {
6455 case VMCS_FIELD_TYPE_U16:
6456 vmcs_write16(field, (u16)field_value);
6457 break;
6458 case VMCS_FIELD_TYPE_U32:
6459 vmcs_write32(field, (u32)field_value);
6460 break;
6461 case VMCS_FIELD_TYPE_U64:
6462 vmcs_write64(field, (u64)field_value);
6463 break;
6464 case VMCS_FIELD_TYPE_NATURAL_WIDTH:
6465 vmcs_writel(field, (long)field_value);
6466 break;
6467 }
6468 }
6469 }
6470
6471 vmcs_clear(shadow_vmcs);
6472 vmcs_load(vmx->loaded_vmcs->vmcs);
6473}
6474
49f705c5
NHE
6475/*
6476 * VMX instructions which assume a current vmcs12 (i.e., that VMPTRLD was
6477 * used before) all generate the same failure when it is missing.
6478 */
6479static int nested_vmx_check_vmcs12(struct kvm_vcpu *vcpu)
6480{
6481 struct vcpu_vmx *vmx = to_vmx(vcpu);
6482 if (vmx->nested.current_vmptr == -1ull) {
6483 nested_vmx_failInvalid(vcpu);
6484 skip_emulated_instruction(vcpu);
6485 return 0;
6486 }
6487 return 1;
6488}
6489
6490static int handle_vmread(struct kvm_vcpu *vcpu)
6491{
6492 unsigned long field;
6493 u64 field_value;
6494 unsigned long exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
6495 u32 vmx_instruction_info = vmcs_read32(VMX_INSTRUCTION_INFO);
6496 gva_t gva = 0;
6497
6498 if (!nested_vmx_check_permission(vcpu) ||
6499 !nested_vmx_check_vmcs12(vcpu))
6500 return 1;
6501
6502 /* Decode instruction info and find the field to read */
27e6fb5d 6503 field = kvm_register_readl(vcpu, (((vmx_instruction_info) >> 28) & 0xf));
49f705c5
NHE
6504 /* Read the field, zero-extended to a u64 field_value */
6505 if (!vmcs12_read_any(vcpu, field, &field_value)) {
6506 nested_vmx_failValid(vcpu, VMXERR_UNSUPPORTED_VMCS_COMPONENT);
6507 skip_emulated_instruction(vcpu);
6508 return 1;
6509 }
6510 /*
6511 * Now copy part of this value to register or memory, as requested.
6512 * Note that the number of bits actually copied is 32 or 64 depending
6513 * on the guest's mode (32 or 64 bit), not on the given field's length.
6514 */
6515 if (vmx_instruction_info & (1u << 10)) {
27e6fb5d 6516 kvm_register_writel(vcpu, (((vmx_instruction_info) >> 3) & 0xf),
49f705c5
NHE
6517 field_value);
6518 } else {
6519 if (get_vmx_mem_address(vcpu, exit_qualification,
6520 vmx_instruction_info, &gva))
6521 return 1;
6522 /* _system ok, as nested_vmx_check_permission verified cpl=0 */
6523 kvm_write_guest_virt_system(&vcpu->arch.emulate_ctxt, gva,
6524 &field_value, (is_long_mode(vcpu) ? 8 : 4), NULL);
6525 }
6526
6527 nested_vmx_succeed(vcpu);
6528 skip_emulated_instruction(vcpu);
6529 return 1;
6530}
6531
6532
6533static int handle_vmwrite(struct kvm_vcpu *vcpu)
6534{
6535 unsigned long field;
6536 gva_t gva;
6537 unsigned long exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
6538 u32 vmx_instruction_info = vmcs_read32(VMX_INSTRUCTION_INFO);
49f705c5
NHE
6539 /* The value to write might be 32 or 64 bits, depending on L1's long
6540 * mode, and eventually we need to write that into a field of several
6541 * possible lengths. The code below first zero-extends the value to 64
6542 * bit (field_value), and then copies only the approriate number of
6543 * bits into the vmcs12 field.
6544 */
6545 u64 field_value = 0;
6546 struct x86_exception e;
6547
6548 if (!nested_vmx_check_permission(vcpu) ||
6549 !nested_vmx_check_vmcs12(vcpu))
6550 return 1;
6551
6552 if (vmx_instruction_info & (1u << 10))
27e6fb5d 6553 field_value = kvm_register_readl(vcpu,
49f705c5
NHE
6554 (((vmx_instruction_info) >> 3) & 0xf));
6555 else {
6556 if (get_vmx_mem_address(vcpu, exit_qualification,
6557 vmx_instruction_info, &gva))
6558 return 1;
6559 if (kvm_read_guest_virt(&vcpu->arch.emulate_ctxt, gva,
27e6fb5d 6560 &field_value, (is_64_bit_mode(vcpu) ? 8 : 4), &e)) {
49f705c5
NHE
6561 kvm_inject_page_fault(vcpu, &e);
6562 return 1;
6563 }
6564 }
6565
6566
27e6fb5d 6567 field = kvm_register_readl(vcpu, (((vmx_instruction_info) >> 28) & 0xf));
49f705c5
NHE
6568 if (vmcs_field_readonly(field)) {
6569 nested_vmx_failValid(vcpu,
6570 VMXERR_VMWRITE_READ_ONLY_VMCS_COMPONENT);
6571 skip_emulated_instruction(vcpu);
6572 return 1;
6573 }
6574
20b97fea 6575 if (!vmcs12_write_any(vcpu, field, field_value)) {
49f705c5
NHE
6576 nested_vmx_failValid(vcpu, VMXERR_UNSUPPORTED_VMCS_COMPONENT);
6577 skip_emulated_instruction(vcpu);
6578 return 1;
6579 }
6580
6581 nested_vmx_succeed(vcpu);
6582 skip_emulated_instruction(vcpu);
6583 return 1;
6584}
6585
63846663
NHE
6586/* Emulate the VMPTRLD instruction */
6587static int handle_vmptrld(struct kvm_vcpu *vcpu)
6588{
6589 struct vcpu_vmx *vmx = to_vmx(vcpu);
63846663 6590 gpa_t vmptr;
8a1b9dd0 6591 u32 exec_control;
63846663
NHE
6592
6593 if (!nested_vmx_check_permission(vcpu))
6594 return 1;
6595
4291b588 6596 if (nested_vmx_check_vmptr(vcpu, EXIT_REASON_VMPTRLD, &vmptr))
63846663 6597 return 1;
63846663
NHE
6598
6599 if (vmx->nested.current_vmptr != vmptr) {
6600 struct vmcs12 *new_vmcs12;
6601 struct page *page;
6602 page = nested_get_page(vcpu, vmptr);
6603 if (page == NULL) {
6604 nested_vmx_failInvalid(vcpu);
6605 skip_emulated_instruction(vcpu);
6606 return 1;
6607 }
6608 new_vmcs12 = kmap(page);
6609 if (new_vmcs12->revision_id != VMCS12_REVISION) {
6610 kunmap(page);
6611 nested_release_page_clean(page);
6612 nested_vmx_failValid(vcpu,
6613 VMXERR_VMPTRLD_INCORRECT_VMCS_REVISION_ID);
6614 skip_emulated_instruction(vcpu);
6615 return 1;
6616 }
63846663 6617
9a2a05b9 6618 nested_release_vmcs12(vmx);
63846663
NHE
6619 vmx->nested.current_vmptr = vmptr;
6620 vmx->nested.current_vmcs12 = new_vmcs12;
6621 vmx->nested.current_vmcs12_page = page;
012f83cb 6622 if (enable_shadow_vmcs) {
8a1b9dd0
AG
6623 exec_control = vmcs_read32(SECONDARY_VM_EXEC_CONTROL);
6624 exec_control |= SECONDARY_EXEC_SHADOW_VMCS;
6625 vmcs_write32(SECONDARY_VM_EXEC_CONTROL, exec_control);
6626 vmcs_write64(VMCS_LINK_POINTER,
6627 __pa(vmx->nested.current_shadow_vmcs));
012f83cb
AG
6628 vmx->nested.sync_shadow_vmcs = true;
6629 }
63846663
NHE
6630 }
6631
6632 nested_vmx_succeed(vcpu);
6633 skip_emulated_instruction(vcpu);
6634 return 1;
6635}
6636
6a4d7550
NHE
6637/* Emulate the VMPTRST instruction */
6638static int handle_vmptrst(struct kvm_vcpu *vcpu)
6639{
6640 unsigned long exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
6641 u32 vmx_instruction_info = vmcs_read32(VMX_INSTRUCTION_INFO);
6642 gva_t vmcs_gva;
6643 struct x86_exception e;
6644
6645 if (!nested_vmx_check_permission(vcpu))
6646 return 1;
6647
6648 if (get_vmx_mem_address(vcpu, exit_qualification,
6649 vmx_instruction_info, &vmcs_gva))
6650 return 1;
6651 /* ok to use *_system, as nested_vmx_check_permission verified cpl=0 */
6652 if (kvm_write_guest_virt_system(&vcpu->arch.emulate_ctxt, vmcs_gva,
6653 (void *)&to_vmx(vcpu)->nested.current_vmptr,
6654 sizeof(u64), &e)) {
6655 kvm_inject_page_fault(vcpu, &e);
6656 return 1;
6657 }
6658 nested_vmx_succeed(vcpu);
6659 skip_emulated_instruction(vcpu);
6660 return 1;
6661}
6662
bfd0a56b
NHE
6663/* Emulate the INVEPT instruction */
6664static int handle_invept(struct kvm_vcpu *vcpu)
6665{
6666 u32 vmx_instruction_info, types;
6667 unsigned long type;
6668 gva_t gva;
6669 struct x86_exception e;
6670 struct {
6671 u64 eptp, gpa;
6672 } operand;
bfd0a56b
NHE
6673
6674 if (!(nested_vmx_secondary_ctls_high & SECONDARY_EXEC_ENABLE_EPT) ||
6675 !(nested_vmx_ept_caps & VMX_EPT_INVEPT_BIT)) {
6676 kvm_queue_exception(vcpu, UD_VECTOR);
6677 return 1;
6678 }
6679
6680 if (!nested_vmx_check_permission(vcpu))
6681 return 1;
6682
6683 if (!kvm_read_cr0_bits(vcpu, X86_CR0_PE)) {
6684 kvm_queue_exception(vcpu, UD_VECTOR);
6685 return 1;
6686 }
6687
6688 vmx_instruction_info = vmcs_read32(VMX_INSTRUCTION_INFO);
27e6fb5d 6689 type = kvm_register_readl(vcpu, (vmx_instruction_info >> 28) & 0xf);
bfd0a56b
NHE
6690
6691 types = (nested_vmx_ept_caps >> VMX_EPT_EXTENT_SHIFT) & 6;
6692
6693 if (!(types & (1UL << type))) {
6694 nested_vmx_failValid(vcpu,
6695 VMXERR_INVALID_OPERAND_TO_INVEPT_INVVPID);
6696 return 1;
6697 }
6698
6699 /* According to the Intel VMX instruction reference, the memory
6700 * operand is read even if it isn't needed (e.g., for type==global)
6701 */
6702 if (get_vmx_mem_address(vcpu, vmcs_readl(EXIT_QUALIFICATION),
6703 vmx_instruction_info, &gva))
6704 return 1;
6705 if (kvm_read_guest_virt(&vcpu->arch.emulate_ctxt, gva, &operand,
6706 sizeof(operand), &e)) {
6707 kvm_inject_page_fault(vcpu, &e);
6708 return 1;
6709 }
6710
6711 switch (type) {
bfd0a56b
NHE
6712 case VMX_EPT_EXTENT_GLOBAL:
6713 kvm_mmu_sync_roots(vcpu);
77c3913b 6714 kvm_make_request(KVM_REQ_TLB_FLUSH, vcpu);
bfd0a56b
NHE
6715 nested_vmx_succeed(vcpu);
6716 break;
6717 default:
4b855078 6718 /* Trap single context invalidation invept calls */
bfd0a56b
NHE
6719 BUG_ON(1);
6720 break;
6721 }
6722
6723 skip_emulated_instruction(vcpu);
6724 return 1;
6725}
6726
6aa8b732
AK
6727/*
6728 * The exit handlers return 1 if the exit was handled fully and guest execution
6729 * may resume. Otherwise they set the kvm_run parameter to indicate what needs
6730 * to be done to userspace and return 0.
6731 */
772e0318 6732static int (*const kvm_vmx_exit_handlers[])(struct kvm_vcpu *vcpu) = {
6aa8b732
AK
6733 [EXIT_REASON_EXCEPTION_NMI] = handle_exception,
6734 [EXIT_REASON_EXTERNAL_INTERRUPT] = handle_external_interrupt,
988ad74f 6735 [EXIT_REASON_TRIPLE_FAULT] = handle_triple_fault,
f08864b4 6736 [EXIT_REASON_NMI_WINDOW] = handle_nmi_window,
6aa8b732 6737 [EXIT_REASON_IO_INSTRUCTION] = handle_io,
6aa8b732
AK
6738 [EXIT_REASON_CR_ACCESS] = handle_cr,
6739 [EXIT_REASON_DR_ACCESS] = handle_dr,
6740 [EXIT_REASON_CPUID] = handle_cpuid,
6741 [EXIT_REASON_MSR_READ] = handle_rdmsr,
6742 [EXIT_REASON_MSR_WRITE] = handle_wrmsr,
6743 [EXIT_REASON_PENDING_INTERRUPT] = handle_interrupt_window,
6744 [EXIT_REASON_HLT] = handle_halt,
ec25d5e6 6745 [EXIT_REASON_INVD] = handle_invd,
a7052897 6746 [EXIT_REASON_INVLPG] = handle_invlpg,
fee84b07 6747 [EXIT_REASON_RDPMC] = handle_rdpmc,
c21415e8 6748 [EXIT_REASON_VMCALL] = handle_vmcall,
27d6c865 6749 [EXIT_REASON_VMCLEAR] = handle_vmclear,
cd232ad0 6750 [EXIT_REASON_VMLAUNCH] = handle_vmlaunch,
63846663 6751 [EXIT_REASON_VMPTRLD] = handle_vmptrld,
6a4d7550 6752 [EXIT_REASON_VMPTRST] = handle_vmptrst,
49f705c5 6753 [EXIT_REASON_VMREAD] = handle_vmread,
cd232ad0 6754 [EXIT_REASON_VMRESUME] = handle_vmresume,
49f705c5 6755 [EXIT_REASON_VMWRITE] = handle_vmwrite,
ec378aee
NHE
6756 [EXIT_REASON_VMOFF] = handle_vmoff,
6757 [EXIT_REASON_VMON] = handle_vmon,
f78e0e2e
SY
6758 [EXIT_REASON_TPR_BELOW_THRESHOLD] = handle_tpr_below_threshold,
6759 [EXIT_REASON_APIC_ACCESS] = handle_apic_access,
83d4c286 6760 [EXIT_REASON_APIC_WRITE] = handle_apic_write,
c7c9c56c 6761 [EXIT_REASON_EOI_INDUCED] = handle_apic_eoi_induced,
e5edaa01 6762 [EXIT_REASON_WBINVD] = handle_wbinvd,
2acf923e 6763 [EXIT_REASON_XSETBV] = handle_xsetbv,
37817f29 6764 [EXIT_REASON_TASK_SWITCH] = handle_task_switch,
a0861c02 6765 [EXIT_REASON_MCE_DURING_VMENTRY] = handle_machine_check,
68f89400
MT
6766 [EXIT_REASON_EPT_VIOLATION] = handle_ept_violation,
6767 [EXIT_REASON_EPT_MISCONFIG] = handle_ept_misconfig,
4b8d54f9 6768 [EXIT_REASON_PAUSE_INSTRUCTION] = handle_pause,
87c00572
GS
6769 [EXIT_REASON_MWAIT_INSTRUCTION] = handle_mwait,
6770 [EXIT_REASON_MONITOR_INSTRUCTION] = handle_monitor,
bfd0a56b 6771 [EXIT_REASON_INVEPT] = handle_invept,
6aa8b732
AK
6772};
6773
6774static const int kvm_vmx_max_exit_handlers =
50a3485c 6775 ARRAY_SIZE(kvm_vmx_exit_handlers);
6aa8b732 6776
908a7bdd
JK
6777static bool nested_vmx_exit_handled_io(struct kvm_vcpu *vcpu,
6778 struct vmcs12 *vmcs12)
6779{
6780 unsigned long exit_qualification;
6781 gpa_t bitmap, last_bitmap;
6782 unsigned int port;
6783 int size;
6784 u8 b;
6785
908a7bdd 6786 if (!nested_cpu_has(vmcs12, CPU_BASED_USE_IO_BITMAPS))
2f0a6397 6787 return nested_cpu_has(vmcs12, CPU_BASED_UNCOND_IO_EXITING);
908a7bdd
JK
6788
6789 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
6790
6791 port = exit_qualification >> 16;
6792 size = (exit_qualification & 7) + 1;
6793
6794 last_bitmap = (gpa_t)-1;
6795 b = -1;
6796
6797 while (size > 0) {
6798 if (port < 0x8000)
6799 bitmap = vmcs12->io_bitmap_a;
6800 else if (port < 0x10000)
6801 bitmap = vmcs12->io_bitmap_b;
6802 else
6803 return 1;
6804 bitmap += (port & 0x7fff) / 8;
6805
6806 if (last_bitmap != bitmap)
6807 if (kvm_read_guest(vcpu->kvm, bitmap, &b, 1))
6808 return 1;
6809 if (b & (1 << (port & 7)))
6810 return 1;
6811
6812 port++;
6813 size--;
6814 last_bitmap = bitmap;
6815 }
6816
6817 return 0;
6818}
6819
644d711a
NHE
6820/*
6821 * Return 1 if we should exit from L2 to L1 to handle an MSR access access,
6822 * rather than handle it ourselves in L0. I.e., check whether L1 expressed
6823 * disinterest in the current event (read or write a specific MSR) by using an
6824 * MSR bitmap. This may be the case even when L0 doesn't use MSR bitmaps.
6825 */
6826static bool nested_vmx_exit_handled_msr(struct kvm_vcpu *vcpu,
6827 struct vmcs12 *vmcs12, u32 exit_reason)
6828{
6829 u32 msr_index = vcpu->arch.regs[VCPU_REGS_RCX];
6830 gpa_t bitmap;
6831
cbd29cb6 6832 if (!nested_cpu_has(vmcs12, CPU_BASED_USE_MSR_BITMAPS))
644d711a
NHE
6833 return 1;
6834
6835 /*
6836 * The MSR_BITMAP page is divided into four 1024-byte bitmaps,
6837 * for the four combinations of read/write and low/high MSR numbers.
6838 * First we need to figure out which of the four to use:
6839 */
6840 bitmap = vmcs12->msr_bitmap;
6841 if (exit_reason == EXIT_REASON_MSR_WRITE)
6842 bitmap += 2048;
6843 if (msr_index >= 0xc0000000) {
6844 msr_index -= 0xc0000000;
6845 bitmap += 1024;
6846 }
6847
6848 /* Then read the msr_index'th bit from this bitmap: */
6849 if (msr_index < 1024*8) {
6850 unsigned char b;
bd31a7f5
JK
6851 if (kvm_read_guest(vcpu->kvm, bitmap + msr_index/8, &b, 1))
6852 return 1;
644d711a
NHE
6853 return 1 & (b >> (msr_index & 7));
6854 } else
6855 return 1; /* let L1 handle the wrong parameter */
6856}
6857
6858/*
6859 * Return 1 if we should exit from L2 to L1 to handle a CR access exit,
6860 * rather than handle it ourselves in L0. I.e., check if L1 wanted to
6861 * intercept (via guest_host_mask etc.) the current event.
6862 */
6863static bool nested_vmx_exit_handled_cr(struct kvm_vcpu *vcpu,
6864 struct vmcs12 *vmcs12)
6865{
6866 unsigned long exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
6867 int cr = exit_qualification & 15;
6868 int reg = (exit_qualification >> 8) & 15;
1e32c079 6869 unsigned long val = kvm_register_readl(vcpu, reg);
644d711a
NHE
6870
6871 switch ((exit_qualification >> 4) & 3) {
6872 case 0: /* mov to cr */
6873 switch (cr) {
6874 case 0:
6875 if (vmcs12->cr0_guest_host_mask &
6876 (val ^ vmcs12->cr0_read_shadow))
6877 return 1;
6878 break;
6879 case 3:
6880 if ((vmcs12->cr3_target_count >= 1 &&
6881 vmcs12->cr3_target_value0 == val) ||
6882 (vmcs12->cr3_target_count >= 2 &&
6883 vmcs12->cr3_target_value1 == val) ||
6884 (vmcs12->cr3_target_count >= 3 &&
6885 vmcs12->cr3_target_value2 == val) ||
6886 (vmcs12->cr3_target_count >= 4 &&
6887 vmcs12->cr3_target_value3 == val))
6888 return 0;
6889 if (nested_cpu_has(vmcs12, CPU_BASED_CR3_LOAD_EXITING))
6890 return 1;
6891 break;
6892 case 4:
6893 if (vmcs12->cr4_guest_host_mask &
6894 (vmcs12->cr4_read_shadow ^ val))
6895 return 1;
6896 break;
6897 case 8:
6898 if (nested_cpu_has(vmcs12, CPU_BASED_CR8_LOAD_EXITING))
6899 return 1;
6900 break;
6901 }
6902 break;
6903 case 2: /* clts */
6904 if ((vmcs12->cr0_guest_host_mask & X86_CR0_TS) &&
6905 (vmcs12->cr0_read_shadow & X86_CR0_TS))
6906 return 1;
6907 break;
6908 case 1: /* mov from cr */
6909 switch (cr) {
6910 case 3:
6911 if (vmcs12->cpu_based_vm_exec_control &
6912 CPU_BASED_CR3_STORE_EXITING)
6913 return 1;
6914 break;
6915 case 8:
6916 if (vmcs12->cpu_based_vm_exec_control &
6917 CPU_BASED_CR8_STORE_EXITING)
6918 return 1;
6919 break;
6920 }
6921 break;
6922 case 3: /* lmsw */
6923 /*
6924 * lmsw can change bits 1..3 of cr0, and only set bit 0 of
6925 * cr0. Other attempted changes are ignored, with no exit.
6926 */
6927 if (vmcs12->cr0_guest_host_mask & 0xe &
6928 (val ^ vmcs12->cr0_read_shadow))
6929 return 1;
6930 if ((vmcs12->cr0_guest_host_mask & 0x1) &&
6931 !(vmcs12->cr0_read_shadow & 0x1) &&
6932 (val & 0x1))
6933 return 1;
6934 break;
6935 }
6936 return 0;
6937}
6938
6939/*
6940 * Return 1 if we should exit from L2 to L1 to handle an exit, or 0 if we
6941 * should handle it ourselves in L0 (and then continue L2). Only call this
6942 * when in is_guest_mode (L2).
6943 */
6944static bool nested_vmx_exit_handled(struct kvm_vcpu *vcpu)
6945{
644d711a
NHE
6946 u32 intr_info = vmcs_read32(VM_EXIT_INTR_INFO);
6947 struct vcpu_vmx *vmx = to_vmx(vcpu);
6948 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
957c897e 6949 u32 exit_reason = vmx->exit_reason;
644d711a 6950
542060ea
JK
6951 trace_kvm_nested_vmexit(kvm_rip_read(vcpu), exit_reason,
6952 vmcs_readl(EXIT_QUALIFICATION),
6953 vmx->idt_vectoring_info,
6954 intr_info,
6955 vmcs_read32(VM_EXIT_INTR_ERROR_CODE),
6956 KVM_ISA_VMX);
6957
644d711a
NHE
6958 if (vmx->nested.nested_run_pending)
6959 return 0;
6960
6961 if (unlikely(vmx->fail)) {
bd80158a
JK
6962 pr_info_ratelimited("%s failed vm entry %x\n", __func__,
6963 vmcs_read32(VM_INSTRUCTION_ERROR));
644d711a
NHE
6964 return 1;
6965 }
6966
6967 switch (exit_reason) {
6968 case EXIT_REASON_EXCEPTION_NMI:
6969 if (!is_exception(intr_info))
6970 return 0;
6971 else if (is_page_fault(intr_info))
6972 return enable_ept;
e504c909 6973 else if (is_no_device(intr_info) &&
ccf9844e 6974 !(vmcs12->guest_cr0 & X86_CR0_TS))
e504c909 6975 return 0;
644d711a
NHE
6976 return vmcs12->exception_bitmap &
6977 (1u << (intr_info & INTR_INFO_VECTOR_MASK));
6978 case EXIT_REASON_EXTERNAL_INTERRUPT:
6979 return 0;
6980 case EXIT_REASON_TRIPLE_FAULT:
6981 return 1;
6982 case EXIT_REASON_PENDING_INTERRUPT:
3b656cf7 6983 return nested_cpu_has(vmcs12, CPU_BASED_VIRTUAL_INTR_PENDING);
644d711a 6984 case EXIT_REASON_NMI_WINDOW:
3b656cf7 6985 return nested_cpu_has(vmcs12, CPU_BASED_VIRTUAL_NMI_PENDING);
644d711a
NHE
6986 case EXIT_REASON_TASK_SWITCH:
6987 return 1;
6988 case EXIT_REASON_CPUID:
bc613494
MT
6989 if (kvm_register_read(vcpu, VCPU_REGS_RAX) == 0xa)
6990 return 0;
644d711a
NHE
6991 return 1;
6992 case EXIT_REASON_HLT:
6993 return nested_cpu_has(vmcs12, CPU_BASED_HLT_EXITING);
6994 case EXIT_REASON_INVD:
6995 return 1;
6996 case EXIT_REASON_INVLPG:
6997 return nested_cpu_has(vmcs12, CPU_BASED_INVLPG_EXITING);
6998 case EXIT_REASON_RDPMC:
6999 return nested_cpu_has(vmcs12, CPU_BASED_RDPMC_EXITING);
7000 case EXIT_REASON_RDTSC:
7001 return nested_cpu_has(vmcs12, CPU_BASED_RDTSC_EXITING);
7002 case EXIT_REASON_VMCALL: case EXIT_REASON_VMCLEAR:
7003 case EXIT_REASON_VMLAUNCH: case EXIT_REASON_VMPTRLD:
7004 case EXIT_REASON_VMPTRST: case EXIT_REASON_VMREAD:
7005 case EXIT_REASON_VMRESUME: case EXIT_REASON_VMWRITE:
7006 case EXIT_REASON_VMOFF: case EXIT_REASON_VMON:
bfd0a56b 7007 case EXIT_REASON_INVEPT:
644d711a
NHE
7008 /*
7009 * VMX instructions trap unconditionally. This allows L1 to
7010 * emulate them for its L2 guest, i.e., allows 3-level nesting!
7011 */
7012 return 1;
7013 case EXIT_REASON_CR_ACCESS:
7014 return nested_vmx_exit_handled_cr(vcpu, vmcs12);
7015 case EXIT_REASON_DR_ACCESS:
7016 return nested_cpu_has(vmcs12, CPU_BASED_MOV_DR_EXITING);
7017 case EXIT_REASON_IO_INSTRUCTION:
908a7bdd 7018 return nested_vmx_exit_handled_io(vcpu, vmcs12);
644d711a
NHE
7019 case EXIT_REASON_MSR_READ:
7020 case EXIT_REASON_MSR_WRITE:
7021 return nested_vmx_exit_handled_msr(vcpu, vmcs12, exit_reason);
7022 case EXIT_REASON_INVALID_STATE:
7023 return 1;
7024 case EXIT_REASON_MWAIT_INSTRUCTION:
7025 return nested_cpu_has(vmcs12, CPU_BASED_MWAIT_EXITING);
7026 case EXIT_REASON_MONITOR_INSTRUCTION:
7027 return nested_cpu_has(vmcs12, CPU_BASED_MONITOR_EXITING);
7028 case EXIT_REASON_PAUSE_INSTRUCTION:
7029 return nested_cpu_has(vmcs12, CPU_BASED_PAUSE_EXITING) ||
7030 nested_cpu_has2(vmcs12,
7031 SECONDARY_EXEC_PAUSE_LOOP_EXITING);
7032 case EXIT_REASON_MCE_DURING_VMENTRY:
7033 return 0;
7034 case EXIT_REASON_TPR_BELOW_THRESHOLD:
a7c0b07d 7035 return nested_cpu_has(vmcs12, CPU_BASED_TPR_SHADOW);
644d711a
NHE
7036 case EXIT_REASON_APIC_ACCESS:
7037 return nested_cpu_has2(vmcs12,
7038 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES);
7039 case EXIT_REASON_EPT_VIOLATION:
2b1be677
NHE
7040 /*
7041 * L0 always deals with the EPT violation. If nested EPT is
7042 * used, and the nested mmu code discovers that the address is
7043 * missing in the guest EPT table (EPT12), the EPT violation
7044 * will be injected with nested_ept_inject_page_fault()
7045 */
7046 return 0;
644d711a 7047 case EXIT_REASON_EPT_MISCONFIG:
2b1be677
NHE
7048 /*
7049 * L2 never uses directly L1's EPT, but rather L0's own EPT
7050 * table (shadow on EPT) or a merged EPT table that L0 built
7051 * (EPT on EPT). So any problems with the structure of the
7052 * table is L0's fault.
7053 */
644d711a
NHE
7054 return 0;
7055 case EXIT_REASON_WBINVD:
7056 return nested_cpu_has2(vmcs12, SECONDARY_EXEC_WBINVD_EXITING);
7057 case EXIT_REASON_XSETBV:
7058 return 1;
7059 default:
7060 return 1;
7061 }
7062}
7063
586f9607
AK
7064static void vmx_get_exit_info(struct kvm_vcpu *vcpu, u64 *info1, u64 *info2)
7065{
7066 *info1 = vmcs_readl(EXIT_QUALIFICATION);
7067 *info2 = vmcs_read32(VM_EXIT_INTR_INFO);
7068}
7069
6aa8b732
AK
7070/*
7071 * The guest has exited. See if we can fix it or if we need userspace
7072 * assistance.
7073 */
851ba692 7074static int vmx_handle_exit(struct kvm_vcpu *vcpu)
6aa8b732 7075{
29bd8a78 7076 struct vcpu_vmx *vmx = to_vmx(vcpu);
a0861c02 7077 u32 exit_reason = vmx->exit_reason;
1155f76a 7078 u32 vectoring_info = vmx->idt_vectoring_info;
29bd8a78 7079
80ced186 7080 /* If guest state is invalid, start emulating */
14168786 7081 if (vmx->emulation_required)
80ced186 7082 return handle_invalid_guest_state(vcpu);
1d5a4d9b 7083
644d711a 7084 if (is_guest_mode(vcpu) && nested_vmx_exit_handled(vcpu)) {
533558bc
JK
7085 nested_vmx_vmexit(vcpu, exit_reason,
7086 vmcs_read32(VM_EXIT_INTR_INFO),
7087 vmcs_readl(EXIT_QUALIFICATION));
644d711a
NHE
7088 return 1;
7089 }
7090
5120702e
MG
7091 if (exit_reason & VMX_EXIT_REASONS_FAILED_VMENTRY) {
7092 vcpu->run->exit_reason = KVM_EXIT_FAIL_ENTRY;
7093 vcpu->run->fail_entry.hardware_entry_failure_reason
7094 = exit_reason;
7095 return 0;
7096 }
7097
29bd8a78 7098 if (unlikely(vmx->fail)) {
851ba692
AK
7099 vcpu->run->exit_reason = KVM_EXIT_FAIL_ENTRY;
7100 vcpu->run->fail_entry.hardware_entry_failure_reason
29bd8a78
AK
7101 = vmcs_read32(VM_INSTRUCTION_ERROR);
7102 return 0;
7103 }
6aa8b732 7104
b9bf6882
XG
7105 /*
7106 * Note:
7107 * Do not try to fix EXIT_REASON_EPT_MISCONFIG if it caused by
7108 * delivery event since it indicates guest is accessing MMIO.
7109 * The vm-exit can be triggered again after return to guest that
7110 * will cause infinite loop.
7111 */
d77c26fc 7112 if ((vectoring_info & VECTORING_INFO_VALID_MASK) &&
1439442c 7113 (exit_reason != EXIT_REASON_EXCEPTION_NMI &&
60637aac 7114 exit_reason != EXIT_REASON_EPT_VIOLATION &&
b9bf6882
XG
7115 exit_reason != EXIT_REASON_TASK_SWITCH)) {
7116 vcpu->run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
7117 vcpu->run->internal.suberror = KVM_INTERNAL_ERROR_DELIVERY_EV;
7118 vcpu->run->internal.ndata = 2;
7119 vcpu->run->internal.data[0] = vectoring_info;
7120 vcpu->run->internal.data[1] = exit_reason;
7121 return 0;
7122 }
3b86cd99 7123
644d711a
NHE
7124 if (unlikely(!cpu_has_virtual_nmis() && vmx->soft_vnmi_blocked &&
7125 !(is_guest_mode(vcpu) && nested_cpu_has_virtual_nmis(
f5c4368f 7126 get_vmcs12(vcpu))))) {
c4282df9 7127 if (vmx_interrupt_allowed(vcpu)) {
3b86cd99 7128 vmx->soft_vnmi_blocked = 0;
3b86cd99 7129 } else if (vmx->vnmi_blocked_time > 1000000000LL &&
4531220b 7130 vcpu->arch.nmi_pending) {
3b86cd99
JK
7131 /*
7132 * This CPU don't support us in finding the end of an
7133 * NMI-blocked window if the guest runs with IRQs
7134 * disabled. So we pull the trigger after 1 s of
7135 * futile waiting, but inform the user about this.
7136 */
7137 printk(KERN_WARNING "%s: Breaking out of NMI-blocked "
7138 "state on VCPU %d after 1 s timeout\n",
7139 __func__, vcpu->vcpu_id);
7140 vmx->soft_vnmi_blocked = 0;
3b86cd99 7141 }
3b86cd99
JK
7142 }
7143
6aa8b732
AK
7144 if (exit_reason < kvm_vmx_max_exit_handlers
7145 && kvm_vmx_exit_handlers[exit_reason])
851ba692 7146 return kvm_vmx_exit_handlers[exit_reason](vcpu);
6aa8b732 7147 else {
851ba692
AK
7148 vcpu->run->exit_reason = KVM_EXIT_UNKNOWN;
7149 vcpu->run->hw.hardware_exit_reason = exit_reason;
6aa8b732
AK
7150 }
7151 return 0;
7152}
7153
95ba8273 7154static void update_cr8_intercept(struct kvm_vcpu *vcpu, int tpr, int irr)
6e5d865c 7155{
a7c0b07d
WL
7156 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
7157
7158 if (is_guest_mode(vcpu) &&
7159 nested_cpu_has(vmcs12, CPU_BASED_TPR_SHADOW))
7160 return;
7161
95ba8273 7162 if (irr == -1 || tpr < irr) {
6e5d865c
YS
7163 vmcs_write32(TPR_THRESHOLD, 0);
7164 return;
7165 }
7166
95ba8273 7167 vmcs_write32(TPR_THRESHOLD, irr);
6e5d865c
YS
7168}
7169
8d14695f
YZ
7170static void vmx_set_virtual_x2apic_mode(struct kvm_vcpu *vcpu, bool set)
7171{
7172 u32 sec_exec_control;
7173
7174 /*
7175 * There is not point to enable virtualize x2apic without enable
7176 * apicv
7177 */
c7c9c56c
YZ
7178 if (!cpu_has_vmx_virtualize_x2apic_mode() ||
7179 !vmx_vm_has_apicv(vcpu->kvm))
8d14695f
YZ
7180 return;
7181
7182 if (!vm_need_tpr_shadow(vcpu->kvm))
7183 return;
7184
7185 sec_exec_control = vmcs_read32(SECONDARY_VM_EXEC_CONTROL);
7186
7187 if (set) {
7188 sec_exec_control &= ~SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES;
7189 sec_exec_control |= SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE;
7190 } else {
7191 sec_exec_control &= ~SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE;
7192 sec_exec_control |= SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES;
7193 }
7194 vmcs_write32(SECONDARY_VM_EXEC_CONTROL, sec_exec_control);
7195
7196 vmx_set_msr_bitmap(vcpu);
7197}
7198
c7c9c56c
YZ
7199static void vmx_hwapic_isr_update(struct kvm *kvm, int isr)
7200{
7201 u16 status;
7202 u8 old;
7203
7204 if (!vmx_vm_has_apicv(kvm))
7205 return;
7206
7207 if (isr == -1)
7208 isr = 0;
7209
7210 status = vmcs_read16(GUEST_INTR_STATUS);
7211 old = status >> 8;
7212 if (isr != old) {
7213 status &= 0xff;
7214 status |= isr << 8;
7215 vmcs_write16(GUEST_INTR_STATUS, status);
7216 }
7217}
7218
7219static void vmx_set_rvi(int vector)
7220{
7221 u16 status;
7222 u8 old;
7223
7224 status = vmcs_read16(GUEST_INTR_STATUS);
7225 old = (u8)status & 0xff;
7226 if ((u8)vector != old) {
7227 status &= ~0xff;
7228 status |= (u8)vector;
7229 vmcs_write16(GUEST_INTR_STATUS, status);
7230 }
7231}
7232
7233static void vmx_hwapic_irr_update(struct kvm_vcpu *vcpu, int max_irr)
7234{
7235 if (max_irr == -1)
7236 return;
7237
963fee16
WL
7238 /*
7239 * If a vmexit is needed, vmx_check_nested_events handles it.
7240 */
7241 if (is_guest_mode(vcpu) && nested_exit_on_intr(vcpu))
7242 return;
7243
7244 if (!is_guest_mode(vcpu)) {
7245 vmx_set_rvi(max_irr);
7246 return;
7247 }
7248
7249 /*
7250 * Fall back to pre-APICv interrupt injection since L2
7251 * is run without virtual interrupt delivery.
7252 */
7253 if (!kvm_event_needs_reinjection(vcpu) &&
7254 vmx_interrupt_allowed(vcpu)) {
7255 kvm_queue_interrupt(vcpu, max_irr, false);
7256 vmx_inject_irq(vcpu);
7257 }
c7c9c56c
YZ
7258}
7259
7260static void vmx_load_eoi_exitmap(struct kvm_vcpu *vcpu, u64 *eoi_exit_bitmap)
7261{
3d81bc7e
YZ
7262 if (!vmx_vm_has_apicv(vcpu->kvm))
7263 return;
7264
c7c9c56c
YZ
7265 vmcs_write64(EOI_EXIT_BITMAP0, eoi_exit_bitmap[0]);
7266 vmcs_write64(EOI_EXIT_BITMAP1, eoi_exit_bitmap[1]);
7267 vmcs_write64(EOI_EXIT_BITMAP2, eoi_exit_bitmap[2]);
7268 vmcs_write64(EOI_EXIT_BITMAP3, eoi_exit_bitmap[3]);
7269}
7270
51aa01d1 7271static void vmx_complete_atomic_exit(struct vcpu_vmx *vmx)
cf393f75 7272{
00eba012
AK
7273 u32 exit_intr_info;
7274
7275 if (!(vmx->exit_reason == EXIT_REASON_MCE_DURING_VMENTRY
7276 || vmx->exit_reason == EXIT_REASON_EXCEPTION_NMI))
7277 return;
7278
c5ca8e57 7279 vmx->exit_intr_info = vmcs_read32(VM_EXIT_INTR_INFO);
00eba012 7280 exit_intr_info = vmx->exit_intr_info;
a0861c02
AK
7281
7282 /* Handle machine checks before interrupts are enabled */
00eba012 7283 if (is_machine_check(exit_intr_info))
a0861c02
AK
7284 kvm_machine_check();
7285
20f65983 7286 /* We need to handle NMIs before interrupts are enabled */
00eba012 7287 if ((exit_intr_info & INTR_INFO_INTR_TYPE_MASK) == INTR_TYPE_NMI_INTR &&
ff9d07a0
ZY
7288 (exit_intr_info & INTR_INFO_VALID_MASK)) {
7289 kvm_before_handle_nmi(&vmx->vcpu);
20f65983 7290 asm("int $2");
ff9d07a0
ZY
7291 kvm_after_handle_nmi(&vmx->vcpu);
7292 }
51aa01d1 7293}
20f65983 7294
a547c6db
YZ
7295static void vmx_handle_external_intr(struct kvm_vcpu *vcpu)
7296{
7297 u32 exit_intr_info = vmcs_read32(VM_EXIT_INTR_INFO);
7298
7299 /*
7300 * If external interrupt exists, IF bit is set in rflags/eflags on the
7301 * interrupt stack frame, and interrupt will be enabled on a return
7302 * from interrupt handler.
7303 */
7304 if ((exit_intr_info & (INTR_INFO_VALID_MASK | INTR_INFO_INTR_TYPE_MASK))
7305 == (INTR_INFO_VALID_MASK | INTR_TYPE_EXT_INTR)) {
7306 unsigned int vector;
7307 unsigned long entry;
7308 gate_desc *desc;
7309 struct vcpu_vmx *vmx = to_vmx(vcpu);
7310#ifdef CONFIG_X86_64
7311 unsigned long tmp;
7312#endif
7313
7314 vector = exit_intr_info & INTR_INFO_VECTOR_MASK;
7315 desc = (gate_desc *)vmx->host_idt_base + vector;
7316 entry = gate_offset(*desc);
7317 asm volatile(
7318#ifdef CONFIG_X86_64
7319 "mov %%" _ASM_SP ", %[sp]\n\t"
7320 "and $0xfffffffffffffff0, %%" _ASM_SP "\n\t"
7321 "push $%c[ss]\n\t"
7322 "push %[sp]\n\t"
7323#endif
7324 "pushf\n\t"
7325 "orl $0x200, (%%" _ASM_SP ")\n\t"
7326 __ASM_SIZE(push) " $%c[cs]\n\t"
7327 "call *%[entry]\n\t"
7328 :
7329#ifdef CONFIG_X86_64
7330 [sp]"=&r"(tmp)
7331#endif
7332 :
7333 [entry]"r"(entry),
7334 [ss]"i"(__KERNEL_DS),
7335 [cs]"i"(__KERNEL_CS)
7336 );
7337 } else
7338 local_irq_enable();
7339}
7340
da8999d3
LJ
7341static bool vmx_mpx_supported(void)
7342{
7343 return (vmcs_config.vmexit_ctrl & VM_EXIT_CLEAR_BNDCFGS) &&
7344 (vmcs_config.vmentry_ctrl & VM_ENTRY_LOAD_BNDCFGS);
7345}
7346
51aa01d1
AK
7347static void vmx_recover_nmi_blocking(struct vcpu_vmx *vmx)
7348{
c5ca8e57 7349 u32 exit_intr_info;
51aa01d1
AK
7350 bool unblock_nmi;
7351 u8 vector;
7352 bool idtv_info_valid;
7353
7354 idtv_info_valid = vmx->idt_vectoring_info & VECTORING_INFO_VALID_MASK;
20f65983 7355
cf393f75 7356 if (cpu_has_virtual_nmis()) {
9d58b931
AK
7357 if (vmx->nmi_known_unmasked)
7358 return;
c5ca8e57
AK
7359 /*
7360 * Can't use vmx->exit_intr_info since we're not sure what
7361 * the exit reason is.
7362 */
7363 exit_intr_info = vmcs_read32(VM_EXIT_INTR_INFO);
cf393f75
AK
7364 unblock_nmi = (exit_intr_info & INTR_INFO_UNBLOCK_NMI) != 0;
7365 vector = exit_intr_info & INTR_INFO_VECTOR_MASK;
7366 /*
7b4a25cb 7367 * SDM 3: 27.7.1.2 (September 2008)
cf393f75
AK
7368 * Re-set bit "block by NMI" before VM entry if vmexit caused by
7369 * a guest IRET fault.
7b4a25cb
GN
7370 * SDM 3: 23.2.2 (September 2008)
7371 * Bit 12 is undefined in any of the following cases:
7372 * If the VM exit sets the valid bit in the IDT-vectoring
7373 * information field.
7374 * If the VM exit is due to a double fault.
cf393f75 7375 */
7b4a25cb
GN
7376 if ((exit_intr_info & INTR_INFO_VALID_MASK) && unblock_nmi &&
7377 vector != DF_VECTOR && !idtv_info_valid)
cf393f75
AK
7378 vmcs_set_bits(GUEST_INTERRUPTIBILITY_INFO,
7379 GUEST_INTR_STATE_NMI);
9d58b931
AK
7380 else
7381 vmx->nmi_known_unmasked =
7382 !(vmcs_read32(GUEST_INTERRUPTIBILITY_INFO)
7383 & GUEST_INTR_STATE_NMI);
3b86cd99
JK
7384 } else if (unlikely(vmx->soft_vnmi_blocked))
7385 vmx->vnmi_blocked_time +=
7386 ktime_to_ns(ktime_sub(ktime_get(), vmx->entry_time));
51aa01d1
AK
7387}
7388
3ab66e8a 7389static void __vmx_complete_interrupts(struct kvm_vcpu *vcpu,
83422e17
AK
7390 u32 idt_vectoring_info,
7391 int instr_len_field,
7392 int error_code_field)
51aa01d1 7393{
51aa01d1
AK
7394 u8 vector;
7395 int type;
7396 bool idtv_info_valid;
7397
7398 idtv_info_valid = idt_vectoring_info & VECTORING_INFO_VALID_MASK;
668f612f 7399
3ab66e8a
JK
7400 vcpu->arch.nmi_injected = false;
7401 kvm_clear_exception_queue(vcpu);
7402 kvm_clear_interrupt_queue(vcpu);
37b96e98
GN
7403
7404 if (!idtv_info_valid)
7405 return;
7406
3ab66e8a 7407 kvm_make_request(KVM_REQ_EVENT, vcpu);
3842d135 7408
668f612f
AK
7409 vector = idt_vectoring_info & VECTORING_INFO_VECTOR_MASK;
7410 type = idt_vectoring_info & VECTORING_INFO_TYPE_MASK;
37b96e98 7411
64a7ec06 7412 switch (type) {
37b96e98 7413 case INTR_TYPE_NMI_INTR:
3ab66e8a 7414 vcpu->arch.nmi_injected = true;
668f612f 7415 /*
7b4a25cb 7416 * SDM 3: 27.7.1.2 (September 2008)
37b96e98
GN
7417 * Clear bit "block by NMI" before VM entry if a NMI
7418 * delivery faulted.
668f612f 7419 */
3ab66e8a 7420 vmx_set_nmi_mask(vcpu, false);
37b96e98 7421 break;
37b96e98 7422 case INTR_TYPE_SOFT_EXCEPTION:
3ab66e8a 7423 vcpu->arch.event_exit_inst_len = vmcs_read32(instr_len_field);
66fd3f7f
GN
7424 /* fall through */
7425 case INTR_TYPE_HARD_EXCEPTION:
35920a35 7426 if (idt_vectoring_info & VECTORING_INFO_DELIVER_CODE_MASK) {
83422e17 7427 u32 err = vmcs_read32(error_code_field);
851eb667 7428 kvm_requeue_exception_e(vcpu, vector, err);
35920a35 7429 } else
851eb667 7430 kvm_requeue_exception(vcpu, vector);
37b96e98 7431 break;
66fd3f7f 7432 case INTR_TYPE_SOFT_INTR:
3ab66e8a 7433 vcpu->arch.event_exit_inst_len = vmcs_read32(instr_len_field);
66fd3f7f 7434 /* fall through */
37b96e98 7435 case INTR_TYPE_EXT_INTR:
3ab66e8a 7436 kvm_queue_interrupt(vcpu, vector, type == INTR_TYPE_SOFT_INTR);
37b96e98
GN
7437 break;
7438 default:
7439 break;
f7d9238f 7440 }
cf393f75
AK
7441}
7442
83422e17
AK
7443static void vmx_complete_interrupts(struct vcpu_vmx *vmx)
7444{
3ab66e8a 7445 __vmx_complete_interrupts(&vmx->vcpu, vmx->idt_vectoring_info,
83422e17
AK
7446 VM_EXIT_INSTRUCTION_LEN,
7447 IDT_VECTORING_ERROR_CODE);
7448}
7449
b463a6f7
AK
7450static void vmx_cancel_injection(struct kvm_vcpu *vcpu)
7451{
3ab66e8a 7452 __vmx_complete_interrupts(vcpu,
b463a6f7
AK
7453 vmcs_read32(VM_ENTRY_INTR_INFO_FIELD),
7454 VM_ENTRY_INSTRUCTION_LEN,
7455 VM_ENTRY_EXCEPTION_ERROR_CODE);
7456
7457 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, 0);
7458}
7459
d7cd9796
GN
7460static void atomic_switch_perf_msrs(struct vcpu_vmx *vmx)
7461{
7462 int i, nr_msrs;
7463 struct perf_guest_switch_msr *msrs;
7464
7465 msrs = perf_guest_get_msrs(&nr_msrs);
7466
7467 if (!msrs)
7468 return;
7469
7470 for (i = 0; i < nr_msrs; i++)
7471 if (msrs[i].host == msrs[i].guest)
7472 clear_atomic_switch_msr(vmx, msrs[i].msr);
7473 else
7474 add_atomic_switch_msr(vmx, msrs[i].msr, msrs[i].guest,
7475 msrs[i].host);
7476}
7477
a3b5ba49 7478static void __noclone vmx_vcpu_run(struct kvm_vcpu *vcpu)
6aa8b732 7479{
a2fa3e9f 7480 struct vcpu_vmx *vmx = to_vmx(vcpu);
2a7921b7 7481 unsigned long debugctlmsr;
104f226b
AK
7482
7483 /* Record the guest's net vcpu time for enforced NMI injections. */
7484 if (unlikely(!cpu_has_virtual_nmis() && vmx->soft_vnmi_blocked))
7485 vmx->entry_time = ktime_get();
7486
7487 /* Don't enter VMX if guest state is invalid, let the exit handler
7488 start emulation until we arrive back to a valid state */
14168786 7489 if (vmx->emulation_required)
104f226b
AK
7490 return;
7491
a7653ecd
RK
7492 if (vmx->ple_window_dirty) {
7493 vmx->ple_window_dirty = false;
7494 vmcs_write32(PLE_WINDOW, vmx->ple_window);
7495 }
7496
012f83cb
AG
7497 if (vmx->nested.sync_shadow_vmcs) {
7498 copy_vmcs12_to_shadow(vmx);
7499 vmx->nested.sync_shadow_vmcs = false;
7500 }
7501
104f226b
AK
7502 if (test_bit(VCPU_REGS_RSP, (unsigned long *)&vcpu->arch.regs_dirty))
7503 vmcs_writel(GUEST_RSP, vcpu->arch.regs[VCPU_REGS_RSP]);
7504 if (test_bit(VCPU_REGS_RIP, (unsigned long *)&vcpu->arch.regs_dirty))
7505 vmcs_writel(GUEST_RIP, vcpu->arch.regs[VCPU_REGS_RIP]);
7506
7507 /* When single-stepping over STI and MOV SS, we must clear the
7508 * corresponding interruptibility bits in the guest state. Otherwise
7509 * vmentry fails as it then expects bit 14 (BS) in pending debug
7510 * exceptions being set, but that's not correct for the guest debugging
7511 * case. */
7512 if (vcpu->guest_debug & KVM_GUESTDBG_SINGLESTEP)
7513 vmx_set_interrupt_shadow(vcpu, 0);
7514
d7cd9796 7515 atomic_switch_perf_msrs(vmx);
2a7921b7 7516 debugctlmsr = get_debugctlmsr();
d7cd9796 7517
d462b819 7518 vmx->__launched = vmx->loaded_vmcs->launched;
104f226b 7519 asm(
6aa8b732 7520 /* Store host registers */
b188c81f
AK
7521 "push %%" _ASM_DX "; push %%" _ASM_BP ";"
7522 "push %%" _ASM_CX " \n\t" /* placeholder for guest rcx */
7523 "push %%" _ASM_CX " \n\t"
7524 "cmp %%" _ASM_SP ", %c[host_rsp](%0) \n\t"
313dbd49 7525 "je 1f \n\t"
b188c81f 7526 "mov %%" _ASM_SP ", %c[host_rsp](%0) \n\t"
4ecac3fd 7527 __ex(ASM_VMX_VMWRITE_RSP_RDX) "\n\t"
313dbd49 7528 "1: \n\t"
d3edefc0 7529 /* Reload cr2 if changed */
b188c81f
AK
7530 "mov %c[cr2](%0), %%" _ASM_AX " \n\t"
7531 "mov %%cr2, %%" _ASM_DX " \n\t"
7532 "cmp %%" _ASM_AX ", %%" _ASM_DX " \n\t"
d3edefc0 7533 "je 2f \n\t"
b188c81f 7534 "mov %%" _ASM_AX", %%cr2 \n\t"
d3edefc0 7535 "2: \n\t"
6aa8b732 7536 /* Check if vmlaunch of vmresume is needed */
e08aa78a 7537 "cmpl $0, %c[launched](%0) \n\t"
6aa8b732 7538 /* Load guest registers. Don't clobber flags. */
b188c81f
AK
7539 "mov %c[rax](%0), %%" _ASM_AX " \n\t"
7540 "mov %c[rbx](%0), %%" _ASM_BX " \n\t"
7541 "mov %c[rdx](%0), %%" _ASM_DX " \n\t"
7542 "mov %c[rsi](%0), %%" _ASM_SI " \n\t"
7543 "mov %c[rdi](%0), %%" _ASM_DI " \n\t"
7544 "mov %c[rbp](%0), %%" _ASM_BP " \n\t"
05b3e0c2 7545#ifdef CONFIG_X86_64
e08aa78a
AK
7546 "mov %c[r8](%0), %%r8 \n\t"
7547 "mov %c[r9](%0), %%r9 \n\t"
7548 "mov %c[r10](%0), %%r10 \n\t"
7549 "mov %c[r11](%0), %%r11 \n\t"
7550 "mov %c[r12](%0), %%r12 \n\t"
7551 "mov %c[r13](%0), %%r13 \n\t"
7552 "mov %c[r14](%0), %%r14 \n\t"
7553 "mov %c[r15](%0), %%r15 \n\t"
6aa8b732 7554#endif
b188c81f 7555 "mov %c[rcx](%0), %%" _ASM_CX " \n\t" /* kills %0 (ecx) */
c801949d 7556
6aa8b732 7557 /* Enter guest mode */
83287ea4 7558 "jne 1f \n\t"
4ecac3fd 7559 __ex(ASM_VMX_VMLAUNCH) "\n\t"
83287ea4
AK
7560 "jmp 2f \n\t"
7561 "1: " __ex(ASM_VMX_VMRESUME) "\n\t"
7562 "2: "
6aa8b732 7563 /* Save guest registers, load host registers, keep flags */
b188c81f 7564 "mov %0, %c[wordsize](%%" _ASM_SP ") \n\t"
40712fae 7565 "pop %0 \n\t"
b188c81f
AK
7566 "mov %%" _ASM_AX ", %c[rax](%0) \n\t"
7567 "mov %%" _ASM_BX ", %c[rbx](%0) \n\t"
7568 __ASM_SIZE(pop) " %c[rcx](%0) \n\t"
7569 "mov %%" _ASM_DX ", %c[rdx](%0) \n\t"
7570 "mov %%" _ASM_SI ", %c[rsi](%0) \n\t"
7571 "mov %%" _ASM_DI ", %c[rdi](%0) \n\t"
7572 "mov %%" _ASM_BP ", %c[rbp](%0) \n\t"
05b3e0c2 7573#ifdef CONFIG_X86_64
e08aa78a
AK
7574 "mov %%r8, %c[r8](%0) \n\t"
7575 "mov %%r9, %c[r9](%0) \n\t"
7576 "mov %%r10, %c[r10](%0) \n\t"
7577 "mov %%r11, %c[r11](%0) \n\t"
7578 "mov %%r12, %c[r12](%0) \n\t"
7579 "mov %%r13, %c[r13](%0) \n\t"
7580 "mov %%r14, %c[r14](%0) \n\t"
7581 "mov %%r15, %c[r15](%0) \n\t"
6aa8b732 7582#endif
b188c81f
AK
7583 "mov %%cr2, %%" _ASM_AX " \n\t"
7584 "mov %%" _ASM_AX ", %c[cr2](%0) \n\t"
c801949d 7585
b188c81f 7586 "pop %%" _ASM_BP "; pop %%" _ASM_DX " \n\t"
e08aa78a 7587 "setbe %c[fail](%0) \n\t"
83287ea4
AK
7588 ".pushsection .rodata \n\t"
7589 ".global vmx_return \n\t"
7590 "vmx_return: " _ASM_PTR " 2b \n\t"
7591 ".popsection"
e08aa78a 7592 : : "c"(vmx), "d"((unsigned long)HOST_RSP),
d462b819 7593 [launched]"i"(offsetof(struct vcpu_vmx, __launched)),
e08aa78a 7594 [fail]"i"(offsetof(struct vcpu_vmx, fail)),
313dbd49 7595 [host_rsp]"i"(offsetof(struct vcpu_vmx, host_rsp)),
ad312c7c
ZX
7596 [rax]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RAX])),
7597 [rbx]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RBX])),
7598 [rcx]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RCX])),
7599 [rdx]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RDX])),
7600 [rsi]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RSI])),
7601 [rdi]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RDI])),
7602 [rbp]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RBP])),
05b3e0c2 7603#ifdef CONFIG_X86_64
ad312c7c
ZX
7604 [r8]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R8])),
7605 [r9]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R9])),
7606 [r10]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R10])),
7607 [r11]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R11])),
7608 [r12]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R12])),
7609 [r13]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R13])),
7610 [r14]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R14])),
7611 [r15]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R15])),
6aa8b732 7612#endif
40712fae
AK
7613 [cr2]"i"(offsetof(struct vcpu_vmx, vcpu.arch.cr2)),
7614 [wordsize]"i"(sizeof(ulong))
c2036300
LV
7615 : "cc", "memory"
7616#ifdef CONFIG_X86_64
b188c81f 7617 , "rax", "rbx", "rdi", "rsi"
c2036300 7618 , "r8", "r9", "r10", "r11", "r12", "r13", "r14", "r15"
b188c81f
AK
7619#else
7620 , "eax", "ebx", "edi", "esi"
c2036300
LV
7621#endif
7622 );
6aa8b732 7623
2a7921b7
GN
7624 /* MSR_IA32_DEBUGCTLMSR is zeroed on vmexit. Restore it if needed */
7625 if (debugctlmsr)
7626 update_debugctlmsr(debugctlmsr);
7627
aa67f609
AK
7628#ifndef CONFIG_X86_64
7629 /*
7630 * The sysexit path does not restore ds/es, so we must set them to
7631 * a reasonable value ourselves.
7632 *
7633 * We can't defer this to vmx_load_host_state() since that function
7634 * may be executed in interrupt context, which saves and restore segments
7635 * around it, nullifying its effect.
7636 */
7637 loadsegment(ds, __USER_DS);
7638 loadsegment(es, __USER_DS);
7639#endif
7640
6de4f3ad 7641 vcpu->arch.regs_avail = ~((1 << VCPU_REGS_RIP) | (1 << VCPU_REGS_RSP)
6de12732 7642 | (1 << VCPU_EXREG_RFLAGS)
aff48baa 7643 | (1 << VCPU_EXREG_PDPTR)
2fb92db1 7644 | (1 << VCPU_EXREG_SEGMENTS)
aff48baa 7645 | (1 << VCPU_EXREG_CR3));
5fdbf976
MT
7646 vcpu->arch.regs_dirty = 0;
7647
1155f76a
AK
7648 vmx->idt_vectoring_info = vmcs_read32(IDT_VECTORING_INFO_FIELD);
7649
d462b819 7650 vmx->loaded_vmcs->launched = 1;
1b6269db 7651
51aa01d1 7652 vmx->exit_reason = vmcs_read32(VM_EXIT_REASON);
1e2b1dd7 7653 trace_kvm_exit(vmx->exit_reason, vcpu, KVM_ISA_VMX);
51aa01d1 7654
e0b890d3
GN
7655 /*
7656 * the KVM_REQ_EVENT optimization bit is only on for one entry, and if
7657 * we did not inject a still-pending event to L1 now because of
7658 * nested_run_pending, we need to re-enable this bit.
7659 */
7660 if (vmx->nested.nested_run_pending)
7661 kvm_make_request(KVM_REQ_EVENT, vcpu);
7662
7663 vmx->nested.nested_run_pending = 0;
7664
51aa01d1
AK
7665 vmx_complete_atomic_exit(vmx);
7666 vmx_recover_nmi_blocking(vmx);
cf393f75 7667 vmx_complete_interrupts(vmx);
6aa8b732
AK
7668}
7669
4fa7734c
PB
7670static void vmx_load_vmcs01(struct kvm_vcpu *vcpu)
7671{
7672 struct vcpu_vmx *vmx = to_vmx(vcpu);
7673 int cpu;
7674
7675 if (vmx->loaded_vmcs == &vmx->vmcs01)
7676 return;
7677
7678 cpu = get_cpu();
7679 vmx->loaded_vmcs = &vmx->vmcs01;
7680 vmx_vcpu_put(vcpu);
7681 vmx_vcpu_load(vcpu, cpu);
7682 vcpu->cpu = cpu;
7683 put_cpu();
7684}
7685
6aa8b732
AK
7686static void vmx_free_vcpu(struct kvm_vcpu *vcpu)
7687{
fb3f0f51
RR
7688 struct vcpu_vmx *vmx = to_vmx(vcpu);
7689
cdbecfc3 7690 free_vpid(vmx);
4fa7734c
PB
7691 leave_guest_mode(vcpu);
7692 vmx_load_vmcs01(vcpu);
26a865f4 7693 free_nested(vmx);
4fa7734c 7694 free_loaded_vmcs(vmx->loaded_vmcs);
fb3f0f51
RR
7695 kfree(vmx->guest_msrs);
7696 kvm_vcpu_uninit(vcpu);
a4770347 7697 kmem_cache_free(kvm_vcpu_cache, vmx);
6aa8b732
AK
7698}
7699
fb3f0f51 7700static struct kvm_vcpu *vmx_create_vcpu(struct kvm *kvm, unsigned int id)
6aa8b732 7701{
fb3f0f51 7702 int err;
c16f862d 7703 struct vcpu_vmx *vmx = kmem_cache_zalloc(kvm_vcpu_cache, GFP_KERNEL);
15ad7146 7704 int cpu;
6aa8b732 7705
a2fa3e9f 7706 if (!vmx)
fb3f0f51
RR
7707 return ERR_PTR(-ENOMEM);
7708
2384d2b3
SY
7709 allocate_vpid(vmx);
7710
fb3f0f51
RR
7711 err = kvm_vcpu_init(&vmx->vcpu, kvm, id);
7712 if (err)
7713 goto free_vcpu;
965b58a5 7714
a2fa3e9f 7715 vmx->guest_msrs = kmalloc(PAGE_SIZE, GFP_KERNEL);
03916db9
PB
7716 BUILD_BUG_ON(ARRAY_SIZE(vmx_msr_index) * sizeof(vmx->guest_msrs[0])
7717 > PAGE_SIZE);
0123be42 7718
be6d05cf 7719 err = -ENOMEM;
fb3f0f51 7720 if (!vmx->guest_msrs) {
fb3f0f51
RR
7721 goto uninit_vcpu;
7722 }
965b58a5 7723
d462b819
NHE
7724 vmx->loaded_vmcs = &vmx->vmcs01;
7725 vmx->loaded_vmcs->vmcs = alloc_vmcs();
7726 if (!vmx->loaded_vmcs->vmcs)
fb3f0f51 7727 goto free_msrs;
d462b819
NHE
7728 if (!vmm_exclusive)
7729 kvm_cpu_vmxon(__pa(per_cpu(vmxarea, raw_smp_processor_id())));
7730 loaded_vmcs_init(vmx->loaded_vmcs);
7731 if (!vmm_exclusive)
7732 kvm_cpu_vmxoff();
a2fa3e9f 7733
15ad7146
AK
7734 cpu = get_cpu();
7735 vmx_vcpu_load(&vmx->vcpu, cpu);
e48672fa 7736 vmx->vcpu.cpu = cpu;
8b9cf98c 7737 err = vmx_vcpu_setup(vmx);
fb3f0f51 7738 vmx_vcpu_put(&vmx->vcpu);
15ad7146 7739 put_cpu();
fb3f0f51
RR
7740 if (err)
7741 goto free_vmcs;
a63cb560 7742 if (vm_need_virtualize_apic_accesses(kvm)) {
be6d05cf
JK
7743 err = alloc_apic_access_page(kvm);
7744 if (err)
5e4a0b3c 7745 goto free_vmcs;
a63cb560 7746 }
fb3f0f51 7747
b927a3ce
SY
7748 if (enable_ept) {
7749 if (!kvm->arch.ept_identity_map_addr)
7750 kvm->arch.ept_identity_map_addr =
7751 VMX_EPT_IDENTITY_PAGETABLE_ADDR;
f51770ed
TC
7752 err = init_rmode_identity_map(kvm);
7753 if (err)
93ea5388 7754 goto free_vmcs;
b927a3ce 7755 }
b7ebfb05 7756
a9d30f33
NHE
7757 vmx->nested.current_vmptr = -1ull;
7758 vmx->nested.current_vmcs12 = NULL;
7759
fb3f0f51
RR
7760 return &vmx->vcpu;
7761
7762free_vmcs:
5f3fbc34 7763 free_loaded_vmcs(vmx->loaded_vmcs);
fb3f0f51 7764free_msrs:
fb3f0f51
RR
7765 kfree(vmx->guest_msrs);
7766uninit_vcpu:
7767 kvm_vcpu_uninit(&vmx->vcpu);
7768free_vcpu:
cdbecfc3 7769 free_vpid(vmx);
a4770347 7770 kmem_cache_free(kvm_vcpu_cache, vmx);
fb3f0f51 7771 return ERR_PTR(err);
6aa8b732
AK
7772}
7773
002c7f7c
YS
7774static void __init vmx_check_processor_compat(void *rtn)
7775{
7776 struct vmcs_config vmcs_conf;
7777
7778 *(int *)rtn = 0;
7779 if (setup_vmcs_config(&vmcs_conf) < 0)
7780 *(int *)rtn = -EIO;
7781 if (memcmp(&vmcs_config, &vmcs_conf, sizeof(struct vmcs_config)) != 0) {
7782 printk(KERN_ERR "kvm: CPU %d feature inconsistency!\n",
7783 smp_processor_id());
7784 *(int *)rtn = -EIO;
7785 }
7786}
7787
67253af5
SY
7788static int get_ept_level(void)
7789{
7790 return VMX_EPT_DEFAULT_GAW + 1;
7791}
7792
4b12f0de 7793static u64 vmx_get_mt_mask(struct kvm_vcpu *vcpu, gfn_t gfn, bool is_mmio)
64d4d521 7794{
4b12f0de
SY
7795 u64 ret;
7796
522c68c4
SY
7797 /* For VT-d and EPT combination
7798 * 1. MMIO: always map as UC
7799 * 2. EPT with VT-d:
7800 * a. VT-d without snooping control feature: can't guarantee the
7801 * result, try to trust guest.
7802 * b. VT-d with snooping control feature: snooping control feature of
7803 * VT-d engine can guarantee the cache correctness. Just set it
7804 * to WB to keep consistent with host. So the same as item 3.
a19a6d11 7805 * 3. EPT without VT-d: always map as WB and set IPAT=1 to keep
522c68c4
SY
7806 * consistent with host MTRR
7807 */
4b12f0de
SY
7808 if (is_mmio)
7809 ret = MTRR_TYPE_UNCACHABLE << VMX_EPT_MT_EPTE_SHIFT;
e0f0bbc5 7810 else if (kvm_arch_has_noncoherent_dma(vcpu->kvm))
522c68c4
SY
7811 ret = kvm_get_guest_memory_type(vcpu, gfn) <<
7812 VMX_EPT_MT_EPTE_SHIFT;
4b12f0de 7813 else
522c68c4 7814 ret = (MTRR_TYPE_WRBACK << VMX_EPT_MT_EPTE_SHIFT)
a19a6d11 7815 | VMX_EPT_IPAT_BIT;
4b12f0de
SY
7816
7817 return ret;
64d4d521
SY
7818}
7819
17cc3935 7820static int vmx_get_lpage_level(void)
344f414f 7821{
878403b7
SY
7822 if (enable_ept && !cpu_has_vmx_ept_1g_page())
7823 return PT_DIRECTORY_LEVEL;
7824 else
7825 /* For shadow and EPT supported 1GB page */
7826 return PT_PDPE_LEVEL;
344f414f
JR
7827}
7828
0e851880
SY
7829static void vmx_cpuid_update(struct kvm_vcpu *vcpu)
7830{
4e47c7a6
SY
7831 struct kvm_cpuid_entry2 *best;
7832 struct vcpu_vmx *vmx = to_vmx(vcpu);
7833 u32 exec_control;
7834
7835 vmx->rdtscp_enabled = false;
7836 if (vmx_rdtscp_supported()) {
7837 exec_control = vmcs_read32(SECONDARY_VM_EXEC_CONTROL);
7838 if (exec_control & SECONDARY_EXEC_RDTSCP) {
7839 best = kvm_find_cpuid_entry(vcpu, 0x80000001, 0);
7840 if (best && (best->edx & bit(X86_FEATURE_RDTSCP)))
7841 vmx->rdtscp_enabled = true;
7842 else {
7843 exec_control &= ~SECONDARY_EXEC_RDTSCP;
7844 vmcs_write32(SECONDARY_VM_EXEC_CONTROL,
7845 exec_control);
7846 }
7847 }
7848 }
ad756a16 7849
ad756a16
MJ
7850 /* Exposing INVPCID only when PCID is exposed */
7851 best = kvm_find_cpuid_entry(vcpu, 0x7, 0);
7852 if (vmx_invpcid_supported() &&
4f977045 7853 best && (best->ebx & bit(X86_FEATURE_INVPCID)) &&
ad756a16 7854 guest_cpuid_has_pcid(vcpu)) {
29282fde 7855 exec_control = vmcs_read32(SECONDARY_VM_EXEC_CONTROL);
ad756a16
MJ
7856 exec_control |= SECONDARY_EXEC_ENABLE_INVPCID;
7857 vmcs_write32(SECONDARY_VM_EXEC_CONTROL,
7858 exec_control);
7859 } else {
29282fde
TI
7860 if (cpu_has_secondary_exec_ctrls()) {
7861 exec_control = vmcs_read32(SECONDARY_VM_EXEC_CONTROL);
7862 exec_control &= ~SECONDARY_EXEC_ENABLE_INVPCID;
7863 vmcs_write32(SECONDARY_VM_EXEC_CONTROL,
7864 exec_control);
7865 }
ad756a16 7866 if (best)
4f977045 7867 best->ebx &= ~bit(X86_FEATURE_INVPCID);
ad756a16 7868 }
0e851880
SY
7869}
7870
d4330ef2
JR
7871static void vmx_set_supported_cpuid(u32 func, struct kvm_cpuid_entry2 *entry)
7872{
7b8050f5
NHE
7873 if (func == 1 && nested)
7874 entry->ecx |= bit(X86_FEATURE_VMX);
d4330ef2
JR
7875}
7876
25d92081
YZ
7877static void nested_ept_inject_page_fault(struct kvm_vcpu *vcpu,
7878 struct x86_exception *fault)
7879{
533558bc
JK
7880 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
7881 u32 exit_reason;
25d92081
YZ
7882
7883 if (fault->error_code & PFERR_RSVD_MASK)
533558bc 7884 exit_reason = EXIT_REASON_EPT_MISCONFIG;
25d92081 7885 else
533558bc
JK
7886 exit_reason = EXIT_REASON_EPT_VIOLATION;
7887 nested_vmx_vmexit(vcpu, exit_reason, 0, vcpu->arch.exit_qualification);
25d92081
YZ
7888 vmcs12->guest_physical_address = fault->address;
7889}
7890
155a97a3
NHE
7891/* Callbacks for nested_ept_init_mmu_context: */
7892
7893static unsigned long nested_ept_get_cr3(struct kvm_vcpu *vcpu)
7894{
7895 /* return the page table to be shadowed - in our case, EPT12 */
7896 return get_vmcs12(vcpu)->ept_pointer;
7897}
7898
8a3c1a33 7899static void nested_ept_init_mmu_context(struct kvm_vcpu *vcpu)
155a97a3 7900{
8a3c1a33 7901 kvm_init_shadow_ept_mmu(vcpu, &vcpu->arch.mmu,
155a97a3
NHE
7902 nested_vmx_ept_caps & VMX_EPT_EXECUTE_ONLY_BIT);
7903
7904 vcpu->arch.mmu.set_cr3 = vmx_set_cr3;
7905 vcpu->arch.mmu.get_cr3 = nested_ept_get_cr3;
7906 vcpu->arch.mmu.inject_page_fault = nested_ept_inject_page_fault;
7907
7908 vcpu->arch.walk_mmu = &vcpu->arch.nested_mmu;
155a97a3
NHE
7909}
7910
7911static void nested_ept_uninit_mmu_context(struct kvm_vcpu *vcpu)
7912{
7913 vcpu->arch.walk_mmu = &vcpu->arch.mmu;
7914}
7915
feaf0c7d
GN
7916static void vmx_inject_page_fault_nested(struct kvm_vcpu *vcpu,
7917 struct x86_exception *fault)
7918{
7919 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
7920
7921 WARN_ON(!is_guest_mode(vcpu));
7922
7923 /* TODO: also check PFEC_MATCH/MASK, not just EB.PF. */
7924 if (vmcs12->exception_bitmap & (1u << PF_VECTOR))
533558bc
JK
7925 nested_vmx_vmexit(vcpu, to_vmx(vcpu)->exit_reason,
7926 vmcs_read32(VM_EXIT_INTR_INFO),
7927 vmcs_readl(EXIT_QUALIFICATION));
feaf0c7d
GN
7928 else
7929 kvm_inject_page_fault(vcpu, fault);
7930}
7931
a2bcba50
WL
7932static bool nested_get_vmcs12_pages(struct kvm_vcpu *vcpu,
7933 struct vmcs12 *vmcs12)
7934{
7935 struct vcpu_vmx *vmx = to_vmx(vcpu);
7936
7937 if (nested_cpu_has2(vmcs12, SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES)) {
a7c0b07d 7938 /* TODO: Also verify bits beyond physical address width are 0 */
a2bcba50 7939 if (!PAGE_ALIGNED(vmcs12->apic_access_addr))
a2bcba50
WL
7940 return false;
7941
7942 /*
7943 * Translate L1 physical address to host physical
7944 * address for vmcs02. Keep the page pinned, so this
7945 * physical address remains valid. We keep a reference
7946 * to it so we can release it later.
7947 */
7948 if (vmx->nested.apic_access_page) /* shouldn't happen */
7949 nested_release_page(vmx->nested.apic_access_page);
7950 vmx->nested.apic_access_page =
7951 nested_get_page(vcpu, vmcs12->apic_access_addr);
7952 }
a7c0b07d
WL
7953
7954 if (nested_cpu_has(vmcs12, CPU_BASED_TPR_SHADOW)) {
7955 /* TODO: Also verify bits beyond physical address width are 0 */
7956 if (!PAGE_ALIGNED(vmcs12->virtual_apic_page_addr))
7957 return false;
7958
7959 if (vmx->nested.virtual_apic_page) /* shouldn't happen */
7960 nested_release_page(vmx->nested.virtual_apic_page);
7961 vmx->nested.virtual_apic_page =
7962 nested_get_page(vcpu, vmcs12->virtual_apic_page_addr);
7963
7964 /*
7965 * Failing the vm entry is _not_ what the processor does
7966 * but it's basically the only possibility we have.
7967 * We could still enter the guest if CR8 load exits are
7968 * enabled, CR8 store exits are enabled, and virtualize APIC
7969 * access is disabled; in this case the processor would never
7970 * use the TPR shadow and we could simply clear the bit from
7971 * the execution control. But such a configuration is useless,
7972 * so let's keep the code simple.
7973 */
7974 if (!vmx->nested.virtual_apic_page)
7975 return false;
7976 }
7977
a2bcba50
WL
7978 return true;
7979}
7980
f4124500
JK
7981static void vmx_start_preemption_timer(struct kvm_vcpu *vcpu)
7982{
7983 u64 preemption_timeout = get_vmcs12(vcpu)->vmx_preemption_timer_value;
7984 struct vcpu_vmx *vmx = to_vmx(vcpu);
7985
7986 if (vcpu->arch.virtual_tsc_khz == 0)
7987 return;
7988
7989 /* Make sure short timeouts reliably trigger an immediate vmexit.
7990 * hrtimer_start does not guarantee this. */
7991 if (preemption_timeout <= 1) {
7992 vmx_preemption_timer_fn(&vmx->nested.preemption_timer);
7993 return;
7994 }
7995
7996 preemption_timeout <<= VMX_MISC_EMULATED_PREEMPTION_TIMER_RATE;
7997 preemption_timeout *= 1000000;
7998 do_div(preemption_timeout, vcpu->arch.virtual_tsc_khz);
7999 hrtimer_start(&vmx->nested.preemption_timer,
8000 ns_to_ktime(preemption_timeout), HRTIMER_MODE_REL);
8001}
8002
fe3ef05c
NHE
8003/*
8004 * prepare_vmcs02 is called when the L1 guest hypervisor runs its nested
8005 * L2 guest. L1 has a vmcs for L2 (vmcs12), and this function "merges" it
8006 * with L0's requirements for its guest (a.k.a. vmsc01), so we can run the L2
8007 * guest in a way that will both be appropriate to L1's requests, and our
8008 * needs. In addition to modifying the active vmcs (which is vmcs02), this
8009 * function also has additional necessary side-effects, like setting various
8010 * vcpu->arch fields.
8011 */
8012static void prepare_vmcs02(struct kvm_vcpu *vcpu, struct vmcs12 *vmcs12)
8013{
8014 struct vcpu_vmx *vmx = to_vmx(vcpu);
8015 u32 exec_control;
8016
8017 vmcs_write16(GUEST_ES_SELECTOR, vmcs12->guest_es_selector);
8018 vmcs_write16(GUEST_CS_SELECTOR, vmcs12->guest_cs_selector);
8019 vmcs_write16(GUEST_SS_SELECTOR, vmcs12->guest_ss_selector);
8020 vmcs_write16(GUEST_DS_SELECTOR, vmcs12->guest_ds_selector);
8021 vmcs_write16(GUEST_FS_SELECTOR, vmcs12->guest_fs_selector);
8022 vmcs_write16(GUEST_GS_SELECTOR, vmcs12->guest_gs_selector);
8023 vmcs_write16(GUEST_LDTR_SELECTOR, vmcs12->guest_ldtr_selector);
8024 vmcs_write16(GUEST_TR_SELECTOR, vmcs12->guest_tr_selector);
8025 vmcs_write32(GUEST_ES_LIMIT, vmcs12->guest_es_limit);
8026 vmcs_write32(GUEST_CS_LIMIT, vmcs12->guest_cs_limit);
8027 vmcs_write32(GUEST_SS_LIMIT, vmcs12->guest_ss_limit);
8028 vmcs_write32(GUEST_DS_LIMIT, vmcs12->guest_ds_limit);
8029 vmcs_write32(GUEST_FS_LIMIT, vmcs12->guest_fs_limit);
8030 vmcs_write32(GUEST_GS_LIMIT, vmcs12->guest_gs_limit);
8031 vmcs_write32(GUEST_LDTR_LIMIT, vmcs12->guest_ldtr_limit);
8032 vmcs_write32(GUEST_TR_LIMIT, vmcs12->guest_tr_limit);
8033 vmcs_write32(GUEST_GDTR_LIMIT, vmcs12->guest_gdtr_limit);
8034 vmcs_write32(GUEST_IDTR_LIMIT, vmcs12->guest_idtr_limit);
8035 vmcs_write32(GUEST_ES_AR_BYTES, vmcs12->guest_es_ar_bytes);
8036 vmcs_write32(GUEST_CS_AR_BYTES, vmcs12->guest_cs_ar_bytes);
8037 vmcs_write32(GUEST_SS_AR_BYTES, vmcs12->guest_ss_ar_bytes);
8038 vmcs_write32(GUEST_DS_AR_BYTES, vmcs12->guest_ds_ar_bytes);
8039 vmcs_write32(GUEST_FS_AR_BYTES, vmcs12->guest_fs_ar_bytes);
8040 vmcs_write32(GUEST_GS_AR_BYTES, vmcs12->guest_gs_ar_bytes);
8041 vmcs_write32(GUEST_LDTR_AR_BYTES, vmcs12->guest_ldtr_ar_bytes);
8042 vmcs_write32(GUEST_TR_AR_BYTES, vmcs12->guest_tr_ar_bytes);
8043 vmcs_writel(GUEST_ES_BASE, vmcs12->guest_es_base);
8044 vmcs_writel(GUEST_CS_BASE, vmcs12->guest_cs_base);
8045 vmcs_writel(GUEST_SS_BASE, vmcs12->guest_ss_base);
8046 vmcs_writel(GUEST_DS_BASE, vmcs12->guest_ds_base);
8047 vmcs_writel(GUEST_FS_BASE, vmcs12->guest_fs_base);
8048 vmcs_writel(GUEST_GS_BASE, vmcs12->guest_gs_base);
8049 vmcs_writel(GUEST_LDTR_BASE, vmcs12->guest_ldtr_base);
8050 vmcs_writel(GUEST_TR_BASE, vmcs12->guest_tr_base);
8051 vmcs_writel(GUEST_GDTR_BASE, vmcs12->guest_gdtr_base);
8052 vmcs_writel(GUEST_IDTR_BASE, vmcs12->guest_idtr_base);
8053
2996fca0
JK
8054 if (vmcs12->vm_entry_controls & VM_ENTRY_LOAD_DEBUG_CONTROLS) {
8055 kvm_set_dr(vcpu, 7, vmcs12->guest_dr7);
8056 vmcs_write64(GUEST_IA32_DEBUGCTL, vmcs12->guest_ia32_debugctl);
8057 } else {
8058 kvm_set_dr(vcpu, 7, vcpu->arch.dr7);
8059 vmcs_write64(GUEST_IA32_DEBUGCTL, vmx->nested.vmcs01_debugctl);
8060 }
fe3ef05c
NHE
8061 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD,
8062 vmcs12->vm_entry_intr_info_field);
8063 vmcs_write32(VM_ENTRY_EXCEPTION_ERROR_CODE,
8064 vmcs12->vm_entry_exception_error_code);
8065 vmcs_write32(VM_ENTRY_INSTRUCTION_LEN,
8066 vmcs12->vm_entry_instruction_len);
8067 vmcs_write32(GUEST_INTERRUPTIBILITY_INFO,
8068 vmcs12->guest_interruptibility_info);
fe3ef05c 8069 vmcs_write32(GUEST_SYSENTER_CS, vmcs12->guest_sysenter_cs);
63fbf59f 8070 vmx_set_rflags(vcpu, vmcs12->guest_rflags);
fe3ef05c
NHE
8071 vmcs_writel(GUEST_PENDING_DBG_EXCEPTIONS,
8072 vmcs12->guest_pending_dbg_exceptions);
8073 vmcs_writel(GUEST_SYSENTER_ESP, vmcs12->guest_sysenter_esp);
8074 vmcs_writel(GUEST_SYSENTER_EIP, vmcs12->guest_sysenter_eip);
8075
8076 vmcs_write64(VMCS_LINK_POINTER, -1ull);
8077
f4124500
JK
8078 exec_control = vmcs12->pin_based_vm_exec_control;
8079 exec_control |= vmcs_config.pin_based_exec_ctrl;
696dfd95
PB
8080 exec_control &= ~(PIN_BASED_VMX_PREEMPTION_TIMER |
8081 PIN_BASED_POSTED_INTR);
f4124500 8082 vmcs_write32(PIN_BASED_VM_EXEC_CONTROL, exec_control);
fe3ef05c 8083
f4124500
JK
8084 vmx->nested.preemption_timer_expired = false;
8085 if (nested_cpu_has_preemption_timer(vmcs12))
8086 vmx_start_preemption_timer(vcpu);
0238ea91 8087
fe3ef05c
NHE
8088 /*
8089 * Whether page-faults are trapped is determined by a combination of
8090 * 3 settings: PFEC_MASK, PFEC_MATCH and EXCEPTION_BITMAP.PF.
8091 * If enable_ept, L0 doesn't care about page faults and we should
8092 * set all of these to L1's desires. However, if !enable_ept, L0 does
8093 * care about (at least some) page faults, and because it is not easy
8094 * (if at all possible?) to merge L0 and L1's desires, we simply ask
8095 * to exit on each and every L2 page fault. This is done by setting
8096 * MASK=MATCH=0 and (see below) EB.PF=1.
8097 * Note that below we don't need special code to set EB.PF beyond the
8098 * "or"ing of the EB of vmcs01 and vmcs12, because when enable_ept,
8099 * vmcs01's EB.PF is 0 so the "or" will take vmcs12's value, and when
8100 * !enable_ept, EB.PF is 1, so the "or" will always be 1.
8101 *
8102 * A problem with this approach (when !enable_ept) is that L1 may be
8103 * injected with more page faults than it asked for. This could have
8104 * caused problems, but in practice existing hypervisors don't care.
8105 * To fix this, we will need to emulate the PFEC checking (on the L1
8106 * page tables), using walk_addr(), when injecting PFs to L1.
8107 */
8108 vmcs_write32(PAGE_FAULT_ERROR_CODE_MASK,
8109 enable_ept ? vmcs12->page_fault_error_code_mask : 0);
8110 vmcs_write32(PAGE_FAULT_ERROR_CODE_MATCH,
8111 enable_ept ? vmcs12->page_fault_error_code_match : 0);
8112
8113 if (cpu_has_secondary_exec_ctrls()) {
f4124500 8114 exec_control = vmx_secondary_exec_control(vmx);
fe3ef05c
NHE
8115 if (!vmx->rdtscp_enabled)
8116 exec_control &= ~SECONDARY_EXEC_RDTSCP;
8117 /* Take the following fields only from vmcs12 */
696dfd95
PB
8118 exec_control &= ~(SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES |
8119 SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY |
8120 SECONDARY_EXEC_APIC_REGISTER_VIRT);
fe3ef05c
NHE
8121 if (nested_cpu_has(vmcs12,
8122 CPU_BASED_ACTIVATE_SECONDARY_CONTROLS))
8123 exec_control |= vmcs12->secondary_vm_exec_control;
8124
8125 if (exec_control & SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES) {
fe3ef05c
NHE
8126 /*
8127 * If translation failed, no matter: This feature asks
8128 * to exit when accessing the given address, and if it
8129 * can never be accessed, this feature won't do
8130 * anything anyway.
8131 */
8132 if (!vmx->nested.apic_access_page)
8133 exec_control &=
8134 ~SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES;
8135 else
8136 vmcs_write64(APIC_ACCESS_ADDR,
8137 page_to_phys(vmx->nested.apic_access_page));
ca3f257a
JK
8138 } else if (vm_need_virtualize_apic_accesses(vmx->vcpu.kvm)) {
8139 exec_control |=
8140 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES;
8141 vmcs_write64(APIC_ACCESS_ADDR,
8142 page_to_phys(vcpu->kvm->arch.apic_access_page));
fe3ef05c
NHE
8143 }
8144
8145 vmcs_write32(SECONDARY_VM_EXEC_CONTROL, exec_control);
8146 }
8147
8148
8149 /*
8150 * Set host-state according to L0's settings (vmcs12 is irrelevant here)
8151 * Some constant fields are set here by vmx_set_constant_host_state().
8152 * Other fields are different per CPU, and will be set later when
8153 * vmx_vcpu_load() is called, and when vmx_save_host_state() is called.
8154 */
a547c6db 8155 vmx_set_constant_host_state(vmx);
fe3ef05c
NHE
8156
8157 /*
8158 * HOST_RSP is normally set correctly in vmx_vcpu_run() just before
8159 * entry, but only if the current (host) sp changed from the value
8160 * we wrote last (vmx->host_rsp). This cache is no longer relevant
8161 * if we switch vmcs, and rather than hold a separate cache per vmcs,
8162 * here we just force the write to happen on entry.
8163 */
8164 vmx->host_rsp = 0;
8165
8166 exec_control = vmx_exec_control(vmx); /* L0's desires */
8167 exec_control &= ~CPU_BASED_VIRTUAL_INTR_PENDING;
8168 exec_control &= ~CPU_BASED_VIRTUAL_NMI_PENDING;
8169 exec_control &= ~CPU_BASED_TPR_SHADOW;
8170 exec_control |= vmcs12->cpu_based_vm_exec_control;
a7c0b07d
WL
8171
8172 if (exec_control & CPU_BASED_TPR_SHADOW) {
8173 vmcs_write64(VIRTUAL_APIC_PAGE_ADDR,
8174 page_to_phys(vmx->nested.virtual_apic_page));
8175 vmcs_write32(TPR_THRESHOLD, vmcs12->tpr_threshold);
8176 }
8177
fe3ef05c
NHE
8178 /*
8179 * Merging of IO and MSR bitmaps not currently supported.
8180 * Rather, exit every time.
8181 */
8182 exec_control &= ~CPU_BASED_USE_MSR_BITMAPS;
8183 exec_control &= ~CPU_BASED_USE_IO_BITMAPS;
8184 exec_control |= CPU_BASED_UNCOND_IO_EXITING;
8185
8186 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, exec_control);
8187
8188 /* EXCEPTION_BITMAP and CR0_GUEST_HOST_MASK should basically be the
8189 * bitwise-or of what L1 wants to trap for L2, and what we want to
8190 * trap. Note that CR0.TS also needs updating - we do this later.
8191 */
8192 update_exception_bitmap(vcpu);
8193 vcpu->arch.cr0_guest_owned_bits &= ~vmcs12->cr0_guest_host_mask;
8194 vmcs_writel(CR0_GUEST_HOST_MASK, ~vcpu->arch.cr0_guest_owned_bits);
8195
8049d651
NHE
8196 /* L2->L1 exit controls are emulated - the hardware exit is to L0 so
8197 * we should use its exit controls. Note that VM_EXIT_LOAD_IA32_EFER
8198 * bits are further modified by vmx_set_efer() below.
8199 */
f4124500 8200 vmcs_write32(VM_EXIT_CONTROLS, vmcs_config.vmexit_ctrl);
8049d651
NHE
8201
8202 /* vmcs12's VM_ENTRY_LOAD_IA32_EFER and VM_ENTRY_IA32E_MODE are
8203 * emulated by vmx_set_efer(), below.
8204 */
2961e876 8205 vm_entry_controls_init(vmx,
8049d651
NHE
8206 (vmcs12->vm_entry_controls & ~VM_ENTRY_LOAD_IA32_EFER &
8207 ~VM_ENTRY_IA32E_MODE) |
fe3ef05c
NHE
8208 (vmcs_config.vmentry_ctrl & ~VM_ENTRY_IA32E_MODE));
8209
44811c02 8210 if (vmcs12->vm_entry_controls & VM_ENTRY_LOAD_IA32_PAT) {
fe3ef05c 8211 vmcs_write64(GUEST_IA32_PAT, vmcs12->guest_ia32_pat);
44811c02
JK
8212 vcpu->arch.pat = vmcs12->guest_ia32_pat;
8213 } else if (vmcs_config.vmentry_ctrl & VM_ENTRY_LOAD_IA32_PAT)
fe3ef05c
NHE
8214 vmcs_write64(GUEST_IA32_PAT, vmx->vcpu.arch.pat);
8215
8216
8217 set_cr4_guest_host_mask(vmx);
8218
36be0b9d
PB
8219 if (vmcs12->vm_entry_controls & VM_ENTRY_LOAD_BNDCFGS)
8220 vmcs_write64(GUEST_BNDCFGS, vmcs12->guest_bndcfgs);
8221
27fc51b2
NHE
8222 if (vmcs12->cpu_based_vm_exec_control & CPU_BASED_USE_TSC_OFFSETING)
8223 vmcs_write64(TSC_OFFSET,
8224 vmx->nested.vmcs01_tsc_offset + vmcs12->tsc_offset);
8225 else
8226 vmcs_write64(TSC_OFFSET, vmx->nested.vmcs01_tsc_offset);
fe3ef05c
NHE
8227
8228 if (enable_vpid) {
8229 /*
8230 * Trivially support vpid by letting L2s share their parent
8231 * L1's vpid. TODO: move to a more elaborate solution, giving
8232 * each L2 its own vpid and exposing the vpid feature to L1.
8233 */
8234 vmcs_write16(VIRTUAL_PROCESSOR_ID, vmx->vpid);
8235 vmx_flush_tlb(vcpu);
8236 }
8237
155a97a3
NHE
8238 if (nested_cpu_has_ept(vmcs12)) {
8239 kvm_mmu_unload(vcpu);
8240 nested_ept_init_mmu_context(vcpu);
8241 }
8242
fe3ef05c
NHE
8243 if (vmcs12->vm_entry_controls & VM_ENTRY_LOAD_IA32_EFER)
8244 vcpu->arch.efer = vmcs12->guest_ia32_efer;
d1fa0352 8245 else if (vmcs12->vm_entry_controls & VM_ENTRY_IA32E_MODE)
fe3ef05c
NHE
8246 vcpu->arch.efer |= (EFER_LMA | EFER_LME);
8247 else
8248 vcpu->arch.efer &= ~(EFER_LMA | EFER_LME);
8249 /* Note: modifies VM_ENTRY/EXIT_CONTROLS and GUEST/HOST_IA32_EFER */
8250 vmx_set_efer(vcpu, vcpu->arch.efer);
8251
8252 /*
8253 * This sets GUEST_CR0 to vmcs12->guest_cr0, with possibly a modified
8254 * TS bit (for lazy fpu) and bits which we consider mandatory enabled.
8255 * The CR0_READ_SHADOW is what L2 should have expected to read given
8256 * the specifications by L1; It's not enough to take
8257 * vmcs12->cr0_read_shadow because on our cr0_guest_host_mask we we
8258 * have more bits than L1 expected.
8259 */
8260 vmx_set_cr0(vcpu, vmcs12->guest_cr0);
8261 vmcs_writel(CR0_READ_SHADOW, nested_read_cr0(vmcs12));
8262
8263 vmx_set_cr4(vcpu, vmcs12->guest_cr4);
8264 vmcs_writel(CR4_READ_SHADOW, nested_read_cr4(vmcs12));
8265
8266 /* shadow page tables on either EPT or shadow page tables */
8267 kvm_set_cr3(vcpu, vmcs12->guest_cr3);
8268 kvm_mmu_reset_context(vcpu);
8269
feaf0c7d
GN
8270 if (!enable_ept)
8271 vcpu->arch.walk_mmu->inject_page_fault = vmx_inject_page_fault_nested;
8272
3633cfc3
NHE
8273 /*
8274 * L1 may access the L2's PDPTR, so save them to construct vmcs12
8275 */
8276 if (enable_ept) {
8277 vmcs_write64(GUEST_PDPTR0, vmcs12->guest_pdptr0);
8278 vmcs_write64(GUEST_PDPTR1, vmcs12->guest_pdptr1);
8279 vmcs_write64(GUEST_PDPTR2, vmcs12->guest_pdptr2);
8280 vmcs_write64(GUEST_PDPTR3, vmcs12->guest_pdptr3);
8281 }
8282
fe3ef05c
NHE
8283 kvm_register_write(vcpu, VCPU_REGS_RSP, vmcs12->guest_rsp);
8284 kvm_register_write(vcpu, VCPU_REGS_RIP, vmcs12->guest_rip);
8285}
8286
cd232ad0
NHE
8287/*
8288 * nested_vmx_run() handles a nested entry, i.e., a VMLAUNCH or VMRESUME on L1
8289 * for running an L2 nested guest.
8290 */
8291static int nested_vmx_run(struct kvm_vcpu *vcpu, bool launch)
8292{
8293 struct vmcs12 *vmcs12;
8294 struct vcpu_vmx *vmx = to_vmx(vcpu);
8295 int cpu;
8296 struct loaded_vmcs *vmcs02;
384bb783 8297 bool ia32e;
cd232ad0
NHE
8298
8299 if (!nested_vmx_check_permission(vcpu) ||
8300 !nested_vmx_check_vmcs12(vcpu))
8301 return 1;
8302
8303 skip_emulated_instruction(vcpu);
8304 vmcs12 = get_vmcs12(vcpu);
8305
012f83cb
AG
8306 if (enable_shadow_vmcs)
8307 copy_shadow_to_vmcs12(vmx);
8308
7c177938
NHE
8309 /*
8310 * The nested entry process starts with enforcing various prerequisites
8311 * on vmcs12 as required by the Intel SDM, and act appropriately when
8312 * they fail: As the SDM explains, some conditions should cause the
8313 * instruction to fail, while others will cause the instruction to seem
8314 * to succeed, but return an EXIT_REASON_INVALID_STATE.
8315 * To speed up the normal (success) code path, we should avoid checking
8316 * for misconfigurations which will anyway be caught by the processor
8317 * when using the merged vmcs02.
8318 */
8319 if (vmcs12->launch_state == launch) {
8320 nested_vmx_failValid(vcpu,
8321 launch ? VMXERR_VMLAUNCH_NONCLEAR_VMCS
8322 : VMXERR_VMRESUME_NONLAUNCHED_VMCS);
8323 return 1;
8324 }
8325
6dfacadd
JK
8326 if (vmcs12->guest_activity_state != GUEST_ACTIVITY_ACTIVE &&
8327 vmcs12->guest_activity_state != GUEST_ACTIVITY_HLT) {
26539bd0
PB
8328 nested_vmx_failValid(vcpu, VMXERR_ENTRY_INVALID_CONTROL_FIELD);
8329 return 1;
8330 }
8331
7c177938 8332 if ((vmcs12->cpu_based_vm_exec_control & CPU_BASED_USE_MSR_BITMAPS) &&
bc39c4db 8333 !PAGE_ALIGNED(vmcs12->msr_bitmap)) {
7c177938
NHE
8334 /*TODO: Also verify bits beyond physical address width are 0*/
8335 nested_vmx_failValid(vcpu, VMXERR_ENTRY_INVALID_CONTROL_FIELD);
8336 return 1;
8337 }
8338
a2bcba50 8339 if (!nested_get_vmcs12_pages(vcpu, vmcs12)) {
7c177938
NHE
8340 /*TODO: Also verify bits beyond physical address width are 0*/
8341 nested_vmx_failValid(vcpu, VMXERR_ENTRY_INVALID_CONTROL_FIELD);
8342 return 1;
8343 }
8344
8345 if (vmcs12->vm_entry_msr_load_count > 0 ||
8346 vmcs12->vm_exit_msr_load_count > 0 ||
8347 vmcs12->vm_exit_msr_store_count > 0) {
bd80158a
JK
8348 pr_warn_ratelimited("%s: VMCS MSR_{LOAD,STORE} unsupported\n",
8349 __func__);
7c177938
NHE
8350 nested_vmx_failValid(vcpu, VMXERR_ENTRY_INVALID_CONTROL_FIELD);
8351 return 1;
8352 }
8353
8354 if (!vmx_control_verify(vmcs12->cpu_based_vm_exec_control,
3dcdf3ec
JK
8355 nested_vmx_true_procbased_ctls_low,
8356 nested_vmx_procbased_ctls_high) ||
7c177938
NHE
8357 !vmx_control_verify(vmcs12->secondary_vm_exec_control,
8358 nested_vmx_secondary_ctls_low, nested_vmx_secondary_ctls_high) ||
8359 !vmx_control_verify(vmcs12->pin_based_vm_exec_control,
8360 nested_vmx_pinbased_ctls_low, nested_vmx_pinbased_ctls_high) ||
8361 !vmx_control_verify(vmcs12->vm_exit_controls,
2996fca0
JK
8362 nested_vmx_true_exit_ctls_low,
8363 nested_vmx_exit_ctls_high) ||
7c177938 8364 !vmx_control_verify(vmcs12->vm_entry_controls,
2996fca0
JK
8365 nested_vmx_true_entry_ctls_low,
8366 nested_vmx_entry_ctls_high))
7c177938
NHE
8367 {
8368 nested_vmx_failValid(vcpu, VMXERR_ENTRY_INVALID_CONTROL_FIELD);
8369 return 1;
8370 }
8371
8372 if (((vmcs12->host_cr0 & VMXON_CR0_ALWAYSON) != VMXON_CR0_ALWAYSON) ||
8373 ((vmcs12->host_cr4 & VMXON_CR4_ALWAYSON) != VMXON_CR4_ALWAYSON)) {
8374 nested_vmx_failValid(vcpu,
8375 VMXERR_ENTRY_INVALID_HOST_STATE_FIELD);
8376 return 1;
8377 }
8378
92fbc7b1 8379 if (!nested_cr0_valid(vmcs12, vmcs12->guest_cr0) ||
7c177938
NHE
8380 ((vmcs12->guest_cr4 & VMXON_CR4_ALWAYSON) != VMXON_CR4_ALWAYSON)) {
8381 nested_vmx_entry_failure(vcpu, vmcs12,
8382 EXIT_REASON_INVALID_STATE, ENTRY_FAIL_DEFAULT);
8383 return 1;
8384 }
8385 if (vmcs12->vmcs_link_pointer != -1ull) {
8386 nested_vmx_entry_failure(vcpu, vmcs12,
8387 EXIT_REASON_INVALID_STATE, ENTRY_FAIL_VMCS_LINK_PTR);
8388 return 1;
8389 }
8390
384bb783 8391 /*
cb0c8cda 8392 * If the load IA32_EFER VM-entry control is 1, the following checks
384bb783
JK
8393 * are performed on the field for the IA32_EFER MSR:
8394 * - Bits reserved in the IA32_EFER MSR must be 0.
8395 * - Bit 10 (corresponding to IA32_EFER.LMA) must equal the value of
8396 * the IA-32e mode guest VM-exit control. It must also be identical
8397 * to bit 8 (LME) if bit 31 in the CR0 field (corresponding to
8398 * CR0.PG) is 1.
8399 */
8400 if (vmcs12->vm_entry_controls & VM_ENTRY_LOAD_IA32_EFER) {
8401 ia32e = (vmcs12->vm_entry_controls & VM_ENTRY_IA32E_MODE) != 0;
8402 if (!kvm_valid_efer(vcpu, vmcs12->guest_ia32_efer) ||
8403 ia32e != !!(vmcs12->guest_ia32_efer & EFER_LMA) ||
8404 ((vmcs12->guest_cr0 & X86_CR0_PG) &&
8405 ia32e != !!(vmcs12->guest_ia32_efer & EFER_LME))) {
8406 nested_vmx_entry_failure(vcpu, vmcs12,
8407 EXIT_REASON_INVALID_STATE, ENTRY_FAIL_DEFAULT);
8408 return 1;
8409 }
8410 }
8411
8412 /*
8413 * If the load IA32_EFER VM-exit control is 1, bits reserved in the
8414 * IA32_EFER MSR must be 0 in the field for that register. In addition,
8415 * the values of the LMA and LME bits in the field must each be that of
8416 * the host address-space size VM-exit control.
8417 */
8418 if (vmcs12->vm_exit_controls & VM_EXIT_LOAD_IA32_EFER) {
8419 ia32e = (vmcs12->vm_exit_controls &
8420 VM_EXIT_HOST_ADDR_SPACE_SIZE) != 0;
8421 if (!kvm_valid_efer(vcpu, vmcs12->host_ia32_efer) ||
8422 ia32e != !!(vmcs12->host_ia32_efer & EFER_LMA) ||
8423 ia32e != !!(vmcs12->host_ia32_efer & EFER_LME)) {
8424 nested_vmx_entry_failure(vcpu, vmcs12,
8425 EXIT_REASON_INVALID_STATE, ENTRY_FAIL_DEFAULT);
8426 return 1;
8427 }
8428 }
8429
7c177938
NHE
8430 /*
8431 * We're finally done with prerequisite checking, and can start with
8432 * the nested entry.
8433 */
8434
cd232ad0
NHE
8435 vmcs02 = nested_get_current_vmcs02(vmx);
8436 if (!vmcs02)
8437 return -ENOMEM;
8438
8439 enter_guest_mode(vcpu);
8440
8441 vmx->nested.vmcs01_tsc_offset = vmcs_read64(TSC_OFFSET);
8442
2996fca0
JK
8443 if (!(vmcs12->vm_entry_controls & VM_ENTRY_LOAD_DEBUG_CONTROLS))
8444 vmx->nested.vmcs01_debugctl = vmcs_read64(GUEST_IA32_DEBUGCTL);
8445
cd232ad0
NHE
8446 cpu = get_cpu();
8447 vmx->loaded_vmcs = vmcs02;
8448 vmx_vcpu_put(vcpu);
8449 vmx_vcpu_load(vcpu, cpu);
8450 vcpu->cpu = cpu;
8451 put_cpu();
8452
36c3cc42
JK
8453 vmx_segment_cache_clear(vmx);
8454
cd232ad0
NHE
8455 vmcs12->launch_state = 1;
8456
8457 prepare_vmcs02(vcpu, vmcs12);
8458
6dfacadd
JK
8459 if (vmcs12->guest_activity_state == GUEST_ACTIVITY_HLT)
8460 return kvm_emulate_halt(vcpu);
8461
7af40ad3
JK
8462 vmx->nested.nested_run_pending = 1;
8463
cd232ad0
NHE
8464 /*
8465 * Note no nested_vmx_succeed or nested_vmx_fail here. At this point
8466 * we are no longer running L1, and VMLAUNCH/VMRESUME has not yet
8467 * returned as far as L1 is concerned. It will only return (and set
8468 * the success flag) when L2 exits (see nested_vmx_vmexit()).
8469 */
8470 return 1;
8471}
8472
4704d0be
NHE
8473/*
8474 * On a nested exit from L2 to L1, vmcs12.guest_cr0 might not be up-to-date
8475 * because L2 may have changed some cr0 bits directly (CRO_GUEST_HOST_MASK).
8476 * This function returns the new value we should put in vmcs12.guest_cr0.
8477 * It's not enough to just return the vmcs02 GUEST_CR0. Rather,
8478 * 1. Bits that neither L0 nor L1 trapped, were set directly by L2 and are now
8479 * available in vmcs02 GUEST_CR0. (Note: It's enough to check that L0
8480 * didn't trap the bit, because if L1 did, so would L0).
8481 * 2. Bits that L1 asked to trap (and therefore L0 also did) could not have
8482 * been modified by L2, and L1 knows it. So just leave the old value of
8483 * the bit from vmcs12.guest_cr0. Note that the bit from vmcs02 GUEST_CR0
8484 * isn't relevant, because if L0 traps this bit it can set it to anything.
8485 * 3. Bits that L1 didn't trap, but L0 did. L1 believes the guest could have
8486 * changed these bits, and therefore they need to be updated, but L0
8487 * didn't necessarily allow them to be changed in GUEST_CR0 - and rather
8488 * put them in vmcs02 CR0_READ_SHADOW. So take these bits from there.
8489 */
8490static inline unsigned long
8491vmcs12_guest_cr0(struct kvm_vcpu *vcpu, struct vmcs12 *vmcs12)
8492{
8493 return
8494 /*1*/ (vmcs_readl(GUEST_CR0) & vcpu->arch.cr0_guest_owned_bits) |
8495 /*2*/ (vmcs12->guest_cr0 & vmcs12->cr0_guest_host_mask) |
8496 /*3*/ (vmcs_readl(CR0_READ_SHADOW) & ~(vmcs12->cr0_guest_host_mask |
8497 vcpu->arch.cr0_guest_owned_bits));
8498}
8499
8500static inline unsigned long
8501vmcs12_guest_cr4(struct kvm_vcpu *vcpu, struct vmcs12 *vmcs12)
8502{
8503 return
8504 /*1*/ (vmcs_readl(GUEST_CR4) & vcpu->arch.cr4_guest_owned_bits) |
8505 /*2*/ (vmcs12->guest_cr4 & vmcs12->cr4_guest_host_mask) |
8506 /*3*/ (vmcs_readl(CR4_READ_SHADOW) & ~(vmcs12->cr4_guest_host_mask |
8507 vcpu->arch.cr4_guest_owned_bits));
8508}
8509
5f3d5799
JK
8510static void vmcs12_save_pending_event(struct kvm_vcpu *vcpu,
8511 struct vmcs12 *vmcs12)
8512{
8513 u32 idt_vectoring;
8514 unsigned int nr;
8515
851eb667 8516 if (vcpu->arch.exception.pending && vcpu->arch.exception.reinject) {
5f3d5799
JK
8517 nr = vcpu->arch.exception.nr;
8518 idt_vectoring = nr | VECTORING_INFO_VALID_MASK;
8519
8520 if (kvm_exception_is_soft(nr)) {
8521 vmcs12->vm_exit_instruction_len =
8522 vcpu->arch.event_exit_inst_len;
8523 idt_vectoring |= INTR_TYPE_SOFT_EXCEPTION;
8524 } else
8525 idt_vectoring |= INTR_TYPE_HARD_EXCEPTION;
8526
8527 if (vcpu->arch.exception.has_error_code) {
8528 idt_vectoring |= VECTORING_INFO_DELIVER_CODE_MASK;
8529 vmcs12->idt_vectoring_error_code =
8530 vcpu->arch.exception.error_code;
8531 }
8532
8533 vmcs12->idt_vectoring_info_field = idt_vectoring;
cd2633c5 8534 } else if (vcpu->arch.nmi_injected) {
5f3d5799
JK
8535 vmcs12->idt_vectoring_info_field =
8536 INTR_TYPE_NMI_INTR | INTR_INFO_VALID_MASK | NMI_VECTOR;
8537 } else if (vcpu->arch.interrupt.pending) {
8538 nr = vcpu->arch.interrupt.nr;
8539 idt_vectoring = nr | VECTORING_INFO_VALID_MASK;
8540
8541 if (vcpu->arch.interrupt.soft) {
8542 idt_vectoring |= INTR_TYPE_SOFT_INTR;
8543 vmcs12->vm_entry_instruction_len =
8544 vcpu->arch.event_exit_inst_len;
8545 } else
8546 idt_vectoring |= INTR_TYPE_EXT_INTR;
8547
8548 vmcs12->idt_vectoring_info_field = idt_vectoring;
8549 }
8550}
8551
b6b8a145
JK
8552static int vmx_check_nested_events(struct kvm_vcpu *vcpu, bool external_intr)
8553{
8554 struct vcpu_vmx *vmx = to_vmx(vcpu);
8555
f4124500
JK
8556 if (nested_cpu_has_preemption_timer(get_vmcs12(vcpu)) &&
8557 vmx->nested.preemption_timer_expired) {
8558 if (vmx->nested.nested_run_pending)
8559 return -EBUSY;
8560 nested_vmx_vmexit(vcpu, EXIT_REASON_PREEMPTION_TIMER, 0, 0);
8561 return 0;
8562 }
8563
b6b8a145 8564 if (vcpu->arch.nmi_pending && nested_exit_on_nmi(vcpu)) {
220c5672
JK
8565 if (vmx->nested.nested_run_pending ||
8566 vcpu->arch.interrupt.pending)
b6b8a145
JK
8567 return -EBUSY;
8568 nested_vmx_vmexit(vcpu, EXIT_REASON_EXCEPTION_NMI,
8569 NMI_VECTOR | INTR_TYPE_NMI_INTR |
8570 INTR_INFO_VALID_MASK, 0);
8571 /*
8572 * The NMI-triggered VM exit counts as injection:
8573 * clear this one and block further NMIs.
8574 */
8575 vcpu->arch.nmi_pending = 0;
8576 vmx_set_nmi_mask(vcpu, true);
8577 return 0;
8578 }
8579
8580 if ((kvm_cpu_has_interrupt(vcpu) || external_intr) &&
8581 nested_exit_on_intr(vcpu)) {
8582 if (vmx->nested.nested_run_pending)
8583 return -EBUSY;
8584 nested_vmx_vmexit(vcpu, EXIT_REASON_EXTERNAL_INTERRUPT, 0, 0);
8585 }
8586
8587 return 0;
8588}
8589
f4124500
JK
8590static u32 vmx_get_preemption_timer_value(struct kvm_vcpu *vcpu)
8591{
8592 ktime_t remaining =
8593 hrtimer_get_remaining(&to_vmx(vcpu)->nested.preemption_timer);
8594 u64 value;
8595
8596 if (ktime_to_ns(remaining) <= 0)
8597 return 0;
8598
8599 value = ktime_to_ns(remaining) * vcpu->arch.virtual_tsc_khz;
8600 do_div(value, 1000000);
8601 return value >> VMX_MISC_EMULATED_PREEMPTION_TIMER_RATE;
8602}
8603
4704d0be
NHE
8604/*
8605 * prepare_vmcs12 is part of what we need to do when the nested L2 guest exits
8606 * and we want to prepare to run its L1 parent. L1 keeps a vmcs for L2 (vmcs12),
8607 * and this function updates it to reflect the changes to the guest state while
8608 * L2 was running (and perhaps made some exits which were handled directly by L0
8609 * without going back to L1), and to reflect the exit reason.
8610 * Note that we do not have to copy here all VMCS fields, just those that
8611 * could have changed by the L2 guest or the exit - i.e., the guest-state and
8612 * exit-information fields only. Other fields are modified by L1 with VMWRITE,
8613 * which already writes to vmcs12 directly.
8614 */
533558bc
JK
8615static void prepare_vmcs12(struct kvm_vcpu *vcpu, struct vmcs12 *vmcs12,
8616 u32 exit_reason, u32 exit_intr_info,
8617 unsigned long exit_qualification)
4704d0be
NHE
8618{
8619 /* update guest state fields: */
8620 vmcs12->guest_cr0 = vmcs12_guest_cr0(vcpu, vmcs12);
8621 vmcs12->guest_cr4 = vmcs12_guest_cr4(vcpu, vmcs12);
8622
4704d0be
NHE
8623 vmcs12->guest_rsp = kvm_register_read(vcpu, VCPU_REGS_RSP);
8624 vmcs12->guest_rip = kvm_register_read(vcpu, VCPU_REGS_RIP);
8625 vmcs12->guest_rflags = vmcs_readl(GUEST_RFLAGS);
8626
8627 vmcs12->guest_es_selector = vmcs_read16(GUEST_ES_SELECTOR);
8628 vmcs12->guest_cs_selector = vmcs_read16(GUEST_CS_SELECTOR);
8629 vmcs12->guest_ss_selector = vmcs_read16(GUEST_SS_SELECTOR);
8630 vmcs12->guest_ds_selector = vmcs_read16(GUEST_DS_SELECTOR);
8631 vmcs12->guest_fs_selector = vmcs_read16(GUEST_FS_SELECTOR);
8632 vmcs12->guest_gs_selector = vmcs_read16(GUEST_GS_SELECTOR);
8633 vmcs12->guest_ldtr_selector = vmcs_read16(GUEST_LDTR_SELECTOR);
8634 vmcs12->guest_tr_selector = vmcs_read16(GUEST_TR_SELECTOR);
8635 vmcs12->guest_es_limit = vmcs_read32(GUEST_ES_LIMIT);
8636 vmcs12->guest_cs_limit = vmcs_read32(GUEST_CS_LIMIT);
8637 vmcs12->guest_ss_limit = vmcs_read32(GUEST_SS_LIMIT);
8638 vmcs12->guest_ds_limit = vmcs_read32(GUEST_DS_LIMIT);
8639 vmcs12->guest_fs_limit = vmcs_read32(GUEST_FS_LIMIT);
8640 vmcs12->guest_gs_limit = vmcs_read32(GUEST_GS_LIMIT);
8641 vmcs12->guest_ldtr_limit = vmcs_read32(GUEST_LDTR_LIMIT);
8642 vmcs12->guest_tr_limit = vmcs_read32(GUEST_TR_LIMIT);
8643 vmcs12->guest_gdtr_limit = vmcs_read32(GUEST_GDTR_LIMIT);
8644 vmcs12->guest_idtr_limit = vmcs_read32(GUEST_IDTR_LIMIT);
8645 vmcs12->guest_es_ar_bytes = vmcs_read32(GUEST_ES_AR_BYTES);
8646 vmcs12->guest_cs_ar_bytes = vmcs_read32(GUEST_CS_AR_BYTES);
8647 vmcs12->guest_ss_ar_bytes = vmcs_read32(GUEST_SS_AR_BYTES);
8648 vmcs12->guest_ds_ar_bytes = vmcs_read32(GUEST_DS_AR_BYTES);
8649 vmcs12->guest_fs_ar_bytes = vmcs_read32(GUEST_FS_AR_BYTES);
8650 vmcs12->guest_gs_ar_bytes = vmcs_read32(GUEST_GS_AR_BYTES);
8651 vmcs12->guest_ldtr_ar_bytes = vmcs_read32(GUEST_LDTR_AR_BYTES);
8652 vmcs12->guest_tr_ar_bytes = vmcs_read32(GUEST_TR_AR_BYTES);
8653 vmcs12->guest_es_base = vmcs_readl(GUEST_ES_BASE);
8654 vmcs12->guest_cs_base = vmcs_readl(GUEST_CS_BASE);
8655 vmcs12->guest_ss_base = vmcs_readl(GUEST_SS_BASE);
8656 vmcs12->guest_ds_base = vmcs_readl(GUEST_DS_BASE);
8657 vmcs12->guest_fs_base = vmcs_readl(GUEST_FS_BASE);
8658 vmcs12->guest_gs_base = vmcs_readl(GUEST_GS_BASE);
8659 vmcs12->guest_ldtr_base = vmcs_readl(GUEST_LDTR_BASE);
8660 vmcs12->guest_tr_base = vmcs_readl(GUEST_TR_BASE);
8661 vmcs12->guest_gdtr_base = vmcs_readl(GUEST_GDTR_BASE);
8662 vmcs12->guest_idtr_base = vmcs_readl(GUEST_IDTR_BASE);
8663
4704d0be
NHE
8664 vmcs12->guest_interruptibility_info =
8665 vmcs_read32(GUEST_INTERRUPTIBILITY_INFO);
8666 vmcs12->guest_pending_dbg_exceptions =
8667 vmcs_readl(GUEST_PENDING_DBG_EXCEPTIONS);
3edf1e69
JK
8668 if (vcpu->arch.mp_state == KVM_MP_STATE_HALTED)
8669 vmcs12->guest_activity_state = GUEST_ACTIVITY_HLT;
8670 else
8671 vmcs12->guest_activity_state = GUEST_ACTIVITY_ACTIVE;
4704d0be 8672
f4124500
JK
8673 if (nested_cpu_has_preemption_timer(vmcs12)) {
8674 if (vmcs12->vm_exit_controls &
8675 VM_EXIT_SAVE_VMX_PREEMPTION_TIMER)
8676 vmcs12->vmx_preemption_timer_value =
8677 vmx_get_preemption_timer_value(vcpu);
8678 hrtimer_cancel(&to_vmx(vcpu)->nested.preemption_timer);
8679 }
7854cbca 8680
3633cfc3
NHE
8681 /*
8682 * In some cases (usually, nested EPT), L2 is allowed to change its
8683 * own CR3 without exiting. If it has changed it, we must keep it.
8684 * Of course, if L0 is using shadow page tables, GUEST_CR3 was defined
8685 * by L0, not L1 or L2, so we mustn't unconditionally copy it to vmcs12.
8686 *
8687 * Additionally, restore L2's PDPTR to vmcs12.
8688 */
8689 if (enable_ept) {
8690 vmcs12->guest_cr3 = vmcs_read64(GUEST_CR3);
8691 vmcs12->guest_pdptr0 = vmcs_read64(GUEST_PDPTR0);
8692 vmcs12->guest_pdptr1 = vmcs_read64(GUEST_PDPTR1);
8693 vmcs12->guest_pdptr2 = vmcs_read64(GUEST_PDPTR2);
8694 vmcs12->guest_pdptr3 = vmcs_read64(GUEST_PDPTR3);
8695 }
8696
c18911a2
JK
8697 vmcs12->vm_entry_controls =
8698 (vmcs12->vm_entry_controls & ~VM_ENTRY_IA32E_MODE) |
2961e876 8699 (vm_entry_controls_get(to_vmx(vcpu)) & VM_ENTRY_IA32E_MODE);
c18911a2 8700
2996fca0
JK
8701 if (vmcs12->vm_exit_controls & VM_EXIT_SAVE_DEBUG_CONTROLS) {
8702 kvm_get_dr(vcpu, 7, (unsigned long *)&vmcs12->guest_dr7);
8703 vmcs12->guest_ia32_debugctl = vmcs_read64(GUEST_IA32_DEBUGCTL);
8704 }
8705
4704d0be
NHE
8706 /* TODO: These cannot have changed unless we have MSR bitmaps and
8707 * the relevant bit asks not to trap the change */
b8c07d55 8708 if (vmcs12->vm_exit_controls & VM_EXIT_SAVE_IA32_PAT)
4704d0be 8709 vmcs12->guest_ia32_pat = vmcs_read64(GUEST_IA32_PAT);
10ba54a5
JK
8710 if (vmcs12->vm_exit_controls & VM_EXIT_SAVE_IA32_EFER)
8711 vmcs12->guest_ia32_efer = vcpu->arch.efer;
4704d0be
NHE
8712 vmcs12->guest_sysenter_cs = vmcs_read32(GUEST_SYSENTER_CS);
8713 vmcs12->guest_sysenter_esp = vmcs_readl(GUEST_SYSENTER_ESP);
8714 vmcs12->guest_sysenter_eip = vmcs_readl(GUEST_SYSENTER_EIP);
36be0b9d
PB
8715 if (vmx_mpx_supported())
8716 vmcs12->guest_bndcfgs = vmcs_read64(GUEST_BNDCFGS);
4704d0be
NHE
8717
8718 /* update exit information fields: */
8719
533558bc
JK
8720 vmcs12->vm_exit_reason = exit_reason;
8721 vmcs12->exit_qualification = exit_qualification;
4704d0be 8722
533558bc 8723 vmcs12->vm_exit_intr_info = exit_intr_info;
c0d1c770
JK
8724 if ((vmcs12->vm_exit_intr_info &
8725 (INTR_INFO_VALID_MASK | INTR_INFO_DELIVER_CODE_MASK)) ==
8726 (INTR_INFO_VALID_MASK | INTR_INFO_DELIVER_CODE_MASK))
8727 vmcs12->vm_exit_intr_error_code =
8728 vmcs_read32(VM_EXIT_INTR_ERROR_CODE);
5f3d5799 8729 vmcs12->idt_vectoring_info_field = 0;
4704d0be
NHE
8730 vmcs12->vm_exit_instruction_len = vmcs_read32(VM_EXIT_INSTRUCTION_LEN);
8731 vmcs12->vmx_instruction_info = vmcs_read32(VMX_INSTRUCTION_INFO);
8732
5f3d5799
JK
8733 if (!(vmcs12->vm_exit_reason & VMX_EXIT_REASONS_FAILED_VMENTRY)) {
8734 /* vm_entry_intr_info_field is cleared on exit. Emulate this
8735 * instead of reading the real value. */
4704d0be 8736 vmcs12->vm_entry_intr_info_field &= ~INTR_INFO_VALID_MASK;
5f3d5799
JK
8737
8738 /*
8739 * Transfer the event that L0 or L1 may wanted to inject into
8740 * L2 to IDT_VECTORING_INFO_FIELD.
8741 */
8742 vmcs12_save_pending_event(vcpu, vmcs12);
8743 }
8744
8745 /*
8746 * Drop what we picked up for L2 via vmx_complete_interrupts. It is
8747 * preserved above and would only end up incorrectly in L1.
8748 */
8749 vcpu->arch.nmi_injected = false;
8750 kvm_clear_exception_queue(vcpu);
8751 kvm_clear_interrupt_queue(vcpu);
4704d0be
NHE
8752}
8753
8754/*
8755 * A part of what we need to when the nested L2 guest exits and we want to
8756 * run its L1 parent, is to reset L1's guest state to the host state specified
8757 * in vmcs12.
8758 * This function is to be called not only on normal nested exit, but also on
8759 * a nested entry failure, as explained in Intel's spec, 3B.23.7 ("VM-Entry
8760 * Failures During or After Loading Guest State").
8761 * This function should be called when the active VMCS is L1's (vmcs01).
8762 */
733568f9
JK
8763static void load_vmcs12_host_state(struct kvm_vcpu *vcpu,
8764 struct vmcs12 *vmcs12)
4704d0be 8765{
21feb4eb
ACL
8766 struct kvm_segment seg;
8767
4704d0be
NHE
8768 if (vmcs12->vm_exit_controls & VM_EXIT_LOAD_IA32_EFER)
8769 vcpu->arch.efer = vmcs12->host_ia32_efer;
d1fa0352 8770 else if (vmcs12->vm_exit_controls & VM_EXIT_HOST_ADDR_SPACE_SIZE)
4704d0be
NHE
8771 vcpu->arch.efer |= (EFER_LMA | EFER_LME);
8772 else
8773 vcpu->arch.efer &= ~(EFER_LMA | EFER_LME);
8774 vmx_set_efer(vcpu, vcpu->arch.efer);
8775
8776 kvm_register_write(vcpu, VCPU_REGS_RSP, vmcs12->host_rsp);
8777 kvm_register_write(vcpu, VCPU_REGS_RIP, vmcs12->host_rip);
1adfa76a 8778 vmx_set_rflags(vcpu, X86_EFLAGS_FIXED);
4704d0be
NHE
8779 /*
8780 * Note that calling vmx_set_cr0 is important, even if cr0 hasn't
8781 * actually changed, because it depends on the current state of
8782 * fpu_active (which may have changed).
8783 * Note that vmx_set_cr0 refers to efer set above.
8784 */
9e3e4dbf 8785 vmx_set_cr0(vcpu, vmcs12->host_cr0);
4704d0be
NHE
8786 /*
8787 * If we did fpu_activate()/fpu_deactivate() during L2's run, we need
8788 * to apply the same changes to L1's vmcs. We just set cr0 correctly,
8789 * but we also need to update cr0_guest_host_mask and exception_bitmap.
8790 */
8791 update_exception_bitmap(vcpu);
8792 vcpu->arch.cr0_guest_owned_bits = (vcpu->fpu_active ? X86_CR0_TS : 0);
8793 vmcs_writel(CR0_GUEST_HOST_MASK, ~vcpu->arch.cr0_guest_owned_bits);
8794
8795 /*
8796 * Note that CR4_GUEST_HOST_MASK is already set in the original vmcs01
8797 * (KVM doesn't change it)- no reason to call set_cr4_guest_host_mask();
8798 */
8799 vcpu->arch.cr4_guest_owned_bits = ~vmcs_readl(CR4_GUEST_HOST_MASK);
8800 kvm_set_cr4(vcpu, vmcs12->host_cr4);
8801
29bf08f1 8802 nested_ept_uninit_mmu_context(vcpu);
155a97a3 8803
4704d0be
NHE
8804 kvm_set_cr3(vcpu, vmcs12->host_cr3);
8805 kvm_mmu_reset_context(vcpu);
8806
feaf0c7d
GN
8807 if (!enable_ept)
8808 vcpu->arch.walk_mmu->inject_page_fault = kvm_inject_page_fault;
8809
4704d0be
NHE
8810 if (enable_vpid) {
8811 /*
8812 * Trivially support vpid by letting L2s share their parent
8813 * L1's vpid. TODO: move to a more elaborate solution, giving
8814 * each L2 its own vpid and exposing the vpid feature to L1.
8815 */
8816 vmx_flush_tlb(vcpu);
8817 }
8818
8819
8820 vmcs_write32(GUEST_SYSENTER_CS, vmcs12->host_ia32_sysenter_cs);
8821 vmcs_writel(GUEST_SYSENTER_ESP, vmcs12->host_ia32_sysenter_esp);
8822 vmcs_writel(GUEST_SYSENTER_EIP, vmcs12->host_ia32_sysenter_eip);
8823 vmcs_writel(GUEST_IDTR_BASE, vmcs12->host_idtr_base);
8824 vmcs_writel(GUEST_GDTR_BASE, vmcs12->host_gdtr_base);
4704d0be 8825
36be0b9d
PB
8826 /* If not VM_EXIT_CLEAR_BNDCFGS, the L2 value propagates to L1. */
8827 if (vmcs12->vm_exit_controls & VM_EXIT_CLEAR_BNDCFGS)
8828 vmcs_write64(GUEST_BNDCFGS, 0);
8829
44811c02 8830 if (vmcs12->vm_exit_controls & VM_EXIT_LOAD_IA32_PAT) {
4704d0be 8831 vmcs_write64(GUEST_IA32_PAT, vmcs12->host_ia32_pat);
44811c02
JK
8832 vcpu->arch.pat = vmcs12->host_ia32_pat;
8833 }
4704d0be
NHE
8834 if (vmcs12->vm_exit_controls & VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL)
8835 vmcs_write64(GUEST_IA32_PERF_GLOBAL_CTRL,
8836 vmcs12->host_ia32_perf_global_ctrl);
503cd0c5 8837
21feb4eb
ACL
8838 /* Set L1 segment info according to Intel SDM
8839 27.5.2 Loading Host Segment and Descriptor-Table Registers */
8840 seg = (struct kvm_segment) {
8841 .base = 0,
8842 .limit = 0xFFFFFFFF,
8843 .selector = vmcs12->host_cs_selector,
8844 .type = 11,
8845 .present = 1,
8846 .s = 1,
8847 .g = 1
8848 };
8849 if (vmcs12->vm_exit_controls & VM_EXIT_HOST_ADDR_SPACE_SIZE)
8850 seg.l = 1;
8851 else
8852 seg.db = 1;
8853 vmx_set_segment(vcpu, &seg, VCPU_SREG_CS);
8854 seg = (struct kvm_segment) {
8855 .base = 0,
8856 .limit = 0xFFFFFFFF,
8857 .type = 3,
8858 .present = 1,
8859 .s = 1,
8860 .db = 1,
8861 .g = 1
8862 };
8863 seg.selector = vmcs12->host_ds_selector;
8864 vmx_set_segment(vcpu, &seg, VCPU_SREG_DS);
8865 seg.selector = vmcs12->host_es_selector;
8866 vmx_set_segment(vcpu, &seg, VCPU_SREG_ES);
8867 seg.selector = vmcs12->host_ss_selector;
8868 vmx_set_segment(vcpu, &seg, VCPU_SREG_SS);
8869 seg.selector = vmcs12->host_fs_selector;
8870 seg.base = vmcs12->host_fs_base;
8871 vmx_set_segment(vcpu, &seg, VCPU_SREG_FS);
8872 seg.selector = vmcs12->host_gs_selector;
8873 seg.base = vmcs12->host_gs_base;
8874 vmx_set_segment(vcpu, &seg, VCPU_SREG_GS);
8875 seg = (struct kvm_segment) {
205befd9 8876 .base = vmcs12->host_tr_base,
21feb4eb
ACL
8877 .limit = 0x67,
8878 .selector = vmcs12->host_tr_selector,
8879 .type = 11,
8880 .present = 1
8881 };
8882 vmx_set_segment(vcpu, &seg, VCPU_SREG_TR);
8883
503cd0c5
JK
8884 kvm_set_dr(vcpu, 7, 0x400);
8885 vmcs_write64(GUEST_IA32_DEBUGCTL, 0);
4704d0be
NHE
8886}
8887
8888/*
8889 * Emulate an exit from nested guest (L2) to L1, i.e., prepare to run L1
8890 * and modify vmcs12 to make it see what it would expect to see there if
8891 * L2 was its real guest. Must only be called when in L2 (is_guest_mode())
8892 */
533558bc
JK
8893static void nested_vmx_vmexit(struct kvm_vcpu *vcpu, u32 exit_reason,
8894 u32 exit_intr_info,
8895 unsigned long exit_qualification)
4704d0be
NHE
8896{
8897 struct vcpu_vmx *vmx = to_vmx(vcpu);
4704d0be
NHE
8898 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
8899
5f3d5799
JK
8900 /* trying to cancel vmlaunch/vmresume is a bug */
8901 WARN_ON_ONCE(vmx->nested.nested_run_pending);
8902
4704d0be 8903 leave_guest_mode(vcpu);
533558bc
JK
8904 prepare_vmcs12(vcpu, vmcs12, exit_reason, exit_intr_info,
8905 exit_qualification);
4704d0be 8906
f3380ca5
WL
8907 vmx_load_vmcs01(vcpu);
8908
77b0f5d6
BD
8909 if ((exit_reason == EXIT_REASON_EXTERNAL_INTERRUPT)
8910 && nested_exit_intr_ack_set(vcpu)) {
8911 int irq = kvm_cpu_get_interrupt(vcpu);
8912 WARN_ON(irq < 0);
8913 vmcs12->vm_exit_intr_info = irq |
8914 INTR_INFO_VALID_MASK | INTR_TYPE_EXT_INTR;
8915 }
8916
542060ea
JK
8917 trace_kvm_nested_vmexit_inject(vmcs12->vm_exit_reason,
8918 vmcs12->exit_qualification,
8919 vmcs12->idt_vectoring_info_field,
8920 vmcs12->vm_exit_intr_info,
8921 vmcs12->vm_exit_intr_error_code,
8922 KVM_ISA_VMX);
4704d0be 8923
2961e876
GN
8924 vm_entry_controls_init(vmx, vmcs_read32(VM_ENTRY_CONTROLS));
8925 vm_exit_controls_init(vmx, vmcs_read32(VM_EXIT_CONTROLS));
36c3cc42
JK
8926 vmx_segment_cache_clear(vmx);
8927
4704d0be
NHE
8928 /* if no vmcs02 cache requested, remove the one we used */
8929 if (VMCS02_POOL_SIZE == 0)
8930 nested_free_vmcs02(vmx, vmx->nested.current_vmptr);
8931
8932 load_vmcs12_host_state(vcpu, vmcs12);
8933
27fc51b2 8934 /* Update TSC_OFFSET if TSC was changed while L2 ran */
4704d0be
NHE
8935 vmcs_write64(TSC_OFFSET, vmx->nested.vmcs01_tsc_offset);
8936
8937 /* This is needed for same reason as it was needed in prepare_vmcs02 */
8938 vmx->host_rsp = 0;
8939
8940 /* Unpin physical memory we referred to in vmcs02 */
8941 if (vmx->nested.apic_access_page) {
8942 nested_release_page(vmx->nested.apic_access_page);
48d89b92 8943 vmx->nested.apic_access_page = NULL;
4704d0be 8944 }
a7c0b07d
WL
8945 if (vmx->nested.virtual_apic_page) {
8946 nested_release_page(vmx->nested.virtual_apic_page);
48d89b92 8947 vmx->nested.virtual_apic_page = NULL;
a7c0b07d 8948 }
4704d0be
NHE
8949
8950 /*
8951 * Exiting from L2 to L1, we're now back to L1 which thinks it just
8952 * finished a VMLAUNCH or VMRESUME instruction, so we need to set the
8953 * success or failure flag accordingly.
8954 */
8955 if (unlikely(vmx->fail)) {
8956 vmx->fail = 0;
8957 nested_vmx_failValid(vcpu, vmcs_read32(VM_INSTRUCTION_ERROR));
8958 } else
8959 nested_vmx_succeed(vcpu);
012f83cb
AG
8960 if (enable_shadow_vmcs)
8961 vmx->nested.sync_shadow_vmcs = true;
b6b8a145
JK
8962
8963 /* in case we halted in L2 */
8964 vcpu->arch.mp_state = KVM_MP_STATE_RUNNABLE;
4704d0be
NHE
8965}
8966
42124925
JK
8967/*
8968 * Forcibly leave nested mode in order to be able to reset the VCPU later on.
8969 */
8970static void vmx_leave_nested(struct kvm_vcpu *vcpu)
8971{
8972 if (is_guest_mode(vcpu))
533558bc 8973 nested_vmx_vmexit(vcpu, -1, 0, 0);
42124925
JK
8974 free_nested(to_vmx(vcpu));
8975}
8976
7c177938
NHE
8977/*
8978 * L1's failure to enter L2 is a subset of a normal exit, as explained in
8979 * 23.7 "VM-entry failures during or after loading guest state" (this also
8980 * lists the acceptable exit-reason and exit-qualification parameters).
8981 * It should only be called before L2 actually succeeded to run, and when
8982 * vmcs01 is current (it doesn't leave_guest_mode() or switch vmcss).
8983 */
8984static void nested_vmx_entry_failure(struct kvm_vcpu *vcpu,
8985 struct vmcs12 *vmcs12,
8986 u32 reason, unsigned long qualification)
8987{
8988 load_vmcs12_host_state(vcpu, vmcs12);
8989 vmcs12->vm_exit_reason = reason | VMX_EXIT_REASONS_FAILED_VMENTRY;
8990 vmcs12->exit_qualification = qualification;
8991 nested_vmx_succeed(vcpu);
012f83cb
AG
8992 if (enable_shadow_vmcs)
8993 to_vmx(vcpu)->nested.sync_shadow_vmcs = true;
7c177938
NHE
8994}
8995
8a76d7f2
JR
8996static int vmx_check_intercept(struct kvm_vcpu *vcpu,
8997 struct x86_instruction_info *info,
8998 enum x86_intercept_stage stage)
8999{
9000 return X86EMUL_CONTINUE;
9001}
9002
48d89b92 9003static void vmx_sched_in(struct kvm_vcpu *vcpu, int cpu)
ae97a3b8 9004{
b4a2d31d
RK
9005 if (ple_gap)
9006 shrink_ple_window(vcpu);
ae97a3b8
RK
9007}
9008
cbdd1bea 9009static struct kvm_x86_ops vmx_x86_ops = {
6aa8b732
AK
9010 .cpu_has_kvm_support = cpu_has_kvm_support,
9011 .disabled_by_bios = vmx_disabled_by_bios,
9012 .hardware_setup = hardware_setup,
9013 .hardware_unsetup = hardware_unsetup,
002c7f7c 9014 .check_processor_compatibility = vmx_check_processor_compat,
6aa8b732
AK
9015 .hardware_enable = hardware_enable,
9016 .hardware_disable = hardware_disable,
04547156 9017 .cpu_has_accelerated_tpr = report_flexpriority,
6aa8b732
AK
9018
9019 .vcpu_create = vmx_create_vcpu,
9020 .vcpu_free = vmx_free_vcpu,
04d2cc77 9021 .vcpu_reset = vmx_vcpu_reset,
6aa8b732 9022
04d2cc77 9023 .prepare_guest_switch = vmx_save_host_state,
6aa8b732
AK
9024 .vcpu_load = vmx_vcpu_load,
9025 .vcpu_put = vmx_vcpu_put,
9026
c8639010 9027 .update_db_bp_intercept = update_exception_bitmap,
6aa8b732
AK
9028 .get_msr = vmx_get_msr,
9029 .set_msr = vmx_set_msr,
9030 .get_segment_base = vmx_get_segment_base,
9031 .get_segment = vmx_get_segment,
9032 .set_segment = vmx_set_segment,
2e4d2653 9033 .get_cpl = vmx_get_cpl,
6aa8b732 9034 .get_cs_db_l_bits = vmx_get_cs_db_l_bits,
e8467fda 9035 .decache_cr0_guest_bits = vmx_decache_cr0_guest_bits,
aff48baa 9036 .decache_cr3 = vmx_decache_cr3,
25c4c276 9037 .decache_cr4_guest_bits = vmx_decache_cr4_guest_bits,
6aa8b732 9038 .set_cr0 = vmx_set_cr0,
6aa8b732
AK
9039 .set_cr3 = vmx_set_cr3,
9040 .set_cr4 = vmx_set_cr4,
6aa8b732 9041 .set_efer = vmx_set_efer,
6aa8b732
AK
9042 .get_idt = vmx_get_idt,
9043 .set_idt = vmx_set_idt,
9044 .get_gdt = vmx_get_gdt,
9045 .set_gdt = vmx_set_gdt,
73aaf249
JK
9046 .get_dr6 = vmx_get_dr6,
9047 .set_dr6 = vmx_set_dr6,
020df079 9048 .set_dr7 = vmx_set_dr7,
81908bf4 9049 .sync_dirty_debug_regs = vmx_sync_dirty_debug_regs,
5fdbf976 9050 .cache_reg = vmx_cache_reg,
6aa8b732
AK
9051 .get_rflags = vmx_get_rflags,
9052 .set_rflags = vmx_set_rflags,
02daab21 9053 .fpu_deactivate = vmx_fpu_deactivate,
6aa8b732
AK
9054
9055 .tlb_flush = vmx_flush_tlb,
6aa8b732 9056
6aa8b732 9057 .run = vmx_vcpu_run,
6062d012 9058 .handle_exit = vmx_handle_exit,
6aa8b732 9059 .skip_emulated_instruction = skip_emulated_instruction,
2809f5d2
GC
9060 .set_interrupt_shadow = vmx_set_interrupt_shadow,
9061 .get_interrupt_shadow = vmx_get_interrupt_shadow,
102d8325 9062 .patch_hypercall = vmx_patch_hypercall,
2a8067f1 9063 .set_irq = vmx_inject_irq,
95ba8273 9064 .set_nmi = vmx_inject_nmi,
298101da 9065 .queue_exception = vmx_queue_exception,
b463a6f7 9066 .cancel_injection = vmx_cancel_injection,
78646121 9067 .interrupt_allowed = vmx_interrupt_allowed,
95ba8273 9068 .nmi_allowed = vmx_nmi_allowed,
3cfc3092
JK
9069 .get_nmi_mask = vmx_get_nmi_mask,
9070 .set_nmi_mask = vmx_set_nmi_mask,
95ba8273
GN
9071 .enable_nmi_window = enable_nmi_window,
9072 .enable_irq_window = enable_irq_window,
9073 .update_cr8_intercept = update_cr8_intercept,
8d14695f 9074 .set_virtual_x2apic_mode = vmx_set_virtual_x2apic_mode,
c7c9c56c
YZ
9075 .vm_has_apicv = vmx_vm_has_apicv,
9076 .load_eoi_exitmap = vmx_load_eoi_exitmap,
9077 .hwapic_irr_update = vmx_hwapic_irr_update,
9078 .hwapic_isr_update = vmx_hwapic_isr_update,
a20ed54d
YZ
9079 .sync_pir_to_irr = vmx_sync_pir_to_irr,
9080 .deliver_posted_interrupt = vmx_deliver_posted_interrupt,
95ba8273 9081
cbc94022 9082 .set_tss_addr = vmx_set_tss_addr,
67253af5 9083 .get_tdp_level = get_ept_level,
4b12f0de 9084 .get_mt_mask = vmx_get_mt_mask,
229456fc 9085
586f9607 9086 .get_exit_info = vmx_get_exit_info,
586f9607 9087
17cc3935 9088 .get_lpage_level = vmx_get_lpage_level,
0e851880
SY
9089
9090 .cpuid_update = vmx_cpuid_update,
4e47c7a6
SY
9091
9092 .rdtscp_supported = vmx_rdtscp_supported,
ad756a16 9093 .invpcid_supported = vmx_invpcid_supported,
d4330ef2
JR
9094
9095 .set_supported_cpuid = vmx_set_supported_cpuid,
f5f48ee1
SY
9096
9097 .has_wbinvd_exit = cpu_has_vmx_wbinvd_exit,
99e3e30a 9098
4051b188 9099 .set_tsc_khz = vmx_set_tsc_khz,
ba904635 9100 .read_tsc_offset = vmx_read_tsc_offset,
99e3e30a 9101 .write_tsc_offset = vmx_write_tsc_offset,
e48672fa 9102 .adjust_tsc_offset = vmx_adjust_tsc_offset,
857e4099 9103 .compute_tsc_offset = vmx_compute_tsc_offset,
d5c1785d 9104 .read_l1_tsc = vmx_read_l1_tsc,
1c97f0a0
JR
9105
9106 .set_tdp_cr3 = vmx_set_cr3,
8a76d7f2
JR
9107
9108 .check_intercept = vmx_check_intercept,
a547c6db 9109 .handle_external_intr = vmx_handle_external_intr,
da8999d3 9110 .mpx_supported = vmx_mpx_supported,
b6b8a145
JK
9111
9112 .check_nested_events = vmx_check_nested_events,
ae97a3b8
RK
9113
9114 .sched_in = vmx_sched_in,
6aa8b732
AK
9115};
9116
9117static int __init vmx_init(void)
9118{
8d14695f 9119 int r, i, msr;
26bb0981
AK
9120
9121 rdmsrl_safe(MSR_EFER, &host_efer);
9122
03916db9 9123 for (i = 0; i < ARRAY_SIZE(vmx_msr_index); ++i)
26bb0981 9124 kvm_define_shared_msr(i, vmx_msr_index[i]);
fdef3ad1 9125
3e7c73e9 9126 vmx_io_bitmap_a = (unsigned long *)__get_free_page(GFP_KERNEL);
fdef3ad1
HQ
9127 if (!vmx_io_bitmap_a)
9128 return -ENOMEM;
9129
2106a548
GC
9130 r = -ENOMEM;
9131
3e7c73e9 9132 vmx_io_bitmap_b = (unsigned long *)__get_free_page(GFP_KERNEL);
2106a548 9133 if (!vmx_io_bitmap_b)
fdef3ad1 9134 goto out;
fdef3ad1 9135
5897297b 9136 vmx_msr_bitmap_legacy = (unsigned long *)__get_free_page(GFP_KERNEL);
2106a548 9137 if (!vmx_msr_bitmap_legacy)
25c5f225 9138 goto out1;
2106a548 9139
8d14695f
YZ
9140 vmx_msr_bitmap_legacy_x2apic =
9141 (unsigned long *)__get_free_page(GFP_KERNEL);
9142 if (!vmx_msr_bitmap_legacy_x2apic)
9143 goto out2;
25c5f225 9144
5897297b 9145 vmx_msr_bitmap_longmode = (unsigned long *)__get_free_page(GFP_KERNEL);
2106a548 9146 if (!vmx_msr_bitmap_longmode)
8d14695f 9147 goto out3;
2106a548 9148
8d14695f
YZ
9149 vmx_msr_bitmap_longmode_x2apic =
9150 (unsigned long *)__get_free_page(GFP_KERNEL);
9151 if (!vmx_msr_bitmap_longmode_x2apic)
9152 goto out4;
4607c2d7
AG
9153 vmx_vmread_bitmap = (unsigned long *)__get_free_page(GFP_KERNEL);
9154 if (!vmx_vmread_bitmap)
9155 goto out5;
9156
9157 vmx_vmwrite_bitmap = (unsigned long *)__get_free_page(GFP_KERNEL);
9158 if (!vmx_vmwrite_bitmap)
9159 goto out6;
9160
9161 memset(vmx_vmread_bitmap, 0xff, PAGE_SIZE);
9162 memset(vmx_vmwrite_bitmap, 0xff, PAGE_SIZE);
5897297b 9163
fdef3ad1
HQ
9164 /*
9165 * Allow direct access to the PC debug port (it is often used for I/O
9166 * delays, but the vmexits simply slow things down).
9167 */
3e7c73e9
AK
9168 memset(vmx_io_bitmap_a, 0xff, PAGE_SIZE);
9169 clear_bit(0x80, vmx_io_bitmap_a);
fdef3ad1 9170
3e7c73e9 9171 memset(vmx_io_bitmap_b, 0xff, PAGE_SIZE);
fdef3ad1 9172
5897297b
AK
9173 memset(vmx_msr_bitmap_legacy, 0xff, PAGE_SIZE);
9174 memset(vmx_msr_bitmap_longmode, 0xff, PAGE_SIZE);
25c5f225 9175
2384d2b3
SY
9176 set_bit(0, vmx_vpid_bitmap); /* 0 is reserved for host */
9177
0ee75bea
AK
9178 r = kvm_init(&vmx_x86_ops, sizeof(struct vcpu_vmx),
9179 __alignof__(struct vcpu_vmx), THIS_MODULE);
fdef3ad1 9180 if (r)
4607c2d7 9181 goto out7;
25c5f225 9182
8f536b76
ZY
9183#ifdef CONFIG_KEXEC
9184 rcu_assign_pointer(crash_vmclear_loaded_vmcss,
9185 crash_vmclear_local_loaded_vmcss);
9186#endif
9187
5897297b
AK
9188 vmx_disable_intercept_for_msr(MSR_FS_BASE, false);
9189 vmx_disable_intercept_for_msr(MSR_GS_BASE, false);
9190 vmx_disable_intercept_for_msr(MSR_KERNEL_GS_BASE, true);
9191 vmx_disable_intercept_for_msr(MSR_IA32_SYSENTER_CS, false);
9192 vmx_disable_intercept_for_msr(MSR_IA32_SYSENTER_ESP, false);
9193 vmx_disable_intercept_for_msr(MSR_IA32_SYSENTER_EIP, false);
da8999d3
LJ
9194 vmx_disable_intercept_for_msr(MSR_IA32_BNDCFGS, true);
9195
8d14695f
YZ
9196 memcpy(vmx_msr_bitmap_legacy_x2apic,
9197 vmx_msr_bitmap_legacy, PAGE_SIZE);
9198 memcpy(vmx_msr_bitmap_longmode_x2apic,
9199 vmx_msr_bitmap_longmode, PAGE_SIZE);
9200
01e439be 9201 if (enable_apicv) {
8d14695f
YZ
9202 for (msr = 0x800; msr <= 0x8ff; msr++)
9203 vmx_disable_intercept_msr_read_x2apic(msr);
9204
9205 /* According SDM, in x2apic mode, the whole id reg is used.
9206 * But in KVM, it only use the highest eight bits. Need to
9207 * intercept it */
9208 vmx_enable_intercept_msr_read_x2apic(0x802);
9209 /* TMCCT */
9210 vmx_enable_intercept_msr_read_x2apic(0x839);
9211 /* TPR */
9212 vmx_disable_intercept_msr_write_x2apic(0x808);
c7c9c56c
YZ
9213 /* EOI */
9214 vmx_disable_intercept_msr_write_x2apic(0x80b);
9215 /* SELF-IPI */
9216 vmx_disable_intercept_msr_write_x2apic(0x83f);
8d14695f 9217 }
fdef3ad1 9218
089d034e 9219 if (enable_ept) {
3f6d8c8a
XH
9220 kvm_mmu_set_mask_ptes(0ull,
9221 (enable_ept_ad_bits) ? VMX_EPT_ACCESS_BIT : 0ull,
9222 (enable_ept_ad_bits) ? VMX_EPT_DIRTY_BIT : 0ull,
9223 0ull, VMX_EPT_EXECUTABLE_MASK);
ce88decf 9224 ept_set_mmio_spte_mask();
5fdbcb9d
SY
9225 kvm_enable_tdp();
9226 } else
9227 kvm_disable_tdp();
1439442c 9228
b4a2d31d
RK
9229 update_ple_window_actual_max();
9230
fdef3ad1
HQ
9231 return 0;
9232
4607c2d7
AG
9233out7:
9234 free_page((unsigned long)vmx_vmwrite_bitmap);
9235out6:
9236 free_page((unsigned long)vmx_vmread_bitmap);
458f212e
YZ
9237out5:
9238 free_page((unsigned long)vmx_msr_bitmap_longmode_x2apic);
8d14695f 9239out4:
5897297b 9240 free_page((unsigned long)vmx_msr_bitmap_longmode);
8d14695f
YZ
9241out3:
9242 free_page((unsigned long)vmx_msr_bitmap_legacy_x2apic);
25c5f225 9243out2:
5897297b 9244 free_page((unsigned long)vmx_msr_bitmap_legacy);
fdef3ad1 9245out1:
3e7c73e9 9246 free_page((unsigned long)vmx_io_bitmap_b);
fdef3ad1 9247out:
3e7c73e9 9248 free_page((unsigned long)vmx_io_bitmap_a);
fdef3ad1 9249 return r;
6aa8b732
AK
9250}
9251
9252static void __exit vmx_exit(void)
9253{
8d14695f
YZ
9254 free_page((unsigned long)vmx_msr_bitmap_legacy_x2apic);
9255 free_page((unsigned long)vmx_msr_bitmap_longmode_x2apic);
5897297b
AK
9256 free_page((unsigned long)vmx_msr_bitmap_legacy);
9257 free_page((unsigned long)vmx_msr_bitmap_longmode);
3e7c73e9
AK
9258 free_page((unsigned long)vmx_io_bitmap_b);
9259 free_page((unsigned long)vmx_io_bitmap_a);
4607c2d7
AG
9260 free_page((unsigned long)vmx_vmwrite_bitmap);
9261 free_page((unsigned long)vmx_vmread_bitmap);
fdef3ad1 9262
8f536b76 9263#ifdef CONFIG_KEXEC
3b63a43f 9264 RCU_INIT_POINTER(crash_vmclear_loaded_vmcss, NULL);
8f536b76
ZY
9265 synchronize_rcu();
9266#endif
9267
cb498ea2 9268 kvm_exit();
6aa8b732
AK
9269}
9270
9271module_init(vmx_init)
9272module_exit(vmx_exit)