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