blob: e0d2ca0927882b2f7e7d3e587a18d6166ee1e642 [file] [log] [blame]
Avi Kivity6aa8b732006-12-10 02:21:36 -08001/*
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.
Nicolas Kaiser9611c182010-10-06 14:23:22 +02008 * Copyright 2010 Red Hat, Inc. and/or its affiliates.
Avi Kivity6aa8b732006-12-10 02:21:36 -08009 *
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
Eddie Dong85f455f2007-07-06 12:20:49 +030019#include "irq.h"
Zhang Xiantao1d737c82007-12-14 09:35:10 +080020#include "mmu.h"
Avi Kivity00b27a32011-11-23 16:30:32 +020021#include "cpuid.h"
Andrey Smetanind62caab2015-11-10 15:36:33 +030022#include "lapic.h"
Avi Kivitye4956062007-06-28 14:15:57 -040023
Avi Kivityedf88412007-12-16 11:02:48 +020024#include <linux/kvm_host.h>
Avi Kivity6aa8b732006-12-10 02:21:36 -080025#include <linux/module.h>
Ahmed S. Darwish9d8f5492007-02-19 14:37:46 +020026#include <linux/kernel.h>
Avi Kivity6aa8b732006-12-10 02:21:36 -080027#include <linux/mm.h>
28#include <linux/highmem.h>
Alexey Dobriyane8edc6e2007-05-21 01:22:52 +040029#include <linux/sched.h>
Avi Kivityc7addb92007-09-16 18:58:32 +020030#include <linux/moduleparam.h>
Josh Triplette9bda3b2012-03-20 23:33:51 -070031#include <linux/mod_devicetable.h>
Steven Rostedt (Red Hat)af658dc2015-04-29 14:36:05 -040032#include <linux/trace_events.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090033#include <linux/slab.h>
Shane Wangcafd6652010-04-29 12:09:01 -040034#include <linux/tboot.h>
Jan Kiszkaf4124502014-03-07 20:03:13 +010035#include <linux/hrtimer.h>
Josh Poimboeufc207aee2017-06-28 10:11:06 -050036#include <linux/frame.h>
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -030037#include "kvm_cache_regs.h"
Avi Kivity35920a32008-07-03 14:50:12 +030038#include "x86.h"
Avi Kivitye4956062007-06-28 14:15:57 -040039
Feng Wu28b835d2015-09-18 22:29:54 +080040#include <asm/cpu.h>
Avi Kivity6aa8b732006-12-10 02:21:36 -080041#include <asm/io.h>
Anthony Liguori3b3be0d2006-12-13 00:33:43 -080042#include <asm/desc.h>
Eduardo Habkost13673a92008-11-17 19:03:13 -020043#include <asm/vmx.h>
Eduardo Habkost6210e372008-11-17 19:03:16 -020044#include <asm/virtext.h>
Andi Kleena0861c02009-06-08 17:37:09 +080045#include <asm/mce.h>
Ingo Molnar952f07e2015-04-26 16:56:05 +020046#include <asm/fpu/internal.h>
Gleb Natapovd7cd9792011-10-05 14:01:23 +020047#include <asm/perf_event.h>
Paolo Bonzini81908bf2014-02-21 10:32:27 +010048#include <asm/debugreg.h>
Zhang Yanfei8f536b72012-12-06 23:43:34 +080049#include <asm/kexec.h>
Radim Krčmářdab20872015-02-09 22:44:07 +010050#include <asm/apic.h>
Feng Wuefc64402015-09-18 22:29:51 +080051#include <asm/irq_remapping.h>
Andy Lutomirskid6e41f12017-05-28 10:00:17 -070052#include <asm/mmu_context.h>
Avi Kivity6aa8b732006-12-10 02:21:36 -080053
Marcelo Tosatti229456f2009-06-17 09:22:14 -030054#include "trace.h"
Wei Huang25462f7f2015-06-19 15:45:05 +020055#include "pmu.h"
Marcelo Tosatti229456f2009-06-17 09:22:14 -030056
Avi Kivity4ecac3f2008-05-13 13:23:38 +030057#define __ex(x) __kvm_handle_fault_on_reboot(x)
Avi Kivity5e520e62011-05-15 10:13:12 -040058#define __ex_clear(x, reg) \
59 ____kvm_handle_fault_on_reboot(x, "xor " reg " , " reg)
Avi Kivity4ecac3f2008-05-13 13:23:38 +030060
Avi Kivity6aa8b732006-12-10 02:21:36 -080061MODULE_AUTHOR("Qumranet");
62MODULE_LICENSE("GPL");
63
Josh Triplette9bda3b2012-03-20 23:33:51 -070064static const struct x86_cpu_id vmx_cpu_id[] = {
65 X86_FEATURE_MATCH(X86_FEATURE_VMX),
66 {}
67};
68MODULE_DEVICE_TABLE(x86cpu, vmx_cpu_id);
69
Rusty Russell476bc002012-01-13 09:32:18 +103070static bool __read_mostly enable_vpid = 1;
Avi Kivity736caef2009-03-23 17:39:48 +020071module_param_named(vpid, enable_vpid, bool, 0444);
Sheng Yang2384d2b2008-01-17 15:14:33 +080072
Rusty Russell476bc002012-01-13 09:32:18 +103073static bool __read_mostly flexpriority_enabled = 1;
Avi Kivity736caef2009-03-23 17:39:48 +020074module_param_named(flexpriority, flexpriority_enabled, bool, S_IRUGO);
Avi Kivity4c9fc8e2008-03-24 18:15:14 +020075
Rusty Russell476bc002012-01-13 09:32:18 +103076static bool __read_mostly enable_ept = 1;
Avi Kivity736caef2009-03-23 17:39:48 +020077module_param_named(ept, enable_ept, bool, S_IRUGO);
Sheng Yangd56f5462008-04-25 10:13:16 +080078
Rusty Russell476bc002012-01-13 09:32:18 +103079static bool __read_mostly enable_unrestricted_guest = 1;
Nitin A Kamble3a624e22009-06-08 11:34:16 -070080module_param_named(unrestricted_guest,
81 enable_unrestricted_guest, bool, S_IRUGO);
82
Xudong Hao83c3a332012-05-28 19:33:35 +080083static bool __read_mostly enable_ept_ad_bits = 1;
84module_param_named(eptad, enable_ept_ad_bits, bool, S_IRUGO);
85
Avi Kivitya27685c2012-06-12 20:30:18 +030086static bool __read_mostly emulate_invalid_guest_state = true;
Avi Kivityc1f8bc02009-03-23 15:41:17 +020087module_param(emulate_invalid_guest_state, bool, S_IRUGO);
Mohammed Gamal04fa4d32008-08-17 16:39:48 +030088
Rusty Russell476bc002012-01-13 09:32:18 +103089static bool __read_mostly fasteoi = 1;
Kevin Tian58fbbf22011-08-30 13:56:17 +030090module_param(fasteoi, bool, S_IRUGO);
91
Yang Zhang5a717852013-04-11 19:25:16 +080092static bool __read_mostly enable_apicv = 1;
Yang Zhang01e439b2013-04-11 19:25:12 +080093module_param(enable_apicv, bool, S_IRUGO);
Yang Zhang83d4c282013-01-25 10:18:49 +080094
Abel Gordonabc4fc52013-04-18 14:35:25 +030095static bool __read_mostly enable_shadow_vmcs = 1;
96module_param_named(enable_shadow_vmcs, enable_shadow_vmcs, bool, S_IRUGO);
Nadav Har'El801d3422011-05-25 23:02:23 +030097/*
98 * If nested=1, nested virtualization is supported, i.e., guests may use
99 * VMX and be a hypervisor for its own guests. If nested=0, guests may not
100 * use VMX instructions.
101 */
Rusty Russell476bc002012-01-13 09:32:18 +1030102static bool __read_mostly nested = 0;
Nadav Har'El801d3422011-05-25 23:02:23 +0300103module_param(nested, bool, S_IRUGO);
104
Wanpeng Li20300092014-12-02 19:14:59 +0800105static u64 __read_mostly host_xss;
106
Kai Huang843e4332015-01-28 10:54:28 +0800107static bool __read_mostly enable_pml = 1;
108module_param_named(pml, enable_pml, bool, S_IRUGO);
109
Haozhong Zhang64903d62015-10-20 15:39:09 +0800110#define KVM_VMX_TSC_MULTIPLIER_MAX 0xffffffffffffffffULL
111
Yunhong Jiang64672c92016-06-13 14:19:59 -0700112/* Guest_tsc -> host_tsc conversion requires 64-bit division. */
113static int __read_mostly cpu_preemption_timer_multi;
114static bool __read_mostly enable_preemption_timer = 1;
115#ifdef CONFIG_X86_64
116module_param_named(preemption_timer, enable_preemption_timer, bool, S_IRUGO);
117#endif
118
Gleb Natapov50378782013-02-04 16:00:28 +0200119#define KVM_GUEST_CR0_MASK (X86_CR0_NW | X86_CR0_CD)
120#define KVM_VM_CR0_ALWAYS_ON_UNRESTRICTED_GUEST (X86_CR0_WP | X86_CR0_NE)
Avi Kivitycdc0e242009-12-06 17:21:14 +0200121#define KVM_VM_CR0_ALWAYS_ON \
122 (KVM_VM_CR0_ALWAYS_ON_UNRESTRICTED_GUEST | X86_CR0_PG | X86_CR0_PE)
Avi Kivity4c386092009-12-07 12:26:18 +0200123#define KVM_CR4_GUEST_OWNED_BITS \
124 (X86_CR4_PVI | X86_CR4_DE | X86_CR4_PCE | X86_CR4_OSFXSR \
Yu Zhangfd8cb432017-08-24 20:27:56 +0800125 | X86_CR4_OSXMMEXCPT | X86_CR4_LA57 | X86_CR4_TSD)
Avi Kivity4c386092009-12-07 12:26:18 +0200126
Avi Kivitycdc0e242009-12-06 17:21:14 +0200127#define KVM_PMODE_VM_CR4_ALWAYS_ON (X86_CR4_PAE | X86_CR4_VMXE)
128#define KVM_RMODE_VM_CR4_ALWAYS_ON (X86_CR4_VME | X86_CR4_PAE | X86_CR4_VMXE)
129
Avi Kivity78ac8b42010-04-08 18:19:35 +0300130#define RMODE_GUEST_OWNED_EFLAGS_BITS (~(X86_EFLAGS_IOPL | X86_EFLAGS_VM))
131
Jan Kiszkaf4124502014-03-07 20:03:13 +0100132#define VMX_MISC_EMULATED_PREEMPTION_TIMER_RATE 5
133
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +0800134/*
Jan Dakinevich16c2aec2016-10-28 07:00:30 +0300135 * Hyper-V requires all of these, so mark them as supported even though
136 * they are just treated the same as all-context.
137 */
138#define VMX_VPID_EXTENT_SUPPORTED_MASK \
139 (VMX_VPID_EXTENT_INDIVIDUAL_ADDR_BIT | \
140 VMX_VPID_EXTENT_SINGLE_CONTEXT_BIT | \
141 VMX_VPID_EXTENT_GLOBAL_CONTEXT_BIT | \
142 VMX_VPID_EXTENT_SINGLE_NON_GLOBAL_BIT)
143
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +0800144/*
145 * These 2 parameters are used to config the controls for Pause-Loop Exiting:
146 * ple_gap: upper bound on the amount of time between two successive
147 * executions of PAUSE in a loop. Also indicate if ple enabled.
Rik van Riel00c25bc2011-01-04 09:51:33 -0500148 * According to test, this time is usually smaller than 128 cycles.
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +0800149 * ple_window: upper bound on the amount of time a guest is allowed to execute
150 * in a PAUSE loop. Tests indicate that most spinlocks are held for
151 * less than 2^12 cycles
152 * Time is measured based on a counter that runs at the same rate as the TSC,
153 * refer SDM volume 3b section 21.6.13 & 22.1.3.
154 */
Radim Krčmářb4a2d312014-08-21 18:08:08 +0200155#define KVM_VMX_DEFAULT_PLE_GAP 128
156#define KVM_VMX_DEFAULT_PLE_WINDOW 4096
157#define KVM_VMX_DEFAULT_PLE_WINDOW_GROW 2
158#define KVM_VMX_DEFAULT_PLE_WINDOW_SHRINK 0
159#define KVM_VMX_DEFAULT_PLE_WINDOW_MAX \
160 INT_MAX / KVM_VMX_DEFAULT_PLE_WINDOW_GROW
161
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +0800162static int ple_gap = KVM_VMX_DEFAULT_PLE_GAP;
163module_param(ple_gap, int, S_IRUGO);
164
165static int ple_window = KVM_VMX_DEFAULT_PLE_WINDOW;
166module_param(ple_window, int, S_IRUGO);
167
Radim Krčmářb4a2d312014-08-21 18:08:08 +0200168/* Default doubles per-vcpu window every exit. */
169static int ple_window_grow = KVM_VMX_DEFAULT_PLE_WINDOW_GROW;
170module_param(ple_window_grow, int, S_IRUGO);
171
172/* Default resets per-vcpu window every exit to ple_window. */
173static int ple_window_shrink = KVM_VMX_DEFAULT_PLE_WINDOW_SHRINK;
174module_param(ple_window_shrink, int, S_IRUGO);
175
176/* Default is to compute the maximum so we can never overflow. */
177static int ple_window_actual_max = KVM_VMX_DEFAULT_PLE_WINDOW_MAX;
178static int ple_window_max = KVM_VMX_DEFAULT_PLE_WINDOW_MAX;
179module_param(ple_window_max, int, S_IRUGO);
180
Avi Kivity83287ea422012-09-16 15:10:57 +0300181extern const ulong vmx_return;
182
Gleb Natapov8bf00a52011-10-05 14:01:22 +0200183#define NR_AUTOLOAD_MSRS 8
Nadav Har'Elff2f6fe2011-05-25 23:05:27 +0300184#define VMCS02_POOL_SIZE 1
Avi Kivity61d2ef22010-04-28 16:40:38 +0300185
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400186struct vmcs {
187 u32 revision_id;
188 u32 abort;
189 char data[0];
190};
191
Nadav Har'Eld462b812011-05-24 15:26:10 +0300192/*
193 * Track a VMCS that may be loaded on a certain CPU. If it is (cpu!=-1), also
194 * remember whether it was VMLAUNCHed, and maintain a linked list of all VMCSs
195 * loaded on this CPU (so we can clear them if the CPU goes down).
196 */
197struct loaded_vmcs {
198 struct vmcs *vmcs;
Jim Mattson355f4fb2016-10-28 08:29:39 -0700199 struct vmcs *shadow_vmcs;
Nadav Har'Eld462b812011-05-24 15:26:10 +0300200 int cpu;
Paolo Bonzini4c4a6f72017-07-14 13:36:11 +0200201 bool launched;
202 bool nmi_known_unmasked;
Nadav Har'Eld462b812011-05-24 15:26:10 +0300203 struct list_head loaded_vmcss_on_cpu_link;
204};
205
Avi Kivity26bb0982009-09-07 11:14:12 +0300206struct shared_msr_entry {
207 unsigned index;
208 u64 data;
Avi Kivityd5696722009-12-02 12:28:47 +0200209 u64 mask;
Avi Kivity26bb0982009-09-07 11:14:12 +0300210};
211
Nadav Har'Elec378ae2011-05-25 23:02:54 +0300212/*
Nadav Har'Ela9d30f32011-05-25 23:03:55 +0300213 * struct vmcs12 describes the state that our guest hypervisor (L1) keeps for a
214 * single nested guest (L2), hence the name vmcs12. Any VMX implementation has
215 * a VMCS structure, and vmcs12 is our emulated VMX's VMCS. This structure is
216 * stored in guest memory specified by VMPTRLD, but is opaque to the guest,
217 * which must access it using VMREAD/VMWRITE/VMCLEAR instructions.
218 * More than one of these structures may exist, if L1 runs multiple L2 guests.
219 * nested_vmx_run() will use the data here to build a vmcs02: a VMCS for the
220 * underlying hardware which will be used to run L2.
221 * This structure is packed to ensure that its layout is identical across
222 * machines (necessary for live migration).
223 * If there are changes in this struct, VMCS12_REVISION must be changed.
224 */
Nadav Har'El22bd0352011-05-25 23:05:57 +0300225typedef u64 natural_width;
Nadav Har'Ela9d30f32011-05-25 23:03:55 +0300226struct __packed vmcs12 {
227 /* According to the Intel spec, a VMCS region must start with the
228 * following two fields. Then follow implementation-specific data.
229 */
230 u32 revision_id;
231 u32 abort;
Nadav Har'El22bd0352011-05-25 23:05:57 +0300232
Nadav Har'El27d6c862011-05-25 23:06:59 +0300233 u32 launch_state; /* set to 0 by VMCLEAR, to 1 by VMLAUNCH */
234 u32 padding[7]; /* room for future expansion */
235
Nadav Har'El22bd0352011-05-25 23:05:57 +0300236 u64 io_bitmap_a;
237 u64 io_bitmap_b;
238 u64 msr_bitmap;
239 u64 vm_exit_msr_store_addr;
240 u64 vm_exit_msr_load_addr;
241 u64 vm_entry_msr_load_addr;
242 u64 tsc_offset;
243 u64 virtual_apic_page_addr;
244 u64 apic_access_addr;
Wincy Van705699a2015-02-03 23:58:17 +0800245 u64 posted_intr_desc_addr;
Bandan Das27c42a12017-08-03 15:54:42 -0400246 u64 vm_function_control;
Nadav Har'El22bd0352011-05-25 23:05:57 +0300247 u64 ept_pointer;
Wincy Van608406e2015-02-03 23:57:51 +0800248 u64 eoi_exit_bitmap0;
249 u64 eoi_exit_bitmap1;
250 u64 eoi_exit_bitmap2;
251 u64 eoi_exit_bitmap3;
Bandan Das41ab9372017-08-03 15:54:43 -0400252 u64 eptp_list_address;
Wanpeng Li81dc01f2014-12-04 19:11:07 +0800253 u64 xss_exit_bitmap;
Nadav Har'El22bd0352011-05-25 23:05:57 +0300254 u64 guest_physical_address;
255 u64 vmcs_link_pointer;
Bandan Dasc5f983f2017-05-05 15:25:14 -0400256 u64 pml_address;
Nadav Har'El22bd0352011-05-25 23:05:57 +0300257 u64 guest_ia32_debugctl;
258 u64 guest_ia32_pat;
259 u64 guest_ia32_efer;
260 u64 guest_ia32_perf_global_ctrl;
261 u64 guest_pdptr0;
262 u64 guest_pdptr1;
263 u64 guest_pdptr2;
264 u64 guest_pdptr3;
Paolo Bonzini36be0b92014-02-24 12:30:04 +0100265 u64 guest_bndcfgs;
Nadav Har'El22bd0352011-05-25 23:05:57 +0300266 u64 host_ia32_pat;
267 u64 host_ia32_efer;
268 u64 host_ia32_perf_global_ctrl;
269 u64 padding64[8]; /* room for future expansion */
270 /*
271 * To allow migration of L1 (complete with its L2 guests) between
272 * machines of different natural widths (32 or 64 bit), we cannot have
273 * unsigned long fields with no explict size. We use u64 (aliased
274 * natural_width) instead. Luckily, x86 is little-endian.
275 */
276 natural_width cr0_guest_host_mask;
277 natural_width cr4_guest_host_mask;
278 natural_width cr0_read_shadow;
279 natural_width cr4_read_shadow;
280 natural_width cr3_target_value0;
281 natural_width cr3_target_value1;
282 natural_width cr3_target_value2;
283 natural_width cr3_target_value3;
284 natural_width exit_qualification;
285 natural_width guest_linear_address;
286 natural_width guest_cr0;
287 natural_width guest_cr3;
288 natural_width guest_cr4;
289 natural_width guest_es_base;
290 natural_width guest_cs_base;
291 natural_width guest_ss_base;
292 natural_width guest_ds_base;
293 natural_width guest_fs_base;
294 natural_width guest_gs_base;
295 natural_width guest_ldtr_base;
296 natural_width guest_tr_base;
297 natural_width guest_gdtr_base;
298 natural_width guest_idtr_base;
299 natural_width guest_dr7;
300 natural_width guest_rsp;
301 natural_width guest_rip;
302 natural_width guest_rflags;
303 natural_width guest_pending_dbg_exceptions;
304 natural_width guest_sysenter_esp;
305 natural_width guest_sysenter_eip;
306 natural_width host_cr0;
307 natural_width host_cr3;
308 natural_width host_cr4;
309 natural_width host_fs_base;
310 natural_width host_gs_base;
311 natural_width host_tr_base;
312 natural_width host_gdtr_base;
313 natural_width host_idtr_base;
314 natural_width host_ia32_sysenter_esp;
315 natural_width host_ia32_sysenter_eip;
316 natural_width host_rsp;
317 natural_width host_rip;
318 natural_width paddingl[8]; /* room for future expansion */
319 u32 pin_based_vm_exec_control;
320 u32 cpu_based_vm_exec_control;
321 u32 exception_bitmap;
322 u32 page_fault_error_code_mask;
323 u32 page_fault_error_code_match;
324 u32 cr3_target_count;
325 u32 vm_exit_controls;
326 u32 vm_exit_msr_store_count;
327 u32 vm_exit_msr_load_count;
328 u32 vm_entry_controls;
329 u32 vm_entry_msr_load_count;
330 u32 vm_entry_intr_info_field;
331 u32 vm_entry_exception_error_code;
332 u32 vm_entry_instruction_len;
333 u32 tpr_threshold;
334 u32 secondary_vm_exec_control;
335 u32 vm_instruction_error;
336 u32 vm_exit_reason;
337 u32 vm_exit_intr_info;
338 u32 vm_exit_intr_error_code;
339 u32 idt_vectoring_info_field;
340 u32 idt_vectoring_error_code;
341 u32 vm_exit_instruction_len;
342 u32 vmx_instruction_info;
343 u32 guest_es_limit;
344 u32 guest_cs_limit;
345 u32 guest_ss_limit;
346 u32 guest_ds_limit;
347 u32 guest_fs_limit;
348 u32 guest_gs_limit;
349 u32 guest_ldtr_limit;
350 u32 guest_tr_limit;
351 u32 guest_gdtr_limit;
352 u32 guest_idtr_limit;
353 u32 guest_es_ar_bytes;
354 u32 guest_cs_ar_bytes;
355 u32 guest_ss_ar_bytes;
356 u32 guest_ds_ar_bytes;
357 u32 guest_fs_ar_bytes;
358 u32 guest_gs_ar_bytes;
359 u32 guest_ldtr_ar_bytes;
360 u32 guest_tr_ar_bytes;
361 u32 guest_interruptibility_info;
362 u32 guest_activity_state;
363 u32 guest_sysenter_cs;
364 u32 host_ia32_sysenter_cs;
Jan Kiszka0238ea92013-03-13 11:31:24 +0100365 u32 vmx_preemption_timer_value;
366 u32 padding32[7]; /* room for future expansion */
Nadav Har'El22bd0352011-05-25 23:05:57 +0300367 u16 virtual_processor_id;
Wincy Van705699a2015-02-03 23:58:17 +0800368 u16 posted_intr_nv;
Nadav Har'El22bd0352011-05-25 23:05:57 +0300369 u16 guest_es_selector;
370 u16 guest_cs_selector;
371 u16 guest_ss_selector;
372 u16 guest_ds_selector;
373 u16 guest_fs_selector;
374 u16 guest_gs_selector;
375 u16 guest_ldtr_selector;
376 u16 guest_tr_selector;
Wincy Van608406e2015-02-03 23:57:51 +0800377 u16 guest_intr_status;
Bandan Dasc5f983f2017-05-05 15:25:14 -0400378 u16 guest_pml_index;
Nadav Har'El22bd0352011-05-25 23:05:57 +0300379 u16 host_es_selector;
380 u16 host_cs_selector;
381 u16 host_ss_selector;
382 u16 host_ds_selector;
383 u16 host_fs_selector;
384 u16 host_gs_selector;
385 u16 host_tr_selector;
Nadav Har'Ela9d30f32011-05-25 23:03:55 +0300386};
387
388/*
389 * VMCS12_REVISION is an arbitrary id that should be changed if the content or
390 * layout of struct vmcs12 is changed. MSR_IA32_VMX_BASIC returns this id, and
391 * VMPTRLD verifies that the VMCS region that L1 is loading contains this id.
392 */
393#define VMCS12_REVISION 0x11e57ed0
394
395/*
396 * VMCS12_SIZE is the number of bytes L1 should allocate for the VMXON region
397 * and any VMCS region. Although only sizeof(struct vmcs12) are used by the
398 * current implementation, 4K are reserved to avoid future complications.
399 */
400#define VMCS12_SIZE 0x1000
401
Nadav Har'Elff2f6fe2011-05-25 23:05:27 +0300402/* Used to remember the last vmcs02 used for some recently used vmcs12s */
403struct vmcs02_list {
404 struct list_head list;
405 gpa_t vmptr;
406 struct loaded_vmcs vmcs02;
407};
408
Nadav Har'Ela9d30f32011-05-25 23:03:55 +0300409/*
Nadav Har'Elec378ae2011-05-25 23:02:54 +0300410 * The nested_vmx structure is part of vcpu_vmx, and holds information we need
411 * for correct emulation of VMX (i.e., nested VMX) on this vcpu.
412 */
413struct nested_vmx {
414 /* Has the level1 guest done vmxon? */
415 bool vmxon;
Bandan Das3573e222014-05-06 02:19:16 -0400416 gpa_t vmxon_ptr;
Bandan Dasc5f983f2017-05-05 15:25:14 -0400417 bool pml_full;
Nadav Har'Ela9d30f32011-05-25 23:03:55 +0300418
419 /* The guest-physical address of the current VMCS L1 keeps for L2 */
420 gpa_t current_vmptr;
David Matlack4f2777b2016-07-13 17:16:37 -0700421 /*
422 * Cache of the guest's VMCS, existing outside of guest memory.
423 * Loaded from guest memory during VMPTRLD. Flushed to guest
David Matlack8ca44e82017-08-01 14:00:39 -0700424 * memory during VMCLEAR and VMPTRLD.
David Matlack4f2777b2016-07-13 17:16:37 -0700425 */
426 struct vmcs12 *cached_vmcs12;
Abel Gordon012f83c2013-04-18 14:39:25 +0300427 /*
428 * Indicates if the shadow vmcs must be updated with the
429 * data hold by vmcs12
430 */
431 bool sync_shadow_vmcs;
Nadav Har'Elff2f6fe2011-05-25 23:05:27 +0300432
433 /* vmcs02_list cache of VMCSs recently used to run L2 guests */
434 struct list_head vmcs02_pool;
435 int vmcs02_num;
Radim Krčmářdccbfcf2016-08-08 20:16:23 +0200436 bool change_vmcs01_virtual_x2apic_mode;
Nadav Har'El644d7112011-05-25 23:12:35 +0300437 /* L2 must run next, and mustn't decide to exit to L1. */
438 bool nested_run_pending;
Nadav Har'Elfe3ef052011-05-25 23:10:02 +0300439 /*
440 * Guest pages referred to in vmcs02 with host-physical pointers, so
441 * we must keep them pinned while L2 runs.
442 */
443 struct page *apic_access_page;
Wanpeng Lia7c0b072014-08-21 19:46:50 +0800444 struct page *virtual_apic_page;
Wincy Van705699a2015-02-03 23:58:17 +0800445 struct page *pi_desc_page;
446 struct pi_desc *pi_desc;
447 bool pi_pending;
448 u16 posted_intr_nv;
Jan Kiszkaf4124502014-03-07 20:03:13 +0100449
Radim Krčmářd048c092016-08-08 20:16:22 +0200450 unsigned long *msr_bitmap;
451
Jan Kiszkaf4124502014-03-07 20:03:13 +0100452 struct hrtimer preemption_timer;
453 bool preemption_timer_expired;
Jan Kiszka2996fca2014-06-16 13:59:43 +0200454
455 /* to migrate it to L2 if VM_ENTRY_LOAD_DEBUG_CONTROLS is off */
456 u64 vmcs01_debugctl;
Wincy Vanb9c237b2015-02-03 23:56:30 +0800457
Wanpeng Li5c614b32015-10-13 09:18:36 -0700458 u16 vpid02;
459 u16 last_vpid;
460
David Matlack0115f9c2016-11-29 18:14:06 -0800461 /*
462 * We only store the "true" versions of the VMX capability MSRs. We
463 * generate the "non-true" versions by setting the must-be-1 bits
464 * according to the SDM.
465 */
Wincy Vanb9c237b2015-02-03 23:56:30 +0800466 u32 nested_vmx_procbased_ctls_low;
467 u32 nested_vmx_procbased_ctls_high;
Wincy Vanb9c237b2015-02-03 23:56:30 +0800468 u32 nested_vmx_secondary_ctls_low;
469 u32 nested_vmx_secondary_ctls_high;
470 u32 nested_vmx_pinbased_ctls_low;
471 u32 nested_vmx_pinbased_ctls_high;
472 u32 nested_vmx_exit_ctls_low;
473 u32 nested_vmx_exit_ctls_high;
Wincy Vanb9c237b2015-02-03 23:56:30 +0800474 u32 nested_vmx_entry_ctls_low;
475 u32 nested_vmx_entry_ctls_high;
Wincy Vanb9c237b2015-02-03 23:56:30 +0800476 u32 nested_vmx_misc_low;
477 u32 nested_vmx_misc_high;
478 u32 nested_vmx_ept_caps;
Wanpeng Li99b83ac2015-10-13 09:12:21 -0700479 u32 nested_vmx_vpid_caps;
David Matlack62cc6b9d2016-11-29 18:14:07 -0800480 u64 nested_vmx_basic;
481 u64 nested_vmx_cr0_fixed0;
482 u64 nested_vmx_cr0_fixed1;
483 u64 nested_vmx_cr4_fixed0;
484 u64 nested_vmx_cr4_fixed1;
485 u64 nested_vmx_vmcs_enum;
Bandan Das27c42a12017-08-03 15:54:42 -0400486 u64 nested_vmx_vmfunc_controls;
Nadav Har'Elec378ae2011-05-25 23:02:54 +0300487};
488
Yang Zhang01e439b2013-04-11 19:25:12 +0800489#define POSTED_INTR_ON 0
Feng Wuebbfc762015-09-18 22:29:46 +0800490#define POSTED_INTR_SN 1
491
Yang Zhang01e439b2013-04-11 19:25:12 +0800492/* Posted-Interrupt Descriptor */
493struct pi_desc {
494 u32 pir[8]; /* Posted interrupt requested */
Feng Wu6ef15222015-09-18 22:29:45 +0800495 union {
496 struct {
497 /* bit 256 - Outstanding Notification */
498 u16 on : 1,
499 /* bit 257 - Suppress Notification */
500 sn : 1,
501 /* bit 271:258 - Reserved */
502 rsvd_1 : 14;
503 /* bit 279:272 - Notification Vector */
504 u8 nv;
505 /* bit 287:280 - Reserved */
506 u8 rsvd_2;
507 /* bit 319:288 - Notification Destination */
508 u32 ndst;
509 };
510 u64 control;
511 };
512 u32 rsvd[6];
Yang Zhang01e439b2013-04-11 19:25:12 +0800513} __aligned(64);
514
Yang Zhanga20ed542013-04-11 19:25:15 +0800515static bool pi_test_and_set_on(struct pi_desc *pi_desc)
516{
517 return test_and_set_bit(POSTED_INTR_ON,
518 (unsigned long *)&pi_desc->control);
519}
520
521static bool pi_test_and_clear_on(struct pi_desc *pi_desc)
522{
523 return test_and_clear_bit(POSTED_INTR_ON,
524 (unsigned long *)&pi_desc->control);
525}
526
527static int pi_test_and_set_pir(int vector, struct pi_desc *pi_desc)
528{
529 return test_and_set_bit(vector, (unsigned long *)pi_desc->pir);
530}
531
Feng Wuebbfc762015-09-18 22:29:46 +0800532static inline void pi_clear_sn(struct pi_desc *pi_desc)
533{
534 return clear_bit(POSTED_INTR_SN,
535 (unsigned long *)&pi_desc->control);
536}
537
538static inline void pi_set_sn(struct pi_desc *pi_desc)
539{
540 return set_bit(POSTED_INTR_SN,
541 (unsigned long *)&pi_desc->control);
542}
543
Paolo Bonziniad361092016-09-20 16:15:05 +0200544static inline void pi_clear_on(struct pi_desc *pi_desc)
545{
546 clear_bit(POSTED_INTR_ON,
547 (unsigned long *)&pi_desc->control);
548}
549
Feng Wuebbfc762015-09-18 22:29:46 +0800550static inline int pi_test_on(struct pi_desc *pi_desc)
551{
552 return test_bit(POSTED_INTR_ON,
553 (unsigned long *)&pi_desc->control);
554}
555
556static inline int pi_test_sn(struct pi_desc *pi_desc)
557{
558 return test_bit(POSTED_INTR_SN,
559 (unsigned long *)&pi_desc->control);
560}
561
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400562struct vcpu_vmx {
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000563 struct kvm_vcpu vcpu;
Avi Kivity313dbd42008-07-17 18:04:30 +0300564 unsigned long host_rsp;
Avi Kivity29bd8a72007-09-10 17:27:03 +0300565 u8 fail;
Avi Kivity51aa01d2010-07-20 14:31:20 +0300566 u32 exit_intr_info;
Avi Kivity1155f762007-11-22 11:30:47 +0200567 u32 idt_vectoring_info;
Avi Kivity6de12732011-03-07 12:51:22 +0200568 ulong rflags;
Avi Kivity26bb0982009-09-07 11:14:12 +0300569 struct shared_msr_entry *guest_msrs;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400570 int nmsrs;
571 int save_nmsrs;
Yang Zhanga547c6d2013-04-11 19:25:10 +0800572 unsigned long host_idt_base;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400573#ifdef CONFIG_X86_64
Avi Kivity44ea2b12009-09-06 15:55:37 +0300574 u64 msr_host_kernel_gs_base;
575 u64 msr_guest_kernel_gs_base;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400576#endif
Gleb Natapov2961e8762013-11-25 15:37:13 +0200577 u32 vm_entry_controls_shadow;
578 u32 vm_exit_controls_shadow;
Paolo Bonzini80154d72017-08-24 13:55:35 +0200579 u32 secondary_exec_control;
580
Nadav Har'Eld462b812011-05-24 15:26:10 +0300581 /*
582 * loaded_vmcs points to the VMCS currently used in this vcpu. For a
583 * non-nested (L1) guest, it always points to vmcs01. For a nested
584 * guest (L2), it points to a different VMCS.
585 */
586 struct loaded_vmcs vmcs01;
587 struct loaded_vmcs *loaded_vmcs;
588 bool __launched; /* temporary, used in vmx_vcpu_run */
Avi Kivity61d2ef22010-04-28 16:40:38 +0300589 struct msr_autoload {
590 unsigned nr;
591 struct vmx_msr_entry guest[NR_AUTOLOAD_MSRS];
592 struct vmx_msr_entry host[NR_AUTOLOAD_MSRS];
593 } msr_autoload;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400594 struct {
595 int loaded;
596 u16 fs_sel, gs_sel, ldt_sel;
Avi Kivityb2da15a2012-05-13 19:53:24 +0300597#ifdef CONFIG_X86_64
598 u16 ds_sel, es_sel;
599#endif
Laurent Vivier152d3f22007-08-23 16:33:11 +0200600 int gs_ldt_reload_needed;
601 int fs_reload_needed;
Liu, Jinsongda8999d2014-02-24 10:55:46 +0000602 u64 msr_host_bndcfgs;
Andy Lutomirskid6e41f12017-05-28 10:00:17 -0700603 unsigned long vmcs_host_cr3; /* May not match real cr3 */
Andy Lutomirskid974baa2014-10-08 09:02:13 -0700604 unsigned long vmcs_host_cr4; /* May not match real cr4 */
Mike Dayd77c26f2007-10-08 09:02:08 -0400605 } host_state;
Avi Kivity9c8cba32007-11-22 11:42:59 +0200606 struct {
Avi Kivity7ffd92c2009-06-09 14:10:45 +0300607 int vm86_active;
Avi Kivity78ac8b42010-04-08 18:19:35 +0300608 ulong save_rflags;
Avi Kivityf5f7b2f2012-08-21 17:07:00 +0300609 struct kvm_segment segs[8];
610 } rmode;
611 struct {
612 u32 bitmask; /* 4 bits per segment (1 bit per field) */
Avi Kivity7ffd92c2009-06-09 14:10:45 +0300613 struct kvm_save_segment {
614 u16 selector;
615 unsigned long base;
616 u32 limit;
617 u32 ar;
Avi Kivityf5f7b2f2012-08-21 17:07:00 +0300618 } seg[8];
Avi Kivity2fb92db2011-04-27 19:42:18 +0300619 } segment_cache;
Sheng Yang2384d2b2008-01-17 15:14:33 +0800620 int vpid;
Mohammed Gamal04fa4d32008-08-17 16:39:48 +0300621 bool emulation_required;
Jan Kiszka3b86cd92008-09-26 09:30:57 +0200622
Andi Kleena0861c02009-06-08 17:37:09 +0800623 u32 exit_reason;
Sheng Yang4e47c7a2009-12-18 16:48:47 +0800624
Yang Zhang01e439b2013-04-11 19:25:12 +0800625 /* Posted interrupt descriptor */
626 struct pi_desc pi_desc;
627
Nadav Har'Elec378ae2011-05-25 23:02:54 +0300628 /* Support for a guest hypervisor (nested VMX) */
629 struct nested_vmx nested;
Radim Krčmářa7653ec2014-08-21 18:08:07 +0200630
631 /* Dynamic PLE window. */
632 int ple_window;
633 bool ple_window_dirty;
Kai Huang843e4332015-01-28 10:54:28 +0800634
635 /* Support for PML */
636#define PML_ENTITY_NUM 512
637 struct page *pml_pg;
Owen Hofmann2680d6d2016-03-01 13:36:13 -0800638
Yunhong Jiang64672c92016-06-13 14:19:59 -0700639 /* apic deadline value in host tsc */
640 u64 hv_deadline_tsc;
641
Owen Hofmann2680d6d2016-03-01 13:36:13 -0800642 u64 current_tsc_ratio;
Xiao Guangrong1be0e612016-03-22 16:51:18 +0800643
644 bool guest_pkru_valid;
645 u32 guest_pkru;
646 u32 host_pkru;
Haozhong Zhang3b840802016-06-22 14:59:54 +0800647
Haozhong Zhang37e4c992016-06-22 14:59:55 +0800648 /*
649 * Only bits masked by msr_ia32_feature_control_valid_bits can be set in
650 * msr_ia32_feature_control. FEATURE_CONTROL_LOCKED is always included
651 * in msr_ia32_feature_control_valid_bits.
652 */
Haozhong Zhang3b840802016-06-22 14:59:54 +0800653 u64 msr_ia32_feature_control;
Haozhong Zhang37e4c992016-06-22 14:59:55 +0800654 u64 msr_ia32_feature_control_valid_bits;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400655};
656
Avi Kivity2fb92db2011-04-27 19:42:18 +0300657enum segment_cache_field {
658 SEG_FIELD_SEL = 0,
659 SEG_FIELD_BASE = 1,
660 SEG_FIELD_LIMIT = 2,
661 SEG_FIELD_AR = 3,
662
663 SEG_FIELD_NR = 4
664};
665
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400666static inline struct vcpu_vmx *to_vmx(struct kvm_vcpu *vcpu)
667{
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000668 return container_of(vcpu, struct vcpu_vmx, vcpu);
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -0400669}
670
Feng Wuefc64402015-09-18 22:29:51 +0800671static struct pi_desc *vcpu_to_pi_desc(struct kvm_vcpu *vcpu)
672{
673 return &(to_vmx(vcpu)->pi_desc);
674}
675
Nadav Har'El22bd0352011-05-25 23:05:57 +0300676#define VMCS12_OFFSET(x) offsetof(struct vmcs12, x)
677#define FIELD(number, name) [number] = VMCS12_OFFSET(name)
678#define FIELD64(number, name) [number] = VMCS12_OFFSET(name), \
679 [number##_HIGH] = VMCS12_OFFSET(name)+4
680
Abel Gordon4607c2d2013-04-18 14:35:55 +0300681
Bandan Dasfe2b2012014-04-21 15:20:14 -0400682static unsigned long shadow_read_only_fields[] = {
Abel Gordon4607c2d2013-04-18 14:35:55 +0300683 /*
684 * We do NOT shadow fields that are modified when L0
685 * traps and emulates any vmx instruction (e.g. VMPTRLD,
686 * VMXON...) executed by L1.
687 * For example, VM_INSTRUCTION_ERROR is read
688 * by L1 if a vmx instruction fails (part of the error path).
689 * Note the code assumes this logic. If for some reason
690 * we start shadowing these fields then we need to
691 * force a shadow sync when L0 emulates vmx instructions
692 * (e.g. force a sync if VM_INSTRUCTION_ERROR is modified
693 * by nested_vmx_failValid)
694 */
695 VM_EXIT_REASON,
696 VM_EXIT_INTR_INFO,
697 VM_EXIT_INSTRUCTION_LEN,
698 IDT_VECTORING_INFO_FIELD,
699 IDT_VECTORING_ERROR_CODE,
700 VM_EXIT_INTR_ERROR_CODE,
701 EXIT_QUALIFICATION,
702 GUEST_LINEAR_ADDRESS,
703 GUEST_PHYSICAL_ADDRESS
704};
Bandan Dasfe2b2012014-04-21 15:20:14 -0400705static int max_shadow_read_only_fields =
Abel Gordon4607c2d2013-04-18 14:35:55 +0300706 ARRAY_SIZE(shadow_read_only_fields);
707
Bandan Dasfe2b2012014-04-21 15:20:14 -0400708static unsigned long shadow_read_write_fields[] = {
Wanpeng Lia7c0b072014-08-21 19:46:50 +0800709 TPR_THRESHOLD,
Abel Gordon4607c2d2013-04-18 14:35:55 +0300710 GUEST_RIP,
711 GUEST_RSP,
712 GUEST_CR0,
713 GUEST_CR3,
714 GUEST_CR4,
715 GUEST_INTERRUPTIBILITY_INFO,
716 GUEST_RFLAGS,
717 GUEST_CS_SELECTOR,
718 GUEST_CS_AR_BYTES,
719 GUEST_CS_LIMIT,
720 GUEST_CS_BASE,
721 GUEST_ES_BASE,
Paolo Bonzini36be0b92014-02-24 12:30:04 +0100722 GUEST_BNDCFGS,
Abel Gordon4607c2d2013-04-18 14:35:55 +0300723 CR0_GUEST_HOST_MASK,
724 CR0_READ_SHADOW,
725 CR4_READ_SHADOW,
726 TSC_OFFSET,
727 EXCEPTION_BITMAP,
728 CPU_BASED_VM_EXEC_CONTROL,
729 VM_ENTRY_EXCEPTION_ERROR_CODE,
730 VM_ENTRY_INTR_INFO_FIELD,
731 VM_ENTRY_INSTRUCTION_LEN,
732 VM_ENTRY_EXCEPTION_ERROR_CODE,
733 HOST_FS_BASE,
734 HOST_GS_BASE,
735 HOST_FS_SELECTOR,
736 HOST_GS_SELECTOR
737};
Bandan Dasfe2b2012014-04-21 15:20:14 -0400738static int max_shadow_read_write_fields =
Abel Gordon4607c2d2013-04-18 14:35:55 +0300739 ARRAY_SIZE(shadow_read_write_fields);
740
Mathias Krause772e0312012-08-30 01:30:19 +0200741static const unsigned short vmcs_field_to_offset_table[] = {
Nadav Har'El22bd0352011-05-25 23:05:57 +0300742 FIELD(VIRTUAL_PROCESSOR_ID, virtual_processor_id),
Wincy Van705699a2015-02-03 23:58:17 +0800743 FIELD(POSTED_INTR_NV, posted_intr_nv),
Nadav Har'El22bd0352011-05-25 23:05:57 +0300744 FIELD(GUEST_ES_SELECTOR, guest_es_selector),
745 FIELD(GUEST_CS_SELECTOR, guest_cs_selector),
746 FIELD(GUEST_SS_SELECTOR, guest_ss_selector),
747 FIELD(GUEST_DS_SELECTOR, guest_ds_selector),
748 FIELD(GUEST_FS_SELECTOR, guest_fs_selector),
749 FIELD(GUEST_GS_SELECTOR, guest_gs_selector),
750 FIELD(GUEST_LDTR_SELECTOR, guest_ldtr_selector),
751 FIELD(GUEST_TR_SELECTOR, guest_tr_selector),
Wincy Van608406e2015-02-03 23:57:51 +0800752 FIELD(GUEST_INTR_STATUS, guest_intr_status),
Bandan Dasc5f983f2017-05-05 15:25:14 -0400753 FIELD(GUEST_PML_INDEX, guest_pml_index),
Nadav Har'El22bd0352011-05-25 23:05:57 +0300754 FIELD(HOST_ES_SELECTOR, host_es_selector),
755 FIELD(HOST_CS_SELECTOR, host_cs_selector),
756 FIELD(HOST_SS_SELECTOR, host_ss_selector),
757 FIELD(HOST_DS_SELECTOR, host_ds_selector),
758 FIELD(HOST_FS_SELECTOR, host_fs_selector),
759 FIELD(HOST_GS_SELECTOR, host_gs_selector),
760 FIELD(HOST_TR_SELECTOR, host_tr_selector),
761 FIELD64(IO_BITMAP_A, io_bitmap_a),
762 FIELD64(IO_BITMAP_B, io_bitmap_b),
763 FIELD64(MSR_BITMAP, msr_bitmap),
764 FIELD64(VM_EXIT_MSR_STORE_ADDR, vm_exit_msr_store_addr),
765 FIELD64(VM_EXIT_MSR_LOAD_ADDR, vm_exit_msr_load_addr),
766 FIELD64(VM_ENTRY_MSR_LOAD_ADDR, vm_entry_msr_load_addr),
767 FIELD64(TSC_OFFSET, tsc_offset),
768 FIELD64(VIRTUAL_APIC_PAGE_ADDR, virtual_apic_page_addr),
769 FIELD64(APIC_ACCESS_ADDR, apic_access_addr),
Wincy Van705699a2015-02-03 23:58:17 +0800770 FIELD64(POSTED_INTR_DESC_ADDR, posted_intr_desc_addr),
Bandan Das27c42a12017-08-03 15:54:42 -0400771 FIELD64(VM_FUNCTION_CONTROL, vm_function_control),
Nadav Har'El22bd0352011-05-25 23:05:57 +0300772 FIELD64(EPT_POINTER, ept_pointer),
Wincy Van608406e2015-02-03 23:57:51 +0800773 FIELD64(EOI_EXIT_BITMAP0, eoi_exit_bitmap0),
774 FIELD64(EOI_EXIT_BITMAP1, eoi_exit_bitmap1),
775 FIELD64(EOI_EXIT_BITMAP2, eoi_exit_bitmap2),
776 FIELD64(EOI_EXIT_BITMAP3, eoi_exit_bitmap3),
Bandan Das41ab9372017-08-03 15:54:43 -0400777 FIELD64(EPTP_LIST_ADDRESS, eptp_list_address),
Wanpeng Li81dc01f2014-12-04 19:11:07 +0800778 FIELD64(XSS_EXIT_BITMAP, xss_exit_bitmap),
Nadav Har'El22bd0352011-05-25 23:05:57 +0300779 FIELD64(GUEST_PHYSICAL_ADDRESS, guest_physical_address),
780 FIELD64(VMCS_LINK_POINTER, vmcs_link_pointer),
Bandan Dasc5f983f2017-05-05 15:25:14 -0400781 FIELD64(PML_ADDRESS, pml_address),
Nadav Har'El22bd0352011-05-25 23:05:57 +0300782 FIELD64(GUEST_IA32_DEBUGCTL, guest_ia32_debugctl),
783 FIELD64(GUEST_IA32_PAT, guest_ia32_pat),
784 FIELD64(GUEST_IA32_EFER, guest_ia32_efer),
785 FIELD64(GUEST_IA32_PERF_GLOBAL_CTRL, guest_ia32_perf_global_ctrl),
786 FIELD64(GUEST_PDPTR0, guest_pdptr0),
787 FIELD64(GUEST_PDPTR1, guest_pdptr1),
788 FIELD64(GUEST_PDPTR2, guest_pdptr2),
789 FIELD64(GUEST_PDPTR3, guest_pdptr3),
Paolo Bonzini36be0b92014-02-24 12:30:04 +0100790 FIELD64(GUEST_BNDCFGS, guest_bndcfgs),
Nadav Har'El22bd0352011-05-25 23:05:57 +0300791 FIELD64(HOST_IA32_PAT, host_ia32_pat),
792 FIELD64(HOST_IA32_EFER, host_ia32_efer),
793 FIELD64(HOST_IA32_PERF_GLOBAL_CTRL, host_ia32_perf_global_ctrl),
794 FIELD(PIN_BASED_VM_EXEC_CONTROL, pin_based_vm_exec_control),
795 FIELD(CPU_BASED_VM_EXEC_CONTROL, cpu_based_vm_exec_control),
796 FIELD(EXCEPTION_BITMAP, exception_bitmap),
797 FIELD(PAGE_FAULT_ERROR_CODE_MASK, page_fault_error_code_mask),
798 FIELD(PAGE_FAULT_ERROR_CODE_MATCH, page_fault_error_code_match),
799 FIELD(CR3_TARGET_COUNT, cr3_target_count),
800 FIELD(VM_EXIT_CONTROLS, vm_exit_controls),
801 FIELD(VM_EXIT_MSR_STORE_COUNT, vm_exit_msr_store_count),
802 FIELD(VM_EXIT_MSR_LOAD_COUNT, vm_exit_msr_load_count),
803 FIELD(VM_ENTRY_CONTROLS, vm_entry_controls),
804 FIELD(VM_ENTRY_MSR_LOAD_COUNT, vm_entry_msr_load_count),
805 FIELD(VM_ENTRY_INTR_INFO_FIELD, vm_entry_intr_info_field),
806 FIELD(VM_ENTRY_EXCEPTION_ERROR_CODE, vm_entry_exception_error_code),
807 FIELD(VM_ENTRY_INSTRUCTION_LEN, vm_entry_instruction_len),
808 FIELD(TPR_THRESHOLD, tpr_threshold),
809 FIELD(SECONDARY_VM_EXEC_CONTROL, secondary_vm_exec_control),
810 FIELD(VM_INSTRUCTION_ERROR, vm_instruction_error),
811 FIELD(VM_EXIT_REASON, vm_exit_reason),
812 FIELD(VM_EXIT_INTR_INFO, vm_exit_intr_info),
813 FIELD(VM_EXIT_INTR_ERROR_CODE, vm_exit_intr_error_code),
814 FIELD(IDT_VECTORING_INFO_FIELD, idt_vectoring_info_field),
815 FIELD(IDT_VECTORING_ERROR_CODE, idt_vectoring_error_code),
816 FIELD(VM_EXIT_INSTRUCTION_LEN, vm_exit_instruction_len),
817 FIELD(VMX_INSTRUCTION_INFO, vmx_instruction_info),
818 FIELD(GUEST_ES_LIMIT, guest_es_limit),
819 FIELD(GUEST_CS_LIMIT, guest_cs_limit),
820 FIELD(GUEST_SS_LIMIT, guest_ss_limit),
821 FIELD(GUEST_DS_LIMIT, guest_ds_limit),
822 FIELD(GUEST_FS_LIMIT, guest_fs_limit),
823 FIELD(GUEST_GS_LIMIT, guest_gs_limit),
824 FIELD(GUEST_LDTR_LIMIT, guest_ldtr_limit),
825 FIELD(GUEST_TR_LIMIT, guest_tr_limit),
826 FIELD(GUEST_GDTR_LIMIT, guest_gdtr_limit),
827 FIELD(GUEST_IDTR_LIMIT, guest_idtr_limit),
828 FIELD(GUEST_ES_AR_BYTES, guest_es_ar_bytes),
829 FIELD(GUEST_CS_AR_BYTES, guest_cs_ar_bytes),
830 FIELD(GUEST_SS_AR_BYTES, guest_ss_ar_bytes),
831 FIELD(GUEST_DS_AR_BYTES, guest_ds_ar_bytes),
832 FIELD(GUEST_FS_AR_BYTES, guest_fs_ar_bytes),
833 FIELD(GUEST_GS_AR_BYTES, guest_gs_ar_bytes),
834 FIELD(GUEST_LDTR_AR_BYTES, guest_ldtr_ar_bytes),
835 FIELD(GUEST_TR_AR_BYTES, guest_tr_ar_bytes),
836 FIELD(GUEST_INTERRUPTIBILITY_INFO, guest_interruptibility_info),
837 FIELD(GUEST_ACTIVITY_STATE, guest_activity_state),
838 FIELD(GUEST_SYSENTER_CS, guest_sysenter_cs),
839 FIELD(HOST_IA32_SYSENTER_CS, host_ia32_sysenter_cs),
Jan Kiszka0238ea92013-03-13 11:31:24 +0100840 FIELD(VMX_PREEMPTION_TIMER_VALUE, vmx_preemption_timer_value),
Nadav Har'El22bd0352011-05-25 23:05:57 +0300841 FIELD(CR0_GUEST_HOST_MASK, cr0_guest_host_mask),
842 FIELD(CR4_GUEST_HOST_MASK, cr4_guest_host_mask),
843 FIELD(CR0_READ_SHADOW, cr0_read_shadow),
844 FIELD(CR4_READ_SHADOW, cr4_read_shadow),
845 FIELD(CR3_TARGET_VALUE0, cr3_target_value0),
846 FIELD(CR3_TARGET_VALUE1, cr3_target_value1),
847 FIELD(CR3_TARGET_VALUE2, cr3_target_value2),
848 FIELD(CR3_TARGET_VALUE3, cr3_target_value3),
849 FIELD(EXIT_QUALIFICATION, exit_qualification),
850 FIELD(GUEST_LINEAR_ADDRESS, guest_linear_address),
851 FIELD(GUEST_CR0, guest_cr0),
852 FIELD(GUEST_CR3, guest_cr3),
853 FIELD(GUEST_CR4, guest_cr4),
854 FIELD(GUEST_ES_BASE, guest_es_base),
855 FIELD(GUEST_CS_BASE, guest_cs_base),
856 FIELD(GUEST_SS_BASE, guest_ss_base),
857 FIELD(GUEST_DS_BASE, guest_ds_base),
858 FIELD(GUEST_FS_BASE, guest_fs_base),
859 FIELD(GUEST_GS_BASE, guest_gs_base),
860 FIELD(GUEST_LDTR_BASE, guest_ldtr_base),
861 FIELD(GUEST_TR_BASE, guest_tr_base),
862 FIELD(GUEST_GDTR_BASE, guest_gdtr_base),
863 FIELD(GUEST_IDTR_BASE, guest_idtr_base),
864 FIELD(GUEST_DR7, guest_dr7),
865 FIELD(GUEST_RSP, guest_rsp),
866 FIELD(GUEST_RIP, guest_rip),
867 FIELD(GUEST_RFLAGS, guest_rflags),
868 FIELD(GUEST_PENDING_DBG_EXCEPTIONS, guest_pending_dbg_exceptions),
869 FIELD(GUEST_SYSENTER_ESP, guest_sysenter_esp),
870 FIELD(GUEST_SYSENTER_EIP, guest_sysenter_eip),
871 FIELD(HOST_CR0, host_cr0),
872 FIELD(HOST_CR3, host_cr3),
873 FIELD(HOST_CR4, host_cr4),
874 FIELD(HOST_FS_BASE, host_fs_base),
875 FIELD(HOST_GS_BASE, host_gs_base),
876 FIELD(HOST_TR_BASE, host_tr_base),
877 FIELD(HOST_GDTR_BASE, host_gdtr_base),
878 FIELD(HOST_IDTR_BASE, host_idtr_base),
879 FIELD(HOST_IA32_SYSENTER_ESP, host_ia32_sysenter_esp),
880 FIELD(HOST_IA32_SYSENTER_EIP, host_ia32_sysenter_eip),
881 FIELD(HOST_RSP, host_rsp),
882 FIELD(HOST_RIP, host_rip),
883};
Nadav Har'El22bd0352011-05-25 23:05:57 +0300884
885static inline short vmcs_field_to_offset(unsigned long field)
886{
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +0100887 BUILD_BUG_ON(ARRAY_SIZE(vmcs_field_to_offset_table) > SHRT_MAX);
888
889 if (field >= ARRAY_SIZE(vmcs_field_to_offset_table) ||
890 vmcs_field_to_offset_table[field] == 0)
891 return -ENOENT;
892
Nadav Har'El22bd0352011-05-25 23:05:57 +0300893 return vmcs_field_to_offset_table[field];
894}
895
Nadav Har'Ela9d30f32011-05-25 23:03:55 +0300896static inline struct vmcs12 *get_vmcs12(struct kvm_vcpu *vcpu)
897{
David Matlack4f2777b2016-07-13 17:16:37 -0700898 return to_vmx(vcpu)->nested.cached_vmcs12;
Nadav Har'Ela9d30f32011-05-25 23:03:55 +0300899}
900
Peter Feiner995f00a2017-06-30 17:26:32 -0700901static bool nested_ept_ad_enabled(struct kvm_vcpu *vcpu);
Nadav Har'Elbfd0a562013-08-05 11:07:17 +0300902static unsigned long nested_ept_get_cr3(struct kvm_vcpu *vcpu);
Peter Feiner995f00a2017-06-30 17:26:32 -0700903static u64 construct_eptp(struct kvm_vcpu *vcpu, unsigned long root_hpa);
Wanpeng Lif53cd632014-12-02 19:14:58 +0800904static bool vmx_xsaves_supported(void);
Gleb Natapov776e58e2011-03-13 12:34:27 +0200905static int vmx_set_tss_addr(struct kvm *kvm, unsigned int addr);
Orit Wassermanb246dd52012-05-31 14:49:22 +0300906static void vmx_set_segment(struct kvm_vcpu *vcpu,
907 struct kvm_segment *var, int seg);
908static void vmx_get_segment(struct kvm_vcpu *vcpu,
909 struct kvm_segment *var, int seg);
Gleb Natapovd99e4152012-12-20 16:57:45 +0200910static bool guest_state_valid(struct kvm_vcpu *vcpu);
911static u32 vmx_segment_access_rights(struct kvm_segment *var);
Abel Gordonc3114422013-04-18 14:38:55 +0300912static void copy_vmcs12_to_shadow(struct vcpu_vmx *vmx);
Abel Gordon16f5b902013-04-18 14:38:25 +0300913static void copy_shadow_to_vmcs12(struct vcpu_vmx *vmx);
Tang Chena255d472014-09-16 18:41:58 +0800914static int alloc_identity_pagetable(struct kvm *kvm);
Paolo Bonzinib96fb432017-07-27 12:29:32 +0200915static bool vmx_get_nmi_mask(struct kvm_vcpu *vcpu);
916static void vmx_set_nmi_mask(struct kvm_vcpu *vcpu, bool masked);
917static bool nested_vmx_is_page_fault_vmexit(struct vmcs12 *vmcs12,
918 u16 error_code);
Avi Kivity75880a02007-06-20 11:20:04 +0300919
Avi Kivity6aa8b732006-12-10 02:21:36 -0800920static DEFINE_PER_CPU(struct vmcs *, vmxarea);
921static DEFINE_PER_CPU(struct vmcs *, current_vmcs);
Nadav Har'Eld462b812011-05-24 15:26:10 +0300922/*
923 * We maintain a per-CPU linked-list of VMCS loaded on that CPU. This is needed
924 * when a CPU is brought down, and we need to VMCLEAR all VMCSs loaded on it.
925 */
926static DEFINE_PER_CPU(struct list_head, loaded_vmcss_on_cpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800927
Feng Wubf9f6ac2015-09-18 22:29:55 +0800928/*
929 * We maintian a per-CPU linked-list of vCPU, so in wakeup_handler() we
930 * can find which vCPU should be waken up.
931 */
932static DEFINE_PER_CPU(struct list_head, blocked_vcpu_on_cpu);
933static DEFINE_PER_CPU(spinlock_t, blocked_vcpu_on_cpu_lock);
934
Radim Krčmář23611332016-09-29 22:41:33 +0200935enum {
936 VMX_IO_BITMAP_A,
937 VMX_IO_BITMAP_B,
938 VMX_MSR_BITMAP_LEGACY,
939 VMX_MSR_BITMAP_LONGMODE,
940 VMX_MSR_BITMAP_LEGACY_X2APIC_APICV,
941 VMX_MSR_BITMAP_LONGMODE_X2APIC_APICV,
942 VMX_MSR_BITMAP_LEGACY_X2APIC,
943 VMX_MSR_BITMAP_LONGMODE_X2APIC,
944 VMX_VMREAD_BITMAP,
945 VMX_VMWRITE_BITMAP,
946 VMX_BITMAP_NR
947};
948
949static unsigned long *vmx_bitmap[VMX_BITMAP_NR];
950
951#define vmx_io_bitmap_a (vmx_bitmap[VMX_IO_BITMAP_A])
952#define vmx_io_bitmap_b (vmx_bitmap[VMX_IO_BITMAP_B])
953#define vmx_msr_bitmap_legacy (vmx_bitmap[VMX_MSR_BITMAP_LEGACY])
954#define vmx_msr_bitmap_longmode (vmx_bitmap[VMX_MSR_BITMAP_LONGMODE])
955#define vmx_msr_bitmap_legacy_x2apic_apicv (vmx_bitmap[VMX_MSR_BITMAP_LEGACY_X2APIC_APICV])
956#define vmx_msr_bitmap_longmode_x2apic_apicv (vmx_bitmap[VMX_MSR_BITMAP_LONGMODE_X2APIC_APICV])
957#define vmx_msr_bitmap_legacy_x2apic (vmx_bitmap[VMX_MSR_BITMAP_LEGACY_X2APIC])
958#define vmx_msr_bitmap_longmode_x2apic (vmx_bitmap[VMX_MSR_BITMAP_LONGMODE_X2APIC])
959#define vmx_vmread_bitmap (vmx_bitmap[VMX_VMREAD_BITMAP])
960#define vmx_vmwrite_bitmap (vmx_bitmap[VMX_VMWRITE_BITMAP])
He, Qingfdef3ad2007-04-30 09:45:24 +0300961
Avi Kivity110312c2010-12-21 12:54:20 +0200962static bool cpu_has_load_ia32_efer;
Gleb Natapov8bf00a52011-10-05 14:01:22 +0200963static bool cpu_has_load_perf_global_ctrl;
Avi Kivity110312c2010-12-21 12:54:20 +0200964
Sheng Yang2384d2b2008-01-17 15:14:33 +0800965static DECLARE_BITMAP(vmx_vpid_bitmap, VMX_NR_VPIDS);
966static DEFINE_SPINLOCK(vmx_vpid_lock);
967
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +0300968static struct vmcs_config {
Avi Kivity6aa8b732006-12-10 02:21:36 -0800969 int size;
970 int order;
Jan Dakinevich9ac7e3e2016-09-04 21:23:15 +0300971 u32 basic_cap;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800972 u32 revision_id;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +0300973 u32 pin_based_exec_ctrl;
974 u32 cpu_based_exec_ctrl;
Sheng Yangf78e0e22007-10-29 09:40:42 +0800975 u32 cpu_based_2nd_exec_ctrl;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +0300976 u32 vmexit_ctrl;
977 u32 vmentry_ctrl;
978} vmcs_config;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800979
Hannes Ederefff9e52008-11-28 17:02:06 +0100980static struct vmx_capability {
Sheng Yangd56f5462008-04-25 10:13:16 +0800981 u32 ept;
982 u32 vpid;
983} vmx_capability;
984
Avi Kivity6aa8b732006-12-10 02:21:36 -0800985#define VMX_SEGMENT_FIELD(seg) \
986 [VCPU_SREG_##seg] = { \
987 .selector = GUEST_##seg##_SELECTOR, \
988 .base = GUEST_##seg##_BASE, \
989 .limit = GUEST_##seg##_LIMIT, \
990 .ar_bytes = GUEST_##seg##_AR_BYTES, \
991 }
992
Mathias Krause772e0312012-08-30 01:30:19 +0200993static const struct kvm_vmx_segment_field {
Avi Kivity6aa8b732006-12-10 02:21:36 -0800994 unsigned selector;
995 unsigned base;
996 unsigned limit;
997 unsigned ar_bytes;
998} kvm_vmx_segment_fields[] = {
999 VMX_SEGMENT_FIELD(CS),
1000 VMX_SEGMENT_FIELD(DS),
1001 VMX_SEGMENT_FIELD(ES),
1002 VMX_SEGMENT_FIELD(FS),
1003 VMX_SEGMENT_FIELD(GS),
1004 VMX_SEGMENT_FIELD(SS),
1005 VMX_SEGMENT_FIELD(TR),
1006 VMX_SEGMENT_FIELD(LDTR),
1007};
1008
Avi Kivity26bb0982009-09-07 11:14:12 +03001009static u64 host_efer;
1010
Avi Kivity6de4f3a2009-05-31 22:58:47 +03001011static void ept_save_pdptrs(struct kvm_vcpu *vcpu);
1012
Avi Kivity4d56c8a2007-04-19 14:28:44 +03001013/*
Brian Gerst8c065852010-07-17 09:03:26 -04001014 * Keep MSR_STAR at the end, as setup_msrs() will try to optimize it
Avi Kivity4d56c8a2007-04-19 14:28:44 +03001015 * away by decrementing the array size.
1016 */
Avi Kivity6aa8b732006-12-10 02:21:36 -08001017static const u32 vmx_msr_index[] = {
Avi Kivity05b3e0c2006-12-13 00:33:45 -08001018#ifdef CONFIG_X86_64
Avi Kivity44ea2b12009-09-06 15:55:37 +03001019 MSR_SYSCALL_MASK, MSR_LSTAR, MSR_CSTAR,
Avi Kivity6aa8b732006-12-10 02:21:36 -08001020#endif
Brian Gerst8c065852010-07-17 09:03:26 -04001021 MSR_EFER, MSR_TSC_AUX, MSR_STAR,
Avi Kivity6aa8b732006-12-10 02:21:36 -08001022};
Avi Kivity6aa8b732006-12-10 02:21:36 -08001023
Jan Kiszka5bb16012016-02-09 20:14:21 +01001024static inline bool is_exception_n(u32 intr_info, u8 vector)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001025{
1026 return (intr_info & (INTR_INFO_INTR_TYPE_MASK | INTR_INFO_VECTOR_MASK |
1027 INTR_INFO_VALID_MASK)) ==
Jan Kiszka5bb16012016-02-09 20:14:21 +01001028 (INTR_TYPE_HARD_EXCEPTION | vector | INTR_INFO_VALID_MASK);
1029}
1030
Jan Kiszka6f054852016-02-09 20:15:18 +01001031static inline bool is_debug(u32 intr_info)
1032{
1033 return is_exception_n(intr_info, DB_VECTOR);
1034}
1035
1036static inline bool is_breakpoint(u32 intr_info)
1037{
1038 return is_exception_n(intr_info, BP_VECTOR);
1039}
1040
Jan Kiszka5bb16012016-02-09 20:14:21 +01001041static inline bool is_page_fault(u32 intr_info)
1042{
1043 return is_exception_n(intr_info, PF_VECTOR);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001044}
1045
Gui Jianfeng31299942010-03-15 17:29:09 +08001046static inline bool is_no_device(u32 intr_info)
Anthony Liguori2ab455c2007-04-27 09:29:49 +03001047{
Jan Kiszka5bb16012016-02-09 20:14:21 +01001048 return is_exception_n(intr_info, NM_VECTOR);
Anthony Liguori2ab455c2007-04-27 09:29:49 +03001049}
1050
Gui Jianfeng31299942010-03-15 17:29:09 +08001051static inline bool is_invalid_opcode(u32 intr_info)
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05001052{
Jan Kiszka5bb16012016-02-09 20:14:21 +01001053 return is_exception_n(intr_info, UD_VECTOR);
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05001054}
1055
Gui Jianfeng31299942010-03-15 17:29:09 +08001056static inline bool is_external_interrupt(u32 intr_info)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001057{
1058 return (intr_info & (INTR_INFO_INTR_TYPE_MASK | INTR_INFO_VALID_MASK))
1059 == (INTR_TYPE_EXT_INTR | INTR_INFO_VALID_MASK);
1060}
1061
Gui Jianfeng31299942010-03-15 17:29:09 +08001062static inline bool is_machine_check(u32 intr_info)
Andi Kleena0861c02009-06-08 17:37:09 +08001063{
1064 return (intr_info & (INTR_INFO_INTR_TYPE_MASK | INTR_INFO_VECTOR_MASK |
1065 INTR_INFO_VALID_MASK)) ==
1066 (INTR_TYPE_HARD_EXCEPTION | MC_VECTOR | INTR_INFO_VALID_MASK);
1067}
1068
Gui Jianfeng31299942010-03-15 17:29:09 +08001069static inline bool cpu_has_vmx_msr_bitmap(void)
Sheng Yang25c5f222008-03-28 13:18:56 +08001070{
Sheng Yang04547152009-04-01 15:52:31 +08001071 return vmcs_config.cpu_based_exec_ctrl & CPU_BASED_USE_MSR_BITMAPS;
Sheng Yang25c5f222008-03-28 13:18:56 +08001072}
1073
Gui Jianfeng31299942010-03-15 17:29:09 +08001074static inline bool cpu_has_vmx_tpr_shadow(void)
Yang, Sheng6e5d8652007-09-12 18:03:11 +08001075{
Sheng Yang04547152009-04-01 15:52:31 +08001076 return vmcs_config.cpu_based_exec_ctrl & CPU_BASED_TPR_SHADOW;
Yang, Sheng6e5d8652007-09-12 18:03:11 +08001077}
1078
Paolo Bonzini35754c92015-07-29 12:05:37 +02001079static inline bool cpu_need_tpr_shadow(struct kvm_vcpu *vcpu)
Yang, Sheng6e5d8652007-09-12 18:03:11 +08001080{
Paolo Bonzini35754c92015-07-29 12:05:37 +02001081 return cpu_has_vmx_tpr_shadow() && lapic_in_kernel(vcpu);
Yang, Sheng6e5d8652007-09-12 18:03:11 +08001082}
1083
Gui Jianfeng31299942010-03-15 17:29:09 +08001084static inline bool cpu_has_secondary_exec_ctrls(void)
Sheng Yangf78e0e22007-10-29 09:40:42 +08001085{
Sheng Yang04547152009-04-01 15:52:31 +08001086 return vmcs_config.cpu_based_exec_ctrl &
1087 CPU_BASED_ACTIVATE_SECONDARY_CONTROLS;
Sheng Yangf78e0e22007-10-29 09:40:42 +08001088}
1089
Avi Kivity774ead32007-12-26 13:57:04 +02001090static inline bool cpu_has_vmx_virtualize_apic_accesses(void)
Sheng Yangf78e0e22007-10-29 09:40:42 +08001091{
Sheng Yang04547152009-04-01 15:52:31 +08001092 return vmcs_config.cpu_based_2nd_exec_ctrl &
1093 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES;
1094}
1095
Yang Zhang8d146952013-01-25 10:18:50 +08001096static inline bool cpu_has_vmx_virtualize_x2apic_mode(void)
1097{
1098 return vmcs_config.cpu_based_2nd_exec_ctrl &
1099 SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE;
1100}
1101
Yang Zhang83d4c282013-01-25 10:18:49 +08001102static inline bool cpu_has_vmx_apic_register_virt(void)
1103{
1104 return vmcs_config.cpu_based_2nd_exec_ctrl &
1105 SECONDARY_EXEC_APIC_REGISTER_VIRT;
1106}
1107
Yang Zhangc7c9c562013-01-25 10:18:51 +08001108static inline bool cpu_has_vmx_virtual_intr_delivery(void)
1109{
1110 return vmcs_config.cpu_based_2nd_exec_ctrl &
1111 SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY;
1112}
1113
Yunhong Jiang64672c92016-06-13 14:19:59 -07001114/*
1115 * Comment's format: document - errata name - stepping - processor name.
1116 * Refer from
1117 * https://www.virtualbox.org/svn/vbox/trunk/src/VBox/VMM/VMMR0/HMR0.cpp
1118 */
1119static u32 vmx_preemption_cpu_tfms[] = {
1120/* 323344.pdf - BA86 - D0 - Xeon 7500 Series */
11210x000206E6,
1122/* 323056.pdf - AAX65 - C2 - Xeon L3406 */
1123/* 322814.pdf - AAT59 - C2 - i7-600, i5-500, i5-400 and i3-300 Mobile */
1124/* 322911.pdf - AAU65 - C2 - i5-600, i3-500 Desktop and Pentium G6950 */
11250x00020652,
1126/* 322911.pdf - AAU65 - K0 - i5-600, i3-500 Desktop and Pentium G6950 */
11270x00020655,
1128/* 322373.pdf - AAO95 - B1 - Xeon 3400 Series */
1129/* 322166.pdf - AAN92 - B1 - i7-800 and i5-700 Desktop */
1130/*
1131 * 320767.pdf - AAP86 - B1 -
1132 * i7-900 Mobile Extreme, i7-800 and i7-700 Mobile
1133 */
11340x000106E5,
1135/* 321333.pdf - AAM126 - C0 - Xeon 3500 */
11360x000106A0,
1137/* 321333.pdf - AAM126 - C1 - Xeon 3500 */
11380x000106A1,
1139/* 320836.pdf - AAJ124 - C0 - i7-900 Desktop Extreme and i7-900 Desktop */
11400x000106A4,
1141 /* 321333.pdf - AAM126 - D0 - Xeon 3500 */
1142 /* 321324.pdf - AAK139 - D0 - Xeon 5500 */
1143 /* 320836.pdf - AAJ124 - D0 - i7-900 Extreme and i7-900 Desktop */
11440x000106A5,
1145};
1146
1147static inline bool cpu_has_broken_vmx_preemption_timer(void)
1148{
1149 u32 eax = cpuid_eax(0x00000001), i;
1150
1151 /* Clear the reserved bits */
1152 eax &= ~(0x3U << 14 | 0xfU << 28);
Wei Yongjun03f6a222016-07-04 15:13:07 +00001153 for (i = 0; i < ARRAY_SIZE(vmx_preemption_cpu_tfms); i++)
Yunhong Jiang64672c92016-06-13 14:19:59 -07001154 if (eax == vmx_preemption_cpu_tfms[i])
1155 return true;
1156
1157 return false;
1158}
1159
1160static inline bool cpu_has_vmx_preemption_timer(void)
1161{
Yunhong Jiang64672c92016-06-13 14:19:59 -07001162 return vmcs_config.pin_based_exec_ctrl &
1163 PIN_BASED_VMX_PREEMPTION_TIMER;
1164}
1165
Yang Zhang01e439b2013-04-11 19:25:12 +08001166static inline bool cpu_has_vmx_posted_intr(void)
1167{
Paolo Bonzinid6a858d2015-09-28 11:58:14 +02001168 return IS_ENABLED(CONFIG_X86_LOCAL_APIC) &&
1169 vmcs_config.pin_based_exec_ctrl & PIN_BASED_POSTED_INTR;
Yang Zhang01e439b2013-04-11 19:25:12 +08001170}
1171
1172static inline bool cpu_has_vmx_apicv(void)
1173{
1174 return cpu_has_vmx_apic_register_virt() &&
1175 cpu_has_vmx_virtual_intr_delivery() &&
1176 cpu_has_vmx_posted_intr();
1177}
1178
Sheng Yang04547152009-04-01 15:52:31 +08001179static inline bool cpu_has_vmx_flexpriority(void)
1180{
1181 return cpu_has_vmx_tpr_shadow() &&
1182 cpu_has_vmx_virtualize_apic_accesses();
Sheng Yangf78e0e22007-10-29 09:40:42 +08001183}
1184
Marcelo Tosattie7997942009-06-11 12:07:40 -03001185static inline bool cpu_has_vmx_ept_execute_only(void)
1186{
Gui Jianfeng31299942010-03-15 17:29:09 +08001187 return vmx_capability.ept & VMX_EPT_EXECUTE_ONLY_BIT;
Marcelo Tosattie7997942009-06-11 12:07:40 -03001188}
1189
Marcelo Tosattie7997942009-06-11 12:07:40 -03001190static inline bool cpu_has_vmx_ept_2m_page(void)
1191{
Gui Jianfeng31299942010-03-15 17:29:09 +08001192 return vmx_capability.ept & VMX_EPT_2MB_PAGE_BIT;
Marcelo Tosattie7997942009-06-11 12:07:40 -03001193}
1194
Sheng Yang878403b2010-01-05 19:02:29 +08001195static inline bool cpu_has_vmx_ept_1g_page(void)
1196{
Gui Jianfeng31299942010-03-15 17:29:09 +08001197 return vmx_capability.ept & VMX_EPT_1GB_PAGE_BIT;
Sheng Yang878403b2010-01-05 19:02:29 +08001198}
1199
Sheng Yang4bc9b982010-06-02 14:05:24 +08001200static inline bool cpu_has_vmx_ept_4levels(void)
1201{
1202 return vmx_capability.ept & VMX_EPT_PAGE_WALK_4_BIT;
1203}
1204
David Hildenbrand42aa53b2017-08-10 23:15:29 +02001205static inline bool cpu_has_vmx_ept_mt_wb(void)
1206{
1207 return vmx_capability.ept & VMX_EPTP_WB_BIT;
1208}
1209
Yu Zhang855feb62017-08-24 20:27:55 +08001210static inline bool cpu_has_vmx_ept_5levels(void)
1211{
1212 return vmx_capability.ept & VMX_EPT_PAGE_WALK_5_BIT;
1213}
1214
Xudong Hao83c3a332012-05-28 19:33:35 +08001215static inline bool cpu_has_vmx_ept_ad_bits(void)
1216{
1217 return vmx_capability.ept & VMX_EPT_AD_BIT;
1218}
1219
Gui Jianfeng31299942010-03-15 17:29:09 +08001220static inline bool cpu_has_vmx_invept_context(void)
Sheng Yangd56f5462008-04-25 10:13:16 +08001221{
Gui Jianfeng31299942010-03-15 17:29:09 +08001222 return vmx_capability.ept & VMX_EPT_EXTENT_CONTEXT_BIT;
Sheng Yangd56f5462008-04-25 10:13:16 +08001223}
1224
Gui Jianfeng31299942010-03-15 17:29:09 +08001225static inline bool cpu_has_vmx_invept_global(void)
Sheng Yangd56f5462008-04-25 10:13:16 +08001226{
Gui Jianfeng31299942010-03-15 17:29:09 +08001227 return vmx_capability.ept & VMX_EPT_EXTENT_GLOBAL_BIT;
Sheng Yangd56f5462008-04-25 10:13:16 +08001228}
1229
Gui Jianfeng518c8ae2010-06-04 08:51:39 +08001230static inline bool cpu_has_vmx_invvpid_single(void)
1231{
1232 return vmx_capability.vpid & VMX_VPID_EXTENT_SINGLE_CONTEXT_BIT;
1233}
1234
Gui Jianfengb9d762f2010-06-07 10:32:29 +08001235static inline bool cpu_has_vmx_invvpid_global(void)
1236{
1237 return vmx_capability.vpid & VMX_VPID_EXTENT_GLOBAL_CONTEXT_BIT;
1238}
1239
Wanpeng Li08d839c2017-03-23 05:30:08 -07001240static inline bool cpu_has_vmx_invvpid(void)
1241{
1242 return vmx_capability.vpid & VMX_VPID_INVVPID_BIT;
1243}
1244
Gui Jianfeng31299942010-03-15 17:29:09 +08001245static inline bool cpu_has_vmx_ept(void)
Sheng Yangd56f5462008-04-25 10:13:16 +08001246{
Sheng Yang04547152009-04-01 15:52:31 +08001247 return vmcs_config.cpu_based_2nd_exec_ctrl &
1248 SECONDARY_EXEC_ENABLE_EPT;
Sheng Yangd56f5462008-04-25 10:13:16 +08001249}
1250
Gui Jianfeng31299942010-03-15 17:29:09 +08001251static inline bool cpu_has_vmx_unrestricted_guest(void)
Nitin A Kamble3a624e22009-06-08 11:34:16 -07001252{
1253 return vmcs_config.cpu_based_2nd_exec_ctrl &
1254 SECONDARY_EXEC_UNRESTRICTED_GUEST;
1255}
1256
Gui Jianfeng31299942010-03-15 17:29:09 +08001257static inline bool cpu_has_vmx_ple(void)
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08001258{
1259 return vmcs_config.cpu_based_2nd_exec_ctrl &
1260 SECONDARY_EXEC_PAUSE_LOOP_EXITING;
1261}
1262
Jan Dakinevich9ac7e3e2016-09-04 21:23:15 +03001263static inline bool cpu_has_vmx_basic_inout(void)
1264{
1265 return (((u64)vmcs_config.basic_cap << 32) & VMX_BASIC_INOUT);
1266}
1267
Paolo Bonzini35754c92015-07-29 12:05:37 +02001268static inline bool cpu_need_virtualize_apic_accesses(struct kvm_vcpu *vcpu)
Sheng Yangf78e0e22007-10-29 09:40:42 +08001269{
Paolo Bonzini35754c92015-07-29 12:05:37 +02001270 return flexpriority_enabled && lapic_in_kernel(vcpu);
Sheng Yangf78e0e22007-10-29 09:40:42 +08001271}
1272
Gui Jianfeng31299942010-03-15 17:29:09 +08001273static inline bool cpu_has_vmx_vpid(void)
Sheng Yang2384d2b2008-01-17 15:14:33 +08001274{
Sheng Yang04547152009-04-01 15:52:31 +08001275 return vmcs_config.cpu_based_2nd_exec_ctrl &
1276 SECONDARY_EXEC_ENABLE_VPID;
Sheng Yang2384d2b2008-01-17 15:14:33 +08001277}
1278
Gui Jianfeng31299942010-03-15 17:29:09 +08001279static inline bool cpu_has_vmx_rdtscp(void)
Sheng Yang4e47c7a2009-12-18 16:48:47 +08001280{
1281 return vmcs_config.cpu_based_2nd_exec_ctrl &
1282 SECONDARY_EXEC_RDTSCP;
1283}
1284
Mao, Junjiead756a12012-07-02 01:18:48 +00001285static inline bool cpu_has_vmx_invpcid(void)
1286{
1287 return vmcs_config.cpu_based_2nd_exec_ctrl &
1288 SECONDARY_EXEC_ENABLE_INVPCID;
1289}
1290
Sheng Yangf5f48ee2010-06-30 12:25:15 +08001291static inline bool cpu_has_vmx_wbinvd_exit(void)
1292{
1293 return vmcs_config.cpu_based_2nd_exec_ctrl &
1294 SECONDARY_EXEC_WBINVD_EXITING;
1295}
1296
Abel Gordonabc4fc52013-04-18 14:35:25 +03001297static inline bool cpu_has_vmx_shadow_vmcs(void)
1298{
1299 u64 vmx_msr;
1300 rdmsrl(MSR_IA32_VMX_MISC, vmx_msr);
1301 /* check if the cpu supports writing r/o exit information fields */
1302 if (!(vmx_msr & MSR_IA32_VMX_MISC_VMWRITE_SHADOW_RO_FIELDS))
1303 return false;
1304
1305 return vmcs_config.cpu_based_2nd_exec_ctrl &
1306 SECONDARY_EXEC_SHADOW_VMCS;
1307}
1308
Kai Huang843e4332015-01-28 10:54:28 +08001309static inline bool cpu_has_vmx_pml(void)
1310{
1311 return vmcs_config.cpu_based_2nd_exec_ctrl & SECONDARY_EXEC_ENABLE_PML;
1312}
1313
Haozhong Zhang64903d62015-10-20 15:39:09 +08001314static inline bool cpu_has_vmx_tsc_scaling(void)
1315{
1316 return vmcs_config.cpu_based_2nd_exec_ctrl &
1317 SECONDARY_EXEC_TSC_SCALING;
1318}
1319
Bandan Das2a499e42017-08-03 15:54:41 -04001320static inline bool cpu_has_vmx_vmfunc(void)
1321{
1322 return vmcs_config.cpu_based_2nd_exec_ctrl &
1323 SECONDARY_EXEC_ENABLE_VMFUNC;
1324}
1325
Sheng Yang04547152009-04-01 15:52:31 +08001326static inline bool report_flexpriority(void)
1327{
1328 return flexpriority_enabled;
1329}
1330
Jim Mattsonc7c2c702017-05-05 11:28:09 -07001331static inline unsigned nested_cpu_vmx_misc_cr3_count(struct kvm_vcpu *vcpu)
1332{
1333 return vmx_misc_cr3_count(to_vmx(vcpu)->nested.nested_vmx_misc_low);
1334}
1335
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03001336static inline bool nested_cpu_has(struct vmcs12 *vmcs12, u32 bit)
1337{
1338 return vmcs12->cpu_based_vm_exec_control & bit;
1339}
1340
1341static inline bool nested_cpu_has2(struct vmcs12 *vmcs12, u32 bit)
1342{
1343 return (vmcs12->cpu_based_vm_exec_control &
1344 CPU_BASED_ACTIVATE_SECONDARY_CONTROLS) &&
1345 (vmcs12->secondary_vm_exec_control & bit);
1346}
1347
Nadav Har'Elf5c43682013-08-05 11:07:20 +03001348static inline bool nested_cpu_has_virtual_nmis(struct vmcs12 *vmcs12)
Nadav Har'El644d7112011-05-25 23:12:35 +03001349{
1350 return vmcs12->pin_based_vm_exec_control & PIN_BASED_VIRTUAL_NMIS;
1351}
1352
Jan Kiszkaf4124502014-03-07 20:03:13 +01001353static inline bool nested_cpu_has_preemption_timer(struct vmcs12 *vmcs12)
1354{
1355 return vmcs12->pin_based_vm_exec_control &
1356 PIN_BASED_VMX_PREEMPTION_TIMER;
1357}
1358
Nadav Har'El155a97a2013-08-05 11:07:16 +03001359static inline int nested_cpu_has_ept(struct vmcs12 *vmcs12)
1360{
1361 return nested_cpu_has2(vmcs12, SECONDARY_EXEC_ENABLE_EPT);
1362}
1363
Wanpeng Li81dc01f2014-12-04 19:11:07 +08001364static inline bool nested_cpu_has_xsaves(struct vmcs12 *vmcs12)
1365{
Paolo Bonzini3db13482017-08-24 14:48:03 +02001366 return nested_cpu_has2(vmcs12, SECONDARY_EXEC_XSAVES);
Wanpeng Li81dc01f2014-12-04 19:11:07 +08001367}
1368
Bandan Dasc5f983f2017-05-05 15:25:14 -04001369static inline bool nested_cpu_has_pml(struct vmcs12 *vmcs12)
1370{
1371 return nested_cpu_has2(vmcs12, SECONDARY_EXEC_ENABLE_PML);
1372}
1373
Wincy Vanf2b93282015-02-03 23:56:03 +08001374static inline bool nested_cpu_has_virt_x2apic_mode(struct vmcs12 *vmcs12)
1375{
1376 return nested_cpu_has2(vmcs12, SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE);
1377}
1378
Wanpeng Li5c614b32015-10-13 09:18:36 -07001379static inline bool nested_cpu_has_vpid(struct vmcs12 *vmcs12)
1380{
1381 return nested_cpu_has2(vmcs12, SECONDARY_EXEC_ENABLE_VPID);
1382}
1383
Wincy Van82f0dd42015-02-03 23:57:18 +08001384static inline bool nested_cpu_has_apic_reg_virt(struct vmcs12 *vmcs12)
1385{
1386 return nested_cpu_has2(vmcs12, SECONDARY_EXEC_APIC_REGISTER_VIRT);
1387}
1388
Wincy Van608406e2015-02-03 23:57:51 +08001389static inline bool nested_cpu_has_vid(struct vmcs12 *vmcs12)
1390{
1391 return nested_cpu_has2(vmcs12, SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY);
1392}
1393
Wincy Van705699a2015-02-03 23:58:17 +08001394static inline bool nested_cpu_has_posted_intr(struct vmcs12 *vmcs12)
1395{
1396 return vmcs12->pin_based_vm_exec_control & PIN_BASED_POSTED_INTR;
1397}
1398
Bandan Das27c42a12017-08-03 15:54:42 -04001399static inline bool nested_cpu_has_vmfunc(struct vmcs12 *vmcs12)
1400{
1401 return nested_cpu_has2(vmcs12, SECONDARY_EXEC_ENABLE_VMFUNC);
1402}
1403
Bandan Das41ab9372017-08-03 15:54:43 -04001404static inline bool nested_cpu_has_eptp_switching(struct vmcs12 *vmcs12)
1405{
1406 return nested_cpu_has_vmfunc(vmcs12) &&
1407 (vmcs12->vm_function_control &
1408 VMX_VMFUNC_EPTP_SWITCHING);
1409}
1410
Jim Mattsonef85b672016-12-12 11:01:37 -08001411static inline bool is_nmi(u32 intr_info)
Nadav Har'El644d7112011-05-25 23:12:35 +03001412{
1413 return (intr_info & (INTR_INFO_INTR_TYPE_MASK | INTR_INFO_VALID_MASK))
Jim Mattsonef85b672016-12-12 11:01:37 -08001414 == (INTR_TYPE_NMI_INTR | INTR_INFO_VALID_MASK);
Nadav Har'El644d7112011-05-25 23:12:35 +03001415}
1416
Jan Kiszka533558b2014-01-04 18:47:20 +01001417static void nested_vmx_vmexit(struct kvm_vcpu *vcpu, u32 exit_reason,
1418 u32 exit_intr_info,
1419 unsigned long exit_qualification);
Nadav Har'El7c177932011-05-25 23:12:04 +03001420static void nested_vmx_entry_failure(struct kvm_vcpu *vcpu,
1421 struct vmcs12 *vmcs12,
1422 u32 reason, unsigned long qualification);
1423
Rusty Russell8b9cf982007-07-30 16:31:43 +10001424static int __find_msr_index(struct vcpu_vmx *vmx, u32 msr)
Avi Kivity7725f0b2006-12-13 00:34:01 -08001425{
1426 int i;
1427
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001428 for (i = 0; i < vmx->nmsrs; ++i)
Avi Kivity26bb0982009-09-07 11:14:12 +03001429 if (vmx_msr_index[vmx->guest_msrs[i].index] == msr)
Eddie Donga75beee2007-05-17 18:55:15 +03001430 return i;
1431 return -1;
1432}
1433
Sheng Yang2384d2b2008-01-17 15:14:33 +08001434static inline void __invvpid(int ext, u16 vpid, gva_t gva)
1435{
1436 struct {
1437 u64 vpid : 16;
1438 u64 rsvd : 48;
1439 u64 gva;
1440 } operand = { vpid, 0, gva };
1441
Avi Kivity4ecac3f2008-05-13 13:23:38 +03001442 asm volatile (__ex(ASM_VMX_INVVPID)
Sheng Yang2384d2b2008-01-17 15:14:33 +08001443 /* CF==1 or ZF==1 --> rc = -1 */
1444 "; ja 1f ; ud2 ; 1:"
1445 : : "a"(&operand), "c"(ext) : "cc", "memory");
1446}
1447
Sheng Yang14394422008-04-28 12:24:45 +08001448static inline void __invept(int ext, u64 eptp, gpa_t gpa)
1449{
1450 struct {
1451 u64 eptp, gpa;
1452 } operand = {eptp, gpa};
1453
Avi Kivity4ecac3f2008-05-13 13:23:38 +03001454 asm volatile (__ex(ASM_VMX_INVEPT)
Sheng Yang14394422008-04-28 12:24:45 +08001455 /* CF==1 or ZF==1 --> rc = -1 */
1456 "; ja 1f ; ud2 ; 1:\n"
1457 : : "a" (&operand), "c" (ext) : "cc", "memory");
1458}
1459
Avi Kivity26bb0982009-09-07 11:14:12 +03001460static struct shared_msr_entry *find_msr_entry(struct vcpu_vmx *vmx, u32 msr)
Eddie Donga75beee2007-05-17 18:55:15 +03001461{
1462 int i;
1463
Rusty Russell8b9cf982007-07-30 16:31:43 +10001464 i = __find_msr_index(vmx, msr);
Eddie Donga75beee2007-05-17 18:55:15 +03001465 if (i >= 0)
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04001466 return &vmx->guest_msrs[i];
Al Viro8b6d44c2007-02-09 16:38:40 +00001467 return NULL;
Avi Kivity7725f0b2006-12-13 00:34:01 -08001468}
1469
Avi Kivity6aa8b732006-12-10 02:21:36 -08001470static void vmcs_clear(struct vmcs *vmcs)
1471{
1472 u64 phys_addr = __pa(vmcs);
1473 u8 error;
1474
Avi Kivity4ecac3f2008-05-13 13:23:38 +03001475 asm volatile (__ex(ASM_VMX_VMCLEAR_RAX) "; setna %0"
Avi Kivity16d8f722010-12-21 16:51:50 +02001476 : "=qm"(error) : "a"(&phys_addr), "m"(phys_addr)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001477 : "cc", "memory");
1478 if (error)
1479 printk(KERN_ERR "kvm: vmclear fail: %p/%llx\n",
1480 vmcs, phys_addr);
1481}
1482
Nadav Har'Eld462b812011-05-24 15:26:10 +03001483static inline void loaded_vmcs_init(struct loaded_vmcs *loaded_vmcs)
1484{
1485 vmcs_clear(loaded_vmcs->vmcs);
Jim Mattson355f4fb2016-10-28 08:29:39 -07001486 if (loaded_vmcs->shadow_vmcs && loaded_vmcs->launched)
1487 vmcs_clear(loaded_vmcs->shadow_vmcs);
Nadav Har'Eld462b812011-05-24 15:26:10 +03001488 loaded_vmcs->cpu = -1;
1489 loaded_vmcs->launched = 0;
1490}
1491
Dongxiao Xu7725b892010-05-11 18:29:38 +08001492static void vmcs_load(struct vmcs *vmcs)
1493{
1494 u64 phys_addr = __pa(vmcs);
1495 u8 error;
1496
1497 asm volatile (__ex(ASM_VMX_VMPTRLD_RAX) "; setna %0"
Avi Kivity16d8f722010-12-21 16:51:50 +02001498 : "=qm"(error) : "a"(&phys_addr), "m"(phys_addr)
Dongxiao Xu7725b892010-05-11 18:29:38 +08001499 : "cc", "memory");
1500 if (error)
Nadav Har'El2844d842011-05-25 23:16:40 +03001501 printk(KERN_ERR "kvm: vmptrld %p/%llx failed\n",
Dongxiao Xu7725b892010-05-11 18:29:38 +08001502 vmcs, phys_addr);
1503}
1504
Dave Young2965faa2015-09-09 15:38:55 -07001505#ifdef CONFIG_KEXEC_CORE
Zhang Yanfei8f536b72012-12-06 23:43:34 +08001506/*
1507 * This bitmap is used to indicate whether the vmclear
1508 * operation is enabled on all cpus. All disabled by
1509 * default.
1510 */
1511static cpumask_t crash_vmclear_enabled_bitmap = CPU_MASK_NONE;
1512
1513static inline void crash_enable_local_vmclear(int cpu)
1514{
1515 cpumask_set_cpu(cpu, &crash_vmclear_enabled_bitmap);
1516}
1517
1518static inline void crash_disable_local_vmclear(int cpu)
1519{
1520 cpumask_clear_cpu(cpu, &crash_vmclear_enabled_bitmap);
1521}
1522
1523static inline int crash_local_vmclear_enabled(int cpu)
1524{
1525 return cpumask_test_cpu(cpu, &crash_vmclear_enabled_bitmap);
1526}
1527
1528static void crash_vmclear_local_loaded_vmcss(void)
1529{
1530 int cpu = raw_smp_processor_id();
1531 struct loaded_vmcs *v;
1532
1533 if (!crash_local_vmclear_enabled(cpu))
1534 return;
1535
1536 list_for_each_entry(v, &per_cpu(loaded_vmcss_on_cpu, cpu),
1537 loaded_vmcss_on_cpu_link)
1538 vmcs_clear(v->vmcs);
1539}
1540#else
1541static inline void crash_enable_local_vmclear(int cpu) { }
1542static inline void crash_disable_local_vmclear(int cpu) { }
Dave Young2965faa2015-09-09 15:38:55 -07001543#endif /* CONFIG_KEXEC_CORE */
Zhang Yanfei8f536b72012-12-06 23:43:34 +08001544
Nadav Har'Eld462b812011-05-24 15:26:10 +03001545static void __loaded_vmcs_clear(void *arg)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001546{
Nadav Har'Eld462b812011-05-24 15:26:10 +03001547 struct loaded_vmcs *loaded_vmcs = arg;
Ingo Molnard3b2c332007-01-05 16:36:23 -08001548 int cpu = raw_smp_processor_id();
Avi Kivity6aa8b732006-12-10 02:21:36 -08001549
Nadav Har'Eld462b812011-05-24 15:26:10 +03001550 if (loaded_vmcs->cpu != cpu)
1551 return; /* vcpu migration can race with cpu offline */
1552 if (per_cpu(current_vmcs, cpu) == loaded_vmcs->vmcs)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001553 per_cpu(current_vmcs, cpu) = NULL;
Zhang Yanfei8f536b72012-12-06 23:43:34 +08001554 crash_disable_local_vmclear(cpu);
Nadav Har'Eld462b812011-05-24 15:26:10 +03001555 list_del(&loaded_vmcs->loaded_vmcss_on_cpu_link);
Xiao Guangrong5a560f82012-11-28 20:54:14 +08001556
1557 /*
1558 * we should ensure updating loaded_vmcs->loaded_vmcss_on_cpu_link
1559 * is before setting loaded_vmcs->vcpu to -1 which is done in
1560 * loaded_vmcs_init. Otherwise, other cpu can see vcpu = -1 fist
1561 * then adds the vmcs into percpu list before it is deleted.
1562 */
1563 smp_wmb();
1564
Nadav Har'Eld462b812011-05-24 15:26:10 +03001565 loaded_vmcs_init(loaded_vmcs);
Zhang Yanfei8f536b72012-12-06 23:43:34 +08001566 crash_enable_local_vmclear(cpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001567}
1568
Nadav Har'Eld462b812011-05-24 15:26:10 +03001569static void loaded_vmcs_clear(struct loaded_vmcs *loaded_vmcs)
Avi Kivity8d0be2b2007-02-12 00:54:46 -08001570{
Xiao Guangronge6c7d322012-11-28 20:53:15 +08001571 int cpu = loaded_vmcs->cpu;
1572
1573 if (cpu != -1)
1574 smp_call_function_single(cpu,
1575 __loaded_vmcs_clear, loaded_vmcs, 1);
Avi Kivity8d0be2b2007-02-12 00:54:46 -08001576}
1577
Wanpeng Lidd5f5342015-09-23 18:26:57 +08001578static inline void vpid_sync_vcpu_single(int vpid)
Sheng Yang2384d2b2008-01-17 15:14:33 +08001579{
Wanpeng Lidd5f5342015-09-23 18:26:57 +08001580 if (vpid == 0)
Sheng Yang2384d2b2008-01-17 15:14:33 +08001581 return;
1582
Gui Jianfeng518c8ae2010-06-04 08:51:39 +08001583 if (cpu_has_vmx_invvpid_single())
Wanpeng Lidd5f5342015-09-23 18:26:57 +08001584 __invvpid(VMX_VPID_EXTENT_SINGLE_CONTEXT, vpid, 0);
Sheng Yang2384d2b2008-01-17 15:14:33 +08001585}
1586
Gui Jianfengb9d762f2010-06-07 10:32:29 +08001587static inline void vpid_sync_vcpu_global(void)
1588{
1589 if (cpu_has_vmx_invvpid_global())
1590 __invvpid(VMX_VPID_EXTENT_ALL_CONTEXT, 0, 0);
1591}
1592
Wanpeng Lidd5f5342015-09-23 18:26:57 +08001593static inline void vpid_sync_context(int vpid)
Gui Jianfengb9d762f2010-06-07 10:32:29 +08001594{
1595 if (cpu_has_vmx_invvpid_single())
Wanpeng Lidd5f5342015-09-23 18:26:57 +08001596 vpid_sync_vcpu_single(vpid);
Gui Jianfengb9d762f2010-06-07 10:32:29 +08001597 else
1598 vpid_sync_vcpu_global();
1599}
1600
Sheng Yang14394422008-04-28 12:24:45 +08001601static inline void ept_sync_global(void)
1602{
1603 if (cpu_has_vmx_invept_global())
1604 __invept(VMX_EPT_EXTENT_GLOBAL, 0, 0);
1605}
1606
1607static inline void ept_sync_context(u64 eptp)
1608{
Avi Kivity089d0342009-03-23 18:26:32 +02001609 if (enable_ept) {
Sheng Yang14394422008-04-28 12:24:45 +08001610 if (cpu_has_vmx_invept_context())
1611 __invept(VMX_EPT_EXTENT_CONTEXT, eptp, 0);
1612 else
1613 ept_sync_global();
1614 }
1615}
1616
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001617static __always_inline void vmcs_check16(unsigned long field)
1618{
1619 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6001) == 0x2000,
1620 "16-bit accessor invalid for 64-bit field");
1621 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6001) == 0x2001,
1622 "16-bit accessor invalid for 64-bit high field");
1623 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6000) == 0x4000,
1624 "16-bit accessor invalid for 32-bit high field");
1625 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6000) == 0x6000,
1626 "16-bit accessor invalid for natural width field");
1627}
1628
1629static __always_inline void vmcs_check32(unsigned long field)
1630{
1631 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6000) == 0,
1632 "32-bit accessor invalid for 16-bit field");
1633 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6000) == 0x6000,
1634 "32-bit accessor invalid for natural width field");
1635}
1636
1637static __always_inline void vmcs_check64(unsigned long field)
1638{
1639 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6000) == 0,
1640 "64-bit accessor invalid for 16-bit field");
1641 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6001) == 0x2001,
1642 "64-bit accessor invalid for 64-bit high field");
1643 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6000) == 0x4000,
1644 "64-bit accessor invalid for 32-bit field");
1645 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6000) == 0x6000,
1646 "64-bit accessor invalid for natural width field");
1647}
1648
1649static __always_inline void vmcs_checkl(unsigned long field)
1650{
1651 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6000) == 0,
1652 "Natural width accessor invalid for 16-bit field");
1653 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6001) == 0x2000,
1654 "Natural width accessor invalid for 64-bit field");
1655 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6001) == 0x2001,
1656 "Natural width accessor invalid for 64-bit high field");
1657 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6000) == 0x4000,
1658 "Natural width accessor invalid for 32-bit field");
1659}
1660
1661static __always_inline unsigned long __vmcs_readl(unsigned long field)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001662{
Avi Kivity5e520e62011-05-15 10:13:12 -04001663 unsigned long value;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001664
Avi Kivity5e520e62011-05-15 10:13:12 -04001665 asm volatile (__ex_clear(ASM_VMX_VMREAD_RDX_RAX, "%0")
1666 : "=a"(value) : "d"(field) : "cc");
Avi Kivity6aa8b732006-12-10 02:21:36 -08001667 return value;
1668}
1669
Avi Kivity96304212011-05-15 10:13:13 -04001670static __always_inline u16 vmcs_read16(unsigned long field)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001671{
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001672 vmcs_check16(field);
1673 return __vmcs_readl(field);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001674}
1675
Avi Kivity96304212011-05-15 10:13:13 -04001676static __always_inline u32 vmcs_read32(unsigned long field)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001677{
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001678 vmcs_check32(field);
1679 return __vmcs_readl(field);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001680}
1681
Avi Kivity96304212011-05-15 10:13:13 -04001682static __always_inline u64 vmcs_read64(unsigned long field)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001683{
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001684 vmcs_check64(field);
Avi Kivity05b3e0c2006-12-13 00:33:45 -08001685#ifdef CONFIG_X86_64
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001686 return __vmcs_readl(field);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001687#else
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001688 return __vmcs_readl(field) | ((u64)__vmcs_readl(field+1) << 32);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001689#endif
1690}
1691
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001692static __always_inline unsigned long vmcs_readl(unsigned long field)
1693{
1694 vmcs_checkl(field);
1695 return __vmcs_readl(field);
1696}
1697
Avi Kivitye52de1b2007-01-05 16:36:56 -08001698static noinline void vmwrite_error(unsigned long field, unsigned long value)
1699{
1700 printk(KERN_ERR "vmwrite error: reg %lx value %lx (err %d)\n",
1701 field, value, vmcs_read32(VM_INSTRUCTION_ERROR));
1702 dump_stack();
1703}
1704
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001705static __always_inline void __vmcs_writel(unsigned long field, unsigned long value)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001706{
1707 u8 error;
1708
Avi Kivity4ecac3f2008-05-13 13:23:38 +03001709 asm volatile (__ex(ASM_VMX_VMWRITE_RAX_RDX) "; setna %0"
Mike Dayd77c26f2007-10-08 09:02:08 -04001710 : "=q"(error) : "a"(value), "d"(field) : "cc");
Avi Kivitye52de1b2007-01-05 16:36:56 -08001711 if (unlikely(error))
1712 vmwrite_error(field, value);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001713}
1714
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001715static __always_inline void vmcs_write16(unsigned long field, u16 value)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001716{
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001717 vmcs_check16(field);
1718 __vmcs_writel(field, value);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001719}
1720
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001721static __always_inline void vmcs_write32(unsigned long field, u32 value)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001722{
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001723 vmcs_check32(field);
1724 __vmcs_writel(field, value);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001725}
1726
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001727static __always_inline void vmcs_write64(unsigned long field, u64 value)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001728{
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001729 vmcs_check64(field);
1730 __vmcs_writel(field, value);
Avi Kivity7682f2d2008-05-12 19:25:43 +03001731#ifndef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08001732 asm volatile ("");
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001733 __vmcs_writel(field+1, value >> 32);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001734#endif
1735}
1736
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001737static __always_inline void vmcs_writel(unsigned long field, unsigned long value)
Anthony Liguori2ab455c2007-04-27 09:29:49 +03001738{
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001739 vmcs_checkl(field);
1740 __vmcs_writel(field, value);
Anthony Liguori2ab455c2007-04-27 09:29:49 +03001741}
1742
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001743static __always_inline void vmcs_clear_bits(unsigned long field, u32 mask)
Anthony Liguori2ab455c2007-04-27 09:29:49 +03001744{
Paolo Bonzini8a86aea92015-12-03 15:56:55 +01001745 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6000) == 0x2000,
1746 "vmcs_clear_bits does not support 64-bit fields");
1747 __vmcs_writel(field, __vmcs_readl(field) & ~mask);
1748}
1749
1750static __always_inline void vmcs_set_bits(unsigned long field, u32 mask)
1751{
1752 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6000) == 0x2000,
1753 "vmcs_set_bits does not support 64-bit fields");
1754 __vmcs_writel(field, __vmcs_readl(field) | mask);
Anthony Liguori2ab455c2007-04-27 09:29:49 +03001755}
1756
Paolo Bonzini8391ce42016-07-07 14:58:33 +02001757static inline void vm_entry_controls_reset_shadow(struct vcpu_vmx *vmx)
1758{
1759 vmx->vm_entry_controls_shadow = vmcs_read32(VM_ENTRY_CONTROLS);
1760}
1761
Gleb Natapov2961e8762013-11-25 15:37:13 +02001762static inline void vm_entry_controls_init(struct vcpu_vmx *vmx, u32 val)
1763{
1764 vmcs_write32(VM_ENTRY_CONTROLS, val);
1765 vmx->vm_entry_controls_shadow = val;
1766}
1767
1768static inline void vm_entry_controls_set(struct vcpu_vmx *vmx, u32 val)
1769{
1770 if (vmx->vm_entry_controls_shadow != val)
1771 vm_entry_controls_init(vmx, val);
1772}
1773
1774static inline u32 vm_entry_controls_get(struct vcpu_vmx *vmx)
1775{
1776 return vmx->vm_entry_controls_shadow;
1777}
1778
1779
1780static inline void vm_entry_controls_setbit(struct vcpu_vmx *vmx, u32 val)
1781{
1782 vm_entry_controls_set(vmx, vm_entry_controls_get(vmx) | val);
1783}
1784
1785static inline void vm_entry_controls_clearbit(struct vcpu_vmx *vmx, u32 val)
1786{
1787 vm_entry_controls_set(vmx, vm_entry_controls_get(vmx) & ~val);
1788}
1789
Paolo Bonzini8391ce42016-07-07 14:58:33 +02001790static inline void vm_exit_controls_reset_shadow(struct vcpu_vmx *vmx)
1791{
1792 vmx->vm_exit_controls_shadow = vmcs_read32(VM_EXIT_CONTROLS);
1793}
1794
Gleb Natapov2961e8762013-11-25 15:37:13 +02001795static inline void vm_exit_controls_init(struct vcpu_vmx *vmx, u32 val)
1796{
1797 vmcs_write32(VM_EXIT_CONTROLS, val);
1798 vmx->vm_exit_controls_shadow = val;
1799}
1800
1801static inline void vm_exit_controls_set(struct vcpu_vmx *vmx, u32 val)
1802{
1803 if (vmx->vm_exit_controls_shadow != val)
1804 vm_exit_controls_init(vmx, val);
1805}
1806
1807static inline u32 vm_exit_controls_get(struct vcpu_vmx *vmx)
1808{
1809 return vmx->vm_exit_controls_shadow;
1810}
1811
1812
1813static inline void vm_exit_controls_setbit(struct vcpu_vmx *vmx, u32 val)
1814{
1815 vm_exit_controls_set(vmx, vm_exit_controls_get(vmx) | val);
1816}
1817
1818static inline void vm_exit_controls_clearbit(struct vcpu_vmx *vmx, u32 val)
1819{
1820 vm_exit_controls_set(vmx, vm_exit_controls_get(vmx) & ~val);
1821}
1822
Avi Kivity2fb92db2011-04-27 19:42:18 +03001823static void vmx_segment_cache_clear(struct vcpu_vmx *vmx)
1824{
1825 vmx->segment_cache.bitmask = 0;
1826}
1827
1828static bool vmx_segment_cache_test_set(struct vcpu_vmx *vmx, unsigned seg,
1829 unsigned field)
1830{
1831 bool ret;
1832 u32 mask = 1 << (seg * SEG_FIELD_NR + field);
1833
1834 if (!(vmx->vcpu.arch.regs_avail & (1 << VCPU_EXREG_SEGMENTS))) {
1835 vmx->vcpu.arch.regs_avail |= (1 << VCPU_EXREG_SEGMENTS);
1836 vmx->segment_cache.bitmask = 0;
1837 }
1838 ret = vmx->segment_cache.bitmask & mask;
1839 vmx->segment_cache.bitmask |= mask;
1840 return ret;
1841}
1842
1843static u16 vmx_read_guest_seg_selector(struct vcpu_vmx *vmx, unsigned seg)
1844{
1845 u16 *p = &vmx->segment_cache.seg[seg].selector;
1846
1847 if (!vmx_segment_cache_test_set(vmx, seg, SEG_FIELD_SEL))
1848 *p = vmcs_read16(kvm_vmx_segment_fields[seg].selector);
1849 return *p;
1850}
1851
1852static ulong vmx_read_guest_seg_base(struct vcpu_vmx *vmx, unsigned seg)
1853{
1854 ulong *p = &vmx->segment_cache.seg[seg].base;
1855
1856 if (!vmx_segment_cache_test_set(vmx, seg, SEG_FIELD_BASE))
1857 *p = vmcs_readl(kvm_vmx_segment_fields[seg].base);
1858 return *p;
1859}
1860
1861static u32 vmx_read_guest_seg_limit(struct vcpu_vmx *vmx, unsigned seg)
1862{
1863 u32 *p = &vmx->segment_cache.seg[seg].limit;
1864
1865 if (!vmx_segment_cache_test_set(vmx, seg, SEG_FIELD_LIMIT))
1866 *p = vmcs_read32(kvm_vmx_segment_fields[seg].limit);
1867 return *p;
1868}
1869
1870static u32 vmx_read_guest_seg_ar(struct vcpu_vmx *vmx, unsigned seg)
1871{
1872 u32 *p = &vmx->segment_cache.seg[seg].ar;
1873
1874 if (!vmx_segment_cache_test_set(vmx, seg, SEG_FIELD_AR))
1875 *p = vmcs_read32(kvm_vmx_segment_fields[seg].ar_bytes);
1876 return *p;
1877}
1878
Avi Kivityabd3f2d2007-05-02 17:57:40 +03001879static void update_exception_bitmap(struct kvm_vcpu *vcpu)
1880{
1881 u32 eb;
1882
Jan Kiszkafd7373c2010-01-20 18:20:20 +01001883 eb = (1u << PF_VECTOR) | (1u << UD_VECTOR) | (1u << MC_VECTOR) |
Paolo Bonzinibd7e5b02017-02-03 21:18:52 -08001884 (1u << DB_VECTOR) | (1u << AC_VECTOR);
Jan Kiszkafd7373c2010-01-20 18:20:20 +01001885 if ((vcpu->guest_debug &
1886 (KVM_GUESTDBG_ENABLE | KVM_GUESTDBG_USE_SW_BP)) ==
1887 (KVM_GUESTDBG_ENABLE | KVM_GUESTDBG_USE_SW_BP))
1888 eb |= 1u << BP_VECTOR;
Avi Kivity7ffd92c2009-06-09 14:10:45 +03001889 if (to_vmx(vcpu)->rmode.vm86_active)
Avi Kivityabd3f2d2007-05-02 17:57:40 +03001890 eb = ~0;
Avi Kivity089d0342009-03-23 18:26:32 +02001891 if (enable_ept)
Sheng Yang14394422008-04-28 12:24:45 +08001892 eb &= ~(1u << PF_VECTOR); /* bypass_guest_pf = 0 */
Nadav Har'El36cf24e2011-05-25 23:15:08 +03001893
1894 /* When we are running a nested L2 guest and L1 specified for it a
1895 * certain exception bitmap, we must trap the same exceptions and pass
1896 * them to L1. When running L2, we will only handle the exceptions
1897 * specified above if L1 did not want them.
1898 */
1899 if (is_guest_mode(vcpu))
1900 eb |= get_vmcs12(vcpu)->exception_bitmap;
1901
Avi Kivityabd3f2d2007-05-02 17:57:40 +03001902 vmcs_write32(EXCEPTION_BITMAP, eb);
1903}
1904
Gleb Natapov2961e8762013-11-25 15:37:13 +02001905static void clear_atomic_switch_msr_special(struct vcpu_vmx *vmx,
1906 unsigned long entry, unsigned long exit)
Gleb Natapov8bf00a52011-10-05 14:01:22 +02001907{
Gleb Natapov2961e8762013-11-25 15:37:13 +02001908 vm_entry_controls_clearbit(vmx, entry);
1909 vm_exit_controls_clearbit(vmx, exit);
Gleb Natapov8bf00a52011-10-05 14:01:22 +02001910}
1911
Avi Kivity61d2ef22010-04-28 16:40:38 +03001912static void clear_atomic_switch_msr(struct vcpu_vmx *vmx, unsigned msr)
1913{
1914 unsigned i;
1915 struct msr_autoload *m = &vmx->msr_autoload;
1916
Gleb Natapov8bf00a52011-10-05 14:01:22 +02001917 switch (msr) {
1918 case MSR_EFER:
1919 if (cpu_has_load_ia32_efer) {
Gleb Natapov2961e8762013-11-25 15:37:13 +02001920 clear_atomic_switch_msr_special(vmx,
1921 VM_ENTRY_LOAD_IA32_EFER,
Gleb Natapov8bf00a52011-10-05 14:01:22 +02001922 VM_EXIT_LOAD_IA32_EFER);
1923 return;
1924 }
1925 break;
1926 case MSR_CORE_PERF_GLOBAL_CTRL:
1927 if (cpu_has_load_perf_global_ctrl) {
Gleb Natapov2961e8762013-11-25 15:37:13 +02001928 clear_atomic_switch_msr_special(vmx,
Gleb Natapov8bf00a52011-10-05 14:01:22 +02001929 VM_ENTRY_LOAD_IA32_PERF_GLOBAL_CTRL,
1930 VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL);
1931 return;
1932 }
1933 break;
Avi Kivity110312c2010-12-21 12:54:20 +02001934 }
1935
Avi Kivity61d2ef22010-04-28 16:40:38 +03001936 for (i = 0; i < m->nr; ++i)
1937 if (m->guest[i].index == msr)
1938 break;
1939
1940 if (i == m->nr)
1941 return;
1942 --m->nr;
1943 m->guest[i] = m->guest[m->nr];
1944 m->host[i] = m->host[m->nr];
1945 vmcs_write32(VM_ENTRY_MSR_LOAD_COUNT, m->nr);
1946 vmcs_write32(VM_EXIT_MSR_LOAD_COUNT, m->nr);
1947}
1948
Gleb Natapov2961e8762013-11-25 15:37:13 +02001949static void add_atomic_switch_msr_special(struct vcpu_vmx *vmx,
1950 unsigned long entry, unsigned long exit,
1951 unsigned long guest_val_vmcs, unsigned long host_val_vmcs,
1952 u64 guest_val, u64 host_val)
Gleb Natapov8bf00a52011-10-05 14:01:22 +02001953{
1954 vmcs_write64(guest_val_vmcs, guest_val);
1955 vmcs_write64(host_val_vmcs, host_val);
Gleb Natapov2961e8762013-11-25 15:37:13 +02001956 vm_entry_controls_setbit(vmx, entry);
1957 vm_exit_controls_setbit(vmx, exit);
Gleb Natapov8bf00a52011-10-05 14:01:22 +02001958}
1959
Avi Kivity61d2ef22010-04-28 16:40:38 +03001960static void add_atomic_switch_msr(struct vcpu_vmx *vmx, unsigned msr,
1961 u64 guest_val, u64 host_val)
1962{
1963 unsigned i;
1964 struct msr_autoload *m = &vmx->msr_autoload;
1965
Gleb Natapov8bf00a52011-10-05 14:01:22 +02001966 switch (msr) {
1967 case MSR_EFER:
1968 if (cpu_has_load_ia32_efer) {
Gleb Natapov2961e8762013-11-25 15:37:13 +02001969 add_atomic_switch_msr_special(vmx,
1970 VM_ENTRY_LOAD_IA32_EFER,
Gleb Natapov8bf00a52011-10-05 14:01:22 +02001971 VM_EXIT_LOAD_IA32_EFER,
1972 GUEST_IA32_EFER,
1973 HOST_IA32_EFER,
1974 guest_val, host_val);
1975 return;
1976 }
1977 break;
1978 case MSR_CORE_PERF_GLOBAL_CTRL:
1979 if (cpu_has_load_perf_global_ctrl) {
Gleb Natapov2961e8762013-11-25 15:37:13 +02001980 add_atomic_switch_msr_special(vmx,
Gleb Natapov8bf00a52011-10-05 14:01:22 +02001981 VM_ENTRY_LOAD_IA32_PERF_GLOBAL_CTRL,
1982 VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL,
1983 GUEST_IA32_PERF_GLOBAL_CTRL,
1984 HOST_IA32_PERF_GLOBAL_CTRL,
1985 guest_val, host_val);
1986 return;
1987 }
1988 break;
Radim Krčmář7099e2e2016-03-04 15:08:42 +01001989 case MSR_IA32_PEBS_ENABLE:
1990 /* PEBS needs a quiescent period after being disabled (to write
1991 * a record). Disabling PEBS through VMX MSR swapping doesn't
1992 * provide that period, so a CPU could write host's record into
1993 * guest's memory.
1994 */
1995 wrmsrl(MSR_IA32_PEBS_ENABLE, 0);
Avi Kivity110312c2010-12-21 12:54:20 +02001996 }
1997
Avi Kivity61d2ef22010-04-28 16:40:38 +03001998 for (i = 0; i < m->nr; ++i)
1999 if (m->guest[i].index == msr)
2000 break;
2001
Gleb Natapove7fc6f93b2011-10-05 14:01:24 +02002002 if (i == NR_AUTOLOAD_MSRS) {
Michael S. Tsirkin60266202013-10-31 00:34:56 +02002003 printk_once(KERN_WARNING "Not enough msr switch entries. "
Gleb Natapove7fc6f93b2011-10-05 14:01:24 +02002004 "Can't add msr %x\n", msr);
2005 return;
2006 } else if (i == m->nr) {
Avi Kivity61d2ef22010-04-28 16:40:38 +03002007 ++m->nr;
2008 vmcs_write32(VM_ENTRY_MSR_LOAD_COUNT, m->nr);
2009 vmcs_write32(VM_EXIT_MSR_LOAD_COUNT, m->nr);
2010 }
2011
2012 m->guest[i].index = msr;
2013 m->guest[i].value = guest_val;
2014 m->host[i].index = msr;
2015 m->host[i].value = host_val;
2016}
2017
Avi Kivity92c0d902009-10-29 11:00:16 +02002018static bool update_transition_efer(struct vcpu_vmx *vmx, int efer_offset)
Eddie Dong2cc51562007-05-21 07:28:09 +03002019{
Paolo Bonzini844a5fe2016-03-08 12:13:39 +01002020 u64 guest_efer = vmx->vcpu.arch.efer;
2021 u64 ignore_bits = 0;
Eddie Dong2cc51562007-05-21 07:28:09 +03002022
Paolo Bonzini844a5fe2016-03-08 12:13:39 +01002023 if (!enable_ept) {
2024 /*
2025 * NX is needed to handle CR0.WP=1, CR4.SMEP=1. Testing
2026 * host CPUID is more efficient than testing guest CPUID
2027 * or CR4. Host SMEP is anyway a requirement for guest SMEP.
2028 */
2029 if (boot_cpu_has(X86_FEATURE_SMEP))
2030 guest_efer |= EFER_NX;
2031 else if (!(guest_efer & EFER_NX))
2032 ignore_bits |= EFER_NX;
2033 }
Roel Kluin3a34a882009-08-04 02:08:45 -07002034
Avi Kivity51c6cf62007-08-29 03:48:05 +03002035 /*
Paolo Bonzini844a5fe2016-03-08 12:13:39 +01002036 * LMA and LME handled by hardware; SCE meaningless outside long mode.
Avi Kivity51c6cf62007-08-29 03:48:05 +03002037 */
Paolo Bonzini844a5fe2016-03-08 12:13:39 +01002038 ignore_bits |= EFER_SCE;
Avi Kivity51c6cf62007-08-29 03:48:05 +03002039#ifdef CONFIG_X86_64
2040 ignore_bits |= EFER_LMA | EFER_LME;
2041 /* SCE is meaningful only in long mode on Intel */
2042 if (guest_efer & EFER_LMA)
2043 ignore_bits &= ~(u64)EFER_SCE;
2044#endif
Avi Kivity84ad33e2010-04-28 16:42:29 +03002045
2046 clear_atomic_switch_msr(vmx, MSR_EFER);
Andy Lutomirskif6577a5f2014-11-07 18:25:18 -08002047
2048 /*
2049 * On EPT, we can't emulate NX, so we must switch EFER atomically.
2050 * On CPUs that support "load IA32_EFER", always switch EFER
2051 * atomically, since it's faster than switching it manually.
2052 */
2053 if (cpu_has_load_ia32_efer ||
2054 (enable_ept && ((vmx->vcpu.arch.efer ^ host_efer) & EFER_NX))) {
Avi Kivity84ad33e2010-04-28 16:42:29 +03002055 if (!(guest_efer & EFER_LMA))
2056 guest_efer &= ~EFER_LME;
Andy Lutomirski54b98bf2014-11-10 11:19:15 -08002057 if (guest_efer != host_efer)
2058 add_atomic_switch_msr(vmx, MSR_EFER,
2059 guest_efer, host_efer);
Avi Kivity84ad33e2010-04-28 16:42:29 +03002060 return false;
Paolo Bonzini844a5fe2016-03-08 12:13:39 +01002061 } else {
2062 guest_efer &= ~ignore_bits;
2063 guest_efer |= host_efer & ignore_bits;
Avi Kivity84ad33e2010-04-28 16:42:29 +03002064
Paolo Bonzini844a5fe2016-03-08 12:13:39 +01002065 vmx->guest_msrs[efer_offset].data = guest_efer;
2066 vmx->guest_msrs[efer_offset].mask = ~ignore_bits;
2067
2068 return true;
2069 }
Avi Kivity51c6cf62007-08-29 03:48:05 +03002070}
2071
Andy Lutomirskie28baea2017-02-20 08:56:11 -08002072#ifdef CONFIG_X86_32
2073/*
2074 * On 32-bit kernels, VM exits still load the FS and GS bases from the
2075 * VMCS rather than the segment table. KVM uses this helper to figure
2076 * out the current bases to poke them into the VMCS before entry.
2077 */
Gleb Natapov2d49ec72010-02-25 12:43:09 +02002078static unsigned long segment_base(u16 selector)
2079{
Andy Lutomirski8c2e41f2017-02-20 08:56:12 -08002080 struct desc_struct *table;
Gleb Natapov2d49ec72010-02-25 12:43:09 +02002081 unsigned long v;
2082
Andy Lutomirski8c2e41f2017-02-20 08:56:12 -08002083 if (!(selector & ~SEGMENT_RPL_MASK))
Gleb Natapov2d49ec72010-02-25 12:43:09 +02002084 return 0;
2085
Thomas Garnier45fc8752017-03-14 10:05:08 -07002086 table = get_current_gdt_ro();
Gleb Natapov2d49ec72010-02-25 12:43:09 +02002087
Andy Lutomirski8c2e41f2017-02-20 08:56:12 -08002088 if ((selector & SEGMENT_TI_MASK) == SEGMENT_LDT) {
Gleb Natapov2d49ec72010-02-25 12:43:09 +02002089 u16 ldt_selector = kvm_read_ldt();
2090
Andy Lutomirski8c2e41f2017-02-20 08:56:12 -08002091 if (!(ldt_selector & ~SEGMENT_RPL_MASK))
Gleb Natapov2d49ec72010-02-25 12:43:09 +02002092 return 0;
2093
Andy Lutomirski8c2e41f2017-02-20 08:56:12 -08002094 table = (struct desc_struct *)segment_base(ldt_selector);
Gleb Natapov2d49ec72010-02-25 12:43:09 +02002095 }
Andy Lutomirski8c2e41f2017-02-20 08:56:12 -08002096 v = get_desc_base(&table[selector >> 3]);
Gleb Natapov2d49ec72010-02-25 12:43:09 +02002097 return v;
2098}
Andy Lutomirskie28baea2017-02-20 08:56:11 -08002099#endif
Gleb Natapov2d49ec72010-02-25 12:43:09 +02002100
Avi Kivity04d2cc72007-09-10 18:10:54 +03002101static void vmx_save_host_state(struct kvm_vcpu *vcpu)
Avi Kivity33ed6322007-05-02 16:54:03 +03002102{
Avi Kivity04d2cc72007-09-10 18:10:54 +03002103 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity26bb0982009-09-07 11:14:12 +03002104 int i;
Avi Kivity04d2cc72007-09-10 18:10:54 +03002105
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002106 if (vmx->host_state.loaded)
Avi Kivity33ed6322007-05-02 16:54:03 +03002107 return;
2108
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002109 vmx->host_state.loaded = 1;
Avi Kivity33ed6322007-05-02 16:54:03 +03002110 /*
2111 * Set host fs and gs selectors. Unfortunately, 22.2.3 does not
2112 * allow segment selectors with cpl > 0 or ti == 1.
2113 */
Avi Kivityd6e88ae2008-07-10 16:53:33 +03002114 vmx->host_state.ldt_sel = kvm_read_ldt();
Laurent Vivier152d3f22007-08-23 16:33:11 +02002115 vmx->host_state.gs_ldt_reload_needed = vmx->host_state.ldt_sel;
Avi Kivity9581d442010-10-19 16:46:55 +02002116 savesegment(fs, vmx->host_state.fs_sel);
Laurent Vivier152d3f22007-08-23 16:33:11 +02002117 if (!(vmx->host_state.fs_sel & 7)) {
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002118 vmcs_write16(HOST_FS_SELECTOR, vmx->host_state.fs_sel);
Laurent Vivier152d3f22007-08-23 16:33:11 +02002119 vmx->host_state.fs_reload_needed = 0;
2120 } else {
Avi Kivity33ed6322007-05-02 16:54:03 +03002121 vmcs_write16(HOST_FS_SELECTOR, 0);
Laurent Vivier152d3f22007-08-23 16:33:11 +02002122 vmx->host_state.fs_reload_needed = 1;
Avi Kivity33ed6322007-05-02 16:54:03 +03002123 }
Avi Kivity9581d442010-10-19 16:46:55 +02002124 savesegment(gs, vmx->host_state.gs_sel);
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002125 if (!(vmx->host_state.gs_sel & 7))
2126 vmcs_write16(HOST_GS_SELECTOR, vmx->host_state.gs_sel);
Avi Kivity33ed6322007-05-02 16:54:03 +03002127 else {
2128 vmcs_write16(HOST_GS_SELECTOR, 0);
Laurent Vivier152d3f22007-08-23 16:33:11 +02002129 vmx->host_state.gs_ldt_reload_needed = 1;
Avi Kivity33ed6322007-05-02 16:54:03 +03002130 }
2131
2132#ifdef CONFIG_X86_64
Avi Kivityb2da15a2012-05-13 19:53:24 +03002133 savesegment(ds, vmx->host_state.ds_sel);
2134 savesegment(es, vmx->host_state.es_sel);
2135#endif
2136
2137#ifdef CONFIG_X86_64
Avi Kivity33ed6322007-05-02 16:54:03 +03002138 vmcs_writel(HOST_FS_BASE, read_msr(MSR_FS_BASE));
2139 vmcs_writel(HOST_GS_BASE, read_msr(MSR_GS_BASE));
2140#else
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002141 vmcs_writel(HOST_FS_BASE, segment_base(vmx->host_state.fs_sel));
2142 vmcs_writel(HOST_GS_BASE, segment_base(vmx->host_state.gs_sel));
Avi Kivity33ed6322007-05-02 16:54:03 +03002143#endif
Avi Kivity707c0872007-05-02 17:33:43 +03002144
2145#ifdef CONFIG_X86_64
Avi Kivityc8770e72010-11-11 12:37:26 +02002146 rdmsrl(MSR_KERNEL_GS_BASE, vmx->msr_host_kernel_gs_base);
2147 if (is_long_mode(&vmx->vcpu))
Avi Kivity44ea2b12009-09-06 15:55:37 +03002148 wrmsrl(MSR_KERNEL_GS_BASE, vmx->msr_guest_kernel_gs_base);
Avi Kivity707c0872007-05-02 17:33:43 +03002149#endif
Liu, Jinsongda8999d2014-02-24 10:55:46 +00002150 if (boot_cpu_has(X86_FEATURE_MPX))
2151 rdmsrl(MSR_IA32_BNDCFGS, vmx->host_state.msr_host_bndcfgs);
Avi Kivity26bb0982009-09-07 11:14:12 +03002152 for (i = 0; i < vmx->save_nmsrs; ++i)
2153 kvm_set_shared_msr(vmx->guest_msrs[i].index,
Avi Kivityd5696722009-12-02 12:28:47 +02002154 vmx->guest_msrs[i].data,
2155 vmx->guest_msrs[i].mask);
Avi Kivity33ed6322007-05-02 16:54:03 +03002156}
2157
Avi Kivitya9b21b62008-06-24 11:48:49 +03002158static void __vmx_load_host_state(struct vcpu_vmx *vmx)
Avi Kivity33ed6322007-05-02 16:54:03 +03002159{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002160 if (!vmx->host_state.loaded)
Avi Kivity33ed6322007-05-02 16:54:03 +03002161 return;
2162
Avi Kivitye1beb1d2007-11-18 13:50:24 +02002163 ++vmx->vcpu.stat.host_state_reload;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002164 vmx->host_state.loaded = 0;
Avi Kivityc8770e72010-11-11 12:37:26 +02002165#ifdef CONFIG_X86_64
2166 if (is_long_mode(&vmx->vcpu))
2167 rdmsrl(MSR_KERNEL_GS_BASE, vmx->msr_guest_kernel_gs_base);
2168#endif
Laurent Vivier152d3f22007-08-23 16:33:11 +02002169 if (vmx->host_state.gs_ldt_reload_needed) {
Avi Kivityd6e88ae2008-07-10 16:53:33 +03002170 kvm_load_ldt(vmx->host_state.ldt_sel);
Avi Kivity33ed6322007-05-02 16:54:03 +03002171#ifdef CONFIG_X86_64
Avi Kivity9581d442010-10-19 16:46:55 +02002172 load_gs_index(vmx->host_state.gs_sel);
Avi Kivity9581d442010-10-19 16:46:55 +02002173#else
2174 loadsegment(gs, vmx->host_state.gs_sel);
Avi Kivity33ed6322007-05-02 16:54:03 +03002175#endif
Avi Kivity33ed6322007-05-02 16:54:03 +03002176 }
Avi Kivity0a77fe42010-10-19 18:48:35 +02002177 if (vmx->host_state.fs_reload_needed)
2178 loadsegment(fs, vmx->host_state.fs_sel);
Avi Kivityb2da15a2012-05-13 19:53:24 +03002179#ifdef CONFIG_X86_64
2180 if (unlikely(vmx->host_state.ds_sel | vmx->host_state.es_sel)) {
2181 loadsegment(ds, vmx->host_state.ds_sel);
2182 loadsegment(es, vmx->host_state.es_sel);
2183 }
Avi Kivityb2da15a2012-05-13 19:53:24 +03002184#endif
Andy Lutomirskib7ffc442017-02-20 08:56:14 -08002185 invalidate_tss_limit();
Avi Kivity44ea2b12009-09-06 15:55:37 +03002186#ifdef CONFIG_X86_64
Avi Kivityc8770e72010-11-11 12:37:26 +02002187 wrmsrl(MSR_KERNEL_GS_BASE, vmx->msr_host_kernel_gs_base);
Avi Kivity44ea2b12009-09-06 15:55:37 +03002188#endif
Liu, Jinsongda8999d2014-02-24 10:55:46 +00002189 if (vmx->host_state.msr_host_bndcfgs)
2190 wrmsrl(MSR_IA32_BNDCFGS, vmx->host_state.msr_host_bndcfgs);
Thomas Garnier45fc8752017-03-14 10:05:08 -07002191 load_fixmap_gdt(raw_smp_processor_id());
Avi Kivity33ed6322007-05-02 16:54:03 +03002192}
2193
Avi Kivitya9b21b62008-06-24 11:48:49 +03002194static void vmx_load_host_state(struct vcpu_vmx *vmx)
2195{
2196 preempt_disable();
2197 __vmx_load_host_state(vmx);
2198 preempt_enable();
2199}
2200
Feng Wu28b835d2015-09-18 22:29:54 +08002201static void vmx_vcpu_pi_load(struct kvm_vcpu *vcpu, int cpu)
2202{
2203 struct pi_desc *pi_desc = vcpu_to_pi_desc(vcpu);
2204 struct pi_desc old, new;
2205 unsigned int dest;
2206
2207 if (!kvm_arch_has_assigned_device(vcpu->kvm) ||
Yang Zhanga0052192016-06-13 09:56:56 +08002208 !irq_remapping_cap(IRQ_POSTING_CAP) ||
2209 !kvm_vcpu_apicv_active(vcpu))
Feng Wu28b835d2015-09-18 22:29:54 +08002210 return;
2211
2212 do {
2213 old.control = new.control = pi_desc->control;
2214
2215 /*
2216 * If 'nv' field is POSTED_INTR_WAKEUP_VECTOR, there
2217 * are two possible cases:
2218 * 1. After running 'pre_block', context switch
2219 * happened. For this case, 'sn' was set in
2220 * vmx_vcpu_put(), so we need to clear it here.
2221 * 2. After running 'pre_block', we were blocked,
2222 * and woken up by some other guy. For this case,
2223 * we don't need to do anything, 'pi_post_block'
2224 * will do everything for us. However, we cannot
2225 * check whether it is case #1 or case #2 here
2226 * (maybe, not needed), so we also clear sn here,
2227 * I think it is not a big deal.
2228 */
2229 if (pi_desc->nv != POSTED_INTR_WAKEUP_VECTOR) {
2230 if (vcpu->cpu != cpu) {
2231 dest = cpu_physical_id(cpu);
2232
2233 if (x2apic_enabled())
2234 new.ndst = dest;
2235 else
2236 new.ndst = (dest << 8) & 0xFF00;
2237 }
2238
2239 /* set 'NV' to 'notification vector' */
2240 new.nv = POSTED_INTR_VECTOR;
2241 }
2242
2243 /* Allow posting non-urgent interrupts */
2244 new.sn = 0;
2245 } while (cmpxchg(&pi_desc->control, old.control,
2246 new.control) != old.control);
2247}
Xiao Guangrong1be0e612016-03-22 16:51:18 +08002248
Peter Feinerc95ba922016-08-17 09:36:47 -07002249static void decache_tsc_multiplier(struct vcpu_vmx *vmx)
2250{
2251 vmx->current_tsc_ratio = vmx->vcpu.arch.tsc_scaling_ratio;
2252 vmcs_write64(TSC_MULTIPLIER, vmx->current_tsc_ratio);
2253}
2254
Avi Kivity6aa8b732006-12-10 02:21:36 -08002255/*
2256 * Switches to specified vcpu, until a matching vcpu_put(), but assumes
2257 * vcpu mutex is already taken.
2258 */
Avi Kivity15ad7142007-07-11 18:17:21 +03002259static void vmx_vcpu_load(struct kvm_vcpu *vcpu, int cpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002260{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002261 struct vcpu_vmx *vmx = to_vmx(vcpu);
Jim Mattsonb80c76e2016-07-29 18:56:53 -07002262 bool already_loaded = vmx->loaded_vmcs->cpu == cpu;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002263
Jim Mattsonb80c76e2016-07-29 18:56:53 -07002264 if (!already_loaded) {
David Hildenbrandfe0e80b2017-03-10 12:47:13 +01002265 loaded_vmcs_clear(vmx->loaded_vmcs);
Dongxiao Xu92fe13b2010-05-11 18:29:42 +08002266 local_irq_disable();
Zhang Yanfei8f536b72012-12-06 23:43:34 +08002267 crash_disable_local_vmclear(cpu);
Xiao Guangrong5a560f82012-11-28 20:54:14 +08002268
2269 /*
2270 * Read loaded_vmcs->cpu should be before fetching
2271 * loaded_vmcs->loaded_vmcss_on_cpu_link.
2272 * See the comments in __loaded_vmcs_clear().
2273 */
2274 smp_rmb();
2275
Nadav Har'Eld462b812011-05-24 15:26:10 +03002276 list_add(&vmx->loaded_vmcs->loaded_vmcss_on_cpu_link,
2277 &per_cpu(loaded_vmcss_on_cpu, cpu));
Zhang Yanfei8f536b72012-12-06 23:43:34 +08002278 crash_enable_local_vmclear(cpu);
Dongxiao Xu92fe13b2010-05-11 18:29:42 +08002279 local_irq_enable();
Jim Mattsonb80c76e2016-07-29 18:56:53 -07002280 }
2281
2282 if (per_cpu(current_vmcs, cpu) != vmx->loaded_vmcs->vmcs) {
2283 per_cpu(current_vmcs, cpu) = vmx->loaded_vmcs->vmcs;
2284 vmcs_load(vmx->loaded_vmcs->vmcs);
2285 }
2286
2287 if (!already_loaded) {
Andy Lutomirski59c58ceb2017-03-22 14:32:33 -07002288 void *gdt = get_current_gdt_ro();
Jim Mattsonb80c76e2016-07-29 18:56:53 -07002289 unsigned long sysenter_esp;
2290
2291 kvm_make_request(KVM_REQ_TLB_FLUSH, vcpu);
Dongxiao Xu92fe13b2010-05-11 18:29:42 +08002292
Avi Kivity6aa8b732006-12-10 02:21:36 -08002293 /*
2294 * Linux uses per-cpu TSS and GDT, so set these when switching
Andy Lutomirskie0c23062017-02-20 08:56:10 -08002295 * processors. See 22.2.4.
Avi Kivity6aa8b732006-12-10 02:21:36 -08002296 */
Andy Lutomirskie0c23062017-02-20 08:56:10 -08002297 vmcs_writel(HOST_TR_BASE,
2298 (unsigned long)this_cpu_ptr(&cpu_tss));
Andy Lutomirski59c58ceb2017-03-22 14:32:33 -07002299 vmcs_writel(HOST_GDTR_BASE, (unsigned long)gdt); /* 22.2.4 */
Avi Kivity6aa8b732006-12-10 02:21:36 -08002300
Andy Lutomirskib7ffc442017-02-20 08:56:14 -08002301 /*
2302 * VM exits change the host TR limit to 0x67 after a VM
2303 * exit. This is okay, since 0x67 covers everything except
2304 * the IO bitmap and have have code to handle the IO bitmap
2305 * being lost after a VM exit.
2306 */
2307 BUILD_BUG_ON(IO_BITMAP_OFFSET - 1 != 0x67);
2308
Avi Kivity6aa8b732006-12-10 02:21:36 -08002309 rdmsrl(MSR_IA32_SYSENTER_ESP, sysenter_esp);
2310 vmcs_writel(HOST_IA32_SYSENTER_ESP, sysenter_esp); /* 22.2.3 */
Haozhong Zhangff2c3a12015-10-20 15:39:10 +08002311
Nadav Har'Eld462b812011-05-24 15:26:10 +03002312 vmx->loaded_vmcs->cpu = cpu;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002313 }
Feng Wu28b835d2015-09-18 22:29:54 +08002314
Owen Hofmann2680d6d2016-03-01 13:36:13 -08002315 /* Setup TSC multiplier */
2316 if (kvm_has_tsc_control &&
Peter Feinerc95ba922016-08-17 09:36:47 -07002317 vmx->current_tsc_ratio != vcpu->arch.tsc_scaling_ratio)
2318 decache_tsc_multiplier(vmx);
Owen Hofmann2680d6d2016-03-01 13:36:13 -08002319
Feng Wu28b835d2015-09-18 22:29:54 +08002320 vmx_vcpu_pi_load(vcpu, cpu);
Xiao Guangrong1be0e612016-03-22 16:51:18 +08002321 vmx->host_pkru = read_pkru();
Feng Wu28b835d2015-09-18 22:29:54 +08002322}
2323
2324static void vmx_vcpu_pi_put(struct kvm_vcpu *vcpu)
2325{
2326 struct pi_desc *pi_desc = vcpu_to_pi_desc(vcpu);
2327
2328 if (!kvm_arch_has_assigned_device(vcpu->kvm) ||
Yang Zhanga0052192016-06-13 09:56:56 +08002329 !irq_remapping_cap(IRQ_POSTING_CAP) ||
2330 !kvm_vcpu_apicv_active(vcpu))
Feng Wu28b835d2015-09-18 22:29:54 +08002331 return;
2332
2333 /* Set SN when the vCPU is preempted */
2334 if (vcpu->preempted)
2335 pi_set_sn(pi_desc);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002336}
2337
2338static void vmx_vcpu_put(struct kvm_vcpu *vcpu)
2339{
Feng Wu28b835d2015-09-18 22:29:54 +08002340 vmx_vcpu_pi_put(vcpu);
2341
Avi Kivitya9b21b62008-06-24 11:48:49 +03002342 __vmx_load_host_state(to_vmx(vcpu));
Avi Kivity6aa8b732006-12-10 02:21:36 -08002343}
2344
Wanpeng Lif244dee2017-07-20 01:11:54 -07002345static bool emulation_required(struct kvm_vcpu *vcpu)
2346{
2347 return emulate_invalid_guest_state && !guest_state_valid(vcpu);
2348}
2349
Avi Kivityedcafe32009-12-30 18:07:40 +02002350static void vmx_decache_cr0_guest_bits(struct kvm_vcpu *vcpu);
2351
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03002352/*
2353 * Return the cr0 value that a nested guest would read. This is a combination
2354 * of the real cr0 used to run the guest (guest_cr0), and the bits shadowed by
2355 * its hypervisor (cr0_read_shadow).
2356 */
2357static inline unsigned long nested_read_cr0(struct vmcs12 *fields)
2358{
2359 return (fields->guest_cr0 & ~fields->cr0_guest_host_mask) |
2360 (fields->cr0_read_shadow & fields->cr0_guest_host_mask);
2361}
2362static inline unsigned long nested_read_cr4(struct vmcs12 *fields)
2363{
2364 return (fields->guest_cr4 & ~fields->cr4_guest_host_mask) |
2365 (fields->cr4_read_shadow & fields->cr4_guest_host_mask);
2366}
2367
Avi Kivity6aa8b732006-12-10 02:21:36 -08002368static unsigned long vmx_get_rflags(struct kvm_vcpu *vcpu)
2369{
Avi Kivity78ac8b42010-04-08 18:19:35 +03002370 unsigned long rflags, save_rflags;
Avi Kivity345dcaa2009-08-12 15:29:37 +03002371
Avi Kivity6de12732011-03-07 12:51:22 +02002372 if (!test_bit(VCPU_EXREG_RFLAGS, (ulong *)&vcpu->arch.regs_avail)) {
2373 __set_bit(VCPU_EXREG_RFLAGS, (ulong *)&vcpu->arch.regs_avail);
2374 rflags = vmcs_readl(GUEST_RFLAGS);
2375 if (to_vmx(vcpu)->rmode.vm86_active) {
2376 rflags &= RMODE_GUEST_OWNED_EFLAGS_BITS;
2377 save_rflags = to_vmx(vcpu)->rmode.save_rflags;
2378 rflags |= save_rflags & ~RMODE_GUEST_OWNED_EFLAGS_BITS;
2379 }
2380 to_vmx(vcpu)->rflags = rflags;
Avi Kivity78ac8b42010-04-08 18:19:35 +03002381 }
Avi Kivity6de12732011-03-07 12:51:22 +02002382 return to_vmx(vcpu)->rflags;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002383}
2384
2385static void vmx_set_rflags(struct kvm_vcpu *vcpu, unsigned long rflags)
2386{
Wanpeng Lif244dee2017-07-20 01:11:54 -07002387 unsigned long old_rflags = vmx_get_rflags(vcpu);
2388
Avi Kivity6de12732011-03-07 12:51:22 +02002389 __set_bit(VCPU_EXREG_RFLAGS, (ulong *)&vcpu->arch.regs_avail);
2390 to_vmx(vcpu)->rflags = rflags;
Avi Kivity78ac8b42010-04-08 18:19:35 +03002391 if (to_vmx(vcpu)->rmode.vm86_active) {
2392 to_vmx(vcpu)->rmode.save_rflags = rflags;
Glauber de Oliveira Costa053de042008-01-30 13:31:27 +01002393 rflags |= X86_EFLAGS_IOPL | X86_EFLAGS_VM;
Avi Kivity78ac8b42010-04-08 18:19:35 +03002394 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08002395 vmcs_writel(GUEST_RFLAGS, rflags);
Wanpeng Lif244dee2017-07-20 01:11:54 -07002396
2397 if ((old_rflags ^ to_vmx(vcpu)->rflags) & X86_EFLAGS_VM)
2398 to_vmx(vcpu)->emulation_required = emulation_required(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002399}
2400
Huaitong Hanbe94f6b2016-03-22 16:51:20 +08002401static u32 vmx_get_pkru(struct kvm_vcpu *vcpu)
2402{
2403 return to_vmx(vcpu)->guest_pkru;
2404}
2405
Paolo Bonzini37ccdcb2014-05-20 14:29:47 +02002406static u32 vmx_get_interrupt_shadow(struct kvm_vcpu *vcpu)
Glauber Costa2809f5d2009-05-12 16:21:05 -04002407{
2408 u32 interruptibility = vmcs_read32(GUEST_INTERRUPTIBILITY_INFO);
2409 int ret = 0;
2410
2411 if (interruptibility & GUEST_INTR_STATE_STI)
Jan Kiszka48005f62010-02-19 19:38:07 +01002412 ret |= KVM_X86_SHADOW_INT_STI;
Glauber Costa2809f5d2009-05-12 16:21:05 -04002413 if (interruptibility & GUEST_INTR_STATE_MOV_SS)
Jan Kiszka48005f62010-02-19 19:38:07 +01002414 ret |= KVM_X86_SHADOW_INT_MOV_SS;
Glauber Costa2809f5d2009-05-12 16:21:05 -04002415
Paolo Bonzini37ccdcb2014-05-20 14:29:47 +02002416 return ret;
Glauber Costa2809f5d2009-05-12 16:21:05 -04002417}
2418
2419static void vmx_set_interrupt_shadow(struct kvm_vcpu *vcpu, int mask)
2420{
2421 u32 interruptibility_old = vmcs_read32(GUEST_INTERRUPTIBILITY_INFO);
2422 u32 interruptibility = interruptibility_old;
2423
2424 interruptibility &= ~(GUEST_INTR_STATE_STI | GUEST_INTR_STATE_MOV_SS);
2425
Jan Kiszka48005f62010-02-19 19:38:07 +01002426 if (mask & KVM_X86_SHADOW_INT_MOV_SS)
Glauber Costa2809f5d2009-05-12 16:21:05 -04002427 interruptibility |= GUEST_INTR_STATE_MOV_SS;
Jan Kiszka48005f62010-02-19 19:38:07 +01002428 else if (mask & KVM_X86_SHADOW_INT_STI)
Glauber Costa2809f5d2009-05-12 16:21:05 -04002429 interruptibility |= GUEST_INTR_STATE_STI;
2430
2431 if ((interruptibility != interruptibility_old))
2432 vmcs_write32(GUEST_INTERRUPTIBILITY_INFO, interruptibility);
2433}
2434
Avi Kivity6aa8b732006-12-10 02:21:36 -08002435static void skip_emulated_instruction(struct kvm_vcpu *vcpu)
2436{
2437 unsigned long rip;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002438
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002439 rip = kvm_rip_read(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002440 rip += vmcs_read32(VM_EXIT_INSTRUCTION_LEN);
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03002441 kvm_rip_write(vcpu, rip);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002442
Glauber Costa2809f5d2009-05-12 16:21:05 -04002443 /* skipping an emulated instruction also counts */
2444 vmx_set_interrupt_shadow(vcpu, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -08002445}
2446
Paolo Bonzinib96fb432017-07-27 12:29:32 +02002447static void nested_vmx_inject_exception_vmexit(struct kvm_vcpu *vcpu,
2448 unsigned long exit_qual)
2449{
2450 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
2451 unsigned int nr = vcpu->arch.exception.nr;
2452 u32 intr_info = nr | INTR_INFO_VALID_MASK;
2453
2454 if (vcpu->arch.exception.has_error_code) {
2455 vmcs12->vm_exit_intr_error_code = vcpu->arch.exception.error_code;
2456 intr_info |= INTR_INFO_DELIVER_CODE_MASK;
2457 }
2458
2459 if (kvm_exception_is_soft(nr))
2460 intr_info |= INTR_TYPE_SOFT_EXCEPTION;
2461 else
2462 intr_info |= INTR_TYPE_HARD_EXCEPTION;
2463
2464 if (!(vmcs12->idt_vectoring_info_field & VECTORING_INFO_VALID_MASK) &&
2465 vmx_get_nmi_mask(vcpu))
2466 intr_info |= INTR_INFO_UNBLOCK_NMI;
2467
2468 nested_vmx_vmexit(vcpu, EXIT_REASON_EXCEPTION_NMI, intr_info, exit_qual);
2469}
2470
Nadav Har'El0b6ac342011-05-25 23:13:36 +03002471/*
2472 * KVM wants to inject page-faults which it got to the guest. This function
2473 * checks whether in a nested guest, we need to inject them to L1 or L2.
Nadav Har'El0b6ac342011-05-25 23:13:36 +03002474 */
Wanpeng Libfcf83b2017-08-24 03:35:11 -07002475static int nested_vmx_check_exception(struct kvm_vcpu *vcpu, unsigned long *exit_qual)
Nadav Har'El0b6ac342011-05-25 23:13:36 +03002476{
2477 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
Wanpeng Liadfe20f2017-07-13 18:30:41 -07002478 unsigned int nr = vcpu->arch.exception.nr;
Nadav Har'El0b6ac342011-05-25 23:13:36 +03002479
Paolo Bonzinib96fb432017-07-27 12:29:32 +02002480 if (nr == PF_VECTOR) {
2481 if (vcpu->arch.exception.nested_apf) {
Wanpeng Libfcf83b2017-08-24 03:35:11 -07002482 *exit_qual = vcpu->arch.apf.nested_apf_token;
Paolo Bonzinib96fb432017-07-27 12:29:32 +02002483 return 1;
2484 }
2485 /*
2486 * FIXME: we must not write CR2 when L1 intercepts an L2 #PF exception.
2487 * The fix is to add the ancillary datum (CR2 or DR6) to structs
2488 * kvm_queued_exception and kvm_vcpu_events, so that CR2 and DR6
2489 * can be written only when inject_pending_event runs. This should be
2490 * conditional on a new capability---if the capability is disabled,
2491 * kvm_multiple_exception would write the ancillary information to
2492 * CR2 or DR6, for backwards ABI-compatibility.
2493 */
2494 if (nested_vmx_is_page_fault_vmexit(vmcs12,
2495 vcpu->arch.exception.error_code)) {
Wanpeng Libfcf83b2017-08-24 03:35:11 -07002496 *exit_qual = vcpu->arch.cr2;
Paolo Bonzinib96fb432017-07-27 12:29:32 +02002497 return 1;
2498 }
2499 } else {
Paolo Bonzinib96fb432017-07-27 12:29:32 +02002500 if (vmcs12->exception_bitmap & (1u << nr)) {
Wanpeng Libfcf83b2017-08-24 03:35:11 -07002501 if (nr == DB_VECTOR)
2502 *exit_qual = vcpu->arch.dr6;
2503 else
2504 *exit_qual = 0;
Paolo Bonzinib96fb432017-07-27 12:29:32 +02002505 return 1;
2506 }
Wanpeng Liadfe20f2017-07-13 18:30:41 -07002507 }
2508
Paolo Bonzinib96fb432017-07-27 12:29:32 +02002509 return 0;
Nadav Har'El0b6ac342011-05-25 23:13:36 +03002510}
2511
Wanpeng Licfcd20e2017-07-13 18:30:39 -07002512static void vmx_queue_exception(struct kvm_vcpu *vcpu)
Avi Kivity298101d2007-11-25 13:41:11 +02002513{
Jan Kiszka77ab6db2008-07-14 12:28:51 +02002514 struct vcpu_vmx *vmx = to_vmx(vcpu);
Wanpeng Licfcd20e2017-07-13 18:30:39 -07002515 unsigned nr = vcpu->arch.exception.nr;
2516 bool has_error_code = vcpu->arch.exception.has_error_code;
Wanpeng Licfcd20e2017-07-13 18:30:39 -07002517 u32 error_code = vcpu->arch.exception.error_code;
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +01002518 u32 intr_info = nr | INTR_INFO_VALID_MASK;
Jan Kiszka77ab6db2008-07-14 12:28:51 +02002519
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +01002520 if (has_error_code) {
Jan Kiszka77ab6db2008-07-14 12:28:51 +02002521 vmcs_write32(VM_ENTRY_EXCEPTION_ERROR_CODE, error_code);
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +01002522 intr_info |= INTR_INFO_DELIVER_CODE_MASK;
2523 }
Jan Kiszka77ab6db2008-07-14 12:28:51 +02002524
Avi Kivity7ffd92c2009-06-09 14:10:45 +03002525 if (vmx->rmode.vm86_active) {
Serge E. Hallyn71f98332011-04-13 09:12:54 -05002526 int inc_eip = 0;
2527 if (kvm_exception_is_soft(nr))
2528 inc_eip = vcpu->arch.event_exit_inst_len;
2529 if (kvm_inject_realmode_interrupt(vcpu, nr, inc_eip) != EMULATE_DONE)
Mohammed Gamala92601b2010-09-19 14:34:07 +02002530 kvm_make_request(KVM_REQ_TRIPLE_FAULT, vcpu);
Jan Kiszka77ab6db2008-07-14 12:28:51 +02002531 return;
2532 }
2533
Gleb Natapov66fd3f72009-05-11 13:35:50 +03002534 if (kvm_exception_is_soft(nr)) {
2535 vmcs_write32(VM_ENTRY_INSTRUCTION_LEN,
2536 vmx->vcpu.arch.event_exit_inst_len);
Jan Kiszka8ab2d2e2008-12-15 13:52:10 +01002537 intr_info |= INTR_TYPE_SOFT_EXCEPTION;
2538 } else
2539 intr_info |= INTR_TYPE_HARD_EXCEPTION;
2540
2541 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, intr_info);
Avi Kivity298101d2007-11-25 13:41:11 +02002542}
2543
Sheng Yang4e47c7a2009-12-18 16:48:47 +08002544static bool vmx_rdtscp_supported(void)
2545{
2546 return cpu_has_vmx_rdtscp();
2547}
2548
Mao, Junjiead756a12012-07-02 01:18:48 +00002549static bool vmx_invpcid_supported(void)
2550{
2551 return cpu_has_vmx_invpcid() && enable_ept;
2552}
2553
Avi Kivity6aa8b732006-12-10 02:21:36 -08002554/*
Eddie Donga75beee2007-05-17 18:55:15 +03002555 * Swap MSR entry in host/guest MSR entry array.
2556 */
Rusty Russell8b9cf982007-07-30 16:31:43 +10002557static void move_msr_up(struct vcpu_vmx *vmx, int from, int to)
Eddie Donga75beee2007-05-17 18:55:15 +03002558{
Avi Kivity26bb0982009-09-07 11:14:12 +03002559 struct shared_msr_entry tmp;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04002560
2561 tmp = vmx->guest_msrs[to];
2562 vmx->guest_msrs[to] = vmx->guest_msrs[from];
2563 vmx->guest_msrs[from] = tmp;
Eddie Donga75beee2007-05-17 18:55:15 +03002564}
2565
Yang Zhang8d146952013-01-25 10:18:50 +08002566static void vmx_set_msr_bitmap(struct kvm_vcpu *vcpu)
2567{
2568 unsigned long *msr_bitmap;
2569
Wincy Van670125b2015-03-04 14:31:56 +08002570 if (is_guest_mode(vcpu))
Radim Krčmářd048c092016-08-08 20:16:22 +02002571 msr_bitmap = to_vmx(vcpu)->nested.msr_bitmap;
Roman Kagan3ce424e2016-05-18 17:48:20 +03002572 else if (cpu_has_secondary_exec_ctrls() &&
2573 (vmcs_read32(SECONDARY_VM_EXEC_CONTROL) &
2574 SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE)) {
Wanpeng Lif6e90f92016-09-22 07:43:25 +08002575 if (enable_apicv && kvm_vcpu_apicv_active(vcpu)) {
2576 if (is_long_mode(vcpu))
Wanpeng Lic63e4562016-09-23 19:17:16 +08002577 msr_bitmap = vmx_msr_bitmap_longmode_x2apic_apicv;
2578 else
2579 msr_bitmap = vmx_msr_bitmap_legacy_x2apic_apicv;
2580 } else {
2581 if (is_long_mode(vcpu))
Wanpeng Lif6e90f92016-09-22 07:43:25 +08002582 msr_bitmap = vmx_msr_bitmap_longmode_x2apic;
2583 else
2584 msr_bitmap = vmx_msr_bitmap_legacy_x2apic;
Wanpeng Lif6e90f92016-09-22 07:43:25 +08002585 }
Yang Zhang8d146952013-01-25 10:18:50 +08002586 } else {
2587 if (is_long_mode(vcpu))
2588 msr_bitmap = vmx_msr_bitmap_longmode;
2589 else
2590 msr_bitmap = vmx_msr_bitmap_legacy;
2591 }
2592
2593 vmcs_write64(MSR_BITMAP, __pa(msr_bitmap));
2594}
2595
Eddie Donga75beee2007-05-17 18:55:15 +03002596/*
Avi Kivitye38aea32007-04-19 13:22:48 +03002597 * Set up the vmcs to automatically save and restore system
2598 * msrs. Don't touch the 64-bit msrs if the guest is in legacy
2599 * mode, as fiddling with msrs is very expensive.
2600 */
Rusty Russell8b9cf982007-07-30 16:31:43 +10002601static void setup_msrs(struct vcpu_vmx *vmx)
Avi Kivitye38aea32007-04-19 13:22:48 +03002602{
Avi Kivity26bb0982009-09-07 11:14:12 +03002603 int save_nmsrs, index;
Avi Kivitye38aea32007-04-19 13:22:48 +03002604
Eddie Donga75beee2007-05-17 18:55:15 +03002605 save_nmsrs = 0;
Avi Kivity4d56c8a2007-04-19 14:28:44 +03002606#ifdef CONFIG_X86_64
Rusty Russell8b9cf982007-07-30 16:31:43 +10002607 if (is_long_mode(&vmx->vcpu)) {
Rusty Russell8b9cf982007-07-30 16:31:43 +10002608 index = __find_msr_index(vmx, MSR_SYSCALL_MASK);
Eddie Donga75beee2007-05-17 18:55:15 +03002609 if (index >= 0)
Rusty Russell8b9cf982007-07-30 16:31:43 +10002610 move_msr_up(vmx, index, save_nmsrs++);
2611 index = __find_msr_index(vmx, MSR_LSTAR);
Eddie Donga75beee2007-05-17 18:55:15 +03002612 if (index >= 0)
Rusty Russell8b9cf982007-07-30 16:31:43 +10002613 move_msr_up(vmx, index, save_nmsrs++);
2614 index = __find_msr_index(vmx, MSR_CSTAR);
Eddie Donga75beee2007-05-17 18:55:15 +03002615 if (index >= 0)
Rusty Russell8b9cf982007-07-30 16:31:43 +10002616 move_msr_up(vmx, index, save_nmsrs++);
Sheng Yang4e47c7a2009-12-18 16:48:47 +08002617 index = __find_msr_index(vmx, MSR_TSC_AUX);
Radim Krčmářd6321d42017-08-05 00:12:49 +02002618 if (index >= 0 && guest_cpuid_has(&vmx->vcpu, X86_FEATURE_RDTSCP))
Sheng Yang4e47c7a2009-12-18 16:48:47 +08002619 move_msr_up(vmx, index, save_nmsrs++);
Eddie Donga75beee2007-05-17 18:55:15 +03002620 /*
Brian Gerst8c065852010-07-17 09:03:26 -04002621 * MSR_STAR is only needed on long mode guests, and only
Eddie Donga75beee2007-05-17 18:55:15 +03002622 * if efer.sce is enabled.
2623 */
Brian Gerst8c065852010-07-17 09:03:26 -04002624 index = __find_msr_index(vmx, MSR_STAR);
Avi Kivityf6801df2010-01-21 15:31:50 +02002625 if ((index >= 0) && (vmx->vcpu.arch.efer & EFER_SCE))
Rusty Russell8b9cf982007-07-30 16:31:43 +10002626 move_msr_up(vmx, index, save_nmsrs++);
Avi Kivity4d56c8a2007-04-19 14:28:44 +03002627 }
Eddie Donga75beee2007-05-17 18:55:15 +03002628#endif
Avi Kivity92c0d902009-10-29 11:00:16 +02002629 index = __find_msr_index(vmx, MSR_EFER);
2630 if (index >= 0 && update_transition_efer(vmx, index))
Avi Kivity26bb0982009-09-07 11:14:12 +03002631 move_msr_up(vmx, index, save_nmsrs++);
Avi Kivity4d56c8a2007-04-19 14:28:44 +03002632
Avi Kivity26bb0982009-09-07 11:14:12 +03002633 vmx->save_nmsrs = save_nmsrs;
Avi Kivity58972972009-02-24 22:26:47 +02002634
Yang Zhang8d146952013-01-25 10:18:50 +08002635 if (cpu_has_vmx_msr_bitmap())
2636 vmx_set_msr_bitmap(&vmx->vcpu);
Avi Kivitye38aea32007-04-19 13:22:48 +03002637}
2638
2639/*
Avi Kivity6aa8b732006-12-10 02:21:36 -08002640 * reads and returns guest's timestamp counter "register"
Haozhong Zhangbe7b2632015-10-20 15:39:11 +08002641 * guest_tsc = (host_tsc * tsc multiplier) >> 48 + tsc_offset
2642 * -- Intel TSC Scaling for Virtualization White Paper, sec 1.3
Avi Kivity6aa8b732006-12-10 02:21:36 -08002643 */
Haozhong Zhangbe7b2632015-10-20 15:39:11 +08002644static u64 guest_read_tsc(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002645{
2646 u64 host_tsc, tsc_offset;
2647
Andy Lutomirski4ea16362015-06-25 18:44:07 +02002648 host_tsc = rdtsc();
Avi Kivity6aa8b732006-12-10 02:21:36 -08002649 tsc_offset = vmcs_read64(TSC_OFFSET);
Haozhong Zhangbe7b2632015-10-20 15:39:11 +08002650 return kvm_scale_tsc(vcpu, host_tsc) + tsc_offset;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002651}
2652
2653/*
Zachary Amsden99e3e302010-08-19 22:07:17 -10002654 * writes 'offset' into guest's timestamp counter offset register
Avi Kivity6aa8b732006-12-10 02:21:36 -08002655 */
Zachary Amsden99e3e302010-08-19 22:07:17 -10002656static void vmx_write_tsc_offset(struct kvm_vcpu *vcpu, u64 offset)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002657{
Nadav Har'El27fc51b2011-08-02 15:54:52 +03002658 if (is_guest_mode(vcpu)) {
Nadav Har'El79918252011-05-25 23:15:39 +03002659 /*
Nadav Har'El27fc51b2011-08-02 15:54:52 +03002660 * We're here if L1 chose not to trap WRMSR to TSC. According
2661 * to the spec, this should set L1's TSC; The offset that L1
2662 * set for L2 remains unchanged, and still needs to be added
2663 * to the newly set TSC to get L2's TSC.
Nadav Har'El79918252011-05-25 23:15:39 +03002664 */
Nadav Har'El27fc51b2011-08-02 15:54:52 +03002665 struct vmcs12 *vmcs12;
Nadav Har'El27fc51b2011-08-02 15:54:52 +03002666 /* recalculate vmcs02.TSC_OFFSET: */
2667 vmcs12 = get_vmcs12(vcpu);
2668 vmcs_write64(TSC_OFFSET, offset +
2669 (nested_cpu_has(vmcs12, CPU_BASED_USE_TSC_OFFSETING) ?
2670 vmcs12->tsc_offset : 0));
2671 } else {
Yoshihiro YUNOMAE489223e2013-06-12 16:43:44 +09002672 trace_kvm_write_tsc_offset(vcpu->vcpu_id,
2673 vmcs_read64(TSC_OFFSET), offset);
Nadav Har'El27fc51b2011-08-02 15:54:52 +03002674 vmcs_write64(TSC_OFFSET, offset);
2675 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08002676}
2677
Nadav Har'El801d3422011-05-25 23:02:23 +03002678/*
2679 * nested_vmx_allowed() checks whether a guest should be allowed to use VMX
2680 * instructions and MSRs (i.e., nested VMX). Nested VMX is disabled for
2681 * all guests if the "nested" module option is off, and can also be disabled
2682 * for a single guest by disabling its VMX cpuid bit.
2683 */
2684static inline bool nested_vmx_allowed(struct kvm_vcpu *vcpu)
2685{
Radim Krčmářd6321d42017-08-05 00:12:49 +02002686 return nested && guest_cpuid_has(vcpu, X86_FEATURE_VMX);
Nadav Har'El801d3422011-05-25 23:02:23 +03002687}
2688
Avi Kivity6aa8b732006-12-10 02:21:36 -08002689/*
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002690 * nested_vmx_setup_ctls_msrs() sets up variables containing the values to be
2691 * returned for the various VMX controls MSRs when nested VMX is enabled.
2692 * The same values should also be used to verify that vmcs12 control fields are
2693 * valid during nested entry from L1 to L2.
2694 * Each of these control msrs has a low and high 32-bit half: A low bit is on
2695 * if the corresponding bit in the (32-bit) control field *must* be on, and a
2696 * bit in the high half is on if the corresponding bit in the control field
2697 * may be on. See also vmx_control_verify().
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002698 */
Wincy Vanb9c237b2015-02-03 23:56:30 +08002699static void nested_vmx_setup_ctls_msrs(struct vcpu_vmx *vmx)
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002700{
2701 /*
2702 * Note that as a general rule, the high half of the MSRs (bits in
2703 * the control fields which may be 1) should be initialized by the
2704 * intersection of the underlying hardware's MSR (i.e., features which
2705 * can be supported) and the list of features we want to expose -
2706 * because they are known to be properly supported in our code.
2707 * Also, usually, the low half of the MSRs (bits which must be 1) can
2708 * be set to 0, meaning that L1 may turn off any of these bits. The
2709 * reason is that if one of these bits is necessary, it will appear
2710 * in vmcs01 and prepare_vmcs02, when it bitwise-or's the control
2711 * fields of vmcs01 and vmcs02, will turn these bits off - and
Paolo Bonzini7313c692017-07-27 10:31:25 +02002712 * nested_vmx_exit_reflected() will not pass related exits to L1.
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002713 * These rules have exceptions below.
2714 */
2715
2716 /* pin-based controls */
Jan Kiszkaeabeaac2013-03-13 11:30:50 +01002717 rdmsr(MSR_IA32_VMX_PINBASED_CTLS,
Wincy Vanb9c237b2015-02-03 23:56:30 +08002718 vmx->nested.nested_vmx_pinbased_ctls_low,
2719 vmx->nested.nested_vmx_pinbased_ctls_high);
2720 vmx->nested.nested_vmx_pinbased_ctls_low |=
2721 PIN_BASED_ALWAYSON_WITHOUT_TRUE_MSR;
2722 vmx->nested.nested_vmx_pinbased_ctls_high &=
2723 PIN_BASED_EXT_INTR_MASK |
2724 PIN_BASED_NMI_EXITING |
2725 PIN_BASED_VIRTUAL_NMIS;
2726 vmx->nested.nested_vmx_pinbased_ctls_high |=
2727 PIN_BASED_ALWAYSON_WITHOUT_TRUE_MSR |
Jan Kiszka0238ea92013-03-13 11:31:24 +01002728 PIN_BASED_VMX_PREEMPTION_TIMER;
Andrey Smetanind62caab2015-11-10 15:36:33 +03002729 if (kvm_vcpu_apicv_active(&vmx->vcpu))
Wincy Van705699a2015-02-03 23:58:17 +08002730 vmx->nested.nested_vmx_pinbased_ctls_high |=
2731 PIN_BASED_POSTED_INTR;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002732
Jan Kiszka3dbcd8d2014-06-16 13:59:40 +02002733 /* exit controls */
Arthur Chunqi Lic0dfee52013-08-06 18:41:45 +08002734 rdmsr(MSR_IA32_VMX_EXIT_CTLS,
Wincy Vanb9c237b2015-02-03 23:56:30 +08002735 vmx->nested.nested_vmx_exit_ctls_low,
2736 vmx->nested.nested_vmx_exit_ctls_high);
2737 vmx->nested.nested_vmx_exit_ctls_low =
2738 VM_EXIT_ALWAYSON_WITHOUT_TRUE_MSR;
Bandan Dase0ba1a62014-04-19 18:17:46 -04002739
Wincy Vanb9c237b2015-02-03 23:56:30 +08002740 vmx->nested.nested_vmx_exit_ctls_high &=
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002741#ifdef CONFIG_X86_64
Arthur Chunqi Lic0dfee52013-08-06 18:41:45 +08002742 VM_EXIT_HOST_ADDR_SPACE_SIZE |
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002743#endif
Jan Kiszkaf4124502014-03-07 20:03:13 +01002744 VM_EXIT_LOAD_IA32_PAT | VM_EXIT_SAVE_IA32_PAT;
Wincy Vanb9c237b2015-02-03 23:56:30 +08002745 vmx->nested.nested_vmx_exit_ctls_high |=
2746 VM_EXIT_ALWAYSON_WITHOUT_TRUE_MSR |
Jan Kiszkaf4124502014-03-07 20:03:13 +01002747 VM_EXIT_LOAD_IA32_EFER | VM_EXIT_SAVE_IA32_EFER |
Bandan Dase0ba1a62014-04-19 18:17:46 -04002748 VM_EXIT_SAVE_VMX_PREEMPTION_TIMER | VM_EXIT_ACK_INTR_ON_EXIT;
2749
Paolo Bonzinia87036a2016-03-08 09:52:13 +01002750 if (kvm_mpx_supported())
Wincy Vanb9c237b2015-02-03 23:56:30 +08002751 vmx->nested.nested_vmx_exit_ctls_high |= VM_EXIT_CLEAR_BNDCFGS;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002752
Jan Kiszka2996fca2014-06-16 13:59:43 +02002753 /* We support free control of debug control saving. */
David Matlack0115f9c2016-11-29 18:14:06 -08002754 vmx->nested.nested_vmx_exit_ctls_low &= ~VM_EXIT_SAVE_DEBUG_CONTROLS;
Jan Kiszka2996fca2014-06-16 13:59:43 +02002755
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002756 /* entry controls */
2757 rdmsr(MSR_IA32_VMX_ENTRY_CTLS,
Wincy Vanb9c237b2015-02-03 23:56:30 +08002758 vmx->nested.nested_vmx_entry_ctls_low,
2759 vmx->nested.nested_vmx_entry_ctls_high);
2760 vmx->nested.nested_vmx_entry_ctls_low =
2761 VM_ENTRY_ALWAYSON_WITHOUT_TRUE_MSR;
2762 vmx->nested.nested_vmx_entry_ctls_high &=
Jan Kiszka57435342013-08-06 10:39:56 +02002763#ifdef CONFIG_X86_64
2764 VM_ENTRY_IA32E_MODE |
2765#endif
2766 VM_ENTRY_LOAD_IA32_PAT;
Wincy Vanb9c237b2015-02-03 23:56:30 +08002767 vmx->nested.nested_vmx_entry_ctls_high |=
2768 (VM_ENTRY_ALWAYSON_WITHOUT_TRUE_MSR | VM_ENTRY_LOAD_IA32_EFER);
Paolo Bonzinia87036a2016-03-08 09:52:13 +01002769 if (kvm_mpx_supported())
Wincy Vanb9c237b2015-02-03 23:56:30 +08002770 vmx->nested.nested_vmx_entry_ctls_high |= VM_ENTRY_LOAD_BNDCFGS;
Jan Kiszka57435342013-08-06 10:39:56 +02002771
Jan Kiszka2996fca2014-06-16 13:59:43 +02002772 /* We support free control of debug control loading. */
David Matlack0115f9c2016-11-29 18:14:06 -08002773 vmx->nested.nested_vmx_entry_ctls_low &= ~VM_ENTRY_LOAD_DEBUG_CONTROLS;
Jan Kiszka2996fca2014-06-16 13:59:43 +02002774
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002775 /* cpu-based controls */
2776 rdmsr(MSR_IA32_VMX_PROCBASED_CTLS,
Wincy Vanb9c237b2015-02-03 23:56:30 +08002777 vmx->nested.nested_vmx_procbased_ctls_low,
2778 vmx->nested.nested_vmx_procbased_ctls_high);
2779 vmx->nested.nested_vmx_procbased_ctls_low =
2780 CPU_BASED_ALWAYSON_WITHOUT_TRUE_MSR;
2781 vmx->nested.nested_vmx_procbased_ctls_high &=
Jan Kiszkaa294c9b2013-10-23 17:43:09 +01002782 CPU_BASED_VIRTUAL_INTR_PENDING |
2783 CPU_BASED_VIRTUAL_NMI_PENDING | CPU_BASED_USE_TSC_OFFSETING |
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002784 CPU_BASED_HLT_EXITING | CPU_BASED_INVLPG_EXITING |
2785 CPU_BASED_MWAIT_EXITING | CPU_BASED_CR3_LOAD_EXITING |
2786 CPU_BASED_CR3_STORE_EXITING |
2787#ifdef CONFIG_X86_64
2788 CPU_BASED_CR8_LOAD_EXITING | CPU_BASED_CR8_STORE_EXITING |
2789#endif
2790 CPU_BASED_MOV_DR_EXITING | CPU_BASED_UNCOND_IO_EXITING |
Mihai Donțu5f3d45e2015-07-05 20:08:57 +03002791 CPU_BASED_USE_IO_BITMAPS | CPU_BASED_MONITOR_TRAP_FLAG |
2792 CPU_BASED_MONITOR_EXITING | CPU_BASED_RDPMC_EXITING |
2793 CPU_BASED_RDTSC_EXITING | CPU_BASED_PAUSE_EXITING |
2794 CPU_BASED_TPR_SHADOW | CPU_BASED_ACTIVATE_SECONDARY_CONTROLS;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002795 /*
2796 * We can allow some features even when not supported by the
2797 * hardware. For example, L1 can specify an MSR bitmap - and we
2798 * can use it to avoid exits to L1 - even when L0 runs L2
2799 * without MSR bitmaps.
2800 */
Wincy Vanb9c237b2015-02-03 23:56:30 +08002801 vmx->nested.nested_vmx_procbased_ctls_high |=
2802 CPU_BASED_ALWAYSON_WITHOUT_TRUE_MSR |
Jan Kiszka560b7ee2014-06-16 13:59:42 +02002803 CPU_BASED_USE_MSR_BITMAPS;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002804
Jan Kiszka3dcdf3ec2014-06-16 13:59:41 +02002805 /* We support free control of CR3 access interception. */
David Matlack0115f9c2016-11-29 18:14:06 -08002806 vmx->nested.nested_vmx_procbased_ctls_low &=
Jan Kiszka3dcdf3ec2014-06-16 13:59:41 +02002807 ~(CPU_BASED_CR3_LOAD_EXITING | CPU_BASED_CR3_STORE_EXITING);
2808
Paolo Bonzini80154d72017-08-24 13:55:35 +02002809 /*
2810 * secondary cpu-based controls. Do not include those that
2811 * depend on CPUID bits, they are added later by vmx_cpuid_update.
2812 */
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002813 rdmsr(MSR_IA32_VMX_PROCBASED_CTLS2,
Wincy Vanb9c237b2015-02-03 23:56:30 +08002814 vmx->nested.nested_vmx_secondary_ctls_low,
2815 vmx->nested.nested_vmx_secondary_ctls_high);
2816 vmx->nested.nested_vmx_secondary_ctls_low = 0;
2817 vmx->nested.nested_vmx_secondary_ctls_high &=
Jan Kiszkad6851fb2013-02-23 22:34:39 +01002818 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES |
Paolo Bonzini1b073042016-10-25 16:06:30 +02002819 SECONDARY_EXEC_DESC |
Wincy Vanf2b93282015-02-03 23:56:03 +08002820 SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE |
Wincy Van82f0dd42015-02-03 23:57:18 +08002821 SECONDARY_EXEC_APIC_REGISTER_VIRT |
Wincy Van608406e2015-02-03 23:57:51 +08002822 SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY |
Paolo Bonzini3db13482017-08-24 14:48:03 +02002823 SECONDARY_EXEC_WBINVD_EXITING;
Jan Kiszkac18911a2013-03-13 16:06:41 +01002824
Nadav Har'Elafa61f72013-08-07 14:59:22 +02002825 if (enable_ept) {
2826 /* nested EPT: emulate EPT also to L1 */
Wincy Vanb9c237b2015-02-03 23:56:30 +08002827 vmx->nested.nested_vmx_secondary_ctls_high |=
Radim Krčmář0790ec12015-03-17 14:02:32 +01002828 SECONDARY_EXEC_ENABLE_EPT;
Wincy Vanb9c237b2015-02-03 23:56:30 +08002829 vmx->nested.nested_vmx_ept_caps = VMX_EPT_PAGE_WALK_4_BIT |
Paolo Bonzini7db74262017-03-08 10:49:19 +01002830 VMX_EPTP_WB_BIT | VMX_EPT_INVEPT_BIT;
Bandan Das02120c42016-07-12 18:18:52 -04002831 if (cpu_has_vmx_ept_execute_only())
2832 vmx->nested.nested_vmx_ept_caps |=
2833 VMX_EPT_EXECUTE_ONLY_BIT;
Wincy Vanb9c237b2015-02-03 23:56:30 +08002834 vmx->nested.nested_vmx_ept_caps &= vmx_capability.ept;
Bandan Das45e11812016-08-02 16:32:36 -04002835 vmx->nested.nested_vmx_ept_caps |= VMX_EPT_EXTENT_GLOBAL_BIT |
Paolo Bonzini7db74262017-03-08 10:49:19 +01002836 VMX_EPT_EXTENT_CONTEXT_BIT | VMX_EPT_2MB_PAGE_BIT |
2837 VMX_EPT_1GB_PAGE_BIT;
Bandan Das03efce62017-05-05 15:25:15 -04002838 if (enable_ept_ad_bits) {
2839 vmx->nested.nested_vmx_secondary_ctls_high |=
2840 SECONDARY_EXEC_ENABLE_PML;
Dan Carpenter7461fbc2017-05-18 10:41:15 +03002841 vmx->nested.nested_vmx_ept_caps |= VMX_EPT_AD_BIT;
Bandan Das03efce62017-05-05 15:25:15 -04002842 }
Nadav Har'Elafa61f72013-08-07 14:59:22 +02002843 } else
Wincy Vanb9c237b2015-02-03 23:56:30 +08002844 vmx->nested.nested_vmx_ept_caps = 0;
Nadav Har'Elafa61f72013-08-07 14:59:22 +02002845
Bandan Das27c42a12017-08-03 15:54:42 -04002846 if (cpu_has_vmx_vmfunc()) {
2847 vmx->nested.nested_vmx_secondary_ctls_high |=
2848 SECONDARY_EXEC_ENABLE_VMFUNC;
Bandan Das41ab9372017-08-03 15:54:43 -04002849 /*
2850 * Advertise EPTP switching unconditionally
2851 * since we emulate it
2852 */
2853 vmx->nested.nested_vmx_vmfunc_controls =
2854 VMX_VMFUNC_EPTP_SWITCHING;
Bandan Das27c42a12017-08-03 15:54:42 -04002855 }
2856
Paolo Bonzinief697a72016-03-18 16:58:38 +01002857 /*
2858 * Old versions of KVM use the single-context version without
2859 * checking for support, so declare that it is supported even
2860 * though it is treated as global context. The alternative is
2861 * not failing the single-context invvpid, and it is worse.
2862 */
Wanpeng Li63cb6d52017-03-20 21:18:53 -07002863 if (enable_vpid) {
2864 vmx->nested.nested_vmx_secondary_ctls_high |=
2865 SECONDARY_EXEC_ENABLE_VPID;
Wanpeng Li089d7b62015-10-13 09:18:37 -07002866 vmx->nested.nested_vmx_vpid_caps = VMX_VPID_INVVPID_BIT |
Jan Dakinevichbcdde302016-10-28 07:00:30 +03002867 VMX_VPID_EXTENT_SUPPORTED_MASK;
Wanpeng Li63cb6d52017-03-20 21:18:53 -07002868 } else
Wanpeng Li089d7b62015-10-13 09:18:37 -07002869 vmx->nested.nested_vmx_vpid_caps = 0;
Wanpeng Li99b83ac2015-10-13 09:12:21 -07002870
Radim Krčmář0790ec12015-03-17 14:02:32 +01002871 if (enable_unrestricted_guest)
2872 vmx->nested.nested_vmx_secondary_ctls_high |=
2873 SECONDARY_EXEC_UNRESTRICTED_GUEST;
2874
Jan Kiszkac18911a2013-03-13 16:06:41 +01002875 /* miscellaneous data */
Wincy Vanb9c237b2015-02-03 23:56:30 +08002876 rdmsr(MSR_IA32_VMX_MISC,
2877 vmx->nested.nested_vmx_misc_low,
2878 vmx->nested.nested_vmx_misc_high);
2879 vmx->nested.nested_vmx_misc_low &= VMX_MISC_SAVE_EFER_LMA;
2880 vmx->nested.nested_vmx_misc_low |=
2881 VMX_MISC_EMULATED_PREEMPTION_TIMER_RATE |
Jan Kiszkaf4124502014-03-07 20:03:13 +01002882 VMX_MISC_ACTIVITY_HLT;
Wincy Vanb9c237b2015-02-03 23:56:30 +08002883 vmx->nested.nested_vmx_misc_high = 0;
David Matlack62cc6b9d2016-11-29 18:14:07 -08002884
2885 /*
2886 * This MSR reports some information about VMX support. We
2887 * should return information about the VMX we emulate for the
2888 * guest, and the VMCS structure we give it - not about the
2889 * VMX support of the underlying hardware.
2890 */
2891 vmx->nested.nested_vmx_basic =
2892 VMCS12_REVISION |
2893 VMX_BASIC_TRUE_CTLS |
2894 ((u64)VMCS12_SIZE << VMX_BASIC_VMCS_SIZE_SHIFT) |
2895 (VMX_BASIC_MEM_TYPE_WB << VMX_BASIC_MEM_TYPE_SHIFT);
2896
2897 if (cpu_has_vmx_basic_inout())
2898 vmx->nested.nested_vmx_basic |= VMX_BASIC_INOUT;
2899
2900 /*
David Matlack8322ebb2016-11-29 18:14:09 -08002901 * These MSRs specify bits which the guest must keep fixed on
David Matlack62cc6b9d2016-11-29 18:14:07 -08002902 * while L1 is in VMXON mode (in L1's root mode, or running an L2).
2903 * We picked the standard core2 setting.
2904 */
2905#define VMXON_CR0_ALWAYSON (X86_CR0_PE | X86_CR0_PG | X86_CR0_NE)
2906#define VMXON_CR4_ALWAYSON X86_CR4_VMXE
2907 vmx->nested.nested_vmx_cr0_fixed0 = VMXON_CR0_ALWAYSON;
David Matlack62cc6b9d2016-11-29 18:14:07 -08002908 vmx->nested.nested_vmx_cr4_fixed0 = VMXON_CR4_ALWAYSON;
David Matlack8322ebb2016-11-29 18:14:09 -08002909
2910 /* These MSRs specify bits which the guest must keep fixed off. */
2911 rdmsrl(MSR_IA32_VMX_CR0_FIXED1, vmx->nested.nested_vmx_cr0_fixed1);
2912 rdmsrl(MSR_IA32_VMX_CR4_FIXED1, vmx->nested.nested_vmx_cr4_fixed1);
David Matlack62cc6b9d2016-11-29 18:14:07 -08002913
2914 /* highest index: VMX_PREEMPTION_TIMER_VALUE */
2915 vmx->nested.nested_vmx_vmcs_enum = 0x2e;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002916}
2917
David Matlack38991522016-11-29 18:14:08 -08002918/*
2919 * if fixed0[i] == 1: val[i] must be 1
2920 * if fixed1[i] == 0: val[i] must be 0
2921 */
2922static inline bool fixed_bits_valid(u64 val, u64 fixed0, u64 fixed1)
2923{
2924 return ((val & fixed1) | fixed0) == val;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002925}
2926
2927static inline bool vmx_control_verify(u32 control, u32 low, u32 high)
2928{
David Matlack38991522016-11-29 18:14:08 -08002929 return fixed_bits_valid(control, low, high);
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03002930}
2931
2932static inline u64 vmx_control_msr(u32 low, u32 high)
2933{
2934 return low | ((u64)high << 32);
2935}
2936
David Matlack62cc6b9d2016-11-29 18:14:07 -08002937static bool is_bitwise_subset(u64 superset, u64 subset, u64 mask)
2938{
2939 superset &= mask;
2940 subset &= mask;
2941
2942 return (superset | subset) == superset;
2943}
2944
2945static int vmx_restore_vmx_basic(struct vcpu_vmx *vmx, u64 data)
2946{
2947 const u64 feature_and_reserved =
2948 /* feature (except bit 48; see below) */
2949 BIT_ULL(49) | BIT_ULL(54) | BIT_ULL(55) |
2950 /* reserved */
2951 BIT_ULL(31) | GENMASK_ULL(47, 45) | GENMASK_ULL(63, 56);
2952 u64 vmx_basic = vmx->nested.nested_vmx_basic;
2953
2954 if (!is_bitwise_subset(vmx_basic, data, feature_and_reserved))
2955 return -EINVAL;
2956
2957 /*
2958 * KVM does not emulate a version of VMX that constrains physical
2959 * addresses of VMX structures (e.g. VMCS) to 32-bits.
2960 */
2961 if (data & BIT_ULL(48))
2962 return -EINVAL;
2963
2964 if (vmx_basic_vmcs_revision_id(vmx_basic) !=
2965 vmx_basic_vmcs_revision_id(data))
2966 return -EINVAL;
2967
2968 if (vmx_basic_vmcs_size(vmx_basic) > vmx_basic_vmcs_size(data))
2969 return -EINVAL;
2970
2971 vmx->nested.nested_vmx_basic = data;
2972 return 0;
2973}
2974
2975static int
2976vmx_restore_control_msr(struct vcpu_vmx *vmx, u32 msr_index, u64 data)
2977{
2978 u64 supported;
2979 u32 *lowp, *highp;
2980
2981 switch (msr_index) {
2982 case MSR_IA32_VMX_TRUE_PINBASED_CTLS:
2983 lowp = &vmx->nested.nested_vmx_pinbased_ctls_low;
2984 highp = &vmx->nested.nested_vmx_pinbased_ctls_high;
2985 break;
2986 case MSR_IA32_VMX_TRUE_PROCBASED_CTLS:
2987 lowp = &vmx->nested.nested_vmx_procbased_ctls_low;
2988 highp = &vmx->nested.nested_vmx_procbased_ctls_high;
2989 break;
2990 case MSR_IA32_VMX_TRUE_EXIT_CTLS:
2991 lowp = &vmx->nested.nested_vmx_exit_ctls_low;
2992 highp = &vmx->nested.nested_vmx_exit_ctls_high;
2993 break;
2994 case MSR_IA32_VMX_TRUE_ENTRY_CTLS:
2995 lowp = &vmx->nested.nested_vmx_entry_ctls_low;
2996 highp = &vmx->nested.nested_vmx_entry_ctls_high;
2997 break;
2998 case MSR_IA32_VMX_PROCBASED_CTLS2:
2999 lowp = &vmx->nested.nested_vmx_secondary_ctls_low;
3000 highp = &vmx->nested.nested_vmx_secondary_ctls_high;
3001 break;
3002 default:
3003 BUG();
3004 }
3005
3006 supported = vmx_control_msr(*lowp, *highp);
3007
3008 /* Check must-be-1 bits are still 1. */
3009 if (!is_bitwise_subset(data, supported, GENMASK_ULL(31, 0)))
3010 return -EINVAL;
3011
3012 /* Check must-be-0 bits are still 0. */
3013 if (!is_bitwise_subset(supported, data, GENMASK_ULL(63, 32)))
3014 return -EINVAL;
3015
3016 *lowp = data;
3017 *highp = data >> 32;
3018 return 0;
3019}
3020
3021static int vmx_restore_vmx_misc(struct vcpu_vmx *vmx, u64 data)
3022{
3023 const u64 feature_and_reserved_bits =
3024 /* feature */
3025 BIT_ULL(5) | GENMASK_ULL(8, 6) | BIT_ULL(14) | BIT_ULL(15) |
3026 BIT_ULL(28) | BIT_ULL(29) | BIT_ULL(30) |
3027 /* reserved */
3028 GENMASK_ULL(13, 9) | BIT_ULL(31);
3029 u64 vmx_misc;
3030
3031 vmx_misc = vmx_control_msr(vmx->nested.nested_vmx_misc_low,
3032 vmx->nested.nested_vmx_misc_high);
3033
3034 if (!is_bitwise_subset(vmx_misc, data, feature_and_reserved_bits))
3035 return -EINVAL;
3036
3037 if ((vmx->nested.nested_vmx_pinbased_ctls_high &
3038 PIN_BASED_VMX_PREEMPTION_TIMER) &&
3039 vmx_misc_preemption_timer_rate(data) !=
3040 vmx_misc_preemption_timer_rate(vmx_misc))
3041 return -EINVAL;
3042
3043 if (vmx_misc_cr3_count(data) > vmx_misc_cr3_count(vmx_misc))
3044 return -EINVAL;
3045
3046 if (vmx_misc_max_msr(data) > vmx_misc_max_msr(vmx_misc))
3047 return -EINVAL;
3048
3049 if (vmx_misc_mseg_revid(data) != vmx_misc_mseg_revid(vmx_misc))
3050 return -EINVAL;
3051
3052 vmx->nested.nested_vmx_misc_low = data;
3053 vmx->nested.nested_vmx_misc_high = data >> 32;
3054 return 0;
3055}
3056
3057static int vmx_restore_vmx_ept_vpid_cap(struct vcpu_vmx *vmx, u64 data)
3058{
3059 u64 vmx_ept_vpid_cap;
3060
3061 vmx_ept_vpid_cap = vmx_control_msr(vmx->nested.nested_vmx_ept_caps,
3062 vmx->nested.nested_vmx_vpid_caps);
3063
3064 /* Every bit is either reserved or a feature bit. */
3065 if (!is_bitwise_subset(vmx_ept_vpid_cap, data, -1ULL))
3066 return -EINVAL;
3067
3068 vmx->nested.nested_vmx_ept_caps = data;
3069 vmx->nested.nested_vmx_vpid_caps = data >> 32;
3070 return 0;
3071}
3072
3073static int vmx_restore_fixed0_msr(struct vcpu_vmx *vmx, u32 msr_index, u64 data)
3074{
3075 u64 *msr;
3076
3077 switch (msr_index) {
3078 case MSR_IA32_VMX_CR0_FIXED0:
3079 msr = &vmx->nested.nested_vmx_cr0_fixed0;
3080 break;
3081 case MSR_IA32_VMX_CR4_FIXED0:
3082 msr = &vmx->nested.nested_vmx_cr4_fixed0;
3083 break;
3084 default:
3085 BUG();
3086 }
3087
3088 /*
3089 * 1 bits (which indicates bits which "must-be-1" during VMX operation)
3090 * must be 1 in the restored value.
3091 */
3092 if (!is_bitwise_subset(data, *msr, -1ULL))
3093 return -EINVAL;
3094
3095 *msr = data;
3096 return 0;
3097}
3098
3099/*
3100 * Called when userspace is restoring VMX MSRs.
3101 *
3102 * Returns 0 on success, non-0 otherwise.
3103 */
3104static int vmx_set_vmx_msr(struct kvm_vcpu *vcpu, u32 msr_index, u64 data)
3105{
3106 struct vcpu_vmx *vmx = to_vmx(vcpu);
3107
3108 switch (msr_index) {
3109 case MSR_IA32_VMX_BASIC:
3110 return vmx_restore_vmx_basic(vmx, data);
3111 case MSR_IA32_VMX_PINBASED_CTLS:
3112 case MSR_IA32_VMX_PROCBASED_CTLS:
3113 case MSR_IA32_VMX_EXIT_CTLS:
3114 case MSR_IA32_VMX_ENTRY_CTLS:
3115 /*
3116 * The "non-true" VMX capability MSRs are generated from the
3117 * "true" MSRs, so we do not support restoring them directly.
3118 *
3119 * If userspace wants to emulate VMX_BASIC[55]=0, userspace
3120 * should restore the "true" MSRs with the must-be-1 bits
3121 * set according to the SDM Vol 3. A.2 "RESERVED CONTROLS AND
3122 * DEFAULT SETTINGS".
3123 */
3124 return -EINVAL;
3125 case MSR_IA32_VMX_TRUE_PINBASED_CTLS:
3126 case MSR_IA32_VMX_TRUE_PROCBASED_CTLS:
3127 case MSR_IA32_VMX_TRUE_EXIT_CTLS:
3128 case MSR_IA32_VMX_TRUE_ENTRY_CTLS:
3129 case MSR_IA32_VMX_PROCBASED_CTLS2:
3130 return vmx_restore_control_msr(vmx, msr_index, data);
3131 case MSR_IA32_VMX_MISC:
3132 return vmx_restore_vmx_misc(vmx, data);
3133 case MSR_IA32_VMX_CR0_FIXED0:
3134 case MSR_IA32_VMX_CR4_FIXED0:
3135 return vmx_restore_fixed0_msr(vmx, msr_index, data);
3136 case MSR_IA32_VMX_CR0_FIXED1:
3137 case MSR_IA32_VMX_CR4_FIXED1:
3138 /*
3139 * These MSRs are generated based on the vCPU's CPUID, so we
3140 * do not support restoring them directly.
3141 */
3142 return -EINVAL;
3143 case MSR_IA32_VMX_EPT_VPID_CAP:
3144 return vmx_restore_vmx_ept_vpid_cap(vmx, data);
3145 case MSR_IA32_VMX_VMCS_ENUM:
3146 vmx->nested.nested_vmx_vmcs_enum = data;
3147 return 0;
3148 default:
3149 /*
3150 * The rest of the VMX capability MSRs do not support restore.
3151 */
3152 return -EINVAL;
3153 }
3154}
3155
Jan Kiszkacae50132014-01-04 18:47:22 +01003156/* Returns 0 on success, non-0 otherwise. */
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003157static int vmx_get_vmx_msr(struct kvm_vcpu *vcpu, u32 msr_index, u64 *pdata)
3158{
Wincy Vanb9c237b2015-02-03 23:56:30 +08003159 struct vcpu_vmx *vmx = to_vmx(vcpu);
3160
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003161 switch (msr_index) {
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003162 case MSR_IA32_VMX_BASIC:
David Matlack62cc6b9d2016-11-29 18:14:07 -08003163 *pdata = vmx->nested.nested_vmx_basic;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003164 break;
3165 case MSR_IA32_VMX_TRUE_PINBASED_CTLS:
3166 case MSR_IA32_VMX_PINBASED_CTLS:
Wincy Vanb9c237b2015-02-03 23:56:30 +08003167 *pdata = vmx_control_msr(
3168 vmx->nested.nested_vmx_pinbased_ctls_low,
3169 vmx->nested.nested_vmx_pinbased_ctls_high);
David Matlack0115f9c2016-11-29 18:14:06 -08003170 if (msr_index == MSR_IA32_VMX_PINBASED_CTLS)
3171 *pdata |= PIN_BASED_ALWAYSON_WITHOUT_TRUE_MSR;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003172 break;
3173 case MSR_IA32_VMX_TRUE_PROCBASED_CTLS:
3174 case MSR_IA32_VMX_PROCBASED_CTLS:
Wincy Vanb9c237b2015-02-03 23:56:30 +08003175 *pdata = vmx_control_msr(
3176 vmx->nested.nested_vmx_procbased_ctls_low,
3177 vmx->nested.nested_vmx_procbased_ctls_high);
David Matlack0115f9c2016-11-29 18:14:06 -08003178 if (msr_index == MSR_IA32_VMX_PROCBASED_CTLS)
3179 *pdata |= CPU_BASED_ALWAYSON_WITHOUT_TRUE_MSR;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003180 break;
3181 case MSR_IA32_VMX_TRUE_EXIT_CTLS:
3182 case MSR_IA32_VMX_EXIT_CTLS:
Wincy Vanb9c237b2015-02-03 23:56:30 +08003183 *pdata = vmx_control_msr(
3184 vmx->nested.nested_vmx_exit_ctls_low,
3185 vmx->nested.nested_vmx_exit_ctls_high);
David Matlack0115f9c2016-11-29 18:14:06 -08003186 if (msr_index == MSR_IA32_VMX_EXIT_CTLS)
3187 *pdata |= VM_EXIT_ALWAYSON_WITHOUT_TRUE_MSR;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003188 break;
3189 case MSR_IA32_VMX_TRUE_ENTRY_CTLS:
3190 case MSR_IA32_VMX_ENTRY_CTLS:
Wincy Vanb9c237b2015-02-03 23:56:30 +08003191 *pdata = vmx_control_msr(
3192 vmx->nested.nested_vmx_entry_ctls_low,
3193 vmx->nested.nested_vmx_entry_ctls_high);
David Matlack0115f9c2016-11-29 18:14:06 -08003194 if (msr_index == MSR_IA32_VMX_ENTRY_CTLS)
3195 *pdata |= VM_ENTRY_ALWAYSON_WITHOUT_TRUE_MSR;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003196 break;
3197 case MSR_IA32_VMX_MISC:
Wincy Vanb9c237b2015-02-03 23:56:30 +08003198 *pdata = vmx_control_msr(
3199 vmx->nested.nested_vmx_misc_low,
3200 vmx->nested.nested_vmx_misc_high);
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003201 break;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003202 case MSR_IA32_VMX_CR0_FIXED0:
David Matlack62cc6b9d2016-11-29 18:14:07 -08003203 *pdata = vmx->nested.nested_vmx_cr0_fixed0;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003204 break;
3205 case MSR_IA32_VMX_CR0_FIXED1:
David Matlack62cc6b9d2016-11-29 18:14:07 -08003206 *pdata = vmx->nested.nested_vmx_cr0_fixed1;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003207 break;
3208 case MSR_IA32_VMX_CR4_FIXED0:
David Matlack62cc6b9d2016-11-29 18:14:07 -08003209 *pdata = vmx->nested.nested_vmx_cr4_fixed0;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003210 break;
3211 case MSR_IA32_VMX_CR4_FIXED1:
David Matlack62cc6b9d2016-11-29 18:14:07 -08003212 *pdata = vmx->nested.nested_vmx_cr4_fixed1;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003213 break;
3214 case MSR_IA32_VMX_VMCS_ENUM:
David Matlack62cc6b9d2016-11-29 18:14:07 -08003215 *pdata = vmx->nested.nested_vmx_vmcs_enum;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003216 break;
3217 case MSR_IA32_VMX_PROCBASED_CTLS2:
Wincy Vanb9c237b2015-02-03 23:56:30 +08003218 *pdata = vmx_control_msr(
3219 vmx->nested.nested_vmx_secondary_ctls_low,
3220 vmx->nested.nested_vmx_secondary_ctls_high);
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003221 break;
3222 case MSR_IA32_VMX_EPT_VPID_CAP:
Wanpeng Li089d7b62015-10-13 09:18:37 -07003223 *pdata = vmx->nested.nested_vmx_ept_caps |
3224 ((u64)vmx->nested.nested_vmx_vpid_caps << 32);
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003225 break;
Bandan Das27c42a12017-08-03 15:54:42 -04003226 case MSR_IA32_VMX_VMFUNC:
3227 *pdata = vmx->nested.nested_vmx_vmfunc_controls;
3228 break;
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003229 default:
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003230 return 1;
Nadav Har'Elb3897a42013-07-08 19:12:35 +08003231 }
3232
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003233 return 0;
3234}
3235
Haozhong Zhang37e4c992016-06-22 14:59:55 +08003236static inline bool vmx_feature_control_msr_valid(struct kvm_vcpu *vcpu,
3237 uint64_t val)
3238{
3239 uint64_t valid_bits = to_vmx(vcpu)->msr_ia32_feature_control_valid_bits;
3240
3241 return !(val & ~valid_bits);
3242}
3243
Nadav Har'Elb87a51a2011-05-25 23:04:25 +03003244/*
Avi Kivity6aa8b732006-12-10 02:21:36 -08003245 * Reads an msr value (of 'msr_index') into 'pdata'.
3246 * Returns 0 on success, non-0 otherwise.
3247 * Assumes vcpu_load() was already called.
3248 */
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003249static int vmx_get_msr(struct kvm_vcpu *vcpu, struct msr_data *msr_info)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003250{
Avi Kivity26bb0982009-09-07 11:14:12 +03003251 struct shared_msr_entry *msr;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003252
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003253 switch (msr_info->index) {
Avi Kivity05b3e0c2006-12-13 00:33:45 -08003254#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08003255 case MSR_FS_BASE:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003256 msr_info->data = vmcs_readl(GUEST_FS_BASE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003257 break;
3258 case MSR_GS_BASE:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003259 msr_info->data = vmcs_readl(GUEST_GS_BASE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003260 break;
Avi Kivity44ea2b12009-09-06 15:55:37 +03003261 case MSR_KERNEL_GS_BASE:
3262 vmx_load_host_state(to_vmx(vcpu));
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003263 msr_info->data = to_vmx(vcpu)->msr_guest_kernel_gs_base;
Avi Kivity44ea2b12009-09-06 15:55:37 +03003264 break;
Avi Kivity26bb0982009-09-07 11:14:12 +03003265#endif
Avi Kivity6aa8b732006-12-10 02:21:36 -08003266 case MSR_EFER:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003267 return kvm_get_msr_common(vcpu, msr_info);
Jaswinder Singh Rajputaf24a4e2009-05-15 18:42:05 +05303268 case MSR_IA32_TSC:
Haozhong Zhangbe7b2632015-10-20 15:39:11 +08003269 msr_info->data = guest_read_tsc(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003270 break;
3271 case MSR_IA32_SYSENTER_CS:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003272 msr_info->data = vmcs_read32(GUEST_SYSENTER_CS);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003273 break;
3274 case MSR_IA32_SYSENTER_EIP:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003275 msr_info->data = vmcs_readl(GUEST_SYSENTER_EIP);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003276 break;
3277 case MSR_IA32_SYSENTER_ESP:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003278 msr_info->data = vmcs_readl(GUEST_SYSENTER_ESP);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003279 break;
Liu, Jinsong0dd376e2014-02-24 10:56:53 +00003280 case MSR_IA32_BNDCFGS:
Haozhong Zhang691bd432017-07-04 10:27:41 +08003281 if (!kvm_mpx_supported() ||
Radim Krčmářd6321d42017-08-05 00:12:49 +02003282 (!msr_info->host_initiated &&
3283 !guest_cpuid_has(vcpu, X86_FEATURE_MPX)))
Paolo Bonzini93c4adc2014-03-05 23:19:52 +01003284 return 1;
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003285 msr_info->data = vmcs_read64(GUEST_BNDCFGS);
Liu, Jinsong0dd376e2014-02-24 10:56:53 +00003286 break;
Ashok Rajc45dcc72016-06-22 14:59:56 +08003287 case MSR_IA32_MCG_EXT_CTL:
3288 if (!msr_info->host_initiated &&
3289 !(to_vmx(vcpu)->msr_ia32_feature_control &
3290 FEATURE_CONTROL_LMCE))
Jan Kiszkacae50132014-01-04 18:47:22 +01003291 return 1;
Ashok Rajc45dcc72016-06-22 14:59:56 +08003292 msr_info->data = vcpu->arch.mcg_ext_ctl;
3293 break;
Jan Kiszkacae50132014-01-04 18:47:22 +01003294 case MSR_IA32_FEATURE_CONTROL:
Haozhong Zhang3b840802016-06-22 14:59:54 +08003295 msr_info->data = to_vmx(vcpu)->msr_ia32_feature_control;
Jan Kiszkacae50132014-01-04 18:47:22 +01003296 break;
3297 case MSR_IA32_VMX_BASIC ... MSR_IA32_VMX_VMFUNC:
3298 if (!nested_vmx_allowed(vcpu))
3299 return 1;
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003300 return vmx_get_vmx_msr(vcpu, msr_info->index, &msr_info->data);
Wanpeng Li20300092014-12-02 19:14:59 +08003301 case MSR_IA32_XSS:
3302 if (!vmx_xsaves_supported())
3303 return 1;
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003304 msr_info->data = vcpu->arch.ia32_xss;
Wanpeng Li20300092014-12-02 19:14:59 +08003305 break;
Sheng Yang4e47c7a2009-12-18 16:48:47 +08003306 case MSR_TSC_AUX:
Radim Krčmářd6321d42017-08-05 00:12:49 +02003307 if (!msr_info->host_initiated &&
3308 !guest_cpuid_has(vcpu, X86_FEATURE_RDTSCP))
Sheng Yang4e47c7a2009-12-18 16:48:47 +08003309 return 1;
3310 /* Otherwise falls through */
Avi Kivity6aa8b732006-12-10 02:21:36 -08003311 default:
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003312 msr = find_msr_entry(to_vmx(vcpu), msr_info->index);
Avi Kivity3bab1f52006-12-29 16:49:48 -08003313 if (msr) {
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003314 msr_info->data = msr->data;
Avi Kivity3bab1f52006-12-29 16:49:48 -08003315 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003316 }
Paolo Bonzini609e36d2015-04-08 15:30:38 +02003317 return kvm_get_msr_common(vcpu, msr_info);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003318 }
3319
Avi Kivity6aa8b732006-12-10 02:21:36 -08003320 return 0;
3321}
3322
Jan Kiszkacae50132014-01-04 18:47:22 +01003323static void vmx_leave_nested(struct kvm_vcpu *vcpu);
3324
Avi Kivity6aa8b732006-12-10 02:21:36 -08003325/*
3326 * Writes msr value into into the appropriate "register".
3327 * Returns 0 on success, non-0 otherwise.
3328 * Assumes vcpu_load() was already called.
3329 */
Will Auld8fe8ab42012-11-29 12:42:12 -08003330static int vmx_set_msr(struct kvm_vcpu *vcpu, struct msr_data *msr_info)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003331{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04003332 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity26bb0982009-09-07 11:14:12 +03003333 struct shared_msr_entry *msr;
Eddie Dong2cc51562007-05-21 07:28:09 +03003334 int ret = 0;
Will Auld8fe8ab42012-11-29 12:42:12 -08003335 u32 msr_index = msr_info->index;
3336 u64 data = msr_info->data;
Eddie Dong2cc51562007-05-21 07:28:09 +03003337
Avi Kivity6aa8b732006-12-10 02:21:36 -08003338 switch (msr_index) {
Avi Kivity3bab1f52006-12-29 16:49:48 -08003339 case MSR_EFER:
Will Auld8fe8ab42012-11-29 12:42:12 -08003340 ret = kvm_set_msr_common(vcpu, msr_info);
Eddie Dong2cc51562007-05-21 07:28:09 +03003341 break;
Avi Kivity16175a72009-03-23 22:13:44 +02003342#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08003343 case MSR_FS_BASE:
Avi Kivity2fb92db2011-04-27 19:42:18 +03003344 vmx_segment_cache_clear(vmx);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003345 vmcs_writel(GUEST_FS_BASE, data);
3346 break;
3347 case MSR_GS_BASE:
Avi Kivity2fb92db2011-04-27 19:42:18 +03003348 vmx_segment_cache_clear(vmx);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003349 vmcs_writel(GUEST_GS_BASE, data);
3350 break;
Avi Kivity44ea2b12009-09-06 15:55:37 +03003351 case MSR_KERNEL_GS_BASE:
3352 vmx_load_host_state(vmx);
3353 vmx->msr_guest_kernel_gs_base = data;
3354 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003355#endif
3356 case MSR_IA32_SYSENTER_CS:
3357 vmcs_write32(GUEST_SYSENTER_CS, data);
3358 break;
3359 case MSR_IA32_SYSENTER_EIP:
Avi Kivityf5b42c32007-03-06 12:05:53 +02003360 vmcs_writel(GUEST_SYSENTER_EIP, data);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003361 break;
3362 case MSR_IA32_SYSENTER_ESP:
Avi Kivityf5b42c32007-03-06 12:05:53 +02003363 vmcs_writel(GUEST_SYSENTER_ESP, data);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003364 break;
Liu, Jinsong0dd376e2014-02-24 10:56:53 +00003365 case MSR_IA32_BNDCFGS:
Haozhong Zhang691bd432017-07-04 10:27:41 +08003366 if (!kvm_mpx_supported() ||
Radim Krčmářd6321d42017-08-05 00:12:49 +02003367 (!msr_info->host_initiated &&
3368 !guest_cpuid_has(vcpu, X86_FEATURE_MPX)))
Paolo Bonzini93c4adc2014-03-05 23:19:52 +01003369 return 1;
Yu Zhangfd8cb432017-08-24 20:27:56 +08003370 if (is_noncanonical_address(data & PAGE_MASK, vcpu) ||
Jim Mattson45316622017-05-23 11:52:54 -07003371 (data & MSR_IA32_BNDCFGS_RSVD))
Avi Kivity6aa8b732006-12-10 02:21:36 -08003372 return 1;
Sheng Yang468d4722008-10-09 16:01:55 +08003373 vmcs_write64(GUEST_BNDCFGS, data);
3374 break;
3375 case MSR_IA32_TSC:
3376 kvm_write_tsc(vcpu, msr_info);
3377 break;
3378 case MSR_IA32_CR_PAT:
Will Auld8fe8ab42012-11-29 12:42:12 -08003379 if (vmcs_config.vmentry_ctrl & VM_ENTRY_LOAD_IA32_PAT) {
Nadav Amit45666542014-09-18 22:39:44 +03003380 if (!kvm_mtrr_valid(vcpu, MSR_IA32_CR_PAT, data))
3381 return 1;
Sheng Yang468d4722008-10-09 16:01:55 +08003382 vmcs_write64(GUEST_IA32_PAT, data);
3383 vcpu->arch.pat = data;
3384 break;
3385 }
Sheng Yang4e47c7a2009-12-18 16:48:47 +08003386 ret = kvm_set_msr_common(vcpu, msr_info);
3387 break;
Will Auldba904632012-11-29 12:42:50 -08003388 case MSR_IA32_TSC_ADJUST:
3389 ret = kvm_set_msr_common(vcpu, msr_info);
Sheng Yang4e47c7a2009-12-18 16:48:47 +08003390 break;
Ashok Rajc45dcc72016-06-22 14:59:56 +08003391 case MSR_IA32_MCG_EXT_CTL:
3392 if ((!msr_info->host_initiated &&
3393 !(to_vmx(vcpu)->msr_ia32_feature_control &
3394 FEATURE_CONTROL_LMCE)) ||
3395 (data & ~MCG_EXT_CTL_LMCE_EN))
3396 return 1;
3397 vcpu->arch.mcg_ext_ctl = data;
3398 break;
Jan Kiszkacae50132014-01-04 18:47:22 +01003399 case MSR_IA32_FEATURE_CONTROL:
Haozhong Zhang37e4c992016-06-22 14:59:55 +08003400 if (!vmx_feature_control_msr_valid(vcpu, data) ||
Haozhong Zhang3b840802016-06-22 14:59:54 +08003401 (to_vmx(vcpu)->msr_ia32_feature_control &
Jan Kiszkacae50132014-01-04 18:47:22 +01003402 FEATURE_CONTROL_LOCKED && !msr_info->host_initiated))
3403 return 1;
Haozhong Zhang3b840802016-06-22 14:59:54 +08003404 vmx->msr_ia32_feature_control = data;
Jan Kiszkacae50132014-01-04 18:47:22 +01003405 if (msr_info->host_initiated && data == 0)
3406 vmx_leave_nested(vcpu);
3407 break;
3408 case MSR_IA32_VMX_BASIC ... MSR_IA32_VMX_VMFUNC:
David Matlack62cc6b9d2016-11-29 18:14:07 -08003409 if (!msr_info->host_initiated)
3410 return 1; /* they are read-only */
3411 if (!nested_vmx_allowed(vcpu))
3412 return 1;
3413 return vmx_set_vmx_msr(vcpu, msr_index, data);
Wanpeng Li20300092014-12-02 19:14:59 +08003414 case MSR_IA32_XSS:
3415 if (!vmx_xsaves_supported())
3416 return 1;
3417 /*
3418 * The only supported bit as of Skylake is bit 8, but
3419 * it is not supported on KVM.
3420 */
3421 if (data != 0)
3422 return 1;
3423 vcpu->arch.ia32_xss = data;
3424 if (vcpu->arch.ia32_xss != host_xss)
3425 add_atomic_switch_msr(vmx, MSR_IA32_XSS,
3426 vcpu->arch.ia32_xss, host_xss);
3427 else
3428 clear_atomic_switch_msr(vmx, MSR_IA32_XSS);
3429 break;
Sheng Yang4e47c7a2009-12-18 16:48:47 +08003430 case MSR_TSC_AUX:
Radim Krčmářd6321d42017-08-05 00:12:49 +02003431 if (!msr_info->host_initiated &&
3432 !guest_cpuid_has(vcpu, X86_FEATURE_RDTSCP))
Sheng Yang4e47c7a2009-12-18 16:48:47 +08003433 return 1;
3434 /* Check reserved bit, higher 32 bits should be zero */
3435 if ((data >> 32) != 0)
3436 return 1;
3437 /* Otherwise falls through */
Avi Kivity6aa8b732006-12-10 02:21:36 -08003438 default:
Rusty Russell8b9cf982007-07-30 16:31:43 +10003439 msr = find_msr_entry(vmx, msr_index);
Avi Kivity3bab1f52006-12-29 16:49:48 -08003440 if (msr) {
Andy Honig8b3c3102014-08-27 11:16:44 -07003441 u64 old_msr_data = msr->data;
Avi Kivity3bab1f52006-12-29 16:49:48 -08003442 msr->data = data;
Avi Kivity2225fd52012-04-18 15:03:04 +03003443 if (msr - vmx->guest_msrs < vmx->save_nmsrs) {
3444 preempt_disable();
Andy Honig8b3c3102014-08-27 11:16:44 -07003445 ret = kvm_set_shared_msr(msr->index, msr->data,
3446 msr->mask);
Avi Kivity2225fd52012-04-18 15:03:04 +03003447 preempt_enable();
Andy Honig8b3c3102014-08-27 11:16:44 -07003448 if (ret)
3449 msr->data = old_msr_data;
Avi Kivity2225fd52012-04-18 15:03:04 +03003450 }
Avi Kivity3bab1f52006-12-29 16:49:48 -08003451 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003452 }
Will Auld8fe8ab42012-11-29 12:42:12 -08003453 ret = kvm_set_msr_common(vcpu, msr_info);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003454 }
3455
Eddie Dong2cc51562007-05-21 07:28:09 +03003456 return ret;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003457}
3458
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03003459static void vmx_cache_reg(struct kvm_vcpu *vcpu, enum kvm_reg reg)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003460{
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03003461 __set_bit(reg, (unsigned long *)&vcpu->arch.regs_avail);
3462 switch (reg) {
3463 case VCPU_REGS_RSP:
3464 vcpu->arch.regs[VCPU_REGS_RSP] = vmcs_readl(GUEST_RSP);
3465 break;
3466 case VCPU_REGS_RIP:
3467 vcpu->arch.regs[VCPU_REGS_RIP] = vmcs_readl(GUEST_RIP);
3468 break;
Avi Kivity6de4f3a2009-05-31 22:58:47 +03003469 case VCPU_EXREG_PDPTR:
3470 if (enable_ept)
3471 ept_save_pdptrs(vcpu);
3472 break;
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03003473 default:
3474 break;
3475 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08003476}
3477
Avi Kivity6aa8b732006-12-10 02:21:36 -08003478static __init int cpu_has_kvm_support(void)
3479{
Eduardo Habkost6210e372008-11-17 19:03:16 -02003480 return cpu_has_vmx();
Avi Kivity6aa8b732006-12-10 02:21:36 -08003481}
3482
3483static __init int vmx_disabled_by_bios(void)
3484{
3485 u64 msr;
3486
3487 rdmsrl(MSR_IA32_FEATURE_CONTROL, msr);
Shane Wangcafd6652010-04-29 12:09:01 -04003488 if (msr & FEATURE_CONTROL_LOCKED) {
Joseph Cihula23f3e992011-02-08 11:45:56 -08003489 /* launched w/ TXT and VMX disabled */
Shane Wangcafd6652010-04-29 12:09:01 -04003490 if (!(msr & FEATURE_CONTROL_VMXON_ENABLED_INSIDE_SMX)
3491 && tboot_enabled())
3492 return 1;
Joseph Cihula23f3e992011-02-08 11:45:56 -08003493 /* launched w/o TXT and VMX only enabled w/ TXT */
Shane Wangcafd6652010-04-29 12:09:01 -04003494 if (!(msr & FEATURE_CONTROL_VMXON_ENABLED_OUTSIDE_SMX)
Joseph Cihula23f3e992011-02-08 11:45:56 -08003495 && (msr & FEATURE_CONTROL_VMXON_ENABLED_INSIDE_SMX)
Shane Wangf9335af2010-11-17 11:40:17 +08003496 && !tboot_enabled()) {
3497 printk(KERN_WARNING "kvm: disable TXT in the BIOS or "
Joseph Cihula23f3e992011-02-08 11:45:56 -08003498 "activate TXT before enabling KVM\n");
Shane Wangcafd6652010-04-29 12:09:01 -04003499 return 1;
Shane Wangf9335af2010-11-17 11:40:17 +08003500 }
Joseph Cihula23f3e992011-02-08 11:45:56 -08003501 /* launched w/o TXT and VMX disabled */
3502 if (!(msr & FEATURE_CONTROL_VMXON_ENABLED_OUTSIDE_SMX)
3503 && !tboot_enabled())
3504 return 1;
Shane Wangcafd6652010-04-29 12:09:01 -04003505 }
3506
3507 return 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003508}
3509
Dongxiao Xu7725b892010-05-11 18:29:38 +08003510static void kvm_cpu_vmxon(u64 addr)
3511{
David Hildenbrandfe0e80b2017-03-10 12:47:13 +01003512 cr4_set_bits(X86_CR4_VMXE);
Alexander Shishkin1c5ac212016-03-29 17:43:10 +03003513 intel_pt_handle_vmx(1);
3514
Dongxiao Xu7725b892010-05-11 18:29:38 +08003515 asm volatile (ASM_VMX_VMXON_RAX
3516 : : "a"(&addr), "m"(addr)
3517 : "memory", "cc");
3518}
3519
Radim Krčmář13a34e02014-08-28 15:13:03 +02003520static int hardware_enable(void)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003521{
3522 int cpu = raw_smp_processor_id();
3523 u64 phys_addr = __pa(per_cpu(vmxarea, cpu));
Shane Wangcafd6652010-04-29 12:09:01 -04003524 u64 old, test_bits;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003525
Andy Lutomirski1e02ce42014-10-24 15:58:08 -07003526 if (cr4_read_shadow() & X86_CR4_VMXE)
Alexander Graf10474ae2009-09-15 11:37:46 +02003527 return -EBUSY;
3528
Nadav Har'Eld462b812011-05-24 15:26:10 +03003529 INIT_LIST_HEAD(&per_cpu(loaded_vmcss_on_cpu, cpu));
Feng Wubf9f6ac2015-09-18 22:29:55 +08003530 INIT_LIST_HEAD(&per_cpu(blocked_vcpu_on_cpu, cpu));
3531 spin_lock_init(&per_cpu(blocked_vcpu_on_cpu_lock, cpu));
Zhang Yanfei8f536b72012-12-06 23:43:34 +08003532
3533 /*
3534 * Now we can enable the vmclear operation in kdump
3535 * since the loaded_vmcss_on_cpu list on this cpu
3536 * has been initialized.
3537 *
3538 * Though the cpu is not in VMX operation now, there
3539 * is no problem to enable the vmclear operation
3540 * for the loaded_vmcss_on_cpu list is empty!
3541 */
3542 crash_enable_local_vmclear(cpu);
3543
Avi Kivity6aa8b732006-12-10 02:21:36 -08003544 rdmsrl(MSR_IA32_FEATURE_CONTROL, old);
Shane Wangcafd6652010-04-29 12:09:01 -04003545
3546 test_bits = FEATURE_CONTROL_LOCKED;
3547 test_bits |= FEATURE_CONTROL_VMXON_ENABLED_OUTSIDE_SMX;
3548 if (tboot_enabled())
3549 test_bits |= FEATURE_CONTROL_VMXON_ENABLED_INSIDE_SMX;
3550
3551 if ((old & test_bits) != test_bits) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08003552 /* enable and lock */
Shane Wangcafd6652010-04-29 12:09:01 -04003553 wrmsrl(MSR_IA32_FEATURE_CONTROL, old | test_bits);
3554 }
David Hildenbrandfe0e80b2017-03-10 12:47:13 +01003555 kvm_cpu_vmxon(phys_addr);
3556 ept_sync_global();
Alexander Graf10474ae2009-09-15 11:37:46 +02003557
3558 return 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003559}
3560
Nadav Har'Eld462b812011-05-24 15:26:10 +03003561static void vmclear_local_loaded_vmcss(void)
Avi Kivity543e4242008-05-13 16:22:47 +03003562{
3563 int cpu = raw_smp_processor_id();
Nadav Har'Eld462b812011-05-24 15:26:10 +03003564 struct loaded_vmcs *v, *n;
Avi Kivity543e4242008-05-13 16:22:47 +03003565
Nadav Har'Eld462b812011-05-24 15:26:10 +03003566 list_for_each_entry_safe(v, n, &per_cpu(loaded_vmcss_on_cpu, cpu),
3567 loaded_vmcss_on_cpu_link)
3568 __loaded_vmcs_clear(v);
Avi Kivity543e4242008-05-13 16:22:47 +03003569}
3570
Eduardo Habkost710ff4a2008-11-17 19:03:18 -02003571
3572/* Just like cpu_vmxoff(), but with the __kvm_handle_fault_on_reboot()
3573 * tricks.
3574 */
3575static void kvm_cpu_vmxoff(void)
3576{
3577 asm volatile (__ex(ASM_VMX_VMXOFF) : : : "cc");
Alexander Shishkin1c5ac212016-03-29 17:43:10 +03003578
3579 intel_pt_handle_vmx(0);
David Hildenbrandfe0e80b2017-03-10 12:47:13 +01003580 cr4_clear_bits(X86_CR4_VMXE);
Eduardo Habkost710ff4a2008-11-17 19:03:18 -02003581}
3582
Radim Krčmář13a34e02014-08-28 15:13:03 +02003583static void hardware_disable(void)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003584{
David Hildenbrandfe0e80b2017-03-10 12:47:13 +01003585 vmclear_local_loaded_vmcss();
3586 kvm_cpu_vmxoff();
Avi Kivity6aa8b732006-12-10 02:21:36 -08003587}
3588
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003589static __init int adjust_vmx_controls(u32 ctl_min, u32 ctl_opt,
Mike Dayd77c26f2007-10-08 09:02:08 -04003590 u32 msr, u32 *result)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003591{
3592 u32 vmx_msr_low, vmx_msr_high;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003593 u32 ctl = ctl_min | ctl_opt;
3594
3595 rdmsr(msr, vmx_msr_low, vmx_msr_high);
3596
3597 ctl &= vmx_msr_high; /* bit == 0 in high word ==> must be zero */
3598 ctl |= vmx_msr_low; /* bit == 1 in low word ==> must be one */
3599
3600 /* Ensure minimum (required) set of control bits are supported. */
3601 if (ctl_min & ~ctl)
Yang, Sheng002c7f72007-07-31 14:23:01 +03003602 return -EIO;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003603
3604 *result = ctl;
3605 return 0;
3606}
3607
Avi Kivity110312c2010-12-21 12:54:20 +02003608static __init bool allow_1_setting(u32 msr, u32 ctl)
3609{
3610 u32 vmx_msr_low, vmx_msr_high;
3611
3612 rdmsr(msr, vmx_msr_low, vmx_msr_high);
3613 return vmx_msr_high & ctl;
3614}
3615
Yang, Sheng002c7f72007-07-31 14:23:01 +03003616static __init int setup_vmcs_config(struct vmcs_config *vmcs_conf)
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003617{
3618 u32 vmx_msr_low, vmx_msr_high;
Sheng Yangd56f5462008-04-25 10:13:16 +08003619 u32 min, opt, min2, opt2;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003620 u32 _pin_based_exec_control = 0;
3621 u32 _cpu_based_exec_control = 0;
Sheng Yangf78e0e22007-10-29 09:40:42 +08003622 u32 _cpu_based_2nd_exec_control = 0;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003623 u32 _vmexit_control = 0;
3624 u32 _vmentry_control = 0;
3625
Raghavendra K T10166742012-02-07 23:19:20 +05303626 min = CPU_BASED_HLT_EXITING |
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003627#ifdef CONFIG_X86_64
3628 CPU_BASED_CR8_LOAD_EXITING |
3629 CPU_BASED_CR8_STORE_EXITING |
3630#endif
Sheng Yangd56f5462008-04-25 10:13:16 +08003631 CPU_BASED_CR3_LOAD_EXITING |
3632 CPU_BASED_CR3_STORE_EXITING |
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003633 CPU_BASED_USE_IO_BITMAPS |
3634 CPU_BASED_MOV_DR_EXITING |
Marcelo Tosattia7052892008-09-23 13:18:35 -03003635 CPU_BASED_USE_TSC_OFFSETING |
Avi Kivityfee84b02011-11-10 14:57:25 +02003636 CPU_BASED_INVLPG_EXITING |
3637 CPU_BASED_RDPMC_EXITING;
Anthony Liguori443381a2010-12-06 10:53:38 -06003638
Michael S. Tsirkin668fffa2017-04-21 12:27:17 +02003639 if (!kvm_mwait_in_guest())
3640 min |= CPU_BASED_MWAIT_EXITING |
3641 CPU_BASED_MONITOR_EXITING;
3642
Sheng Yangf78e0e22007-10-29 09:40:42 +08003643 opt = CPU_BASED_TPR_SHADOW |
Sheng Yang25c5f222008-03-28 13:18:56 +08003644 CPU_BASED_USE_MSR_BITMAPS |
Sheng Yangf78e0e22007-10-29 09:40:42 +08003645 CPU_BASED_ACTIVATE_SECONDARY_CONTROLS;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003646 if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_PROCBASED_CTLS,
3647 &_cpu_based_exec_control) < 0)
Yang, Sheng002c7f72007-07-31 14:23:01 +03003648 return -EIO;
Yang, Sheng6e5d8652007-09-12 18:03:11 +08003649#ifdef CONFIG_X86_64
3650 if ((_cpu_based_exec_control & CPU_BASED_TPR_SHADOW))
3651 _cpu_based_exec_control &= ~CPU_BASED_CR8_LOAD_EXITING &
3652 ~CPU_BASED_CR8_STORE_EXITING;
3653#endif
Sheng Yangf78e0e22007-10-29 09:40:42 +08003654 if (_cpu_based_exec_control & CPU_BASED_ACTIVATE_SECONDARY_CONTROLS) {
Sheng Yangd56f5462008-04-25 10:13:16 +08003655 min2 = 0;
3656 opt2 = SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES |
Yang Zhang8d146952013-01-25 10:18:50 +08003657 SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE |
Sheng Yang2384d2b2008-01-17 15:14:33 +08003658 SECONDARY_EXEC_WBINVD_EXITING |
Sheng Yangd56f5462008-04-25 10:13:16 +08003659 SECONDARY_EXEC_ENABLE_VPID |
Nitin A Kamble3a624e22009-06-08 11:34:16 -07003660 SECONDARY_EXEC_ENABLE_EPT |
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08003661 SECONDARY_EXEC_UNRESTRICTED_GUEST |
Sheng Yang4e47c7a2009-12-18 16:48:47 +08003662 SECONDARY_EXEC_PAUSE_LOOP_EXITING |
Mao, Junjiead756a12012-07-02 01:18:48 +00003663 SECONDARY_EXEC_RDTSCP |
Yang Zhang83d4c282013-01-25 10:18:49 +08003664 SECONDARY_EXEC_ENABLE_INVPCID |
Yang Zhangc7c9c562013-01-25 10:18:51 +08003665 SECONDARY_EXEC_APIC_REGISTER_VIRT |
Abel Gordonabc4fc52013-04-18 14:35:25 +03003666 SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY |
Wanpeng Li20300092014-12-02 19:14:59 +08003667 SECONDARY_EXEC_SHADOW_VMCS |
Kai Huang843e4332015-01-28 10:54:28 +08003668 SECONDARY_EXEC_XSAVES |
Jim Mattson75f4fc82017-08-23 16:32:03 -07003669 SECONDARY_EXEC_RDSEED |
Jim Mattson45ec3682017-08-23 16:32:04 -07003670 SECONDARY_EXEC_RDRAND |
Xiao Guangrong8b3e34e2015-09-09 14:05:51 +08003671 SECONDARY_EXEC_ENABLE_PML |
Bandan Das2a499e42017-08-03 15:54:41 -04003672 SECONDARY_EXEC_TSC_SCALING |
3673 SECONDARY_EXEC_ENABLE_VMFUNC;
Sheng Yangd56f5462008-04-25 10:13:16 +08003674 if (adjust_vmx_controls(min2, opt2,
3675 MSR_IA32_VMX_PROCBASED_CTLS2,
Sheng Yangf78e0e22007-10-29 09:40:42 +08003676 &_cpu_based_2nd_exec_control) < 0)
3677 return -EIO;
3678 }
3679#ifndef CONFIG_X86_64
3680 if (!(_cpu_based_2nd_exec_control &
3681 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES))
3682 _cpu_based_exec_control &= ~CPU_BASED_TPR_SHADOW;
3683#endif
Yang Zhang83d4c282013-01-25 10:18:49 +08003684
3685 if (!(_cpu_based_exec_control & CPU_BASED_TPR_SHADOW))
3686 _cpu_based_2nd_exec_control &= ~(
Yang Zhang8d146952013-01-25 10:18:50 +08003687 SECONDARY_EXEC_APIC_REGISTER_VIRT |
Yang Zhangc7c9c562013-01-25 10:18:51 +08003688 SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE |
3689 SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY);
Yang Zhang83d4c282013-01-25 10:18:49 +08003690
Sheng Yangd56f5462008-04-25 10:13:16 +08003691 if (_cpu_based_2nd_exec_control & SECONDARY_EXEC_ENABLE_EPT) {
Marcelo Tosattia7052892008-09-23 13:18:35 -03003692 /* CR3 accesses and invlpg don't need to cause VM Exits when EPT
3693 enabled */
Gleb Natapov5fff7d22009-08-27 18:41:30 +03003694 _cpu_based_exec_control &= ~(CPU_BASED_CR3_LOAD_EXITING |
3695 CPU_BASED_CR3_STORE_EXITING |
3696 CPU_BASED_INVLPG_EXITING);
Sheng Yangd56f5462008-04-25 10:13:16 +08003697 rdmsr(MSR_IA32_VMX_EPT_VPID_CAP,
3698 vmx_capability.ept, vmx_capability.vpid);
3699 }
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003700
Paolo Bonzini91fa0f82016-06-15 20:55:08 +02003701 min = VM_EXIT_SAVE_DEBUG_CONTROLS | VM_EXIT_ACK_INTR_ON_EXIT;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003702#ifdef CONFIG_X86_64
3703 min |= VM_EXIT_HOST_ADDR_SPACE_SIZE;
3704#endif
Yang Zhanga547c6d2013-04-11 19:25:10 +08003705 opt = VM_EXIT_SAVE_IA32_PAT | VM_EXIT_LOAD_IA32_PAT |
Paolo Bonzini91fa0f82016-06-15 20:55:08 +02003706 VM_EXIT_CLEAR_BNDCFGS;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003707 if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_EXIT_CTLS,
3708 &_vmexit_control) < 0)
Yang, Sheng002c7f72007-07-31 14:23:01 +03003709 return -EIO;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003710
Paolo Bonzini2c828782017-03-27 14:37:28 +02003711 min = PIN_BASED_EXT_INTR_MASK | PIN_BASED_NMI_EXITING |
3712 PIN_BASED_VIRTUAL_NMIS;
3713 opt = PIN_BASED_POSTED_INTR | PIN_BASED_VMX_PREEMPTION_TIMER;
Yang Zhang01e439b2013-04-11 19:25:12 +08003714 if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_PINBASED_CTLS,
3715 &_pin_based_exec_control) < 0)
3716 return -EIO;
3717
Paolo Bonzini1c17c3e2016-07-08 11:53:38 +02003718 if (cpu_has_broken_vmx_preemption_timer())
3719 _pin_based_exec_control &= ~PIN_BASED_VMX_PREEMPTION_TIMER;
Yang Zhang01e439b2013-04-11 19:25:12 +08003720 if (!(_cpu_based_2nd_exec_control &
Paolo Bonzini91fa0f82016-06-15 20:55:08 +02003721 SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY))
Yang Zhang01e439b2013-04-11 19:25:12 +08003722 _pin_based_exec_control &= ~PIN_BASED_POSTED_INTR;
3723
Paolo Bonzinic845f9c2014-02-21 10:55:44 +01003724 min = VM_ENTRY_LOAD_DEBUG_CONTROLS;
Liu, Jinsongda8999d2014-02-24 10:55:46 +00003725 opt = VM_ENTRY_LOAD_IA32_PAT | VM_ENTRY_LOAD_BNDCFGS;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003726 if (adjust_vmx_controls(min, opt, MSR_IA32_VMX_ENTRY_CTLS,
3727 &_vmentry_control) < 0)
Yang, Sheng002c7f72007-07-31 14:23:01 +03003728 return -EIO;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003729
Nguyen Anh Quynhc68876f2006-12-29 16:49:54 -08003730 rdmsr(MSR_IA32_VMX_BASIC, vmx_msr_low, vmx_msr_high);
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003731
3732 /* IA-32 SDM Vol 3B: VMCS size is never greater than 4kB. */
3733 if ((vmx_msr_high & 0x1fff) > PAGE_SIZE)
Yang, Sheng002c7f72007-07-31 14:23:01 +03003734 return -EIO;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003735
3736#ifdef CONFIG_X86_64
3737 /* IA-32 SDM Vol 3B: 64-bit CPUs always have VMX_BASIC_MSR[48]==0. */
3738 if (vmx_msr_high & (1u<<16))
Yang, Sheng002c7f72007-07-31 14:23:01 +03003739 return -EIO;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003740#endif
3741
3742 /* Require Write-Back (WB) memory type for VMCS accesses. */
3743 if (((vmx_msr_high >> 18) & 15) != 6)
Yang, Sheng002c7f72007-07-31 14:23:01 +03003744 return -EIO;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003745
Yang, Sheng002c7f72007-07-31 14:23:01 +03003746 vmcs_conf->size = vmx_msr_high & 0x1fff;
Paolo Bonzini16cb0252016-09-05 15:57:00 +02003747 vmcs_conf->order = get_order(vmcs_conf->size);
Jan Dakinevich9ac7e3e2016-09-04 21:23:15 +03003748 vmcs_conf->basic_cap = vmx_msr_high & ~0x1fff;
Yang, Sheng002c7f72007-07-31 14:23:01 +03003749 vmcs_conf->revision_id = vmx_msr_low;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003750
Yang, Sheng002c7f72007-07-31 14:23:01 +03003751 vmcs_conf->pin_based_exec_ctrl = _pin_based_exec_control;
3752 vmcs_conf->cpu_based_exec_ctrl = _cpu_based_exec_control;
Sheng Yangf78e0e22007-10-29 09:40:42 +08003753 vmcs_conf->cpu_based_2nd_exec_ctrl = _cpu_based_2nd_exec_control;
Yang, Sheng002c7f72007-07-31 14:23:01 +03003754 vmcs_conf->vmexit_ctrl = _vmexit_control;
3755 vmcs_conf->vmentry_ctrl = _vmentry_control;
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003756
Avi Kivity110312c2010-12-21 12:54:20 +02003757 cpu_has_load_ia32_efer =
3758 allow_1_setting(MSR_IA32_VMX_ENTRY_CTLS,
3759 VM_ENTRY_LOAD_IA32_EFER)
3760 && allow_1_setting(MSR_IA32_VMX_EXIT_CTLS,
3761 VM_EXIT_LOAD_IA32_EFER);
3762
Gleb Natapov8bf00a52011-10-05 14:01:22 +02003763 cpu_has_load_perf_global_ctrl =
3764 allow_1_setting(MSR_IA32_VMX_ENTRY_CTLS,
3765 VM_ENTRY_LOAD_IA32_PERF_GLOBAL_CTRL)
3766 && allow_1_setting(MSR_IA32_VMX_EXIT_CTLS,
3767 VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL);
3768
3769 /*
3770 * Some cpus support VM_ENTRY_(LOAD|SAVE)_IA32_PERF_GLOBAL_CTRL
Andrea Gelminibb3541f2016-05-21 14:14:44 +02003771 * but due to errata below it can't be used. Workaround is to use
Gleb Natapov8bf00a52011-10-05 14:01:22 +02003772 * msr load mechanism to switch IA32_PERF_GLOBAL_CTRL.
3773 *
3774 * VM Exit May Incorrectly Clear IA32_PERF_GLOBAL_CTRL [34:32]
3775 *
3776 * AAK155 (model 26)
3777 * AAP115 (model 30)
3778 * AAT100 (model 37)
3779 * BC86,AAY89,BD102 (model 44)
3780 * BA97 (model 46)
3781 *
3782 */
3783 if (cpu_has_load_perf_global_ctrl && boot_cpu_data.x86 == 0x6) {
3784 switch (boot_cpu_data.x86_model) {
3785 case 26:
3786 case 30:
3787 case 37:
3788 case 44:
3789 case 46:
3790 cpu_has_load_perf_global_ctrl = false;
3791 printk_once(KERN_WARNING"kvm: VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL "
3792 "does not work properly. Using workaround\n");
3793 break;
3794 default:
3795 break;
3796 }
3797 }
3798
Borislav Petkov782511b2016-04-04 22:25:03 +02003799 if (boot_cpu_has(X86_FEATURE_XSAVES))
Wanpeng Li20300092014-12-02 19:14:59 +08003800 rdmsrl(MSR_IA32_XSS, host_xss);
3801
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003802 return 0;
Nguyen Anh Quynhc68876f2006-12-29 16:49:54 -08003803}
Avi Kivity6aa8b732006-12-10 02:21:36 -08003804
3805static struct vmcs *alloc_vmcs_cpu(int cpu)
3806{
3807 int node = cpu_to_node(cpu);
3808 struct page *pages;
3809 struct vmcs *vmcs;
3810
Vlastimil Babka96db8002015-09-08 15:03:50 -07003811 pages = __alloc_pages_node(node, GFP_KERNEL, vmcs_config.order);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003812 if (!pages)
3813 return NULL;
3814 vmcs = page_address(pages);
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003815 memset(vmcs, 0, vmcs_config.size);
3816 vmcs->revision_id = vmcs_config.revision_id; /* vmcs revision id */
Avi Kivity6aa8b732006-12-10 02:21:36 -08003817 return vmcs;
3818}
3819
3820static struct vmcs *alloc_vmcs(void)
3821{
Ingo Molnard3b2c332007-01-05 16:36:23 -08003822 return alloc_vmcs_cpu(raw_smp_processor_id());
Avi Kivity6aa8b732006-12-10 02:21:36 -08003823}
3824
3825static void free_vmcs(struct vmcs *vmcs)
3826{
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03003827 free_pages((unsigned long)vmcs, vmcs_config.order);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003828}
3829
Nadav Har'Eld462b812011-05-24 15:26:10 +03003830/*
3831 * Free a VMCS, but before that VMCLEAR it on the CPU where it was last loaded
3832 */
3833static void free_loaded_vmcs(struct loaded_vmcs *loaded_vmcs)
3834{
3835 if (!loaded_vmcs->vmcs)
3836 return;
3837 loaded_vmcs_clear(loaded_vmcs);
3838 free_vmcs(loaded_vmcs->vmcs);
3839 loaded_vmcs->vmcs = NULL;
Jim Mattson355f4fb2016-10-28 08:29:39 -07003840 WARN_ON(loaded_vmcs->shadow_vmcs != NULL);
Nadav Har'Eld462b812011-05-24 15:26:10 +03003841}
3842
Sam Ravnborg39959582007-06-01 00:47:13 -07003843static void free_kvm_area(void)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003844{
3845 int cpu;
3846
Zachary Amsden3230bb42009-09-29 11:38:37 -10003847 for_each_possible_cpu(cpu) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08003848 free_vmcs(per_cpu(vmxarea, cpu));
Zachary Amsden3230bb42009-09-29 11:38:37 -10003849 per_cpu(vmxarea, cpu) = NULL;
3850 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08003851}
3852
Jim Mattson85fd5142017-07-07 12:51:41 -07003853enum vmcs_field_type {
3854 VMCS_FIELD_TYPE_U16 = 0,
3855 VMCS_FIELD_TYPE_U64 = 1,
3856 VMCS_FIELD_TYPE_U32 = 2,
3857 VMCS_FIELD_TYPE_NATURAL_WIDTH = 3
3858};
3859
3860static inline int vmcs_field_type(unsigned long field)
3861{
3862 if (0x1 & field) /* the *_HIGH fields are all 32 bit */
3863 return VMCS_FIELD_TYPE_U32;
3864 return (field >> 13) & 0x3 ;
3865}
3866
3867static inline int vmcs_field_readonly(unsigned long field)
3868{
3869 return (((field >> 10) & 0x3) == 1);
3870}
3871
Bandan Dasfe2b2012014-04-21 15:20:14 -04003872static void init_vmcs_shadow_fields(void)
3873{
3874 int i, j;
3875
3876 /* No checks for read only fields yet */
3877
3878 for (i = j = 0; i < max_shadow_read_write_fields; i++) {
3879 switch (shadow_read_write_fields[i]) {
3880 case GUEST_BNDCFGS:
Paolo Bonzinia87036a2016-03-08 09:52:13 +01003881 if (!kvm_mpx_supported())
Bandan Dasfe2b2012014-04-21 15:20:14 -04003882 continue;
3883 break;
3884 default:
3885 break;
3886 }
3887
3888 if (j < i)
3889 shadow_read_write_fields[j] =
3890 shadow_read_write_fields[i];
3891 j++;
3892 }
3893 max_shadow_read_write_fields = j;
3894
3895 /* shadowed fields guest access without vmexit */
3896 for (i = 0; i < max_shadow_read_write_fields; i++) {
Jim Mattson85fd5142017-07-07 12:51:41 -07003897 unsigned long field = shadow_read_write_fields[i];
3898
3899 clear_bit(field, vmx_vmwrite_bitmap);
3900 clear_bit(field, vmx_vmread_bitmap);
3901 if (vmcs_field_type(field) == VMCS_FIELD_TYPE_U64) {
3902 clear_bit(field + 1, vmx_vmwrite_bitmap);
3903 clear_bit(field + 1, vmx_vmread_bitmap);
3904 }
Bandan Dasfe2b2012014-04-21 15:20:14 -04003905 }
Jim Mattson85fd5142017-07-07 12:51:41 -07003906 for (i = 0; i < max_shadow_read_only_fields; i++) {
3907 unsigned long field = shadow_read_only_fields[i];
3908
3909 clear_bit(field, vmx_vmread_bitmap);
3910 if (vmcs_field_type(field) == VMCS_FIELD_TYPE_U64)
3911 clear_bit(field + 1, vmx_vmread_bitmap);
3912 }
Bandan Dasfe2b2012014-04-21 15:20:14 -04003913}
3914
Avi Kivity6aa8b732006-12-10 02:21:36 -08003915static __init int alloc_kvm_area(void)
3916{
3917 int cpu;
3918
Zachary Amsden3230bb42009-09-29 11:38:37 -10003919 for_each_possible_cpu(cpu) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08003920 struct vmcs *vmcs;
3921
3922 vmcs = alloc_vmcs_cpu(cpu);
3923 if (!vmcs) {
3924 free_kvm_area();
3925 return -ENOMEM;
3926 }
3927
3928 per_cpu(vmxarea, cpu) = vmcs;
3929 }
3930 return 0;
3931}
3932
Gleb Natapov91b0aa22013-01-21 15:36:47 +02003933static void fix_pmode_seg(struct kvm_vcpu *vcpu, int seg,
Gleb Natapovd99e4152012-12-20 16:57:45 +02003934 struct kvm_segment *save)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003935{
Gleb Natapovd99e4152012-12-20 16:57:45 +02003936 if (!emulate_invalid_guest_state) {
3937 /*
3938 * CS and SS RPL should be equal during guest entry according
3939 * to VMX spec, but in reality it is not always so. Since vcpu
3940 * is in the middle of the transition from real mode to
3941 * protected mode it is safe to assume that RPL 0 is a good
3942 * default value.
3943 */
3944 if (seg == VCPU_SREG_CS || seg == VCPU_SREG_SS)
Nadav Amitb32a9912015-03-29 16:33:04 +03003945 save->selector &= ~SEGMENT_RPL_MASK;
3946 save->dpl = save->selector & SEGMENT_RPL_MASK;
Gleb Natapovd99e4152012-12-20 16:57:45 +02003947 save->s = 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003948 }
Gleb Natapovd99e4152012-12-20 16:57:45 +02003949 vmx_set_segment(vcpu, save, seg);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003950}
3951
3952static void enter_pmode(struct kvm_vcpu *vcpu)
3953{
3954 unsigned long flags;
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03003955 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003956
Gleb Natapovd99e4152012-12-20 16:57:45 +02003957 /*
3958 * Update real mode segment cache. It may be not up-to-date if sement
3959 * register was written while vcpu was in a guest mode.
3960 */
3961 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_ES], VCPU_SREG_ES);
3962 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_DS], VCPU_SREG_DS);
3963 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_FS], VCPU_SREG_FS);
3964 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_GS], VCPU_SREG_GS);
3965 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_SS], VCPU_SREG_SS);
3966 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_CS], VCPU_SREG_CS);
3967
Avi Kivity7ffd92c2009-06-09 14:10:45 +03003968 vmx->rmode.vm86_active = 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003969
Avi Kivity2fb92db2011-04-27 19:42:18 +03003970 vmx_segment_cache_clear(vmx);
3971
Avi Kivityf5f7b2f2012-08-21 17:07:00 +03003972 vmx_set_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_TR], VCPU_SREG_TR);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003973
3974 flags = vmcs_readl(GUEST_RFLAGS);
Avi Kivity78ac8b42010-04-08 18:19:35 +03003975 flags &= RMODE_GUEST_OWNED_EFLAGS_BITS;
3976 flags |= vmx->rmode.save_rflags & ~RMODE_GUEST_OWNED_EFLAGS_BITS;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003977 vmcs_writel(GUEST_RFLAGS, flags);
3978
Rusty Russell66aee912007-07-17 23:34:16 +10003979 vmcs_writel(GUEST_CR4, (vmcs_readl(GUEST_CR4) & ~X86_CR4_VME) |
3980 (vmcs_readl(CR4_READ_SHADOW) & X86_CR4_VME));
Avi Kivity6aa8b732006-12-10 02:21:36 -08003981
3982 update_exception_bitmap(vcpu);
3983
Gleb Natapov91b0aa22013-01-21 15:36:47 +02003984 fix_pmode_seg(vcpu, VCPU_SREG_CS, &vmx->rmode.segs[VCPU_SREG_CS]);
3985 fix_pmode_seg(vcpu, VCPU_SREG_SS, &vmx->rmode.segs[VCPU_SREG_SS]);
3986 fix_pmode_seg(vcpu, VCPU_SREG_ES, &vmx->rmode.segs[VCPU_SREG_ES]);
3987 fix_pmode_seg(vcpu, VCPU_SREG_DS, &vmx->rmode.segs[VCPU_SREG_DS]);
3988 fix_pmode_seg(vcpu, VCPU_SREG_FS, &vmx->rmode.segs[VCPU_SREG_FS]);
3989 fix_pmode_seg(vcpu, VCPU_SREG_GS, &vmx->rmode.segs[VCPU_SREG_GS]);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003990}
3991
Avi Kivityf5f7b2f2012-08-21 17:07:00 +03003992static void fix_rmode_seg(int seg, struct kvm_segment *save)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003993{
Mathias Krause772e0312012-08-30 01:30:19 +02003994 const struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg];
Gleb Natapovd99e4152012-12-20 16:57:45 +02003995 struct kvm_segment var = *save;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003996
Gleb Natapovd99e4152012-12-20 16:57:45 +02003997 var.dpl = 0x3;
3998 if (seg == VCPU_SREG_CS)
3999 var.type = 0x3;
4000
4001 if (!emulate_invalid_guest_state) {
4002 var.selector = var.base >> 4;
4003 var.base = var.base & 0xffff0;
4004 var.limit = 0xffff;
4005 var.g = 0;
4006 var.db = 0;
4007 var.present = 1;
4008 var.s = 1;
4009 var.l = 0;
4010 var.unusable = 0;
4011 var.type = 0x3;
4012 var.avl = 0;
4013 if (save->base & 0xf)
4014 printk_once(KERN_WARNING "kvm: segment base is not "
4015 "paragraph aligned when entering "
4016 "protected mode (seg=%d)", seg);
4017 }
4018
4019 vmcs_write16(sf->selector, var.selector);
Chao Peng96794e42017-02-21 03:50:01 -05004020 vmcs_writel(sf->base, var.base);
Gleb Natapovd99e4152012-12-20 16:57:45 +02004021 vmcs_write32(sf->limit, var.limit);
4022 vmcs_write32(sf->ar_bytes, vmx_segment_access_rights(&var));
Avi Kivity6aa8b732006-12-10 02:21:36 -08004023}
4024
4025static void enter_rmode(struct kvm_vcpu *vcpu)
4026{
4027 unsigned long flags;
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03004028 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004029
Avi Kivityf5f7b2f2012-08-21 17:07:00 +03004030 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_TR], VCPU_SREG_TR);
4031 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_ES], VCPU_SREG_ES);
4032 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_DS], VCPU_SREG_DS);
4033 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_FS], VCPU_SREG_FS);
4034 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_GS], VCPU_SREG_GS);
Gleb Natapovc6ad11532012-12-12 19:10:51 +02004035 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_SS], VCPU_SREG_SS);
4036 vmx_get_segment(vcpu, &vmx->rmode.segs[VCPU_SREG_CS], VCPU_SREG_CS);
Avi Kivityf5f7b2f2012-08-21 17:07:00 +03004037
Avi Kivity7ffd92c2009-06-09 14:10:45 +03004038 vmx->rmode.vm86_active = 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004039
Gleb Natapov776e58e2011-03-13 12:34:27 +02004040 /*
4041 * Very old userspace does not call KVM_SET_TSS_ADDR before entering
Jan Kiszka4918c6c2013-03-15 08:38:56 +01004042 * vcpu. Warn the user that an update is overdue.
Gleb Natapov776e58e2011-03-13 12:34:27 +02004043 */
Jan Kiszka4918c6c2013-03-15 08:38:56 +01004044 if (!vcpu->kvm->arch.tss_addr)
Gleb Natapov776e58e2011-03-13 12:34:27 +02004045 printk_once(KERN_WARNING "kvm: KVM_SET_TSS_ADDR need to be "
4046 "called before entering vcpu\n");
Gleb Natapov776e58e2011-03-13 12:34:27 +02004047
Avi Kivity2fb92db2011-04-27 19:42:18 +03004048 vmx_segment_cache_clear(vmx);
4049
Jan Kiszka4918c6c2013-03-15 08:38:56 +01004050 vmcs_writel(GUEST_TR_BASE, vcpu->kvm->arch.tss_addr);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004051 vmcs_write32(GUEST_TR_LIMIT, RMODE_TSS_SIZE - 1);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004052 vmcs_write32(GUEST_TR_AR_BYTES, 0x008b);
4053
4054 flags = vmcs_readl(GUEST_RFLAGS);
Avi Kivity78ac8b42010-04-08 18:19:35 +03004055 vmx->rmode.save_rflags = flags;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004056
Glauber de Oliveira Costa053de042008-01-30 13:31:27 +01004057 flags |= X86_EFLAGS_IOPL | X86_EFLAGS_VM;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004058
4059 vmcs_writel(GUEST_RFLAGS, flags);
Rusty Russell66aee912007-07-17 23:34:16 +10004060 vmcs_writel(GUEST_CR4, vmcs_readl(GUEST_CR4) | X86_CR4_VME);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004061 update_exception_bitmap(vcpu);
4062
Gleb Natapovd99e4152012-12-20 16:57:45 +02004063 fix_rmode_seg(VCPU_SREG_SS, &vmx->rmode.segs[VCPU_SREG_SS]);
4064 fix_rmode_seg(VCPU_SREG_CS, &vmx->rmode.segs[VCPU_SREG_CS]);
4065 fix_rmode_seg(VCPU_SREG_ES, &vmx->rmode.segs[VCPU_SREG_ES]);
4066 fix_rmode_seg(VCPU_SREG_DS, &vmx->rmode.segs[VCPU_SREG_DS]);
4067 fix_rmode_seg(VCPU_SREG_GS, &vmx->rmode.segs[VCPU_SREG_GS]);
4068 fix_rmode_seg(VCPU_SREG_FS, &vmx->rmode.segs[VCPU_SREG_FS]);
Mohammed Gamala89a8fb2008-08-17 16:42:16 +03004069
Eddie Dong8668a3c2007-10-10 14:26:45 +08004070 kvm_mmu_reset_context(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004071}
4072
Amit Shah401d10d2009-02-20 22:53:37 +05304073static void vmx_set_efer(struct kvm_vcpu *vcpu, u64 efer)
4074{
4075 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity26bb0982009-09-07 11:14:12 +03004076 struct shared_msr_entry *msr = find_msr_entry(vmx, MSR_EFER);
4077
4078 if (!msr)
4079 return;
Amit Shah401d10d2009-02-20 22:53:37 +05304080
Avi Kivity44ea2b12009-09-06 15:55:37 +03004081 /*
4082 * Force kernel_gs_base reloading before EFER changes, as control
4083 * of this msr depends on is_long_mode().
4084 */
4085 vmx_load_host_state(to_vmx(vcpu));
Avi Kivityf6801df2010-01-21 15:31:50 +02004086 vcpu->arch.efer = efer;
Amit Shah401d10d2009-02-20 22:53:37 +05304087 if (efer & EFER_LMA) {
Gleb Natapov2961e8762013-11-25 15:37:13 +02004088 vm_entry_controls_setbit(to_vmx(vcpu), VM_ENTRY_IA32E_MODE);
Amit Shah401d10d2009-02-20 22:53:37 +05304089 msr->data = efer;
4090 } else {
Gleb Natapov2961e8762013-11-25 15:37:13 +02004091 vm_entry_controls_clearbit(to_vmx(vcpu), VM_ENTRY_IA32E_MODE);
Amit Shah401d10d2009-02-20 22:53:37 +05304092
4093 msr->data = efer & ~EFER_LME;
4094 }
4095 setup_msrs(vmx);
4096}
4097
Avi Kivity05b3e0c2006-12-13 00:33:45 -08004098#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08004099
4100static void enter_lmode(struct kvm_vcpu *vcpu)
4101{
4102 u32 guest_tr_ar;
4103
Avi Kivity2fb92db2011-04-27 19:42:18 +03004104 vmx_segment_cache_clear(to_vmx(vcpu));
4105
Avi Kivity6aa8b732006-12-10 02:21:36 -08004106 guest_tr_ar = vmcs_read32(GUEST_TR_AR_BYTES);
Andy Lutomirski4d283ec2015-08-13 13:18:48 -07004107 if ((guest_tr_ar & VMX_AR_TYPE_MASK) != VMX_AR_TYPE_BUSY_64_TSS) {
Jan Kiszkabd801582011-09-12 11:26:22 +02004108 pr_debug_ratelimited("%s: tss fixup for long mode. \n",
4109 __func__);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004110 vmcs_write32(GUEST_TR_AR_BYTES,
Andy Lutomirski4d283ec2015-08-13 13:18:48 -07004111 (guest_tr_ar & ~VMX_AR_TYPE_MASK)
4112 | VMX_AR_TYPE_BUSY_64_TSS);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004113 }
Avi Kivityda38f432010-07-06 11:30:49 +03004114 vmx_set_efer(vcpu, vcpu->arch.efer | EFER_LMA);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004115}
4116
4117static void exit_lmode(struct kvm_vcpu *vcpu)
4118{
Gleb Natapov2961e8762013-11-25 15:37:13 +02004119 vm_entry_controls_clearbit(to_vmx(vcpu), VM_ENTRY_IA32E_MODE);
Avi Kivityda38f432010-07-06 11:30:49 +03004120 vmx_set_efer(vcpu, vcpu->arch.efer & ~EFER_LMA);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004121}
4122
4123#endif
4124
Wanpeng Lidd5f5342015-09-23 18:26:57 +08004125static inline void __vmx_flush_tlb(struct kvm_vcpu *vcpu, int vpid)
Sheng Yang2384d2b2008-01-17 15:14:33 +08004126{
Xiao Guangrongdd180b32010-07-03 16:02:42 +08004127 if (enable_ept) {
4128 if (!VALID_PAGE(vcpu->arch.mmu.root_hpa))
4129 return;
Peter Feiner995f00a2017-06-30 17:26:32 -07004130 ept_sync_context(construct_eptp(vcpu, vcpu->arch.mmu.root_hpa));
Jim Mattsonf0b98c02017-03-15 07:56:11 -07004131 } else {
4132 vpid_sync_context(vpid);
Xiao Guangrongdd180b32010-07-03 16:02:42 +08004133 }
Sheng Yang2384d2b2008-01-17 15:14:33 +08004134}
4135
Wanpeng Lidd5f5342015-09-23 18:26:57 +08004136static void vmx_flush_tlb(struct kvm_vcpu *vcpu)
4137{
4138 __vmx_flush_tlb(vcpu, to_vmx(vcpu)->vpid);
4139}
4140
Jim Mattsonfb6c8192017-03-16 13:53:59 -07004141static void vmx_flush_tlb_ept_only(struct kvm_vcpu *vcpu)
4142{
4143 if (enable_ept)
4144 vmx_flush_tlb(vcpu);
4145}
4146
Avi Kivitye8467fd2009-12-29 18:43:06 +02004147static void vmx_decache_cr0_guest_bits(struct kvm_vcpu *vcpu)
4148{
4149 ulong cr0_guest_owned_bits = vcpu->arch.cr0_guest_owned_bits;
4150
4151 vcpu->arch.cr0 &= ~cr0_guest_owned_bits;
4152 vcpu->arch.cr0 |= vmcs_readl(GUEST_CR0) & cr0_guest_owned_bits;
4153}
4154
Avi Kivityaff48ba2010-12-05 18:56:11 +02004155static void vmx_decache_cr3(struct kvm_vcpu *vcpu)
4156{
4157 if (enable_ept && is_paging(vcpu))
4158 vcpu->arch.cr3 = vmcs_readl(GUEST_CR3);
4159 __set_bit(VCPU_EXREG_CR3, (ulong *)&vcpu->arch.regs_avail);
4160}
4161
Anthony Liguori25c4c272007-04-27 09:29:21 +03004162static void vmx_decache_cr4_guest_bits(struct kvm_vcpu *vcpu)
Avi Kivity399badf2007-01-05 16:36:38 -08004163{
Avi Kivityfc78f512009-12-07 12:16:48 +02004164 ulong cr4_guest_owned_bits = vcpu->arch.cr4_guest_owned_bits;
4165
4166 vcpu->arch.cr4 &= ~cr4_guest_owned_bits;
4167 vcpu->arch.cr4 |= vmcs_readl(GUEST_CR4) & cr4_guest_owned_bits;
Avi Kivity399badf2007-01-05 16:36:38 -08004168}
4169
Sheng Yang14394422008-04-28 12:24:45 +08004170static void ept_load_pdptrs(struct kvm_vcpu *vcpu)
4171{
Gleb Natapovd0d538b2013-10-09 19:13:19 +03004172 struct kvm_mmu *mmu = vcpu->arch.walk_mmu;
4173
Avi Kivity6de4f3a2009-05-31 22:58:47 +03004174 if (!test_bit(VCPU_EXREG_PDPTR,
4175 (unsigned long *)&vcpu->arch.regs_dirty))
4176 return;
4177
Sheng Yang14394422008-04-28 12:24:45 +08004178 if (is_paging(vcpu) && is_pae(vcpu) && !is_long_mode(vcpu)) {
Gleb Natapovd0d538b2013-10-09 19:13:19 +03004179 vmcs_write64(GUEST_PDPTR0, mmu->pdptrs[0]);
4180 vmcs_write64(GUEST_PDPTR1, mmu->pdptrs[1]);
4181 vmcs_write64(GUEST_PDPTR2, mmu->pdptrs[2]);
4182 vmcs_write64(GUEST_PDPTR3, mmu->pdptrs[3]);
Sheng Yang14394422008-04-28 12:24:45 +08004183 }
4184}
4185
Avi Kivity8f5d5492009-05-31 18:41:29 +03004186static void ept_save_pdptrs(struct kvm_vcpu *vcpu)
4187{
Gleb Natapovd0d538b2013-10-09 19:13:19 +03004188 struct kvm_mmu *mmu = vcpu->arch.walk_mmu;
4189
Avi Kivity8f5d5492009-05-31 18:41:29 +03004190 if (is_paging(vcpu) && is_pae(vcpu) && !is_long_mode(vcpu)) {
Gleb Natapovd0d538b2013-10-09 19:13:19 +03004191 mmu->pdptrs[0] = vmcs_read64(GUEST_PDPTR0);
4192 mmu->pdptrs[1] = vmcs_read64(GUEST_PDPTR1);
4193 mmu->pdptrs[2] = vmcs_read64(GUEST_PDPTR2);
4194 mmu->pdptrs[3] = vmcs_read64(GUEST_PDPTR3);
Avi Kivity8f5d5492009-05-31 18:41:29 +03004195 }
Avi Kivity6de4f3a2009-05-31 22:58:47 +03004196
4197 __set_bit(VCPU_EXREG_PDPTR,
4198 (unsigned long *)&vcpu->arch.regs_avail);
4199 __set_bit(VCPU_EXREG_PDPTR,
4200 (unsigned long *)&vcpu->arch.regs_dirty);
Avi Kivity8f5d5492009-05-31 18:41:29 +03004201}
4202
David Matlack38991522016-11-29 18:14:08 -08004203static bool nested_guest_cr0_valid(struct kvm_vcpu *vcpu, unsigned long val)
4204{
4205 u64 fixed0 = to_vmx(vcpu)->nested.nested_vmx_cr0_fixed0;
4206 u64 fixed1 = to_vmx(vcpu)->nested.nested_vmx_cr0_fixed1;
4207 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
4208
4209 if (to_vmx(vcpu)->nested.nested_vmx_secondary_ctls_high &
4210 SECONDARY_EXEC_UNRESTRICTED_GUEST &&
4211 nested_cpu_has2(vmcs12, SECONDARY_EXEC_UNRESTRICTED_GUEST))
4212 fixed0 &= ~(X86_CR0_PE | X86_CR0_PG);
4213
4214 return fixed_bits_valid(val, fixed0, fixed1);
4215}
4216
4217static bool nested_host_cr0_valid(struct kvm_vcpu *vcpu, unsigned long val)
4218{
4219 u64 fixed0 = to_vmx(vcpu)->nested.nested_vmx_cr0_fixed0;
4220 u64 fixed1 = to_vmx(vcpu)->nested.nested_vmx_cr0_fixed1;
4221
4222 return fixed_bits_valid(val, fixed0, fixed1);
4223}
4224
4225static bool nested_cr4_valid(struct kvm_vcpu *vcpu, unsigned long val)
4226{
4227 u64 fixed0 = to_vmx(vcpu)->nested.nested_vmx_cr4_fixed0;
4228 u64 fixed1 = to_vmx(vcpu)->nested.nested_vmx_cr4_fixed1;
4229
4230 return fixed_bits_valid(val, fixed0, fixed1);
4231}
4232
4233/* No difference in the restrictions on guest and host CR4 in VMX operation. */
4234#define nested_guest_cr4_valid nested_cr4_valid
4235#define nested_host_cr4_valid nested_cr4_valid
4236
Nadav Har'El5e1746d2011-05-25 23:03:24 +03004237static int vmx_set_cr4(struct kvm_vcpu *vcpu, unsigned long cr4);
Sheng Yang14394422008-04-28 12:24:45 +08004238
4239static void ept_update_paging_mode_cr0(unsigned long *hw_cr0,
4240 unsigned long cr0,
4241 struct kvm_vcpu *vcpu)
4242{
Marcelo Tosatti5233dd52011-06-06 14:27:47 -03004243 if (!test_bit(VCPU_EXREG_CR3, (ulong *)&vcpu->arch.regs_avail))
4244 vmx_decache_cr3(vcpu);
Sheng Yang14394422008-04-28 12:24:45 +08004245 if (!(cr0 & X86_CR0_PG)) {
4246 /* From paging/starting to nonpaging */
4247 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL,
Sheng Yang65267ea2008-06-18 14:43:38 +08004248 vmcs_read32(CPU_BASED_VM_EXEC_CONTROL) |
Sheng Yang14394422008-04-28 12:24:45 +08004249 (CPU_BASED_CR3_LOAD_EXITING |
4250 CPU_BASED_CR3_STORE_EXITING));
4251 vcpu->arch.cr0 = cr0;
Avi Kivityfc78f512009-12-07 12:16:48 +02004252 vmx_set_cr4(vcpu, kvm_read_cr4(vcpu));
Sheng Yang14394422008-04-28 12:24:45 +08004253 } else if (!is_paging(vcpu)) {
4254 /* From nonpaging to paging */
4255 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL,
Sheng Yang65267ea2008-06-18 14:43:38 +08004256 vmcs_read32(CPU_BASED_VM_EXEC_CONTROL) &
Sheng Yang14394422008-04-28 12:24:45 +08004257 ~(CPU_BASED_CR3_LOAD_EXITING |
4258 CPU_BASED_CR3_STORE_EXITING));
4259 vcpu->arch.cr0 = cr0;
Avi Kivityfc78f512009-12-07 12:16:48 +02004260 vmx_set_cr4(vcpu, kvm_read_cr4(vcpu));
Sheng Yang14394422008-04-28 12:24:45 +08004261 }
Sheng Yang95eb84a2009-08-19 09:52:18 +08004262
4263 if (!(cr0 & X86_CR0_WP))
4264 *hw_cr0 &= ~X86_CR0_WP;
Sheng Yang14394422008-04-28 12:24:45 +08004265}
4266
Avi Kivity6aa8b732006-12-10 02:21:36 -08004267static void vmx_set_cr0(struct kvm_vcpu *vcpu, unsigned long cr0)
4268{
Avi Kivity7ffd92c2009-06-09 14:10:45 +03004269 struct vcpu_vmx *vmx = to_vmx(vcpu);
Nitin A Kamble3a624e22009-06-08 11:34:16 -07004270 unsigned long hw_cr0;
4271
Gleb Natapov50378782013-02-04 16:00:28 +02004272 hw_cr0 = (cr0 & ~KVM_GUEST_CR0_MASK);
Nitin A Kamble3a624e22009-06-08 11:34:16 -07004273 if (enable_unrestricted_guest)
Gleb Natapov50378782013-02-04 16:00:28 +02004274 hw_cr0 |= KVM_VM_CR0_ALWAYS_ON_UNRESTRICTED_GUEST;
Gleb Natapov218e7632013-01-21 15:36:45 +02004275 else {
Gleb Natapov50378782013-02-04 16:00:28 +02004276 hw_cr0 |= KVM_VM_CR0_ALWAYS_ON;
Sheng Yang14394422008-04-28 12:24:45 +08004277
Gleb Natapov218e7632013-01-21 15:36:45 +02004278 if (vmx->rmode.vm86_active && (cr0 & X86_CR0_PE))
4279 enter_pmode(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004280
Gleb Natapov218e7632013-01-21 15:36:45 +02004281 if (!vmx->rmode.vm86_active && !(cr0 & X86_CR0_PE))
4282 enter_rmode(vcpu);
4283 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08004284
Avi Kivity05b3e0c2006-12-13 00:33:45 -08004285#ifdef CONFIG_X86_64
Avi Kivityf6801df2010-01-21 15:31:50 +02004286 if (vcpu->arch.efer & EFER_LME) {
Rusty Russell707d92fa2007-07-17 23:19:08 +10004287 if (!is_paging(vcpu) && (cr0 & X86_CR0_PG))
Avi Kivity6aa8b732006-12-10 02:21:36 -08004288 enter_lmode(vcpu);
Rusty Russell707d92fa2007-07-17 23:19:08 +10004289 if (is_paging(vcpu) && !(cr0 & X86_CR0_PG))
Avi Kivity6aa8b732006-12-10 02:21:36 -08004290 exit_lmode(vcpu);
4291 }
4292#endif
4293
Avi Kivity089d0342009-03-23 18:26:32 +02004294 if (enable_ept)
Sheng Yang14394422008-04-28 12:24:45 +08004295 ept_update_paging_mode_cr0(&hw_cr0, cr0, vcpu);
4296
Avi Kivity6aa8b732006-12-10 02:21:36 -08004297 vmcs_writel(CR0_READ_SHADOW, cr0);
Sheng Yang14394422008-04-28 12:24:45 +08004298 vmcs_writel(GUEST_CR0, hw_cr0);
Zhang Xiantaoad312c72007-12-13 23:50:52 +08004299 vcpu->arch.cr0 = cr0;
Gleb Natapov14168782013-01-21 15:36:49 +02004300
4301 /* depends on vcpu->arch.cr0 to be set to a new value */
4302 vmx->emulation_required = emulation_required(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004303}
4304
Yu Zhang855feb62017-08-24 20:27:55 +08004305static int get_ept_level(struct kvm_vcpu *vcpu)
4306{
4307 if (cpu_has_vmx_ept_5levels() && (cpuid_maxphyaddr(vcpu) > 48))
4308 return 5;
4309 return 4;
4310}
4311
Peter Feiner995f00a2017-06-30 17:26:32 -07004312static u64 construct_eptp(struct kvm_vcpu *vcpu, unsigned long root_hpa)
Sheng Yang14394422008-04-28 12:24:45 +08004313{
Yu Zhang855feb62017-08-24 20:27:55 +08004314 u64 eptp = VMX_EPTP_MT_WB;
4315
4316 eptp |= (get_ept_level(vcpu) == 5) ? VMX_EPTP_PWL_5 : VMX_EPTP_PWL_4;
Sheng Yang14394422008-04-28 12:24:45 +08004317
Peter Feiner995f00a2017-06-30 17:26:32 -07004318 if (enable_ept_ad_bits &&
4319 (!is_guest_mode(vcpu) || nested_ept_ad_enabled(vcpu)))
David Hildenbrandbb97a012017-08-10 23:15:28 +02004320 eptp |= VMX_EPTP_AD_ENABLE_BIT;
Sheng Yang14394422008-04-28 12:24:45 +08004321 eptp |= (root_hpa & PAGE_MASK);
4322
4323 return eptp;
4324}
4325
Avi Kivity6aa8b732006-12-10 02:21:36 -08004326static void vmx_set_cr3(struct kvm_vcpu *vcpu, unsigned long cr3)
4327{
Sheng Yang14394422008-04-28 12:24:45 +08004328 unsigned long guest_cr3;
4329 u64 eptp;
4330
4331 guest_cr3 = cr3;
Avi Kivity089d0342009-03-23 18:26:32 +02004332 if (enable_ept) {
Peter Feiner995f00a2017-06-30 17:26:32 -07004333 eptp = construct_eptp(vcpu, cr3);
Sheng Yang14394422008-04-28 12:24:45 +08004334 vmcs_write64(EPT_POINTER, eptp);
Jan Kiszka59ab5a82013-08-08 16:26:29 +02004335 if (is_paging(vcpu) || is_guest_mode(vcpu))
4336 guest_cr3 = kvm_read_cr3(vcpu);
4337 else
4338 guest_cr3 = vcpu->kvm->arch.ept_identity_map_addr;
Marcelo Tosatti7c93be42009-10-26 16:48:33 -02004339 ept_load_pdptrs(vcpu);
Sheng Yang14394422008-04-28 12:24:45 +08004340 }
4341
Sheng Yang2384d2b2008-01-17 15:14:33 +08004342 vmx_flush_tlb(vcpu);
Sheng Yang14394422008-04-28 12:24:45 +08004343 vmcs_writel(GUEST_CR3, guest_cr3);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004344}
4345
Nadav Har'El5e1746d2011-05-25 23:03:24 +03004346static int vmx_set_cr4(struct kvm_vcpu *vcpu, unsigned long cr4)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004347{
Ben Serebrin085e68e2015-04-16 11:58:05 -07004348 /*
4349 * Pass through host's Machine Check Enable value to hw_cr4, which
4350 * is in force while we are in guest mode. Do not let guests control
4351 * this bit, even if host CR4.MCE == 0.
4352 */
4353 unsigned long hw_cr4 =
4354 (cr4_read_shadow() & X86_CR4_MCE) |
4355 (cr4 & ~X86_CR4_MCE) |
4356 (to_vmx(vcpu)->rmode.vm86_active ?
4357 KVM_RMODE_VM_CR4_ALWAYS_ON : KVM_PMODE_VM_CR4_ALWAYS_ON);
Sheng Yang14394422008-04-28 12:24:45 +08004358
Nadav Har'El5e1746d2011-05-25 23:03:24 +03004359 if (cr4 & X86_CR4_VMXE) {
4360 /*
4361 * To use VMXON (and later other VMX instructions), a guest
4362 * must first be able to turn on cr4.VMXE (see handle_vmon()).
4363 * So basically the check on whether to allow nested VMX
4364 * is here.
4365 */
4366 if (!nested_vmx_allowed(vcpu))
4367 return 1;
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01004368 }
David Matlack38991522016-11-29 18:14:08 -08004369
4370 if (to_vmx(vcpu)->nested.vmxon && !nested_cr4_valid(vcpu, cr4))
Nadav Har'El5e1746d2011-05-25 23:03:24 +03004371 return 1;
4372
Zhang Xiantaoad312c72007-12-13 23:50:52 +08004373 vcpu->arch.cr4 = cr4;
Avi Kivitybc230082009-12-08 12:14:42 +02004374 if (enable_ept) {
4375 if (!is_paging(vcpu)) {
4376 hw_cr4 &= ~X86_CR4_PAE;
4377 hw_cr4 |= X86_CR4_PSE;
4378 } else if (!(cr4 & X86_CR4_PAE)) {
4379 hw_cr4 &= ~X86_CR4_PAE;
4380 }
4381 }
Sheng Yang14394422008-04-28 12:24:45 +08004382
Radim Krčmář656ec4a2015-11-02 22:20:00 +01004383 if (!enable_unrestricted_guest && !is_paging(vcpu))
4384 /*
Huaitong Handdba2622016-03-22 16:51:15 +08004385 * SMEP/SMAP/PKU is disabled if CPU is in non-paging mode in
4386 * hardware. To emulate this behavior, SMEP/SMAP/PKU needs
4387 * to be manually disabled when guest switches to non-paging
4388 * mode.
4389 *
4390 * If !enable_unrestricted_guest, the CPU is always running
4391 * with CR0.PG=1 and CR4 needs to be modified.
4392 * If enable_unrestricted_guest, the CPU automatically
4393 * disables SMEP/SMAP/PKU when the guest sets CR0.PG=0.
Radim Krčmář656ec4a2015-11-02 22:20:00 +01004394 */
Huaitong Handdba2622016-03-22 16:51:15 +08004395 hw_cr4 &= ~(X86_CR4_SMEP | X86_CR4_SMAP | X86_CR4_PKE);
Radim Krčmář656ec4a2015-11-02 22:20:00 +01004396
Sheng Yang14394422008-04-28 12:24:45 +08004397 vmcs_writel(CR4_READ_SHADOW, cr4);
4398 vmcs_writel(GUEST_CR4, hw_cr4);
Nadav Har'El5e1746d2011-05-25 23:03:24 +03004399 return 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004400}
4401
Avi Kivity6aa8b732006-12-10 02:21:36 -08004402static void vmx_get_segment(struct kvm_vcpu *vcpu,
4403 struct kvm_segment *var, int seg)
4404{
Avi Kivitya9179492011-01-03 14:28:52 +02004405 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004406 u32 ar;
4407
Gleb Natapovc6ad11532012-12-12 19:10:51 +02004408 if (vmx->rmode.vm86_active && seg != VCPU_SREG_LDTR) {
Avi Kivityf5f7b2f2012-08-21 17:07:00 +03004409 *var = vmx->rmode.segs[seg];
Avi Kivitya9179492011-01-03 14:28:52 +02004410 if (seg == VCPU_SREG_TR
Avi Kivity2fb92db2011-04-27 19:42:18 +03004411 || var->selector == vmx_read_guest_seg_selector(vmx, seg))
Avi Kivityf5f7b2f2012-08-21 17:07:00 +03004412 return;
Avi Kivity1390a282012-08-21 17:07:08 +03004413 var->base = vmx_read_guest_seg_base(vmx, seg);
4414 var->selector = vmx_read_guest_seg_selector(vmx, seg);
4415 return;
Avi Kivitya9179492011-01-03 14:28:52 +02004416 }
Avi Kivity2fb92db2011-04-27 19:42:18 +03004417 var->base = vmx_read_guest_seg_base(vmx, seg);
4418 var->limit = vmx_read_guest_seg_limit(vmx, seg);
4419 var->selector = vmx_read_guest_seg_selector(vmx, seg);
4420 ar = vmx_read_guest_seg_ar(vmx, seg);
Gleb Natapov03617c12013-06-28 13:17:18 +03004421 var->unusable = (ar >> 16) & 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004422 var->type = ar & 15;
4423 var->s = (ar >> 4) & 1;
4424 var->dpl = (ar >> 5) & 3;
Gleb Natapov03617c12013-06-28 13:17:18 +03004425 /*
4426 * Some userspaces do not preserve unusable property. Since usable
4427 * segment has to be present according to VMX spec we can use present
4428 * property to amend userspace bug by making unusable segment always
4429 * nonpresent. vmx_segment_access_rights() already marks nonpresent
4430 * segment as unusable.
4431 */
4432 var->present = !var->unusable;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004433 var->avl = (ar >> 12) & 1;
4434 var->l = (ar >> 13) & 1;
4435 var->db = (ar >> 14) & 1;
4436 var->g = (ar >> 15) & 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004437}
4438
Avi Kivitya9179492011-01-03 14:28:52 +02004439static u64 vmx_get_segment_base(struct kvm_vcpu *vcpu, int seg)
4440{
Avi Kivitya9179492011-01-03 14:28:52 +02004441 struct kvm_segment s;
4442
4443 if (to_vmx(vcpu)->rmode.vm86_active) {
4444 vmx_get_segment(vcpu, &s, seg);
4445 return s.base;
4446 }
Avi Kivity2fb92db2011-04-27 19:42:18 +03004447 return vmx_read_guest_seg_base(to_vmx(vcpu), seg);
Avi Kivitya9179492011-01-03 14:28:52 +02004448}
4449
Marcelo Tosattib09408d2013-01-07 19:27:06 -02004450static int vmx_get_cpl(struct kvm_vcpu *vcpu)
Izik Eidus2e4d2652008-03-24 19:38:34 +02004451{
Marcelo Tosattib09408d2013-01-07 19:27:06 -02004452 struct vcpu_vmx *vmx = to_vmx(vcpu);
4453
Paolo Bonziniae9fedc2014-05-14 09:39:49 +02004454 if (unlikely(vmx->rmode.vm86_active))
Izik Eidus2e4d2652008-03-24 19:38:34 +02004455 return 0;
Paolo Bonziniae9fedc2014-05-14 09:39:49 +02004456 else {
4457 int ar = vmx_read_guest_seg_ar(vmx, VCPU_SREG_SS);
Andy Lutomirski4d283ec2015-08-13 13:18:48 -07004458 return VMX_AR_DPL(ar);
Avi Kivity69c73022011-03-07 15:26:44 +02004459 }
Avi Kivity69c73022011-03-07 15:26:44 +02004460}
4461
Avi Kivity653e3102007-05-07 10:55:37 +03004462static u32 vmx_segment_access_rights(struct kvm_segment *var)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004463{
Avi Kivity6aa8b732006-12-10 02:21:36 -08004464 u32 ar;
4465
Avi Kivityf0495f92012-06-07 17:06:10 +03004466 if (var->unusable || !var->present)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004467 ar = 1 << 16;
4468 else {
4469 ar = var->type & 15;
4470 ar |= (var->s & 1) << 4;
4471 ar |= (var->dpl & 3) << 5;
4472 ar |= (var->present & 1) << 7;
4473 ar |= (var->avl & 1) << 12;
4474 ar |= (var->l & 1) << 13;
4475 ar |= (var->db & 1) << 14;
4476 ar |= (var->g & 1) << 15;
4477 }
Avi Kivity653e3102007-05-07 10:55:37 +03004478
4479 return ar;
4480}
4481
4482static void vmx_set_segment(struct kvm_vcpu *vcpu,
4483 struct kvm_segment *var, int seg)
4484{
Avi Kivity7ffd92c2009-06-09 14:10:45 +03004485 struct vcpu_vmx *vmx = to_vmx(vcpu);
Mathias Krause772e0312012-08-30 01:30:19 +02004486 const struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg];
Avi Kivity653e3102007-05-07 10:55:37 +03004487
Avi Kivity2fb92db2011-04-27 19:42:18 +03004488 vmx_segment_cache_clear(vmx);
4489
Gleb Natapov1ecd50a2012-12-12 19:10:54 +02004490 if (vmx->rmode.vm86_active && seg != VCPU_SREG_LDTR) {
4491 vmx->rmode.segs[seg] = *var;
4492 if (seg == VCPU_SREG_TR)
4493 vmcs_write16(sf->selector, var->selector);
4494 else if (var->s)
4495 fix_rmode_seg(seg, &vmx->rmode.segs[seg]);
Gleb Natapovd99e4152012-12-20 16:57:45 +02004496 goto out;
Avi Kivity653e3102007-05-07 10:55:37 +03004497 }
Gleb Natapov1ecd50a2012-12-12 19:10:54 +02004498
Avi Kivity653e3102007-05-07 10:55:37 +03004499 vmcs_writel(sf->base, var->base);
4500 vmcs_write32(sf->limit, var->limit);
4501 vmcs_write16(sf->selector, var->selector);
Nitin A Kamble3a624e22009-06-08 11:34:16 -07004502
4503 /*
4504 * Fix the "Accessed" bit in AR field of segment registers for older
4505 * qemu binaries.
4506 * IA32 arch specifies that at the time of processor reset the
4507 * "Accessed" bit in the AR field of segment registers is 1. And qemu
Guo Chao0fa06072012-06-28 15:16:19 +08004508 * is setting it to 0 in the userland code. This causes invalid guest
Nitin A Kamble3a624e22009-06-08 11:34:16 -07004509 * state vmexit when "unrestricted guest" mode is turned on.
4510 * Fix for this setup issue in cpu_reset is being pushed in the qemu
4511 * tree. Newer qemu binaries with that qemu fix would not need this
4512 * kvm hack.
4513 */
4514 if (enable_unrestricted_guest && (seg != VCPU_SREG_LDTR))
Gleb Natapovf924d662012-12-12 19:10:55 +02004515 var->type |= 0x1; /* Accessed */
Nitin A Kamble3a624e22009-06-08 11:34:16 -07004516
Gleb Natapovf924d662012-12-12 19:10:55 +02004517 vmcs_write32(sf->ar_bytes, vmx_segment_access_rights(var));
Gleb Natapovd99e4152012-12-20 16:57:45 +02004518
4519out:
Paolo Bonzini98eb2f82014-03-27 09:51:52 +01004520 vmx->emulation_required = emulation_required(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004521}
4522
Avi Kivity6aa8b732006-12-10 02:21:36 -08004523static void vmx_get_cs_db_l_bits(struct kvm_vcpu *vcpu, int *db, int *l)
4524{
Avi Kivity2fb92db2011-04-27 19:42:18 +03004525 u32 ar = vmx_read_guest_seg_ar(to_vmx(vcpu), VCPU_SREG_CS);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004526
4527 *db = (ar >> 14) & 1;
4528 *l = (ar >> 13) & 1;
4529}
4530
Gleb Natapov89a27f42010-02-16 10:51:48 +02004531static void vmx_get_idt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004532{
Gleb Natapov89a27f42010-02-16 10:51:48 +02004533 dt->size = vmcs_read32(GUEST_IDTR_LIMIT);
4534 dt->address = vmcs_readl(GUEST_IDTR_BASE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004535}
4536
Gleb Natapov89a27f42010-02-16 10:51:48 +02004537static void vmx_set_idt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004538{
Gleb Natapov89a27f42010-02-16 10:51:48 +02004539 vmcs_write32(GUEST_IDTR_LIMIT, dt->size);
4540 vmcs_writel(GUEST_IDTR_BASE, dt->address);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004541}
4542
Gleb Natapov89a27f42010-02-16 10:51:48 +02004543static void vmx_get_gdt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004544{
Gleb Natapov89a27f42010-02-16 10:51:48 +02004545 dt->size = vmcs_read32(GUEST_GDTR_LIMIT);
4546 dt->address = vmcs_readl(GUEST_GDTR_BASE);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004547}
4548
Gleb Natapov89a27f42010-02-16 10:51:48 +02004549static void vmx_set_gdt(struct kvm_vcpu *vcpu, struct desc_ptr *dt)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004550{
Gleb Natapov89a27f42010-02-16 10:51:48 +02004551 vmcs_write32(GUEST_GDTR_LIMIT, dt->size);
4552 vmcs_writel(GUEST_GDTR_BASE, dt->address);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004553}
4554
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004555static bool rmode_segment_valid(struct kvm_vcpu *vcpu, int seg)
4556{
4557 struct kvm_segment var;
4558 u32 ar;
4559
4560 vmx_get_segment(vcpu, &var, seg);
Gleb Natapov07f42f52012-12-12 19:10:49 +02004561 var.dpl = 0x3;
Gleb Natapov0647f4a2012-12-12 19:10:50 +02004562 if (seg == VCPU_SREG_CS)
4563 var.type = 0x3;
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004564 ar = vmx_segment_access_rights(&var);
4565
4566 if (var.base != (var.selector << 4))
4567 return false;
Gleb Natapov89efbed2012-12-20 16:57:44 +02004568 if (var.limit != 0xffff)
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004569 return false;
Gleb Natapov07f42f52012-12-12 19:10:49 +02004570 if (ar != 0xf3)
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004571 return false;
4572
4573 return true;
4574}
4575
4576static bool code_segment_valid(struct kvm_vcpu *vcpu)
4577{
4578 struct kvm_segment cs;
4579 unsigned int cs_rpl;
4580
4581 vmx_get_segment(vcpu, &cs, VCPU_SREG_CS);
Nadav Amitb32a9912015-03-29 16:33:04 +03004582 cs_rpl = cs.selector & SEGMENT_RPL_MASK;
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004583
Avi Kivity1872a3f2009-01-04 23:26:52 +02004584 if (cs.unusable)
4585 return false;
Andy Lutomirski4d283ec2015-08-13 13:18:48 -07004586 if (~cs.type & (VMX_AR_TYPE_CODE_MASK|VMX_AR_TYPE_ACCESSES_MASK))
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004587 return false;
4588 if (!cs.s)
4589 return false;
Andy Lutomirski4d283ec2015-08-13 13:18:48 -07004590 if (cs.type & VMX_AR_TYPE_WRITEABLE_MASK) {
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004591 if (cs.dpl > cs_rpl)
4592 return false;
Avi Kivity1872a3f2009-01-04 23:26:52 +02004593 } else {
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004594 if (cs.dpl != cs_rpl)
4595 return false;
4596 }
4597 if (!cs.present)
4598 return false;
4599
4600 /* TODO: Add Reserved field check, this'll require a new member in the kvm_segment_field structure */
4601 return true;
4602}
4603
4604static bool stack_segment_valid(struct kvm_vcpu *vcpu)
4605{
4606 struct kvm_segment ss;
4607 unsigned int ss_rpl;
4608
4609 vmx_get_segment(vcpu, &ss, VCPU_SREG_SS);
Nadav Amitb32a9912015-03-29 16:33:04 +03004610 ss_rpl = ss.selector & SEGMENT_RPL_MASK;
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004611
Avi Kivity1872a3f2009-01-04 23:26:52 +02004612 if (ss.unusable)
4613 return true;
4614 if (ss.type != 3 && ss.type != 7)
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004615 return false;
4616 if (!ss.s)
4617 return false;
4618 if (ss.dpl != ss_rpl) /* DPL != RPL */
4619 return false;
4620 if (!ss.present)
4621 return false;
4622
4623 return true;
4624}
4625
4626static bool data_segment_valid(struct kvm_vcpu *vcpu, int seg)
4627{
4628 struct kvm_segment var;
4629 unsigned int rpl;
4630
4631 vmx_get_segment(vcpu, &var, seg);
Nadav Amitb32a9912015-03-29 16:33:04 +03004632 rpl = var.selector & SEGMENT_RPL_MASK;
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004633
Avi Kivity1872a3f2009-01-04 23:26:52 +02004634 if (var.unusable)
4635 return true;
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004636 if (!var.s)
4637 return false;
4638 if (!var.present)
4639 return false;
Andy Lutomirski4d283ec2015-08-13 13:18:48 -07004640 if (~var.type & (VMX_AR_TYPE_CODE_MASK|VMX_AR_TYPE_WRITEABLE_MASK)) {
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004641 if (var.dpl < rpl) /* DPL < RPL */
4642 return false;
4643 }
4644
4645 /* TODO: Add other members to kvm_segment_field to allow checking for other access
4646 * rights flags
4647 */
4648 return true;
4649}
4650
4651static bool tr_valid(struct kvm_vcpu *vcpu)
4652{
4653 struct kvm_segment tr;
4654
4655 vmx_get_segment(vcpu, &tr, VCPU_SREG_TR);
4656
Avi Kivity1872a3f2009-01-04 23:26:52 +02004657 if (tr.unusable)
4658 return false;
Nadav Amitb32a9912015-03-29 16:33:04 +03004659 if (tr.selector & SEGMENT_TI_MASK) /* TI = 1 */
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004660 return false;
Avi Kivity1872a3f2009-01-04 23:26:52 +02004661 if (tr.type != 3 && tr.type != 11) /* TODO: Check if guest is in IA32e mode */
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004662 return false;
4663 if (!tr.present)
4664 return false;
4665
4666 return true;
4667}
4668
4669static bool ldtr_valid(struct kvm_vcpu *vcpu)
4670{
4671 struct kvm_segment ldtr;
4672
4673 vmx_get_segment(vcpu, &ldtr, VCPU_SREG_LDTR);
4674
Avi Kivity1872a3f2009-01-04 23:26:52 +02004675 if (ldtr.unusable)
4676 return true;
Nadav Amitb32a9912015-03-29 16:33:04 +03004677 if (ldtr.selector & SEGMENT_TI_MASK) /* TI = 1 */
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004678 return false;
4679 if (ldtr.type != 2)
4680 return false;
4681 if (!ldtr.present)
4682 return false;
4683
4684 return true;
4685}
4686
4687static bool cs_ss_rpl_check(struct kvm_vcpu *vcpu)
4688{
4689 struct kvm_segment cs, ss;
4690
4691 vmx_get_segment(vcpu, &cs, VCPU_SREG_CS);
4692 vmx_get_segment(vcpu, &ss, VCPU_SREG_SS);
4693
Nadav Amitb32a9912015-03-29 16:33:04 +03004694 return ((cs.selector & SEGMENT_RPL_MASK) ==
4695 (ss.selector & SEGMENT_RPL_MASK));
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004696}
4697
4698/*
4699 * Check if guest state is valid. Returns true if valid, false if
4700 * not.
4701 * We assume that registers are always usable
4702 */
4703static bool guest_state_valid(struct kvm_vcpu *vcpu)
4704{
Gleb Natapovc5e97c82013-01-21 15:36:43 +02004705 if (enable_unrestricted_guest)
4706 return true;
4707
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004708 /* real mode guest state checks */
Gleb Natapovf13882d2013-04-14 16:07:37 +03004709 if (!is_protmode(vcpu) || (vmx_get_rflags(vcpu) & X86_EFLAGS_VM)) {
Mohammed Gamal648dfaa2008-08-17 16:38:32 +03004710 if (!rmode_segment_valid(vcpu, VCPU_SREG_CS))
4711 return false;
4712 if (!rmode_segment_valid(vcpu, VCPU_SREG_SS))
4713 return false;
4714 if (!rmode_segment_valid(vcpu, VCPU_SREG_DS))
4715 return false;
4716 if (!rmode_segment_valid(vcpu, VCPU_SREG_ES))
4717 return false;
4718 if (!rmode_segment_valid(vcpu, VCPU_SREG_FS))
4719 return false;
4720 if (!rmode_segment_valid(vcpu, VCPU_SREG_GS))
4721 return false;
4722 } else {
4723 /* protected mode guest state checks */
4724 if (!cs_ss_rpl_check(vcpu))
4725 return false;
4726 if (!code_segment_valid(vcpu))
4727 return false;
4728 if (!stack_segment_valid(vcpu))
4729 return false;
4730 if (!data_segment_valid(vcpu, VCPU_SREG_DS))
4731 return false;
4732 if (!data_segment_valid(vcpu, VCPU_SREG_ES))
4733 return false;
4734 if (!data_segment_valid(vcpu, VCPU_SREG_FS))
4735 return false;
4736 if (!data_segment_valid(vcpu, VCPU_SREG_GS))
4737 return false;
4738 if (!tr_valid(vcpu))
4739 return false;
4740 if (!ldtr_valid(vcpu))
4741 return false;
4742 }
4743 /* TODO:
4744 * - Add checks on RIP
4745 * - Add checks on RFLAGS
4746 */
4747
4748 return true;
4749}
4750
Jim Mattson5fa99cb2017-07-06 16:33:07 -07004751static bool page_address_valid(struct kvm_vcpu *vcpu, gpa_t gpa)
4752{
4753 return PAGE_ALIGNED(gpa) && !(gpa >> cpuid_maxphyaddr(vcpu));
4754}
4755
Mike Dayd77c26f2007-10-08 09:02:08 -04004756static int init_rmode_tss(struct kvm *kvm)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004757{
Xiao Guangrong40dcaa92011-03-09 15:41:04 +08004758 gfn_t fn;
Izik Eidus195aefd2007-10-01 22:14:18 +02004759 u16 data = 0;
Paolo Bonzini1f755a82014-09-16 13:37:40 +02004760 int idx, r;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004761
Xiao Guangrong40dcaa92011-03-09 15:41:04 +08004762 idx = srcu_read_lock(&kvm->srcu);
Jan Kiszka4918c6c2013-03-15 08:38:56 +01004763 fn = kvm->arch.tss_addr >> PAGE_SHIFT;
Izik Eidus195aefd2007-10-01 22:14:18 +02004764 r = kvm_clear_guest_page(kvm, fn, 0, PAGE_SIZE);
4765 if (r < 0)
Marcelo Tosatti10589a42007-12-20 19:18:22 -05004766 goto out;
Izik Eidus195aefd2007-10-01 22:14:18 +02004767 data = TSS_BASE_SIZE + TSS_REDIRECTION_SIZE;
Sheng Yang464d17c2008-08-13 14:10:33 +08004768 r = kvm_write_guest_page(kvm, fn++, &data,
4769 TSS_IOPB_BASE_OFFSET, sizeof(u16));
Izik Eidus195aefd2007-10-01 22:14:18 +02004770 if (r < 0)
Marcelo Tosatti10589a42007-12-20 19:18:22 -05004771 goto out;
Izik Eidus195aefd2007-10-01 22:14:18 +02004772 r = kvm_clear_guest_page(kvm, fn++, 0, PAGE_SIZE);
4773 if (r < 0)
Marcelo Tosatti10589a42007-12-20 19:18:22 -05004774 goto out;
Izik Eidus195aefd2007-10-01 22:14:18 +02004775 r = kvm_clear_guest_page(kvm, fn, 0, PAGE_SIZE);
4776 if (r < 0)
Marcelo Tosatti10589a42007-12-20 19:18:22 -05004777 goto out;
Izik Eidus195aefd2007-10-01 22:14:18 +02004778 data = ~0;
Marcelo Tosatti10589a42007-12-20 19:18:22 -05004779 r = kvm_write_guest_page(kvm, fn, &data,
4780 RMODE_TSS_SIZE - 2 * PAGE_SIZE - 1,
4781 sizeof(u8));
Marcelo Tosatti10589a42007-12-20 19:18:22 -05004782out:
Xiao Guangrong40dcaa92011-03-09 15:41:04 +08004783 srcu_read_unlock(&kvm->srcu, idx);
Paolo Bonzini1f755a82014-09-16 13:37:40 +02004784 return r;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004785}
4786
Sheng Yangb7ebfb02008-04-25 21:44:52 +08004787static int init_rmode_identity_map(struct kvm *kvm)
4788{
Tang Chenf51770e2014-09-16 18:41:59 +08004789 int i, idx, r = 0;
Dan Williamsba049e92016-01-15 16:56:11 -08004790 kvm_pfn_t identity_map_pfn;
Sheng Yangb7ebfb02008-04-25 21:44:52 +08004791 u32 tmp;
4792
Avi Kivity089d0342009-03-23 18:26:32 +02004793 if (!enable_ept)
Tang Chenf51770e2014-09-16 18:41:59 +08004794 return 0;
Tang Chena255d472014-09-16 18:41:58 +08004795
4796 /* Protect kvm->arch.ept_identity_pagetable_done. */
4797 mutex_lock(&kvm->slots_lock);
4798
Tang Chenf51770e2014-09-16 18:41:59 +08004799 if (likely(kvm->arch.ept_identity_pagetable_done))
Tang Chena255d472014-09-16 18:41:58 +08004800 goto out2;
Tang Chena255d472014-09-16 18:41:58 +08004801
Sheng Yangb927a3c2009-07-21 10:42:48 +08004802 identity_map_pfn = kvm->arch.ept_identity_map_addr >> PAGE_SHIFT;
Tang Chena255d472014-09-16 18:41:58 +08004803
4804 r = alloc_identity_pagetable(kvm);
Tang Chenf51770e2014-09-16 18:41:59 +08004805 if (r < 0)
Tang Chena255d472014-09-16 18:41:58 +08004806 goto out2;
4807
Xiao Guangrong40dcaa92011-03-09 15:41:04 +08004808 idx = srcu_read_lock(&kvm->srcu);
Sheng Yangb7ebfb02008-04-25 21:44:52 +08004809 r = kvm_clear_guest_page(kvm, identity_map_pfn, 0, PAGE_SIZE);
4810 if (r < 0)
4811 goto out;
4812 /* Set up identity-mapping pagetable for EPT in real mode */
4813 for (i = 0; i < PT32_ENT_PER_PAGE; i++) {
4814 tmp = (i << 22) + (_PAGE_PRESENT | _PAGE_RW | _PAGE_USER |
4815 _PAGE_ACCESSED | _PAGE_DIRTY | _PAGE_PSE);
4816 r = kvm_write_guest_page(kvm, identity_map_pfn,
4817 &tmp, i * sizeof(tmp), sizeof(tmp));
4818 if (r < 0)
4819 goto out;
4820 }
4821 kvm->arch.ept_identity_pagetable_done = true;
Tang Chenf51770e2014-09-16 18:41:59 +08004822
Sheng Yangb7ebfb02008-04-25 21:44:52 +08004823out:
Xiao Guangrong40dcaa92011-03-09 15:41:04 +08004824 srcu_read_unlock(&kvm->srcu, idx);
Tang Chena255d472014-09-16 18:41:58 +08004825
4826out2:
4827 mutex_unlock(&kvm->slots_lock);
Tang Chenf51770e2014-09-16 18:41:59 +08004828 return r;
Sheng Yangb7ebfb02008-04-25 21:44:52 +08004829}
4830
Avi Kivity6aa8b732006-12-10 02:21:36 -08004831static void seg_setup(int seg)
4832{
Mathias Krause772e0312012-08-30 01:30:19 +02004833 const struct kvm_vmx_segment_field *sf = &kvm_vmx_segment_fields[seg];
Nitin A Kamble3a624e22009-06-08 11:34:16 -07004834 unsigned int ar;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004835
4836 vmcs_write16(sf->selector, 0);
4837 vmcs_writel(sf->base, 0);
4838 vmcs_write32(sf->limit, 0xffff);
Gleb Natapovd54d07b2012-12-20 16:57:46 +02004839 ar = 0x93;
4840 if (seg == VCPU_SREG_CS)
4841 ar |= 0x08; /* code segment */
Nitin A Kamble3a624e22009-06-08 11:34:16 -07004842
4843 vmcs_write32(sf->ar_bytes, ar);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004844}
4845
Sheng Yangf78e0e22007-10-29 09:40:42 +08004846static int alloc_apic_access_page(struct kvm *kvm)
4847{
Xiao Guangrong44841412012-09-07 14:14:20 +08004848 struct page *page;
Sheng Yangf78e0e22007-10-29 09:40:42 +08004849 int r = 0;
4850
Marcelo Tosatti79fac952009-12-23 14:35:26 -02004851 mutex_lock(&kvm->slots_lock);
Tang Chenc24ae0d2014-09-24 15:57:58 +08004852 if (kvm->arch.apic_access_page_done)
Sheng Yangf78e0e22007-10-29 09:40:42 +08004853 goto out;
Paolo Bonzini1d8007b2015-10-12 13:38:32 +02004854 r = __x86_set_memory_region(kvm, APIC_ACCESS_PAGE_PRIVATE_MEMSLOT,
4855 APIC_DEFAULT_PHYS_BASE, PAGE_SIZE);
Sheng Yangf78e0e22007-10-29 09:40:42 +08004856 if (r)
4857 goto out;
Izik Eidus72dc67a2008-02-10 18:04:15 +02004858
Tang Chen73a6d942014-09-11 13:38:00 +08004859 page = gfn_to_page(kvm, APIC_DEFAULT_PHYS_BASE >> PAGE_SHIFT);
Xiao Guangrong44841412012-09-07 14:14:20 +08004860 if (is_error_page(page)) {
4861 r = -EFAULT;
4862 goto out;
4863 }
4864
Tang Chenc24ae0d2014-09-24 15:57:58 +08004865 /*
4866 * Do not pin the page in memory, so that memory hot-unplug
4867 * is able to migrate it.
4868 */
4869 put_page(page);
4870 kvm->arch.apic_access_page_done = true;
Sheng Yangf78e0e22007-10-29 09:40:42 +08004871out:
Marcelo Tosatti79fac952009-12-23 14:35:26 -02004872 mutex_unlock(&kvm->slots_lock);
Sheng Yangf78e0e22007-10-29 09:40:42 +08004873 return r;
4874}
4875
Sheng Yangb7ebfb02008-04-25 21:44:52 +08004876static int alloc_identity_pagetable(struct kvm *kvm)
4877{
Tang Chena255d472014-09-16 18:41:58 +08004878 /* Called with kvm->slots_lock held. */
4879
Sheng Yangb7ebfb02008-04-25 21:44:52 +08004880 int r = 0;
4881
Tang Chena255d472014-09-16 18:41:58 +08004882 BUG_ON(kvm->arch.ept_identity_pagetable_done);
4883
Paolo Bonzini1d8007b2015-10-12 13:38:32 +02004884 r = __x86_set_memory_region(kvm, IDENTITY_PAGETABLE_PRIVATE_MEMSLOT,
4885 kvm->arch.ept_identity_map_addr, PAGE_SIZE);
Sheng Yangb7ebfb02008-04-25 21:44:52 +08004886
Sheng Yangb7ebfb02008-04-25 21:44:52 +08004887 return r;
4888}
4889
Wanpeng Li991e7a02015-09-16 17:30:05 +08004890static int allocate_vpid(void)
Sheng Yang2384d2b2008-01-17 15:14:33 +08004891{
4892 int vpid;
4893
Avi Kivity919818a2009-03-23 18:01:29 +02004894 if (!enable_vpid)
Wanpeng Li991e7a02015-09-16 17:30:05 +08004895 return 0;
Sheng Yang2384d2b2008-01-17 15:14:33 +08004896 spin_lock(&vmx_vpid_lock);
4897 vpid = find_first_zero_bit(vmx_vpid_bitmap, VMX_NR_VPIDS);
Wanpeng Li991e7a02015-09-16 17:30:05 +08004898 if (vpid < VMX_NR_VPIDS)
Sheng Yang2384d2b2008-01-17 15:14:33 +08004899 __set_bit(vpid, vmx_vpid_bitmap);
Wanpeng Li991e7a02015-09-16 17:30:05 +08004900 else
4901 vpid = 0;
Sheng Yang2384d2b2008-01-17 15:14:33 +08004902 spin_unlock(&vmx_vpid_lock);
Wanpeng Li991e7a02015-09-16 17:30:05 +08004903 return vpid;
Sheng Yang2384d2b2008-01-17 15:14:33 +08004904}
4905
Wanpeng Li991e7a02015-09-16 17:30:05 +08004906static void free_vpid(int vpid)
Lai Jiangshancdbecfc2010-04-17 16:41:47 +08004907{
Wanpeng Li991e7a02015-09-16 17:30:05 +08004908 if (!enable_vpid || vpid == 0)
Lai Jiangshancdbecfc2010-04-17 16:41:47 +08004909 return;
4910 spin_lock(&vmx_vpid_lock);
Wanpeng Li991e7a02015-09-16 17:30:05 +08004911 __clear_bit(vpid, vmx_vpid_bitmap);
Lai Jiangshancdbecfc2010-04-17 16:41:47 +08004912 spin_unlock(&vmx_vpid_lock);
4913}
4914
Yang Zhang8d146952013-01-25 10:18:50 +08004915#define MSR_TYPE_R 1
4916#define MSR_TYPE_W 2
4917static void __vmx_disable_intercept_for_msr(unsigned long *msr_bitmap,
4918 u32 msr, int type)
Sheng Yang25c5f222008-03-28 13:18:56 +08004919{
Avi Kivity3e7c73e2009-02-24 21:46:19 +02004920 int f = sizeof(unsigned long);
Sheng Yang25c5f222008-03-28 13:18:56 +08004921
4922 if (!cpu_has_vmx_msr_bitmap())
4923 return;
4924
4925 /*
4926 * See Intel PRM Vol. 3, 20.6.9 (MSR-Bitmap Address). Early manuals
4927 * have the write-low and read-high bitmap offsets the wrong way round.
4928 * We can control MSRs 0x00000000-0x00001fff and 0xc0000000-0xc0001fff.
4929 */
Sheng Yang25c5f222008-03-28 13:18:56 +08004930 if (msr <= 0x1fff) {
Yang Zhang8d146952013-01-25 10:18:50 +08004931 if (type & MSR_TYPE_R)
4932 /* read-low */
4933 __clear_bit(msr, msr_bitmap + 0x000 / f);
4934
4935 if (type & MSR_TYPE_W)
4936 /* write-low */
4937 __clear_bit(msr, msr_bitmap + 0x800 / f);
4938
Sheng Yang25c5f222008-03-28 13:18:56 +08004939 } else if ((msr >= 0xc0000000) && (msr <= 0xc0001fff)) {
4940 msr &= 0x1fff;
Yang Zhang8d146952013-01-25 10:18:50 +08004941 if (type & MSR_TYPE_R)
4942 /* read-high */
4943 __clear_bit(msr, msr_bitmap + 0x400 / f);
4944
4945 if (type & MSR_TYPE_W)
4946 /* write-high */
4947 __clear_bit(msr, msr_bitmap + 0xc00 / f);
4948
4949 }
4950}
4951
Wincy Vanf2b93282015-02-03 23:56:03 +08004952/*
4953 * If a msr is allowed by L0, we should check whether it is allowed by L1.
4954 * The corresponding bit will be cleared unless both of L0 and L1 allow it.
4955 */
4956static void nested_vmx_disable_intercept_for_msr(unsigned long *msr_bitmap_l1,
4957 unsigned long *msr_bitmap_nested,
4958 u32 msr, int type)
4959{
4960 int f = sizeof(unsigned long);
4961
4962 if (!cpu_has_vmx_msr_bitmap()) {
4963 WARN_ON(1);
4964 return;
4965 }
4966
4967 /*
4968 * See Intel PRM Vol. 3, 20.6.9 (MSR-Bitmap Address). Early manuals
4969 * have the write-low and read-high bitmap offsets the wrong way round.
4970 * We can control MSRs 0x00000000-0x00001fff and 0xc0000000-0xc0001fff.
4971 */
4972 if (msr <= 0x1fff) {
4973 if (type & MSR_TYPE_R &&
4974 !test_bit(msr, msr_bitmap_l1 + 0x000 / f))
4975 /* read-low */
4976 __clear_bit(msr, msr_bitmap_nested + 0x000 / f);
4977
4978 if (type & MSR_TYPE_W &&
4979 !test_bit(msr, msr_bitmap_l1 + 0x800 / f))
4980 /* write-low */
4981 __clear_bit(msr, msr_bitmap_nested + 0x800 / f);
4982
4983 } else if ((msr >= 0xc0000000) && (msr <= 0xc0001fff)) {
4984 msr &= 0x1fff;
4985 if (type & MSR_TYPE_R &&
4986 !test_bit(msr, msr_bitmap_l1 + 0x400 / f))
4987 /* read-high */
4988 __clear_bit(msr, msr_bitmap_nested + 0x400 / f);
4989
4990 if (type & MSR_TYPE_W &&
4991 !test_bit(msr, msr_bitmap_l1 + 0xc00 / f))
4992 /* write-high */
4993 __clear_bit(msr, msr_bitmap_nested + 0xc00 / f);
4994
4995 }
4996}
4997
Avi Kivity58972972009-02-24 22:26:47 +02004998static void vmx_disable_intercept_for_msr(u32 msr, bool longmode_only)
4999{
5000 if (!longmode_only)
Yang Zhang8d146952013-01-25 10:18:50 +08005001 __vmx_disable_intercept_for_msr(vmx_msr_bitmap_legacy,
5002 msr, MSR_TYPE_R | MSR_TYPE_W);
5003 __vmx_disable_intercept_for_msr(vmx_msr_bitmap_longmode,
5004 msr, MSR_TYPE_R | MSR_TYPE_W);
5005}
5006
Radim Krčmář2e69f862016-09-29 22:41:32 +02005007static void vmx_disable_intercept_msr_x2apic(u32 msr, int type, bool apicv_active)
Yang Zhang8d146952013-01-25 10:18:50 +08005008{
Wanpeng Lif6e90f92016-09-22 07:43:25 +08005009 if (apicv_active) {
Wanpeng Lic63e4562016-09-23 19:17:16 +08005010 __vmx_disable_intercept_for_msr(vmx_msr_bitmap_legacy_x2apic_apicv,
Radim Krčmář2e69f862016-09-29 22:41:32 +02005011 msr, type);
Wanpeng Lic63e4562016-09-23 19:17:16 +08005012 __vmx_disable_intercept_for_msr(vmx_msr_bitmap_longmode_x2apic_apicv,
Radim Krčmář2e69f862016-09-29 22:41:32 +02005013 msr, type);
Wanpeng Lif6e90f92016-09-22 07:43:25 +08005014 } else {
Wanpeng Lif6e90f92016-09-22 07:43:25 +08005015 __vmx_disable_intercept_for_msr(vmx_msr_bitmap_legacy_x2apic,
Radim Krčmář2e69f862016-09-29 22:41:32 +02005016 msr, type);
Wanpeng Lif6e90f92016-09-22 07:43:25 +08005017 __vmx_disable_intercept_for_msr(vmx_msr_bitmap_longmode_x2apic,
Radim Krčmář2e69f862016-09-29 22:41:32 +02005018 msr, type);
Wanpeng Lif6e90f92016-09-22 07:43:25 +08005019 }
Avi Kivity58972972009-02-24 22:26:47 +02005020}
5021
Andrey Smetanind62caab2015-11-10 15:36:33 +03005022static bool vmx_get_enable_apicv(void)
Paolo Bonzinid50ab6c2015-07-29 11:49:59 +02005023{
Andrey Smetanind62caab2015-11-10 15:36:33 +03005024 return enable_apicv;
Paolo Bonzinid50ab6c2015-07-29 11:49:59 +02005025}
5026
David Matlackc9f04402017-08-01 14:00:40 -07005027static void nested_mark_vmcs12_pages_dirty(struct kvm_vcpu *vcpu)
5028{
5029 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
5030 gfn_t gfn;
5031
5032 /*
5033 * Don't need to mark the APIC access page dirty; it is never
5034 * written to by the CPU during APIC virtualization.
5035 */
5036
5037 if (nested_cpu_has(vmcs12, CPU_BASED_TPR_SHADOW)) {
5038 gfn = vmcs12->virtual_apic_page_addr >> PAGE_SHIFT;
5039 kvm_vcpu_mark_page_dirty(vcpu, gfn);
5040 }
5041
5042 if (nested_cpu_has_posted_intr(vmcs12)) {
5043 gfn = vmcs12->posted_intr_desc_addr >> PAGE_SHIFT;
5044 kvm_vcpu_mark_page_dirty(vcpu, gfn);
5045 }
5046}
5047
5048
David Hildenbrand6342c502017-01-25 11:58:58 +01005049static void vmx_complete_nested_posted_interrupt(struct kvm_vcpu *vcpu)
Wincy Van705699a2015-02-03 23:58:17 +08005050{
5051 struct vcpu_vmx *vmx = to_vmx(vcpu);
5052 int max_irr;
5053 void *vapic_page;
5054 u16 status;
5055
David Matlackc9f04402017-08-01 14:00:40 -07005056 if (!vmx->nested.pi_desc || !vmx->nested.pi_pending)
5057 return;
Wincy Van705699a2015-02-03 23:58:17 +08005058
David Matlackc9f04402017-08-01 14:00:40 -07005059 vmx->nested.pi_pending = false;
5060 if (!pi_test_and_clear_on(vmx->nested.pi_desc))
5061 return;
Wincy Van705699a2015-02-03 23:58:17 +08005062
David Matlackc9f04402017-08-01 14:00:40 -07005063 max_irr = find_last_bit((unsigned long *)vmx->nested.pi_desc->pir, 256);
5064 if (max_irr != 256) {
Wincy Van705699a2015-02-03 23:58:17 +08005065 vapic_page = kmap(vmx->nested.virtual_apic_page);
Wincy Van705699a2015-02-03 23:58:17 +08005066 __kvm_apic_update_irr(vmx->nested.pi_desc->pir, vapic_page);
5067 kunmap(vmx->nested.virtual_apic_page);
5068
5069 status = vmcs_read16(GUEST_INTR_STATUS);
5070 if ((u8)max_irr > ((u8)status & 0xff)) {
5071 status &= ~0xff;
5072 status |= (u8)max_irr;
5073 vmcs_write16(GUEST_INTR_STATUS, status);
5074 }
5075 }
David Matlackc9f04402017-08-01 14:00:40 -07005076
5077 nested_mark_vmcs12_pages_dirty(vcpu);
Wincy Van705699a2015-02-03 23:58:17 +08005078}
5079
Wincy Van06a55242017-04-28 13:13:59 +08005080static inline bool kvm_vcpu_trigger_posted_interrupt(struct kvm_vcpu *vcpu,
5081 bool nested)
Radim Krčmář21bc8dc2015-02-16 15:36:33 +01005082{
5083#ifdef CONFIG_SMP
Wincy Van06a55242017-04-28 13:13:59 +08005084 int pi_vec = nested ? POSTED_INTR_NESTED_VECTOR : POSTED_INTR_VECTOR;
5085
Radim Krčmář21bc8dc2015-02-16 15:36:33 +01005086 if (vcpu->mode == IN_GUEST_MODE) {
Feng Wu28b835d2015-09-18 22:29:54 +08005087 struct vcpu_vmx *vmx = to_vmx(vcpu);
5088
5089 /*
5090 * Currently, we don't support urgent interrupt,
5091 * all interrupts are recognized as non-urgent
5092 * interrupt, so we cannot post interrupts when
5093 * 'SN' is set.
5094 *
5095 * If the vcpu is in guest mode, it means it is
5096 * running instead of being scheduled out and
5097 * waiting in the run queue, and that's the only
5098 * case when 'SN' is set currently, warning if
5099 * 'SN' is set.
5100 */
5101 WARN_ON_ONCE(pi_test_sn(&vmx->pi_desc));
5102
Wincy Van06a55242017-04-28 13:13:59 +08005103 apic->send_IPI_mask(get_cpu_mask(vcpu->cpu), pi_vec);
Radim Krčmář21bc8dc2015-02-16 15:36:33 +01005104 return true;
5105 }
5106#endif
5107 return false;
5108}
5109
Wincy Van705699a2015-02-03 23:58:17 +08005110static int vmx_deliver_nested_posted_interrupt(struct kvm_vcpu *vcpu,
5111 int vector)
5112{
5113 struct vcpu_vmx *vmx = to_vmx(vcpu);
5114
5115 if (is_guest_mode(vcpu) &&
5116 vector == vmx->nested.posted_intr_nv) {
5117 /* the PIR and ON have been set by L1. */
Wincy Van06a55242017-04-28 13:13:59 +08005118 kvm_vcpu_trigger_posted_interrupt(vcpu, true);
Wincy Van705699a2015-02-03 23:58:17 +08005119 /*
5120 * If a posted intr is not recognized by hardware,
5121 * we will accomplish it in the next vmentry.
5122 */
5123 vmx->nested.pi_pending = true;
5124 kvm_make_request(KVM_REQ_EVENT, vcpu);
5125 return 0;
5126 }
5127 return -1;
5128}
Avi Kivity6aa8b732006-12-10 02:21:36 -08005129/*
Yang Zhanga20ed542013-04-11 19:25:15 +08005130 * Send interrupt to vcpu via posted interrupt way.
5131 * 1. If target vcpu is running(non-root mode), send posted interrupt
5132 * notification to vcpu and hardware will sync PIR to vIRR atomically.
5133 * 2. If target vcpu isn't running(root mode), kick it to pick up the
5134 * interrupt from PIR in next vmentry.
5135 */
5136static void vmx_deliver_posted_interrupt(struct kvm_vcpu *vcpu, int vector)
5137{
5138 struct vcpu_vmx *vmx = to_vmx(vcpu);
5139 int r;
5140
Wincy Van705699a2015-02-03 23:58:17 +08005141 r = vmx_deliver_nested_posted_interrupt(vcpu, vector);
5142 if (!r)
5143 return;
5144
Yang Zhanga20ed542013-04-11 19:25:15 +08005145 if (pi_test_and_set_pir(vector, &vmx->pi_desc))
5146 return;
5147
Paolo Bonzinib95234c2016-12-19 13:57:33 +01005148 /* If a previous notification has sent the IPI, nothing to do. */
5149 if (pi_test_and_set_on(&vmx->pi_desc))
5150 return;
5151
Wincy Van06a55242017-04-28 13:13:59 +08005152 if (!kvm_vcpu_trigger_posted_interrupt(vcpu, false))
Yang Zhanga20ed542013-04-11 19:25:15 +08005153 kvm_vcpu_kick(vcpu);
5154}
5155
Avi Kivity6aa8b732006-12-10 02:21:36 -08005156/*
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03005157 * Set up the vmcs's constant host-state fields, i.e., host-state fields that
5158 * will not change in the lifetime of the guest.
5159 * Note that host-state that does change is set elsewhere. E.g., host-state
5160 * that is set differently for each CPU is set in vmx_vcpu_load(), not here.
5161 */
Yang Zhanga547c6d2013-04-11 19:25:10 +08005162static void vmx_set_constant_host_state(struct vcpu_vmx *vmx)
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03005163{
5164 u32 low32, high32;
5165 unsigned long tmpl;
5166 struct desc_ptr dt;
Andy Lutomirskid6e41f12017-05-28 10:00:17 -07005167 unsigned long cr0, cr3, cr4;
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03005168
Andy Lutomirski04ac88a2016-10-31 15:18:45 -07005169 cr0 = read_cr0();
5170 WARN_ON(cr0 & X86_CR0_TS);
5171 vmcs_writel(HOST_CR0, cr0); /* 22.2.3 */
Andy Lutomirskid6e41f12017-05-28 10:00:17 -07005172
5173 /*
5174 * Save the most likely value for this task's CR3 in the VMCS.
5175 * We can't use __get_current_cr3_fast() because we're not atomic.
5176 */
Andy Lutomirski6c690ee2017-06-12 10:26:14 -07005177 cr3 = __read_cr3();
Andy Lutomirskid6e41f12017-05-28 10:00:17 -07005178 vmcs_writel(HOST_CR3, cr3); /* 22.2.3 FIXME: shadow tables */
5179 vmx->host_state.vmcs_host_cr3 = cr3;
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03005180
Andy Lutomirskid974baa2014-10-08 09:02:13 -07005181 /* Save the most likely value for this task's CR4 in the VMCS. */
Andy Lutomirski1e02ce42014-10-24 15:58:08 -07005182 cr4 = cr4_read_shadow();
Andy Lutomirskid974baa2014-10-08 09:02:13 -07005183 vmcs_writel(HOST_CR4, cr4); /* 22.2.3, 22.2.5 */
5184 vmx->host_state.vmcs_host_cr4 = cr4;
5185
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03005186 vmcs_write16(HOST_CS_SELECTOR, __KERNEL_CS); /* 22.2.4 */
Avi Kivityb2da15a2012-05-13 19:53:24 +03005187#ifdef CONFIG_X86_64
5188 /*
5189 * Load null selectors, so we can avoid reloading them in
5190 * __vmx_load_host_state(), in case userspace uses the null selectors
5191 * too (the expected case).
5192 */
5193 vmcs_write16(HOST_DS_SELECTOR, 0);
5194 vmcs_write16(HOST_ES_SELECTOR, 0);
5195#else
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03005196 vmcs_write16(HOST_DS_SELECTOR, __KERNEL_DS); /* 22.2.4 */
5197 vmcs_write16(HOST_ES_SELECTOR, __KERNEL_DS); /* 22.2.4 */
Avi Kivityb2da15a2012-05-13 19:53:24 +03005198#endif
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03005199 vmcs_write16(HOST_SS_SELECTOR, __KERNEL_DS); /* 22.2.4 */
5200 vmcs_write16(HOST_TR_SELECTOR, GDT_ENTRY_TSS*8); /* 22.2.4 */
5201
5202 native_store_idt(&dt);
5203 vmcs_writel(HOST_IDTR_BASE, dt.address); /* 22.2.4 */
Yang Zhanga547c6d2013-04-11 19:25:10 +08005204 vmx->host_idt_base = dt.address;
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03005205
Avi Kivity83287ea422012-09-16 15:10:57 +03005206 vmcs_writel(HOST_RIP, vmx_return); /* 22.2.5 */
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03005207
5208 rdmsr(MSR_IA32_SYSENTER_CS, low32, high32);
5209 vmcs_write32(HOST_IA32_SYSENTER_CS, low32);
5210 rdmsrl(MSR_IA32_SYSENTER_EIP, tmpl);
5211 vmcs_writel(HOST_IA32_SYSENTER_EIP, tmpl); /* 22.2.3 */
5212
5213 if (vmcs_config.vmexit_ctrl & VM_EXIT_LOAD_IA32_PAT) {
5214 rdmsr(MSR_IA32_CR_PAT, low32, high32);
5215 vmcs_write64(HOST_IA32_PAT, low32 | ((u64) high32 << 32));
5216 }
5217}
5218
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03005219static void set_cr4_guest_host_mask(struct vcpu_vmx *vmx)
5220{
5221 vmx->vcpu.arch.cr4_guest_owned_bits = KVM_CR4_GUEST_OWNED_BITS;
5222 if (enable_ept)
5223 vmx->vcpu.arch.cr4_guest_owned_bits |= X86_CR4_PGE;
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03005224 if (is_guest_mode(&vmx->vcpu))
5225 vmx->vcpu.arch.cr4_guest_owned_bits &=
5226 ~get_vmcs12(&vmx->vcpu)->cr4_guest_host_mask;
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03005227 vmcs_writel(CR4_GUEST_HOST_MASK, ~vmx->vcpu.arch.cr4_guest_owned_bits);
5228}
5229
Yang Zhang01e439b2013-04-11 19:25:12 +08005230static u32 vmx_pin_based_exec_ctrl(struct vcpu_vmx *vmx)
5231{
5232 u32 pin_based_exec_ctrl = vmcs_config.pin_based_exec_ctrl;
5233
Andrey Smetanind62caab2015-11-10 15:36:33 +03005234 if (!kvm_vcpu_apicv_active(&vmx->vcpu))
Yang Zhang01e439b2013-04-11 19:25:12 +08005235 pin_based_exec_ctrl &= ~PIN_BASED_POSTED_INTR;
Yunhong Jiang64672c92016-06-13 14:19:59 -07005236 /* Enable the preemption timer dynamically */
5237 pin_based_exec_ctrl &= ~PIN_BASED_VMX_PREEMPTION_TIMER;
Yang Zhang01e439b2013-04-11 19:25:12 +08005238 return pin_based_exec_ctrl;
5239}
5240
Andrey Smetanind62caab2015-11-10 15:36:33 +03005241static void vmx_refresh_apicv_exec_ctrl(struct kvm_vcpu *vcpu)
5242{
5243 struct vcpu_vmx *vmx = to_vmx(vcpu);
5244
5245 vmcs_write32(PIN_BASED_VM_EXEC_CONTROL, vmx_pin_based_exec_ctrl(vmx));
Roman Kagan3ce424e2016-05-18 17:48:20 +03005246 if (cpu_has_secondary_exec_ctrls()) {
5247 if (kvm_vcpu_apicv_active(vcpu))
5248 vmcs_set_bits(SECONDARY_VM_EXEC_CONTROL,
5249 SECONDARY_EXEC_APIC_REGISTER_VIRT |
5250 SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY);
5251 else
5252 vmcs_clear_bits(SECONDARY_VM_EXEC_CONTROL,
5253 SECONDARY_EXEC_APIC_REGISTER_VIRT |
5254 SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY);
5255 }
5256
5257 if (cpu_has_vmx_msr_bitmap())
5258 vmx_set_msr_bitmap(vcpu);
Andrey Smetanind62caab2015-11-10 15:36:33 +03005259}
5260
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03005261static u32 vmx_exec_control(struct vcpu_vmx *vmx)
5262{
5263 u32 exec_control = vmcs_config.cpu_based_exec_ctrl;
Paolo Bonzinid16c2932014-02-21 10:36:37 +01005264
5265 if (vmx->vcpu.arch.switch_db_regs & KVM_DEBUGREG_WONT_EXIT)
5266 exec_control &= ~CPU_BASED_MOV_DR_EXITING;
5267
Paolo Bonzini35754c92015-07-29 12:05:37 +02005268 if (!cpu_need_tpr_shadow(&vmx->vcpu)) {
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03005269 exec_control &= ~CPU_BASED_TPR_SHADOW;
5270#ifdef CONFIG_X86_64
5271 exec_control |= CPU_BASED_CR8_STORE_EXITING |
5272 CPU_BASED_CR8_LOAD_EXITING;
5273#endif
5274 }
5275 if (!enable_ept)
5276 exec_control |= CPU_BASED_CR3_STORE_EXITING |
5277 CPU_BASED_CR3_LOAD_EXITING |
5278 CPU_BASED_INVLPG_EXITING;
5279 return exec_control;
5280}
5281
Jim Mattson45ec3682017-08-23 16:32:04 -07005282static bool vmx_rdrand_supported(void)
5283{
5284 return vmcs_config.cpu_based_2nd_exec_ctrl &
5285 SECONDARY_EXEC_RDRAND;
5286}
5287
Jim Mattson75f4fc82017-08-23 16:32:03 -07005288static bool vmx_rdseed_supported(void)
5289{
5290 return vmcs_config.cpu_based_2nd_exec_ctrl &
5291 SECONDARY_EXEC_RDSEED;
5292}
5293
Paolo Bonzini80154d72017-08-24 13:55:35 +02005294static void vmx_compute_secondary_exec_control(struct vcpu_vmx *vmx)
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03005295{
Paolo Bonzini80154d72017-08-24 13:55:35 +02005296 struct kvm_vcpu *vcpu = &vmx->vcpu;
5297
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03005298 u32 exec_control = vmcs_config.cpu_based_2nd_exec_ctrl;
Paolo Bonzini80154d72017-08-24 13:55:35 +02005299 if (!cpu_need_virtualize_apic_accesses(vcpu))
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03005300 exec_control &= ~SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES;
5301 if (vmx->vpid == 0)
5302 exec_control &= ~SECONDARY_EXEC_ENABLE_VPID;
5303 if (!enable_ept) {
5304 exec_control &= ~SECONDARY_EXEC_ENABLE_EPT;
5305 enable_unrestricted_guest = 0;
Mao, Junjiead756a12012-07-02 01:18:48 +00005306 /* Enable INVPCID for non-ept guests may cause performance regression. */
5307 exec_control &= ~SECONDARY_EXEC_ENABLE_INVPCID;
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03005308 }
5309 if (!enable_unrestricted_guest)
5310 exec_control &= ~SECONDARY_EXEC_UNRESTRICTED_GUEST;
5311 if (!ple_gap)
5312 exec_control &= ~SECONDARY_EXEC_PAUSE_LOOP_EXITING;
Paolo Bonzini80154d72017-08-24 13:55:35 +02005313 if (!kvm_vcpu_apicv_active(vcpu))
Yang Zhangc7c9c562013-01-25 10:18:51 +08005314 exec_control &= ~(SECONDARY_EXEC_APIC_REGISTER_VIRT |
5315 SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY);
Yang Zhang8d146952013-01-25 10:18:50 +08005316 exec_control &= ~SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE;
Abel Gordonabc4fc52013-04-18 14:35:25 +03005317 /* SECONDARY_EXEC_SHADOW_VMCS is enabled when L1 executes VMPTRLD
5318 (handle_vmptrld).
5319 We can NOT enable shadow_vmcs here because we don't have yet
5320 a current VMCS12
5321 */
5322 exec_control &= ~SECONDARY_EXEC_SHADOW_VMCS;
Kai Huanga3eaa862015-11-04 13:46:05 +08005323
5324 if (!enable_pml)
5325 exec_control &= ~SECONDARY_EXEC_ENABLE_PML;
Kai Huang843e4332015-01-28 10:54:28 +08005326
Paolo Bonzini3db13482017-08-24 14:48:03 +02005327 if (vmx_xsaves_supported()) {
5328 /* Exposing XSAVES only when XSAVE is exposed */
5329 bool xsaves_enabled =
5330 guest_cpuid_has(vcpu, X86_FEATURE_XSAVE) &&
5331 guest_cpuid_has(vcpu, X86_FEATURE_XSAVES);
5332
5333 if (!xsaves_enabled)
5334 exec_control &= ~SECONDARY_EXEC_XSAVES;
5335
5336 if (nested) {
5337 if (xsaves_enabled)
5338 vmx->nested.nested_vmx_secondary_ctls_high |=
5339 SECONDARY_EXEC_XSAVES;
5340 else
5341 vmx->nested.nested_vmx_secondary_ctls_high &=
5342 ~SECONDARY_EXEC_XSAVES;
5343 }
5344 }
5345
Paolo Bonzini80154d72017-08-24 13:55:35 +02005346 if (vmx_rdtscp_supported()) {
5347 bool rdtscp_enabled = guest_cpuid_has(vcpu, X86_FEATURE_RDTSCP);
5348 if (!rdtscp_enabled)
5349 exec_control &= ~SECONDARY_EXEC_RDTSCP;
5350
5351 if (nested) {
5352 if (rdtscp_enabled)
5353 vmx->nested.nested_vmx_secondary_ctls_high |=
5354 SECONDARY_EXEC_RDTSCP;
5355 else
5356 vmx->nested.nested_vmx_secondary_ctls_high &=
5357 ~SECONDARY_EXEC_RDTSCP;
5358 }
5359 }
5360
5361 if (vmx_invpcid_supported()) {
5362 /* Exposing INVPCID only when PCID is exposed */
5363 bool invpcid_enabled =
5364 guest_cpuid_has(vcpu, X86_FEATURE_INVPCID) &&
5365 guest_cpuid_has(vcpu, X86_FEATURE_PCID);
5366
5367 if (!invpcid_enabled) {
5368 exec_control &= ~SECONDARY_EXEC_ENABLE_INVPCID;
5369 guest_cpuid_clear(vcpu, X86_FEATURE_INVPCID);
5370 }
5371
5372 if (nested) {
5373 if (invpcid_enabled)
5374 vmx->nested.nested_vmx_secondary_ctls_high |=
5375 SECONDARY_EXEC_ENABLE_INVPCID;
5376 else
5377 vmx->nested.nested_vmx_secondary_ctls_high &=
5378 ~SECONDARY_EXEC_ENABLE_INVPCID;
5379 }
5380 }
5381
Jim Mattson45ec3682017-08-23 16:32:04 -07005382 if (vmx_rdrand_supported()) {
5383 bool rdrand_enabled = guest_cpuid_has(vcpu, X86_FEATURE_RDRAND);
5384 if (rdrand_enabled)
5385 exec_control &= ~SECONDARY_EXEC_RDRAND;
5386
5387 if (nested) {
5388 if (rdrand_enabled)
5389 vmx->nested.nested_vmx_secondary_ctls_high |=
5390 SECONDARY_EXEC_RDRAND;
5391 else
5392 vmx->nested.nested_vmx_secondary_ctls_high &=
5393 ~SECONDARY_EXEC_RDRAND;
5394 }
5395 }
5396
Jim Mattson75f4fc82017-08-23 16:32:03 -07005397 if (vmx_rdseed_supported()) {
5398 bool rdseed_enabled = guest_cpuid_has(vcpu, X86_FEATURE_RDSEED);
5399 if (rdseed_enabled)
5400 exec_control &= ~SECONDARY_EXEC_RDSEED;
5401
5402 if (nested) {
5403 if (rdseed_enabled)
5404 vmx->nested.nested_vmx_secondary_ctls_high |=
5405 SECONDARY_EXEC_RDSEED;
5406 else
5407 vmx->nested.nested_vmx_secondary_ctls_high &=
5408 ~SECONDARY_EXEC_RDSEED;
5409 }
5410 }
5411
Paolo Bonzini80154d72017-08-24 13:55:35 +02005412 vmx->secondary_exec_control = exec_control;
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03005413}
5414
Xiao Guangrongce88dec2011-07-12 03:33:44 +08005415static void ept_set_mmio_spte_mask(void)
5416{
5417 /*
5418 * EPT Misconfigurations can be generated if the value of bits 2:0
5419 * of an EPT paging-structure entry is 110b (write/execute).
Xiao Guangrongce88dec2011-07-12 03:33:44 +08005420 */
Peter Feinerdcdca5f2017-06-30 17:26:30 -07005421 kvm_mmu_set_mmio_spte_mask(VMX_EPT_RWX_MASK,
5422 VMX_EPT_MISCONFIG_WX_VALUE);
Xiao Guangrongce88dec2011-07-12 03:33:44 +08005423}
5424
Wanpeng Lif53cd632014-12-02 19:14:58 +08005425#define VMX_XSS_EXIT_BITMAP 0
Nadav Har'Ela3a8ff82011-05-25 23:09:01 +03005426/*
Avi Kivity6aa8b732006-12-10 02:21:36 -08005427 * Sets up the vmcs for emulated real mode.
5428 */
Rusty Russell8b9cf982007-07-30 16:31:43 +10005429static int vmx_vcpu_setup(struct vcpu_vmx *vmx)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005430{
Jan Kiszka2e4ce7f2011-06-01 12:57:30 +02005431#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08005432 unsigned long a;
Jan Kiszka2e4ce7f2011-06-01 12:57:30 +02005433#endif
Avi Kivity6aa8b732006-12-10 02:21:36 -08005434 int i;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005435
Avi Kivity6aa8b732006-12-10 02:21:36 -08005436 /* I/O */
Avi Kivity3e7c73e2009-02-24 21:46:19 +02005437 vmcs_write64(IO_BITMAP_A, __pa(vmx_io_bitmap_a));
5438 vmcs_write64(IO_BITMAP_B, __pa(vmx_io_bitmap_b));
Avi Kivity6aa8b732006-12-10 02:21:36 -08005439
Abel Gordon4607c2d2013-04-18 14:35:55 +03005440 if (enable_shadow_vmcs) {
5441 vmcs_write64(VMREAD_BITMAP, __pa(vmx_vmread_bitmap));
5442 vmcs_write64(VMWRITE_BITMAP, __pa(vmx_vmwrite_bitmap));
5443 }
Sheng Yang25c5f222008-03-28 13:18:56 +08005444 if (cpu_has_vmx_msr_bitmap())
Avi Kivity58972972009-02-24 22:26:47 +02005445 vmcs_write64(MSR_BITMAP, __pa(vmx_msr_bitmap_legacy));
Sheng Yang25c5f222008-03-28 13:18:56 +08005446
Avi Kivity6aa8b732006-12-10 02:21:36 -08005447 vmcs_write64(VMCS_LINK_POINTER, -1ull); /* 22.3.1.5 */
5448
Avi Kivity6aa8b732006-12-10 02:21:36 -08005449 /* Control */
Yang Zhang01e439b2013-04-11 19:25:12 +08005450 vmcs_write32(PIN_BASED_VM_EXEC_CONTROL, vmx_pin_based_exec_ctrl(vmx));
Yunhong Jiang64672c92016-06-13 14:19:59 -07005451 vmx->hv_deadline_tsc = -1;
Yang, Sheng6e5d8652007-09-12 18:03:11 +08005452
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03005453 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, vmx_exec_control(vmx));
Avi Kivity6aa8b732006-12-10 02:21:36 -08005454
Dan Williamsdfa169b2016-06-02 11:17:24 -07005455 if (cpu_has_secondary_exec_ctrls()) {
Paolo Bonzini80154d72017-08-24 13:55:35 +02005456 vmx_compute_secondary_exec_control(vmx);
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03005457 vmcs_write32(SECONDARY_VM_EXEC_CONTROL,
Paolo Bonzini80154d72017-08-24 13:55:35 +02005458 vmx->secondary_exec_control);
Dan Williamsdfa169b2016-06-02 11:17:24 -07005459 }
Sheng Yangf78e0e22007-10-29 09:40:42 +08005460
Andrey Smetanind62caab2015-11-10 15:36:33 +03005461 if (kvm_vcpu_apicv_active(&vmx->vcpu)) {
Yang Zhangc7c9c562013-01-25 10:18:51 +08005462 vmcs_write64(EOI_EXIT_BITMAP0, 0);
5463 vmcs_write64(EOI_EXIT_BITMAP1, 0);
5464 vmcs_write64(EOI_EXIT_BITMAP2, 0);
5465 vmcs_write64(EOI_EXIT_BITMAP3, 0);
5466
5467 vmcs_write16(GUEST_INTR_STATUS, 0);
Yang Zhang01e439b2013-04-11 19:25:12 +08005468
Li RongQing0bcf2612015-12-03 13:29:34 +08005469 vmcs_write16(POSTED_INTR_NV, POSTED_INTR_VECTOR);
Yang Zhang01e439b2013-04-11 19:25:12 +08005470 vmcs_write64(POSTED_INTR_DESC_ADDR, __pa((&vmx->pi_desc)));
Yang Zhangc7c9c562013-01-25 10:18:51 +08005471 }
5472
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08005473 if (ple_gap) {
5474 vmcs_write32(PLE_GAP, ple_gap);
Radim Krčmářa7653ec2014-08-21 18:08:07 +02005475 vmx->ple_window = ple_window;
5476 vmx->ple_window_dirty = true;
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08005477 }
5478
Xiao Guangrongc3707952011-07-12 03:28:04 +08005479 vmcs_write32(PAGE_FAULT_ERROR_CODE_MASK, 0);
5480 vmcs_write32(PAGE_FAULT_ERROR_CODE_MATCH, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005481 vmcs_write32(CR3_TARGET_COUNT, 0); /* 22.2.1 */
5482
Avi Kivity9581d442010-10-19 16:46:55 +02005483 vmcs_write16(HOST_FS_SELECTOR, 0); /* 22.2.4 */
5484 vmcs_write16(HOST_GS_SELECTOR, 0); /* 22.2.4 */
Yang Zhanga547c6d2013-04-11 19:25:10 +08005485 vmx_set_constant_host_state(vmx);
Avi Kivity05b3e0c2006-12-13 00:33:45 -08005486#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -08005487 rdmsrl(MSR_FS_BASE, a);
5488 vmcs_writel(HOST_FS_BASE, a); /* 22.2.4 */
5489 rdmsrl(MSR_GS_BASE, a);
5490 vmcs_writel(HOST_GS_BASE, a); /* 22.2.4 */
5491#else
5492 vmcs_writel(HOST_FS_BASE, 0); /* 22.2.4 */
5493 vmcs_writel(HOST_GS_BASE, 0); /* 22.2.4 */
5494#endif
5495
Bandan Das2a499e42017-08-03 15:54:41 -04005496 if (cpu_has_vmx_vmfunc())
5497 vmcs_write64(VM_FUNCTION_CONTROL, 0);
5498
Eddie Dong2cc51562007-05-21 07:28:09 +03005499 vmcs_write32(VM_EXIT_MSR_STORE_COUNT, 0);
5500 vmcs_write32(VM_EXIT_MSR_LOAD_COUNT, 0);
Avi Kivity61d2ef22010-04-28 16:40:38 +03005501 vmcs_write64(VM_EXIT_MSR_LOAD_ADDR, __pa(vmx->msr_autoload.host));
Eddie Dong2cc51562007-05-21 07:28:09 +03005502 vmcs_write32(VM_ENTRY_MSR_LOAD_COUNT, 0);
Avi Kivity61d2ef22010-04-28 16:40:38 +03005503 vmcs_write64(VM_ENTRY_MSR_LOAD_ADDR, __pa(vmx->msr_autoload.guest));
Avi Kivity6aa8b732006-12-10 02:21:36 -08005504
Radim Krčmář74545702015-04-27 15:11:25 +02005505 if (vmcs_config.vmentry_ctrl & VM_ENTRY_LOAD_IA32_PAT)
5506 vmcs_write64(GUEST_IA32_PAT, vmx->vcpu.arch.pat);
Sheng Yang468d4722008-10-09 16:01:55 +08005507
Paolo Bonzini03916db2014-07-24 14:21:57 +02005508 for (i = 0; i < ARRAY_SIZE(vmx_msr_index); ++i) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08005509 u32 index = vmx_msr_index[i];
5510 u32 data_low, data_high;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04005511 int j = vmx->nmsrs;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005512
5513 if (rdmsr_safe(index, &data_low, &data_high) < 0)
5514 continue;
Avi Kivity432bd6c2007-01-31 23:48:13 -08005515 if (wrmsr_safe(index, data_low, data_high) < 0)
5516 continue;
Avi Kivity26bb0982009-09-07 11:14:12 +03005517 vmx->guest_msrs[j].index = i;
5518 vmx->guest_msrs[j].data = 0;
Avi Kivityd5696722009-12-02 12:28:47 +02005519 vmx->guest_msrs[j].mask = -1ull;
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04005520 ++vmx->nmsrs;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005521 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08005522
Gleb Natapov2961e8762013-11-25 15:37:13 +02005523
5524 vm_exit_controls_init(vmx, vmcs_config.vmexit_ctrl);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005525
5526 /* 22.2.1, 20.8.1 */
Gleb Natapov2961e8762013-11-25 15:37:13 +02005527 vm_entry_controls_init(vmx, vmcs_config.vmentry_ctrl);
Yang, Sheng1c3d14fe2007-07-29 11:07:42 +03005528
Paolo Bonzinibd7e5b02017-02-03 21:18:52 -08005529 vmx->vcpu.arch.cr0_guest_owned_bits = X86_CR0_TS;
5530 vmcs_writel(CR0_GUEST_HOST_MASK, ~X86_CR0_TS);
5531
Nadav Har'Elbf8179a2011-05-25 23:09:31 +03005532 set_cr4_guest_host_mask(vmx);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02005533
Wanpeng Lif53cd632014-12-02 19:14:58 +08005534 if (vmx_xsaves_supported())
5535 vmcs_write64(XSS_EXIT_BITMAP, VMX_XSS_EXIT_BITMAP);
5536
Peter Feiner4e595162016-07-07 14:49:58 -07005537 if (enable_pml) {
5538 ASSERT(vmx->pml_pg);
5539 vmcs_write64(PML_ADDRESS, page_to_phys(vmx->pml_pg));
5540 vmcs_write16(GUEST_PML_INDEX, PML_ENTITY_NUM - 1);
5541 }
5542
Avi Kivitye00c8cf2007-10-21 11:00:39 +02005543 return 0;
5544}
5545
Nadav Amitd28bc9d2015-04-13 14:34:08 +03005546static void vmx_vcpu_reset(struct kvm_vcpu *vcpu, bool init_event)
Avi Kivitye00c8cf2007-10-21 11:00:39 +02005547{
5548 struct vcpu_vmx *vmx = to_vmx(vcpu);
Jan Kiszka58cb6282014-01-24 16:48:44 +01005549 struct msr_data apic_base_msr;
Nadav Amitd28bc9d2015-04-13 14:34:08 +03005550 u64 cr0;
Avi Kivitye00c8cf2007-10-21 11:00:39 +02005551
Avi Kivity7ffd92c2009-06-09 14:10:45 +03005552 vmx->rmode.vm86_active = 0;
Avi Kivitye00c8cf2007-10-21 11:00:39 +02005553
Zhang Xiantaoad312c72007-12-13 23:50:52 +08005554 vmx->vcpu.arch.regs[VCPU_REGS_RDX] = get_rdx_init_val();
Nadav Amitd28bc9d2015-04-13 14:34:08 +03005555 kvm_set_cr8(vcpu, 0);
5556
5557 if (!init_event) {
5558 apic_base_msr.data = APIC_DEFAULT_PHYS_BASE |
5559 MSR_IA32_APICBASE_ENABLE;
5560 if (kvm_vcpu_is_reset_bsp(vcpu))
5561 apic_base_msr.data |= MSR_IA32_APICBASE_BSP;
5562 apic_base_msr.host_initiated = true;
5563 kvm_set_apic_base(vcpu, &apic_base_msr);
5564 }
Avi Kivitye00c8cf2007-10-21 11:00:39 +02005565
Avi Kivity2fb92db2011-04-27 19:42:18 +03005566 vmx_segment_cache_clear(vmx);
5567
Avi Kivity5706be02008-08-20 15:07:31 +03005568 seg_setup(VCPU_SREG_CS);
Jan Kiszka66450a22013-03-13 12:42:34 +01005569 vmcs_write16(GUEST_CS_SELECTOR, 0xf000);
Paolo Bonzinif3531052015-12-03 15:49:56 +01005570 vmcs_writel(GUEST_CS_BASE, 0xffff0000ul);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02005571
5572 seg_setup(VCPU_SREG_DS);
5573 seg_setup(VCPU_SREG_ES);
5574 seg_setup(VCPU_SREG_FS);
5575 seg_setup(VCPU_SREG_GS);
5576 seg_setup(VCPU_SREG_SS);
5577
5578 vmcs_write16(GUEST_TR_SELECTOR, 0);
5579 vmcs_writel(GUEST_TR_BASE, 0);
5580 vmcs_write32(GUEST_TR_LIMIT, 0xffff);
5581 vmcs_write32(GUEST_TR_AR_BYTES, 0x008b);
5582
5583 vmcs_write16(GUEST_LDTR_SELECTOR, 0);
5584 vmcs_writel(GUEST_LDTR_BASE, 0);
5585 vmcs_write32(GUEST_LDTR_LIMIT, 0xffff);
5586 vmcs_write32(GUEST_LDTR_AR_BYTES, 0x00082);
5587
Nadav Amitd28bc9d2015-04-13 14:34:08 +03005588 if (!init_event) {
5589 vmcs_write32(GUEST_SYSENTER_CS, 0);
5590 vmcs_writel(GUEST_SYSENTER_ESP, 0);
5591 vmcs_writel(GUEST_SYSENTER_EIP, 0);
5592 vmcs_write64(GUEST_IA32_DEBUGCTL, 0);
5593 }
Avi Kivitye00c8cf2007-10-21 11:00:39 +02005594
5595 vmcs_writel(GUEST_RFLAGS, 0x02);
Jan Kiszka66450a22013-03-13 12:42:34 +01005596 kvm_rip_write(vcpu, 0xfff0);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02005597
Avi Kivitye00c8cf2007-10-21 11:00:39 +02005598 vmcs_writel(GUEST_GDTR_BASE, 0);
5599 vmcs_write32(GUEST_GDTR_LIMIT, 0xffff);
5600
5601 vmcs_writel(GUEST_IDTR_BASE, 0);
5602 vmcs_write32(GUEST_IDTR_LIMIT, 0xffff);
5603
Anthony Liguori443381a2010-12-06 10:53:38 -06005604 vmcs_write32(GUEST_ACTIVITY_STATE, GUEST_ACTIVITY_ACTIVE);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02005605 vmcs_write32(GUEST_INTERRUPTIBILITY_INFO, 0);
Paolo Bonzinif3531052015-12-03 15:49:56 +01005606 vmcs_writel(GUEST_PENDING_DBG_EXCEPTIONS, 0);
Avi Kivitye00c8cf2007-10-21 11:00:39 +02005607
Avi Kivitye00c8cf2007-10-21 11:00:39 +02005608 setup_msrs(vmx);
5609
Avi Kivity6aa8b732006-12-10 02:21:36 -08005610 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, 0); /* 22.2.1 */
5611
Nadav Amitd28bc9d2015-04-13 14:34:08 +03005612 if (cpu_has_vmx_tpr_shadow() && !init_event) {
Sheng Yangf78e0e22007-10-29 09:40:42 +08005613 vmcs_write64(VIRTUAL_APIC_PAGE_ADDR, 0);
Paolo Bonzini35754c92015-07-29 12:05:37 +02005614 if (cpu_need_tpr_shadow(vcpu))
Sheng Yangf78e0e22007-10-29 09:40:42 +08005615 vmcs_write64(VIRTUAL_APIC_PAGE_ADDR,
Nadav Amitd28bc9d2015-04-13 14:34:08 +03005616 __pa(vcpu->arch.apic->regs));
Sheng Yangf78e0e22007-10-29 09:40:42 +08005617 vmcs_write32(TPR_THRESHOLD, 0);
5618 }
5619
Paolo Bonzinia73896c2014-11-02 07:54:30 +01005620 kvm_make_request(KVM_REQ_APIC_PAGE_RELOAD, vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005621
Andrey Smetanind62caab2015-11-10 15:36:33 +03005622 if (kvm_vcpu_apicv_active(vcpu))
Yang Zhang01e439b2013-04-11 19:25:12 +08005623 memset(&vmx->pi_desc, 0, sizeof(struct pi_desc));
5624
Sheng Yang2384d2b2008-01-17 15:14:33 +08005625 if (vmx->vpid != 0)
5626 vmcs_write16(VIRTUAL_PROCESSOR_ID, vmx->vpid);
5627
Nadav Amitd28bc9d2015-04-13 14:34:08 +03005628 cr0 = X86_CR0_NW | X86_CR0_CD | X86_CR0_ET;
Nadav Amitd28bc9d2015-04-13 14:34:08 +03005629 vmx->vcpu.arch.cr0 = cr0;
Bruce Rogersf2463242016-04-28 14:49:21 -06005630 vmx_set_cr0(vcpu, cr0); /* enter rmode */
Nadav Amitd28bc9d2015-04-13 14:34:08 +03005631 vmx_set_cr4(vcpu, 0);
Paolo Bonzini56908912015-10-19 11:30:19 +02005632 vmx_set_efer(vcpu, 0);
Paolo Bonzinibd7e5b02017-02-03 21:18:52 -08005633
Nadav Amitd28bc9d2015-04-13 14:34:08 +03005634 update_exception_bitmap(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005635
Wanpeng Lidd5f5342015-09-23 18:26:57 +08005636 vpid_sync_context(vmx->vpid);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005637}
5638
Nadav Har'Elb6f12502011-05-25 23:13:06 +03005639/*
5640 * In nested virtualization, check if L1 asked to exit on external interrupts.
5641 * For most existing hypervisors, this will always return true.
5642 */
5643static bool nested_exit_on_intr(struct kvm_vcpu *vcpu)
5644{
5645 return get_vmcs12(vcpu)->pin_based_vm_exec_control &
5646 PIN_BASED_EXT_INTR_MASK;
5647}
5648
Bandan Das77b0f5d2014-04-19 18:17:45 -04005649/*
5650 * In nested virtualization, check if L1 has set
5651 * VM_EXIT_ACK_INTR_ON_EXIT
5652 */
5653static bool nested_exit_intr_ack_set(struct kvm_vcpu *vcpu)
5654{
5655 return get_vmcs12(vcpu)->vm_exit_controls &
5656 VM_EXIT_ACK_INTR_ON_EXIT;
5657}
5658
Jan Kiszkaea8ceb82013-04-14 21:04:26 +02005659static bool nested_exit_on_nmi(struct kvm_vcpu *vcpu)
5660{
5661 return get_vmcs12(vcpu)->pin_based_vm_exec_control &
5662 PIN_BASED_NMI_EXITING;
5663}
5664
Jan Kiszkac9a79532014-03-07 20:03:15 +01005665static void enable_irq_window(struct kvm_vcpu *vcpu)
Jan Kiszka3b86cd92008-09-26 09:30:57 +02005666{
Paolo Bonzini47c01522016-12-19 11:44:07 +01005667 vmcs_set_bits(CPU_BASED_VM_EXEC_CONTROL,
5668 CPU_BASED_VIRTUAL_INTR_PENDING);
Jan Kiszka3b86cd92008-09-26 09:30:57 +02005669}
5670
Jan Kiszkac9a79532014-03-07 20:03:15 +01005671static void enable_nmi_window(struct kvm_vcpu *vcpu)
Jan Kiszka3b86cd92008-09-26 09:30:57 +02005672{
Paolo Bonzini2c828782017-03-27 14:37:28 +02005673 if (vmcs_read32(GUEST_INTERRUPTIBILITY_INFO) & GUEST_INTR_STATE_STI) {
Jan Kiszkac9a79532014-03-07 20:03:15 +01005674 enable_irq_window(vcpu);
5675 return;
5676 }
Jan Kiszka03b28f82013-04-29 16:46:42 +02005677
Paolo Bonzini47c01522016-12-19 11:44:07 +01005678 vmcs_set_bits(CPU_BASED_VM_EXEC_CONTROL,
5679 CPU_BASED_VIRTUAL_NMI_PENDING);
Jan Kiszka3b86cd92008-09-26 09:30:57 +02005680}
5681
Gleb Natapov66fd3f72009-05-11 13:35:50 +03005682static void vmx_inject_irq(struct kvm_vcpu *vcpu)
Eddie Dong85f455f2007-07-06 12:20:49 +03005683{
Avi Kivity9c8cba32007-11-22 11:42:59 +02005684 struct vcpu_vmx *vmx = to_vmx(vcpu);
Gleb Natapov66fd3f72009-05-11 13:35:50 +03005685 uint32_t intr;
5686 int irq = vcpu->arch.interrupt.nr;
Avi Kivity9c8cba32007-11-22 11:42:59 +02005687
Marcelo Tosatti229456f2009-06-17 09:22:14 -03005688 trace_kvm_inj_virq(irq);
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04005689
Avi Kivityfa89a812008-09-01 15:57:51 +03005690 ++vcpu->stat.irq_injections;
Avi Kivity7ffd92c2009-06-09 14:10:45 +03005691 if (vmx->rmode.vm86_active) {
Serge E. Hallyn71f98332011-04-13 09:12:54 -05005692 int inc_eip = 0;
5693 if (vcpu->arch.interrupt.soft)
5694 inc_eip = vcpu->arch.event_exit_inst_len;
5695 if (kvm_inject_realmode_interrupt(vcpu, irq, inc_eip) != EMULATE_DONE)
Mohammed Gamala92601b2010-09-19 14:34:07 +02005696 kvm_make_request(KVM_REQ_TRIPLE_FAULT, vcpu);
Eddie Dong85f455f2007-07-06 12:20:49 +03005697 return;
5698 }
Gleb Natapov66fd3f72009-05-11 13:35:50 +03005699 intr = irq | INTR_INFO_VALID_MASK;
5700 if (vcpu->arch.interrupt.soft) {
5701 intr |= INTR_TYPE_SOFT_INTR;
5702 vmcs_write32(VM_ENTRY_INSTRUCTION_LEN,
5703 vmx->vcpu.arch.event_exit_inst_len);
5704 } else
5705 intr |= INTR_TYPE_EXT_INTR;
5706 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, intr);
Eddie Dong85f455f2007-07-06 12:20:49 +03005707}
5708
Sheng Yangf08864b2008-05-15 18:23:25 +08005709static void vmx_inject_nmi(struct kvm_vcpu *vcpu)
5710{
Jan Kiszka66a5a342008-09-26 09:30:51 +02005711 struct vcpu_vmx *vmx = to_vmx(vcpu);
5712
Paolo Bonzini4c4a6f72017-07-14 13:36:11 +02005713 ++vcpu->stat.nmi_injections;
5714 vmx->loaded_vmcs->nmi_known_unmasked = false;
Jan Kiszka3b86cd92008-09-26 09:30:57 +02005715
Avi Kivity7ffd92c2009-06-09 14:10:45 +03005716 if (vmx->rmode.vm86_active) {
Serge E. Hallyn71f98332011-04-13 09:12:54 -05005717 if (kvm_inject_realmode_interrupt(vcpu, NMI_VECTOR, 0) != EMULATE_DONE)
Mohammed Gamala92601b2010-09-19 14:34:07 +02005718 kvm_make_request(KVM_REQ_TRIPLE_FAULT, vcpu);
Jan Kiszka66a5a342008-09-26 09:30:51 +02005719 return;
5720 }
Wanpeng Lic5a6d5f2016-09-22 17:55:54 +08005721
Sheng Yangf08864b2008-05-15 18:23:25 +08005722 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD,
5723 INTR_TYPE_NMI_INTR | INTR_INFO_VALID_MASK | NMI_VECTOR);
Sheng Yangf08864b2008-05-15 18:23:25 +08005724}
5725
Jan Kiszka3cfc3092009-11-12 01:04:25 +01005726static bool vmx_get_nmi_mask(struct kvm_vcpu *vcpu)
5727{
Paolo Bonzini4c4a6f72017-07-14 13:36:11 +02005728 struct vcpu_vmx *vmx = to_vmx(vcpu);
5729 bool masked;
5730
5731 if (vmx->loaded_vmcs->nmi_known_unmasked)
Avi Kivity9d58b932011-03-07 16:52:07 +02005732 return false;
Paolo Bonzini4c4a6f72017-07-14 13:36:11 +02005733 masked = vmcs_read32(GUEST_INTERRUPTIBILITY_INFO) & GUEST_INTR_STATE_NMI;
5734 vmx->loaded_vmcs->nmi_known_unmasked = !masked;
5735 return masked;
Jan Kiszka3cfc3092009-11-12 01:04:25 +01005736}
5737
5738static void vmx_set_nmi_mask(struct kvm_vcpu *vcpu, bool masked)
5739{
5740 struct vcpu_vmx *vmx = to_vmx(vcpu);
5741
Paolo Bonzini4c4a6f72017-07-14 13:36:11 +02005742 vmx->loaded_vmcs->nmi_known_unmasked = !masked;
Paolo Bonzini2c828782017-03-27 14:37:28 +02005743 if (masked)
5744 vmcs_set_bits(GUEST_INTERRUPTIBILITY_INFO,
5745 GUEST_INTR_STATE_NMI);
5746 else
5747 vmcs_clear_bits(GUEST_INTERRUPTIBILITY_INFO,
5748 GUEST_INTR_STATE_NMI);
Jan Kiszka3cfc3092009-11-12 01:04:25 +01005749}
5750
Jan Kiszka2505dc92013-04-14 12:12:47 +02005751static int vmx_nmi_allowed(struct kvm_vcpu *vcpu)
5752{
Jan Kiszkab6b8a142014-03-07 20:03:12 +01005753 if (to_vmx(vcpu)->nested.nested_run_pending)
5754 return 0;
Jan Kiszkaea8ceb82013-04-14 21:04:26 +02005755
Jan Kiszka2505dc92013-04-14 12:12:47 +02005756 return !(vmcs_read32(GUEST_INTERRUPTIBILITY_INFO) &
5757 (GUEST_INTR_STATE_MOV_SS | GUEST_INTR_STATE_STI
5758 | GUEST_INTR_STATE_NMI));
5759}
5760
Gleb Natapov78646122009-03-23 12:12:11 +02005761static int vmx_interrupt_allowed(struct kvm_vcpu *vcpu)
5762{
Jan Kiszkab6b8a142014-03-07 20:03:12 +01005763 return (!to_vmx(vcpu)->nested.nested_run_pending &&
5764 vmcs_readl(GUEST_RFLAGS) & X86_EFLAGS_IF) &&
Gleb Natapovc4282df2009-04-21 17:45:07 +03005765 !(vmcs_read32(GUEST_INTERRUPTIBILITY_INFO) &
5766 (GUEST_INTR_STATE_STI | GUEST_INTR_STATE_MOV_SS));
Gleb Natapov78646122009-03-23 12:12:11 +02005767}
5768
Izik Eiduscbc94022007-10-25 00:29:55 +02005769static int vmx_set_tss_addr(struct kvm *kvm, unsigned int addr)
5770{
5771 int ret;
Izik Eiduscbc94022007-10-25 00:29:55 +02005772
Paolo Bonzini1d8007b2015-10-12 13:38:32 +02005773 ret = x86_set_memory_region(kvm, TSS_PRIVATE_MEMSLOT, addr,
5774 PAGE_SIZE * 3);
Izik Eiduscbc94022007-10-25 00:29:55 +02005775 if (ret)
5776 return ret;
Zhang Xiantaobfc6d222007-12-14 10:20:16 +08005777 kvm->arch.tss_addr = addr;
Paolo Bonzini1f755a82014-09-16 13:37:40 +02005778 return init_rmode_tss(kvm);
Izik Eiduscbc94022007-10-25 00:29:55 +02005779}
5780
Gleb Natapov0ca1b4f2012-12-20 16:57:47 +02005781static bool rmode_exception(struct kvm_vcpu *vcpu, int vec)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005782{
Jan Kiszka77ab6db2008-07-14 12:28:51 +02005783 switch (vec) {
Jan Kiszka77ab6db2008-07-14 12:28:51 +02005784 case BP_VECTOR:
Jan Kiszkac573cd22010-02-23 17:47:53 +01005785 /*
5786 * Update instruction length as we may reinject the exception
5787 * from user space while in guest debugging mode.
5788 */
5789 to_vmx(vcpu)->vcpu.arch.event_exit_inst_len =
5790 vmcs_read32(VM_EXIT_INSTRUCTION_LEN);
Jan Kiszkad0bfb942008-12-15 13:52:10 +01005791 if (vcpu->guest_debug & KVM_GUESTDBG_USE_SW_BP)
Gleb Natapov0ca1b4f2012-12-20 16:57:47 +02005792 return false;
5793 /* fall through */
5794 case DB_VECTOR:
5795 if (vcpu->guest_debug &
5796 (KVM_GUESTDBG_SINGLESTEP | KVM_GUESTDBG_USE_HW_BP))
5797 return false;
Jan Kiszkad0bfb942008-12-15 13:52:10 +01005798 /* fall through */
5799 case DE_VECTOR:
Jan Kiszka77ab6db2008-07-14 12:28:51 +02005800 case OF_VECTOR:
5801 case BR_VECTOR:
5802 case UD_VECTOR:
5803 case DF_VECTOR:
5804 case SS_VECTOR:
5805 case GP_VECTOR:
5806 case MF_VECTOR:
Gleb Natapov0ca1b4f2012-12-20 16:57:47 +02005807 return true;
5808 break;
Jan Kiszka77ab6db2008-07-14 12:28:51 +02005809 }
Gleb Natapov0ca1b4f2012-12-20 16:57:47 +02005810 return false;
5811}
5812
5813static int handle_rmode_exception(struct kvm_vcpu *vcpu,
5814 int vec, u32 err_code)
5815{
5816 /*
5817 * Instruction with address size override prefix opcode 0x67
5818 * Cause the #SS fault with 0 error code in VM86 mode.
5819 */
5820 if (((vec == GP_VECTOR) || (vec == SS_VECTOR)) && err_code == 0) {
5821 if (emulate_instruction(vcpu, 0) == EMULATE_DONE) {
5822 if (vcpu->arch.halt_request) {
5823 vcpu->arch.halt_request = 0;
Joel Schopp5cb56052015-03-02 13:43:31 -06005824 return kvm_vcpu_halt(vcpu);
Gleb Natapov0ca1b4f2012-12-20 16:57:47 +02005825 }
5826 return 1;
5827 }
5828 return 0;
5829 }
5830
5831 /*
5832 * Forward all other exceptions that are valid in real mode.
5833 * FIXME: Breaks guest debugging in real mode, needs to be fixed with
5834 * the required debugging infrastructure rework.
5835 */
5836 kvm_queue_exception(vcpu, vec);
5837 return 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005838}
5839
Andi Kleena0861c02009-06-08 17:37:09 +08005840/*
5841 * Trigger machine check on the host. We assume all the MSRs are already set up
5842 * by the CPU and that we still run on the same CPU as the MCE occurred on.
5843 * We pass a fake environment to the machine check handler because we want
5844 * the guest to be always treated like user space, no matter what context
5845 * it used internally.
5846 */
5847static void kvm_machine_check(void)
5848{
5849#if defined(CONFIG_X86_MCE) && defined(CONFIG_X86_64)
5850 struct pt_regs regs = {
5851 .cs = 3, /* Fake ring 3 no matter what the guest ran on */
5852 .flags = X86_EFLAGS_IF,
5853 };
5854
5855 do_machine_check(&regs, 0);
5856#endif
5857}
5858
Avi Kivity851ba692009-08-24 11:10:17 +03005859static int handle_machine_check(struct kvm_vcpu *vcpu)
Andi Kleena0861c02009-06-08 17:37:09 +08005860{
5861 /* already handled by vcpu_run */
5862 return 1;
5863}
5864
Avi Kivity851ba692009-08-24 11:10:17 +03005865static int handle_exception(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005866{
Avi Kivity1155f762007-11-22 11:30:47 +02005867 struct vcpu_vmx *vmx = to_vmx(vcpu);
Avi Kivity851ba692009-08-24 11:10:17 +03005868 struct kvm_run *kvm_run = vcpu->run;
Jan Kiszkad0bfb942008-12-15 13:52:10 +01005869 u32 intr_info, ex_no, error_code;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01005870 unsigned long cr2, rip, dr6;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005871 u32 vect_info;
5872 enum emulation_result er;
5873
Avi Kivity1155f762007-11-22 11:30:47 +02005874 vect_info = vmx->idt_vectoring_info;
Avi Kivity88786472011-03-07 17:39:45 +02005875 intr_info = vmx->exit_intr_info;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005876
Andi Kleena0861c02009-06-08 17:37:09 +08005877 if (is_machine_check(intr_info))
Avi Kivity851ba692009-08-24 11:10:17 +03005878 return handle_machine_check(vcpu);
Andi Kleena0861c02009-06-08 17:37:09 +08005879
Jim Mattsonef85b672016-12-12 11:01:37 -08005880 if (is_nmi(intr_info))
Avi Kivity1b6269d2007-10-09 12:12:19 +02005881 return 1; /* already handled by vmx_vcpu_run() */
Anthony Liguori2ab455c2007-04-27 09:29:49 +03005882
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05005883 if (is_invalid_opcode(intr_info)) {
Jan Kiszkaae1f5762015-03-09 20:56:43 +01005884 if (is_guest_mode(vcpu)) {
5885 kvm_queue_exception(vcpu, UD_VECTOR);
5886 return 1;
5887 }
Andre Przywara51d8b662010-12-21 11:12:02 +01005888 er = emulate_instruction(vcpu, EMULTYPE_TRAP_UD);
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05005889 if (er != EMULATE_DONE)
Avi Kivity7ee5d9402007-11-25 15:22:50 +02005890 kvm_queue_exception(vcpu, UD_VECTOR);
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05005891 return 1;
5892 }
5893
Avi Kivity6aa8b732006-12-10 02:21:36 -08005894 error_code = 0;
Ryan Harper2e113842008-02-11 10:26:38 -06005895 if (intr_info & INTR_INFO_DELIVER_CODE_MASK)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005896 error_code = vmcs_read32(VM_EXIT_INTR_ERROR_CODE);
Xiao Guangrongbf4ca232012-10-17 13:48:06 +08005897
5898 /*
5899 * The #PF with PFEC.RSVD = 1 indicates the guest is accessing
5900 * MMIO, it is better to report an internal error.
5901 * See the comments in vmx_handle_exit.
5902 */
5903 if ((vect_info & VECTORING_INFO_VALID_MASK) &&
5904 !(is_page_fault(intr_info) && !(error_code & PFERR_RSVD_MASK))) {
5905 vcpu->run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
5906 vcpu->run->internal.suberror = KVM_INTERNAL_ERROR_SIMUL_EX;
Radim Krčmář80f0e952015-04-02 21:11:05 +02005907 vcpu->run->internal.ndata = 3;
Xiao Guangrongbf4ca232012-10-17 13:48:06 +08005908 vcpu->run->internal.data[0] = vect_info;
5909 vcpu->run->internal.data[1] = intr_info;
Radim Krčmář80f0e952015-04-02 21:11:05 +02005910 vcpu->run->internal.data[2] = error_code;
Xiao Guangrongbf4ca232012-10-17 13:48:06 +08005911 return 0;
5912 }
5913
Avi Kivity6aa8b732006-12-10 02:21:36 -08005914 if (is_page_fault(intr_info)) {
5915 cr2 = vmcs_readl(EXIT_QUALIFICATION);
Wanpeng Li1261bfa2017-07-13 18:30:40 -07005916 /* EPT won't cause page fault directly */
5917 WARN_ON_ONCE(!vcpu->arch.apf.host_apf_reason && enable_ept);
5918 return kvm_handle_page_fault(vcpu, error_code, cr2, NULL, 0,
5919 true);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005920 }
5921
Jan Kiszkad0bfb942008-12-15 13:52:10 +01005922 ex_no = intr_info & INTR_INFO_VECTOR_MASK;
Gleb Natapov0ca1b4f2012-12-20 16:57:47 +02005923
5924 if (vmx->rmode.vm86_active && rmode_exception(vcpu, ex_no))
5925 return handle_rmode_exception(vcpu, ex_no, error_code);
5926
Jan Kiszka42dbaa52008-12-15 13:52:10 +01005927 switch (ex_no) {
Eric Northup54a20552015-11-03 18:03:53 +01005928 case AC_VECTOR:
5929 kvm_queue_exception_e(vcpu, AC_VECTOR, error_code);
5930 return 1;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01005931 case DB_VECTOR:
5932 dr6 = vmcs_readl(EXIT_QUALIFICATION);
5933 if (!(vcpu->guest_debug &
5934 (KVM_GUESTDBG_SINGLESTEP | KVM_GUESTDBG_USE_HW_BP))) {
Jan Kiszka8246bf52014-01-04 18:47:17 +01005935 vcpu->arch.dr6 &= ~15;
Nadav Amit6f43ed02014-07-15 17:37:46 +03005936 vcpu->arch.dr6 |= dr6 | DR6_RTM;
Huw Daviesfd2a4452014-04-16 10:02:51 +01005937 if (!(dr6 & ~DR6_RESERVED)) /* icebp */
5938 skip_emulated_instruction(vcpu);
5939
Jan Kiszka42dbaa52008-12-15 13:52:10 +01005940 kvm_queue_exception(vcpu, DB_VECTOR);
5941 return 1;
5942 }
5943 kvm_run->debug.arch.dr6 = dr6 | DR6_FIXED_1;
5944 kvm_run->debug.arch.dr7 = vmcs_readl(GUEST_DR7);
5945 /* fall through */
5946 case BP_VECTOR:
Jan Kiszkac573cd22010-02-23 17:47:53 +01005947 /*
5948 * Update instruction length as we may reinject #BP from
5949 * user space while in guest debugging mode. Reading it for
5950 * #DB as well causes no harm, it is not used in that case.
5951 */
5952 vmx->vcpu.arch.event_exit_inst_len =
5953 vmcs_read32(VM_EXIT_INSTRUCTION_LEN);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005954 kvm_run->exit_reason = KVM_EXIT_DEBUG;
Avi Kivity0a434bb2011-04-28 15:59:33 +03005955 rip = kvm_rip_read(vcpu);
Jan Kiszkad0bfb942008-12-15 13:52:10 +01005956 kvm_run->debug.arch.pc = vmcs_readl(GUEST_CS_BASE) + rip;
5957 kvm_run->debug.arch.exception = ex_no;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01005958 break;
5959 default:
Jan Kiszkad0bfb942008-12-15 13:52:10 +01005960 kvm_run->exit_reason = KVM_EXIT_EXCEPTION;
5961 kvm_run->ex.exception = ex_no;
5962 kvm_run->ex.error_code = error_code;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01005963 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005964 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08005965 return 0;
5966}
5967
Avi Kivity851ba692009-08-24 11:10:17 +03005968static int handle_external_interrupt(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005969{
Avi Kivity1165f5f2007-04-19 17:27:43 +03005970 ++vcpu->stat.irq_exits;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005971 return 1;
5972}
5973
Avi Kivity851ba692009-08-24 11:10:17 +03005974static int handle_triple_fault(struct kvm_vcpu *vcpu)
Avi Kivity988ad742007-02-12 00:54:36 -08005975{
Avi Kivity851ba692009-08-24 11:10:17 +03005976 vcpu->run->exit_reason = KVM_EXIT_SHUTDOWN;
Wanpeng Libbeac282017-08-09 22:33:12 -07005977 vcpu->mmio_needed = 0;
Avi Kivity988ad742007-02-12 00:54:36 -08005978 return 0;
5979}
Avi Kivity6aa8b732006-12-10 02:21:36 -08005980
Avi Kivity851ba692009-08-24 11:10:17 +03005981static int handle_io(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005982{
He, Qingbfdaab02007-09-12 14:18:28 +08005983 unsigned long exit_qualification;
Kyle Huey6affcbe2016-11-29 12:40:40 -08005984 int size, in, string, ret;
Avi Kivity039576c2007-03-20 12:46:50 +02005985 unsigned port;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005986
He, Qingbfdaab02007-09-12 14:18:28 +08005987 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
Avi Kivity039576c2007-03-20 12:46:50 +02005988 string = (exit_qualification & 16) != 0;
Laurent Viviere70669a2007-08-05 10:36:40 +03005989 in = (exit_qualification & 8) != 0;
Laurent Viviere70669a2007-08-05 10:36:40 +03005990
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02005991 ++vcpu->stat.io_exits;
5992
5993 if (string || in)
Andre Przywara51d8b662010-12-21 11:12:02 +01005994 return emulate_instruction(vcpu, 0) == EMULATE_DONE;
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02005995
5996 port = exit_qualification >> 16;
5997 size = (exit_qualification & 7) + 1;
Gleb Natapovcf8f70b2010-03-18 15:20:23 +02005998
Kyle Huey6affcbe2016-11-29 12:40:40 -08005999 ret = kvm_skip_emulated_instruction(vcpu);
6000
6001 /*
6002 * TODO: we might be squashing a KVM_GUESTDBG_SINGLESTEP-triggered
6003 * KVM_EXIT_DEBUG here.
6004 */
6005 return kvm_fast_pio_out(vcpu, size, port) && ret;
Avi Kivity6aa8b732006-12-10 02:21:36 -08006006}
6007
Ingo Molnar102d8322007-02-19 14:37:47 +02006008static void
6009vmx_patch_hypercall(struct kvm_vcpu *vcpu, unsigned char *hypercall)
6010{
6011 /*
6012 * Patch in the VMCALL instruction:
6013 */
6014 hypercall[0] = 0x0f;
6015 hypercall[1] = 0x01;
6016 hypercall[2] = 0xc1;
Ingo Molnar102d8322007-02-19 14:37:47 +02006017}
6018
Guo Chao0fa06072012-06-28 15:16:19 +08006019/* called to set cr0 as appropriate for a mov-to-cr0 exit. */
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03006020static int handle_set_cr0(struct kvm_vcpu *vcpu, unsigned long val)
6021{
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03006022 if (is_guest_mode(vcpu)) {
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01006023 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
6024 unsigned long orig_val = val;
6025
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03006026 /*
6027 * We get here when L2 changed cr0 in a way that did not change
6028 * any of L1's shadowed bits (see nested_vmx_exit_handled_cr),
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01006029 * but did change L0 shadowed bits. So we first calculate the
6030 * effective cr0 value that L1 would like to write into the
6031 * hardware. It consists of the L2-owned bits from the new
6032 * value combined with the L1-owned bits from L1's guest_cr0.
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03006033 */
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01006034 val = (val & ~vmcs12->cr0_guest_host_mask) |
6035 (vmcs12->guest_cr0 & vmcs12->cr0_guest_host_mask);
6036
David Matlack38991522016-11-29 18:14:08 -08006037 if (!nested_guest_cr0_valid(vcpu, val))
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03006038 return 1;
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01006039
6040 if (kvm_set_cr0(vcpu, val))
6041 return 1;
6042 vmcs_writel(CR0_READ_SHADOW, orig_val);
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03006043 return 0;
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01006044 } else {
6045 if (to_vmx(vcpu)->nested.vmxon &&
David Matlack38991522016-11-29 18:14:08 -08006046 !nested_host_cr0_valid(vcpu, val))
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01006047 return 1;
David Matlack38991522016-11-29 18:14:08 -08006048
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03006049 return kvm_set_cr0(vcpu, val);
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01006050 }
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03006051}
6052
6053static int handle_set_cr4(struct kvm_vcpu *vcpu, unsigned long val)
6054{
6055 if (is_guest_mode(vcpu)) {
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01006056 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
6057 unsigned long orig_val = val;
6058
6059 /* analogously to handle_set_cr0 */
6060 val = (val & ~vmcs12->cr4_guest_host_mask) |
6061 (vmcs12->guest_cr4 & vmcs12->cr4_guest_host_mask);
6062 if (kvm_set_cr4(vcpu, val))
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03006063 return 1;
Jan Kiszka1a0d74e2013-03-07 14:08:07 +01006064 vmcs_writel(CR4_READ_SHADOW, orig_val);
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03006065 return 0;
6066 } else
6067 return kvm_set_cr4(vcpu, val);
6068}
6069
Avi Kivity851ba692009-08-24 11:10:17 +03006070static int handle_cr(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08006071{
Marcelo Tosatti229456f2009-06-17 09:22:14 -03006072 unsigned long exit_qualification, val;
Avi Kivity6aa8b732006-12-10 02:21:36 -08006073 int cr;
6074 int reg;
Avi Kivity49a9b072010-06-10 17:02:14 +03006075 int err;
Kyle Huey6affcbe2016-11-29 12:40:40 -08006076 int ret;
Avi Kivity6aa8b732006-12-10 02:21:36 -08006077
He, Qingbfdaab02007-09-12 14:18:28 +08006078 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
Avi Kivity6aa8b732006-12-10 02:21:36 -08006079 cr = exit_qualification & 15;
6080 reg = (exit_qualification >> 8) & 15;
6081 switch ((exit_qualification >> 4) & 3) {
6082 case 0: /* mov to cr */
Nadav Amit1e32c072014-06-18 17:19:25 +03006083 val = kvm_register_readl(vcpu, reg);
Marcelo Tosatti229456f2009-06-17 09:22:14 -03006084 trace_kvm_cr_write(cr, val);
Avi Kivity6aa8b732006-12-10 02:21:36 -08006085 switch (cr) {
6086 case 0:
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03006087 err = handle_set_cr0(vcpu, val);
Kyle Huey6affcbe2016-11-29 12:40:40 -08006088 return kvm_complete_insn_gp(vcpu, err);
Avi Kivity6aa8b732006-12-10 02:21:36 -08006089 case 3:
Avi Kivity23902182010-06-10 17:02:16 +03006090 err = kvm_set_cr3(vcpu, val);
Kyle Huey6affcbe2016-11-29 12:40:40 -08006091 return kvm_complete_insn_gp(vcpu, err);
Avi Kivity6aa8b732006-12-10 02:21:36 -08006092 case 4:
Nadav Har'Eleeadf9e2011-05-25 23:14:38 +03006093 err = handle_set_cr4(vcpu, val);
Kyle Huey6affcbe2016-11-29 12:40:40 -08006094 return kvm_complete_insn_gp(vcpu, err);
Gleb Natapov0a5fff192009-04-21 17:45:06 +03006095 case 8: {
6096 u8 cr8_prev = kvm_get_cr8(vcpu);
Nadav Amit1e32c072014-06-18 17:19:25 +03006097 u8 cr8 = (u8)val;
Andre Przywaraeea1cff2010-12-21 11:12:00 +01006098 err = kvm_set_cr8(vcpu, cr8);
Kyle Huey6affcbe2016-11-29 12:40:40 -08006099 ret = kvm_complete_insn_gp(vcpu, err);
Paolo Bonzini35754c92015-07-29 12:05:37 +02006100 if (lapic_in_kernel(vcpu))
Kyle Huey6affcbe2016-11-29 12:40:40 -08006101 return ret;
Gleb Natapov0a5fff192009-04-21 17:45:06 +03006102 if (cr8_prev <= cr8)
Kyle Huey6affcbe2016-11-29 12:40:40 -08006103 return ret;
6104 /*
6105 * TODO: we might be squashing a
6106 * KVM_GUESTDBG_SINGLESTEP-triggered
6107 * KVM_EXIT_DEBUG here.
6108 */
Avi Kivity851ba692009-08-24 11:10:17 +03006109 vcpu->run->exit_reason = KVM_EXIT_SET_TPR;
Gleb Natapov0a5fff192009-04-21 17:45:06 +03006110 return 0;
6111 }
Peter Senna Tschudin4b8073e2012-09-18 18:36:14 +02006112 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08006113 break;
Anthony Liguori25c4c272007-04-27 09:29:21 +03006114 case 2: /* clts */
Paolo Bonzinibd7e5b02017-02-03 21:18:52 -08006115 WARN_ONCE(1, "Guest should always own CR0.TS");
6116 vmx_set_cr0(vcpu, kvm_read_cr0_bits(vcpu, ~X86_CR0_TS));
Avi Kivity4d4ec082009-12-29 18:07:30 +02006117 trace_kvm_cr_write(0, kvm_read_cr0(vcpu));
Kyle Huey6affcbe2016-11-29 12:40:40 -08006118 return kvm_skip_emulated_instruction(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08006119 case 1: /*mov from cr*/
6120 switch (cr) {
6121 case 3:
Avi Kivity9f8fe502010-12-05 17:30:00 +02006122 val = kvm_read_cr3(vcpu);
6123 kvm_register_write(vcpu, reg, val);
6124 trace_kvm_cr_read(cr, val);
Kyle Huey6affcbe2016-11-29 12:40:40 -08006125 return kvm_skip_emulated_instruction(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08006126 case 8:
Marcelo Tosatti229456f2009-06-17 09:22:14 -03006127 val = kvm_get_cr8(vcpu);
6128 kvm_register_write(vcpu, reg, val);
6129 trace_kvm_cr_read(cr, val);
Kyle Huey6affcbe2016-11-29 12:40:40 -08006130 return kvm_skip_emulated_instruction(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08006131 }
6132 break;
6133 case 3: /* lmsw */
Avi Kivitya1f83a72009-12-29 17:33:58 +02006134 val = (exit_qualification >> LMSW_SOURCE_DATA_SHIFT) & 0x0f;
Avi Kivity4d4ec082009-12-29 18:07:30 +02006135 trace_kvm_cr_write(0, (kvm_read_cr0(vcpu) & ~0xful) | val);
Avi Kivitya1f83a72009-12-29 17:33:58 +02006136 kvm_lmsw(vcpu, val);
Avi Kivity6aa8b732006-12-10 02:21:36 -08006137
Kyle Huey6affcbe2016-11-29 12:40:40 -08006138 return kvm_skip_emulated_instruction(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08006139 default:
6140 break;
6141 }
Avi Kivity851ba692009-08-24 11:10:17 +03006142 vcpu->run->exit_reason = 0;
Christoffer Dalla737f252012-06-03 21:17:48 +03006143 vcpu_unimpl(vcpu, "unhandled control register: op %d cr %d\n",
Avi Kivity6aa8b732006-12-10 02:21:36 -08006144 (int)(exit_qualification >> 4) & 3, cr);
6145 return 0;
6146}
6147
Avi Kivity851ba692009-08-24 11:10:17 +03006148static int handle_dr(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08006149{
He, Qingbfdaab02007-09-12 14:18:28 +08006150 unsigned long exit_qualification;
Nadav Amit16f8a6f2014-10-03 01:10:05 +03006151 int dr, dr7, reg;
6152
6153 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
6154 dr = exit_qualification & DEBUG_REG_ACCESS_NUM;
6155
6156 /* First, if DR does not exist, trigger UD */
6157 if (!kvm_require_dr(vcpu, dr))
6158 return 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08006159
Jan Kiszkaf2483412010-01-20 18:20:20 +01006160 /* Do not handle if the CPL > 0, will trigger GP on re-entry */
Avi Kivity0a79b002009-09-01 12:03:25 +03006161 if (!kvm_require_cpl(vcpu, 0))
6162 return 1;
Nadav Amit16f8a6f2014-10-03 01:10:05 +03006163 dr7 = vmcs_readl(GUEST_DR7);
6164 if (dr7 & DR7_GD) {
Jan Kiszka42dbaa52008-12-15 13:52:10 +01006165 /*
6166 * As the vm-exit takes precedence over the debug trap, we
6167 * need to emulate the latter, either for the host or the
6168 * guest debugging itself.
6169 */
6170 if (vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP) {
Avi Kivity851ba692009-08-24 11:10:17 +03006171 vcpu->run->debug.arch.dr6 = vcpu->arch.dr6;
Nadav Amit16f8a6f2014-10-03 01:10:05 +03006172 vcpu->run->debug.arch.dr7 = dr7;
Nadav Amit82b32772014-11-02 11:54:45 +02006173 vcpu->run->debug.arch.pc = kvm_get_linear_rip(vcpu);
Avi Kivity851ba692009-08-24 11:10:17 +03006174 vcpu->run->debug.arch.exception = DB_VECTOR;
6175 vcpu->run->exit_reason = KVM_EXIT_DEBUG;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01006176 return 0;
6177 } else {
Nadav Amit7305eb52014-11-02 11:54:44 +02006178 vcpu->arch.dr6 &= ~15;
Nadav Amit6f43ed02014-07-15 17:37:46 +03006179 vcpu->arch.dr6 |= DR6_BD | DR6_RTM;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01006180 kvm_queue_exception(vcpu, DB_VECTOR);
6181 return 1;
6182 }
6183 }
6184
Paolo Bonzini81908bf2014-02-21 10:32:27 +01006185 if (vcpu->guest_debug == 0) {
Paolo Bonzini8f223722016-02-26 12:09:49 +01006186 vmcs_clear_bits(CPU_BASED_VM_EXEC_CONTROL,
6187 CPU_BASED_MOV_DR_EXITING);
Paolo Bonzini81908bf2014-02-21 10:32:27 +01006188
6189 /*
6190 * No more DR vmexits; force a reload of the debug registers
6191 * and reenter on this instruction. The next vmexit will
6192 * retrieve the full state of the debug registers.
6193 */
6194 vcpu->arch.switch_db_regs |= KVM_DEBUGREG_WONT_EXIT;
6195 return 1;
6196 }
6197
Jan Kiszka42dbaa52008-12-15 13:52:10 +01006198 reg = DEBUG_REG_ACCESS_REG(exit_qualification);
6199 if (exit_qualification & TYPE_MOV_FROM_DR) {
Gleb Natapov020df072010-04-13 10:05:23 +03006200 unsigned long val;
Jan Kiszka4c4d5632013-12-18 19:16:24 +01006201
6202 if (kvm_get_dr(vcpu, dr, &val))
6203 return 1;
6204 kvm_register_write(vcpu, reg, val);
Gleb Natapov020df072010-04-13 10:05:23 +03006205 } else
Nadav Amit57773922014-06-18 17:19:23 +03006206 if (kvm_set_dr(vcpu, dr, kvm_register_readl(vcpu, reg)))
Jan Kiszka4c4d5632013-12-18 19:16:24 +01006207 return 1;
6208
Kyle Huey6affcbe2016-11-29 12:40:40 -08006209 return kvm_skip_emulated_instruction(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08006210}
6211
Jan Kiszka73aaf249e2014-01-04 18:47:16 +01006212static u64 vmx_get_dr6(struct kvm_vcpu *vcpu)
6213{
6214 return vcpu->arch.dr6;
6215}
6216
6217static void vmx_set_dr6(struct kvm_vcpu *vcpu, unsigned long val)
6218{
6219}
6220
Paolo Bonzini81908bf2014-02-21 10:32:27 +01006221static void vmx_sync_dirty_debug_regs(struct kvm_vcpu *vcpu)
6222{
Paolo Bonzini81908bf2014-02-21 10:32:27 +01006223 get_debugreg(vcpu->arch.db[0], 0);
6224 get_debugreg(vcpu->arch.db[1], 1);
6225 get_debugreg(vcpu->arch.db[2], 2);
6226 get_debugreg(vcpu->arch.db[3], 3);
6227 get_debugreg(vcpu->arch.dr6, 6);
6228 vcpu->arch.dr7 = vmcs_readl(GUEST_DR7);
6229
6230 vcpu->arch.switch_db_regs &= ~KVM_DEBUGREG_WONT_EXIT;
Paolo Bonzini8f223722016-02-26 12:09:49 +01006231 vmcs_set_bits(CPU_BASED_VM_EXEC_CONTROL, CPU_BASED_MOV_DR_EXITING);
Paolo Bonzini81908bf2014-02-21 10:32:27 +01006232}
6233
Gleb Natapov020df072010-04-13 10:05:23 +03006234static void vmx_set_dr7(struct kvm_vcpu *vcpu, unsigned long val)
6235{
6236 vmcs_writel(GUEST_DR7, val);
6237}
6238
Avi Kivity851ba692009-08-24 11:10:17 +03006239static int handle_cpuid(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08006240{
Kyle Huey6a908b62016-11-29 12:40:37 -08006241 return kvm_emulate_cpuid(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08006242}
6243
Avi Kivity851ba692009-08-24 11:10:17 +03006244static int handle_rdmsr(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08006245{
Zhang Xiantaoad312c72007-12-13 23:50:52 +08006246 u32 ecx = vcpu->arch.regs[VCPU_REGS_RCX];
Paolo Bonzini609e36d2015-04-08 15:30:38 +02006247 struct msr_data msr_info;
Avi Kivity6aa8b732006-12-10 02:21:36 -08006248
Paolo Bonzini609e36d2015-04-08 15:30:38 +02006249 msr_info.index = ecx;
6250 msr_info.host_initiated = false;
6251 if (vmx_get_msr(vcpu, &msr_info)) {
Avi Kivity59200272010-01-25 19:47:02 +02006252 trace_kvm_msr_read_ex(ecx);
Avi Kivityc1a5d4f2007-11-25 14:12:03 +02006253 kvm_inject_gp(vcpu, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -08006254 return 1;
6255 }
6256
Paolo Bonzini609e36d2015-04-08 15:30:38 +02006257 trace_kvm_msr_read(ecx, msr_info.data);
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04006258
Avi Kivity6aa8b732006-12-10 02:21:36 -08006259 /* FIXME: handling of bits 32:63 of rax, rdx */
Paolo Bonzini609e36d2015-04-08 15:30:38 +02006260 vcpu->arch.regs[VCPU_REGS_RAX] = msr_info.data & -1u;
6261 vcpu->arch.regs[VCPU_REGS_RDX] = (msr_info.data >> 32) & -1u;
Kyle Huey6affcbe2016-11-29 12:40:40 -08006262 return kvm_skip_emulated_instruction(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08006263}
6264
Avi Kivity851ba692009-08-24 11:10:17 +03006265static int handle_wrmsr(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08006266{
Will Auld8fe8ab42012-11-29 12:42:12 -08006267 struct msr_data msr;
Zhang Xiantaoad312c72007-12-13 23:50:52 +08006268 u32 ecx = vcpu->arch.regs[VCPU_REGS_RCX];
6269 u64 data = (vcpu->arch.regs[VCPU_REGS_RAX] & -1u)
6270 | ((u64)(vcpu->arch.regs[VCPU_REGS_RDX] & -1u) << 32);
Avi Kivity6aa8b732006-12-10 02:21:36 -08006271
Will Auld8fe8ab42012-11-29 12:42:12 -08006272 msr.data = data;
6273 msr.index = ecx;
6274 msr.host_initiated = false;
Nadav Amit854e8bb2014-09-16 03:24:05 +03006275 if (kvm_set_msr(vcpu, &msr) != 0) {
Avi Kivity59200272010-01-25 19:47:02 +02006276 trace_kvm_msr_write_ex(ecx, data);
Avi Kivityc1a5d4f2007-11-25 14:12:03 +02006277 kvm_inject_gp(vcpu, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -08006278 return 1;
6279 }
6280
Avi Kivity59200272010-01-25 19:47:02 +02006281 trace_kvm_msr_write(ecx, data);
Kyle Huey6affcbe2016-11-29 12:40:40 -08006282 return kvm_skip_emulated_instruction(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08006283}
6284
Avi Kivity851ba692009-08-24 11:10:17 +03006285static int handle_tpr_below_threshold(struct kvm_vcpu *vcpu)
Yang, Sheng6e5d8652007-09-12 18:03:11 +08006286{
Paolo Bonzinieb90f342016-12-18 14:02:21 +01006287 kvm_apic_update_ppr(vcpu);
Yang, Sheng6e5d8652007-09-12 18:03:11 +08006288 return 1;
6289}
6290
Avi Kivity851ba692009-08-24 11:10:17 +03006291static int handle_interrupt_window(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08006292{
Paolo Bonzini47c01522016-12-19 11:44:07 +01006293 vmcs_clear_bits(CPU_BASED_VM_EXEC_CONTROL,
6294 CPU_BASED_VIRTUAL_INTR_PENDING);
Feng (Eric) Liu2714d1d2008-04-10 15:31:10 -04006295
Avi Kivity3842d132010-07-27 12:30:24 +03006296 kvm_make_request(KVM_REQ_EVENT, vcpu);
6297
Jan Kiszkaa26bf122008-09-26 09:30:45 +02006298 ++vcpu->stat.irq_window_exits;
Avi Kivity6aa8b732006-12-10 02:21:36 -08006299 return 1;
6300}
6301
Avi Kivity851ba692009-08-24 11:10:17 +03006302static int handle_halt(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08006303{
Avi Kivityd3bef152007-06-05 15:53:05 +03006304 return kvm_emulate_halt(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08006305}
6306
Avi Kivity851ba692009-08-24 11:10:17 +03006307static int handle_vmcall(struct kvm_vcpu *vcpu)
Ingo Molnarc21415e2007-02-19 14:37:47 +02006308{
Andrey Smetanin0d9c0552016-02-11 16:44:59 +03006309 return kvm_emulate_hypercall(vcpu);
Ingo Molnarc21415e2007-02-19 14:37:47 +02006310}
6311
Gleb Natapovec25d5e2010-11-01 15:35:01 +02006312static int handle_invd(struct kvm_vcpu *vcpu)
6313{
Andre Przywara51d8b662010-12-21 11:12:02 +01006314 return emulate_instruction(vcpu, 0) == EMULATE_DONE;
Gleb Natapovec25d5e2010-11-01 15:35:01 +02006315}
6316
Avi Kivity851ba692009-08-24 11:10:17 +03006317static int handle_invlpg(struct kvm_vcpu *vcpu)
Marcelo Tosattia7052892008-09-23 13:18:35 -03006318{
Sheng Yangf9c617f2009-03-25 10:08:52 +08006319 unsigned long exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
Marcelo Tosattia7052892008-09-23 13:18:35 -03006320
6321 kvm_mmu_invlpg(vcpu, exit_qualification);
Kyle Huey6affcbe2016-11-29 12:40:40 -08006322 return kvm_skip_emulated_instruction(vcpu);
Marcelo Tosattia7052892008-09-23 13:18:35 -03006323}
6324
Avi Kivityfee84b02011-11-10 14:57:25 +02006325static int handle_rdpmc(struct kvm_vcpu *vcpu)
6326{
6327 int err;
6328
6329 err = kvm_rdpmc(vcpu);
Kyle Huey6affcbe2016-11-29 12:40:40 -08006330 return kvm_complete_insn_gp(vcpu, err);
Avi Kivityfee84b02011-11-10 14:57:25 +02006331}
6332
Avi Kivity851ba692009-08-24 11:10:17 +03006333static int handle_wbinvd(struct kvm_vcpu *vcpu)
Eddie Donge5edaa02007-11-11 12:28:35 +02006334{
Kyle Huey6affcbe2016-11-29 12:40:40 -08006335 return kvm_emulate_wbinvd(vcpu);
Eddie Donge5edaa02007-11-11 12:28:35 +02006336}
6337
Dexuan Cui2acf9232010-06-10 11:27:12 +08006338static int handle_xsetbv(struct kvm_vcpu *vcpu)
6339{
6340 u64 new_bv = kvm_read_edx_eax(vcpu);
6341 u32 index = kvm_register_read(vcpu, VCPU_REGS_RCX);
6342
6343 if (kvm_set_xcr(vcpu, index, new_bv) == 0)
Kyle Huey6affcbe2016-11-29 12:40:40 -08006344 return kvm_skip_emulated_instruction(vcpu);
Dexuan Cui2acf9232010-06-10 11:27:12 +08006345 return 1;
6346}
6347
Wanpeng Lif53cd632014-12-02 19:14:58 +08006348static int handle_xsaves(struct kvm_vcpu *vcpu)
6349{
Kyle Huey6affcbe2016-11-29 12:40:40 -08006350 kvm_skip_emulated_instruction(vcpu);
Wanpeng Lif53cd632014-12-02 19:14:58 +08006351 WARN(1, "this should never happen\n");
6352 return 1;
6353}
6354
6355static int handle_xrstors(struct kvm_vcpu *vcpu)
6356{
Kyle Huey6affcbe2016-11-29 12:40:40 -08006357 kvm_skip_emulated_instruction(vcpu);
Wanpeng Lif53cd632014-12-02 19:14:58 +08006358 WARN(1, "this should never happen\n");
6359 return 1;
6360}
6361
Avi Kivity851ba692009-08-24 11:10:17 +03006362static int handle_apic_access(struct kvm_vcpu *vcpu)
Sheng Yangf78e0e22007-10-29 09:40:42 +08006363{
Kevin Tian58fbbf22011-08-30 13:56:17 +03006364 if (likely(fasteoi)) {
6365 unsigned long exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
6366 int access_type, offset;
6367
6368 access_type = exit_qualification & APIC_ACCESS_TYPE;
6369 offset = exit_qualification & APIC_ACCESS_OFFSET;
6370 /*
6371 * Sane guest uses MOV to write EOI, with written value
6372 * not cared. So make a short-circuit here by avoiding
6373 * heavy instruction emulation.
6374 */
6375 if ((access_type == TYPE_LINEAR_APIC_INST_WRITE) &&
6376 (offset == APIC_EOI)) {
6377 kvm_lapic_set_eoi(vcpu);
Kyle Huey6affcbe2016-11-29 12:40:40 -08006378 return kvm_skip_emulated_instruction(vcpu);
Kevin Tian58fbbf22011-08-30 13:56:17 +03006379 }
6380 }
Andre Przywara51d8b662010-12-21 11:12:02 +01006381 return emulate_instruction(vcpu, 0) == EMULATE_DONE;
Sheng Yangf78e0e22007-10-29 09:40:42 +08006382}
6383
Yang Zhangc7c9c562013-01-25 10:18:51 +08006384static int handle_apic_eoi_induced(struct kvm_vcpu *vcpu)
6385{
6386 unsigned long exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
6387 int vector = exit_qualification & 0xff;
6388
6389 /* EOI-induced VM exit is trap-like and thus no need to adjust IP */
6390 kvm_apic_set_eoi_accelerated(vcpu, vector);
6391 return 1;
6392}
6393
Yang Zhang83d4c282013-01-25 10:18:49 +08006394static int handle_apic_write(struct kvm_vcpu *vcpu)
6395{
6396 unsigned long exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
6397 u32 offset = exit_qualification & 0xfff;
6398
6399 /* APIC-write VM exit is trap-like and thus no need to adjust IP */
6400 kvm_apic_write_nodecode(vcpu, offset);
6401 return 1;
6402}
6403
Avi Kivity851ba692009-08-24 11:10:17 +03006404static int handle_task_switch(struct kvm_vcpu *vcpu)
Izik Eidus37817f22008-03-24 23:14:53 +02006405{
Jan Kiszka60637aa2008-09-26 09:30:47 +02006406 struct vcpu_vmx *vmx = to_vmx(vcpu);
Izik Eidus37817f22008-03-24 23:14:53 +02006407 unsigned long exit_qualification;
Jan Kiszkae269fb22010-04-14 15:51:09 +02006408 bool has_error_code = false;
6409 u32 error_code = 0;
Izik Eidus37817f22008-03-24 23:14:53 +02006410 u16 tss_selector;
Kevin Wolf7f3d35f2012-02-08 14:34:38 +01006411 int reason, type, idt_v, idt_index;
Gleb Natapov64a7ec02009-03-30 16:03:29 +03006412
6413 idt_v = (vmx->idt_vectoring_info & VECTORING_INFO_VALID_MASK);
Kevin Wolf7f3d35f2012-02-08 14:34:38 +01006414 idt_index = (vmx->idt_vectoring_info & VECTORING_INFO_VECTOR_MASK);
Gleb Natapov64a7ec02009-03-30 16:03:29 +03006415 type = (vmx->idt_vectoring_info & VECTORING_INFO_TYPE_MASK);
Izik Eidus37817f22008-03-24 23:14:53 +02006416
6417 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
6418
6419 reason = (u32)exit_qualification >> 30;
Gleb Natapov64a7ec02009-03-30 16:03:29 +03006420 if (reason == TASK_SWITCH_GATE && idt_v) {
6421 switch (type) {
6422 case INTR_TYPE_NMI_INTR:
6423 vcpu->arch.nmi_injected = false;
Avi Kivity654f06f2011-03-23 15:02:47 +02006424 vmx_set_nmi_mask(vcpu, true);
Gleb Natapov64a7ec02009-03-30 16:03:29 +03006425 break;
6426 case INTR_TYPE_EXT_INTR:
Gleb Natapov66fd3f72009-05-11 13:35:50 +03006427 case INTR_TYPE_SOFT_INTR:
Gleb Natapov64a7ec02009-03-30 16:03:29 +03006428 kvm_clear_interrupt_queue(vcpu);
6429 break;
6430 case INTR_TYPE_HARD_EXCEPTION:
Jan Kiszkae269fb22010-04-14 15:51:09 +02006431 if (vmx->idt_vectoring_info &
6432 VECTORING_INFO_DELIVER_CODE_MASK) {
6433 has_error_code = true;
6434 error_code =
6435 vmcs_read32(IDT_VECTORING_ERROR_CODE);
6436 }
6437 /* fall through */
Gleb Natapov64a7ec02009-03-30 16:03:29 +03006438 case INTR_TYPE_SOFT_EXCEPTION:
6439 kvm_clear_exception_queue(vcpu);
6440 break;
6441 default:
6442 break;
6443 }
Jan Kiszka60637aa2008-09-26 09:30:47 +02006444 }
Izik Eidus37817f22008-03-24 23:14:53 +02006445 tss_selector = exit_qualification;
6446
Gleb Natapov64a7ec02009-03-30 16:03:29 +03006447 if (!idt_v || (type != INTR_TYPE_HARD_EXCEPTION &&
6448 type != INTR_TYPE_EXT_INTR &&
6449 type != INTR_TYPE_NMI_INTR))
6450 skip_emulated_instruction(vcpu);
6451
Kevin Wolf7f3d35f2012-02-08 14:34:38 +01006452 if (kvm_task_switch(vcpu, tss_selector,
6453 type == INTR_TYPE_SOFT_INTR ? idt_index : -1, reason,
6454 has_error_code, error_code) == EMULATE_FAIL) {
Gleb Natapovacb54512010-04-15 21:03:50 +03006455 vcpu->run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
6456 vcpu->run->internal.suberror = KVM_INTERNAL_ERROR_EMULATION;
6457 vcpu->run->internal.ndata = 0;
Jan Kiszka42dbaa52008-12-15 13:52:10 +01006458 return 0;
Gleb Natapovacb54512010-04-15 21:03:50 +03006459 }
Jan Kiszka42dbaa52008-12-15 13:52:10 +01006460
Jan Kiszka42dbaa52008-12-15 13:52:10 +01006461 /*
6462 * TODO: What about debug traps on tss switch?
6463 * Are we supposed to inject them and update dr6?
6464 */
6465
6466 return 1;
Izik Eidus37817f22008-03-24 23:14:53 +02006467}
6468
Avi Kivity851ba692009-08-24 11:10:17 +03006469static int handle_ept_violation(struct kvm_vcpu *vcpu)
Sheng Yang14394422008-04-28 12:24:45 +08006470{
Sheng Yangf9c617f2009-03-25 10:08:52 +08006471 unsigned long exit_qualification;
Sheng Yang14394422008-04-28 12:24:45 +08006472 gpa_t gpa;
Paolo Bonzinieebed242016-11-28 14:39:58 +01006473 u64 error_code;
Sheng Yang14394422008-04-28 12:24:45 +08006474
Sheng Yangf9c617f2009-03-25 10:08:52 +08006475 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
Sheng Yang14394422008-04-28 12:24:45 +08006476
Gleb Natapov0be9c7a2013-09-15 11:07:23 +03006477 /*
6478 * EPT violation happened while executing iret from NMI,
6479 * "blocked by NMI" bit has to be set before next VM entry.
6480 * There are errata that may cause this bit to not be set:
6481 * AAK134, BY25.
6482 */
Gleb Natapovbcd1c292013-09-25 10:58:22 +03006483 if (!(to_vmx(vcpu)->idt_vectoring_info & VECTORING_INFO_VALID_MASK) &&
Gleb Natapovbcd1c292013-09-25 10:58:22 +03006484 (exit_qualification & INTR_INFO_UNBLOCK_NMI))
Gleb Natapov0be9c7a2013-09-15 11:07:23 +03006485 vmcs_set_bits(GUEST_INTERRUPTIBILITY_INFO, GUEST_INTR_STATE_NMI);
6486
Sheng Yang14394422008-04-28 12:24:45 +08006487 gpa = vmcs_read64(GUEST_PHYSICAL_ADDRESS);
Marcelo Tosatti229456f2009-06-17 09:22:14 -03006488 trace_kvm_page_fault(gpa, exit_qualification);
Xiao Guangrong4f5982a2012-06-20 15:58:04 +08006489
Junaid Shahid27959a42016-12-06 16:46:10 -08006490 /* Is it a read fault? */
Junaid Shahidab22a472016-12-21 20:29:28 -08006491 error_code = (exit_qualification & EPT_VIOLATION_ACC_READ)
Junaid Shahid27959a42016-12-06 16:46:10 -08006492 ? PFERR_USER_MASK : 0;
6493 /* Is it a write fault? */
Junaid Shahidab22a472016-12-21 20:29:28 -08006494 error_code |= (exit_qualification & EPT_VIOLATION_ACC_WRITE)
Junaid Shahid27959a42016-12-06 16:46:10 -08006495 ? PFERR_WRITE_MASK : 0;
6496 /* Is it a fetch fault? */
Junaid Shahidab22a472016-12-21 20:29:28 -08006497 error_code |= (exit_qualification & EPT_VIOLATION_ACC_INSTR)
Junaid Shahid27959a42016-12-06 16:46:10 -08006498 ? PFERR_FETCH_MASK : 0;
6499 /* ept page table entry is present? */
6500 error_code |= (exit_qualification &
6501 (EPT_VIOLATION_READABLE | EPT_VIOLATION_WRITABLE |
6502 EPT_VIOLATION_EXECUTABLE))
6503 ? PFERR_PRESENT_MASK : 0;
Xiao Guangrong4f5982a2012-06-20 15:58:04 +08006504
Paolo Bonzinieebed242016-11-28 14:39:58 +01006505 error_code |= (exit_qualification & 0x100) != 0 ?
6506 PFERR_GUEST_FINAL_MASK : PFERR_GUEST_PAGE_MASK;
6507
Yang Zhang25d92082013-08-06 12:00:32 +03006508 vcpu->arch.exit_qualification = exit_qualification;
Xiao Guangrong4f5982a2012-06-20 15:58:04 +08006509 return kvm_mmu_page_fault(vcpu, gpa, error_code, NULL, 0);
Sheng Yang14394422008-04-28 12:24:45 +08006510}
6511
Avi Kivity851ba692009-08-24 11:10:17 +03006512static int handle_ept_misconfig(struct kvm_vcpu *vcpu)
Marcelo Tosatti68f89402009-06-11 12:07:43 -03006513{
Xiao Guangrongf735d4a2015-08-05 12:04:27 +08006514 int ret;
Marcelo Tosatti68f89402009-06-11 12:07:43 -03006515 gpa_t gpa;
6516
Paolo Bonzini9034e6e2017-08-17 18:36:58 +02006517 /*
6518 * A nested guest cannot optimize MMIO vmexits, because we have an
6519 * nGPA here instead of the required GPA.
6520 */
Marcelo Tosatti68f89402009-06-11 12:07:43 -03006521 gpa = vmcs_read64(GUEST_PHYSICAL_ADDRESS);
Paolo Bonzini9034e6e2017-08-17 18:36:58 +02006522 if (!is_guest_mode(vcpu) &&
6523 !kvm_io_bus_write(vcpu, KVM_FAST_MMIO_BUS, gpa, 0, NULL)) {
Jason Wang931c33b2015-09-15 14:41:58 +08006524 trace_kvm_fast_mmio(gpa);
Kyle Huey6affcbe2016-11-29 12:40:40 -08006525 return kvm_skip_emulated_instruction(vcpu);
Michael S. Tsirkin68c3b4d2014-03-31 21:50:44 +03006526 }
Marcelo Tosatti68f89402009-06-11 12:07:43 -03006527
Paolo Bonzinie08d26f2017-08-17 18:36:56 +02006528 ret = kvm_mmu_page_fault(vcpu, gpa, PFERR_RSVD_MASK, NULL, 0);
6529 if (ret >= 0)
6530 return ret;
Xiao Guangrongce88dec2011-07-12 03:33:44 +08006531
6532 /* It is the real ept misconfig */
Xiao Guangrongf735d4a2015-08-05 12:04:27 +08006533 WARN_ON(1);
Marcelo Tosatti68f89402009-06-11 12:07:43 -03006534
Avi Kivity851ba692009-08-24 11:10:17 +03006535 vcpu->run->exit_reason = KVM_EXIT_UNKNOWN;
6536 vcpu->run->hw.hardware_exit_reason = EXIT_REASON_EPT_MISCONFIG;
Marcelo Tosatti68f89402009-06-11 12:07:43 -03006537
6538 return 0;
6539}
6540
Avi Kivity851ba692009-08-24 11:10:17 +03006541static int handle_nmi_window(struct kvm_vcpu *vcpu)
Sheng Yangf08864b2008-05-15 18:23:25 +08006542{
Paolo Bonzini47c01522016-12-19 11:44:07 +01006543 vmcs_clear_bits(CPU_BASED_VM_EXEC_CONTROL,
6544 CPU_BASED_VIRTUAL_NMI_PENDING);
Sheng Yangf08864b2008-05-15 18:23:25 +08006545 ++vcpu->stat.nmi_window_exits;
Avi Kivity3842d132010-07-27 12:30:24 +03006546 kvm_make_request(KVM_REQ_EVENT, vcpu);
Sheng Yangf08864b2008-05-15 18:23:25 +08006547
6548 return 1;
6549}
6550
Mohammed Gamal80ced182009-09-01 12:48:18 +02006551static int handle_invalid_guest_state(struct kvm_vcpu *vcpu)
Mohammed Gamalea953ef2008-08-17 16:47:05 +03006552{
Avi Kivity8b3079a2009-01-05 12:10:54 +02006553 struct vcpu_vmx *vmx = to_vmx(vcpu);
6554 enum emulation_result err = EMULATE_DONE;
Mohammed Gamal80ced182009-09-01 12:48:18 +02006555 int ret = 1;
Avi Kivity49e9d552010-09-19 14:34:08 +02006556 u32 cpu_exec_ctrl;
6557 bool intr_window_requested;
Avi Kivityb8405c12012-06-07 17:08:48 +03006558 unsigned count = 130;
Avi Kivity49e9d552010-09-19 14:34:08 +02006559
6560 cpu_exec_ctrl = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL);
6561 intr_window_requested = cpu_exec_ctrl & CPU_BASED_VIRTUAL_INTR_PENDING;
Mohammed Gamalea953ef2008-08-17 16:47:05 +03006562
Paolo Bonzini98eb2f82014-03-27 09:51:52 +01006563 while (vmx->emulation_required && count-- != 0) {
Avi Kivitybdea48e2012-06-10 18:07:57 +03006564 if (intr_window_requested && vmx_interrupt_allowed(vcpu))
Avi Kivity49e9d552010-09-19 14:34:08 +02006565 return handle_interrupt_window(&vmx->vcpu);
6566
Radim Krčmář72875d8a2017-04-26 22:32:19 +02006567 if (kvm_test_request(KVM_REQ_EVENT, vcpu))
Avi Kivityde87dcdd2012-06-12 20:21:38 +03006568 return 1;
6569
Gleb Natapov991eebf2013-04-11 12:10:51 +03006570 err = emulate_instruction(vcpu, EMULTYPE_NO_REEXECUTE);
Mohammed Gamalea953ef2008-08-17 16:47:05 +03006571
Paolo Bonziniac0a48c2013-06-25 18:24:41 +02006572 if (err == EMULATE_USER_EXIT) {
Paolo Bonzini94452b92013-08-27 15:41:42 +02006573 ++vcpu->stat.mmio_exits;
Mohammed Gamal80ced182009-09-01 12:48:18 +02006574 ret = 0;
6575 goto out;
6576 }
Guillaume Thouvenin1d5a4d92008-10-29 09:39:42 +01006577
Avi Kivityde5f70e2012-06-12 20:22:28 +03006578 if (err != EMULATE_DONE) {
6579 vcpu->run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
6580 vcpu->run->internal.suberror = KVM_INTERNAL_ERROR_EMULATION;
6581 vcpu->run->internal.ndata = 0;
Gleb Natapov6d77dbf2010-05-10 11:16:56 +03006582 return 0;
Avi Kivityde5f70e2012-06-12 20:22:28 +03006583 }
Mohammed Gamalea953ef2008-08-17 16:47:05 +03006584
Gleb Natapov8d76c492013-05-08 18:38:44 +03006585 if (vcpu->arch.halt_request) {
6586 vcpu->arch.halt_request = 0;
Joel Schopp5cb56052015-03-02 13:43:31 -06006587 ret = kvm_vcpu_halt(vcpu);
Gleb Natapov8d76c492013-05-08 18:38:44 +03006588 goto out;
6589 }
6590
Mohammed Gamalea953ef2008-08-17 16:47:05 +03006591 if (signal_pending(current))
Mohammed Gamal80ced182009-09-01 12:48:18 +02006592 goto out;
Mohammed Gamalea953ef2008-08-17 16:47:05 +03006593 if (need_resched())
6594 schedule();
6595 }
6596
Mohammed Gamal80ced182009-09-01 12:48:18 +02006597out:
6598 return ret;
Mohammed Gamalea953ef2008-08-17 16:47:05 +03006599}
6600
Radim Krčmářb4a2d312014-08-21 18:08:08 +02006601static int __grow_ple_window(int val)
6602{
6603 if (ple_window_grow < 1)
6604 return ple_window;
6605
6606 val = min(val, ple_window_actual_max);
6607
6608 if (ple_window_grow < ple_window)
6609 val *= ple_window_grow;
6610 else
6611 val += ple_window_grow;
6612
6613 return val;
6614}
6615
6616static int __shrink_ple_window(int val, int modifier, int minimum)
6617{
6618 if (modifier < 1)
6619 return ple_window;
6620
6621 if (modifier < ple_window)
6622 val /= modifier;
6623 else
6624 val -= modifier;
6625
6626 return max(val, minimum);
6627}
6628
6629static void grow_ple_window(struct kvm_vcpu *vcpu)
6630{
6631 struct vcpu_vmx *vmx = to_vmx(vcpu);
6632 int old = vmx->ple_window;
6633
6634 vmx->ple_window = __grow_ple_window(old);
6635
6636 if (vmx->ple_window != old)
6637 vmx->ple_window_dirty = true;
Radim Krčmář7b462682014-08-21 18:08:09 +02006638
6639 trace_kvm_ple_window_grow(vcpu->vcpu_id, vmx->ple_window, old);
Radim Krčmářb4a2d312014-08-21 18:08:08 +02006640}
6641
6642static void shrink_ple_window(struct kvm_vcpu *vcpu)
6643{
6644 struct vcpu_vmx *vmx = to_vmx(vcpu);
6645 int old = vmx->ple_window;
6646
6647 vmx->ple_window = __shrink_ple_window(old,
6648 ple_window_shrink, ple_window);
6649
6650 if (vmx->ple_window != old)
6651 vmx->ple_window_dirty = true;
Radim Krčmář7b462682014-08-21 18:08:09 +02006652
6653 trace_kvm_ple_window_shrink(vcpu->vcpu_id, vmx->ple_window, old);
Radim Krčmářb4a2d312014-08-21 18:08:08 +02006654}
6655
6656/*
6657 * ple_window_actual_max is computed to be one grow_ple_window() below
6658 * ple_window_max. (See __grow_ple_window for the reason.)
6659 * This prevents overflows, because ple_window_max is int.
6660 * ple_window_max effectively rounded down to a multiple of ple_window_grow in
6661 * this process.
6662 * ple_window_max is also prevented from setting vmx->ple_window < ple_window.
6663 */
6664static void update_ple_window_actual_max(void)
6665{
6666 ple_window_actual_max =
6667 __shrink_ple_window(max(ple_window_max, ple_window),
6668 ple_window_grow, INT_MIN);
6669}
6670
Feng Wubf9f6ac2015-09-18 22:29:55 +08006671/*
6672 * Handler for POSTED_INTERRUPT_WAKEUP_VECTOR.
6673 */
6674static void wakeup_handler(void)
6675{
6676 struct kvm_vcpu *vcpu;
6677 int cpu = smp_processor_id();
6678
6679 spin_lock(&per_cpu(blocked_vcpu_on_cpu_lock, cpu));
6680 list_for_each_entry(vcpu, &per_cpu(blocked_vcpu_on_cpu, cpu),
6681 blocked_vcpu_list) {
6682 struct pi_desc *pi_desc = vcpu_to_pi_desc(vcpu);
6683
6684 if (pi_test_on(pi_desc) == 1)
6685 kvm_vcpu_kick(vcpu);
6686 }
6687 spin_unlock(&per_cpu(blocked_vcpu_on_cpu_lock, cpu));
6688}
6689
Junaid Shahidf160c7b2016-12-06 16:46:16 -08006690void vmx_enable_tdp(void)
6691{
6692 kvm_mmu_set_mask_ptes(VMX_EPT_READABLE_MASK,
6693 enable_ept_ad_bits ? VMX_EPT_ACCESS_BIT : 0ull,
6694 enable_ept_ad_bits ? VMX_EPT_DIRTY_BIT : 0ull,
6695 0ull, VMX_EPT_EXECUTABLE_MASK,
6696 cpu_has_vmx_ept_execute_only() ? 0ull : VMX_EPT_READABLE_MASK,
Peter Feiner995f00a2017-06-30 17:26:32 -07006697 VMX_EPT_RWX_MASK);
Junaid Shahidf160c7b2016-12-06 16:46:16 -08006698
6699 ept_set_mmio_spte_mask();
6700 kvm_enable_tdp();
6701}
6702
Tiejun Chenf2c76482014-10-28 10:14:47 +08006703static __init int hardware_setup(void)
6704{
Tiejun Chen34a1cd62014-10-28 10:14:48 +08006705 int r = -ENOMEM, i, msr;
6706
6707 rdmsrl_safe(MSR_EFER, &host_efer);
6708
6709 for (i = 0; i < ARRAY_SIZE(vmx_msr_index); ++i)
6710 kvm_define_shared_msr(i, vmx_msr_index[i]);
6711
Radim Krčmář23611332016-09-29 22:41:33 +02006712 for (i = 0; i < VMX_BITMAP_NR; i++) {
6713 vmx_bitmap[i] = (unsigned long *)__get_free_page(GFP_KERNEL);
6714 if (!vmx_bitmap[i])
6715 goto out;
6716 }
Tiejun Chen34a1cd62014-10-28 10:14:48 +08006717
6718 vmx_io_bitmap_b = (unsigned long *)__get_free_page(GFP_KERNEL);
Tiejun Chen34a1cd62014-10-28 10:14:48 +08006719 memset(vmx_vmread_bitmap, 0xff, PAGE_SIZE);
6720 memset(vmx_vmwrite_bitmap, 0xff, PAGE_SIZE);
6721
6722 /*
6723 * Allow direct access to the PC debug port (it is often used for I/O
6724 * delays, but the vmexits simply slow things down).
6725 */
6726 memset(vmx_io_bitmap_a, 0xff, PAGE_SIZE);
6727 clear_bit(0x80, vmx_io_bitmap_a);
6728
6729 memset(vmx_io_bitmap_b, 0xff, PAGE_SIZE);
6730
6731 memset(vmx_msr_bitmap_legacy, 0xff, PAGE_SIZE);
6732 memset(vmx_msr_bitmap_longmode, 0xff, PAGE_SIZE);
6733
Tiejun Chen34a1cd62014-10-28 10:14:48 +08006734 if (setup_vmcs_config(&vmcs_config) < 0) {
6735 r = -EIO;
Radim Krčmář23611332016-09-29 22:41:33 +02006736 goto out;
Tiejun Chenbaa03522014-12-23 16:21:11 +08006737 }
Tiejun Chenf2c76482014-10-28 10:14:47 +08006738
6739 if (boot_cpu_has(X86_FEATURE_NX))
6740 kvm_enable_efer_bits(EFER_NX);
6741
Wanpeng Li08d839c2017-03-23 05:30:08 -07006742 if (!cpu_has_vmx_vpid() || !cpu_has_vmx_invvpid() ||
6743 !(cpu_has_vmx_invvpid_single() || cpu_has_vmx_invvpid_global()))
Tiejun Chenf2c76482014-10-28 10:14:47 +08006744 enable_vpid = 0;
Wanpeng Li08d839c2017-03-23 05:30:08 -07006745
Tiejun Chenf2c76482014-10-28 10:14:47 +08006746 if (!cpu_has_vmx_shadow_vmcs())
6747 enable_shadow_vmcs = 0;
6748 if (enable_shadow_vmcs)
6749 init_vmcs_shadow_fields();
6750
6751 if (!cpu_has_vmx_ept() ||
David Hildenbrand42aa53b2017-08-10 23:15:29 +02006752 !cpu_has_vmx_ept_4levels() ||
6753 !cpu_has_vmx_ept_mt_wb()) {
Tiejun Chenf2c76482014-10-28 10:14:47 +08006754 enable_ept = 0;
6755 enable_unrestricted_guest = 0;
6756 enable_ept_ad_bits = 0;
6757 }
6758
Wanpeng Lifce6ac42017-05-11 02:58:56 -07006759 if (!cpu_has_vmx_ept_ad_bits() || !enable_ept)
Tiejun Chenf2c76482014-10-28 10:14:47 +08006760 enable_ept_ad_bits = 0;
6761
6762 if (!cpu_has_vmx_unrestricted_guest())
6763 enable_unrestricted_guest = 0;
6764
Paolo Bonziniad15a292015-01-30 16:18:49 +01006765 if (!cpu_has_vmx_flexpriority())
Tiejun Chenf2c76482014-10-28 10:14:47 +08006766 flexpriority_enabled = 0;
6767
Paolo Bonziniad15a292015-01-30 16:18:49 +01006768 /*
6769 * set_apic_access_page_addr() is used to reload apic access
6770 * page upon invalidation. No need to do anything if not
6771 * using the APIC_ACCESS_ADDR VMCS field.
6772 */
6773 if (!flexpriority_enabled)
Tiejun Chenf2c76482014-10-28 10:14:47 +08006774 kvm_x86_ops->set_apic_access_page_addr = NULL;
Tiejun Chenf2c76482014-10-28 10:14:47 +08006775
6776 if (!cpu_has_vmx_tpr_shadow())
6777 kvm_x86_ops->update_cr8_intercept = NULL;
6778
6779 if (enable_ept && !cpu_has_vmx_ept_2m_page())
6780 kvm_disable_largepages();
6781
6782 if (!cpu_has_vmx_ple())
6783 ple_gap = 0;
6784
Paolo Bonzini76dfafd52016-12-19 17:17:11 +01006785 if (!cpu_has_vmx_apicv()) {
Tiejun Chenf2c76482014-10-28 10:14:47 +08006786 enable_apicv = 0;
Paolo Bonzini76dfafd52016-12-19 17:17:11 +01006787 kvm_x86_ops->sync_pir_to_irr = NULL;
6788 }
Tiejun Chenf2c76482014-10-28 10:14:47 +08006789
Haozhong Zhang64903d62015-10-20 15:39:09 +08006790 if (cpu_has_vmx_tsc_scaling()) {
6791 kvm_has_tsc_control = true;
6792 kvm_max_tsc_scaling_ratio = KVM_VMX_TSC_MULTIPLIER_MAX;
6793 kvm_tsc_scaling_ratio_frac_bits = 48;
6794 }
6795
Tiejun Chenbaa03522014-12-23 16:21:11 +08006796 vmx_disable_intercept_for_msr(MSR_FS_BASE, false);
6797 vmx_disable_intercept_for_msr(MSR_GS_BASE, false);
6798 vmx_disable_intercept_for_msr(MSR_KERNEL_GS_BASE, true);
6799 vmx_disable_intercept_for_msr(MSR_IA32_SYSENTER_CS, false);
6800 vmx_disable_intercept_for_msr(MSR_IA32_SYSENTER_ESP, false);
6801 vmx_disable_intercept_for_msr(MSR_IA32_SYSENTER_EIP, false);
Tiejun Chenbaa03522014-12-23 16:21:11 +08006802
Wanpeng Lic63e4562016-09-23 19:17:16 +08006803 memcpy(vmx_msr_bitmap_legacy_x2apic_apicv,
6804 vmx_msr_bitmap_legacy, PAGE_SIZE);
6805 memcpy(vmx_msr_bitmap_longmode_x2apic_apicv,
6806 vmx_msr_bitmap_longmode, PAGE_SIZE);
Tiejun Chenbaa03522014-12-23 16:21:11 +08006807 memcpy(vmx_msr_bitmap_legacy_x2apic,
6808 vmx_msr_bitmap_legacy, PAGE_SIZE);
6809 memcpy(vmx_msr_bitmap_longmode_x2apic,
6810 vmx_msr_bitmap_longmode, PAGE_SIZE);
6811
Wanpeng Li04bb92e2015-09-16 19:31:11 +08006812 set_bit(0, vmx_vpid_bitmap); /* 0 is reserved for host */
6813
Radim Krčmář40d83382016-09-29 22:41:31 +02006814 for (msr = 0x800; msr <= 0x8ff; msr++) {
6815 if (msr == 0x839 /* TMCCT */)
6816 continue;
Radim Krčmář2e69f862016-09-29 22:41:32 +02006817 vmx_disable_intercept_msr_x2apic(msr, MSR_TYPE_R, true);
Radim Krčmář40d83382016-09-29 22:41:31 +02006818 }
Tiejun Chenbaa03522014-12-23 16:21:11 +08006819
Wanpeng Lif6e90f92016-09-22 07:43:25 +08006820 /*
Radim Krčmář2e69f862016-09-29 22:41:32 +02006821 * TPR reads and writes can be virtualized even if virtual interrupt
6822 * delivery is not in use.
Wanpeng Lif6e90f92016-09-22 07:43:25 +08006823 */
Radim Krčmář2e69f862016-09-29 22:41:32 +02006824 vmx_disable_intercept_msr_x2apic(0x808, MSR_TYPE_W, true);
6825 vmx_disable_intercept_msr_x2apic(0x808, MSR_TYPE_R | MSR_TYPE_W, false);
6826
Roman Kagan3ce424e2016-05-18 17:48:20 +03006827 /* EOI */
Radim Krčmář2e69f862016-09-29 22:41:32 +02006828 vmx_disable_intercept_msr_x2apic(0x80b, MSR_TYPE_W, true);
Roman Kagan3ce424e2016-05-18 17:48:20 +03006829 /* SELF-IPI */
Radim Krčmář2e69f862016-09-29 22:41:32 +02006830 vmx_disable_intercept_msr_x2apic(0x83f, MSR_TYPE_W, true);
Tiejun Chenbaa03522014-12-23 16:21:11 +08006831
Junaid Shahidf160c7b2016-12-06 16:46:16 -08006832 if (enable_ept)
6833 vmx_enable_tdp();
6834 else
Tiejun Chenbaa03522014-12-23 16:21:11 +08006835 kvm_disable_tdp();
6836
6837 update_ple_window_actual_max();
6838
Kai Huang843e4332015-01-28 10:54:28 +08006839 /*
6840 * Only enable PML when hardware supports PML feature, and both EPT
6841 * and EPT A/D bit features are enabled -- PML depends on them to work.
6842 */
6843 if (!enable_ept || !enable_ept_ad_bits || !cpu_has_vmx_pml())
6844 enable_pml = 0;
6845
6846 if (!enable_pml) {
6847 kvm_x86_ops->slot_enable_log_dirty = NULL;
6848 kvm_x86_ops->slot_disable_log_dirty = NULL;
6849 kvm_x86_ops->flush_log_dirty = NULL;
6850 kvm_x86_ops->enable_log_dirty_pt_masked = NULL;
6851 }
6852
Yunhong Jiang64672c92016-06-13 14:19:59 -07006853 if (cpu_has_vmx_preemption_timer() && enable_preemption_timer) {
6854 u64 vmx_msr;
6855
6856 rdmsrl(MSR_IA32_VMX_MISC, vmx_msr);
6857 cpu_preemption_timer_multi =
6858 vmx_msr & VMX_MISC_PREEMPTION_TIMER_RATE_MASK;
6859 } else {
6860 kvm_x86_ops->set_hv_timer = NULL;
6861 kvm_x86_ops->cancel_hv_timer = NULL;
6862 }
6863
Feng Wubf9f6ac2015-09-18 22:29:55 +08006864 kvm_set_posted_intr_wakeup_handler(wakeup_handler);
6865
Ashok Rajc45dcc72016-06-22 14:59:56 +08006866 kvm_mce_cap_supported |= MCG_LMCE_P;
6867
Tiejun Chenf2c76482014-10-28 10:14:47 +08006868 return alloc_kvm_area();
Tiejun Chen34a1cd62014-10-28 10:14:48 +08006869
Tiejun Chen34a1cd62014-10-28 10:14:48 +08006870out:
Radim Krčmář23611332016-09-29 22:41:33 +02006871 for (i = 0; i < VMX_BITMAP_NR; i++)
6872 free_page((unsigned long)vmx_bitmap[i]);
Tiejun Chen34a1cd62014-10-28 10:14:48 +08006873
6874 return r;
Tiejun Chenf2c76482014-10-28 10:14:47 +08006875}
6876
6877static __exit void hardware_unsetup(void)
6878{
Radim Krčmář23611332016-09-29 22:41:33 +02006879 int i;
6880
6881 for (i = 0; i < VMX_BITMAP_NR; i++)
6882 free_page((unsigned long)vmx_bitmap[i]);
Tiejun Chen34a1cd62014-10-28 10:14:48 +08006883
Tiejun Chenf2c76482014-10-28 10:14:47 +08006884 free_kvm_area();
6885}
6886
Avi Kivity6aa8b732006-12-10 02:21:36 -08006887/*
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08006888 * Indicate a busy-waiting vcpu in spinlock. We do not enable the PAUSE
6889 * exiting, so only get here on cpu with PAUSE-Loop-Exiting.
6890 */
Marcelo Tosatti9fb41ba2009-10-12 19:37:31 -03006891static int handle_pause(struct kvm_vcpu *vcpu)
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08006892{
Radim Krčmářb4a2d312014-08-21 18:08:08 +02006893 if (ple_gap)
6894 grow_ple_window(vcpu);
6895
Longpeng(Mike)de63ad42017-08-08 12:05:33 +08006896 /*
6897 * Intel sdm vol3 ch-25.1.3 says: The "PAUSE-loop exiting"
6898 * VM-execution control is ignored if CPL > 0. OTOH, KVM
6899 * never set PAUSE_EXITING and just set PLE if supported,
6900 * so the vcpu must be CPL=0 if it gets a PAUSE exit.
6901 */
6902 kvm_vcpu_on_spin(vcpu, true);
Kyle Huey6affcbe2016-11-29 12:40:40 -08006903 return kvm_skip_emulated_instruction(vcpu);
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08006904}
6905
Gabriel L. Somlo87c00572014-05-07 16:52:13 -04006906static int handle_nop(struct kvm_vcpu *vcpu)
Sheng Yang59708672009-12-15 13:29:54 +08006907{
Kyle Huey6affcbe2016-11-29 12:40:40 -08006908 return kvm_skip_emulated_instruction(vcpu);
Sheng Yang59708672009-12-15 13:29:54 +08006909}
6910
Gabriel L. Somlo87c00572014-05-07 16:52:13 -04006911static int handle_mwait(struct kvm_vcpu *vcpu)
6912{
6913 printk_once(KERN_WARNING "kvm: MWAIT instruction emulated as NOP!\n");
6914 return handle_nop(vcpu);
6915}
6916
Jim Mattson45ec3682017-08-23 16:32:04 -07006917static int handle_invalid_op(struct kvm_vcpu *vcpu)
6918{
6919 kvm_queue_exception(vcpu, UD_VECTOR);
6920 return 1;
6921}
6922
Mihai Donțu5f3d45e2015-07-05 20:08:57 +03006923static int handle_monitor_trap(struct kvm_vcpu *vcpu)
6924{
6925 return 1;
6926}
6927
Gabriel L. Somlo87c00572014-05-07 16:52:13 -04006928static int handle_monitor(struct kvm_vcpu *vcpu)
6929{
6930 printk_once(KERN_WARNING "kvm: MONITOR instruction emulated as NOP!\n");
6931 return handle_nop(vcpu);
6932}
6933
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08006934/*
Nadav Har'Elff2f6fe2011-05-25 23:05:27 +03006935 * To run an L2 guest, we need a vmcs02 based on the L1-specified vmcs12.
6936 * We could reuse a single VMCS for all the L2 guests, but we also want the
6937 * option to allocate a separate vmcs02 for each separate loaded vmcs12 - this
6938 * allows keeping them loaded on the processor, and in the future will allow
6939 * optimizations where prepare_vmcs02 doesn't need to set all the fields on
6940 * every entry if they never change.
6941 * So we keep, in vmx->nested.vmcs02_pool, a cache of size VMCS02_POOL_SIZE
6942 * (>=0) with a vmcs02 for each recently loaded vmcs12s, most recent first.
6943 *
6944 * The following functions allocate and free a vmcs02 in this pool.
6945 */
6946
6947/* Get a VMCS from the pool to use as vmcs02 for the current vmcs12. */
6948static struct loaded_vmcs *nested_get_current_vmcs02(struct vcpu_vmx *vmx)
6949{
6950 struct vmcs02_list *item;
6951 list_for_each_entry(item, &vmx->nested.vmcs02_pool, list)
6952 if (item->vmptr == vmx->nested.current_vmptr) {
6953 list_move(&item->list, &vmx->nested.vmcs02_pool);
6954 return &item->vmcs02;
6955 }
6956
6957 if (vmx->nested.vmcs02_num >= max(VMCS02_POOL_SIZE, 1)) {
6958 /* Recycle the least recently used VMCS. */
Geliang Tangd74c0e62016-01-01 19:47:14 +08006959 item = list_last_entry(&vmx->nested.vmcs02_pool,
6960 struct vmcs02_list, list);
Nadav Har'Elff2f6fe2011-05-25 23:05:27 +03006961 item->vmptr = vmx->nested.current_vmptr;
6962 list_move(&item->list, &vmx->nested.vmcs02_pool);
6963 return &item->vmcs02;
6964 }
6965
6966 /* Create a new VMCS */
Ioan Orghici0fa24ce2013-03-10 15:46:00 +02006967 item = kmalloc(sizeof(struct vmcs02_list), GFP_KERNEL);
Nadav Har'Elff2f6fe2011-05-25 23:05:27 +03006968 if (!item)
6969 return NULL;
6970 item->vmcs02.vmcs = alloc_vmcs();
Jim Mattson355f4fb2016-10-28 08:29:39 -07006971 item->vmcs02.shadow_vmcs = NULL;
Nadav Har'Elff2f6fe2011-05-25 23:05:27 +03006972 if (!item->vmcs02.vmcs) {
6973 kfree(item);
6974 return NULL;
6975 }
6976 loaded_vmcs_init(&item->vmcs02);
6977 item->vmptr = vmx->nested.current_vmptr;
6978 list_add(&(item->list), &(vmx->nested.vmcs02_pool));
6979 vmx->nested.vmcs02_num++;
6980 return &item->vmcs02;
6981}
6982
6983/* Free and remove from pool a vmcs02 saved for a vmcs12 (if there is one) */
6984static void nested_free_vmcs02(struct vcpu_vmx *vmx, gpa_t vmptr)
6985{
6986 struct vmcs02_list *item;
6987 list_for_each_entry(item, &vmx->nested.vmcs02_pool, list)
6988 if (item->vmptr == vmptr) {
6989 free_loaded_vmcs(&item->vmcs02);
6990 list_del(&item->list);
6991 kfree(item);
6992 vmx->nested.vmcs02_num--;
6993 return;
6994 }
6995}
6996
6997/*
6998 * Free all VMCSs saved for this vcpu, except the one pointed by
Paolo Bonzini4fa77342014-07-17 12:25:16 +02006999 * vmx->loaded_vmcs. We must be running L1, so vmx->loaded_vmcs
7000 * must be &vmx->vmcs01.
Nadav Har'Elff2f6fe2011-05-25 23:05:27 +03007001 */
7002static void nested_free_all_saved_vmcss(struct vcpu_vmx *vmx)
7003{
7004 struct vmcs02_list *item, *n;
Paolo Bonzini4fa77342014-07-17 12:25:16 +02007005
7006 WARN_ON(vmx->loaded_vmcs != &vmx->vmcs01);
Nadav Har'Elff2f6fe2011-05-25 23:05:27 +03007007 list_for_each_entry_safe(item, n, &vmx->nested.vmcs02_pool, list) {
Paolo Bonzini4fa77342014-07-17 12:25:16 +02007008 /*
7009 * Something will leak if the above WARN triggers. Better than
7010 * a use-after-free.
7011 */
7012 if (vmx->loaded_vmcs == &item->vmcs02)
7013 continue;
7014
7015 free_loaded_vmcs(&item->vmcs02);
Nadav Har'Elff2f6fe2011-05-25 23:05:27 +03007016 list_del(&item->list);
7017 kfree(item);
Paolo Bonzini4fa77342014-07-17 12:25:16 +02007018 vmx->nested.vmcs02_num--;
Nadav Har'Elff2f6fe2011-05-25 23:05:27 +03007019 }
Nadav Har'Elff2f6fe2011-05-25 23:05:27 +03007020}
7021
Arthur Chunqi Li0658fba2013-07-04 15:03:32 +08007022/*
7023 * The following 3 functions, nested_vmx_succeed()/failValid()/failInvalid(),
7024 * set the success or error code of an emulated VMX instruction, as specified
7025 * by Vol 2B, VMX Instruction Reference, "Conventions".
7026 */
7027static void nested_vmx_succeed(struct kvm_vcpu *vcpu)
7028{
7029 vmx_set_rflags(vcpu, vmx_get_rflags(vcpu)
7030 & ~(X86_EFLAGS_CF | X86_EFLAGS_PF | X86_EFLAGS_AF |
7031 X86_EFLAGS_ZF | X86_EFLAGS_SF | X86_EFLAGS_OF));
7032}
7033
7034static void nested_vmx_failInvalid(struct kvm_vcpu *vcpu)
7035{
7036 vmx_set_rflags(vcpu, (vmx_get_rflags(vcpu)
7037 & ~(X86_EFLAGS_PF | X86_EFLAGS_AF | X86_EFLAGS_ZF |
7038 X86_EFLAGS_SF | X86_EFLAGS_OF))
7039 | X86_EFLAGS_CF);
7040}
7041
Abel Gordon145c28d2013-04-18 14:36:55 +03007042static void nested_vmx_failValid(struct kvm_vcpu *vcpu,
Arthur Chunqi Li0658fba2013-07-04 15:03:32 +08007043 u32 vm_instruction_error)
7044{
7045 if (to_vmx(vcpu)->nested.current_vmptr == -1ull) {
7046 /*
7047 * failValid writes the error number to the current VMCS, which
7048 * can't be done there isn't a current VMCS.
7049 */
7050 nested_vmx_failInvalid(vcpu);
7051 return;
7052 }
7053 vmx_set_rflags(vcpu, (vmx_get_rflags(vcpu)
7054 & ~(X86_EFLAGS_CF | X86_EFLAGS_PF | X86_EFLAGS_AF |
7055 X86_EFLAGS_SF | X86_EFLAGS_OF))
7056 | X86_EFLAGS_ZF);
7057 get_vmcs12(vcpu)->vm_instruction_error = vm_instruction_error;
7058 /*
7059 * We don't need to force a shadow sync because
7060 * VM_INSTRUCTION_ERROR is not shadowed
7061 */
7062}
Abel Gordon145c28d2013-04-18 14:36:55 +03007063
Wincy Vanff651cb2014-12-11 08:52:58 +03007064static void nested_vmx_abort(struct kvm_vcpu *vcpu, u32 indicator)
7065{
7066 /* TODO: not to reset guest simply here. */
7067 kvm_make_request(KVM_REQ_TRIPLE_FAULT, vcpu);
Paolo Bonzinibbe41b92016-08-19 17:51:20 +02007068 pr_debug_ratelimited("kvm: nested vmx abort, indicator %d\n", indicator);
Wincy Vanff651cb2014-12-11 08:52:58 +03007069}
7070
Jan Kiszkaf4124502014-03-07 20:03:13 +01007071static enum hrtimer_restart vmx_preemption_timer_fn(struct hrtimer *timer)
7072{
7073 struct vcpu_vmx *vmx =
7074 container_of(timer, struct vcpu_vmx, nested.preemption_timer);
7075
7076 vmx->nested.preemption_timer_expired = true;
7077 kvm_make_request(KVM_REQ_EVENT, &vmx->vcpu);
7078 kvm_vcpu_kick(&vmx->vcpu);
7079
7080 return HRTIMER_NORESTART;
7081}
7082
Nadav Har'Elff2f6fe2011-05-25 23:05:27 +03007083/*
Bandan Das19677e32014-05-06 02:19:15 -04007084 * Decode the memory-address operand of a vmx instruction, as recorded on an
7085 * exit caused by such an instruction (run by a guest hypervisor).
7086 * On success, returns 0. When the operand is invalid, returns 1 and throws
7087 * #UD or #GP.
7088 */
7089static int get_vmx_mem_address(struct kvm_vcpu *vcpu,
7090 unsigned long exit_qualification,
Eugene Korenevskyf9eb4af2015-04-17 02:22:21 +00007091 u32 vmx_instruction_info, bool wr, gva_t *ret)
Bandan Das19677e32014-05-06 02:19:15 -04007092{
Eugene Korenevskyf9eb4af2015-04-17 02:22:21 +00007093 gva_t off;
7094 bool exn;
7095 struct kvm_segment s;
7096
Bandan Das19677e32014-05-06 02:19:15 -04007097 /*
7098 * According to Vol. 3B, "Information for VM Exits Due to Instruction
7099 * Execution", on an exit, vmx_instruction_info holds most of the
7100 * addressing components of the operand. Only the displacement part
7101 * is put in exit_qualification (see 3B, "Basic VM-Exit Information").
7102 * For how an actual address is calculated from all these components,
7103 * refer to Vol. 1, "Operand Addressing".
7104 */
7105 int scaling = vmx_instruction_info & 3;
7106 int addr_size = (vmx_instruction_info >> 7) & 7;
7107 bool is_reg = vmx_instruction_info & (1u << 10);
7108 int seg_reg = (vmx_instruction_info >> 15) & 7;
7109 int index_reg = (vmx_instruction_info >> 18) & 0xf;
7110 bool index_is_valid = !(vmx_instruction_info & (1u << 22));
7111 int base_reg = (vmx_instruction_info >> 23) & 0xf;
7112 bool base_is_valid = !(vmx_instruction_info & (1u << 27));
7113
7114 if (is_reg) {
7115 kvm_queue_exception(vcpu, UD_VECTOR);
7116 return 1;
7117 }
7118
7119 /* Addr = segment_base + offset */
7120 /* offset = base + [index * scale] + displacement */
Eugene Korenevskyf9eb4af2015-04-17 02:22:21 +00007121 off = exit_qualification; /* holds the displacement */
Bandan Das19677e32014-05-06 02:19:15 -04007122 if (base_is_valid)
Eugene Korenevskyf9eb4af2015-04-17 02:22:21 +00007123 off += kvm_register_read(vcpu, base_reg);
Bandan Das19677e32014-05-06 02:19:15 -04007124 if (index_is_valid)
Eugene Korenevskyf9eb4af2015-04-17 02:22:21 +00007125 off += kvm_register_read(vcpu, index_reg)<<scaling;
7126 vmx_get_segment(vcpu, &s, seg_reg);
7127 *ret = s.base + off;
Bandan Das19677e32014-05-06 02:19:15 -04007128
7129 if (addr_size == 1) /* 32 bit */
7130 *ret &= 0xffffffff;
7131
Eugene Korenevskyf9eb4af2015-04-17 02:22:21 +00007132 /* Checks for #GP/#SS exceptions. */
7133 exn = false;
Quentin Casasnovasff30ef42016-06-18 11:01:05 +02007134 if (is_long_mode(vcpu)) {
7135 /* Long mode: #GP(0)/#SS(0) if the memory address is in a
7136 * non-canonical form. This is the only check on the memory
7137 * destination for long mode!
7138 */
Yu Zhangfd8cb432017-08-24 20:27:56 +08007139 exn = is_noncanonical_address(*ret, vcpu);
Quentin Casasnovasff30ef42016-06-18 11:01:05 +02007140 } else if (is_protmode(vcpu)) {
Eugene Korenevskyf9eb4af2015-04-17 02:22:21 +00007141 /* Protected mode: apply checks for segment validity in the
7142 * following order:
7143 * - segment type check (#GP(0) may be thrown)
7144 * - usability check (#GP(0)/#SS(0))
7145 * - limit check (#GP(0)/#SS(0))
7146 */
7147 if (wr)
7148 /* #GP(0) if the destination operand is located in a
7149 * read-only data segment or any code segment.
7150 */
7151 exn = ((s.type & 0xa) == 0 || (s.type & 8));
7152 else
7153 /* #GP(0) if the source operand is located in an
7154 * execute-only code segment
7155 */
7156 exn = ((s.type & 0xa) == 8);
Quentin Casasnovasff30ef42016-06-18 11:01:05 +02007157 if (exn) {
7158 kvm_queue_exception_e(vcpu, GP_VECTOR, 0);
7159 return 1;
7160 }
Eugene Korenevskyf9eb4af2015-04-17 02:22:21 +00007161 /* Protected mode: #GP(0)/#SS(0) if the segment is unusable.
7162 */
7163 exn = (s.unusable != 0);
7164 /* Protected mode: #GP(0)/#SS(0) if the memory
7165 * operand is outside the segment limit.
7166 */
7167 exn = exn || (off + sizeof(u64) > s.limit);
7168 }
7169 if (exn) {
7170 kvm_queue_exception_e(vcpu,
7171 seg_reg == VCPU_SREG_SS ?
7172 SS_VECTOR : GP_VECTOR,
7173 0);
7174 return 1;
7175 }
7176
Bandan Das19677e32014-05-06 02:19:15 -04007177 return 0;
7178}
7179
Radim Krčmářcbf71272017-05-19 15:48:51 +02007180static int nested_vmx_get_vmptr(struct kvm_vcpu *vcpu, gpa_t *vmpointer)
Bandan Das3573e222014-05-06 02:19:16 -04007181{
7182 gva_t gva;
Bandan Das3573e222014-05-06 02:19:16 -04007183 struct x86_exception e;
Bandan Das3573e222014-05-06 02:19:16 -04007184
7185 if (get_vmx_mem_address(vcpu, vmcs_readl(EXIT_QUALIFICATION),
Eugene Korenevskyf9eb4af2015-04-17 02:22:21 +00007186 vmcs_read32(VMX_INSTRUCTION_INFO), false, &gva))
Bandan Das3573e222014-05-06 02:19:16 -04007187 return 1;
7188
Radim Krčmářcbf71272017-05-19 15:48:51 +02007189 if (kvm_read_guest_virt(&vcpu->arch.emulate_ctxt, gva, vmpointer,
7190 sizeof(*vmpointer), &e)) {
Bandan Das3573e222014-05-06 02:19:16 -04007191 kvm_inject_page_fault(vcpu, &e);
7192 return 1;
7193 }
7194
Bandan Das3573e222014-05-06 02:19:16 -04007195 return 0;
7196}
7197
Jim Mattsone29acc52016-11-30 12:03:43 -08007198static int enter_vmx_operation(struct kvm_vcpu *vcpu)
7199{
7200 struct vcpu_vmx *vmx = to_vmx(vcpu);
7201 struct vmcs *shadow_vmcs;
7202
7203 if (cpu_has_vmx_msr_bitmap()) {
7204 vmx->nested.msr_bitmap =
7205 (unsigned long *)__get_free_page(GFP_KERNEL);
7206 if (!vmx->nested.msr_bitmap)
7207 goto out_msr_bitmap;
7208 }
7209
7210 vmx->nested.cached_vmcs12 = kmalloc(VMCS12_SIZE, GFP_KERNEL);
7211 if (!vmx->nested.cached_vmcs12)
7212 goto out_cached_vmcs12;
7213
7214 if (enable_shadow_vmcs) {
7215 shadow_vmcs = alloc_vmcs();
7216 if (!shadow_vmcs)
7217 goto out_shadow_vmcs;
7218 /* mark vmcs as shadow */
7219 shadow_vmcs->revision_id |= (1u << 31);
7220 /* init shadow vmcs */
7221 vmcs_clear(shadow_vmcs);
7222 vmx->vmcs01.shadow_vmcs = shadow_vmcs;
7223 }
7224
7225 INIT_LIST_HEAD(&(vmx->nested.vmcs02_pool));
7226 vmx->nested.vmcs02_num = 0;
7227
7228 hrtimer_init(&vmx->nested.preemption_timer, CLOCK_MONOTONIC,
7229 HRTIMER_MODE_REL_PINNED);
7230 vmx->nested.preemption_timer.function = vmx_preemption_timer_fn;
7231
7232 vmx->nested.vmxon = true;
7233 return 0;
7234
7235out_shadow_vmcs:
7236 kfree(vmx->nested.cached_vmcs12);
7237
7238out_cached_vmcs12:
7239 free_page((unsigned long)vmx->nested.msr_bitmap);
7240
7241out_msr_bitmap:
7242 return -ENOMEM;
7243}
7244
Bandan Das3573e222014-05-06 02:19:16 -04007245/*
Nadav Har'Elec378ae2011-05-25 23:02:54 +03007246 * Emulate the VMXON instruction.
7247 * Currently, we just remember that VMX is active, and do not save or even
7248 * inspect the argument to VMXON (the so-called "VMXON pointer") because we
7249 * do not currently need to store anything in that guest-allocated memory
7250 * region. Consequently, VMCLEAR and VMPTRLD also do not verify that the their
7251 * argument is different from the VMXON pointer (which the spec says they do).
7252 */
7253static int handle_vmon(struct kvm_vcpu *vcpu)
7254{
Jim Mattsone29acc52016-11-30 12:03:43 -08007255 int ret;
Radim Krčmářcbf71272017-05-19 15:48:51 +02007256 gpa_t vmptr;
7257 struct page *page;
Nadav Har'Elec378ae2011-05-25 23:02:54 +03007258 struct vcpu_vmx *vmx = to_vmx(vcpu);
Nadav Har'Elb3897a42013-07-08 19:12:35 +08007259 const u64 VMXON_NEEDED_FEATURES = FEATURE_CONTROL_LOCKED
7260 | FEATURE_CONTROL_VMXON_ENABLED_OUTSIDE_SMX;
Nadav Har'Elec378ae2011-05-25 23:02:54 +03007261
Jim Mattson70f3aac2017-04-26 08:53:46 -07007262 /*
7263 * The Intel VMX Instruction Reference lists a bunch of bits that are
7264 * prerequisite to running VMXON, most notably cr4.VMXE must be set to
7265 * 1 (see vmx_set_cr4() for when we allow the guest to set this).
7266 * Otherwise, we should fail with #UD. But most faulting conditions
7267 * have already been checked by hardware, prior to the VM-exit for
7268 * VMXON. We do test guest cr4.VMXE because processor CR4 always has
7269 * that bit set to 1 in non-root mode.
Nadav Har'Elec378ae2011-05-25 23:02:54 +03007270 */
Jim Mattson70f3aac2017-04-26 08:53:46 -07007271 if (!kvm_read_cr4_bits(vcpu, X86_CR4_VMXE)) {
Nadav Har'Elec378ae2011-05-25 23:02:54 +03007272 kvm_queue_exception(vcpu, UD_VECTOR);
7273 return 1;
7274 }
7275
Abel Gordon145c28d2013-04-18 14:36:55 +03007276 if (vmx->nested.vmxon) {
7277 nested_vmx_failValid(vcpu, VMXERR_VMXON_IN_VMX_ROOT_OPERATION);
Kyle Huey6affcbe2016-11-29 12:40:40 -08007278 return kvm_skip_emulated_instruction(vcpu);
Abel Gordon145c28d2013-04-18 14:36:55 +03007279 }
Nadav Har'Elb3897a42013-07-08 19:12:35 +08007280
Haozhong Zhang3b840802016-06-22 14:59:54 +08007281 if ((vmx->msr_ia32_feature_control & VMXON_NEEDED_FEATURES)
Nadav Har'Elb3897a42013-07-08 19:12:35 +08007282 != VMXON_NEEDED_FEATURES) {
7283 kvm_inject_gp(vcpu, 0);
7284 return 1;
7285 }
7286
Radim Krčmářcbf71272017-05-19 15:48:51 +02007287 if (nested_vmx_get_vmptr(vcpu, &vmptr))
Jim Mattson21e7fbe2016-12-22 15:49:55 -08007288 return 1;
Radim Krčmářcbf71272017-05-19 15:48:51 +02007289
7290 /*
7291 * SDM 3: 24.11.5
7292 * The first 4 bytes of VMXON region contain the supported
7293 * VMCS revision identifier
7294 *
7295 * Note - IA32_VMX_BASIC[48] will never be 1 for the nested case;
7296 * which replaces physical address width with 32
7297 */
7298 if (!PAGE_ALIGNED(vmptr) || (vmptr >> cpuid_maxphyaddr(vcpu))) {
7299 nested_vmx_failInvalid(vcpu);
7300 return kvm_skip_emulated_instruction(vcpu);
7301 }
7302
David Hildenbrand5e2f30b2017-08-03 18:11:04 +02007303 page = kvm_vcpu_gpa_to_page(vcpu, vmptr);
7304 if (is_error_page(page)) {
Radim Krčmářcbf71272017-05-19 15:48:51 +02007305 nested_vmx_failInvalid(vcpu);
7306 return kvm_skip_emulated_instruction(vcpu);
7307 }
7308 if (*(u32 *)kmap(page) != VMCS12_REVISION) {
7309 kunmap(page);
David Hildenbrand53a70da2017-08-03 18:11:05 +02007310 kvm_release_page_clean(page);
Radim Krčmářcbf71272017-05-19 15:48:51 +02007311 nested_vmx_failInvalid(vcpu);
7312 return kvm_skip_emulated_instruction(vcpu);
7313 }
7314 kunmap(page);
David Hildenbrand53a70da2017-08-03 18:11:05 +02007315 kvm_release_page_clean(page);
Radim Krčmářcbf71272017-05-19 15:48:51 +02007316
7317 vmx->nested.vmxon_ptr = vmptr;
Jim Mattsone29acc52016-11-30 12:03:43 -08007318 ret = enter_vmx_operation(vcpu);
7319 if (ret)
7320 return ret;
Nadav Har'Elec378ae2011-05-25 23:02:54 +03007321
Arthur Chunqi Lia25eb112013-07-04 15:03:33 +08007322 nested_vmx_succeed(vcpu);
Kyle Huey6affcbe2016-11-29 12:40:40 -08007323 return kvm_skip_emulated_instruction(vcpu);
Nadav Har'Elec378ae2011-05-25 23:02:54 +03007324}
7325
7326/*
7327 * Intel's VMX Instruction Reference specifies a common set of prerequisites
7328 * for running VMX instructions (except VMXON, whose prerequisites are
7329 * slightly different). It also specifies what exception to inject otherwise.
Jim Mattson70f3aac2017-04-26 08:53:46 -07007330 * Note that many of these exceptions have priority over VM exits, so they
7331 * don't have to be checked again here.
Nadav Har'Elec378ae2011-05-25 23:02:54 +03007332 */
7333static int nested_vmx_check_permission(struct kvm_vcpu *vcpu)
7334{
Jim Mattson70f3aac2017-04-26 08:53:46 -07007335 if (!to_vmx(vcpu)->nested.vmxon) {
Nadav Har'Elec378ae2011-05-25 23:02:54 +03007336 kvm_queue_exception(vcpu, UD_VECTOR);
7337 return 0;
7338 }
Nadav Har'Elec378ae2011-05-25 23:02:54 +03007339 return 1;
7340}
7341
David Matlack8ca44e82017-08-01 14:00:39 -07007342static void vmx_disable_shadow_vmcs(struct vcpu_vmx *vmx)
7343{
7344 vmcs_clear_bits(SECONDARY_VM_EXEC_CONTROL, SECONDARY_EXEC_SHADOW_VMCS);
7345 vmcs_write64(VMCS_LINK_POINTER, -1ull);
7346}
7347
Abel Gordone7953d72013-04-18 14:37:55 +03007348static inline void nested_release_vmcs12(struct vcpu_vmx *vmx)
7349{
Paolo Bonzini9a2a05b2014-07-17 11:55:46 +02007350 if (vmx->nested.current_vmptr == -1ull)
7351 return;
7352
Abel Gordon012f83c2013-04-18 14:39:25 +03007353 if (enable_shadow_vmcs) {
Paolo Bonzini9a2a05b2014-07-17 11:55:46 +02007354 /* copy to memory all shadowed fields in case
7355 they were modified */
7356 copy_shadow_to_vmcs12(vmx);
7357 vmx->nested.sync_shadow_vmcs = false;
David Matlack8ca44e82017-08-01 14:00:39 -07007358 vmx_disable_shadow_vmcs(vmx);
Abel Gordon012f83c2013-04-18 14:39:25 +03007359 }
Wincy Van705699a2015-02-03 23:58:17 +08007360 vmx->nested.posted_intr_nv = -1;
David Matlack4f2777b2016-07-13 17:16:37 -07007361
7362 /* Flush VMCS12 to guest memory */
Paolo Bonzini9f744c52017-07-27 15:54:46 +02007363 kvm_vcpu_write_guest_page(&vmx->vcpu,
7364 vmx->nested.current_vmptr >> PAGE_SHIFT,
7365 vmx->nested.cached_vmcs12, 0, VMCS12_SIZE);
David Matlack4f2777b2016-07-13 17:16:37 -07007366
Paolo Bonzini9a2a05b2014-07-17 11:55:46 +02007367 vmx->nested.current_vmptr = -1ull;
Abel Gordone7953d72013-04-18 14:37:55 +03007368}
7369
Nadav Har'Elec378ae2011-05-25 23:02:54 +03007370/*
7371 * Free whatever needs to be freed from vmx->nested when L1 goes down, or
7372 * just stops using VMX.
7373 */
7374static void free_nested(struct vcpu_vmx *vmx)
7375{
7376 if (!vmx->nested.vmxon)
7377 return;
Paolo Bonzini9a2a05b2014-07-17 11:55:46 +02007378
Nadav Har'Elec378ae2011-05-25 23:02:54 +03007379 vmx->nested.vmxon = false;
Wanpeng Li5c614b32015-10-13 09:18:36 -07007380 free_vpid(vmx->nested.vpid02);
David Matlack8ca44e82017-08-01 14:00:39 -07007381 vmx->nested.posted_intr_nv = -1;
7382 vmx->nested.current_vmptr = -1ull;
Radim Krčmářd048c092016-08-08 20:16:22 +02007383 if (vmx->nested.msr_bitmap) {
7384 free_page((unsigned long)vmx->nested.msr_bitmap);
7385 vmx->nested.msr_bitmap = NULL;
7386 }
Jim Mattson355f4fb2016-10-28 08:29:39 -07007387 if (enable_shadow_vmcs) {
David Matlack8ca44e82017-08-01 14:00:39 -07007388 vmx_disable_shadow_vmcs(vmx);
Jim Mattson355f4fb2016-10-28 08:29:39 -07007389 vmcs_clear(vmx->vmcs01.shadow_vmcs);
7390 free_vmcs(vmx->vmcs01.shadow_vmcs);
7391 vmx->vmcs01.shadow_vmcs = NULL;
7392 }
David Matlack4f2777b2016-07-13 17:16:37 -07007393 kfree(vmx->nested.cached_vmcs12);
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03007394 /* Unpin physical memory we referred to in current vmcs02 */
7395 if (vmx->nested.apic_access_page) {
David Hildenbrand53a70da2017-08-03 18:11:05 +02007396 kvm_release_page_dirty(vmx->nested.apic_access_page);
Paolo Bonzini48d89b92014-08-26 13:27:46 +02007397 vmx->nested.apic_access_page = NULL;
Nadav Har'Elfe3ef052011-05-25 23:10:02 +03007398 }
Wanpeng Lia7c0b072014-08-21 19:46:50 +08007399 if (vmx->nested.virtual_apic_page) {
David Hildenbrand53a70da2017-08-03 18:11:05 +02007400 kvm_release_page_dirty(vmx->nested.virtual_apic_page);
Paolo Bonzini48d89b92014-08-26 13:27:46 +02007401 vmx->nested.virtual_apic_page = NULL;
Wanpeng Lia7c0b072014-08-21 19:46:50 +08007402 }
Wincy Van705699a2015-02-03 23:58:17 +08007403 if (vmx->nested.pi_desc_page) {
7404 kunmap(vmx->nested.pi_desc_page);
David Hildenbrand53a70da2017-08-03 18:11:05 +02007405 kvm_release_page_dirty(vmx->nested.pi_desc_page);
Wincy Van705699a2015-02-03 23:58:17 +08007406 vmx->nested.pi_desc_page = NULL;
7407 vmx->nested.pi_desc = NULL;
7408 }
Nadav Har'Elff2f6fe2011-05-25 23:05:27 +03007409
7410 nested_free_all_saved_vmcss(vmx);
Nadav Har'Elec378ae2011-05-25 23:02:54 +03007411}
7412
7413/* Emulate the VMXOFF instruction */
7414static int handle_vmoff(struct kvm_vcpu *vcpu)
7415{
7416 if (!nested_vmx_check_permission(vcpu))
7417 return 1;
7418 free_nested(to_vmx(vcpu));
Arthur Chunqi Lia25eb112013-07-04 15:03:33 +08007419 nested_vmx_succeed(vcpu);
Kyle Huey6affcbe2016-11-29 12:40:40 -08007420 return kvm_skip_emulated_instruction(vcpu);
Nadav Har'Elec378ae2011-05-25 23:02:54 +03007421}
7422
Nadav Har'El27d6c862011-05-25 23:06:59 +03007423/* Emulate the VMCLEAR instruction */
7424static int handle_vmclear(struct kvm_vcpu *vcpu)
7425{
7426 struct vcpu_vmx *vmx = to_vmx(vcpu);
Jim Mattson587d7e722017-03-02 12:41:48 -08007427 u32 zero = 0;
Nadav Har'El27d6c862011-05-25 23:06:59 +03007428 gpa_t vmptr;
Nadav Har'El27d6c862011-05-25 23:06:59 +03007429
7430 if (!nested_vmx_check_permission(vcpu))
7431 return 1;
7432
Radim Krčmářcbf71272017-05-19 15:48:51 +02007433 if (nested_vmx_get_vmptr(vcpu, &vmptr))
Nadav Har'El27d6c862011-05-25 23:06:59 +03007434 return 1;
7435
Radim Krčmářcbf71272017-05-19 15:48:51 +02007436 if (!PAGE_ALIGNED(vmptr) || (vmptr >> cpuid_maxphyaddr(vcpu))) {
7437 nested_vmx_failValid(vcpu, VMXERR_VMCLEAR_INVALID_ADDRESS);
7438 return kvm_skip_emulated_instruction(vcpu);
7439 }
7440
7441 if (vmptr == vmx->nested.vmxon_ptr) {
7442 nested_vmx_failValid(vcpu, VMXERR_VMCLEAR_VMXON_POINTER);
7443 return kvm_skip_emulated_instruction(vcpu);
7444 }
7445
Paolo Bonzini9a2a05b2014-07-17 11:55:46 +02007446 if (vmptr == vmx->nested.current_vmptr)
Abel Gordone7953d72013-04-18 14:37:55 +03007447 nested_release_vmcs12(vmx);
Nadav Har'El27d6c862011-05-25 23:06:59 +03007448
Jim Mattson587d7e722017-03-02 12:41:48 -08007449 kvm_vcpu_write_guest(vcpu,
7450 vmptr + offsetof(struct vmcs12, launch_state),
7451 &zero, sizeof(zero));
Nadav Har'El27d6c862011-05-25 23:06:59 +03007452
7453 nested_free_vmcs02(vmx, vmptr);
7454
Nadav Har'El27d6c862011-05-25 23:06:59 +03007455 nested_vmx_succeed(vcpu);
Kyle Huey6affcbe2016-11-29 12:40:40 -08007456 return kvm_skip_emulated_instruction(vcpu);
Nadav Har'El27d6c862011-05-25 23:06:59 +03007457}
7458
Nadav Har'Elcd232ad2011-05-25 23:10:33 +03007459static int nested_vmx_run(struct kvm_vcpu *vcpu, bool launch);
7460
7461/* Emulate the VMLAUNCH instruction */
7462static int handle_vmlaunch(struct kvm_vcpu *vcpu)
7463{
7464 return nested_vmx_run(vcpu, true);
7465}
7466
7467/* Emulate the VMRESUME instruction */
7468static int handle_vmresume(struct kvm_vcpu *vcpu)
7469{
7470
7471 return nested_vmx_run(vcpu, false);
7472}
7473
Nadav Har'El49f705c2011-05-25 23:08:30 +03007474/*
7475 * Read a vmcs12 field. Since these can have varying lengths and we return
7476 * one type, we chose the biggest type (u64) and zero-extend the return value
7477 * to that size. Note that the caller, handle_vmread, might need to use only
7478 * some of the bits we return here (e.g., on 32-bit guests, only 32 bits of
7479 * 64-bit fields are to be returned).
7480 */
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007481static inline int vmcs12_read_any(struct kvm_vcpu *vcpu,
7482 unsigned long field, u64 *ret)
Nadav Har'El49f705c2011-05-25 23:08:30 +03007483{
7484 short offset = vmcs_field_to_offset(field);
7485 char *p;
7486
7487 if (offset < 0)
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007488 return offset;
Nadav Har'El49f705c2011-05-25 23:08:30 +03007489
7490 p = ((char *)(get_vmcs12(vcpu))) + offset;
7491
7492 switch (vmcs_field_type(field)) {
7493 case VMCS_FIELD_TYPE_NATURAL_WIDTH:
7494 *ret = *((natural_width *)p);
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007495 return 0;
Nadav Har'El49f705c2011-05-25 23:08:30 +03007496 case VMCS_FIELD_TYPE_U16:
7497 *ret = *((u16 *)p);
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007498 return 0;
Nadav Har'El49f705c2011-05-25 23:08:30 +03007499 case VMCS_FIELD_TYPE_U32:
7500 *ret = *((u32 *)p);
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007501 return 0;
Nadav Har'El49f705c2011-05-25 23:08:30 +03007502 case VMCS_FIELD_TYPE_U64:
7503 *ret = *((u64 *)p);
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007504 return 0;
Nadav Har'El49f705c2011-05-25 23:08:30 +03007505 default:
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007506 WARN_ON(1);
7507 return -ENOENT;
Nadav Har'El49f705c2011-05-25 23:08:30 +03007508 }
7509}
7510
Abel Gordon20b97fe2013-04-18 14:36:25 +03007511
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007512static inline int vmcs12_write_any(struct kvm_vcpu *vcpu,
7513 unsigned long field, u64 field_value){
Abel Gordon20b97fe2013-04-18 14:36:25 +03007514 short offset = vmcs_field_to_offset(field);
7515 char *p = ((char *) get_vmcs12(vcpu)) + offset;
7516 if (offset < 0)
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007517 return offset;
Abel Gordon20b97fe2013-04-18 14:36:25 +03007518
7519 switch (vmcs_field_type(field)) {
7520 case VMCS_FIELD_TYPE_U16:
7521 *(u16 *)p = field_value;
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007522 return 0;
Abel Gordon20b97fe2013-04-18 14:36:25 +03007523 case VMCS_FIELD_TYPE_U32:
7524 *(u32 *)p = field_value;
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007525 return 0;
Abel Gordon20b97fe2013-04-18 14:36:25 +03007526 case VMCS_FIELD_TYPE_U64:
7527 *(u64 *)p = field_value;
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007528 return 0;
Abel Gordon20b97fe2013-04-18 14:36:25 +03007529 case VMCS_FIELD_TYPE_NATURAL_WIDTH:
7530 *(natural_width *)p = field_value;
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007531 return 0;
Abel Gordon20b97fe2013-04-18 14:36:25 +03007532 default:
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007533 WARN_ON(1);
7534 return -ENOENT;
Abel Gordon20b97fe2013-04-18 14:36:25 +03007535 }
7536
7537}
7538
Abel Gordon16f5b902013-04-18 14:38:25 +03007539static void copy_shadow_to_vmcs12(struct vcpu_vmx *vmx)
7540{
7541 int i;
7542 unsigned long field;
7543 u64 field_value;
Jim Mattson355f4fb2016-10-28 08:29:39 -07007544 struct vmcs *shadow_vmcs = vmx->vmcs01.shadow_vmcs;
Mathias Krausec2bae892013-06-26 20:36:21 +02007545 const unsigned long *fields = shadow_read_write_fields;
7546 const int num_fields = max_shadow_read_write_fields;
Abel Gordon16f5b902013-04-18 14:38:25 +03007547
Jan Kiszka282da872014-10-08 18:05:39 +02007548 preempt_disable();
7549
Abel Gordon16f5b902013-04-18 14:38:25 +03007550 vmcs_load(shadow_vmcs);
7551
7552 for (i = 0; i < num_fields; i++) {
7553 field = fields[i];
7554 switch (vmcs_field_type(field)) {
7555 case VMCS_FIELD_TYPE_U16:
7556 field_value = vmcs_read16(field);
7557 break;
7558 case VMCS_FIELD_TYPE_U32:
7559 field_value = vmcs_read32(field);
7560 break;
7561 case VMCS_FIELD_TYPE_U64:
7562 field_value = vmcs_read64(field);
7563 break;
7564 case VMCS_FIELD_TYPE_NATURAL_WIDTH:
7565 field_value = vmcs_readl(field);
7566 break;
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007567 default:
7568 WARN_ON(1);
7569 continue;
Abel Gordon16f5b902013-04-18 14:38:25 +03007570 }
7571 vmcs12_write_any(&vmx->vcpu, field, field_value);
7572 }
7573
7574 vmcs_clear(shadow_vmcs);
7575 vmcs_load(vmx->loaded_vmcs->vmcs);
Jan Kiszka282da872014-10-08 18:05:39 +02007576
7577 preempt_enable();
Abel Gordon16f5b902013-04-18 14:38:25 +03007578}
7579
Abel Gordonc3114422013-04-18 14:38:55 +03007580static void copy_vmcs12_to_shadow(struct vcpu_vmx *vmx)
7581{
Mathias Krausec2bae892013-06-26 20:36:21 +02007582 const unsigned long *fields[] = {
7583 shadow_read_write_fields,
7584 shadow_read_only_fields
Abel Gordonc3114422013-04-18 14:38:55 +03007585 };
Mathias Krausec2bae892013-06-26 20:36:21 +02007586 const int max_fields[] = {
Abel Gordonc3114422013-04-18 14:38:55 +03007587 max_shadow_read_write_fields,
7588 max_shadow_read_only_fields
7589 };
7590 int i, q;
7591 unsigned long field;
7592 u64 field_value = 0;
Jim Mattson355f4fb2016-10-28 08:29:39 -07007593 struct vmcs *shadow_vmcs = vmx->vmcs01.shadow_vmcs;
Abel Gordonc3114422013-04-18 14:38:55 +03007594
7595 vmcs_load(shadow_vmcs);
7596
Mathias Krausec2bae892013-06-26 20:36:21 +02007597 for (q = 0; q < ARRAY_SIZE(fields); q++) {
Abel Gordonc3114422013-04-18 14:38:55 +03007598 for (i = 0; i < max_fields[q]; i++) {
7599 field = fields[q][i];
7600 vmcs12_read_any(&vmx->vcpu, field, &field_value);
7601
7602 switch (vmcs_field_type(field)) {
7603 case VMCS_FIELD_TYPE_U16:
7604 vmcs_write16(field, (u16)field_value);
7605 break;
7606 case VMCS_FIELD_TYPE_U32:
7607 vmcs_write32(field, (u32)field_value);
7608 break;
7609 case VMCS_FIELD_TYPE_U64:
7610 vmcs_write64(field, (u64)field_value);
7611 break;
7612 case VMCS_FIELD_TYPE_NATURAL_WIDTH:
7613 vmcs_writel(field, (long)field_value);
7614 break;
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007615 default:
7616 WARN_ON(1);
7617 break;
Abel Gordonc3114422013-04-18 14:38:55 +03007618 }
7619 }
7620 }
7621
7622 vmcs_clear(shadow_vmcs);
7623 vmcs_load(vmx->loaded_vmcs->vmcs);
7624}
7625
Nadav Har'El49f705c2011-05-25 23:08:30 +03007626/*
7627 * VMX instructions which assume a current vmcs12 (i.e., that VMPTRLD was
7628 * used before) all generate the same failure when it is missing.
7629 */
7630static int nested_vmx_check_vmcs12(struct kvm_vcpu *vcpu)
7631{
7632 struct vcpu_vmx *vmx = to_vmx(vcpu);
7633 if (vmx->nested.current_vmptr == -1ull) {
7634 nested_vmx_failInvalid(vcpu);
Nadav Har'El49f705c2011-05-25 23:08:30 +03007635 return 0;
7636 }
7637 return 1;
7638}
7639
7640static int handle_vmread(struct kvm_vcpu *vcpu)
7641{
7642 unsigned long field;
7643 u64 field_value;
7644 unsigned long exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
7645 u32 vmx_instruction_info = vmcs_read32(VMX_INSTRUCTION_INFO);
7646 gva_t gva = 0;
7647
Kyle Hueyeb277562016-11-29 12:40:39 -08007648 if (!nested_vmx_check_permission(vcpu))
Nadav Har'El49f705c2011-05-25 23:08:30 +03007649 return 1;
7650
Kyle Huey6affcbe2016-11-29 12:40:40 -08007651 if (!nested_vmx_check_vmcs12(vcpu))
7652 return kvm_skip_emulated_instruction(vcpu);
Kyle Hueyeb277562016-11-29 12:40:39 -08007653
Nadav Har'El49f705c2011-05-25 23:08:30 +03007654 /* Decode instruction info and find the field to read */
Nadav Amit27e6fb52014-06-18 17:19:26 +03007655 field = kvm_register_readl(vcpu, (((vmx_instruction_info) >> 28) & 0xf));
Nadav Har'El49f705c2011-05-25 23:08:30 +03007656 /* Read the field, zero-extended to a u64 field_value */
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007657 if (vmcs12_read_any(vcpu, field, &field_value) < 0) {
Nadav Har'El49f705c2011-05-25 23:08:30 +03007658 nested_vmx_failValid(vcpu, VMXERR_UNSUPPORTED_VMCS_COMPONENT);
Kyle Huey6affcbe2016-11-29 12:40:40 -08007659 return kvm_skip_emulated_instruction(vcpu);
Nadav Har'El49f705c2011-05-25 23:08:30 +03007660 }
7661 /*
7662 * Now copy part of this value to register or memory, as requested.
7663 * Note that the number of bits actually copied is 32 or 64 depending
7664 * on the guest's mode (32 or 64 bit), not on the given field's length.
7665 */
7666 if (vmx_instruction_info & (1u << 10)) {
Nadav Amit27e6fb52014-06-18 17:19:26 +03007667 kvm_register_writel(vcpu, (((vmx_instruction_info) >> 3) & 0xf),
Nadav Har'El49f705c2011-05-25 23:08:30 +03007668 field_value);
7669 } else {
7670 if (get_vmx_mem_address(vcpu, exit_qualification,
Eugene Korenevskyf9eb4af2015-04-17 02:22:21 +00007671 vmx_instruction_info, true, &gva))
Nadav Har'El49f705c2011-05-25 23:08:30 +03007672 return 1;
Jim Mattson70f3aac2017-04-26 08:53:46 -07007673 /* _system ok, as hardware has verified cpl=0 */
Nadav Har'El49f705c2011-05-25 23:08:30 +03007674 kvm_write_guest_virt_system(&vcpu->arch.emulate_ctxt, gva,
7675 &field_value, (is_long_mode(vcpu) ? 8 : 4), NULL);
7676 }
7677
7678 nested_vmx_succeed(vcpu);
Kyle Huey6affcbe2016-11-29 12:40:40 -08007679 return kvm_skip_emulated_instruction(vcpu);
Nadav Har'El49f705c2011-05-25 23:08:30 +03007680}
7681
7682
7683static int handle_vmwrite(struct kvm_vcpu *vcpu)
7684{
7685 unsigned long field;
7686 gva_t gva;
7687 unsigned long exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
7688 u32 vmx_instruction_info = vmcs_read32(VMX_INSTRUCTION_INFO);
Nadav Har'El49f705c2011-05-25 23:08:30 +03007689 /* The value to write might be 32 or 64 bits, depending on L1's long
7690 * mode, and eventually we need to write that into a field of several
7691 * possible lengths. The code below first zero-extends the value to 64
Adam Buchbinder6a6256f2016-02-23 15:34:30 -08007692 * bit (field_value), and then copies only the appropriate number of
Nadav Har'El49f705c2011-05-25 23:08:30 +03007693 * bits into the vmcs12 field.
7694 */
7695 u64 field_value = 0;
7696 struct x86_exception e;
7697
Kyle Hueyeb277562016-11-29 12:40:39 -08007698 if (!nested_vmx_check_permission(vcpu))
Nadav Har'El49f705c2011-05-25 23:08:30 +03007699 return 1;
7700
Kyle Huey6affcbe2016-11-29 12:40:40 -08007701 if (!nested_vmx_check_vmcs12(vcpu))
7702 return kvm_skip_emulated_instruction(vcpu);
Kyle Hueyeb277562016-11-29 12:40:39 -08007703
Nadav Har'El49f705c2011-05-25 23:08:30 +03007704 if (vmx_instruction_info & (1u << 10))
Nadav Amit27e6fb52014-06-18 17:19:26 +03007705 field_value = kvm_register_readl(vcpu,
Nadav Har'El49f705c2011-05-25 23:08:30 +03007706 (((vmx_instruction_info) >> 3) & 0xf));
7707 else {
7708 if (get_vmx_mem_address(vcpu, exit_qualification,
Eugene Korenevskyf9eb4af2015-04-17 02:22:21 +00007709 vmx_instruction_info, false, &gva))
Nadav Har'El49f705c2011-05-25 23:08:30 +03007710 return 1;
7711 if (kvm_read_guest_virt(&vcpu->arch.emulate_ctxt, gva,
Nadav Amit27e6fb52014-06-18 17:19:26 +03007712 &field_value, (is_64_bit_mode(vcpu) ? 8 : 4), &e)) {
Nadav Har'El49f705c2011-05-25 23:08:30 +03007713 kvm_inject_page_fault(vcpu, &e);
7714 return 1;
7715 }
7716 }
7717
7718
Nadav Amit27e6fb52014-06-18 17:19:26 +03007719 field = kvm_register_readl(vcpu, (((vmx_instruction_info) >> 28) & 0xf));
Nadav Har'El49f705c2011-05-25 23:08:30 +03007720 if (vmcs_field_readonly(field)) {
7721 nested_vmx_failValid(vcpu,
7722 VMXERR_VMWRITE_READ_ONLY_VMCS_COMPONENT);
Kyle Huey6affcbe2016-11-29 12:40:40 -08007723 return kvm_skip_emulated_instruction(vcpu);
Nadav Har'El49f705c2011-05-25 23:08:30 +03007724 }
7725
Paolo Bonzinia2ae9df2014-11-04 18:31:19 +01007726 if (vmcs12_write_any(vcpu, field, field_value) < 0) {
Nadav Har'El49f705c2011-05-25 23:08:30 +03007727 nested_vmx_failValid(vcpu, VMXERR_UNSUPPORTED_VMCS_COMPONENT);
Kyle Huey6affcbe2016-11-29 12:40:40 -08007728 return kvm_skip_emulated_instruction(vcpu);
Nadav Har'El49f705c2011-05-25 23:08:30 +03007729 }
7730
7731 nested_vmx_succeed(vcpu);
Kyle Huey6affcbe2016-11-29 12:40:40 -08007732 return kvm_skip_emulated_instruction(vcpu);
Nadav Har'El49f705c2011-05-25 23:08:30 +03007733}
7734
Jim Mattsona8bc2842016-11-30 12:03:44 -08007735static void set_current_vmptr(struct vcpu_vmx *vmx, gpa_t vmptr)
7736{
7737 vmx->nested.current_vmptr = vmptr;
7738 if (enable_shadow_vmcs) {
7739 vmcs_set_bits(SECONDARY_VM_EXEC_CONTROL,
7740 SECONDARY_EXEC_SHADOW_VMCS);
7741 vmcs_write64(VMCS_LINK_POINTER,
7742 __pa(vmx->vmcs01.shadow_vmcs));
7743 vmx->nested.sync_shadow_vmcs = true;
7744 }
7745}
7746
Nadav Har'El63846662011-05-25 23:07:29 +03007747/* Emulate the VMPTRLD instruction */
7748static int handle_vmptrld(struct kvm_vcpu *vcpu)
7749{
7750 struct vcpu_vmx *vmx = to_vmx(vcpu);
Nadav Har'El63846662011-05-25 23:07:29 +03007751 gpa_t vmptr;
Nadav Har'El63846662011-05-25 23:07:29 +03007752
7753 if (!nested_vmx_check_permission(vcpu))
7754 return 1;
7755
Radim Krčmářcbf71272017-05-19 15:48:51 +02007756 if (nested_vmx_get_vmptr(vcpu, &vmptr))
Nadav Har'El63846662011-05-25 23:07:29 +03007757 return 1;
7758
Radim Krčmářcbf71272017-05-19 15:48:51 +02007759 if (!PAGE_ALIGNED(vmptr) || (vmptr >> cpuid_maxphyaddr(vcpu))) {
7760 nested_vmx_failValid(vcpu, VMXERR_VMPTRLD_INVALID_ADDRESS);
7761 return kvm_skip_emulated_instruction(vcpu);
7762 }
7763
7764 if (vmptr == vmx->nested.vmxon_ptr) {
7765 nested_vmx_failValid(vcpu, VMXERR_VMPTRLD_VMXON_POINTER);
7766 return kvm_skip_emulated_instruction(vcpu);
7767 }
7768
Nadav Har'El63846662011-05-25 23:07:29 +03007769 if (vmx->nested.current_vmptr != vmptr) {
7770 struct vmcs12 *new_vmcs12;
7771 struct page *page;
David Hildenbrand5e2f30b2017-08-03 18:11:04 +02007772 page = kvm_vcpu_gpa_to_page(vcpu, vmptr);
7773 if (is_error_page(page)) {
Nadav Har'El63846662011-05-25 23:07:29 +03007774 nested_vmx_failInvalid(vcpu);
Kyle Huey6affcbe2016-11-29 12:40:40 -08007775 return kvm_skip_emulated_instruction(vcpu);
Nadav Har'El63846662011-05-25 23:07:29 +03007776 }
7777 new_vmcs12 = kmap(page);
7778 if (new_vmcs12->revision_id != VMCS12_REVISION) {
7779 kunmap(page);
David Hildenbrand53a70da2017-08-03 18:11:05 +02007780 kvm_release_page_clean(page);
Nadav Har'El63846662011-05-25 23:07:29 +03007781 nested_vmx_failValid(vcpu,
7782 VMXERR_VMPTRLD_INCORRECT_VMCS_REVISION_ID);
Kyle Huey6affcbe2016-11-29 12:40:40 -08007783 return kvm_skip_emulated_instruction(vcpu);
Nadav Har'El63846662011-05-25 23:07:29 +03007784 }
Nadav Har'El63846662011-05-25 23:07:29 +03007785
Paolo Bonzini9a2a05b2014-07-17 11:55:46 +02007786 nested_release_vmcs12(vmx);
David Matlack4f2777b2016-07-13 17:16:37 -07007787 /*
7788 * Load VMCS12 from guest memory since it is not already
7789 * cached.
7790 */
Paolo Bonzini9f744c52017-07-27 15:54:46 +02007791 memcpy(vmx->nested.cached_vmcs12, new_vmcs12, VMCS12_SIZE);
7792 kunmap(page);
David Hildenbrand53a70da2017-08-03 18:11:05 +02007793 kvm_release_page_clean(page);
Paolo Bonzini9f744c52017-07-27 15:54:46 +02007794
Jim Mattsona8bc2842016-11-30 12:03:44 -08007795 set_current_vmptr(vmx, vmptr);
Nadav Har'El63846662011-05-25 23:07:29 +03007796 }
7797
7798 nested_vmx_succeed(vcpu);
Kyle Huey6affcbe2016-11-29 12:40:40 -08007799 return kvm_skip_emulated_instruction(vcpu);
Nadav Har'El63846662011-05-25 23:07:29 +03007800}
7801
Nadav Har'El6a4d7552011-05-25 23:08:00 +03007802/* Emulate the VMPTRST instruction */
7803static int handle_vmptrst(struct kvm_vcpu *vcpu)
7804{
7805 unsigned long exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
7806 u32 vmx_instruction_info = vmcs_read32(VMX_INSTRUCTION_INFO);
7807 gva_t vmcs_gva;
7808 struct x86_exception e;
7809
7810 if (!nested_vmx_check_permission(vcpu))
7811 return 1;
7812
7813 if (get_vmx_mem_address(vcpu, exit_qualification,
Eugene Korenevskyf9eb4af2015-04-17 02:22:21 +00007814 vmx_instruction_info, true, &vmcs_gva))
Nadav Har'El6a4d7552011-05-25 23:08:00 +03007815 return 1;
Jim Mattson70f3aac2017-04-26 08:53:46 -07007816 /* ok to use *_system, as hardware has verified cpl=0 */
Nadav Har'El6a4d7552011-05-25 23:08:00 +03007817 if (kvm_write_guest_virt_system(&vcpu->arch.emulate_ctxt, vmcs_gva,
7818 (void *)&to_vmx(vcpu)->nested.current_vmptr,
7819 sizeof(u64), &e)) {
7820 kvm_inject_page_fault(vcpu, &e);
7821 return 1;
7822 }
7823 nested_vmx_succeed(vcpu);
Kyle Huey6affcbe2016-11-29 12:40:40 -08007824 return kvm_skip_emulated_instruction(vcpu);
Nadav Har'El6a4d7552011-05-25 23:08:00 +03007825}
7826
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03007827/* Emulate the INVEPT instruction */
7828static int handle_invept(struct kvm_vcpu *vcpu)
7829{
Wincy Vanb9c237b2015-02-03 23:56:30 +08007830 struct vcpu_vmx *vmx = to_vmx(vcpu);
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03007831 u32 vmx_instruction_info, types;
7832 unsigned long type;
7833 gva_t gva;
7834 struct x86_exception e;
7835 struct {
7836 u64 eptp, gpa;
7837 } operand;
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03007838
Wincy Vanb9c237b2015-02-03 23:56:30 +08007839 if (!(vmx->nested.nested_vmx_secondary_ctls_high &
7840 SECONDARY_EXEC_ENABLE_EPT) ||
7841 !(vmx->nested.nested_vmx_ept_caps & VMX_EPT_INVEPT_BIT)) {
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03007842 kvm_queue_exception(vcpu, UD_VECTOR);
7843 return 1;
7844 }
7845
7846 if (!nested_vmx_check_permission(vcpu))
7847 return 1;
7848
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03007849 vmx_instruction_info = vmcs_read32(VMX_INSTRUCTION_INFO);
Nadav Amit27e6fb52014-06-18 17:19:26 +03007850 type = kvm_register_readl(vcpu, (vmx_instruction_info >> 28) & 0xf);
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03007851
Wincy Vanb9c237b2015-02-03 23:56:30 +08007852 types = (vmx->nested.nested_vmx_ept_caps >> VMX_EPT_EXTENT_SHIFT) & 6;
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03007853
Jim Mattson85c856b2016-10-26 08:38:38 -07007854 if (type >= 32 || !(types & (1 << type))) {
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03007855 nested_vmx_failValid(vcpu,
7856 VMXERR_INVALID_OPERAND_TO_INVEPT_INVVPID);
Kyle Huey6affcbe2016-11-29 12:40:40 -08007857 return kvm_skip_emulated_instruction(vcpu);
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03007858 }
7859
7860 /* According to the Intel VMX instruction reference, the memory
7861 * operand is read even if it isn't needed (e.g., for type==global)
7862 */
7863 if (get_vmx_mem_address(vcpu, vmcs_readl(EXIT_QUALIFICATION),
Eugene Korenevskyf9eb4af2015-04-17 02:22:21 +00007864 vmx_instruction_info, false, &gva))
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03007865 return 1;
7866 if (kvm_read_guest_virt(&vcpu->arch.emulate_ctxt, gva, &operand,
7867 sizeof(operand), &e)) {
7868 kvm_inject_page_fault(vcpu, &e);
7869 return 1;
7870 }
7871
7872 switch (type) {
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03007873 case VMX_EPT_EXTENT_GLOBAL:
Bandan Das45e11812016-08-02 16:32:36 -04007874 /*
7875 * TODO: track mappings and invalidate
7876 * single context requests appropriately
7877 */
7878 case VMX_EPT_EXTENT_CONTEXT:
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03007879 kvm_mmu_sync_roots(vcpu);
Liang Chen77c39132014-09-18 12:38:37 -04007880 kvm_make_request(KVM_REQ_TLB_FLUSH, vcpu);
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03007881 nested_vmx_succeed(vcpu);
7882 break;
7883 default:
7884 BUG_ON(1);
7885 break;
7886 }
7887
Kyle Huey6affcbe2016-11-29 12:40:40 -08007888 return kvm_skip_emulated_instruction(vcpu);
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03007889}
7890
Petr Matouseka642fc32014-09-23 20:22:30 +02007891static int handle_invvpid(struct kvm_vcpu *vcpu)
7892{
Wanpeng Li99b83ac2015-10-13 09:12:21 -07007893 struct vcpu_vmx *vmx = to_vmx(vcpu);
7894 u32 vmx_instruction_info;
7895 unsigned long type, types;
7896 gva_t gva;
7897 struct x86_exception e;
Jim Mattson40352602017-06-28 09:37:37 -07007898 struct {
7899 u64 vpid;
7900 u64 gla;
7901 } operand;
Wanpeng Li99b83ac2015-10-13 09:12:21 -07007902
7903 if (!(vmx->nested.nested_vmx_secondary_ctls_high &
7904 SECONDARY_EXEC_ENABLE_VPID) ||
7905 !(vmx->nested.nested_vmx_vpid_caps & VMX_VPID_INVVPID_BIT)) {
7906 kvm_queue_exception(vcpu, UD_VECTOR);
7907 return 1;
7908 }
7909
7910 if (!nested_vmx_check_permission(vcpu))
7911 return 1;
7912
7913 vmx_instruction_info = vmcs_read32(VMX_INSTRUCTION_INFO);
7914 type = kvm_register_readl(vcpu, (vmx_instruction_info >> 28) & 0xf);
7915
Jan Dakinevichbcdde302016-10-28 07:00:30 +03007916 types = (vmx->nested.nested_vmx_vpid_caps &
7917 VMX_VPID_EXTENT_SUPPORTED_MASK) >> 8;
Wanpeng Li99b83ac2015-10-13 09:12:21 -07007918
Jim Mattson85c856b2016-10-26 08:38:38 -07007919 if (type >= 32 || !(types & (1 << type))) {
Wanpeng Li99b83ac2015-10-13 09:12:21 -07007920 nested_vmx_failValid(vcpu,
7921 VMXERR_INVALID_OPERAND_TO_INVEPT_INVVPID);
Kyle Huey6affcbe2016-11-29 12:40:40 -08007922 return kvm_skip_emulated_instruction(vcpu);
Wanpeng Li99b83ac2015-10-13 09:12:21 -07007923 }
7924
7925 /* according to the intel vmx instruction reference, the memory
7926 * operand is read even if it isn't needed (e.g., for type==global)
7927 */
7928 if (get_vmx_mem_address(vcpu, vmcs_readl(EXIT_QUALIFICATION),
7929 vmx_instruction_info, false, &gva))
7930 return 1;
Jim Mattson40352602017-06-28 09:37:37 -07007931 if (kvm_read_guest_virt(&vcpu->arch.emulate_ctxt, gva, &operand,
7932 sizeof(operand), &e)) {
Wanpeng Li99b83ac2015-10-13 09:12:21 -07007933 kvm_inject_page_fault(vcpu, &e);
7934 return 1;
7935 }
Jim Mattson40352602017-06-28 09:37:37 -07007936 if (operand.vpid >> 16) {
7937 nested_vmx_failValid(vcpu,
7938 VMXERR_INVALID_OPERAND_TO_INVEPT_INVVPID);
7939 return kvm_skip_emulated_instruction(vcpu);
7940 }
Wanpeng Li99b83ac2015-10-13 09:12:21 -07007941
7942 switch (type) {
Jan Dakinevichbcdde302016-10-28 07:00:30 +03007943 case VMX_VPID_EXTENT_INDIVIDUAL_ADDR:
Yu Zhangfd8cb432017-08-24 20:27:56 +08007944 if (is_noncanonical_address(operand.gla, vcpu)) {
Jim Mattson40352602017-06-28 09:37:37 -07007945 nested_vmx_failValid(vcpu,
7946 VMXERR_INVALID_OPERAND_TO_INVEPT_INVVPID);
7947 return kvm_skip_emulated_instruction(vcpu);
7948 }
7949 /* fall through */
Paolo Bonzinief697a72016-03-18 16:58:38 +01007950 case VMX_VPID_EXTENT_SINGLE_CONTEXT:
Jan Dakinevichbcdde302016-10-28 07:00:30 +03007951 case VMX_VPID_EXTENT_SINGLE_NON_GLOBAL:
Jim Mattson40352602017-06-28 09:37:37 -07007952 if (!operand.vpid) {
Jan Dakinevichbcdde302016-10-28 07:00:30 +03007953 nested_vmx_failValid(vcpu,
7954 VMXERR_INVALID_OPERAND_TO_INVEPT_INVVPID);
Kyle Huey6affcbe2016-11-29 12:40:40 -08007955 return kvm_skip_emulated_instruction(vcpu);
Jan Dakinevichbcdde302016-10-28 07:00:30 +03007956 }
7957 break;
Wanpeng Li99b83ac2015-10-13 09:12:21 -07007958 case VMX_VPID_EXTENT_ALL_CONTEXT:
Wanpeng Li99b83ac2015-10-13 09:12:21 -07007959 break;
7960 default:
Jan Dakinevichbcdde302016-10-28 07:00:30 +03007961 WARN_ON_ONCE(1);
Kyle Huey6affcbe2016-11-29 12:40:40 -08007962 return kvm_skip_emulated_instruction(vcpu);
Wanpeng Li99b83ac2015-10-13 09:12:21 -07007963 }
7964
Jan Dakinevichbcdde302016-10-28 07:00:30 +03007965 __vmx_flush_tlb(vcpu, vmx->nested.vpid02);
7966 nested_vmx_succeed(vcpu);
7967
Kyle Huey6affcbe2016-11-29 12:40:40 -08007968 return kvm_skip_emulated_instruction(vcpu);
Petr Matouseka642fc32014-09-23 20:22:30 +02007969}
7970
Kai Huang843e4332015-01-28 10:54:28 +08007971static int handle_pml_full(struct kvm_vcpu *vcpu)
7972{
7973 unsigned long exit_qualification;
7974
7975 trace_kvm_pml_full(vcpu->vcpu_id);
7976
7977 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
7978
7979 /*
7980 * PML buffer FULL happened while executing iret from NMI,
7981 * "blocked by NMI" bit has to be set before next VM entry.
7982 */
7983 if (!(to_vmx(vcpu)->idt_vectoring_info & VECTORING_INFO_VALID_MASK) &&
Kai Huang843e4332015-01-28 10:54:28 +08007984 (exit_qualification & INTR_INFO_UNBLOCK_NMI))
7985 vmcs_set_bits(GUEST_INTERRUPTIBILITY_INFO,
7986 GUEST_INTR_STATE_NMI);
7987
7988 /*
7989 * PML buffer already flushed at beginning of VMEXIT. Nothing to do
7990 * here.., and there's no userspace involvement needed for PML.
7991 */
7992 return 1;
7993}
7994
Yunhong Jiang64672c92016-06-13 14:19:59 -07007995static int handle_preemption_timer(struct kvm_vcpu *vcpu)
7996{
7997 kvm_lapic_expired_hv_timer(vcpu);
7998 return 1;
7999}
8000
Bandan Das41ab9372017-08-03 15:54:43 -04008001static bool valid_ept_address(struct kvm_vcpu *vcpu, u64 address)
8002{
8003 struct vcpu_vmx *vmx = to_vmx(vcpu);
Bandan Das41ab9372017-08-03 15:54:43 -04008004 int maxphyaddr = cpuid_maxphyaddr(vcpu);
8005
8006 /* Check for memory type validity */
David Hildenbrandbb97a012017-08-10 23:15:28 +02008007 switch (address & VMX_EPTP_MT_MASK) {
8008 case VMX_EPTP_MT_UC:
Bandan Das41ab9372017-08-03 15:54:43 -04008009 if (!(vmx->nested.nested_vmx_ept_caps & VMX_EPTP_UC_BIT))
8010 return false;
8011 break;
David Hildenbrandbb97a012017-08-10 23:15:28 +02008012 case VMX_EPTP_MT_WB:
Bandan Das41ab9372017-08-03 15:54:43 -04008013 if (!(vmx->nested.nested_vmx_ept_caps & VMX_EPTP_WB_BIT))
8014 return false;
8015 break;
8016 default:
8017 return false;
8018 }
8019
David Hildenbrandbb97a012017-08-10 23:15:28 +02008020 /* only 4 levels page-walk length are valid */
8021 if ((address & VMX_EPTP_PWL_MASK) != VMX_EPTP_PWL_4)
Bandan Das41ab9372017-08-03 15:54:43 -04008022 return false;
8023
8024 /* Reserved bits should not be set */
8025 if (address >> maxphyaddr || ((address >> 7) & 0x1f))
8026 return false;
8027
8028 /* AD, if set, should be supported */
David Hildenbrandbb97a012017-08-10 23:15:28 +02008029 if (address & VMX_EPTP_AD_ENABLE_BIT) {
Bandan Das41ab9372017-08-03 15:54:43 -04008030 if (!(vmx->nested.nested_vmx_ept_caps & VMX_EPT_AD_BIT))
8031 return false;
8032 }
8033
8034 return true;
8035}
8036
8037static int nested_vmx_eptp_switching(struct kvm_vcpu *vcpu,
8038 struct vmcs12 *vmcs12)
8039{
8040 u32 index = vcpu->arch.regs[VCPU_REGS_RCX];
8041 u64 address;
8042 bool accessed_dirty;
8043 struct kvm_mmu *mmu = vcpu->arch.walk_mmu;
8044
8045 if (!nested_cpu_has_eptp_switching(vmcs12) ||
8046 !nested_cpu_has_ept(vmcs12))
8047 return 1;
8048
8049 if (index >= VMFUNC_EPTP_ENTRIES)
8050 return 1;
8051
8052
8053 if (kvm_vcpu_read_guest_page(vcpu, vmcs12->eptp_list_address >> PAGE_SHIFT,
8054 &address, index * 8, 8))
8055 return 1;
8056
David Hildenbrandbb97a012017-08-10 23:15:28 +02008057 accessed_dirty = !!(address & VMX_EPTP_AD_ENABLE_BIT);
Bandan Das41ab9372017-08-03 15:54:43 -04008058
8059 /*
8060 * If the (L2) guest does a vmfunc to the currently
8061 * active ept pointer, we don't have to do anything else
8062 */
8063 if (vmcs12->ept_pointer != address) {
8064 if (!valid_ept_address(vcpu, address))
8065 return 1;
8066
8067 kvm_mmu_unload(vcpu);
8068 mmu->ept_ad = accessed_dirty;
8069 mmu->base_role.ad_disabled = !accessed_dirty;
8070 vmcs12->ept_pointer = address;
8071 /*
8072 * TODO: Check what's the correct approach in case
8073 * mmu reload fails. Currently, we just let the next
8074 * reload potentially fail
8075 */
8076 kvm_mmu_reload(vcpu);
8077 }
8078
8079 return 0;
8080}
8081
Bandan Das2a499e42017-08-03 15:54:41 -04008082static int handle_vmfunc(struct kvm_vcpu *vcpu)
8083{
Bandan Das27c42a12017-08-03 15:54:42 -04008084 struct vcpu_vmx *vmx = to_vmx(vcpu);
8085 struct vmcs12 *vmcs12;
8086 u32 function = vcpu->arch.regs[VCPU_REGS_RAX];
8087
8088 /*
8089 * VMFUNC is only supported for nested guests, but we always enable the
8090 * secondary control for simplicity; for non-nested mode, fake that we
8091 * didn't by injecting #UD.
8092 */
8093 if (!is_guest_mode(vcpu)) {
8094 kvm_queue_exception(vcpu, UD_VECTOR);
8095 return 1;
8096 }
8097
8098 vmcs12 = get_vmcs12(vcpu);
8099 if ((vmcs12->vm_function_control & (1 << function)) == 0)
8100 goto fail;
Bandan Das41ab9372017-08-03 15:54:43 -04008101
8102 switch (function) {
8103 case 0:
8104 if (nested_vmx_eptp_switching(vcpu, vmcs12))
8105 goto fail;
8106 break;
8107 default:
8108 goto fail;
8109 }
8110 return kvm_skip_emulated_instruction(vcpu);
Bandan Das27c42a12017-08-03 15:54:42 -04008111
8112fail:
8113 nested_vmx_vmexit(vcpu, vmx->exit_reason,
8114 vmcs_read32(VM_EXIT_INTR_INFO),
8115 vmcs_readl(EXIT_QUALIFICATION));
Bandan Das2a499e42017-08-03 15:54:41 -04008116 return 1;
8117}
8118
Nadav Har'El0140cae2011-05-25 23:06:28 +03008119/*
Avi Kivity6aa8b732006-12-10 02:21:36 -08008120 * The exit handlers return 1 if the exit was handled fully and guest execution
8121 * may resume. Otherwise they set the kvm_run parameter to indicate what needs
8122 * to be done to userspace and return 0.
8123 */
Mathias Krause772e0312012-08-30 01:30:19 +02008124static int (*const kvm_vmx_exit_handlers[])(struct kvm_vcpu *vcpu) = {
Avi Kivity6aa8b732006-12-10 02:21:36 -08008125 [EXIT_REASON_EXCEPTION_NMI] = handle_exception,
8126 [EXIT_REASON_EXTERNAL_INTERRUPT] = handle_external_interrupt,
Avi Kivity988ad742007-02-12 00:54:36 -08008127 [EXIT_REASON_TRIPLE_FAULT] = handle_triple_fault,
Sheng Yangf08864b2008-05-15 18:23:25 +08008128 [EXIT_REASON_NMI_WINDOW] = handle_nmi_window,
Avi Kivity6aa8b732006-12-10 02:21:36 -08008129 [EXIT_REASON_IO_INSTRUCTION] = handle_io,
Avi Kivity6aa8b732006-12-10 02:21:36 -08008130 [EXIT_REASON_CR_ACCESS] = handle_cr,
8131 [EXIT_REASON_DR_ACCESS] = handle_dr,
8132 [EXIT_REASON_CPUID] = handle_cpuid,
8133 [EXIT_REASON_MSR_READ] = handle_rdmsr,
8134 [EXIT_REASON_MSR_WRITE] = handle_wrmsr,
8135 [EXIT_REASON_PENDING_INTERRUPT] = handle_interrupt_window,
8136 [EXIT_REASON_HLT] = handle_halt,
Gleb Natapovec25d5e2010-11-01 15:35:01 +02008137 [EXIT_REASON_INVD] = handle_invd,
Marcelo Tosattia7052892008-09-23 13:18:35 -03008138 [EXIT_REASON_INVLPG] = handle_invlpg,
Avi Kivityfee84b02011-11-10 14:57:25 +02008139 [EXIT_REASON_RDPMC] = handle_rdpmc,
Ingo Molnarc21415e2007-02-19 14:37:47 +02008140 [EXIT_REASON_VMCALL] = handle_vmcall,
Nadav Har'El27d6c862011-05-25 23:06:59 +03008141 [EXIT_REASON_VMCLEAR] = handle_vmclear,
Nadav Har'Elcd232ad2011-05-25 23:10:33 +03008142 [EXIT_REASON_VMLAUNCH] = handle_vmlaunch,
Nadav Har'El63846662011-05-25 23:07:29 +03008143 [EXIT_REASON_VMPTRLD] = handle_vmptrld,
Nadav Har'El6a4d7552011-05-25 23:08:00 +03008144 [EXIT_REASON_VMPTRST] = handle_vmptrst,
Nadav Har'El49f705c2011-05-25 23:08:30 +03008145 [EXIT_REASON_VMREAD] = handle_vmread,
Nadav Har'Elcd232ad2011-05-25 23:10:33 +03008146 [EXIT_REASON_VMRESUME] = handle_vmresume,
Nadav Har'El49f705c2011-05-25 23:08:30 +03008147 [EXIT_REASON_VMWRITE] = handle_vmwrite,
Nadav Har'Elec378ae2011-05-25 23:02:54 +03008148 [EXIT_REASON_VMOFF] = handle_vmoff,
8149 [EXIT_REASON_VMON] = handle_vmon,
Sheng Yangf78e0e22007-10-29 09:40:42 +08008150 [EXIT_REASON_TPR_BELOW_THRESHOLD] = handle_tpr_below_threshold,
8151 [EXIT_REASON_APIC_ACCESS] = handle_apic_access,
Yang Zhang83d4c282013-01-25 10:18:49 +08008152 [EXIT_REASON_APIC_WRITE] = handle_apic_write,
Yang Zhangc7c9c562013-01-25 10:18:51 +08008153 [EXIT_REASON_EOI_INDUCED] = handle_apic_eoi_induced,
Eddie Donge5edaa02007-11-11 12:28:35 +02008154 [EXIT_REASON_WBINVD] = handle_wbinvd,
Dexuan Cui2acf9232010-06-10 11:27:12 +08008155 [EXIT_REASON_XSETBV] = handle_xsetbv,
Izik Eidus37817f22008-03-24 23:14:53 +02008156 [EXIT_REASON_TASK_SWITCH] = handle_task_switch,
Andi Kleena0861c02009-06-08 17:37:09 +08008157 [EXIT_REASON_MCE_DURING_VMENTRY] = handle_machine_check,
Marcelo Tosatti68f89402009-06-11 12:07:43 -03008158 [EXIT_REASON_EPT_VIOLATION] = handle_ept_violation,
8159 [EXIT_REASON_EPT_MISCONFIG] = handle_ept_misconfig,
Zhai, Edwin4b8d54f2009-10-09 18:03:20 +08008160 [EXIT_REASON_PAUSE_INSTRUCTION] = handle_pause,
Gabriel L. Somlo87c00572014-05-07 16:52:13 -04008161 [EXIT_REASON_MWAIT_INSTRUCTION] = handle_mwait,
Mihai Donțu5f3d45e2015-07-05 20:08:57 +03008162 [EXIT_REASON_MONITOR_TRAP_FLAG] = handle_monitor_trap,
Gabriel L. Somlo87c00572014-05-07 16:52:13 -04008163 [EXIT_REASON_MONITOR_INSTRUCTION] = handle_monitor,
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03008164 [EXIT_REASON_INVEPT] = handle_invept,
Petr Matouseka642fc32014-09-23 20:22:30 +02008165 [EXIT_REASON_INVVPID] = handle_invvpid,
Jim Mattson45ec3682017-08-23 16:32:04 -07008166 [EXIT_REASON_RDRAND] = handle_invalid_op,
Jim Mattson75f4fc82017-08-23 16:32:03 -07008167 [EXIT_REASON_RDSEED] = handle_invalid_op,
Wanpeng Lif53cd632014-12-02 19:14:58 +08008168 [EXIT_REASON_XSAVES] = handle_xsaves,
8169 [EXIT_REASON_XRSTORS] = handle_xrstors,
Kai Huang843e4332015-01-28 10:54:28 +08008170 [EXIT_REASON_PML_FULL] = handle_pml_full,
Bandan Das2a499e42017-08-03 15:54:41 -04008171 [EXIT_REASON_VMFUNC] = handle_vmfunc,
Yunhong Jiang64672c92016-06-13 14:19:59 -07008172 [EXIT_REASON_PREEMPTION_TIMER] = handle_preemption_timer,
Avi Kivity6aa8b732006-12-10 02:21:36 -08008173};
8174
8175static const int kvm_vmx_max_exit_handlers =
Robert P. J. Day50a34852007-06-03 13:35:29 -04008176 ARRAY_SIZE(kvm_vmx_exit_handlers);
Avi Kivity6aa8b732006-12-10 02:21:36 -08008177
Jan Kiszka908a7bd2013-02-18 11:21:16 +01008178static bool nested_vmx_exit_handled_io(struct kvm_vcpu *vcpu,
8179 struct vmcs12 *vmcs12)
8180{
8181 unsigned long exit_qualification;
8182 gpa_t bitmap, last_bitmap;
8183 unsigned int port;
8184 int size;
8185 u8 b;
8186
Jan Kiszka908a7bd2013-02-18 11:21:16 +01008187 if (!nested_cpu_has(vmcs12, CPU_BASED_USE_IO_BITMAPS))
Zhihui Zhang2f0a6392013-12-30 15:56:29 -05008188 return nested_cpu_has(vmcs12, CPU_BASED_UNCOND_IO_EXITING);
Jan Kiszka908a7bd2013-02-18 11:21:16 +01008189
8190 exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
8191
8192 port = exit_qualification >> 16;
8193 size = (exit_qualification & 7) + 1;
8194
8195 last_bitmap = (gpa_t)-1;
8196 b = -1;
8197
8198 while (size > 0) {
8199 if (port < 0x8000)
8200 bitmap = vmcs12->io_bitmap_a;
8201 else if (port < 0x10000)
8202 bitmap = vmcs12->io_bitmap_b;
8203 else
Joe Perches1d804d02015-03-30 16:46:09 -07008204 return true;
Jan Kiszka908a7bd2013-02-18 11:21:16 +01008205 bitmap += (port & 0x7fff) / 8;
8206
8207 if (last_bitmap != bitmap)
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02008208 if (kvm_vcpu_read_guest(vcpu, bitmap, &b, 1))
Joe Perches1d804d02015-03-30 16:46:09 -07008209 return true;
Jan Kiszka908a7bd2013-02-18 11:21:16 +01008210 if (b & (1 << (port & 7)))
Joe Perches1d804d02015-03-30 16:46:09 -07008211 return true;
Jan Kiszka908a7bd2013-02-18 11:21:16 +01008212
8213 port++;
8214 size--;
8215 last_bitmap = bitmap;
8216 }
8217
Joe Perches1d804d02015-03-30 16:46:09 -07008218 return false;
Jan Kiszka908a7bd2013-02-18 11:21:16 +01008219}
8220
Nadav Har'El644d7112011-05-25 23:12:35 +03008221/*
8222 * Return 1 if we should exit from L2 to L1 to handle an MSR access access,
8223 * rather than handle it ourselves in L0. I.e., check whether L1 expressed
8224 * disinterest in the current event (read or write a specific MSR) by using an
8225 * MSR bitmap. This may be the case even when L0 doesn't use MSR bitmaps.
8226 */
8227static bool nested_vmx_exit_handled_msr(struct kvm_vcpu *vcpu,
8228 struct vmcs12 *vmcs12, u32 exit_reason)
8229{
8230 u32 msr_index = vcpu->arch.regs[VCPU_REGS_RCX];
8231 gpa_t bitmap;
8232
Jan Kiszkacbd29cb2013-02-11 12:19:28 +01008233 if (!nested_cpu_has(vmcs12, CPU_BASED_USE_MSR_BITMAPS))
Joe Perches1d804d02015-03-30 16:46:09 -07008234 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03008235
8236 /*
8237 * The MSR_BITMAP page is divided into four 1024-byte bitmaps,
8238 * for the four combinations of read/write and low/high MSR numbers.
8239 * First we need to figure out which of the four to use:
8240 */
8241 bitmap = vmcs12->msr_bitmap;
8242 if (exit_reason == EXIT_REASON_MSR_WRITE)
8243 bitmap += 2048;
8244 if (msr_index >= 0xc0000000) {
8245 msr_index -= 0xc0000000;
8246 bitmap += 1024;
8247 }
8248
8249 /* Then read the msr_index'th bit from this bitmap: */
8250 if (msr_index < 1024*8) {
8251 unsigned char b;
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02008252 if (kvm_vcpu_read_guest(vcpu, bitmap + msr_index/8, &b, 1))
Joe Perches1d804d02015-03-30 16:46:09 -07008253 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03008254 return 1 & (b >> (msr_index & 7));
8255 } else
Joe Perches1d804d02015-03-30 16:46:09 -07008256 return true; /* let L1 handle the wrong parameter */
Nadav Har'El644d7112011-05-25 23:12:35 +03008257}
8258
8259/*
8260 * Return 1 if we should exit from L2 to L1 to handle a CR access exit,
8261 * rather than handle it ourselves in L0. I.e., check if L1 wanted to
8262 * intercept (via guest_host_mask etc.) the current event.
8263 */
8264static bool nested_vmx_exit_handled_cr(struct kvm_vcpu *vcpu,
8265 struct vmcs12 *vmcs12)
8266{
8267 unsigned long exit_qualification = vmcs_readl(EXIT_QUALIFICATION);
8268 int cr = exit_qualification & 15;
Jan H. Schönherre1d39b12017-05-20 13:22:56 +02008269 int reg;
8270 unsigned long val;
Nadav Har'El644d7112011-05-25 23:12:35 +03008271
8272 switch ((exit_qualification >> 4) & 3) {
8273 case 0: /* mov to cr */
Jan H. Schönherre1d39b12017-05-20 13:22:56 +02008274 reg = (exit_qualification >> 8) & 15;
8275 val = kvm_register_readl(vcpu, reg);
Nadav Har'El644d7112011-05-25 23:12:35 +03008276 switch (cr) {
8277 case 0:
8278 if (vmcs12->cr0_guest_host_mask &
8279 (val ^ vmcs12->cr0_read_shadow))
Joe Perches1d804d02015-03-30 16:46:09 -07008280 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03008281 break;
8282 case 3:
8283 if ((vmcs12->cr3_target_count >= 1 &&
8284 vmcs12->cr3_target_value0 == val) ||
8285 (vmcs12->cr3_target_count >= 2 &&
8286 vmcs12->cr3_target_value1 == val) ||
8287 (vmcs12->cr3_target_count >= 3 &&
8288 vmcs12->cr3_target_value2 == val) ||
8289 (vmcs12->cr3_target_count >= 4 &&
8290 vmcs12->cr3_target_value3 == val))
Joe Perches1d804d02015-03-30 16:46:09 -07008291 return false;
Nadav Har'El644d7112011-05-25 23:12:35 +03008292 if (nested_cpu_has(vmcs12, CPU_BASED_CR3_LOAD_EXITING))
Joe Perches1d804d02015-03-30 16:46:09 -07008293 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03008294 break;
8295 case 4:
8296 if (vmcs12->cr4_guest_host_mask &
8297 (vmcs12->cr4_read_shadow ^ val))
Joe Perches1d804d02015-03-30 16:46:09 -07008298 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03008299 break;
8300 case 8:
8301 if (nested_cpu_has(vmcs12, CPU_BASED_CR8_LOAD_EXITING))
Joe Perches1d804d02015-03-30 16:46:09 -07008302 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03008303 break;
8304 }
8305 break;
8306 case 2: /* clts */
8307 if ((vmcs12->cr0_guest_host_mask & X86_CR0_TS) &&
8308 (vmcs12->cr0_read_shadow & X86_CR0_TS))
Joe Perches1d804d02015-03-30 16:46:09 -07008309 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03008310 break;
8311 case 1: /* mov from cr */
8312 switch (cr) {
8313 case 3:
8314 if (vmcs12->cpu_based_vm_exec_control &
8315 CPU_BASED_CR3_STORE_EXITING)
Joe Perches1d804d02015-03-30 16:46:09 -07008316 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03008317 break;
8318 case 8:
8319 if (vmcs12->cpu_based_vm_exec_control &
8320 CPU_BASED_CR8_STORE_EXITING)
Joe Perches1d804d02015-03-30 16:46:09 -07008321 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03008322 break;
8323 }
8324 break;
8325 case 3: /* lmsw */
8326 /*
8327 * lmsw can change bits 1..3 of cr0, and only set bit 0 of
8328 * cr0. Other attempted changes are ignored, with no exit.
8329 */
Jan H. Schönherre1d39b12017-05-20 13:22:56 +02008330 val = (exit_qualification >> LMSW_SOURCE_DATA_SHIFT) & 0x0f;
Nadav Har'El644d7112011-05-25 23:12:35 +03008331 if (vmcs12->cr0_guest_host_mask & 0xe &
8332 (val ^ vmcs12->cr0_read_shadow))
Joe Perches1d804d02015-03-30 16:46:09 -07008333 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03008334 if ((vmcs12->cr0_guest_host_mask & 0x1) &&
8335 !(vmcs12->cr0_read_shadow & 0x1) &&
8336 (val & 0x1))
Joe Perches1d804d02015-03-30 16:46:09 -07008337 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03008338 break;
8339 }
Joe Perches1d804d02015-03-30 16:46:09 -07008340 return false;
Nadav Har'El644d7112011-05-25 23:12:35 +03008341}
8342
8343/*
8344 * Return 1 if we should exit from L2 to L1 to handle an exit, or 0 if we
8345 * should handle it ourselves in L0 (and then continue L2). Only call this
8346 * when in is_guest_mode (L2).
8347 */
Paolo Bonzini7313c692017-07-27 10:31:25 +02008348static bool nested_vmx_exit_reflected(struct kvm_vcpu *vcpu, u32 exit_reason)
Nadav Har'El644d7112011-05-25 23:12:35 +03008349{
Nadav Har'El644d7112011-05-25 23:12:35 +03008350 u32 intr_info = vmcs_read32(VM_EXIT_INTR_INFO);
8351 struct vcpu_vmx *vmx = to_vmx(vcpu);
8352 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
8353
Jan Kiszka542060e2014-01-04 18:47:21 +01008354 trace_kvm_nested_vmexit(kvm_rip_read(vcpu), exit_reason,
8355 vmcs_readl(EXIT_QUALIFICATION),
8356 vmx->idt_vectoring_info,
8357 intr_info,
8358 vmcs_read32(VM_EXIT_INTR_ERROR_CODE),
8359 KVM_ISA_VMX);
8360
David Matlackc9f04402017-08-01 14:00:40 -07008361 /*
8362 * The host physical addresses of some pages of guest memory
8363 * are loaded into VMCS02 (e.g. L1's Virtual APIC Page). The CPU
8364 * may write to these pages via their host physical address while
8365 * L2 is running, bypassing any address-translation-based dirty
8366 * tracking (e.g. EPT write protection).
8367 *
8368 * Mark them dirty on every exit from L2 to prevent them from
8369 * getting out of sync with dirty tracking.
8370 */
8371 nested_mark_vmcs12_pages_dirty(vcpu);
8372
Nadav Har'El644d7112011-05-25 23:12:35 +03008373 if (vmx->nested.nested_run_pending)
Joe Perches1d804d02015-03-30 16:46:09 -07008374 return false;
Nadav Har'El644d7112011-05-25 23:12:35 +03008375
8376 if (unlikely(vmx->fail)) {
Jan Kiszkabd801582011-09-12 11:26:22 +02008377 pr_info_ratelimited("%s failed vm entry %x\n", __func__,
8378 vmcs_read32(VM_INSTRUCTION_ERROR));
Joe Perches1d804d02015-03-30 16:46:09 -07008379 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03008380 }
8381
8382 switch (exit_reason) {
8383 case EXIT_REASON_EXCEPTION_NMI:
Jim Mattsonef85b672016-12-12 11:01:37 -08008384 if (is_nmi(intr_info))
Joe Perches1d804d02015-03-30 16:46:09 -07008385 return false;
Nadav Har'El644d7112011-05-25 23:12:35 +03008386 else if (is_page_fault(intr_info))
Wanpeng Li52a5c152017-07-13 18:30:42 -07008387 return !vmx->vcpu.arch.apf.host_apf_reason && enable_ept;
Anthoine Bourgeoise504c902013-11-13 11:45:37 +01008388 else if (is_no_device(intr_info) &&
Paolo Bonziniccf98442014-02-27 22:54:11 +01008389 !(vmcs12->guest_cr0 & X86_CR0_TS))
Joe Perches1d804d02015-03-30 16:46:09 -07008390 return false;
Jan Kiszka6f054852016-02-09 20:15:18 +01008391 else if (is_debug(intr_info) &&
8392 vcpu->guest_debug &
8393 (KVM_GUESTDBG_SINGLESTEP | KVM_GUESTDBG_USE_HW_BP))
8394 return false;
8395 else if (is_breakpoint(intr_info) &&
8396 vcpu->guest_debug & KVM_GUESTDBG_USE_SW_BP)
8397 return false;
Nadav Har'El644d7112011-05-25 23:12:35 +03008398 return vmcs12->exception_bitmap &
8399 (1u << (intr_info & INTR_INFO_VECTOR_MASK));
8400 case EXIT_REASON_EXTERNAL_INTERRUPT:
Joe Perches1d804d02015-03-30 16:46:09 -07008401 return false;
Nadav Har'El644d7112011-05-25 23:12:35 +03008402 case EXIT_REASON_TRIPLE_FAULT:
Joe Perches1d804d02015-03-30 16:46:09 -07008403 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03008404 case EXIT_REASON_PENDING_INTERRUPT:
Jan Kiszka3b656cf2013-04-14 12:12:45 +02008405 return nested_cpu_has(vmcs12, CPU_BASED_VIRTUAL_INTR_PENDING);
Nadav Har'El644d7112011-05-25 23:12:35 +03008406 case EXIT_REASON_NMI_WINDOW:
Jan Kiszka3b656cf2013-04-14 12:12:45 +02008407 return nested_cpu_has(vmcs12, CPU_BASED_VIRTUAL_NMI_PENDING);
Nadav Har'El644d7112011-05-25 23:12:35 +03008408 case EXIT_REASON_TASK_SWITCH:
Joe Perches1d804d02015-03-30 16:46:09 -07008409 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03008410 case EXIT_REASON_CPUID:
Joe Perches1d804d02015-03-30 16:46:09 -07008411 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03008412 case EXIT_REASON_HLT:
8413 return nested_cpu_has(vmcs12, CPU_BASED_HLT_EXITING);
8414 case EXIT_REASON_INVD:
Joe Perches1d804d02015-03-30 16:46:09 -07008415 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03008416 case EXIT_REASON_INVLPG:
8417 return nested_cpu_has(vmcs12, CPU_BASED_INVLPG_EXITING);
8418 case EXIT_REASON_RDPMC:
8419 return nested_cpu_has(vmcs12, CPU_BASED_RDPMC_EXITING);
Paolo Bonzinia5f46452017-03-30 11:55:32 +02008420 case EXIT_REASON_RDRAND:
8421 return nested_cpu_has2(vmcs12, SECONDARY_EXEC_RDRAND);
8422 case EXIT_REASON_RDSEED:
8423 return nested_cpu_has2(vmcs12, SECONDARY_EXEC_RDSEED);
Jan Kiszkab3a2a902015-03-23 19:27:19 +01008424 case EXIT_REASON_RDTSC: case EXIT_REASON_RDTSCP:
Nadav Har'El644d7112011-05-25 23:12:35 +03008425 return nested_cpu_has(vmcs12, CPU_BASED_RDTSC_EXITING);
8426 case EXIT_REASON_VMCALL: case EXIT_REASON_VMCLEAR:
8427 case EXIT_REASON_VMLAUNCH: case EXIT_REASON_VMPTRLD:
8428 case EXIT_REASON_VMPTRST: case EXIT_REASON_VMREAD:
8429 case EXIT_REASON_VMRESUME: case EXIT_REASON_VMWRITE:
8430 case EXIT_REASON_VMOFF: case EXIT_REASON_VMON:
Petr Matouseka642fc32014-09-23 20:22:30 +02008431 case EXIT_REASON_INVEPT: case EXIT_REASON_INVVPID:
Nadav Har'El644d7112011-05-25 23:12:35 +03008432 /*
8433 * VMX instructions trap unconditionally. This allows L1 to
8434 * emulate them for its L2 guest, i.e., allows 3-level nesting!
8435 */
Joe Perches1d804d02015-03-30 16:46:09 -07008436 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03008437 case EXIT_REASON_CR_ACCESS:
8438 return nested_vmx_exit_handled_cr(vcpu, vmcs12);
8439 case EXIT_REASON_DR_ACCESS:
8440 return nested_cpu_has(vmcs12, CPU_BASED_MOV_DR_EXITING);
8441 case EXIT_REASON_IO_INSTRUCTION:
Jan Kiszka908a7bd2013-02-18 11:21:16 +01008442 return nested_vmx_exit_handled_io(vcpu, vmcs12);
Paolo Bonzini1b073042016-10-25 16:06:30 +02008443 case EXIT_REASON_GDTR_IDTR: case EXIT_REASON_LDTR_TR:
8444 return nested_cpu_has2(vmcs12, SECONDARY_EXEC_DESC);
Nadav Har'El644d7112011-05-25 23:12:35 +03008445 case EXIT_REASON_MSR_READ:
8446 case EXIT_REASON_MSR_WRITE:
8447 return nested_vmx_exit_handled_msr(vcpu, vmcs12, exit_reason);
8448 case EXIT_REASON_INVALID_STATE:
Joe Perches1d804d02015-03-30 16:46:09 -07008449 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03008450 case EXIT_REASON_MWAIT_INSTRUCTION:
8451 return nested_cpu_has(vmcs12, CPU_BASED_MWAIT_EXITING);
Mihai Donțu5f3d45e2015-07-05 20:08:57 +03008452 case EXIT_REASON_MONITOR_TRAP_FLAG:
8453 return nested_cpu_has(vmcs12, CPU_BASED_MONITOR_TRAP_FLAG);
Nadav Har'El644d7112011-05-25 23:12:35 +03008454 case EXIT_REASON_MONITOR_INSTRUCTION:
8455 return nested_cpu_has(vmcs12, CPU_BASED_MONITOR_EXITING);
8456 case EXIT_REASON_PAUSE_INSTRUCTION:
8457 return nested_cpu_has(vmcs12, CPU_BASED_PAUSE_EXITING) ||
8458 nested_cpu_has2(vmcs12,
8459 SECONDARY_EXEC_PAUSE_LOOP_EXITING);
8460 case EXIT_REASON_MCE_DURING_VMENTRY:
Joe Perches1d804d02015-03-30 16:46:09 -07008461 return false;
Nadav Har'El644d7112011-05-25 23:12:35 +03008462 case EXIT_REASON_TPR_BELOW_THRESHOLD:
Wanpeng Lia7c0b072014-08-21 19:46:50 +08008463 return nested_cpu_has(vmcs12, CPU_BASED_TPR_SHADOW);
Nadav Har'El644d7112011-05-25 23:12:35 +03008464 case EXIT_REASON_APIC_ACCESS:
8465 return nested_cpu_has2(vmcs12,
8466 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES);
Wincy Van82f0dd42015-02-03 23:57:18 +08008467 case EXIT_REASON_APIC_WRITE:
Wincy Van608406e2015-02-03 23:57:51 +08008468 case EXIT_REASON_EOI_INDUCED:
8469 /* apic_write and eoi_induced should exit unconditionally. */
Joe Perches1d804d02015-03-30 16:46:09 -07008470 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03008471 case EXIT_REASON_EPT_VIOLATION:
Nadav Har'El2b1be672013-08-05 11:07:19 +03008472 /*
8473 * L0 always deals with the EPT violation. If nested EPT is
8474 * used, and the nested mmu code discovers that the address is
8475 * missing in the guest EPT table (EPT12), the EPT violation
8476 * will be injected with nested_ept_inject_page_fault()
8477 */
Joe Perches1d804d02015-03-30 16:46:09 -07008478 return false;
Nadav Har'El644d7112011-05-25 23:12:35 +03008479 case EXIT_REASON_EPT_MISCONFIG:
Nadav Har'El2b1be672013-08-05 11:07:19 +03008480 /*
8481 * L2 never uses directly L1's EPT, but rather L0's own EPT
8482 * table (shadow on EPT) or a merged EPT table that L0 built
8483 * (EPT on EPT). So any problems with the structure of the
8484 * table is L0's fault.
8485 */
Joe Perches1d804d02015-03-30 16:46:09 -07008486 return false;
Paolo Bonzini90a2db62017-07-27 13:22:13 +02008487 case EXIT_REASON_INVPCID:
8488 return
8489 nested_cpu_has2(vmcs12, SECONDARY_EXEC_ENABLE_INVPCID) &&
8490 nested_cpu_has(vmcs12, CPU_BASED_INVLPG_EXITING);
Nadav Har'El644d7112011-05-25 23:12:35 +03008491 case EXIT_REASON_WBINVD:
8492 return nested_cpu_has2(vmcs12, SECONDARY_EXEC_WBINVD_EXITING);
8493 case EXIT_REASON_XSETBV:
Joe Perches1d804d02015-03-30 16:46:09 -07008494 return true;
Wanpeng Li81dc01f2014-12-04 19:11:07 +08008495 case EXIT_REASON_XSAVES: case EXIT_REASON_XRSTORS:
8496 /*
8497 * This should never happen, since it is not possible to
8498 * set XSS to a non-zero value---neither in L1 nor in L2.
8499 * If if it were, XSS would have to be checked against
8500 * the XSS exit bitmap in vmcs12.
8501 */
8502 return nested_cpu_has2(vmcs12, SECONDARY_EXEC_XSAVES);
Wanpeng Li55123e32016-07-06 18:29:58 +08008503 case EXIT_REASON_PREEMPTION_TIMER:
8504 return false;
Ladi Prosekab007cc2017-03-31 10:19:26 +02008505 case EXIT_REASON_PML_FULL:
Bandan Das03efce62017-05-05 15:25:15 -04008506 /* We emulate PML support to L1. */
Ladi Prosekab007cc2017-03-31 10:19:26 +02008507 return false;
Bandan Das2a499e42017-08-03 15:54:41 -04008508 case EXIT_REASON_VMFUNC:
8509 /* VM functions are emulated through L2->L0 vmexits. */
8510 return false;
Nadav Har'El644d7112011-05-25 23:12:35 +03008511 default:
Joe Perches1d804d02015-03-30 16:46:09 -07008512 return true;
Nadav Har'El644d7112011-05-25 23:12:35 +03008513 }
8514}
8515
Paolo Bonzini7313c692017-07-27 10:31:25 +02008516static int nested_vmx_reflect_vmexit(struct kvm_vcpu *vcpu, u32 exit_reason)
8517{
8518 u32 exit_intr_info = vmcs_read32(VM_EXIT_INTR_INFO);
8519
8520 /*
8521 * At this point, the exit interruption info in exit_intr_info
8522 * is only valid for EXCEPTION_NMI exits. For EXTERNAL_INTERRUPT
8523 * we need to query the in-kernel LAPIC.
8524 */
8525 WARN_ON(exit_reason == EXIT_REASON_EXTERNAL_INTERRUPT);
8526 if ((exit_intr_info &
8527 (INTR_INFO_VALID_MASK | INTR_INFO_DELIVER_CODE_MASK)) ==
8528 (INTR_INFO_VALID_MASK | INTR_INFO_DELIVER_CODE_MASK)) {
8529 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
8530 vmcs12->vm_exit_intr_error_code =
8531 vmcs_read32(VM_EXIT_INTR_ERROR_CODE);
8532 }
8533
8534 nested_vmx_vmexit(vcpu, exit_reason, exit_intr_info,
8535 vmcs_readl(EXIT_QUALIFICATION));
8536 return 1;
8537}
8538
Avi Kivity586f9602010-11-18 13:09:54 +02008539static void vmx_get_exit_info(struct kvm_vcpu *vcpu, u64 *info1, u64 *info2)
8540{
8541 *info1 = vmcs_readl(EXIT_QUALIFICATION);
8542 *info2 = vmcs_read32(VM_EXIT_INTR_INFO);
8543}
8544
Kai Huanga3eaa862015-11-04 13:46:05 +08008545static void vmx_destroy_pml_buffer(struct vcpu_vmx *vmx)
Kai Huang843e4332015-01-28 10:54:28 +08008546{
Kai Huanga3eaa862015-11-04 13:46:05 +08008547 if (vmx->pml_pg) {
8548 __free_page(vmx->pml_pg);
8549 vmx->pml_pg = NULL;
8550 }
Kai Huang843e4332015-01-28 10:54:28 +08008551}
8552
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02008553static void vmx_flush_pml_buffer(struct kvm_vcpu *vcpu)
Kai Huang843e4332015-01-28 10:54:28 +08008554{
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02008555 struct vcpu_vmx *vmx = to_vmx(vcpu);
Kai Huang843e4332015-01-28 10:54:28 +08008556 u64 *pml_buf;
8557 u16 pml_idx;
8558
8559 pml_idx = vmcs_read16(GUEST_PML_INDEX);
8560
8561 /* Do nothing if PML buffer is empty */
8562 if (pml_idx == (PML_ENTITY_NUM - 1))
8563 return;
8564
8565 /* PML index always points to next available PML buffer entity */
8566 if (pml_idx >= PML_ENTITY_NUM)
8567 pml_idx = 0;
8568 else
8569 pml_idx++;
8570
8571 pml_buf = page_address(vmx->pml_pg);
8572 for (; pml_idx < PML_ENTITY_NUM; pml_idx++) {
8573 u64 gpa;
8574
8575 gpa = pml_buf[pml_idx];
8576 WARN_ON(gpa & (PAGE_SIZE - 1));
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02008577 kvm_vcpu_mark_page_dirty(vcpu, gpa >> PAGE_SHIFT);
Kai Huang843e4332015-01-28 10:54:28 +08008578 }
8579
8580 /* reset PML index */
8581 vmcs_write16(GUEST_PML_INDEX, PML_ENTITY_NUM - 1);
8582}
8583
8584/*
8585 * Flush all vcpus' PML buffer and update logged GPAs to dirty_bitmap.
8586 * Called before reporting dirty_bitmap to userspace.
8587 */
8588static void kvm_flush_pml_buffers(struct kvm *kvm)
8589{
8590 int i;
8591 struct kvm_vcpu *vcpu;
8592 /*
8593 * We only need to kick vcpu out of guest mode here, as PML buffer
8594 * is flushed at beginning of all VMEXITs, and it's obvious that only
8595 * vcpus running in guest are possible to have unflushed GPAs in PML
8596 * buffer.
8597 */
8598 kvm_for_each_vcpu(i, vcpu, kvm)
8599 kvm_vcpu_kick(vcpu);
8600}
8601
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02008602static void vmx_dump_sel(char *name, uint32_t sel)
8603{
8604 pr_err("%s sel=0x%04x, attr=0x%05x, limit=0x%08x, base=0x%016lx\n",
Chao Peng96794e42017-02-21 03:50:01 -05008605 name, vmcs_read16(sel),
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02008606 vmcs_read32(sel + GUEST_ES_AR_BYTES - GUEST_ES_SELECTOR),
8607 vmcs_read32(sel + GUEST_ES_LIMIT - GUEST_ES_SELECTOR),
8608 vmcs_readl(sel + GUEST_ES_BASE - GUEST_ES_SELECTOR));
8609}
8610
8611static void vmx_dump_dtsel(char *name, uint32_t limit)
8612{
8613 pr_err("%s limit=0x%08x, base=0x%016lx\n",
8614 name, vmcs_read32(limit),
8615 vmcs_readl(limit + GUEST_GDTR_BASE - GUEST_GDTR_LIMIT));
8616}
8617
8618static void dump_vmcs(void)
8619{
8620 u32 vmentry_ctl = vmcs_read32(VM_ENTRY_CONTROLS);
8621 u32 vmexit_ctl = vmcs_read32(VM_EXIT_CONTROLS);
8622 u32 cpu_based_exec_ctrl = vmcs_read32(CPU_BASED_VM_EXEC_CONTROL);
8623 u32 pin_based_exec_ctrl = vmcs_read32(PIN_BASED_VM_EXEC_CONTROL);
8624 u32 secondary_exec_control = 0;
8625 unsigned long cr4 = vmcs_readl(GUEST_CR4);
Paolo Bonzinif3531052015-12-03 15:49:56 +01008626 u64 efer = vmcs_read64(GUEST_IA32_EFER);
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02008627 int i, n;
8628
8629 if (cpu_has_secondary_exec_ctrls())
8630 secondary_exec_control = vmcs_read32(SECONDARY_VM_EXEC_CONTROL);
8631
8632 pr_err("*** Guest State ***\n");
8633 pr_err("CR0: actual=0x%016lx, shadow=0x%016lx, gh_mask=%016lx\n",
8634 vmcs_readl(GUEST_CR0), vmcs_readl(CR0_READ_SHADOW),
8635 vmcs_readl(CR0_GUEST_HOST_MASK));
8636 pr_err("CR4: actual=0x%016lx, shadow=0x%016lx, gh_mask=%016lx\n",
8637 cr4, vmcs_readl(CR4_READ_SHADOW), vmcs_readl(CR4_GUEST_HOST_MASK));
8638 pr_err("CR3 = 0x%016lx\n", vmcs_readl(GUEST_CR3));
8639 if ((secondary_exec_control & SECONDARY_EXEC_ENABLE_EPT) &&
8640 (cr4 & X86_CR4_PAE) && !(efer & EFER_LMA))
8641 {
Paolo Bonzini845c5b42015-12-03 15:51:00 +01008642 pr_err("PDPTR0 = 0x%016llx PDPTR1 = 0x%016llx\n",
8643 vmcs_read64(GUEST_PDPTR0), vmcs_read64(GUEST_PDPTR1));
8644 pr_err("PDPTR2 = 0x%016llx PDPTR3 = 0x%016llx\n",
8645 vmcs_read64(GUEST_PDPTR2), vmcs_read64(GUEST_PDPTR3));
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02008646 }
8647 pr_err("RSP = 0x%016lx RIP = 0x%016lx\n",
8648 vmcs_readl(GUEST_RSP), vmcs_readl(GUEST_RIP));
8649 pr_err("RFLAGS=0x%08lx DR7 = 0x%016lx\n",
8650 vmcs_readl(GUEST_RFLAGS), vmcs_readl(GUEST_DR7));
8651 pr_err("Sysenter RSP=%016lx CS:RIP=%04x:%016lx\n",
8652 vmcs_readl(GUEST_SYSENTER_ESP),
8653 vmcs_read32(GUEST_SYSENTER_CS), vmcs_readl(GUEST_SYSENTER_EIP));
8654 vmx_dump_sel("CS: ", GUEST_CS_SELECTOR);
8655 vmx_dump_sel("DS: ", GUEST_DS_SELECTOR);
8656 vmx_dump_sel("SS: ", GUEST_SS_SELECTOR);
8657 vmx_dump_sel("ES: ", GUEST_ES_SELECTOR);
8658 vmx_dump_sel("FS: ", GUEST_FS_SELECTOR);
8659 vmx_dump_sel("GS: ", GUEST_GS_SELECTOR);
8660 vmx_dump_dtsel("GDTR:", GUEST_GDTR_LIMIT);
8661 vmx_dump_sel("LDTR:", GUEST_LDTR_SELECTOR);
8662 vmx_dump_dtsel("IDTR:", GUEST_IDTR_LIMIT);
8663 vmx_dump_sel("TR: ", GUEST_TR_SELECTOR);
8664 if ((vmexit_ctl & (VM_EXIT_SAVE_IA32_PAT | VM_EXIT_SAVE_IA32_EFER)) ||
8665 (vmentry_ctl & (VM_ENTRY_LOAD_IA32_PAT | VM_ENTRY_LOAD_IA32_EFER)))
Paolo Bonzini845c5b42015-12-03 15:51:00 +01008666 pr_err("EFER = 0x%016llx PAT = 0x%016llx\n",
8667 efer, vmcs_read64(GUEST_IA32_PAT));
8668 pr_err("DebugCtl = 0x%016llx DebugExceptions = 0x%016lx\n",
8669 vmcs_read64(GUEST_IA32_DEBUGCTL),
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02008670 vmcs_readl(GUEST_PENDING_DBG_EXCEPTIONS));
8671 if (vmentry_ctl & VM_ENTRY_LOAD_IA32_PERF_GLOBAL_CTRL)
Paolo Bonzini845c5b42015-12-03 15:51:00 +01008672 pr_err("PerfGlobCtl = 0x%016llx\n",
8673 vmcs_read64(GUEST_IA32_PERF_GLOBAL_CTRL));
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02008674 if (vmentry_ctl & VM_ENTRY_LOAD_BNDCFGS)
Paolo Bonzini845c5b42015-12-03 15:51:00 +01008675 pr_err("BndCfgS = 0x%016llx\n", vmcs_read64(GUEST_BNDCFGS));
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02008676 pr_err("Interruptibility = %08x ActivityState = %08x\n",
8677 vmcs_read32(GUEST_INTERRUPTIBILITY_INFO),
8678 vmcs_read32(GUEST_ACTIVITY_STATE));
8679 if (secondary_exec_control & SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY)
8680 pr_err("InterruptStatus = %04x\n",
8681 vmcs_read16(GUEST_INTR_STATUS));
8682
8683 pr_err("*** Host State ***\n");
8684 pr_err("RIP = 0x%016lx RSP = 0x%016lx\n",
8685 vmcs_readl(HOST_RIP), vmcs_readl(HOST_RSP));
8686 pr_err("CS=%04x SS=%04x DS=%04x ES=%04x FS=%04x GS=%04x TR=%04x\n",
8687 vmcs_read16(HOST_CS_SELECTOR), vmcs_read16(HOST_SS_SELECTOR),
8688 vmcs_read16(HOST_DS_SELECTOR), vmcs_read16(HOST_ES_SELECTOR),
8689 vmcs_read16(HOST_FS_SELECTOR), vmcs_read16(HOST_GS_SELECTOR),
8690 vmcs_read16(HOST_TR_SELECTOR));
8691 pr_err("FSBase=%016lx GSBase=%016lx TRBase=%016lx\n",
8692 vmcs_readl(HOST_FS_BASE), vmcs_readl(HOST_GS_BASE),
8693 vmcs_readl(HOST_TR_BASE));
8694 pr_err("GDTBase=%016lx IDTBase=%016lx\n",
8695 vmcs_readl(HOST_GDTR_BASE), vmcs_readl(HOST_IDTR_BASE));
8696 pr_err("CR0=%016lx CR3=%016lx CR4=%016lx\n",
8697 vmcs_readl(HOST_CR0), vmcs_readl(HOST_CR3),
8698 vmcs_readl(HOST_CR4));
8699 pr_err("Sysenter RSP=%016lx CS:RIP=%04x:%016lx\n",
8700 vmcs_readl(HOST_IA32_SYSENTER_ESP),
8701 vmcs_read32(HOST_IA32_SYSENTER_CS),
8702 vmcs_readl(HOST_IA32_SYSENTER_EIP));
8703 if (vmexit_ctl & (VM_EXIT_LOAD_IA32_PAT | VM_EXIT_LOAD_IA32_EFER))
Paolo Bonzini845c5b42015-12-03 15:51:00 +01008704 pr_err("EFER = 0x%016llx PAT = 0x%016llx\n",
8705 vmcs_read64(HOST_IA32_EFER),
8706 vmcs_read64(HOST_IA32_PAT));
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02008707 if (vmexit_ctl & VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL)
Paolo Bonzini845c5b42015-12-03 15:51:00 +01008708 pr_err("PerfGlobCtl = 0x%016llx\n",
8709 vmcs_read64(HOST_IA32_PERF_GLOBAL_CTRL));
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02008710
8711 pr_err("*** Control State ***\n");
8712 pr_err("PinBased=%08x CPUBased=%08x SecondaryExec=%08x\n",
8713 pin_based_exec_ctrl, cpu_based_exec_ctrl, secondary_exec_control);
8714 pr_err("EntryControls=%08x ExitControls=%08x\n", vmentry_ctl, vmexit_ctl);
8715 pr_err("ExceptionBitmap=%08x PFECmask=%08x PFECmatch=%08x\n",
8716 vmcs_read32(EXCEPTION_BITMAP),
8717 vmcs_read32(PAGE_FAULT_ERROR_CODE_MASK),
8718 vmcs_read32(PAGE_FAULT_ERROR_CODE_MATCH));
8719 pr_err("VMEntry: intr_info=%08x errcode=%08x ilen=%08x\n",
8720 vmcs_read32(VM_ENTRY_INTR_INFO_FIELD),
8721 vmcs_read32(VM_ENTRY_EXCEPTION_ERROR_CODE),
8722 vmcs_read32(VM_ENTRY_INSTRUCTION_LEN));
8723 pr_err("VMExit: intr_info=%08x errcode=%08x ilen=%08x\n",
8724 vmcs_read32(VM_EXIT_INTR_INFO),
8725 vmcs_read32(VM_EXIT_INTR_ERROR_CODE),
8726 vmcs_read32(VM_EXIT_INSTRUCTION_LEN));
8727 pr_err(" reason=%08x qualification=%016lx\n",
8728 vmcs_read32(VM_EXIT_REASON), vmcs_readl(EXIT_QUALIFICATION));
8729 pr_err("IDTVectoring: info=%08x errcode=%08x\n",
8730 vmcs_read32(IDT_VECTORING_INFO_FIELD),
8731 vmcs_read32(IDT_VECTORING_ERROR_CODE));
Paolo Bonzini845c5b42015-12-03 15:51:00 +01008732 pr_err("TSC Offset = 0x%016llx\n", vmcs_read64(TSC_OFFSET));
Haozhong Zhang8cfe9862015-10-20 15:39:12 +08008733 if (secondary_exec_control & SECONDARY_EXEC_TSC_SCALING)
Paolo Bonzini845c5b42015-12-03 15:51:00 +01008734 pr_err("TSC Multiplier = 0x%016llx\n",
8735 vmcs_read64(TSC_MULTIPLIER));
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02008736 if (cpu_based_exec_ctrl & CPU_BASED_TPR_SHADOW)
8737 pr_err("TPR Threshold = 0x%02x\n", vmcs_read32(TPR_THRESHOLD));
8738 if (pin_based_exec_ctrl & PIN_BASED_POSTED_INTR)
8739 pr_err("PostedIntrVec = 0x%02x\n", vmcs_read16(POSTED_INTR_NV));
8740 if ((secondary_exec_control & SECONDARY_EXEC_ENABLE_EPT))
Paolo Bonzini845c5b42015-12-03 15:51:00 +01008741 pr_err("EPT pointer = 0x%016llx\n", vmcs_read64(EPT_POINTER));
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02008742 n = vmcs_read32(CR3_TARGET_COUNT);
8743 for (i = 0; i + 1 < n; i += 4)
8744 pr_err("CR3 target%u=%016lx target%u=%016lx\n",
8745 i, vmcs_readl(CR3_TARGET_VALUE0 + i * 2),
8746 i + 1, vmcs_readl(CR3_TARGET_VALUE0 + i * 2 + 2));
8747 if (i < n)
8748 pr_err("CR3 target%u=%016lx\n",
8749 i, vmcs_readl(CR3_TARGET_VALUE0 + i * 2));
8750 if (secondary_exec_control & SECONDARY_EXEC_PAUSE_LOOP_EXITING)
8751 pr_err("PLE Gap=%08x Window=%08x\n",
8752 vmcs_read32(PLE_GAP), vmcs_read32(PLE_WINDOW));
8753 if (secondary_exec_control & SECONDARY_EXEC_ENABLE_VPID)
8754 pr_err("Virtual processor ID = 0x%04x\n",
8755 vmcs_read16(VIRTUAL_PROCESSOR_ID));
8756}
8757
Avi Kivity6aa8b732006-12-10 02:21:36 -08008758/*
8759 * The guest has exited. See if we can fix it or if we need userspace
8760 * assistance.
8761 */
Avi Kivity851ba692009-08-24 11:10:17 +03008762static int vmx_handle_exit(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08008763{
Avi Kivity29bd8a72007-09-10 17:27:03 +03008764 struct vcpu_vmx *vmx = to_vmx(vcpu);
Andi Kleena0861c02009-06-08 17:37:09 +08008765 u32 exit_reason = vmx->exit_reason;
Avi Kivity1155f762007-11-22 11:30:47 +02008766 u32 vectoring_info = vmx->idt_vectoring_info;
Avi Kivity29bd8a72007-09-10 17:27:03 +03008767
Paolo Bonzini8b89fe12015-12-10 18:37:32 +01008768 trace_kvm_exit(exit_reason, vcpu, KVM_ISA_VMX);
8769
Kai Huang843e4332015-01-28 10:54:28 +08008770 /*
8771 * Flush logged GPAs PML buffer, this will make dirty_bitmap more
8772 * updated. Another good is, in kvm_vm_ioctl_get_dirty_log, before
8773 * querying dirty_bitmap, we only need to kick all vcpus out of guest
8774 * mode as if vcpus is in root mode, the PML buffer must has been
8775 * flushed already.
8776 */
8777 if (enable_pml)
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02008778 vmx_flush_pml_buffer(vcpu);
Kai Huang843e4332015-01-28 10:54:28 +08008779
Mohammed Gamal80ced182009-09-01 12:48:18 +02008780 /* If guest state is invalid, start emulating */
Gleb Natapov14168782013-01-21 15:36:49 +02008781 if (vmx->emulation_required)
Mohammed Gamal80ced182009-09-01 12:48:18 +02008782 return handle_invalid_guest_state(vcpu);
Guillaume Thouvenin1d5a4d92008-10-29 09:39:42 +01008783
Paolo Bonzini7313c692017-07-27 10:31:25 +02008784 if (is_guest_mode(vcpu) && nested_vmx_exit_reflected(vcpu, exit_reason))
8785 return nested_vmx_reflect_vmexit(vcpu, exit_reason);
Nadav Har'El644d7112011-05-25 23:12:35 +03008786
Mohammed Gamal51207022010-05-31 22:40:54 +03008787 if (exit_reason & VMX_EXIT_REASONS_FAILED_VMENTRY) {
Paolo Bonzini4eb64dc2015-04-30 12:57:28 +02008788 dump_vmcs();
Mohammed Gamal51207022010-05-31 22:40:54 +03008789 vcpu->run->exit_reason = KVM_EXIT_FAIL_ENTRY;
8790 vcpu->run->fail_entry.hardware_entry_failure_reason
8791 = exit_reason;
8792 return 0;
8793 }
8794
Avi Kivity29bd8a72007-09-10 17:27:03 +03008795 if (unlikely(vmx->fail)) {
Avi Kivity851ba692009-08-24 11:10:17 +03008796 vcpu->run->exit_reason = KVM_EXIT_FAIL_ENTRY;
8797 vcpu->run->fail_entry.hardware_entry_failure_reason
Avi Kivity29bd8a72007-09-10 17:27:03 +03008798 = vmcs_read32(VM_INSTRUCTION_ERROR);
8799 return 0;
8800 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08008801
Xiao Guangrongb9bf6882012-10-17 13:46:52 +08008802 /*
8803 * Note:
8804 * Do not try to fix EXIT_REASON_EPT_MISCONFIG if it caused by
8805 * delivery event since it indicates guest is accessing MMIO.
8806 * The vm-exit can be triggered again after return to guest that
8807 * will cause infinite loop.
8808 */
Mike Dayd77c26f2007-10-08 09:02:08 -04008809 if ((vectoring_info & VECTORING_INFO_VALID_MASK) &&
Sheng Yang14394422008-04-28 12:24:45 +08008810 (exit_reason != EXIT_REASON_EXCEPTION_NMI &&
Jan Kiszka60637aa2008-09-26 09:30:47 +02008811 exit_reason != EXIT_REASON_EPT_VIOLATION &&
Cao, Leib244c9f2016-07-15 13:54:04 +00008812 exit_reason != EXIT_REASON_PML_FULL &&
Xiao Guangrongb9bf6882012-10-17 13:46:52 +08008813 exit_reason != EXIT_REASON_TASK_SWITCH)) {
8814 vcpu->run->exit_reason = KVM_EXIT_INTERNAL_ERROR;
8815 vcpu->run->internal.suberror = KVM_INTERNAL_ERROR_DELIVERY_EV;
Paolo Bonzini70bcd702017-07-05 12:38:06 +02008816 vcpu->run->internal.ndata = 3;
Xiao Guangrongb9bf6882012-10-17 13:46:52 +08008817 vcpu->run->internal.data[0] = vectoring_info;
8818 vcpu->run->internal.data[1] = exit_reason;
Paolo Bonzini70bcd702017-07-05 12:38:06 +02008819 vcpu->run->internal.data[2] = vcpu->arch.exit_qualification;
8820 if (exit_reason == EXIT_REASON_EPT_MISCONFIG) {
8821 vcpu->run->internal.ndata++;
8822 vcpu->run->internal.data[3] =
8823 vmcs_read64(GUEST_PHYSICAL_ADDRESS);
8824 }
Xiao Guangrongb9bf6882012-10-17 13:46:52 +08008825 return 0;
8826 }
Jan Kiszka3b86cd92008-09-26 09:30:57 +02008827
Avi Kivity6aa8b732006-12-10 02:21:36 -08008828 if (exit_reason < kvm_vmx_max_exit_handlers
8829 && kvm_vmx_exit_handlers[exit_reason])
Avi Kivity851ba692009-08-24 11:10:17 +03008830 return kvm_vmx_exit_handlers[exit_reason](vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08008831 else {
Radim Krčmář6c6c5e02017-01-13 18:59:04 +01008832 vcpu_unimpl(vcpu, "vmx: unexpected exit reason 0x%x\n",
8833 exit_reason);
Michael S. Tsirkin2bc19dc2014-09-18 16:21:16 +03008834 kvm_queue_exception(vcpu, UD_VECTOR);
8835 return 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08008836 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08008837}
8838
Gleb Natapov95ba8273132009-04-21 17:45:08 +03008839static void update_cr8_intercept(struct kvm_vcpu *vcpu, int tpr, int irr)
Yang, Sheng6e5d8652007-09-12 18:03:11 +08008840{
Wanpeng Lia7c0b072014-08-21 19:46:50 +08008841 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
8842
8843 if (is_guest_mode(vcpu) &&
8844 nested_cpu_has(vmcs12, CPU_BASED_TPR_SHADOW))
8845 return;
8846
Gleb Natapov95ba8273132009-04-21 17:45:08 +03008847 if (irr == -1 || tpr < irr) {
Yang, Sheng6e5d8652007-09-12 18:03:11 +08008848 vmcs_write32(TPR_THRESHOLD, 0);
8849 return;
8850 }
8851
Gleb Natapov95ba8273132009-04-21 17:45:08 +03008852 vmcs_write32(TPR_THRESHOLD, irr);
Yang, Sheng6e5d8652007-09-12 18:03:11 +08008853}
8854
Yang Zhang8d146952013-01-25 10:18:50 +08008855static void vmx_set_virtual_x2apic_mode(struct kvm_vcpu *vcpu, bool set)
8856{
8857 u32 sec_exec_control;
8858
Radim Krčmářdccbfcf2016-08-08 20:16:23 +02008859 /* Postpone execution until vmcs01 is the current VMCS. */
8860 if (is_guest_mode(vcpu)) {
8861 to_vmx(vcpu)->nested.change_vmcs01_virtual_x2apic_mode = true;
8862 return;
8863 }
8864
Wanpeng Lif6e90f92016-09-22 07:43:25 +08008865 if (!cpu_has_vmx_virtualize_x2apic_mode())
Yang Zhang8d146952013-01-25 10:18:50 +08008866 return;
8867
Paolo Bonzini35754c92015-07-29 12:05:37 +02008868 if (!cpu_need_tpr_shadow(vcpu))
Yang Zhang8d146952013-01-25 10:18:50 +08008869 return;
8870
8871 sec_exec_control = vmcs_read32(SECONDARY_VM_EXEC_CONTROL);
8872
8873 if (set) {
8874 sec_exec_control &= ~SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES;
8875 sec_exec_control |= SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE;
8876 } else {
8877 sec_exec_control &= ~SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE;
8878 sec_exec_control |= SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES;
Jim Mattsonfb6c8192017-03-16 13:53:59 -07008879 vmx_flush_tlb_ept_only(vcpu);
Yang Zhang8d146952013-01-25 10:18:50 +08008880 }
8881 vmcs_write32(SECONDARY_VM_EXEC_CONTROL, sec_exec_control);
8882
8883 vmx_set_msr_bitmap(vcpu);
8884}
8885
Tang Chen38b99172014-09-24 15:57:54 +08008886static void vmx_set_apic_access_page_addr(struct kvm_vcpu *vcpu, hpa_t hpa)
8887{
8888 struct vcpu_vmx *vmx = to_vmx(vcpu);
8889
8890 /*
8891 * Currently we do not handle the nested case where L2 has an
8892 * APIC access page of its own; that page is still pinned.
8893 * Hence, we skip the case where the VCPU is in guest mode _and_
8894 * L1 prepared an APIC access page for L2.
8895 *
8896 * For the case where L1 and L2 share the same APIC access page
8897 * (flexpriority=Y but SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES clear
8898 * in the vmcs12), this function will only update either the vmcs01
8899 * or the vmcs02. If the former, the vmcs02 will be updated by
8900 * prepare_vmcs02. If the latter, the vmcs01 will be updated in
8901 * the next L2->L1 exit.
8902 */
8903 if (!is_guest_mode(vcpu) ||
David Matlack4f2777b2016-07-13 17:16:37 -07008904 !nested_cpu_has2(get_vmcs12(&vmx->vcpu),
Jim Mattsonfb6c8192017-03-16 13:53:59 -07008905 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES)) {
Tang Chen38b99172014-09-24 15:57:54 +08008906 vmcs_write64(APIC_ACCESS_ADDR, hpa);
Jim Mattsonfb6c8192017-03-16 13:53:59 -07008907 vmx_flush_tlb_ept_only(vcpu);
8908 }
Tang Chen38b99172014-09-24 15:57:54 +08008909}
8910
Paolo Bonzini67c9ddd2016-05-10 17:01:23 +02008911static void vmx_hwapic_isr_update(struct kvm_vcpu *vcpu, int max_isr)
Yang Zhangc7c9c562013-01-25 10:18:51 +08008912{
8913 u16 status;
8914 u8 old;
8915
Paolo Bonzini67c9ddd2016-05-10 17:01:23 +02008916 if (max_isr == -1)
8917 max_isr = 0;
Yang Zhangc7c9c562013-01-25 10:18:51 +08008918
8919 status = vmcs_read16(GUEST_INTR_STATUS);
8920 old = status >> 8;
Paolo Bonzini67c9ddd2016-05-10 17:01:23 +02008921 if (max_isr != old) {
Yang Zhangc7c9c562013-01-25 10:18:51 +08008922 status &= 0xff;
Paolo Bonzini67c9ddd2016-05-10 17:01:23 +02008923 status |= max_isr << 8;
Yang Zhangc7c9c562013-01-25 10:18:51 +08008924 vmcs_write16(GUEST_INTR_STATUS, status);
8925 }
8926}
8927
8928static void vmx_set_rvi(int vector)
8929{
8930 u16 status;
8931 u8 old;
8932
Wei Wang4114c272014-11-05 10:53:43 +08008933 if (vector == -1)
8934 vector = 0;
8935
Yang Zhangc7c9c562013-01-25 10:18:51 +08008936 status = vmcs_read16(GUEST_INTR_STATUS);
8937 old = (u8)status & 0xff;
8938 if ((u8)vector != old) {
8939 status &= ~0xff;
8940 status |= (u8)vector;
8941 vmcs_write16(GUEST_INTR_STATUS, status);
8942 }
8943}
8944
8945static void vmx_hwapic_irr_update(struct kvm_vcpu *vcpu, int max_irr)
8946{
Wanpeng Li963fee12014-07-17 19:03:00 +08008947 if (!is_guest_mode(vcpu)) {
8948 vmx_set_rvi(max_irr);
8949 return;
8950 }
8951
Wei Wang4114c272014-11-05 10:53:43 +08008952 if (max_irr == -1)
8953 return;
8954
Wanpeng Li963fee12014-07-17 19:03:00 +08008955 /*
Wei Wang4114c272014-11-05 10:53:43 +08008956 * In guest mode. If a vmexit is needed, vmx_check_nested_events
8957 * handles it.
8958 */
8959 if (nested_exit_on_intr(vcpu))
8960 return;
8961
8962 /*
8963 * Else, fall back to pre-APICv interrupt injection since L2
Wanpeng Li963fee12014-07-17 19:03:00 +08008964 * is run without virtual interrupt delivery.
8965 */
8966 if (!kvm_event_needs_reinjection(vcpu) &&
8967 vmx_interrupt_allowed(vcpu)) {
8968 kvm_queue_interrupt(vcpu, max_irr, false);
8969 vmx_inject_irq(vcpu);
8970 }
Yang Zhangc7c9c562013-01-25 10:18:51 +08008971}
8972
Paolo Bonzini76dfafd52016-12-19 17:17:11 +01008973static int vmx_sync_pir_to_irr(struct kvm_vcpu *vcpu)
Paolo Bonzini810e6de2016-12-19 13:05:46 +01008974{
8975 struct vcpu_vmx *vmx = to_vmx(vcpu);
Paolo Bonzini76dfafd52016-12-19 17:17:11 +01008976 int max_irr;
Paolo Bonzini810e6de2016-12-19 13:05:46 +01008977
Paolo Bonzini76dfafd52016-12-19 17:17:11 +01008978 WARN_ON(!vcpu->arch.apicv_active);
8979 if (pi_test_on(&vmx->pi_desc)) {
8980 pi_clear_on(&vmx->pi_desc);
8981 /*
8982 * IOMMU can write to PIR.ON, so the barrier matters even on UP.
8983 * But on x86 this is just a compiler barrier anyway.
8984 */
8985 smp_mb__after_atomic();
8986 max_irr = kvm_apic_update_irr(vcpu, vmx->pi_desc.pir);
8987 } else {
8988 max_irr = kvm_lapic_find_highest_irr(vcpu);
8989 }
8990 vmx_hwapic_irr_update(vcpu, max_irr);
8991 return max_irr;
Paolo Bonzini810e6de2016-12-19 13:05:46 +01008992}
8993
Andrey Smetanin63086302015-11-10 15:36:32 +03008994static void vmx_load_eoi_exitmap(struct kvm_vcpu *vcpu, u64 *eoi_exit_bitmap)
Yang Zhangc7c9c562013-01-25 10:18:51 +08008995{
Andrey Smetanind62caab2015-11-10 15:36:33 +03008996 if (!kvm_vcpu_apicv_active(vcpu))
Yang Zhang3d81bc72013-04-11 19:25:13 +08008997 return;
8998
Yang Zhangc7c9c562013-01-25 10:18:51 +08008999 vmcs_write64(EOI_EXIT_BITMAP0, eoi_exit_bitmap[0]);
9000 vmcs_write64(EOI_EXIT_BITMAP1, eoi_exit_bitmap[1]);
9001 vmcs_write64(EOI_EXIT_BITMAP2, eoi_exit_bitmap[2]);
9002 vmcs_write64(EOI_EXIT_BITMAP3, eoi_exit_bitmap[3]);
9003}
9004
Paolo Bonzini967235d2016-12-19 14:03:45 +01009005static void vmx_apicv_post_state_restore(struct kvm_vcpu *vcpu)
9006{
9007 struct vcpu_vmx *vmx = to_vmx(vcpu);
9008
9009 pi_clear_on(&vmx->pi_desc);
9010 memset(vmx->pi_desc.pir, 0, sizeof(vmx->pi_desc.pir));
9011}
9012
Avi Kivity51aa01d2010-07-20 14:31:20 +03009013static void vmx_complete_atomic_exit(struct vcpu_vmx *vmx)
Avi Kivitycf393f72008-07-01 16:20:21 +03009014{
Jim Mattson48ae0fb2017-05-22 09:48:33 -07009015 u32 exit_intr_info = 0;
9016 u16 basic_exit_reason = (u16)vmx->exit_reason;
Avi Kivity00eba012011-03-07 17:24:54 +02009017
Jim Mattson48ae0fb2017-05-22 09:48:33 -07009018 if (!(basic_exit_reason == EXIT_REASON_MCE_DURING_VMENTRY
9019 || basic_exit_reason == EXIT_REASON_EXCEPTION_NMI))
Avi Kivity00eba012011-03-07 17:24:54 +02009020 return;
9021
Jim Mattson48ae0fb2017-05-22 09:48:33 -07009022 if (!(vmx->exit_reason & VMX_EXIT_REASONS_FAILED_VMENTRY))
9023 exit_intr_info = vmcs_read32(VM_EXIT_INTR_INFO);
9024 vmx->exit_intr_info = exit_intr_info;
Andi Kleena0861c02009-06-08 17:37:09 +08009025
Wanpeng Li1261bfa2017-07-13 18:30:40 -07009026 /* if exit due to PF check for async PF */
9027 if (is_page_fault(exit_intr_info))
9028 vmx->vcpu.arch.apf.host_apf_reason = kvm_read_and_reset_pf_reason();
9029
Andi Kleena0861c02009-06-08 17:37:09 +08009030 /* Handle machine checks before interrupts are enabled */
Jim Mattson48ae0fb2017-05-22 09:48:33 -07009031 if (basic_exit_reason == EXIT_REASON_MCE_DURING_VMENTRY ||
9032 is_machine_check(exit_intr_info))
Andi Kleena0861c02009-06-08 17:37:09 +08009033 kvm_machine_check();
9034
Gleb Natapov20f65982009-05-11 13:35:55 +03009035 /* We need to handle NMIs before interrupts are enabled */
Jim Mattsonef85b672016-12-12 11:01:37 -08009036 if (is_nmi(exit_intr_info)) {
Zhang, Yanminff9d07a2010-04-19 13:32:45 +08009037 kvm_before_handle_nmi(&vmx->vcpu);
Gleb Natapov20f65982009-05-11 13:35:55 +03009038 asm("int $2");
Zhang, Yanminff9d07a2010-04-19 13:32:45 +08009039 kvm_after_handle_nmi(&vmx->vcpu);
9040 }
Avi Kivity51aa01d2010-07-20 14:31:20 +03009041}
Gleb Natapov20f65982009-05-11 13:35:55 +03009042
Yang Zhanga547c6d2013-04-11 19:25:10 +08009043static void vmx_handle_external_intr(struct kvm_vcpu *vcpu)
9044{
9045 u32 exit_intr_info = vmcs_read32(VM_EXIT_INTR_INFO);
Chris J Arges3f62de52016-01-22 15:44:38 -06009046 register void *__sp asm(_ASM_SP);
Yang Zhanga547c6d2013-04-11 19:25:10 +08009047
Yang Zhanga547c6d2013-04-11 19:25:10 +08009048 if ((exit_intr_info & (INTR_INFO_VALID_MASK | INTR_INFO_INTR_TYPE_MASK))
9049 == (INTR_INFO_VALID_MASK | INTR_TYPE_EXT_INTR)) {
9050 unsigned int vector;
9051 unsigned long entry;
9052 gate_desc *desc;
9053 struct vcpu_vmx *vmx = to_vmx(vcpu);
9054#ifdef CONFIG_X86_64
9055 unsigned long tmp;
9056#endif
9057
9058 vector = exit_intr_info & INTR_INFO_VECTOR_MASK;
9059 desc = (gate_desc *)vmx->host_idt_base + vector;
9060 entry = gate_offset(*desc);
9061 asm volatile(
9062#ifdef CONFIG_X86_64
9063 "mov %%" _ASM_SP ", %[sp]\n\t"
9064 "and $0xfffffffffffffff0, %%" _ASM_SP "\n\t"
9065 "push $%c[ss]\n\t"
9066 "push %[sp]\n\t"
9067#endif
9068 "pushf\n\t"
Yang Zhanga547c6d2013-04-11 19:25:10 +08009069 __ASM_SIZE(push) " $%c[cs]\n\t"
9070 "call *%[entry]\n\t"
9071 :
9072#ifdef CONFIG_X86_64
Chris J Arges3f62de52016-01-22 15:44:38 -06009073 [sp]"=&r"(tmp),
Yang Zhanga547c6d2013-04-11 19:25:10 +08009074#endif
Chris J Arges3f62de52016-01-22 15:44:38 -06009075 "+r"(__sp)
Yang Zhanga547c6d2013-04-11 19:25:10 +08009076 :
9077 [entry]"r"(entry),
9078 [ss]"i"(__KERNEL_DS),
9079 [cs]"i"(__KERNEL_CS)
9080 );
Paolo Bonzinif2485b32016-06-15 15:23:11 +02009081 }
Yang Zhanga547c6d2013-04-11 19:25:10 +08009082}
Josh Poimboeufc207aee2017-06-28 10:11:06 -05009083STACK_FRAME_NON_STANDARD(vmx_handle_external_intr);
Yang Zhanga547c6d2013-04-11 19:25:10 +08009084
Paolo Bonzini6d396b52015-04-01 14:25:33 +02009085static bool vmx_has_high_real_mode_segbase(void)
9086{
9087 return enable_unrestricted_guest || emulate_invalid_guest_state;
9088}
9089
Liu, Jinsongda8999d2014-02-24 10:55:46 +00009090static bool vmx_mpx_supported(void)
9091{
9092 return (vmcs_config.vmexit_ctrl & VM_EXIT_CLEAR_BNDCFGS) &&
9093 (vmcs_config.vmentry_ctrl & VM_ENTRY_LOAD_BNDCFGS);
9094}
9095
Wanpeng Li55412b22014-12-02 19:21:30 +08009096static bool vmx_xsaves_supported(void)
9097{
9098 return vmcs_config.cpu_based_2nd_exec_ctrl &
9099 SECONDARY_EXEC_XSAVES;
9100}
9101
Avi Kivity51aa01d2010-07-20 14:31:20 +03009102static void vmx_recover_nmi_blocking(struct vcpu_vmx *vmx)
9103{
Avi Kivityc5ca8e52011-03-07 17:37:37 +02009104 u32 exit_intr_info;
Avi Kivity51aa01d2010-07-20 14:31:20 +03009105 bool unblock_nmi;
9106 u8 vector;
9107 bool idtv_info_valid;
9108
9109 idtv_info_valid = vmx->idt_vectoring_info & VECTORING_INFO_VALID_MASK;
Gleb Natapov20f65982009-05-11 13:35:55 +03009110
Paolo Bonzini4c4a6f72017-07-14 13:36:11 +02009111 if (vmx->loaded_vmcs->nmi_known_unmasked)
Paolo Bonzini2c828782017-03-27 14:37:28 +02009112 return;
9113 /*
9114 * Can't use vmx->exit_intr_info since we're not sure what
9115 * the exit reason is.
9116 */
9117 exit_intr_info = vmcs_read32(VM_EXIT_INTR_INFO);
9118 unblock_nmi = (exit_intr_info & INTR_INFO_UNBLOCK_NMI) != 0;
9119 vector = exit_intr_info & INTR_INFO_VECTOR_MASK;
9120 /*
9121 * SDM 3: 27.7.1.2 (September 2008)
9122 * Re-set bit "block by NMI" before VM entry if vmexit caused by
9123 * a guest IRET fault.
9124 * SDM 3: 23.2.2 (September 2008)
9125 * Bit 12 is undefined in any of the following cases:
9126 * If the VM exit sets the valid bit in the IDT-vectoring
9127 * information field.
9128 * If the VM exit is due to a double fault.
9129 */
9130 if ((exit_intr_info & INTR_INFO_VALID_MASK) && unblock_nmi &&
9131 vector != DF_VECTOR && !idtv_info_valid)
9132 vmcs_set_bits(GUEST_INTERRUPTIBILITY_INFO,
9133 GUEST_INTR_STATE_NMI);
9134 else
Paolo Bonzini4c4a6f72017-07-14 13:36:11 +02009135 vmx->loaded_vmcs->nmi_known_unmasked =
Paolo Bonzini2c828782017-03-27 14:37:28 +02009136 !(vmcs_read32(GUEST_INTERRUPTIBILITY_INFO)
9137 & GUEST_INTR_STATE_NMI);
Avi Kivity51aa01d2010-07-20 14:31:20 +03009138}
9139
Jan Kiszka3ab66e82013-02-20 14:03:24 +01009140static void __vmx_complete_interrupts(struct kvm_vcpu *vcpu,
Avi Kivity83422e12010-07-20 14:43:23 +03009141 u32 idt_vectoring_info,
9142 int instr_len_field,
9143 int error_code_field)
Avi Kivity51aa01d2010-07-20 14:31:20 +03009144{
Avi Kivity51aa01d2010-07-20 14:31:20 +03009145 u8 vector;
9146 int type;
9147 bool idtv_info_valid;
9148
9149 idtv_info_valid = idt_vectoring_info & VECTORING_INFO_VALID_MASK;
Avi Kivity668f6122008-07-02 09:28:55 +03009150
Jan Kiszka3ab66e82013-02-20 14:03:24 +01009151 vcpu->arch.nmi_injected = false;
9152 kvm_clear_exception_queue(vcpu);
9153 kvm_clear_interrupt_queue(vcpu);
Gleb Natapov37b96e92009-03-30 16:03:13 +03009154
9155 if (!idtv_info_valid)
9156 return;
9157
Jan Kiszka3ab66e82013-02-20 14:03:24 +01009158 kvm_make_request(KVM_REQ_EVENT, vcpu);
Avi Kivity3842d132010-07-27 12:30:24 +03009159
Avi Kivity668f6122008-07-02 09:28:55 +03009160 vector = idt_vectoring_info & VECTORING_INFO_VECTOR_MASK;
9161 type = idt_vectoring_info & VECTORING_INFO_TYPE_MASK;
Gleb Natapov37b96e92009-03-30 16:03:13 +03009162
Gleb Natapov64a7ec02009-03-30 16:03:29 +03009163 switch (type) {
Gleb Natapov37b96e92009-03-30 16:03:13 +03009164 case INTR_TYPE_NMI_INTR:
Jan Kiszka3ab66e82013-02-20 14:03:24 +01009165 vcpu->arch.nmi_injected = true;
Avi Kivity668f6122008-07-02 09:28:55 +03009166 /*
Gleb Natapov7b4a25c2009-03-30 16:03:08 +03009167 * SDM 3: 27.7.1.2 (September 2008)
Gleb Natapov37b96e92009-03-30 16:03:13 +03009168 * Clear bit "block by NMI" before VM entry if a NMI
9169 * delivery faulted.
Avi Kivity668f6122008-07-02 09:28:55 +03009170 */
Jan Kiszka3ab66e82013-02-20 14:03:24 +01009171 vmx_set_nmi_mask(vcpu, false);
Gleb Natapov37b96e92009-03-30 16:03:13 +03009172 break;
Gleb Natapov37b96e92009-03-30 16:03:13 +03009173 case INTR_TYPE_SOFT_EXCEPTION:
Jan Kiszka3ab66e82013-02-20 14:03:24 +01009174 vcpu->arch.event_exit_inst_len = vmcs_read32(instr_len_field);
Gleb Natapov66fd3f72009-05-11 13:35:50 +03009175 /* fall through */
9176 case INTR_TYPE_HARD_EXCEPTION:
Avi Kivity35920a32008-07-03 14:50:12 +03009177 if (idt_vectoring_info & VECTORING_INFO_DELIVER_CODE_MASK) {
Avi Kivity83422e12010-07-20 14:43:23 +03009178 u32 err = vmcs_read32(error_code_field);
Gleb Natapov851eb6672013-09-25 12:51:34 +03009179 kvm_requeue_exception_e(vcpu, vector, err);
Avi Kivity35920a32008-07-03 14:50:12 +03009180 } else
Gleb Natapov851eb6672013-09-25 12:51:34 +03009181 kvm_requeue_exception(vcpu, vector);
Gleb Natapov37b96e92009-03-30 16:03:13 +03009182 break;
Gleb Natapov66fd3f72009-05-11 13:35:50 +03009183 case INTR_TYPE_SOFT_INTR:
Jan Kiszka3ab66e82013-02-20 14:03:24 +01009184 vcpu->arch.event_exit_inst_len = vmcs_read32(instr_len_field);
Gleb Natapov66fd3f72009-05-11 13:35:50 +03009185 /* fall through */
Gleb Natapov37b96e92009-03-30 16:03:13 +03009186 case INTR_TYPE_EXT_INTR:
Jan Kiszka3ab66e82013-02-20 14:03:24 +01009187 kvm_queue_interrupt(vcpu, vector, type == INTR_TYPE_SOFT_INTR);
Gleb Natapov37b96e92009-03-30 16:03:13 +03009188 break;
9189 default:
9190 break;
Avi Kivityf7d92382008-07-03 16:14:28 +03009191 }
Avi Kivitycf393f72008-07-01 16:20:21 +03009192}
9193
Avi Kivity83422e12010-07-20 14:43:23 +03009194static void vmx_complete_interrupts(struct vcpu_vmx *vmx)
9195{
Jan Kiszka3ab66e82013-02-20 14:03:24 +01009196 __vmx_complete_interrupts(&vmx->vcpu, vmx->idt_vectoring_info,
Avi Kivity83422e12010-07-20 14:43:23 +03009197 VM_EXIT_INSTRUCTION_LEN,
9198 IDT_VECTORING_ERROR_CODE);
9199}
9200
Avi Kivityb463a6f2010-07-20 15:06:17 +03009201static void vmx_cancel_injection(struct kvm_vcpu *vcpu)
9202{
Jan Kiszka3ab66e82013-02-20 14:03:24 +01009203 __vmx_complete_interrupts(vcpu,
Avi Kivityb463a6f2010-07-20 15:06:17 +03009204 vmcs_read32(VM_ENTRY_INTR_INFO_FIELD),
9205 VM_ENTRY_INSTRUCTION_LEN,
9206 VM_ENTRY_EXCEPTION_ERROR_CODE);
9207
9208 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, 0);
9209}
9210
Gleb Natapovd7cd9792011-10-05 14:01:23 +02009211static void atomic_switch_perf_msrs(struct vcpu_vmx *vmx)
9212{
9213 int i, nr_msrs;
9214 struct perf_guest_switch_msr *msrs;
9215
9216 msrs = perf_guest_get_msrs(&nr_msrs);
9217
9218 if (!msrs)
9219 return;
9220
9221 for (i = 0; i < nr_msrs; i++)
9222 if (msrs[i].host == msrs[i].guest)
9223 clear_atomic_switch_msr(vmx, msrs[i].msr);
9224 else
9225 add_atomic_switch_msr(vmx, msrs[i].msr, msrs[i].guest,
9226 msrs[i].host);
9227}
9228
Jiang Biao33365e72016-11-03 15:03:37 +08009229static void vmx_arm_hv_timer(struct kvm_vcpu *vcpu)
Yunhong Jiang64672c92016-06-13 14:19:59 -07009230{
9231 struct vcpu_vmx *vmx = to_vmx(vcpu);
9232 u64 tscl;
9233 u32 delta_tsc;
9234
9235 if (vmx->hv_deadline_tsc == -1)
9236 return;
9237
9238 tscl = rdtsc();
9239 if (vmx->hv_deadline_tsc > tscl)
9240 /* sure to be 32 bit only because checked on set_hv_timer */
9241 delta_tsc = (u32)((vmx->hv_deadline_tsc - tscl) >>
9242 cpu_preemption_timer_multi);
9243 else
9244 delta_tsc = 0;
9245
9246 vmcs_write32(VMX_PREEMPTION_TIMER_VALUE, delta_tsc);
9247}
9248
Lai Jiangshana3b5ba42011-02-11 14:29:40 +08009249static void __noclone vmx_vcpu_run(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08009250{
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04009251 struct vcpu_vmx *vmx = to_vmx(vcpu);
Andy Lutomirskid6e41f12017-05-28 10:00:17 -07009252 unsigned long debugctlmsr, cr3, cr4;
Avi Kivity104f2262010-11-18 13:12:52 +02009253
Avi Kivity104f2262010-11-18 13:12:52 +02009254 /* Don't enter VMX if guest state is invalid, let the exit handler
9255 start emulation until we arrive back to a valid state */
Gleb Natapov14168782013-01-21 15:36:49 +02009256 if (vmx->emulation_required)
Avi Kivity104f2262010-11-18 13:12:52 +02009257 return;
9258
Radim Krčmářa7653ec2014-08-21 18:08:07 +02009259 if (vmx->ple_window_dirty) {
9260 vmx->ple_window_dirty = false;
9261 vmcs_write32(PLE_WINDOW, vmx->ple_window);
9262 }
9263
Abel Gordon012f83c2013-04-18 14:39:25 +03009264 if (vmx->nested.sync_shadow_vmcs) {
9265 copy_vmcs12_to_shadow(vmx);
9266 vmx->nested.sync_shadow_vmcs = false;
9267 }
9268
Avi Kivity104f2262010-11-18 13:12:52 +02009269 if (test_bit(VCPU_REGS_RSP, (unsigned long *)&vcpu->arch.regs_dirty))
9270 vmcs_writel(GUEST_RSP, vcpu->arch.regs[VCPU_REGS_RSP]);
9271 if (test_bit(VCPU_REGS_RIP, (unsigned long *)&vcpu->arch.regs_dirty))
9272 vmcs_writel(GUEST_RIP, vcpu->arch.regs[VCPU_REGS_RIP]);
9273
Andy Lutomirskid6e41f12017-05-28 10:00:17 -07009274 cr3 = __get_current_cr3_fast();
9275 if (unlikely(cr3 != vmx->host_state.vmcs_host_cr3)) {
9276 vmcs_writel(HOST_CR3, cr3);
9277 vmx->host_state.vmcs_host_cr3 = cr3;
9278 }
9279
Andy Lutomirski1e02ce42014-10-24 15:58:08 -07009280 cr4 = cr4_read_shadow();
Andy Lutomirskid974baa2014-10-08 09:02:13 -07009281 if (unlikely(cr4 != vmx->host_state.vmcs_host_cr4)) {
9282 vmcs_writel(HOST_CR4, cr4);
9283 vmx->host_state.vmcs_host_cr4 = cr4;
9284 }
9285
Avi Kivity104f2262010-11-18 13:12:52 +02009286 /* When single-stepping over STI and MOV SS, we must clear the
9287 * corresponding interruptibility bits in the guest state. Otherwise
9288 * vmentry fails as it then expects bit 14 (BS) in pending debug
9289 * exceptions being set, but that's not correct for the guest debugging
9290 * case. */
9291 if (vcpu->guest_debug & KVM_GUESTDBG_SINGLESTEP)
9292 vmx_set_interrupt_shadow(vcpu, 0);
9293
Xiao Guangrong1be0e612016-03-22 16:51:18 +08009294 if (vmx->guest_pkru_valid)
9295 __write_pkru(vmx->guest_pkru);
9296
Gleb Natapovd7cd9792011-10-05 14:01:23 +02009297 atomic_switch_perf_msrs(vmx);
Gleb Natapov2a7921b2012-08-12 16:12:29 +03009298 debugctlmsr = get_debugctlmsr();
Gleb Natapovd7cd9792011-10-05 14:01:23 +02009299
Yunhong Jiang64672c92016-06-13 14:19:59 -07009300 vmx_arm_hv_timer(vcpu);
9301
Nadav Har'Eld462b812011-05-24 15:26:10 +03009302 vmx->__launched = vmx->loaded_vmcs->launched;
Avi Kivity104f2262010-11-18 13:12:52 +02009303 asm(
Avi Kivity6aa8b732006-12-10 02:21:36 -08009304 /* Store host registers */
Avi Kivityb188c81f2012-09-16 15:10:58 +03009305 "push %%" _ASM_DX "; push %%" _ASM_BP ";"
9306 "push %%" _ASM_CX " \n\t" /* placeholder for guest rcx */
9307 "push %%" _ASM_CX " \n\t"
9308 "cmp %%" _ASM_SP ", %c[host_rsp](%0) \n\t"
Avi Kivity313dbd42008-07-17 18:04:30 +03009309 "je 1f \n\t"
Avi Kivityb188c81f2012-09-16 15:10:58 +03009310 "mov %%" _ASM_SP ", %c[host_rsp](%0) \n\t"
Avi Kivity4ecac3f2008-05-13 13:23:38 +03009311 __ex(ASM_VMX_VMWRITE_RSP_RDX) "\n\t"
Avi Kivity313dbd42008-07-17 18:04:30 +03009312 "1: \n\t"
Avi Kivityd3edefc2009-06-16 12:33:56 +03009313 /* Reload cr2 if changed */
Avi Kivityb188c81f2012-09-16 15:10:58 +03009314 "mov %c[cr2](%0), %%" _ASM_AX " \n\t"
9315 "mov %%cr2, %%" _ASM_DX " \n\t"
9316 "cmp %%" _ASM_AX ", %%" _ASM_DX " \n\t"
Avi Kivityd3edefc2009-06-16 12:33:56 +03009317 "je 2f \n\t"
Avi Kivityb188c81f2012-09-16 15:10:58 +03009318 "mov %%" _ASM_AX", %%cr2 \n\t"
Avi Kivityd3edefc2009-06-16 12:33:56 +03009319 "2: \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08009320 /* Check if vmlaunch of vmresume is needed */
Avi Kivitye08aa782007-11-15 18:06:18 +02009321 "cmpl $0, %c[launched](%0) \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08009322 /* Load guest registers. Don't clobber flags. */
Avi Kivityb188c81f2012-09-16 15:10:58 +03009323 "mov %c[rax](%0), %%" _ASM_AX " \n\t"
9324 "mov %c[rbx](%0), %%" _ASM_BX " \n\t"
9325 "mov %c[rdx](%0), %%" _ASM_DX " \n\t"
9326 "mov %c[rsi](%0), %%" _ASM_SI " \n\t"
9327 "mov %c[rdi](%0), %%" _ASM_DI " \n\t"
9328 "mov %c[rbp](%0), %%" _ASM_BP " \n\t"
Avi Kivity05b3e0c2006-12-13 00:33:45 -08009329#ifdef CONFIG_X86_64
Avi Kivitye08aa782007-11-15 18:06:18 +02009330 "mov %c[r8](%0), %%r8 \n\t"
9331 "mov %c[r9](%0), %%r9 \n\t"
9332 "mov %c[r10](%0), %%r10 \n\t"
9333 "mov %c[r11](%0), %%r11 \n\t"
9334 "mov %c[r12](%0), %%r12 \n\t"
9335 "mov %c[r13](%0), %%r13 \n\t"
9336 "mov %c[r14](%0), %%r14 \n\t"
9337 "mov %c[r15](%0), %%r15 \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08009338#endif
Avi Kivityb188c81f2012-09-16 15:10:58 +03009339 "mov %c[rcx](%0), %%" _ASM_CX " \n\t" /* kills %0 (ecx) */
Avi Kivityc8019492008-07-14 14:44:59 +03009340
Avi Kivity6aa8b732006-12-10 02:21:36 -08009341 /* Enter guest mode */
Avi Kivity83287ea422012-09-16 15:10:57 +03009342 "jne 1f \n\t"
Avi Kivity4ecac3f2008-05-13 13:23:38 +03009343 __ex(ASM_VMX_VMLAUNCH) "\n\t"
Avi Kivity83287ea422012-09-16 15:10:57 +03009344 "jmp 2f \n\t"
9345 "1: " __ex(ASM_VMX_VMRESUME) "\n\t"
9346 "2: "
Avi Kivity6aa8b732006-12-10 02:21:36 -08009347 /* Save guest registers, load host registers, keep flags */
Avi Kivityb188c81f2012-09-16 15:10:58 +03009348 "mov %0, %c[wordsize](%%" _ASM_SP ") \n\t"
Avi Kivity40712fa2011-01-06 18:09:12 +02009349 "pop %0 \n\t"
Avi Kivityb188c81f2012-09-16 15:10:58 +03009350 "mov %%" _ASM_AX ", %c[rax](%0) \n\t"
9351 "mov %%" _ASM_BX ", %c[rbx](%0) \n\t"
9352 __ASM_SIZE(pop) " %c[rcx](%0) \n\t"
9353 "mov %%" _ASM_DX ", %c[rdx](%0) \n\t"
9354 "mov %%" _ASM_SI ", %c[rsi](%0) \n\t"
9355 "mov %%" _ASM_DI ", %c[rdi](%0) \n\t"
9356 "mov %%" _ASM_BP ", %c[rbp](%0) \n\t"
Avi Kivity05b3e0c2006-12-13 00:33:45 -08009357#ifdef CONFIG_X86_64
Avi Kivitye08aa782007-11-15 18:06:18 +02009358 "mov %%r8, %c[r8](%0) \n\t"
9359 "mov %%r9, %c[r9](%0) \n\t"
9360 "mov %%r10, %c[r10](%0) \n\t"
9361 "mov %%r11, %c[r11](%0) \n\t"
9362 "mov %%r12, %c[r12](%0) \n\t"
9363 "mov %%r13, %c[r13](%0) \n\t"
9364 "mov %%r14, %c[r14](%0) \n\t"
9365 "mov %%r15, %c[r15](%0) \n\t"
Avi Kivity6aa8b732006-12-10 02:21:36 -08009366#endif
Avi Kivityb188c81f2012-09-16 15:10:58 +03009367 "mov %%cr2, %%" _ASM_AX " \n\t"
9368 "mov %%" _ASM_AX ", %c[cr2](%0) \n\t"
Avi Kivityc8019492008-07-14 14:44:59 +03009369
Avi Kivityb188c81f2012-09-16 15:10:58 +03009370 "pop %%" _ASM_BP "; pop %%" _ASM_DX " \n\t"
Avi Kivitye08aa782007-11-15 18:06:18 +02009371 "setbe %c[fail](%0) \n\t"
Avi Kivity83287ea422012-09-16 15:10:57 +03009372 ".pushsection .rodata \n\t"
9373 ".global vmx_return \n\t"
9374 "vmx_return: " _ASM_PTR " 2b \n\t"
9375 ".popsection"
Avi Kivitye08aa782007-11-15 18:06:18 +02009376 : : "c"(vmx), "d"((unsigned long)HOST_RSP),
Nadav Har'Eld462b812011-05-24 15:26:10 +03009377 [launched]"i"(offsetof(struct vcpu_vmx, __launched)),
Avi Kivitye08aa782007-11-15 18:06:18 +02009378 [fail]"i"(offsetof(struct vcpu_vmx, fail)),
Avi Kivity313dbd42008-07-17 18:04:30 +03009379 [host_rsp]"i"(offsetof(struct vcpu_vmx, host_rsp)),
Zhang Xiantaoad312c72007-12-13 23:50:52 +08009380 [rax]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RAX])),
9381 [rbx]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RBX])),
9382 [rcx]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RCX])),
9383 [rdx]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RDX])),
9384 [rsi]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RSI])),
9385 [rdi]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RDI])),
9386 [rbp]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_RBP])),
Avi Kivity05b3e0c2006-12-13 00:33:45 -08009387#ifdef CONFIG_X86_64
Zhang Xiantaoad312c72007-12-13 23:50:52 +08009388 [r8]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R8])),
9389 [r9]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R9])),
9390 [r10]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R10])),
9391 [r11]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R11])),
9392 [r12]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R12])),
9393 [r13]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R13])),
9394 [r14]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R14])),
9395 [r15]"i"(offsetof(struct vcpu_vmx, vcpu.arch.regs[VCPU_REGS_R15])),
Avi Kivity6aa8b732006-12-10 02:21:36 -08009396#endif
Avi Kivity40712fa2011-01-06 18:09:12 +02009397 [cr2]"i"(offsetof(struct vcpu_vmx, vcpu.arch.cr2)),
9398 [wordsize]"i"(sizeof(ulong))
Laurent Vivierc2036302007-10-25 14:18:52 +02009399 : "cc", "memory"
9400#ifdef CONFIG_X86_64
Avi Kivityb188c81f2012-09-16 15:10:58 +03009401 , "rax", "rbx", "rdi", "rsi"
Laurent Vivierc2036302007-10-25 14:18:52 +02009402 , "r8", "r9", "r10", "r11", "r12", "r13", "r14", "r15"
Avi Kivityb188c81f2012-09-16 15:10:58 +03009403#else
9404 , "eax", "ebx", "edi", "esi"
Laurent Vivierc2036302007-10-25 14:18:52 +02009405#endif
9406 );
Avi Kivity6aa8b732006-12-10 02:21:36 -08009407
Gleb Natapov2a7921b2012-08-12 16:12:29 +03009408 /* MSR_IA32_DEBUGCTLMSR is zeroed on vmexit. Restore it if needed */
9409 if (debugctlmsr)
9410 update_debugctlmsr(debugctlmsr);
9411
Avi Kivityaa67f602012-08-01 16:48:03 +03009412#ifndef CONFIG_X86_64
9413 /*
9414 * The sysexit path does not restore ds/es, so we must set them to
9415 * a reasonable value ourselves.
9416 *
9417 * We can't defer this to vmx_load_host_state() since that function
9418 * may be executed in interrupt context, which saves and restore segments
9419 * around it, nullifying its effect.
9420 */
9421 loadsegment(ds, __USER_DS);
9422 loadsegment(es, __USER_DS);
9423#endif
9424
Avi Kivity6de4f3a2009-05-31 22:58:47 +03009425 vcpu->arch.regs_avail = ~((1 << VCPU_REGS_RIP) | (1 << VCPU_REGS_RSP)
Avi Kivity6de12732011-03-07 12:51:22 +02009426 | (1 << VCPU_EXREG_RFLAGS)
Avi Kivityaff48ba2010-12-05 18:56:11 +02009427 | (1 << VCPU_EXREG_PDPTR)
Avi Kivity2fb92db2011-04-27 19:42:18 +03009428 | (1 << VCPU_EXREG_SEGMENTS)
Avi Kivityaff48ba2010-12-05 18:56:11 +02009429 | (1 << VCPU_EXREG_CR3));
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03009430 vcpu->arch.regs_dirty = 0;
9431
Avi Kivity1155f762007-11-22 11:30:47 +02009432 vmx->idt_vectoring_info = vmcs_read32(IDT_VECTORING_INFO_FIELD);
9433
Nadav Har'Eld462b812011-05-24 15:26:10 +03009434 vmx->loaded_vmcs->launched = 1;
Avi Kivity1b6269d2007-10-09 12:12:19 +02009435
Avi Kivity51aa01d2010-07-20 14:31:20 +03009436 vmx->exit_reason = vmcs_read32(VM_EXIT_REASON);
Avi Kivity51aa01d2010-07-20 14:31:20 +03009437
Gleb Natapove0b890d2013-09-25 12:51:33 +03009438 /*
Xiao Guangrong1be0e612016-03-22 16:51:18 +08009439 * eager fpu is enabled if PKEY is supported and CR4 is switched
9440 * back on host, so it is safe to read guest PKRU from current
9441 * XSAVE.
9442 */
9443 if (boot_cpu_has(X86_FEATURE_OSPKE)) {
9444 vmx->guest_pkru = __read_pkru();
9445 if (vmx->guest_pkru != vmx->host_pkru) {
9446 vmx->guest_pkru_valid = true;
9447 __write_pkru(vmx->host_pkru);
9448 } else
9449 vmx->guest_pkru_valid = false;
9450 }
9451
9452 /*
Gleb Natapove0b890d2013-09-25 12:51:33 +03009453 * the KVM_REQ_EVENT optimization bit is only on for one entry, and if
9454 * we did not inject a still-pending event to L1 now because of
9455 * nested_run_pending, we need to re-enable this bit.
9456 */
9457 if (vmx->nested.nested_run_pending)
9458 kvm_make_request(KVM_REQ_EVENT, vcpu);
9459
9460 vmx->nested.nested_run_pending = 0;
9461
Avi Kivity51aa01d2010-07-20 14:31:20 +03009462 vmx_complete_atomic_exit(vmx);
9463 vmx_recover_nmi_blocking(vmx);
Avi Kivitycf393f72008-07-01 16:20:21 +03009464 vmx_complete_interrupts(vmx);
Avi Kivity6aa8b732006-12-10 02:21:36 -08009465}
Josh Poimboeufc207aee2017-06-28 10:11:06 -05009466STACK_FRAME_NON_STANDARD(vmx_vcpu_run);
Avi Kivity6aa8b732006-12-10 02:21:36 -08009467
David Hildenbrand1279a6b12017-03-20 10:00:08 +01009468static void vmx_switch_vmcs(struct kvm_vcpu *vcpu, struct loaded_vmcs *vmcs)
Paolo Bonzini4fa77342014-07-17 12:25:16 +02009469{
9470 struct vcpu_vmx *vmx = to_vmx(vcpu);
9471 int cpu;
9472
David Hildenbrand1279a6b12017-03-20 10:00:08 +01009473 if (vmx->loaded_vmcs == vmcs)
Paolo Bonzini4fa77342014-07-17 12:25:16 +02009474 return;
9475
9476 cpu = get_cpu();
David Hildenbrand1279a6b12017-03-20 10:00:08 +01009477 vmx->loaded_vmcs = vmcs;
Paolo Bonzini4fa77342014-07-17 12:25:16 +02009478 vmx_vcpu_put(vcpu);
9479 vmx_vcpu_load(vcpu, cpu);
9480 vcpu->cpu = cpu;
9481 put_cpu();
9482}
9483
Jim Mattson2f1fe812016-07-08 15:36:06 -07009484/*
9485 * Ensure that the current vmcs of the logical processor is the
9486 * vmcs01 of the vcpu before calling free_nested().
9487 */
9488static void vmx_free_vcpu_nested(struct kvm_vcpu *vcpu)
9489{
9490 struct vcpu_vmx *vmx = to_vmx(vcpu);
9491 int r;
9492
9493 r = vcpu_load(vcpu);
9494 BUG_ON(r);
David Hildenbrand1279a6b12017-03-20 10:00:08 +01009495 vmx_switch_vmcs(vcpu, &vmx->vmcs01);
Jim Mattson2f1fe812016-07-08 15:36:06 -07009496 free_nested(vmx);
9497 vcpu_put(vcpu);
9498}
9499
Avi Kivity6aa8b732006-12-10 02:21:36 -08009500static void vmx_free_vcpu(struct kvm_vcpu *vcpu)
9501{
Rusty Russellfb3f0f52007-07-27 17:16:56 +10009502 struct vcpu_vmx *vmx = to_vmx(vcpu);
9503
Kai Huang843e4332015-01-28 10:54:28 +08009504 if (enable_pml)
Kai Huanga3eaa862015-11-04 13:46:05 +08009505 vmx_destroy_pml_buffer(vmx);
Wanpeng Li991e7a02015-09-16 17:30:05 +08009506 free_vpid(vmx->vpid);
Paolo Bonzini4fa77342014-07-17 12:25:16 +02009507 leave_guest_mode(vcpu);
Jim Mattson2f1fe812016-07-08 15:36:06 -07009508 vmx_free_vcpu_nested(vcpu);
Paolo Bonzini4fa77342014-07-17 12:25:16 +02009509 free_loaded_vmcs(vmx->loaded_vmcs);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10009510 kfree(vmx->guest_msrs);
9511 kvm_vcpu_uninit(vcpu);
Rusty Russella4770342007-08-01 14:46:11 +10009512 kmem_cache_free(kvm_vcpu_cache, vmx);
Avi Kivity6aa8b732006-12-10 02:21:36 -08009513}
9514
Rusty Russellfb3f0f52007-07-27 17:16:56 +10009515static struct kvm_vcpu *vmx_create_vcpu(struct kvm *kvm, unsigned int id)
Avi Kivity6aa8b732006-12-10 02:21:36 -08009516{
Rusty Russellfb3f0f52007-07-27 17:16:56 +10009517 int err;
Rusty Russellc16f8622007-07-30 21:12:19 +10009518 struct vcpu_vmx *vmx = kmem_cache_zalloc(kvm_vcpu_cache, GFP_KERNEL);
Avi Kivity15ad7142007-07-11 18:17:21 +03009519 int cpu;
Avi Kivity6aa8b732006-12-10 02:21:36 -08009520
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04009521 if (!vmx)
Rusty Russellfb3f0f52007-07-27 17:16:56 +10009522 return ERR_PTR(-ENOMEM);
9523
Wanpeng Li991e7a02015-09-16 17:30:05 +08009524 vmx->vpid = allocate_vpid();
Sheng Yang2384d2b2008-01-17 15:14:33 +08009525
Rusty Russellfb3f0f52007-07-27 17:16:56 +10009526 err = kvm_vcpu_init(&vmx->vcpu, kvm, id);
9527 if (err)
9528 goto free_vcpu;
Ingo Molnar965b58a2007-01-05 16:36:23 -08009529
Peter Feiner4e595162016-07-07 14:49:58 -07009530 err = -ENOMEM;
9531
9532 /*
9533 * If PML is turned on, failure on enabling PML just results in failure
9534 * of creating the vcpu, therefore we can simplify PML logic (by
9535 * avoiding dealing with cases, such as enabling PML partially on vcpus
9536 * for the guest, etc.
9537 */
9538 if (enable_pml) {
9539 vmx->pml_pg = alloc_page(GFP_KERNEL | __GFP_ZERO);
9540 if (!vmx->pml_pg)
9541 goto uninit_vcpu;
9542 }
9543
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04009544 vmx->guest_msrs = kmalloc(PAGE_SIZE, GFP_KERNEL);
Paolo Bonzini03916db2014-07-24 14:21:57 +02009545 BUILD_BUG_ON(ARRAY_SIZE(vmx_msr_index) * sizeof(vmx->guest_msrs[0])
9546 > PAGE_SIZE);
Nadav Amit0123be42014-07-24 15:06:56 +03009547
Peter Feiner4e595162016-07-07 14:49:58 -07009548 if (!vmx->guest_msrs)
9549 goto free_pml;
Ingo Molnar965b58a2007-01-05 16:36:23 -08009550
Nadav Har'Eld462b812011-05-24 15:26:10 +03009551 vmx->loaded_vmcs = &vmx->vmcs01;
9552 vmx->loaded_vmcs->vmcs = alloc_vmcs();
Jim Mattson355f4fb2016-10-28 08:29:39 -07009553 vmx->loaded_vmcs->shadow_vmcs = NULL;
Nadav Har'Eld462b812011-05-24 15:26:10 +03009554 if (!vmx->loaded_vmcs->vmcs)
Rusty Russellfb3f0f52007-07-27 17:16:56 +10009555 goto free_msrs;
Nadav Har'Eld462b812011-05-24 15:26:10 +03009556 loaded_vmcs_init(vmx->loaded_vmcs);
Gregory Haskinsa2fa3e92007-07-27 08:13:10 -04009557
Avi Kivity15ad7142007-07-11 18:17:21 +03009558 cpu = get_cpu();
9559 vmx_vcpu_load(&vmx->vcpu, cpu);
Zachary Amsdene48672f2010-08-19 22:07:23 -10009560 vmx->vcpu.cpu = cpu;
Rusty Russell8b9cf982007-07-30 16:31:43 +10009561 err = vmx_vcpu_setup(vmx);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10009562 vmx_vcpu_put(&vmx->vcpu);
Avi Kivity15ad7142007-07-11 18:17:21 +03009563 put_cpu();
Rusty Russellfb3f0f52007-07-27 17:16:56 +10009564 if (err)
9565 goto free_vmcs;
Paolo Bonzini35754c92015-07-29 12:05:37 +02009566 if (cpu_need_virtualize_apic_accesses(&vmx->vcpu)) {
Jan Kiszkabe6d05c2011-04-13 01:27:55 +02009567 err = alloc_apic_access_page(kvm);
9568 if (err)
Marcelo Tosatti5e4a0b32008-02-14 21:21:43 -02009569 goto free_vmcs;
Jan Kiszkaa63cb562013-04-08 11:07:46 +02009570 }
Ingo Molnar965b58a2007-01-05 16:36:23 -08009571
Sheng Yangb927a3c2009-07-21 10:42:48 +08009572 if (enable_ept) {
9573 if (!kvm->arch.ept_identity_map_addr)
9574 kvm->arch.ept_identity_map_addr =
9575 VMX_EPT_IDENTITY_PAGETABLE_ADDR;
Tang Chenf51770e2014-09-16 18:41:59 +08009576 err = init_rmode_identity_map(kvm);
9577 if (err)
Gleb Natapov93ea5382011-02-21 12:07:59 +02009578 goto free_vmcs;
Sheng Yangb927a3c2009-07-21 10:42:48 +08009579 }
Sheng Yangb7ebfb02008-04-25 21:44:52 +08009580
Wanpeng Li5c614b32015-10-13 09:18:36 -07009581 if (nested) {
Wincy Vanb9c237b2015-02-03 23:56:30 +08009582 nested_vmx_setup_ctls_msrs(vmx);
Wanpeng Li5c614b32015-10-13 09:18:36 -07009583 vmx->nested.vpid02 = allocate_vpid();
9584 }
Wincy Vanb9c237b2015-02-03 23:56:30 +08009585
Wincy Van705699a2015-02-03 23:58:17 +08009586 vmx->nested.posted_intr_nv = -1;
Nadav Har'Ela9d30f32011-05-25 23:03:55 +03009587 vmx->nested.current_vmptr = -1ull;
Nadav Har'Ela9d30f32011-05-25 23:03:55 +03009588
Haozhong Zhang37e4c992016-06-22 14:59:55 +08009589 vmx->msr_ia32_feature_control_valid_bits = FEATURE_CONTROL_LOCKED;
9590
Rusty Russellfb3f0f52007-07-27 17:16:56 +10009591 return &vmx->vcpu;
Ingo Molnar965b58a2007-01-05 16:36:23 -08009592
Rusty Russellfb3f0f52007-07-27 17:16:56 +10009593free_vmcs:
Wanpeng Li5c614b32015-10-13 09:18:36 -07009594 free_vpid(vmx->nested.vpid02);
Xiao Guangrong5f3fbc32012-05-14 14:58:58 +08009595 free_loaded_vmcs(vmx->loaded_vmcs);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10009596free_msrs:
Rusty Russellfb3f0f52007-07-27 17:16:56 +10009597 kfree(vmx->guest_msrs);
Peter Feiner4e595162016-07-07 14:49:58 -07009598free_pml:
9599 vmx_destroy_pml_buffer(vmx);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10009600uninit_vcpu:
9601 kvm_vcpu_uninit(&vmx->vcpu);
9602free_vcpu:
Wanpeng Li991e7a02015-09-16 17:30:05 +08009603 free_vpid(vmx->vpid);
Rusty Russella4770342007-08-01 14:46:11 +10009604 kmem_cache_free(kvm_vcpu_cache, vmx);
Rusty Russellfb3f0f52007-07-27 17:16:56 +10009605 return ERR_PTR(err);
Avi Kivity6aa8b732006-12-10 02:21:36 -08009606}
9607
Yang, Sheng002c7f72007-07-31 14:23:01 +03009608static void __init vmx_check_processor_compat(void *rtn)
9609{
9610 struct vmcs_config vmcs_conf;
9611
9612 *(int *)rtn = 0;
9613 if (setup_vmcs_config(&vmcs_conf) < 0)
9614 *(int *)rtn = -EIO;
9615 if (memcmp(&vmcs_config, &vmcs_conf, sizeof(struct vmcs_config)) != 0) {
9616 printk(KERN_ERR "kvm: CPU %d feature inconsistency!\n",
9617 smp_processor_id());
9618 *(int *)rtn = -EIO;
9619 }
9620}
9621
Sheng Yang4b12f0d2009-04-27 20:35:42 +08009622static u64 vmx_get_mt_mask(struct kvm_vcpu *vcpu, gfn_t gfn, bool is_mmio)
Sheng Yang64d4d522008-10-09 16:01:57 +08009623{
Xiao Guangrongb18d5432015-06-15 16:55:21 +08009624 u8 cache;
9625 u64 ipat = 0;
Sheng Yang4b12f0d2009-04-27 20:35:42 +08009626
Sheng Yang522c68c2009-04-27 20:35:43 +08009627 /* For VT-d and EPT combination
Paolo Bonzini606decd2015-10-01 13:12:47 +02009628 * 1. MMIO: always map as UC
Sheng Yang522c68c2009-04-27 20:35:43 +08009629 * 2. EPT with VT-d:
9630 * a. VT-d without snooping control feature: can't guarantee the
Paolo Bonzini606decd2015-10-01 13:12:47 +02009631 * result, try to trust guest.
Sheng Yang522c68c2009-04-27 20:35:43 +08009632 * b. VT-d with snooping control feature: snooping control feature of
9633 * VT-d engine can guarantee the cache correctness. Just set it
9634 * to WB to keep consistent with host. So the same as item 3.
Sheng Yanga19a6d12010-02-09 16:41:53 +08009635 * 3. EPT without VT-d: always map as WB and set IPAT=1 to keep
Sheng Yang522c68c2009-04-27 20:35:43 +08009636 * consistent with host MTRR
9637 */
Paolo Bonzini606decd2015-10-01 13:12:47 +02009638 if (is_mmio) {
9639 cache = MTRR_TYPE_UNCACHABLE;
9640 goto exit;
9641 }
9642
9643 if (!kvm_arch_has_noncoherent_dma(vcpu->kvm)) {
Xiao Guangrongb18d5432015-06-15 16:55:21 +08009644 ipat = VMX_EPT_IPAT_BIT;
9645 cache = MTRR_TYPE_WRBACK;
9646 goto exit;
9647 }
9648
9649 if (kvm_read_cr0(vcpu) & X86_CR0_CD) {
9650 ipat = VMX_EPT_IPAT_BIT;
Paolo Bonzini0da029e2015-07-23 08:24:42 +02009651 if (kvm_check_has_quirk(vcpu->kvm, KVM_X86_QUIRK_CD_NW_CLEARED))
Xiao Guangrongfb2799502015-07-16 03:25:56 +08009652 cache = MTRR_TYPE_WRBACK;
9653 else
9654 cache = MTRR_TYPE_UNCACHABLE;
Xiao Guangrongb18d5432015-06-15 16:55:21 +08009655 goto exit;
9656 }
9657
Xiao Guangrongff536042015-06-15 16:55:22 +08009658 cache = kvm_mtrr_get_guest_memory_type(vcpu, gfn);
Xiao Guangrongb18d5432015-06-15 16:55:21 +08009659
9660exit:
9661 return (cache << VMX_EPT_MT_EPTE_SHIFT) | ipat;
Sheng Yang64d4d522008-10-09 16:01:57 +08009662}
9663
Sheng Yang17cc3932010-01-05 19:02:27 +08009664static int vmx_get_lpage_level(void)
Joerg Roedel344f4142009-07-27 16:30:48 +02009665{
Sheng Yang878403b2010-01-05 19:02:29 +08009666 if (enable_ept && !cpu_has_vmx_ept_1g_page())
9667 return PT_DIRECTORY_LEVEL;
9668 else
9669 /* For shadow and EPT supported 1GB page */
9670 return PT_PDPE_LEVEL;
Joerg Roedel344f4142009-07-27 16:30:48 +02009671}
9672
Xiao Guangrongfeda8052015-09-09 14:05:55 +08009673static void vmcs_set_secondary_exec_control(u32 new_ctl)
9674{
9675 /*
9676 * These bits in the secondary execution controls field
9677 * are dynamic, the others are mostly based on the hypervisor
9678 * architecture and the guest's CPUID. Do not touch the
9679 * dynamic bits.
9680 */
9681 u32 mask =
9682 SECONDARY_EXEC_SHADOW_VMCS |
9683 SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE |
9684 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES;
9685
9686 u32 cur_ctl = vmcs_read32(SECONDARY_VM_EXEC_CONTROL);
9687
9688 vmcs_write32(SECONDARY_VM_EXEC_CONTROL,
9689 (new_ctl & ~mask) | (cur_ctl & mask));
9690}
9691
David Matlack8322ebb2016-11-29 18:14:09 -08009692/*
9693 * Generate MSR_IA32_VMX_CR{0,4}_FIXED1 according to CPUID. Only set bits
9694 * (indicating "allowed-1") if they are supported in the guest's CPUID.
9695 */
9696static void nested_vmx_cr_fixed1_bits_update(struct kvm_vcpu *vcpu)
9697{
9698 struct vcpu_vmx *vmx = to_vmx(vcpu);
9699 struct kvm_cpuid_entry2 *entry;
9700
9701 vmx->nested.nested_vmx_cr0_fixed1 = 0xffffffff;
9702 vmx->nested.nested_vmx_cr4_fixed1 = X86_CR4_PCE;
9703
9704#define cr4_fixed1_update(_cr4_mask, _reg, _cpuid_mask) do { \
9705 if (entry && (entry->_reg & (_cpuid_mask))) \
9706 vmx->nested.nested_vmx_cr4_fixed1 |= (_cr4_mask); \
9707} while (0)
9708
9709 entry = kvm_find_cpuid_entry(vcpu, 0x1, 0);
9710 cr4_fixed1_update(X86_CR4_VME, edx, bit(X86_FEATURE_VME));
9711 cr4_fixed1_update(X86_CR4_PVI, edx, bit(X86_FEATURE_VME));
9712 cr4_fixed1_update(X86_CR4_TSD, edx, bit(X86_FEATURE_TSC));
9713 cr4_fixed1_update(X86_CR4_DE, edx, bit(X86_FEATURE_DE));
9714 cr4_fixed1_update(X86_CR4_PSE, edx, bit(X86_FEATURE_PSE));
9715 cr4_fixed1_update(X86_CR4_PAE, edx, bit(X86_FEATURE_PAE));
9716 cr4_fixed1_update(X86_CR4_MCE, edx, bit(X86_FEATURE_MCE));
9717 cr4_fixed1_update(X86_CR4_PGE, edx, bit(X86_FEATURE_PGE));
9718 cr4_fixed1_update(X86_CR4_OSFXSR, edx, bit(X86_FEATURE_FXSR));
9719 cr4_fixed1_update(X86_CR4_OSXMMEXCPT, edx, bit(X86_FEATURE_XMM));
9720 cr4_fixed1_update(X86_CR4_VMXE, ecx, bit(X86_FEATURE_VMX));
9721 cr4_fixed1_update(X86_CR4_SMXE, ecx, bit(X86_FEATURE_SMX));
9722 cr4_fixed1_update(X86_CR4_PCIDE, ecx, bit(X86_FEATURE_PCID));
9723 cr4_fixed1_update(X86_CR4_OSXSAVE, ecx, bit(X86_FEATURE_XSAVE));
9724
9725 entry = kvm_find_cpuid_entry(vcpu, 0x7, 0);
9726 cr4_fixed1_update(X86_CR4_FSGSBASE, ebx, bit(X86_FEATURE_FSGSBASE));
9727 cr4_fixed1_update(X86_CR4_SMEP, ebx, bit(X86_FEATURE_SMEP));
9728 cr4_fixed1_update(X86_CR4_SMAP, ebx, bit(X86_FEATURE_SMAP));
9729 cr4_fixed1_update(X86_CR4_PKE, ecx, bit(X86_FEATURE_PKU));
9730 /* TODO: Use X86_CR4_UMIP and X86_FEATURE_UMIP macros */
9731 cr4_fixed1_update(bit(11), ecx, bit(2));
9732
9733#undef cr4_fixed1_update
9734}
9735
Sheng Yang0e851882009-12-18 16:48:46 +08009736static void vmx_cpuid_update(struct kvm_vcpu *vcpu)
9737{
Sheng Yang4e47c7a2009-12-18 16:48:47 +08009738 struct vcpu_vmx *vmx = to_vmx(vcpu);
Sheng Yang4e47c7a2009-12-18 16:48:47 +08009739
Paolo Bonzini80154d72017-08-24 13:55:35 +02009740 if (cpu_has_secondary_exec_ctrls()) {
9741 vmx_compute_secondary_exec_control(vmx);
9742 vmcs_set_secondary_exec_control(vmx->secondary_exec_control);
Sheng Yang4e47c7a2009-12-18 16:48:47 +08009743 }
Mao, Junjiead756a12012-07-02 01:18:48 +00009744
Haozhong Zhang37e4c992016-06-22 14:59:55 +08009745 if (nested_vmx_allowed(vcpu))
9746 to_vmx(vcpu)->msr_ia32_feature_control_valid_bits |=
9747 FEATURE_CONTROL_VMXON_ENABLED_OUTSIDE_SMX;
9748 else
9749 to_vmx(vcpu)->msr_ia32_feature_control_valid_bits &=
9750 ~FEATURE_CONTROL_VMXON_ENABLED_OUTSIDE_SMX;
David Matlack8322ebb2016-11-29 18:14:09 -08009751
9752 if (nested_vmx_allowed(vcpu))
9753 nested_vmx_cr_fixed1_bits_update(vcpu);
Sheng Yang0e851882009-12-18 16:48:46 +08009754}
9755
Joerg Roedeld4330ef2010-04-22 12:33:11 +02009756static void vmx_set_supported_cpuid(u32 func, struct kvm_cpuid_entry2 *entry)
9757{
Nadav Har'El7b8050f2011-05-25 23:16:10 +03009758 if (func == 1 && nested)
9759 entry->ecx |= bit(X86_FEATURE_VMX);
Joerg Roedeld4330ef2010-04-22 12:33:11 +02009760}
9761
Yang Zhang25d92082013-08-06 12:00:32 +03009762static void nested_ept_inject_page_fault(struct kvm_vcpu *vcpu,
9763 struct x86_exception *fault)
9764{
Jan Kiszka533558b2014-01-04 18:47:20 +01009765 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
Bandan Dasc5f983f2017-05-05 15:25:14 -04009766 struct vcpu_vmx *vmx = to_vmx(vcpu);
Jan Kiszka533558b2014-01-04 18:47:20 +01009767 u32 exit_reason;
Bandan Dasc5f983f2017-05-05 15:25:14 -04009768 unsigned long exit_qualification = vcpu->arch.exit_qualification;
Yang Zhang25d92082013-08-06 12:00:32 +03009769
Bandan Dasc5f983f2017-05-05 15:25:14 -04009770 if (vmx->nested.pml_full) {
9771 exit_reason = EXIT_REASON_PML_FULL;
9772 vmx->nested.pml_full = false;
9773 exit_qualification &= INTR_INFO_UNBLOCK_NMI;
9774 } else if (fault->error_code & PFERR_RSVD_MASK)
Jan Kiszka533558b2014-01-04 18:47:20 +01009775 exit_reason = EXIT_REASON_EPT_MISCONFIG;
Yang Zhang25d92082013-08-06 12:00:32 +03009776 else
Jan Kiszka533558b2014-01-04 18:47:20 +01009777 exit_reason = EXIT_REASON_EPT_VIOLATION;
Bandan Dasc5f983f2017-05-05 15:25:14 -04009778
9779 nested_vmx_vmexit(vcpu, exit_reason, 0, exit_qualification);
Yang Zhang25d92082013-08-06 12:00:32 +03009780 vmcs12->guest_physical_address = fault->address;
9781}
9782
Peter Feiner995f00a2017-06-30 17:26:32 -07009783static bool nested_ept_ad_enabled(struct kvm_vcpu *vcpu)
9784{
David Hildenbrandbb97a012017-08-10 23:15:28 +02009785 return nested_ept_get_cr3(vcpu) & VMX_EPTP_AD_ENABLE_BIT;
Peter Feiner995f00a2017-06-30 17:26:32 -07009786}
9787
Nadav Har'El155a97a2013-08-05 11:07:16 +03009788/* Callbacks for nested_ept_init_mmu_context: */
9789
9790static unsigned long nested_ept_get_cr3(struct kvm_vcpu *vcpu)
9791{
9792 /* return the page table to be shadowed - in our case, EPT12 */
9793 return get_vmcs12(vcpu)->ept_pointer;
9794}
9795
Paolo Bonziniae1e2d12017-03-30 11:55:30 +02009796static int nested_ept_init_mmu_context(struct kvm_vcpu *vcpu)
Nadav Har'El155a97a2013-08-05 11:07:16 +03009797{
Paolo Bonziniad896af2013-10-02 16:56:14 +02009798 WARN_ON(mmu_is_nested(vcpu));
David Hildenbranda057e0e2017-08-10 23:36:54 +02009799 if (!valid_ept_address(vcpu, nested_ept_get_cr3(vcpu)))
Paolo Bonziniae1e2d12017-03-30 11:55:30 +02009800 return 1;
9801
9802 kvm_mmu_unload(vcpu);
Paolo Bonziniad896af2013-10-02 16:56:14 +02009803 kvm_init_shadow_ept_mmu(vcpu,
Wincy Vanb9c237b2015-02-03 23:56:30 +08009804 to_vmx(vcpu)->nested.nested_vmx_ept_caps &
Paolo Bonziniae1e2d12017-03-30 11:55:30 +02009805 VMX_EPT_EXECUTE_ONLY_BIT,
David Hildenbranda057e0e2017-08-10 23:36:54 +02009806 nested_ept_ad_enabled(vcpu));
Nadav Har'El155a97a2013-08-05 11:07:16 +03009807 vcpu->arch.mmu.set_cr3 = vmx_set_cr3;
9808 vcpu->arch.mmu.get_cr3 = nested_ept_get_cr3;
9809 vcpu->arch.mmu.inject_page_fault = nested_ept_inject_page_fault;
9810
9811 vcpu->arch.walk_mmu = &vcpu->arch.nested_mmu;
Paolo Bonziniae1e2d12017-03-30 11:55:30 +02009812 return 0;
Nadav Har'El155a97a2013-08-05 11:07:16 +03009813}
9814
9815static void nested_ept_uninit_mmu_context(struct kvm_vcpu *vcpu)
9816{
9817 vcpu->arch.walk_mmu = &vcpu->arch.mmu;
9818}
9819
Eugene Korenevsky19d5f102014-12-16 22:35:53 +03009820static bool nested_vmx_is_page_fault_vmexit(struct vmcs12 *vmcs12,
9821 u16 error_code)
9822{
9823 bool inequality, bit;
9824
9825 bit = (vmcs12->exception_bitmap & (1u << PF_VECTOR)) != 0;
9826 inequality =
9827 (error_code & vmcs12->page_fault_error_code_mask) !=
9828 vmcs12->page_fault_error_code_match;
9829 return inequality ^ bit;
9830}
9831
Gleb Natapovfeaf0c7d2013-09-25 12:51:36 +03009832static void vmx_inject_page_fault_nested(struct kvm_vcpu *vcpu,
9833 struct x86_exception *fault)
9834{
9835 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
9836
9837 WARN_ON(!is_guest_mode(vcpu));
9838
Paolo Bonzini7313c692017-07-27 10:31:25 +02009839 if (nested_vmx_is_page_fault_vmexit(vmcs12, fault->error_code)) {
Paolo Bonzinib96fb432017-07-27 12:29:32 +02009840 vmcs12->vm_exit_intr_error_code = fault->error_code;
9841 nested_vmx_vmexit(vcpu, EXIT_REASON_EXCEPTION_NMI,
9842 PF_VECTOR | INTR_TYPE_HARD_EXCEPTION |
9843 INTR_INFO_DELIVER_CODE_MASK | INTR_INFO_VALID_MASK,
9844 fault->address);
Paolo Bonzini7313c692017-07-27 10:31:25 +02009845 } else {
Gleb Natapovfeaf0c7d2013-09-25 12:51:36 +03009846 kvm_inject_page_fault(vcpu, fault);
Paolo Bonzini7313c692017-07-27 10:31:25 +02009847 }
Gleb Natapovfeaf0c7d2013-09-25 12:51:36 +03009848}
9849
Jim Mattson6beb7bd2016-11-30 12:03:45 -08009850static inline bool nested_vmx_merge_msr_bitmap(struct kvm_vcpu *vcpu,
9851 struct vmcs12 *vmcs12);
9852
9853static void nested_get_vmcs12_pages(struct kvm_vcpu *vcpu,
Wanpeng Lia2bcba52014-08-21 19:46:49 +08009854 struct vmcs12 *vmcs12)
9855{
9856 struct vcpu_vmx *vmx = to_vmx(vcpu);
David Hildenbrand5e2f30b2017-08-03 18:11:04 +02009857 struct page *page;
Jim Mattson6beb7bd2016-11-30 12:03:45 -08009858 u64 hpa;
Wanpeng Lia2bcba52014-08-21 19:46:49 +08009859
9860 if (nested_cpu_has2(vmcs12, SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES)) {
Wanpeng Lia2bcba52014-08-21 19:46:49 +08009861 /*
9862 * Translate L1 physical address to host physical
9863 * address for vmcs02. Keep the page pinned, so this
9864 * physical address remains valid. We keep a reference
9865 * to it so we can release it later.
9866 */
David Hildenbrand5e2f30b2017-08-03 18:11:04 +02009867 if (vmx->nested.apic_access_page) { /* shouldn't happen */
David Hildenbrand53a70da2017-08-03 18:11:05 +02009868 kvm_release_page_dirty(vmx->nested.apic_access_page);
David Hildenbrand5e2f30b2017-08-03 18:11:04 +02009869 vmx->nested.apic_access_page = NULL;
9870 }
9871 page = kvm_vcpu_gpa_to_page(vcpu, vmcs12->apic_access_addr);
Jim Mattson6beb7bd2016-11-30 12:03:45 -08009872 /*
9873 * If translation failed, no matter: This feature asks
9874 * to exit when accessing the given address, and if it
9875 * can never be accessed, this feature won't do
9876 * anything anyway.
9877 */
David Hildenbrand5e2f30b2017-08-03 18:11:04 +02009878 if (!is_error_page(page)) {
9879 vmx->nested.apic_access_page = page;
Jim Mattson6beb7bd2016-11-30 12:03:45 -08009880 hpa = page_to_phys(vmx->nested.apic_access_page);
9881 vmcs_write64(APIC_ACCESS_ADDR, hpa);
9882 } else {
9883 vmcs_clear_bits(SECONDARY_VM_EXEC_CONTROL,
9884 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES);
9885 }
9886 } else if (!(nested_cpu_has_virt_x2apic_mode(vmcs12)) &&
9887 cpu_need_virtualize_apic_accesses(&vmx->vcpu)) {
9888 vmcs_set_bits(SECONDARY_VM_EXEC_CONTROL,
9889 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES);
9890 kvm_vcpu_reload_apic_access_page(vcpu);
Wanpeng Lia2bcba52014-08-21 19:46:49 +08009891 }
Wanpeng Lia7c0b072014-08-21 19:46:50 +08009892
9893 if (nested_cpu_has(vmcs12, CPU_BASED_TPR_SHADOW)) {
David Hildenbrand5e2f30b2017-08-03 18:11:04 +02009894 if (vmx->nested.virtual_apic_page) { /* shouldn't happen */
David Hildenbrand53a70da2017-08-03 18:11:05 +02009895 kvm_release_page_dirty(vmx->nested.virtual_apic_page);
David Hildenbrand5e2f30b2017-08-03 18:11:04 +02009896 vmx->nested.virtual_apic_page = NULL;
9897 }
9898 page = kvm_vcpu_gpa_to_page(vcpu, vmcs12->virtual_apic_page_addr);
Wanpeng Lia7c0b072014-08-21 19:46:50 +08009899
9900 /*
Jim Mattson6beb7bd2016-11-30 12:03:45 -08009901 * If translation failed, VM entry will fail because
9902 * prepare_vmcs02 set VIRTUAL_APIC_PAGE_ADDR to -1ull.
9903 * Failing the vm entry is _not_ what the processor
9904 * does but it's basically the only possibility we
9905 * have. We could still enter the guest if CR8 load
9906 * exits are enabled, CR8 store exits are enabled, and
9907 * virtualize APIC access is disabled; in this case
9908 * the processor would never use the TPR shadow and we
9909 * could simply clear the bit from the execution
9910 * control. But such a configuration is useless, so
9911 * let's keep the code simple.
Wanpeng Lia7c0b072014-08-21 19:46:50 +08009912 */
David Hildenbrand5e2f30b2017-08-03 18:11:04 +02009913 if (!is_error_page(page)) {
9914 vmx->nested.virtual_apic_page = page;
Jim Mattson6beb7bd2016-11-30 12:03:45 -08009915 hpa = page_to_phys(vmx->nested.virtual_apic_page);
9916 vmcs_write64(VIRTUAL_APIC_PAGE_ADDR, hpa);
9917 }
Wanpeng Lia7c0b072014-08-21 19:46:50 +08009918 }
9919
Wincy Van705699a2015-02-03 23:58:17 +08009920 if (nested_cpu_has_posted_intr(vmcs12)) {
Wincy Van705699a2015-02-03 23:58:17 +08009921 if (vmx->nested.pi_desc_page) { /* shouldn't happen */
9922 kunmap(vmx->nested.pi_desc_page);
David Hildenbrand53a70da2017-08-03 18:11:05 +02009923 kvm_release_page_dirty(vmx->nested.pi_desc_page);
David Hildenbrand5e2f30b2017-08-03 18:11:04 +02009924 vmx->nested.pi_desc_page = NULL;
Wincy Van705699a2015-02-03 23:58:17 +08009925 }
David Hildenbrand5e2f30b2017-08-03 18:11:04 +02009926 page = kvm_vcpu_gpa_to_page(vcpu, vmcs12->posted_intr_desc_addr);
9927 if (is_error_page(page))
Jim Mattson6beb7bd2016-11-30 12:03:45 -08009928 return;
David Hildenbrand5e2f30b2017-08-03 18:11:04 +02009929 vmx->nested.pi_desc_page = page;
9930 vmx->nested.pi_desc = kmap(vmx->nested.pi_desc_page);
Wincy Van705699a2015-02-03 23:58:17 +08009931 vmx->nested.pi_desc =
9932 (struct pi_desc *)((void *)vmx->nested.pi_desc +
9933 (unsigned long)(vmcs12->posted_intr_desc_addr &
9934 (PAGE_SIZE - 1)));
Jim Mattson6beb7bd2016-11-30 12:03:45 -08009935 vmcs_write64(POSTED_INTR_DESC_ADDR,
9936 page_to_phys(vmx->nested.pi_desc_page) +
9937 (unsigned long)(vmcs12->posted_intr_desc_addr &
9938 (PAGE_SIZE - 1)));
Wincy Van705699a2015-02-03 23:58:17 +08009939 }
Jim Mattson6beb7bd2016-11-30 12:03:45 -08009940 if (cpu_has_vmx_msr_bitmap() &&
9941 nested_cpu_has(vmcs12, CPU_BASED_USE_MSR_BITMAPS) &&
9942 nested_vmx_merge_msr_bitmap(vcpu, vmcs12))
9943 ;
9944 else
9945 vmcs_clear_bits(CPU_BASED_VM_EXEC_CONTROL,
9946 CPU_BASED_USE_MSR_BITMAPS);
Wanpeng Lia2bcba52014-08-21 19:46:49 +08009947}
9948
Jan Kiszkaf4124502014-03-07 20:03:13 +01009949static void vmx_start_preemption_timer(struct kvm_vcpu *vcpu)
9950{
9951 u64 preemption_timeout = get_vmcs12(vcpu)->vmx_preemption_timer_value;
9952 struct vcpu_vmx *vmx = to_vmx(vcpu);
9953
9954 if (vcpu->arch.virtual_tsc_khz == 0)
9955 return;
9956
9957 /* Make sure short timeouts reliably trigger an immediate vmexit.
9958 * hrtimer_start does not guarantee this. */
9959 if (preemption_timeout <= 1) {
9960 vmx_preemption_timer_fn(&vmx->nested.preemption_timer);
9961 return;
9962 }
9963
9964 preemption_timeout <<= VMX_MISC_EMULATED_PREEMPTION_TIMER_RATE;
9965 preemption_timeout *= 1000000;
9966 do_div(preemption_timeout, vcpu->arch.virtual_tsc_khz);
9967 hrtimer_start(&vmx->nested.preemption_timer,
9968 ns_to_ktime(preemption_timeout), HRTIMER_MODE_REL);
9969}
9970
Jim Mattson56a20512017-07-06 16:33:06 -07009971static int nested_vmx_check_io_bitmap_controls(struct kvm_vcpu *vcpu,
9972 struct vmcs12 *vmcs12)
9973{
9974 if (!nested_cpu_has(vmcs12, CPU_BASED_USE_IO_BITMAPS))
9975 return 0;
9976
9977 if (!page_address_valid(vcpu, vmcs12->io_bitmap_a) ||
9978 !page_address_valid(vcpu, vmcs12->io_bitmap_b))
9979 return -EINVAL;
9980
9981 return 0;
9982}
9983
Wincy Van3af18d92015-02-03 23:49:31 +08009984static int nested_vmx_check_msr_bitmap_controls(struct kvm_vcpu *vcpu,
9985 struct vmcs12 *vmcs12)
9986{
Wincy Van3af18d92015-02-03 23:49:31 +08009987 if (!nested_cpu_has(vmcs12, CPU_BASED_USE_MSR_BITMAPS))
9988 return 0;
9989
Jim Mattson5fa99cb2017-07-06 16:33:07 -07009990 if (!page_address_valid(vcpu, vmcs12->msr_bitmap))
Wincy Van3af18d92015-02-03 23:49:31 +08009991 return -EINVAL;
9992
9993 return 0;
9994}
9995
9996/*
9997 * Merge L0's and L1's MSR bitmap, return false to indicate that
9998 * we do not use the hardware.
9999 */
10000static inline bool nested_vmx_merge_msr_bitmap(struct kvm_vcpu *vcpu,
10001 struct vmcs12 *vmcs12)
10002{
Wincy Van82f0dd42015-02-03 23:57:18 +080010003 int msr;
Wincy Vanf2b93282015-02-03 23:56:03 +080010004 struct page *page;
Radim Krčmářd048c092016-08-08 20:16:22 +020010005 unsigned long *msr_bitmap_l1;
10006 unsigned long *msr_bitmap_l0 = to_vmx(vcpu)->nested.msr_bitmap;
Wincy Vanf2b93282015-02-03 23:56:03 +080010007
Radim Krčmářd048c092016-08-08 20:16:22 +020010008 /* This shortcut is ok because we support only x2APIC MSRs so far. */
Wincy Vanf2b93282015-02-03 23:56:03 +080010009 if (!nested_cpu_has_virt_x2apic_mode(vmcs12))
10010 return false;
10011
David Hildenbrand5e2f30b2017-08-03 18:11:04 +020010012 page = kvm_vcpu_gpa_to_page(vcpu, vmcs12->msr_bitmap);
10013 if (is_error_page(page))
Wincy Vanf2b93282015-02-03 23:56:03 +080010014 return false;
Radim Krčmářd048c092016-08-08 20:16:22 +020010015 msr_bitmap_l1 = (unsigned long *)kmap(page);
Wincy Vanf2b93282015-02-03 23:56:03 +080010016
Radim Krčmářd048c092016-08-08 20:16:22 +020010017 memset(msr_bitmap_l0, 0xff, PAGE_SIZE);
10018
Wincy Vanf2b93282015-02-03 23:56:03 +080010019 if (nested_cpu_has_virt_x2apic_mode(vmcs12)) {
Wincy Van82f0dd42015-02-03 23:57:18 +080010020 if (nested_cpu_has_apic_reg_virt(vmcs12))
10021 for (msr = 0x800; msr <= 0x8ff; msr++)
10022 nested_vmx_disable_intercept_for_msr(
Radim Krčmářd048c092016-08-08 20:16:22 +020010023 msr_bitmap_l1, msr_bitmap_l0,
Wincy Van82f0dd42015-02-03 23:57:18 +080010024 msr, MSR_TYPE_R);
Radim Krčmářd048c092016-08-08 20:16:22 +020010025
10026 nested_vmx_disable_intercept_for_msr(
10027 msr_bitmap_l1, msr_bitmap_l0,
Wincy Vanf2b93282015-02-03 23:56:03 +080010028 APIC_BASE_MSR + (APIC_TASKPRI >> 4),
10029 MSR_TYPE_R | MSR_TYPE_W);
Radim Krčmářd048c092016-08-08 20:16:22 +020010030
Wincy Van608406e2015-02-03 23:57:51 +080010031 if (nested_cpu_has_vid(vmcs12)) {
Wincy Van608406e2015-02-03 23:57:51 +080010032 nested_vmx_disable_intercept_for_msr(
Radim Krčmářd048c092016-08-08 20:16:22 +020010033 msr_bitmap_l1, msr_bitmap_l0,
Wincy Van608406e2015-02-03 23:57:51 +080010034 APIC_BASE_MSR + (APIC_EOI >> 4),
10035 MSR_TYPE_W);
10036 nested_vmx_disable_intercept_for_msr(
Radim Krčmářd048c092016-08-08 20:16:22 +020010037 msr_bitmap_l1, msr_bitmap_l0,
Wincy Van608406e2015-02-03 23:57:51 +080010038 APIC_BASE_MSR + (APIC_SELF_IPI >> 4),
10039 MSR_TYPE_W);
10040 }
Wincy Van82f0dd42015-02-03 23:57:18 +080010041 }
Wincy Vanf2b93282015-02-03 23:56:03 +080010042 kunmap(page);
David Hildenbrand53a70da2017-08-03 18:11:05 +020010043 kvm_release_page_clean(page);
Wincy Vanf2b93282015-02-03 23:56:03 +080010044
10045 return true;
10046}
10047
10048static int nested_vmx_check_apicv_controls(struct kvm_vcpu *vcpu,
10049 struct vmcs12 *vmcs12)
10050{
Wincy Van82f0dd42015-02-03 23:57:18 +080010051 if (!nested_cpu_has_virt_x2apic_mode(vmcs12) &&
Wincy Van608406e2015-02-03 23:57:51 +080010052 !nested_cpu_has_apic_reg_virt(vmcs12) &&
Wincy Van705699a2015-02-03 23:58:17 +080010053 !nested_cpu_has_vid(vmcs12) &&
10054 !nested_cpu_has_posted_intr(vmcs12))
Wincy Vanf2b93282015-02-03 23:56:03 +080010055 return 0;
10056
10057 /*
10058 * If virtualize x2apic mode is enabled,
10059 * virtualize apic access must be disabled.
10060 */
Wincy Van82f0dd42015-02-03 23:57:18 +080010061 if (nested_cpu_has_virt_x2apic_mode(vmcs12) &&
10062 nested_cpu_has2(vmcs12, SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES))
Wincy Vanf2b93282015-02-03 23:56:03 +080010063 return -EINVAL;
10064
Wincy Van608406e2015-02-03 23:57:51 +080010065 /*
10066 * If virtual interrupt delivery is enabled,
10067 * we must exit on external interrupts.
10068 */
10069 if (nested_cpu_has_vid(vmcs12) &&
10070 !nested_exit_on_intr(vcpu))
10071 return -EINVAL;
10072
Wincy Van705699a2015-02-03 23:58:17 +080010073 /*
10074 * bits 15:8 should be zero in posted_intr_nv,
10075 * the descriptor address has been already checked
10076 * in nested_get_vmcs12_pages.
10077 */
10078 if (nested_cpu_has_posted_intr(vmcs12) &&
10079 (!nested_cpu_has_vid(vmcs12) ||
10080 !nested_exit_intr_ack_set(vcpu) ||
10081 vmcs12->posted_intr_nv & 0xff00))
10082 return -EINVAL;
10083
Wincy Vanf2b93282015-02-03 23:56:03 +080010084 /* tpr shadow is needed by all apicv features. */
10085 if (!nested_cpu_has(vmcs12, CPU_BASED_TPR_SHADOW))
10086 return -EINVAL;
10087
10088 return 0;
Wincy Van3af18d92015-02-03 23:49:31 +080010089}
10090
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030010091static int nested_vmx_check_msr_switch(struct kvm_vcpu *vcpu,
10092 unsigned long count_field,
Eugene Korenevsky92d71bc2015-03-29 23:56:44 +030010093 unsigned long addr_field)
Wincy Vanff651cb2014-12-11 08:52:58 +030010094{
Eugene Korenevsky92d71bc2015-03-29 23:56:44 +030010095 int maxphyaddr;
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030010096 u64 count, addr;
10097
10098 if (vmcs12_read_any(vcpu, count_field, &count) ||
10099 vmcs12_read_any(vcpu, addr_field, &addr)) {
10100 WARN_ON(1);
10101 return -EINVAL;
10102 }
10103 if (count == 0)
10104 return 0;
Eugene Korenevsky92d71bc2015-03-29 23:56:44 +030010105 maxphyaddr = cpuid_maxphyaddr(vcpu);
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030010106 if (!IS_ALIGNED(addr, 16) || addr >> maxphyaddr ||
10107 (addr + count * sizeof(struct vmx_msr_entry) - 1) >> maxphyaddr) {
Paolo Bonzinibbe41b92016-08-19 17:51:20 +020010108 pr_debug_ratelimited(
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030010109 "nVMX: invalid MSR switch (0x%lx, %d, %llu, 0x%08llx)",
10110 addr_field, maxphyaddr, count, addr);
10111 return -EINVAL;
10112 }
10113 return 0;
10114}
10115
10116static int nested_vmx_check_msr_switch_controls(struct kvm_vcpu *vcpu,
10117 struct vmcs12 *vmcs12)
10118{
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030010119 if (vmcs12->vm_exit_msr_load_count == 0 &&
10120 vmcs12->vm_exit_msr_store_count == 0 &&
10121 vmcs12->vm_entry_msr_load_count == 0)
10122 return 0; /* Fast path */
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030010123 if (nested_vmx_check_msr_switch(vcpu, VM_EXIT_MSR_LOAD_COUNT,
Eugene Korenevsky92d71bc2015-03-29 23:56:44 +030010124 VM_EXIT_MSR_LOAD_ADDR) ||
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030010125 nested_vmx_check_msr_switch(vcpu, VM_EXIT_MSR_STORE_COUNT,
Eugene Korenevsky92d71bc2015-03-29 23:56:44 +030010126 VM_EXIT_MSR_STORE_ADDR) ||
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030010127 nested_vmx_check_msr_switch(vcpu, VM_ENTRY_MSR_LOAD_COUNT,
Eugene Korenevsky92d71bc2015-03-29 23:56:44 +030010128 VM_ENTRY_MSR_LOAD_ADDR))
Wincy Vanff651cb2014-12-11 08:52:58 +030010129 return -EINVAL;
10130 return 0;
10131}
10132
Bandan Dasc5f983f2017-05-05 15:25:14 -040010133static int nested_vmx_check_pml_controls(struct kvm_vcpu *vcpu,
10134 struct vmcs12 *vmcs12)
10135{
10136 u64 address = vmcs12->pml_address;
10137 int maxphyaddr = cpuid_maxphyaddr(vcpu);
10138
10139 if (nested_cpu_has2(vmcs12, SECONDARY_EXEC_ENABLE_PML)) {
10140 if (!nested_cpu_has_ept(vmcs12) ||
10141 !IS_ALIGNED(address, 4096) ||
10142 address >> maxphyaddr)
10143 return -EINVAL;
10144 }
10145
10146 return 0;
10147}
10148
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030010149static int nested_vmx_msr_check_common(struct kvm_vcpu *vcpu,
10150 struct vmx_msr_entry *e)
10151{
10152 /* x2APIC MSR accesses are not allowed */
Jan Kiszka8a9781f2015-05-04 08:32:32 +020010153 if (vcpu->arch.apic_base & X2APIC_ENABLE && e->index >> 8 == 0x8)
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030010154 return -EINVAL;
10155 if (e->index == MSR_IA32_UCODE_WRITE || /* SDM Table 35-2 */
10156 e->index == MSR_IA32_UCODE_REV)
10157 return -EINVAL;
10158 if (e->reserved != 0)
10159 return -EINVAL;
10160 return 0;
10161}
10162
10163static int nested_vmx_load_msr_check(struct kvm_vcpu *vcpu,
10164 struct vmx_msr_entry *e)
Wincy Vanff651cb2014-12-11 08:52:58 +030010165{
10166 if (e->index == MSR_FS_BASE ||
10167 e->index == MSR_GS_BASE ||
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030010168 e->index == MSR_IA32_SMM_MONITOR_CTL || /* SMM is not supported */
10169 nested_vmx_msr_check_common(vcpu, e))
10170 return -EINVAL;
10171 return 0;
10172}
10173
10174static int nested_vmx_store_msr_check(struct kvm_vcpu *vcpu,
10175 struct vmx_msr_entry *e)
10176{
10177 if (e->index == MSR_IA32_SMBASE || /* SMM is not supported */
10178 nested_vmx_msr_check_common(vcpu, e))
Wincy Vanff651cb2014-12-11 08:52:58 +030010179 return -EINVAL;
10180 return 0;
10181}
10182
10183/*
10184 * Load guest's/host's msr at nested entry/exit.
10185 * return 0 for success, entry index for failure.
10186 */
10187static u32 nested_vmx_load_msr(struct kvm_vcpu *vcpu, u64 gpa, u32 count)
10188{
10189 u32 i;
10190 struct vmx_msr_entry e;
10191 struct msr_data msr;
10192
10193 msr.host_initiated = false;
10194 for (i = 0; i < count; i++) {
Paolo Bonzini54bf36a2015-04-08 15:39:23 +020010195 if (kvm_vcpu_read_guest(vcpu, gpa + i * sizeof(e),
10196 &e, sizeof(e))) {
Paolo Bonzinibbe41b92016-08-19 17:51:20 +020010197 pr_debug_ratelimited(
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030010198 "%s cannot read MSR entry (%u, 0x%08llx)\n",
10199 __func__, i, gpa + i * sizeof(e));
Wincy Vanff651cb2014-12-11 08:52:58 +030010200 goto fail;
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030010201 }
10202 if (nested_vmx_load_msr_check(vcpu, &e)) {
Paolo Bonzinibbe41b92016-08-19 17:51:20 +020010203 pr_debug_ratelimited(
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030010204 "%s check failed (%u, 0x%x, 0x%x)\n",
10205 __func__, i, e.index, e.reserved);
10206 goto fail;
10207 }
Wincy Vanff651cb2014-12-11 08:52:58 +030010208 msr.index = e.index;
10209 msr.data = e.value;
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030010210 if (kvm_set_msr(vcpu, &msr)) {
Paolo Bonzinibbe41b92016-08-19 17:51:20 +020010211 pr_debug_ratelimited(
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030010212 "%s cannot write MSR (%u, 0x%x, 0x%llx)\n",
10213 __func__, i, e.index, e.value);
Wincy Vanff651cb2014-12-11 08:52:58 +030010214 goto fail;
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030010215 }
Wincy Vanff651cb2014-12-11 08:52:58 +030010216 }
10217 return 0;
10218fail:
10219 return i + 1;
10220}
10221
10222static int nested_vmx_store_msr(struct kvm_vcpu *vcpu, u64 gpa, u32 count)
10223{
10224 u32 i;
10225 struct vmx_msr_entry e;
10226
10227 for (i = 0; i < count; i++) {
Paolo Bonzini609e36d2015-04-08 15:30:38 +020010228 struct msr_data msr_info;
Paolo Bonzini54bf36a2015-04-08 15:39:23 +020010229 if (kvm_vcpu_read_guest(vcpu,
10230 gpa + i * sizeof(e),
10231 &e, 2 * sizeof(u32))) {
Paolo Bonzinibbe41b92016-08-19 17:51:20 +020010232 pr_debug_ratelimited(
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030010233 "%s cannot read MSR entry (%u, 0x%08llx)\n",
10234 __func__, i, gpa + i * sizeof(e));
Wincy Vanff651cb2014-12-11 08:52:58 +030010235 return -EINVAL;
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030010236 }
10237 if (nested_vmx_store_msr_check(vcpu, &e)) {
Paolo Bonzinibbe41b92016-08-19 17:51:20 +020010238 pr_debug_ratelimited(
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030010239 "%s check failed (%u, 0x%x, 0x%x)\n",
10240 __func__, i, e.index, e.reserved);
Wincy Vanff651cb2014-12-11 08:52:58 +030010241 return -EINVAL;
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030010242 }
Paolo Bonzini609e36d2015-04-08 15:30:38 +020010243 msr_info.host_initiated = false;
10244 msr_info.index = e.index;
10245 if (kvm_get_msr(vcpu, &msr_info)) {
Paolo Bonzinibbe41b92016-08-19 17:51:20 +020010246 pr_debug_ratelimited(
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030010247 "%s cannot read MSR (%u, 0x%x)\n",
10248 __func__, i, e.index);
10249 return -EINVAL;
10250 }
Paolo Bonzini54bf36a2015-04-08 15:39:23 +020010251 if (kvm_vcpu_write_guest(vcpu,
10252 gpa + i * sizeof(e) +
10253 offsetof(struct vmx_msr_entry, value),
10254 &msr_info.data, sizeof(msr_info.data))) {
Paolo Bonzinibbe41b92016-08-19 17:51:20 +020010255 pr_debug_ratelimited(
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030010256 "%s cannot write MSR (%u, 0x%x, 0x%llx)\n",
Paolo Bonzini609e36d2015-04-08 15:30:38 +020010257 __func__, i, e.index, msr_info.data);
Eugene Korenevskye9ac0332014-12-11 08:53:27 +030010258 return -EINVAL;
10259 }
Wincy Vanff651cb2014-12-11 08:52:58 +030010260 }
10261 return 0;
10262}
10263
Ladi Prosek1dc35da2016-11-30 16:03:11 +010010264static bool nested_cr3_valid(struct kvm_vcpu *vcpu, unsigned long val)
10265{
10266 unsigned long invalid_mask;
10267
10268 invalid_mask = (~0ULL) << cpuid_maxphyaddr(vcpu);
10269 return (val & invalid_mask) == 0;
10270}
10271
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010272/*
Ladi Prosek9ed38ffa2016-11-30 16:03:10 +010010273 * Load guest's/host's cr3 at nested entry/exit. nested_ept is true if we are
10274 * emulating VM entry into a guest with EPT enabled.
10275 * Returns 0 on success, 1 on failure. Invalid state exit qualification code
10276 * is assigned to entry_failure_code on failure.
10277 */
10278static int nested_vmx_load_cr3(struct kvm_vcpu *vcpu, unsigned long cr3, bool nested_ept,
Jim Mattsonca0bde22016-11-30 12:03:46 -080010279 u32 *entry_failure_code)
Ladi Prosek9ed38ffa2016-11-30 16:03:10 +010010280{
Ladi Prosek9ed38ffa2016-11-30 16:03:10 +010010281 if (cr3 != kvm_read_cr3(vcpu) || (!nested_ept && pdptrs_changed(vcpu))) {
Ladi Prosek1dc35da2016-11-30 16:03:11 +010010282 if (!nested_cr3_valid(vcpu, cr3)) {
Ladi Prosek9ed38ffa2016-11-30 16:03:10 +010010283 *entry_failure_code = ENTRY_FAIL_DEFAULT;
10284 return 1;
10285 }
10286
10287 /*
10288 * If PAE paging and EPT are both on, CR3 is not used by the CPU and
10289 * must not be dereferenced.
10290 */
10291 if (!is_long_mode(vcpu) && is_pae(vcpu) && is_paging(vcpu) &&
10292 !nested_ept) {
10293 if (!load_pdptrs(vcpu, vcpu->arch.walk_mmu, cr3)) {
10294 *entry_failure_code = ENTRY_FAIL_PDPTE;
10295 return 1;
10296 }
10297 }
10298
10299 vcpu->arch.cr3 = cr3;
10300 __set_bit(VCPU_EXREG_CR3, (ulong *)&vcpu->arch.regs_avail);
10301 }
10302
10303 kvm_mmu_reset_context(vcpu);
10304 return 0;
10305}
10306
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010307/*
10308 * prepare_vmcs02 is called when the L1 guest hypervisor runs its nested
10309 * L2 guest. L1 has a vmcs for L2 (vmcs12), and this function "merges" it
Tiejun Chenb4619662014-09-22 10:31:38 +080010310 * with L0's requirements for its guest (a.k.a. vmcs01), so we can run the L2
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010311 * guest in a way that will both be appropriate to L1's requests, and our
10312 * needs. In addition to modifying the active vmcs (which is vmcs02), this
10313 * function also has additional necessary side-effects, like setting various
10314 * vcpu->arch fields.
Ladi Prosekee146c12016-11-30 16:03:09 +010010315 * Returns 0 on success, 1 on failure. Invalid state exit qualification code
10316 * is assigned to entry_failure_code on failure.
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010317 */
Ladi Prosekee146c12016-11-30 16:03:09 +010010318static int prepare_vmcs02(struct kvm_vcpu *vcpu, struct vmcs12 *vmcs12,
Jim Mattsonca0bde22016-11-30 12:03:46 -080010319 bool from_vmentry, u32 *entry_failure_code)
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010320{
10321 struct vcpu_vmx *vmx = to_vmx(vcpu);
Bandan Das03efce62017-05-05 15:25:15 -040010322 u32 exec_control, vmcs12_exec_ctrl;
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010323
10324 vmcs_write16(GUEST_ES_SELECTOR, vmcs12->guest_es_selector);
10325 vmcs_write16(GUEST_CS_SELECTOR, vmcs12->guest_cs_selector);
10326 vmcs_write16(GUEST_SS_SELECTOR, vmcs12->guest_ss_selector);
10327 vmcs_write16(GUEST_DS_SELECTOR, vmcs12->guest_ds_selector);
10328 vmcs_write16(GUEST_FS_SELECTOR, vmcs12->guest_fs_selector);
10329 vmcs_write16(GUEST_GS_SELECTOR, vmcs12->guest_gs_selector);
10330 vmcs_write16(GUEST_LDTR_SELECTOR, vmcs12->guest_ldtr_selector);
10331 vmcs_write16(GUEST_TR_SELECTOR, vmcs12->guest_tr_selector);
10332 vmcs_write32(GUEST_ES_LIMIT, vmcs12->guest_es_limit);
10333 vmcs_write32(GUEST_CS_LIMIT, vmcs12->guest_cs_limit);
10334 vmcs_write32(GUEST_SS_LIMIT, vmcs12->guest_ss_limit);
10335 vmcs_write32(GUEST_DS_LIMIT, vmcs12->guest_ds_limit);
10336 vmcs_write32(GUEST_FS_LIMIT, vmcs12->guest_fs_limit);
10337 vmcs_write32(GUEST_GS_LIMIT, vmcs12->guest_gs_limit);
10338 vmcs_write32(GUEST_LDTR_LIMIT, vmcs12->guest_ldtr_limit);
10339 vmcs_write32(GUEST_TR_LIMIT, vmcs12->guest_tr_limit);
10340 vmcs_write32(GUEST_GDTR_LIMIT, vmcs12->guest_gdtr_limit);
10341 vmcs_write32(GUEST_IDTR_LIMIT, vmcs12->guest_idtr_limit);
10342 vmcs_write32(GUEST_ES_AR_BYTES, vmcs12->guest_es_ar_bytes);
10343 vmcs_write32(GUEST_CS_AR_BYTES, vmcs12->guest_cs_ar_bytes);
10344 vmcs_write32(GUEST_SS_AR_BYTES, vmcs12->guest_ss_ar_bytes);
10345 vmcs_write32(GUEST_DS_AR_BYTES, vmcs12->guest_ds_ar_bytes);
10346 vmcs_write32(GUEST_FS_AR_BYTES, vmcs12->guest_fs_ar_bytes);
10347 vmcs_write32(GUEST_GS_AR_BYTES, vmcs12->guest_gs_ar_bytes);
10348 vmcs_write32(GUEST_LDTR_AR_BYTES, vmcs12->guest_ldtr_ar_bytes);
10349 vmcs_write32(GUEST_TR_AR_BYTES, vmcs12->guest_tr_ar_bytes);
10350 vmcs_writel(GUEST_ES_BASE, vmcs12->guest_es_base);
10351 vmcs_writel(GUEST_CS_BASE, vmcs12->guest_cs_base);
10352 vmcs_writel(GUEST_SS_BASE, vmcs12->guest_ss_base);
10353 vmcs_writel(GUEST_DS_BASE, vmcs12->guest_ds_base);
10354 vmcs_writel(GUEST_FS_BASE, vmcs12->guest_fs_base);
10355 vmcs_writel(GUEST_GS_BASE, vmcs12->guest_gs_base);
10356 vmcs_writel(GUEST_LDTR_BASE, vmcs12->guest_ldtr_base);
10357 vmcs_writel(GUEST_TR_BASE, vmcs12->guest_tr_base);
10358 vmcs_writel(GUEST_GDTR_BASE, vmcs12->guest_gdtr_base);
10359 vmcs_writel(GUEST_IDTR_BASE, vmcs12->guest_idtr_base);
10360
Jim Mattsoncf8b84f2016-11-30 12:03:42 -080010361 if (from_vmentry &&
10362 (vmcs12->vm_entry_controls & VM_ENTRY_LOAD_DEBUG_CONTROLS)) {
Jan Kiszka2996fca2014-06-16 13:59:43 +020010363 kvm_set_dr(vcpu, 7, vmcs12->guest_dr7);
10364 vmcs_write64(GUEST_IA32_DEBUGCTL, vmcs12->guest_ia32_debugctl);
10365 } else {
10366 kvm_set_dr(vcpu, 7, vcpu->arch.dr7);
10367 vmcs_write64(GUEST_IA32_DEBUGCTL, vmx->nested.vmcs01_debugctl);
10368 }
Jim Mattsoncf8b84f2016-11-30 12:03:42 -080010369 if (from_vmentry) {
10370 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD,
10371 vmcs12->vm_entry_intr_info_field);
10372 vmcs_write32(VM_ENTRY_EXCEPTION_ERROR_CODE,
10373 vmcs12->vm_entry_exception_error_code);
10374 vmcs_write32(VM_ENTRY_INSTRUCTION_LEN,
10375 vmcs12->vm_entry_instruction_len);
10376 vmcs_write32(GUEST_INTERRUPTIBILITY_INFO,
10377 vmcs12->guest_interruptibility_info);
Wanpeng Li2d6144e2017-07-25 03:40:46 -070010378 vmx->loaded_vmcs->nmi_known_unmasked =
10379 !(vmcs12->guest_interruptibility_info & GUEST_INTR_STATE_NMI);
Jim Mattsoncf8b84f2016-11-30 12:03:42 -080010380 } else {
10381 vmcs_write32(VM_ENTRY_INTR_INFO_FIELD, 0);
10382 }
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010383 vmcs_write32(GUEST_SYSENTER_CS, vmcs12->guest_sysenter_cs);
Gleb Natapov63fbf592013-07-28 18:31:06 +030010384 vmx_set_rflags(vcpu, vmcs12->guest_rflags);
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010385 vmcs_writel(GUEST_PENDING_DBG_EXCEPTIONS,
10386 vmcs12->guest_pending_dbg_exceptions);
10387 vmcs_writel(GUEST_SYSENTER_ESP, vmcs12->guest_sysenter_esp);
10388 vmcs_writel(GUEST_SYSENTER_EIP, vmcs12->guest_sysenter_eip);
10389
Wanpeng Li81dc01f2014-12-04 19:11:07 +080010390 if (nested_cpu_has_xsaves(vmcs12))
10391 vmcs_write64(XSS_EXIT_BITMAP, vmcs12->xss_exit_bitmap);
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010392 vmcs_write64(VMCS_LINK_POINTER, -1ull);
10393
Jan Kiszkaf4124502014-03-07 20:03:13 +010010394 exec_control = vmcs12->pin_based_vm_exec_control;
Wincy Van705699a2015-02-03 23:58:17 +080010395
Paolo Bonzini93140062016-07-06 13:23:51 +020010396 /* Preemption timer setting is only taken from vmcs01. */
10397 exec_control &= ~PIN_BASED_VMX_PREEMPTION_TIMER;
10398 exec_control |= vmcs_config.pin_based_exec_ctrl;
10399 if (vmx->hv_deadline_tsc == -1)
10400 exec_control &= ~PIN_BASED_VMX_PREEMPTION_TIMER;
10401
10402 /* Posted interrupts setting is only taken from vmcs12. */
Wincy Van705699a2015-02-03 23:58:17 +080010403 if (nested_cpu_has_posted_intr(vmcs12)) {
Wincy Van705699a2015-02-03 23:58:17 +080010404 vmx->nested.posted_intr_nv = vmcs12->posted_intr_nv;
10405 vmx->nested.pi_pending = false;
Wincy Van06a55242017-04-28 13:13:59 +080010406 vmcs_write16(POSTED_INTR_NV, POSTED_INTR_NESTED_VECTOR);
Jim Mattson6beb7bd2016-11-30 12:03:45 -080010407 } else {
Wincy Van705699a2015-02-03 23:58:17 +080010408 exec_control &= ~PIN_BASED_POSTED_INTR;
Jim Mattson6beb7bd2016-11-30 12:03:45 -080010409 }
Wincy Van705699a2015-02-03 23:58:17 +080010410
Jan Kiszkaf4124502014-03-07 20:03:13 +010010411 vmcs_write32(PIN_BASED_VM_EXEC_CONTROL, exec_control);
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010412
Jan Kiszkaf4124502014-03-07 20:03:13 +010010413 vmx->nested.preemption_timer_expired = false;
10414 if (nested_cpu_has_preemption_timer(vmcs12))
10415 vmx_start_preemption_timer(vcpu);
Jan Kiszka0238ea92013-03-13 11:31:24 +010010416
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010417 /*
10418 * Whether page-faults are trapped is determined by a combination of
10419 * 3 settings: PFEC_MASK, PFEC_MATCH and EXCEPTION_BITMAP.PF.
10420 * If enable_ept, L0 doesn't care about page faults and we should
10421 * set all of these to L1's desires. However, if !enable_ept, L0 does
10422 * care about (at least some) page faults, and because it is not easy
10423 * (if at all possible?) to merge L0 and L1's desires, we simply ask
10424 * to exit on each and every L2 page fault. This is done by setting
10425 * MASK=MATCH=0 and (see below) EB.PF=1.
10426 * Note that below we don't need special code to set EB.PF beyond the
10427 * "or"ing of the EB of vmcs01 and vmcs12, because when enable_ept,
10428 * vmcs01's EB.PF is 0 so the "or" will take vmcs12's value, and when
10429 * !enable_ept, EB.PF is 1, so the "or" will always be 1.
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010430 */
10431 vmcs_write32(PAGE_FAULT_ERROR_CODE_MASK,
10432 enable_ept ? vmcs12->page_fault_error_code_mask : 0);
10433 vmcs_write32(PAGE_FAULT_ERROR_CODE_MATCH,
10434 enable_ept ? vmcs12->page_fault_error_code_match : 0);
10435
10436 if (cpu_has_secondary_exec_ctrls()) {
Paolo Bonzini80154d72017-08-24 13:55:35 +020010437 exec_control = vmx->secondary_exec_control;
Xiao Guangronge2821622015-09-09 14:05:52 +080010438
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010439 /* Take the following fields only from vmcs12 */
Paolo Bonzini696dfd92014-05-07 11:20:54 +020010440 exec_control &= ~(SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES |
Paolo Bonzini90a2db62017-07-27 13:22:13 +020010441 SECONDARY_EXEC_ENABLE_INVPCID |
Jan Kiszkab3a2a902015-03-23 19:27:19 +010010442 SECONDARY_EXEC_RDTSCP |
Paolo Bonzini3db13482017-08-24 14:48:03 +020010443 SECONDARY_EXEC_XSAVES |
Paolo Bonzini696dfd92014-05-07 11:20:54 +020010444 SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY |
Bandan Das27c42a12017-08-03 15:54:42 -040010445 SECONDARY_EXEC_APIC_REGISTER_VIRT |
10446 SECONDARY_EXEC_ENABLE_VMFUNC);
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010447 if (nested_cpu_has(vmcs12,
Bandan Das03efce62017-05-05 15:25:15 -040010448 CPU_BASED_ACTIVATE_SECONDARY_CONTROLS)) {
10449 vmcs12_exec_ctrl = vmcs12->secondary_vm_exec_control &
10450 ~SECONDARY_EXEC_ENABLE_PML;
10451 exec_control |= vmcs12_exec_ctrl;
10452 }
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010453
Bandan Das27c42a12017-08-03 15:54:42 -040010454 /* All VMFUNCs are currently emulated through L0 vmexits. */
10455 if (exec_control & SECONDARY_EXEC_ENABLE_VMFUNC)
10456 vmcs_write64(VM_FUNCTION_CONTROL, 0);
10457
Wincy Van608406e2015-02-03 23:57:51 +080010458 if (exec_control & SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY) {
10459 vmcs_write64(EOI_EXIT_BITMAP0,
10460 vmcs12->eoi_exit_bitmap0);
10461 vmcs_write64(EOI_EXIT_BITMAP1,
10462 vmcs12->eoi_exit_bitmap1);
10463 vmcs_write64(EOI_EXIT_BITMAP2,
10464 vmcs12->eoi_exit_bitmap2);
10465 vmcs_write64(EOI_EXIT_BITMAP3,
10466 vmcs12->eoi_exit_bitmap3);
10467 vmcs_write16(GUEST_INTR_STATUS,
10468 vmcs12->guest_intr_status);
10469 }
10470
Jim Mattson6beb7bd2016-11-30 12:03:45 -080010471 /*
10472 * Write an illegal value to APIC_ACCESS_ADDR. Later,
10473 * nested_get_vmcs12_pages will either fix it up or
10474 * remove the VM execution control.
10475 */
10476 if (exec_control & SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES)
10477 vmcs_write64(APIC_ACCESS_ADDR, -1ull);
10478
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010479 vmcs_write32(SECONDARY_VM_EXEC_CONTROL, exec_control);
10480 }
10481
10482
10483 /*
10484 * Set host-state according to L0's settings (vmcs12 is irrelevant here)
10485 * Some constant fields are set here by vmx_set_constant_host_state().
10486 * Other fields are different per CPU, and will be set later when
10487 * vmx_vcpu_load() is called, and when vmx_save_host_state() is called.
10488 */
Yang Zhanga547c6d2013-04-11 19:25:10 +080010489 vmx_set_constant_host_state(vmx);
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010490
10491 /*
Jim Mattson83bafef2016-10-04 10:48:38 -070010492 * Set the MSR load/store lists to match L0's settings.
10493 */
10494 vmcs_write32(VM_EXIT_MSR_STORE_COUNT, 0);
10495 vmcs_write32(VM_EXIT_MSR_LOAD_COUNT, vmx->msr_autoload.nr);
10496 vmcs_write64(VM_EXIT_MSR_LOAD_ADDR, __pa(vmx->msr_autoload.host));
10497 vmcs_write32(VM_ENTRY_MSR_LOAD_COUNT, vmx->msr_autoload.nr);
10498 vmcs_write64(VM_ENTRY_MSR_LOAD_ADDR, __pa(vmx->msr_autoload.guest));
10499
10500 /*
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010501 * HOST_RSP is normally set correctly in vmx_vcpu_run() just before
10502 * entry, but only if the current (host) sp changed from the value
10503 * we wrote last (vmx->host_rsp). This cache is no longer relevant
10504 * if we switch vmcs, and rather than hold a separate cache per vmcs,
10505 * here we just force the write to happen on entry.
10506 */
10507 vmx->host_rsp = 0;
10508
10509 exec_control = vmx_exec_control(vmx); /* L0's desires */
10510 exec_control &= ~CPU_BASED_VIRTUAL_INTR_PENDING;
10511 exec_control &= ~CPU_BASED_VIRTUAL_NMI_PENDING;
10512 exec_control &= ~CPU_BASED_TPR_SHADOW;
10513 exec_control |= vmcs12->cpu_based_vm_exec_control;
Wanpeng Lia7c0b072014-08-21 19:46:50 +080010514
Jim Mattson6beb7bd2016-11-30 12:03:45 -080010515 /*
10516 * Write an illegal value to VIRTUAL_APIC_PAGE_ADDR. Later, if
10517 * nested_get_vmcs12_pages can't fix it up, the illegal value
10518 * will result in a VM entry failure.
10519 */
Wanpeng Lia7c0b072014-08-21 19:46:50 +080010520 if (exec_control & CPU_BASED_TPR_SHADOW) {
Jim Mattson6beb7bd2016-11-30 12:03:45 -080010521 vmcs_write64(VIRTUAL_APIC_PAGE_ADDR, -1ull);
Wanpeng Lia7c0b072014-08-21 19:46:50 +080010522 vmcs_write32(TPR_THRESHOLD, vmcs12->tpr_threshold);
10523 }
10524
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010525 /*
Wincy Van3af18d92015-02-03 23:49:31 +080010526 * Merging of IO bitmap not currently supported.
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010527 * Rather, exit every time.
10528 */
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010529 exec_control &= ~CPU_BASED_USE_IO_BITMAPS;
10530 exec_control |= CPU_BASED_UNCOND_IO_EXITING;
10531
10532 vmcs_write32(CPU_BASED_VM_EXEC_CONTROL, exec_control);
10533
10534 /* EXCEPTION_BITMAP and CR0_GUEST_HOST_MASK should basically be the
10535 * bitwise-or of what L1 wants to trap for L2, and what we want to
10536 * trap. Note that CR0.TS also needs updating - we do this later.
10537 */
10538 update_exception_bitmap(vcpu);
10539 vcpu->arch.cr0_guest_owned_bits &= ~vmcs12->cr0_guest_host_mask;
10540 vmcs_writel(CR0_GUEST_HOST_MASK, ~vcpu->arch.cr0_guest_owned_bits);
10541
Nadav Har'El8049d652013-08-05 11:07:06 +030010542 /* L2->L1 exit controls are emulated - the hardware exit is to L0 so
10543 * we should use its exit controls. Note that VM_EXIT_LOAD_IA32_EFER
10544 * bits are further modified by vmx_set_efer() below.
10545 */
Jan Kiszkaf4124502014-03-07 20:03:13 +010010546 vmcs_write32(VM_EXIT_CONTROLS, vmcs_config.vmexit_ctrl);
Nadav Har'El8049d652013-08-05 11:07:06 +030010547
10548 /* vmcs12's VM_ENTRY_LOAD_IA32_EFER and VM_ENTRY_IA32E_MODE are
10549 * emulated by vmx_set_efer(), below.
10550 */
Gleb Natapov2961e8762013-11-25 15:37:13 +020010551 vm_entry_controls_init(vmx,
Nadav Har'El8049d652013-08-05 11:07:06 +030010552 (vmcs12->vm_entry_controls & ~VM_ENTRY_LOAD_IA32_EFER &
10553 ~VM_ENTRY_IA32E_MODE) |
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010554 (vmcs_config.vmentry_ctrl & ~VM_ENTRY_IA32E_MODE));
10555
Jim Mattsoncf8b84f2016-11-30 12:03:42 -080010556 if (from_vmentry &&
10557 (vmcs12->vm_entry_controls & VM_ENTRY_LOAD_IA32_PAT)) {
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010558 vmcs_write64(GUEST_IA32_PAT, vmcs12->guest_ia32_pat);
Jan Kiszka44811c02013-08-04 17:17:27 +020010559 vcpu->arch.pat = vmcs12->guest_ia32_pat;
Jim Mattsoncf8b84f2016-11-30 12:03:42 -080010560 } else if (vmcs_config.vmentry_ctrl & VM_ENTRY_LOAD_IA32_PAT) {
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010561 vmcs_write64(GUEST_IA32_PAT, vmx->vcpu.arch.pat);
Jim Mattsoncf8b84f2016-11-30 12:03:42 -080010562 }
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010563
10564 set_cr4_guest_host_mask(vmx);
10565
Jim Mattsoncf8b84f2016-11-30 12:03:42 -080010566 if (from_vmentry &&
10567 vmcs12->vm_entry_controls & VM_ENTRY_LOAD_BNDCFGS)
Paolo Bonzini36be0b92014-02-24 12:30:04 +010010568 vmcs_write64(GUEST_BNDCFGS, vmcs12->guest_bndcfgs);
10569
Nadav Har'El27fc51b2011-08-02 15:54:52 +030010570 if (vmcs12->cpu_based_vm_exec_control & CPU_BASED_USE_TSC_OFFSETING)
10571 vmcs_write64(TSC_OFFSET,
Paolo Bonziniea26e4e2016-11-01 00:39:48 +010010572 vcpu->arch.tsc_offset + vmcs12->tsc_offset);
Nadav Har'El27fc51b2011-08-02 15:54:52 +030010573 else
Paolo Bonziniea26e4e2016-11-01 00:39:48 +010010574 vmcs_write64(TSC_OFFSET, vcpu->arch.tsc_offset);
Peter Feinerc95ba922016-08-17 09:36:47 -070010575 if (kvm_has_tsc_control)
10576 decache_tsc_multiplier(vmx);
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010577
10578 if (enable_vpid) {
10579 /*
Wanpeng Li5c614b32015-10-13 09:18:36 -070010580 * There is no direct mapping between vpid02 and vpid12, the
10581 * vpid02 is per-vCPU for L0 and reused while the value of
10582 * vpid12 is changed w/ one invvpid during nested vmentry.
10583 * The vpid12 is allocated by L1 for L2, so it will not
10584 * influence global bitmap(for vpid01 and vpid02 allocation)
10585 * even if spawn a lot of nested vCPUs.
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010586 */
Wanpeng Li5c614b32015-10-13 09:18:36 -070010587 if (nested_cpu_has_vpid(vmcs12) && vmx->nested.vpid02) {
10588 vmcs_write16(VIRTUAL_PROCESSOR_ID, vmx->nested.vpid02);
10589 if (vmcs12->virtual_processor_id != vmx->nested.last_vpid) {
10590 vmx->nested.last_vpid = vmcs12->virtual_processor_id;
10591 __vmx_flush_tlb(vcpu, to_vmx(vcpu)->nested.vpid02);
10592 }
10593 } else {
10594 vmcs_write16(VIRTUAL_PROCESSOR_ID, vmx->vpid);
10595 vmx_flush_tlb(vcpu);
10596 }
10597
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010598 }
10599
Ladi Prosek1fb883b2017-04-04 14:18:53 +020010600 if (enable_pml) {
10601 /*
10602 * Conceptually we want to copy the PML address and index from
10603 * vmcs01 here, and then back to vmcs01 on nested vmexit. But,
10604 * since we always flush the log on each vmexit, this happens
10605 * to be equivalent to simply resetting the fields in vmcs02.
10606 */
10607 ASSERT(vmx->pml_pg);
10608 vmcs_write64(PML_ADDRESS, page_to_phys(vmx->pml_pg));
10609 vmcs_write16(GUEST_PML_INDEX, PML_ENTITY_NUM - 1);
10610 }
10611
Nadav Har'El155a97a2013-08-05 11:07:16 +030010612 if (nested_cpu_has_ept(vmcs12)) {
Paolo Bonziniae1e2d12017-03-30 11:55:30 +020010613 if (nested_ept_init_mmu_context(vcpu)) {
10614 *entry_failure_code = ENTRY_FAIL_DEFAULT;
10615 return 1;
10616 }
Jim Mattsonfb6c8192017-03-16 13:53:59 -070010617 } else if (nested_cpu_has2(vmcs12,
10618 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES)) {
10619 vmx_flush_tlb_ept_only(vcpu);
Nadav Har'El155a97a2013-08-05 11:07:16 +030010620 }
10621
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010622 /*
Paolo Bonzinibd7e5b02017-02-03 21:18:52 -080010623 * This sets GUEST_CR0 to vmcs12->guest_cr0, possibly modifying those
10624 * bits which we consider mandatory enabled.
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010625 * The CR0_READ_SHADOW is what L2 should have expected to read given
10626 * the specifications by L1; It's not enough to take
10627 * vmcs12->cr0_read_shadow because on our cr0_guest_host_mask we we
10628 * have more bits than L1 expected.
10629 */
10630 vmx_set_cr0(vcpu, vmcs12->guest_cr0);
10631 vmcs_writel(CR0_READ_SHADOW, nested_read_cr0(vmcs12));
10632
10633 vmx_set_cr4(vcpu, vmcs12->guest_cr4);
10634 vmcs_writel(CR4_READ_SHADOW, nested_read_cr4(vmcs12));
10635
Jim Mattsoncf8b84f2016-11-30 12:03:42 -080010636 if (from_vmentry &&
10637 (vmcs12->vm_entry_controls & VM_ENTRY_LOAD_IA32_EFER))
David Matlack5a6a9742016-11-29 18:14:10 -080010638 vcpu->arch.efer = vmcs12->guest_ia32_efer;
10639 else if (vmcs12->vm_entry_controls & VM_ENTRY_IA32E_MODE)
10640 vcpu->arch.efer |= (EFER_LMA | EFER_LME);
10641 else
10642 vcpu->arch.efer &= ~(EFER_LMA | EFER_LME);
10643 /* Note: modifies VM_ENTRY/EXIT_CONTROLS and GUEST/HOST_IA32_EFER */
10644 vmx_set_efer(vcpu, vcpu->arch.efer);
10645
Ladi Prosek9ed38ffa2016-11-30 16:03:10 +010010646 /* Shadow page tables on either EPT or shadow page tables. */
Ladi Prosek7ad658b2017-03-23 07:18:08 +010010647 if (nested_vmx_load_cr3(vcpu, vmcs12->guest_cr3, nested_cpu_has_ept(vmcs12),
Ladi Prosek9ed38ffa2016-11-30 16:03:10 +010010648 entry_failure_code))
10649 return 1;
Ladi Prosek7ca29de2016-11-30 16:03:08 +010010650
Gleb Natapovfeaf0c7d2013-09-25 12:51:36 +030010651 if (!enable_ept)
10652 vcpu->arch.walk_mmu->inject_page_fault = vmx_inject_page_fault_nested;
10653
Nadav Har'El3633cfc2013-08-05 11:07:07 +030010654 /*
10655 * L1 may access the L2's PDPTR, so save them to construct vmcs12
10656 */
10657 if (enable_ept) {
10658 vmcs_write64(GUEST_PDPTR0, vmcs12->guest_pdptr0);
10659 vmcs_write64(GUEST_PDPTR1, vmcs12->guest_pdptr1);
10660 vmcs_write64(GUEST_PDPTR2, vmcs12->guest_pdptr2);
10661 vmcs_write64(GUEST_PDPTR3, vmcs12->guest_pdptr3);
10662 }
10663
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010664 kvm_register_write(vcpu, VCPU_REGS_RSP, vmcs12->guest_rsp);
10665 kvm_register_write(vcpu, VCPU_REGS_RIP, vmcs12->guest_rip);
Ladi Prosekee146c12016-11-30 16:03:09 +010010666 return 0;
Nadav Har'Elfe3ef052011-05-25 23:10:02 +030010667}
10668
Jim Mattsonca0bde22016-11-30 12:03:46 -080010669static int check_vmentry_prereqs(struct kvm_vcpu *vcpu, struct vmcs12 *vmcs12)
10670{
10671 struct vcpu_vmx *vmx = to_vmx(vcpu);
10672
10673 if (vmcs12->guest_activity_state != GUEST_ACTIVITY_ACTIVE &&
10674 vmcs12->guest_activity_state != GUEST_ACTIVITY_HLT)
10675 return VMXERR_ENTRY_INVALID_CONTROL_FIELD;
10676
Jim Mattson56a20512017-07-06 16:33:06 -070010677 if (nested_vmx_check_io_bitmap_controls(vcpu, vmcs12))
10678 return VMXERR_ENTRY_INVALID_CONTROL_FIELD;
10679
Jim Mattsonca0bde22016-11-30 12:03:46 -080010680 if (nested_vmx_check_msr_bitmap_controls(vcpu, vmcs12))
10681 return VMXERR_ENTRY_INVALID_CONTROL_FIELD;
10682
10683 if (nested_vmx_check_apicv_controls(vcpu, vmcs12))
10684 return VMXERR_ENTRY_INVALID_CONTROL_FIELD;
10685
10686 if (nested_vmx_check_msr_switch_controls(vcpu, vmcs12))
10687 return VMXERR_ENTRY_INVALID_CONTROL_FIELD;
10688
Bandan Dasc5f983f2017-05-05 15:25:14 -040010689 if (nested_vmx_check_pml_controls(vcpu, vmcs12))
10690 return VMXERR_ENTRY_INVALID_CONTROL_FIELD;
10691
Jim Mattsonca0bde22016-11-30 12:03:46 -080010692 if (!vmx_control_verify(vmcs12->cpu_based_vm_exec_control,
10693 vmx->nested.nested_vmx_procbased_ctls_low,
10694 vmx->nested.nested_vmx_procbased_ctls_high) ||
Jim Mattson2e5b0bd2017-05-04 11:51:58 -070010695 (nested_cpu_has(vmcs12, CPU_BASED_ACTIVATE_SECONDARY_CONTROLS) &&
10696 !vmx_control_verify(vmcs12->secondary_vm_exec_control,
10697 vmx->nested.nested_vmx_secondary_ctls_low,
10698 vmx->nested.nested_vmx_secondary_ctls_high)) ||
Jim Mattsonca0bde22016-11-30 12:03:46 -080010699 !vmx_control_verify(vmcs12->pin_based_vm_exec_control,
10700 vmx->nested.nested_vmx_pinbased_ctls_low,
10701 vmx->nested.nested_vmx_pinbased_ctls_high) ||
10702 !vmx_control_verify(vmcs12->vm_exit_controls,
10703 vmx->nested.nested_vmx_exit_ctls_low,
10704 vmx->nested.nested_vmx_exit_ctls_high) ||
10705 !vmx_control_verify(vmcs12->vm_entry_controls,
10706 vmx->nested.nested_vmx_entry_ctls_low,
10707 vmx->nested.nested_vmx_entry_ctls_high))
10708 return VMXERR_ENTRY_INVALID_CONTROL_FIELD;
10709
Bandan Das41ab9372017-08-03 15:54:43 -040010710 if (nested_cpu_has_vmfunc(vmcs12)) {
10711 if (vmcs12->vm_function_control &
10712 ~vmx->nested.nested_vmx_vmfunc_controls)
10713 return VMXERR_ENTRY_INVALID_CONTROL_FIELD;
10714
10715 if (nested_cpu_has_eptp_switching(vmcs12)) {
10716 if (!nested_cpu_has_ept(vmcs12) ||
10717 !page_address_valid(vcpu, vmcs12->eptp_list_address))
10718 return VMXERR_ENTRY_INVALID_CONTROL_FIELD;
10719 }
10720 }
Bandan Das27c42a12017-08-03 15:54:42 -040010721
Jim Mattsonc7c2c702017-05-05 11:28:09 -070010722 if (vmcs12->cr3_target_count > nested_cpu_vmx_misc_cr3_count(vcpu))
10723 return VMXERR_ENTRY_INVALID_CONTROL_FIELD;
10724
Jim Mattsonca0bde22016-11-30 12:03:46 -080010725 if (!nested_host_cr0_valid(vcpu, vmcs12->host_cr0) ||
10726 !nested_host_cr4_valid(vcpu, vmcs12->host_cr4) ||
10727 !nested_cr3_valid(vcpu, vmcs12->host_cr3))
10728 return VMXERR_ENTRY_INVALID_HOST_STATE_FIELD;
10729
10730 return 0;
10731}
10732
10733static int check_vmentry_postreqs(struct kvm_vcpu *vcpu, struct vmcs12 *vmcs12,
10734 u32 *exit_qual)
10735{
10736 bool ia32e;
10737
10738 *exit_qual = ENTRY_FAIL_DEFAULT;
10739
10740 if (!nested_guest_cr0_valid(vcpu, vmcs12->guest_cr0) ||
10741 !nested_guest_cr4_valid(vcpu, vmcs12->guest_cr4))
10742 return 1;
10743
10744 if (!nested_cpu_has2(vmcs12, SECONDARY_EXEC_SHADOW_VMCS) &&
10745 vmcs12->vmcs_link_pointer != -1ull) {
10746 *exit_qual = ENTRY_FAIL_VMCS_LINK_PTR;
10747 return 1;
10748 }
10749
10750 /*
10751 * If the load IA32_EFER VM-entry control is 1, the following checks
10752 * are performed on the field for the IA32_EFER MSR:
10753 * - Bits reserved in the IA32_EFER MSR must be 0.
10754 * - Bit 10 (corresponding to IA32_EFER.LMA) must equal the value of
10755 * the IA-32e mode guest VM-exit control. It must also be identical
10756 * to bit 8 (LME) if bit 31 in the CR0 field (corresponding to
10757 * CR0.PG) is 1.
10758 */
10759 if (to_vmx(vcpu)->nested.nested_run_pending &&
10760 (vmcs12->vm_entry_controls & VM_ENTRY_LOAD_IA32_EFER)) {
10761 ia32e = (vmcs12->vm_entry_controls & VM_ENTRY_IA32E_MODE) != 0;
10762 if (!kvm_valid_efer(vcpu, vmcs12->guest_ia32_efer) ||
10763 ia32e != !!(vmcs12->guest_ia32_efer & EFER_LMA) ||
10764 ((vmcs12->guest_cr0 & X86_CR0_PG) &&
10765 ia32e != !!(vmcs12->guest_ia32_efer & EFER_LME)))
10766 return 1;
10767 }
10768
10769 /*
10770 * If the load IA32_EFER VM-exit control is 1, bits reserved in the
10771 * IA32_EFER MSR must be 0 in the field for that register. In addition,
10772 * the values of the LMA and LME bits in the field must each be that of
10773 * the host address-space size VM-exit control.
10774 */
10775 if (vmcs12->vm_exit_controls & VM_EXIT_LOAD_IA32_EFER) {
10776 ia32e = (vmcs12->vm_exit_controls &
10777 VM_EXIT_HOST_ADDR_SPACE_SIZE) != 0;
10778 if (!kvm_valid_efer(vcpu, vmcs12->host_ia32_efer) ||
10779 ia32e != !!(vmcs12->host_ia32_efer & EFER_LMA) ||
10780 ia32e != !!(vmcs12->host_ia32_efer & EFER_LME))
10781 return 1;
10782 }
10783
10784 return 0;
10785}
10786
Jim Mattson858e25c2016-11-30 12:03:47 -080010787static int enter_vmx_non_root_mode(struct kvm_vcpu *vcpu, bool from_vmentry)
10788{
10789 struct vcpu_vmx *vmx = to_vmx(vcpu);
10790 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
10791 struct loaded_vmcs *vmcs02;
Jim Mattson858e25c2016-11-30 12:03:47 -080010792 u32 msr_entry_idx;
10793 u32 exit_qual;
10794
10795 vmcs02 = nested_get_current_vmcs02(vmx);
10796 if (!vmcs02)
10797 return -ENOMEM;
10798
10799 enter_guest_mode(vcpu);
10800
10801 if (!(vmcs12->vm_entry_controls & VM_ENTRY_LOAD_DEBUG_CONTROLS))
10802 vmx->nested.vmcs01_debugctl = vmcs_read64(GUEST_IA32_DEBUGCTL);
10803
David Hildenbrand1279a6b12017-03-20 10:00:08 +010010804 vmx_switch_vmcs(vcpu, vmcs02);
Jim Mattson858e25c2016-11-30 12:03:47 -080010805 vmx_segment_cache_clear(vmx);
10806
10807 if (prepare_vmcs02(vcpu, vmcs12, from_vmentry, &exit_qual)) {
10808 leave_guest_mode(vcpu);
David Hildenbrand1279a6b12017-03-20 10:00:08 +010010809 vmx_switch_vmcs(vcpu, &vmx->vmcs01);
Jim Mattson858e25c2016-11-30 12:03:47 -080010810 nested_vmx_entry_failure(vcpu, vmcs12,
10811 EXIT_REASON_INVALID_STATE, exit_qual);
10812 return 1;
10813 }
10814
10815 nested_get_vmcs12_pages(vcpu, vmcs12);
10816
10817 msr_entry_idx = nested_vmx_load_msr(vcpu,
10818 vmcs12->vm_entry_msr_load_addr,
10819 vmcs12->vm_entry_msr_load_count);
10820 if (msr_entry_idx) {
10821 leave_guest_mode(vcpu);
David Hildenbrand1279a6b12017-03-20 10:00:08 +010010822 vmx_switch_vmcs(vcpu, &vmx->vmcs01);
Jim Mattson858e25c2016-11-30 12:03:47 -080010823 nested_vmx_entry_failure(vcpu, vmcs12,
10824 EXIT_REASON_MSR_LOAD_FAIL, msr_entry_idx);
10825 return 1;
10826 }
10827
Jim Mattson858e25c2016-11-30 12:03:47 -080010828 /*
10829 * Note no nested_vmx_succeed or nested_vmx_fail here. At this point
10830 * we are no longer running L1, and VMLAUNCH/VMRESUME has not yet
10831 * returned as far as L1 is concerned. It will only return (and set
10832 * the success flag) when L2 exits (see nested_vmx_vmexit()).
10833 */
10834 return 0;
10835}
10836
Nadav Har'Elcd232ad2011-05-25 23:10:33 +030010837/*
10838 * nested_vmx_run() handles a nested entry, i.e., a VMLAUNCH or VMRESUME on L1
10839 * for running an L2 nested guest.
10840 */
10841static int nested_vmx_run(struct kvm_vcpu *vcpu, bool launch)
10842{
10843 struct vmcs12 *vmcs12;
10844 struct vcpu_vmx *vmx = to_vmx(vcpu);
Jim Mattsonb3f1dfb2017-07-17 12:00:34 -070010845 u32 interrupt_shadow = vmx_get_interrupt_shadow(vcpu);
Jim Mattsonca0bde22016-11-30 12:03:46 -080010846 u32 exit_qual;
10847 int ret;
Nadav Har'Elcd232ad2011-05-25 23:10:33 +030010848
Kyle Hueyeb277562016-11-29 12:40:39 -080010849 if (!nested_vmx_check_permission(vcpu))
Nadav Har'Elcd232ad2011-05-25 23:10:33 +030010850 return 1;
10851
Kyle Hueyeb277562016-11-29 12:40:39 -080010852 if (!nested_vmx_check_vmcs12(vcpu))
10853 goto out;
10854
Nadav Har'Elcd232ad2011-05-25 23:10:33 +030010855 vmcs12 = get_vmcs12(vcpu);
10856
Abel Gordon012f83c2013-04-18 14:39:25 +030010857 if (enable_shadow_vmcs)
10858 copy_shadow_to_vmcs12(vmx);
10859
Nadav Har'El7c177932011-05-25 23:12:04 +030010860 /*
10861 * The nested entry process starts with enforcing various prerequisites
10862 * on vmcs12 as required by the Intel SDM, and act appropriately when
10863 * they fail: As the SDM explains, some conditions should cause the
10864 * instruction to fail, while others will cause the instruction to seem
10865 * to succeed, but return an EXIT_REASON_INVALID_STATE.
10866 * To speed up the normal (success) code path, we should avoid checking
10867 * for misconfigurations which will anyway be caught by the processor
10868 * when using the merged vmcs02.
10869 */
Jim Mattsonb3f1dfb2017-07-17 12:00:34 -070010870 if (interrupt_shadow & KVM_X86_SHADOW_INT_MOV_SS) {
10871 nested_vmx_failValid(vcpu,
10872 VMXERR_ENTRY_EVENTS_BLOCKED_BY_MOV_SS);
10873 goto out;
10874 }
10875
Nadav Har'El7c177932011-05-25 23:12:04 +030010876 if (vmcs12->launch_state == launch) {
10877 nested_vmx_failValid(vcpu,
10878 launch ? VMXERR_VMLAUNCH_NONCLEAR_VMCS
10879 : VMXERR_VMRESUME_NONLAUNCHED_VMCS);
Kyle Hueyeb277562016-11-29 12:40:39 -080010880 goto out;
Nadav Har'El7c177932011-05-25 23:12:04 +030010881 }
10882
Jim Mattsonca0bde22016-11-30 12:03:46 -080010883 ret = check_vmentry_prereqs(vcpu, vmcs12);
10884 if (ret) {
10885 nested_vmx_failValid(vcpu, ret);
Kyle Hueyeb277562016-11-29 12:40:39 -080010886 goto out;
Paolo Bonzini26539bd2013-04-15 15:00:27 +020010887 }
10888
Nadav Har'El7c177932011-05-25 23:12:04 +030010889 /*
Jim Mattsonca0bde22016-11-30 12:03:46 -080010890 * After this point, the trap flag no longer triggers a singlestep trap
10891 * on the vm entry instructions; don't call kvm_skip_emulated_instruction.
10892 * This is not 100% correct; for performance reasons, we delegate most
10893 * of the checks on host state to the processor. If those fail,
10894 * the singlestep trap is missed.
Jan Kiszka384bb782013-04-20 10:52:36 +020010895 */
Jim Mattsonca0bde22016-11-30 12:03:46 -080010896 skip_emulated_instruction(vcpu);
Jan Kiszka384bb782013-04-20 10:52:36 +020010897
Jim Mattsonca0bde22016-11-30 12:03:46 -080010898 ret = check_vmentry_postreqs(vcpu, vmcs12, &exit_qual);
10899 if (ret) {
10900 nested_vmx_entry_failure(vcpu, vmcs12,
10901 EXIT_REASON_INVALID_STATE, exit_qual);
10902 return 1;
Jan Kiszka384bb782013-04-20 10:52:36 +020010903 }
10904
10905 /*
Nadav Har'El7c177932011-05-25 23:12:04 +030010906 * We're finally done with prerequisite checking, and can start with
10907 * the nested entry.
10908 */
10909
Jim Mattson858e25c2016-11-30 12:03:47 -080010910 ret = enter_vmx_non_root_mode(vcpu, true);
10911 if (ret)
10912 return ret;
Wincy Vanff651cb2014-12-11 08:52:58 +030010913
Jan Kiszka6dfacad2013-12-04 08:58:54 +010010914 if (vmcs12->guest_activity_state == GUEST_ACTIVITY_HLT)
Joel Schopp5cb56052015-03-02 13:43:31 -060010915 return kvm_vcpu_halt(vcpu);
Jan Kiszka6dfacad2013-12-04 08:58:54 +010010916
Jan Kiszka7af40ad32014-01-04 18:47:23 +010010917 vmx->nested.nested_run_pending = 1;
10918
Nadav Har'Elcd232ad2011-05-25 23:10:33 +030010919 return 1;
Kyle Hueyeb277562016-11-29 12:40:39 -080010920
10921out:
Kyle Huey6affcbe2016-11-29 12:40:40 -080010922 return kvm_skip_emulated_instruction(vcpu);
Nadav Har'Elcd232ad2011-05-25 23:10:33 +030010923}
10924
Nadav Har'El4704d0b2011-05-25 23:11:34 +030010925/*
10926 * On a nested exit from L2 to L1, vmcs12.guest_cr0 might not be up-to-date
10927 * because L2 may have changed some cr0 bits directly (CRO_GUEST_HOST_MASK).
10928 * This function returns the new value we should put in vmcs12.guest_cr0.
10929 * It's not enough to just return the vmcs02 GUEST_CR0. Rather,
10930 * 1. Bits that neither L0 nor L1 trapped, were set directly by L2 and are now
10931 * available in vmcs02 GUEST_CR0. (Note: It's enough to check that L0
10932 * didn't trap the bit, because if L1 did, so would L0).
10933 * 2. Bits that L1 asked to trap (and therefore L0 also did) could not have
10934 * been modified by L2, and L1 knows it. So just leave the old value of
10935 * the bit from vmcs12.guest_cr0. Note that the bit from vmcs02 GUEST_CR0
10936 * isn't relevant, because if L0 traps this bit it can set it to anything.
10937 * 3. Bits that L1 didn't trap, but L0 did. L1 believes the guest could have
10938 * changed these bits, and therefore they need to be updated, but L0
10939 * didn't necessarily allow them to be changed in GUEST_CR0 - and rather
10940 * put them in vmcs02 CR0_READ_SHADOW. So take these bits from there.
10941 */
10942static inline unsigned long
10943vmcs12_guest_cr0(struct kvm_vcpu *vcpu, struct vmcs12 *vmcs12)
10944{
10945 return
10946 /*1*/ (vmcs_readl(GUEST_CR0) & vcpu->arch.cr0_guest_owned_bits) |
10947 /*2*/ (vmcs12->guest_cr0 & vmcs12->cr0_guest_host_mask) |
10948 /*3*/ (vmcs_readl(CR0_READ_SHADOW) & ~(vmcs12->cr0_guest_host_mask |
10949 vcpu->arch.cr0_guest_owned_bits));
10950}
10951
10952static inline unsigned long
10953vmcs12_guest_cr4(struct kvm_vcpu *vcpu, struct vmcs12 *vmcs12)
10954{
10955 return
10956 /*1*/ (vmcs_readl(GUEST_CR4) & vcpu->arch.cr4_guest_owned_bits) |
10957 /*2*/ (vmcs12->guest_cr4 & vmcs12->cr4_guest_host_mask) |
10958 /*3*/ (vmcs_readl(CR4_READ_SHADOW) & ~(vmcs12->cr4_guest_host_mask |
10959 vcpu->arch.cr4_guest_owned_bits));
10960}
10961
Jan Kiszka5f3d5792013-04-14 12:12:46 +020010962static void vmcs12_save_pending_event(struct kvm_vcpu *vcpu,
10963 struct vmcs12 *vmcs12)
10964{
10965 u32 idt_vectoring;
10966 unsigned int nr;
10967
Wanpeng Li664f8e22017-08-24 03:35:09 -070010968 if (vcpu->arch.exception.injected) {
Jan Kiszka5f3d5792013-04-14 12:12:46 +020010969 nr = vcpu->arch.exception.nr;
10970 idt_vectoring = nr | VECTORING_INFO_VALID_MASK;
10971
10972 if (kvm_exception_is_soft(nr)) {
10973 vmcs12->vm_exit_instruction_len =
10974 vcpu->arch.event_exit_inst_len;
10975 idt_vectoring |= INTR_TYPE_SOFT_EXCEPTION;
10976 } else
10977 idt_vectoring |= INTR_TYPE_HARD_EXCEPTION;
10978
10979 if (vcpu->arch.exception.has_error_code) {
10980 idt_vectoring |= VECTORING_INFO_DELIVER_CODE_MASK;
10981 vmcs12->idt_vectoring_error_code =
10982 vcpu->arch.exception.error_code;
10983 }
10984
10985 vmcs12->idt_vectoring_info_field = idt_vectoring;
Jan Kiszkacd2633c2013-10-23 17:42:15 +010010986 } else if (vcpu->arch.nmi_injected) {
Jan Kiszka5f3d5792013-04-14 12:12:46 +020010987 vmcs12->idt_vectoring_info_field =
10988 INTR_TYPE_NMI_INTR | INTR_INFO_VALID_MASK | NMI_VECTOR;
10989 } else if (vcpu->arch.interrupt.pending) {
10990 nr = vcpu->arch.interrupt.nr;
10991 idt_vectoring = nr | VECTORING_INFO_VALID_MASK;
10992
10993 if (vcpu->arch.interrupt.soft) {
10994 idt_vectoring |= INTR_TYPE_SOFT_INTR;
10995 vmcs12->vm_entry_instruction_len =
10996 vcpu->arch.event_exit_inst_len;
10997 } else
10998 idt_vectoring |= INTR_TYPE_EXT_INTR;
10999
11000 vmcs12->idt_vectoring_info_field = idt_vectoring;
11001 }
11002}
11003
Jan Kiszkab6b8a142014-03-07 20:03:12 +010011004static int vmx_check_nested_events(struct kvm_vcpu *vcpu, bool external_intr)
11005{
11006 struct vcpu_vmx *vmx = to_vmx(vcpu);
Wanpeng Libfcf83b2017-08-24 03:35:11 -070011007 unsigned long exit_qual;
Jan Kiszkab6b8a142014-03-07 20:03:12 +010011008
Wanpeng Li274bba52017-08-24 03:35:08 -070011009 if (kvm_event_needs_reinjection(vcpu))
Wanpeng Liacc9ab62017-02-27 04:24:39 -080011010 return -EBUSY;
11011
Wanpeng Libfcf83b2017-08-24 03:35:11 -070011012 if (vcpu->arch.exception.pending &&
11013 nested_vmx_check_exception(vcpu, &exit_qual)) {
11014 if (vmx->nested.nested_run_pending)
11015 return -EBUSY;
11016 nested_vmx_inject_exception_vmexit(vcpu, exit_qual);
11017 vcpu->arch.exception.pending = false;
11018 return 0;
11019 }
11020
Jan Kiszkaf4124502014-03-07 20:03:13 +010011021 if (nested_cpu_has_preemption_timer(get_vmcs12(vcpu)) &&
11022 vmx->nested.preemption_timer_expired) {
11023 if (vmx->nested.nested_run_pending)
11024 return -EBUSY;
11025 nested_vmx_vmexit(vcpu, EXIT_REASON_PREEMPTION_TIMER, 0, 0);
11026 return 0;
11027 }
11028
Jan Kiszkab6b8a142014-03-07 20:03:12 +010011029 if (vcpu->arch.nmi_pending && nested_exit_on_nmi(vcpu)) {
Wanpeng Liacc9ab62017-02-27 04:24:39 -080011030 if (vmx->nested.nested_run_pending)
Jan Kiszkab6b8a142014-03-07 20:03:12 +010011031 return -EBUSY;
11032 nested_vmx_vmexit(vcpu, EXIT_REASON_EXCEPTION_NMI,
11033 NMI_VECTOR | INTR_TYPE_NMI_INTR |
11034 INTR_INFO_VALID_MASK, 0);
11035 /*
11036 * The NMI-triggered VM exit counts as injection:
11037 * clear this one and block further NMIs.
11038 */
11039 vcpu->arch.nmi_pending = 0;
11040 vmx_set_nmi_mask(vcpu, true);
11041 return 0;
11042 }
11043
11044 if ((kvm_cpu_has_interrupt(vcpu) || external_intr) &&
11045 nested_exit_on_intr(vcpu)) {
11046 if (vmx->nested.nested_run_pending)
11047 return -EBUSY;
11048 nested_vmx_vmexit(vcpu, EXIT_REASON_EXTERNAL_INTERRUPT, 0, 0);
Wincy Van705699a2015-02-03 23:58:17 +080011049 return 0;
Jan Kiszkab6b8a142014-03-07 20:03:12 +010011050 }
11051
David Hildenbrand6342c502017-01-25 11:58:58 +010011052 vmx_complete_nested_posted_interrupt(vcpu);
11053 return 0;
Jan Kiszkab6b8a142014-03-07 20:03:12 +010011054}
11055
Jan Kiszkaf4124502014-03-07 20:03:13 +010011056static u32 vmx_get_preemption_timer_value(struct kvm_vcpu *vcpu)
11057{
11058 ktime_t remaining =
11059 hrtimer_get_remaining(&to_vmx(vcpu)->nested.preemption_timer);
11060 u64 value;
11061
11062 if (ktime_to_ns(remaining) <= 0)
11063 return 0;
11064
11065 value = ktime_to_ns(remaining) * vcpu->arch.virtual_tsc_khz;
11066 do_div(value, 1000000);
11067 return value >> VMX_MISC_EMULATED_PREEMPTION_TIMER_RATE;
11068}
11069
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011070/*
Jim Mattsoncf8b84f2016-11-30 12:03:42 -080011071 * Update the guest state fields of vmcs12 to reflect changes that
11072 * occurred while L2 was running. (The "IA-32e mode guest" bit of the
11073 * VM-entry controls is also updated, since this is really a guest
11074 * state bit.)
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011075 */
Jim Mattsoncf8b84f2016-11-30 12:03:42 -080011076static void sync_vmcs12(struct kvm_vcpu *vcpu, struct vmcs12 *vmcs12)
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011077{
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011078 vmcs12->guest_cr0 = vmcs12_guest_cr0(vcpu, vmcs12);
11079 vmcs12->guest_cr4 = vmcs12_guest_cr4(vcpu, vmcs12);
11080
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011081 vmcs12->guest_rsp = kvm_register_read(vcpu, VCPU_REGS_RSP);
11082 vmcs12->guest_rip = kvm_register_read(vcpu, VCPU_REGS_RIP);
11083 vmcs12->guest_rflags = vmcs_readl(GUEST_RFLAGS);
11084
11085 vmcs12->guest_es_selector = vmcs_read16(GUEST_ES_SELECTOR);
11086 vmcs12->guest_cs_selector = vmcs_read16(GUEST_CS_SELECTOR);
11087 vmcs12->guest_ss_selector = vmcs_read16(GUEST_SS_SELECTOR);
11088 vmcs12->guest_ds_selector = vmcs_read16(GUEST_DS_SELECTOR);
11089 vmcs12->guest_fs_selector = vmcs_read16(GUEST_FS_SELECTOR);
11090 vmcs12->guest_gs_selector = vmcs_read16(GUEST_GS_SELECTOR);
11091 vmcs12->guest_ldtr_selector = vmcs_read16(GUEST_LDTR_SELECTOR);
11092 vmcs12->guest_tr_selector = vmcs_read16(GUEST_TR_SELECTOR);
11093 vmcs12->guest_es_limit = vmcs_read32(GUEST_ES_LIMIT);
11094 vmcs12->guest_cs_limit = vmcs_read32(GUEST_CS_LIMIT);
11095 vmcs12->guest_ss_limit = vmcs_read32(GUEST_SS_LIMIT);
11096 vmcs12->guest_ds_limit = vmcs_read32(GUEST_DS_LIMIT);
11097 vmcs12->guest_fs_limit = vmcs_read32(GUEST_FS_LIMIT);
11098 vmcs12->guest_gs_limit = vmcs_read32(GUEST_GS_LIMIT);
11099 vmcs12->guest_ldtr_limit = vmcs_read32(GUEST_LDTR_LIMIT);
11100 vmcs12->guest_tr_limit = vmcs_read32(GUEST_TR_LIMIT);
11101 vmcs12->guest_gdtr_limit = vmcs_read32(GUEST_GDTR_LIMIT);
11102 vmcs12->guest_idtr_limit = vmcs_read32(GUEST_IDTR_LIMIT);
11103 vmcs12->guest_es_ar_bytes = vmcs_read32(GUEST_ES_AR_BYTES);
11104 vmcs12->guest_cs_ar_bytes = vmcs_read32(GUEST_CS_AR_BYTES);
11105 vmcs12->guest_ss_ar_bytes = vmcs_read32(GUEST_SS_AR_BYTES);
11106 vmcs12->guest_ds_ar_bytes = vmcs_read32(GUEST_DS_AR_BYTES);
11107 vmcs12->guest_fs_ar_bytes = vmcs_read32(GUEST_FS_AR_BYTES);
11108 vmcs12->guest_gs_ar_bytes = vmcs_read32(GUEST_GS_AR_BYTES);
11109 vmcs12->guest_ldtr_ar_bytes = vmcs_read32(GUEST_LDTR_AR_BYTES);
11110 vmcs12->guest_tr_ar_bytes = vmcs_read32(GUEST_TR_AR_BYTES);
11111 vmcs12->guest_es_base = vmcs_readl(GUEST_ES_BASE);
11112 vmcs12->guest_cs_base = vmcs_readl(GUEST_CS_BASE);
11113 vmcs12->guest_ss_base = vmcs_readl(GUEST_SS_BASE);
11114 vmcs12->guest_ds_base = vmcs_readl(GUEST_DS_BASE);
11115 vmcs12->guest_fs_base = vmcs_readl(GUEST_FS_BASE);
11116 vmcs12->guest_gs_base = vmcs_readl(GUEST_GS_BASE);
11117 vmcs12->guest_ldtr_base = vmcs_readl(GUEST_LDTR_BASE);
11118 vmcs12->guest_tr_base = vmcs_readl(GUEST_TR_BASE);
11119 vmcs12->guest_gdtr_base = vmcs_readl(GUEST_GDTR_BASE);
11120 vmcs12->guest_idtr_base = vmcs_readl(GUEST_IDTR_BASE);
11121
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011122 vmcs12->guest_interruptibility_info =
11123 vmcs_read32(GUEST_INTERRUPTIBILITY_INFO);
11124 vmcs12->guest_pending_dbg_exceptions =
11125 vmcs_readl(GUEST_PENDING_DBG_EXCEPTIONS);
Jan Kiszka3edf1e62014-01-04 18:47:24 +010011126 if (vcpu->arch.mp_state == KVM_MP_STATE_HALTED)
11127 vmcs12->guest_activity_state = GUEST_ACTIVITY_HLT;
11128 else
11129 vmcs12->guest_activity_state = GUEST_ACTIVITY_ACTIVE;
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011130
Jan Kiszkaf4124502014-03-07 20:03:13 +010011131 if (nested_cpu_has_preemption_timer(vmcs12)) {
11132 if (vmcs12->vm_exit_controls &
11133 VM_EXIT_SAVE_VMX_PREEMPTION_TIMER)
11134 vmcs12->vmx_preemption_timer_value =
11135 vmx_get_preemption_timer_value(vcpu);
11136 hrtimer_cancel(&to_vmx(vcpu)->nested.preemption_timer);
11137 }
Arthur Chunqi Li7854cbc2013-09-16 16:11:44 +080011138
Nadav Har'El3633cfc2013-08-05 11:07:07 +030011139 /*
11140 * In some cases (usually, nested EPT), L2 is allowed to change its
11141 * own CR3 without exiting. If it has changed it, we must keep it.
11142 * Of course, if L0 is using shadow page tables, GUEST_CR3 was defined
11143 * by L0, not L1 or L2, so we mustn't unconditionally copy it to vmcs12.
11144 *
11145 * Additionally, restore L2's PDPTR to vmcs12.
11146 */
11147 if (enable_ept) {
Paolo Bonzinif3531052015-12-03 15:49:56 +010011148 vmcs12->guest_cr3 = vmcs_readl(GUEST_CR3);
Nadav Har'El3633cfc2013-08-05 11:07:07 +030011149 vmcs12->guest_pdptr0 = vmcs_read64(GUEST_PDPTR0);
11150 vmcs12->guest_pdptr1 = vmcs_read64(GUEST_PDPTR1);
11151 vmcs12->guest_pdptr2 = vmcs_read64(GUEST_PDPTR2);
11152 vmcs12->guest_pdptr3 = vmcs_read64(GUEST_PDPTR3);
11153 }
11154
Jim Mattsond281e132017-06-01 12:44:46 -070011155 vmcs12->guest_linear_address = vmcs_readl(GUEST_LINEAR_ADDRESS);
Jan Dakinevich119a9c02016-09-04 21:22:47 +030011156
Wincy Van608406e2015-02-03 23:57:51 +080011157 if (nested_cpu_has_vid(vmcs12))
11158 vmcs12->guest_intr_status = vmcs_read16(GUEST_INTR_STATUS);
11159
Jan Kiszkac18911a2013-03-13 16:06:41 +010011160 vmcs12->vm_entry_controls =
11161 (vmcs12->vm_entry_controls & ~VM_ENTRY_IA32E_MODE) |
Gleb Natapov2961e8762013-11-25 15:37:13 +020011162 (vm_entry_controls_get(to_vmx(vcpu)) & VM_ENTRY_IA32E_MODE);
Jan Kiszkac18911a2013-03-13 16:06:41 +010011163
Jan Kiszka2996fca2014-06-16 13:59:43 +020011164 if (vmcs12->vm_exit_controls & VM_EXIT_SAVE_DEBUG_CONTROLS) {
11165 kvm_get_dr(vcpu, 7, (unsigned long *)&vmcs12->guest_dr7);
11166 vmcs12->guest_ia32_debugctl = vmcs_read64(GUEST_IA32_DEBUGCTL);
11167 }
11168
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011169 /* TODO: These cannot have changed unless we have MSR bitmaps and
11170 * the relevant bit asks not to trap the change */
Jan Kiszkab8c07d52013-04-06 13:51:21 +020011171 if (vmcs12->vm_exit_controls & VM_EXIT_SAVE_IA32_PAT)
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011172 vmcs12->guest_ia32_pat = vmcs_read64(GUEST_IA32_PAT);
Jan Kiszka10ba54a2013-08-08 16:26:31 +020011173 if (vmcs12->vm_exit_controls & VM_EXIT_SAVE_IA32_EFER)
11174 vmcs12->guest_ia32_efer = vcpu->arch.efer;
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011175 vmcs12->guest_sysenter_cs = vmcs_read32(GUEST_SYSENTER_CS);
11176 vmcs12->guest_sysenter_esp = vmcs_readl(GUEST_SYSENTER_ESP);
11177 vmcs12->guest_sysenter_eip = vmcs_readl(GUEST_SYSENTER_EIP);
Paolo Bonzinia87036a2016-03-08 09:52:13 +010011178 if (kvm_mpx_supported())
Paolo Bonzini36be0b92014-02-24 12:30:04 +010011179 vmcs12->guest_bndcfgs = vmcs_read64(GUEST_BNDCFGS);
Jim Mattsoncf8b84f2016-11-30 12:03:42 -080011180}
11181
11182/*
11183 * prepare_vmcs12 is part of what we need to do when the nested L2 guest exits
11184 * and we want to prepare to run its L1 parent. L1 keeps a vmcs for L2 (vmcs12),
11185 * and this function updates it to reflect the changes to the guest state while
11186 * L2 was running (and perhaps made some exits which were handled directly by L0
11187 * without going back to L1), and to reflect the exit reason.
11188 * Note that we do not have to copy here all VMCS fields, just those that
11189 * could have changed by the L2 guest or the exit - i.e., the guest-state and
11190 * exit-information fields only. Other fields are modified by L1 with VMWRITE,
11191 * which already writes to vmcs12 directly.
11192 */
11193static void prepare_vmcs12(struct kvm_vcpu *vcpu, struct vmcs12 *vmcs12,
11194 u32 exit_reason, u32 exit_intr_info,
11195 unsigned long exit_qualification)
11196{
11197 /* update guest state fields: */
11198 sync_vmcs12(vcpu, vmcs12);
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011199
11200 /* update exit information fields: */
11201
Jan Kiszka533558b2014-01-04 18:47:20 +010011202 vmcs12->vm_exit_reason = exit_reason;
11203 vmcs12->exit_qualification = exit_qualification;
Jan Kiszka533558b2014-01-04 18:47:20 +010011204 vmcs12->vm_exit_intr_info = exit_intr_info;
Paolo Bonzini7313c692017-07-27 10:31:25 +020011205
Jan Kiszka5f3d5792013-04-14 12:12:46 +020011206 vmcs12->idt_vectoring_info_field = 0;
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011207 vmcs12->vm_exit_instruction_len = vmcs_read32(VM_EXIT_INSTRUCTION_LEN);
11208 vmcs12->vmx_instruction_info = vmcs_read32(VMX_INSTRUCTION_INFO);
11209
Jan Kiszka5f3d5792013-04-14 12:12:46 +020011210 if (!(vmcs12->vm_exit_reason & VMX_EXIT_REASONS_FAILED_VMENTRY)) {
Jim Mattson7cdc2d62017-07-06 16:33:05 -070011211 vmcs12->launch_state = 1;
11212
Jan Kiszka5f3d5792013-04-14 12:12:46 +020011213 /* vm_entry_intr_info_field is cleared on exit. Emulate this
11214 * instead of reading the real value. */
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011215 vmcs12->vm_entry_intr_info_field &= ~INTR_INFO_VALID_MASK;
Jan Kiszka5f3d5792013-04-14 12:12:46 +020011216
11217 /*
11218 * Transfer the event that L0 or L1 may wanted to inject into
11219 * L2 to IDT_VECTORING_INFO_FIELD.
11220 */
11221 vmcs12_save_pending_event(vcpu, vmcs12);
11222 }
11223
11224 /*
11225 * Drop what we picked up for L2 via vmx_complete_interrupts. It is
11226 * preserved above and would only end up incorrectly in L1.
11227 */
11228 vcpu->arch.nmi_injected = false;
11229 kvm_clear_exception_queue(vcpu);
11230 kvm_clear_interrupt_queue(vcpu);
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011231}
11232
11233/*
11234 * A part of what we need to when the nested L2 guest exits and we want to
11235 * run its L1 parent, is to reset L1's guest state to the host state specified
11236 * in vmcs12.
11237 * This function is to be called not only on normal nested exit, but also on
11238 * a nested entry failure, as explained in Intel's spec, 3B.23.7 ("VM-Entry
11239 * Failures During or After Loading Guest State").
11240 * This function should be called when the active VMCS is L1's (vmcs01).
11241 */
Jan Kiszka733568f2013-02-23 15:07:47 +010011242static void load_vmcs12_host_state(struct kvm_vcpu *vcpu,
11243 struct vmcs12 *vmcs12)
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011244{
Arthur Chunqi Li21feb4e2013-07-15 16:04:08 +080011245 struct kvm_segment seg;
Jim Mattsonca0bde22016-11-30 12:03:46 -080011246 u32 entry_failure_code;
Arthur Chunqi Li21feb4e2013-07-15 16:04:08 +080011247
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011248 if (vmcs12->vm_exit_controls & VM_EXIT_LOAD_IA32_EFER)
11249 vcpu->arch.efer = vmcs12->host_ia32_efer;
Jan Kiszkad1fa0352013-04-14 12:44:54 +020011250 else if (vmcs12->vm_exit_controls & VM_EXIT_HOST_ADDR_SPACE_SIZE)
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011251 vcpu->arch.efer |= (EFER_LMA | EFER_LME);
11252 else
11253 vcpu->arch.efer &= ~(EFER_LMA | EFER_LME);
11254 vmx_set_efer(vcpu, vcpu->arch.efer);
11255
11256 kvm_register_write(vcpu, VCPU_REGS_RSP, vmcs12->host_rsp);
11257 kvm_register_write(vcpu, VCPU_REGS_RIP, vmcs12->host_rip);
H. Peter Anvin1adfa762013-04-27 16:10:11 -070011258 vmx_set_rflags(vcpu, X86_EFLAGS_FIXED);
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011259 /*
11260 * Note that calling vmx_set_cr0 is important, even if cr0 hasn't
Paolo Bonzinibd7e5b02017-02-03 21:18:52 -080011261 * actually changed, because vmx_set_cr0 refers to efer set above.
11262 *
11263 * CR0_GUEST_HOST_MASK is already set in the original vmcs01
11264 * (KVM doesn't change it);
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011265 */
Paolo Bonzinibd7e5b02017-02-03 21:18:52 -080011266 vcpu->arch.cr0_guest_owned_bits = X86_CR0_TS;
Jan Kiszka9e3e4db2013-09-03 21:11:45 +020011267 vmx_set_cr0(vcpu, vmcs12->host_cr0);
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011268
Paolo Bonzinibd7e5b02017-02-03 21:18:52 -080011269 /* Same as above - no reason to call set_cr4_guest_host_mask(). */
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011270 vcpu->arch.cr4_guest_owned_bits = ~vmcs_readl(CR4_GUEST_HOST_MASK);
11271 kvm_set_cr4(vcpu, vmcs12->host_cr4);
11272
Jan Kiszka29bf08f2013-12-28 16:31:52 +010011273 nested_ept_uninit_mmu_context(vcpu);
Nadav Har'El155a97a2013-08-05 11:07:16 +030011274
Ladi Prosek1dc35da2016-11-30 16:03:11 +010011275 /*
11276 * Only PDPTE load can fail as the value of cr3 was checked on entry and
11277 * couldn't have changed.
11278 */
11279 if (nested_vmx_load_cr3(vcpu, vmcs12->host_cr3, false, &entry_failure_code))
11280 nested_vmx_abort(vcpu, VMX_ABORT_LOAD_HOST_PDPTE_FAIL);
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011281
Gleb Natapovfeaf0c7d2013-09-25 12:51:36 +030011282 if (!enable_ept)
11283 vcpu->arch.walk_mmu->inject_page_fault = kvm_inject_page_fault;
11284
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011285 if (enable_vpid) {
11286 /*
11287 * Trivially support vpid by letting L2s share their parent
11288 * L1's vpid. TODO: move to a more elaborate solution, giving
11289 * each L2 its own vpid and exposing the vpid feature to L1.
11290 */
11291 vmx_flush_tlb(vcpu);
11292 }
Wincy Van06a55242017-04-28 13:13:59 +080011293 /* Restore posted intr vector. */
11294 if (nested_cpu_has_posted_intr(vmcs12))
11295 vmcs_write16(POSTED_INTR_NV, POSTED_INTR_VECTOR);
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011296
11297 vmcs_write32(GUEST_SYSENTER_CS, vmcs12->host_ia32_sysenter_cs);
11298 vmcs_writel(GUEST_SYSENTER_ESP, vmcs12->host_ia32_sysenter_esp);
11299 vmcs_writel(GUEST_SYSENTER_EIP, vmcs12->host_ia32_sysenter_eip);
11300 vmcs_writel(GUEST_IDTR_BASE, vmcs12->host_idtr_base);
11301 vmcs_writel(GUEST_GDTR_BASE, vmcs12->host_gdtr_base);
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011302
Paolo Bonzini36be0b92014-02-24 12:30:04 +010011303 /* If not VM_EXIT_CLEAR_BNDCFGS, the L2 value propagates to L1. */
11304 if (vmcs12->vm_exit_controls & VM_EXIT_CLEAR_BNDCFGS)
11305 vmcs_write64(GUEST_BNDCFGS, 0);
11306
Jan Kiszka44811c02013-08-04 17:17:27 +020011307 if (vmcs12->vm_exit_controls & VM_EXIT_LOAD_IA32_PAT) {
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011308 vmcs_write64(GUEST_IA32_PAT, vmcs12->host_ia32_pat);
Jan Kiszka44811c02013-08-04 17:17:27 +020011309 vcpu->arch.pat = vmcs12->host_ia32_pat;
11310 }
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011311 if (vmcs12->vm_exit_controls & VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL)
11312 vmcs_write64(GUEST_IA32_PERF_GLOBAL_CTRL,
11313 vmcs12->host_ia32_perf_global_ctrl);
Jan Kiszka503cd0c2013-03-03 13:05:44 +010011314
Arthur Chunqi Li21feb4e2013-07-15 16:04:08 +080011315 /* Set L1 segment info according to Intel SDM
11316 27.5.2 Loading Host Segment and Descriptor-Table Registers */
11317 seg = (struct kvm_segment) {
11318 .base = 0,
11319 .limit = 0xFFFFFFFF,
11320 .selector = vmcs12->host_cs_selector,
11321 .type = 11,
11322 .present = 1,
11323 .s = 1,
11324 .g = 1
11325 };
11326 if (vmcs12->vm_exit_controls & VM_EXIT_HOST_ADDR_SPACE_SIZE)
11327 seg.l = 1;
11328 else
11329 seg.db = 1;
11330 vmx_set_segment(vcpu, &seg, VCPU_SREG_CS);
11331 seg = (struct kvm_segment) {
11332 .base = 0,
11333 .limit = 0xFFFFFFFF,
11334 .type = 3,
11335 .present = 1,
11336 .s = 1,
11337 .db = 1,
11338 .g = 1
11339 };
11340 seg.selector = vmcs12->host_ds_selector;
11341 vmx_set_segment(vcpu, &seg, VCPU_SREG_DS);
11342 seg.selector = vmcs12->host_es_selector;
11343 vmx_set_segment(vcpu, &seg, VCPU_SREG_ES);
11344 seg.selector = vmcs12->host_ss_selector;
11345 vmx_set_segment(vcpu, &seg, VCPU_SREG_SS);
11346 seg.selector = vmcs12->host_fs_selector;
11347 seg.base = vmcs12->host_fs_base;
11348 vmx_set_segment(vcpu, &seg, VCPU_SREG_FS);
11349 seg.selector = vmcs12->host_gs_selector;
11350 seg.base = vmcs12->host_gs_base;
11351 vmx_set_segment(vcpu, &seg, VCPU_SREG_GS);
11352 seg = (struct kvm_segment) {
Gleb Natapov205befd2013-08-04 15:08:06 +030011353 .base = vmcs12->host_tr_base,
Arthur Chunqi Li21feb4e2013-07-15 16:04:08 +080011354 .limit = 0x67,
11355 .selector = vmcs12->host_tr_selector,
11356 .type = 11,
11357 .present = 1
11358 };
11359 vmx_set_segment(vcpu, &seg, VCPU_SREG_TR);
11360
Jan Kiszka503cd0c2013-03-03 13:05:44 +010011361 kvm_set_dr(vcpu, 7, 0x400);
11362 vmcs_write64(GUEST_IA32_DEBUGCTL, 0);
Wincy Vanff651cb2014-12-11 08:52:58 +030011363
Wincy Van3af18d92015-02-03 23:49:31 +080011364 if (cpu_has_vmx_msr_bitmap())
11365 vmx_set_msr_bitmap(vcpu);
11366
Wincy Vanff651cb2014-12-11 08:52:58 +030011367 if (nested_vmx_load_msr(vcpu, vmcs12->vm_exit_msr_load_addr,
11368 vmcs12->vm_exit_msr_load_count))
11369 nested_vmx_abort(vcpu, VMX_ABORT_LOAD_HOST_MSR_FAIL);
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011370}
11371
11372/*
11373 * Emulate an exit from nested guest (L2) to L1, i.e., prepare to run L1
11374 * and modify vmcs12 to make it see what it would expect to see there if
11375 * L2 was its real guest. Must only be called when in L2 (is_guest_mode())
11376 */
Jan Kiszka533558b2014-01-04 18:47:20 +010011377static void nested_vmx_vmexit(struct kvm_vcpu *vcpu, u32 exit_reason,
11378 u32 exit_intr_info,
11379 unsigned long exit_qualification)
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011380{
11381 struct vcpu_vmx *vmx = to_vmx(vcpu);
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011382 struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
Jim Mattsoncf3215d2016-09-06 09:33:21 -070011383 u32 vm_inst_error = 0;
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011384
Jan Kiszka5f3d5792013-04-14 12:12:46 +020011385 /* trying to cancel vmlaunch/vmresume is a bug */
11386 WARN_ON_ONCE(vmx->nested.nested_run_pending);
11387
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011388 leave_guest_mode(vcpu);
Jan Kiszka533558b2014-01-04 18:47:20 +010011389 prepare_vmcs12(vcpu, vmcs12, exit_reason, exit_intr_info,
11390 exit_qualification);
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011391
Wincy Vanff651cb2014-12-11 08:52:58 +030011392 if (nested_vmx_store_msr(vcpu, vmcs12->vm_exit_msr_store_addr,
11393 vmcs12->vm_exit_msr_store_count))
11394 nested_vmx_abort(vcpu, VMX_ABORT_SAVE_GUEST_MSR_FAIL);
11395
Jim Mattsoncf3215d2016-09-06 09:33:21 -070011396 if (unlikely(vmx->fail))
11397 vm_inst_error = vmcs_read32(VM_INSTRUCTION_ERROR);
11398
David Hildenbrand1279a6b12017-03-20 10:00:08 +010011399 vmx_switch_vmcs(vcpu, &vmx->vmcs01);
Wanpeng Lif3380ca2014-08-05 12:42:23 +080011400
Wanpeng Li6550c4d2017-07-31 19:25:27 -070011401 /*
11402 * TODO: SDM says that with acknowledge interrupt on exit, bit 31 of
11403 * the VM-exit interrupt information (valid interrupt) is always set to
11404 * 1 on EXIT_REASON_EXTERNAL_INTERRUPT, so we shouldn't need
11405 * kvm_cpu_has_interrupt(). See the commit message for details.
11406 */
11407 if (nested_exit_intr_ack_set(vcpu) &&
11408 exit_reason == EXIT_REASON_EXTERNAL_INTERRUPT &&
11409 kvm_cpu_has_interrupt(vcpu)) {
Bandan Das77b0f5d2014-04-19 18:17:45 -040011410 int irq = kvm_cpu_get_interrupt(vcpu);
11411 WARN_ON(irq < 0);
11412 vmcs12->vm_exit_intr_info = irq |
11413 INTR_INFO_VALID_MASK | INTR_TYPE_EXT_INTR;
11414 }
11415
Jan Kiszka542060e2014-01-04 18:47:21 +010011416 trace_kvm_nested_vmexit_inject(vmcs12->vm_exit_reason,
11417 vmcs12->exit_qualification,
11418 vmcs12->idt_vectoring_info_field,
11419 vmcs12->vm_exit_intr_info,
11420 vmcs12->vm_exit_intr_error_code,
11421 KVM_ISA_VMX);
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011422
Paolo Bonzini8391ce42016-07-07 14:58:33 +020011423 vm_entry_controls_reset_shadow(vmx);
11424 vm_exit_controls_reset_shadow(vmx);
Jan Kiszka36c3cc42013-02-23 22:35:37 +010011425 vmx_segment_cache_clear(vmx);
11426
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011427 /* if no vmcs02 cache requested, remove the one we used */
11428 if (VMCS02_POOL_SIZE == 0)
11429 nested_free_vmcs02(vmx, vmx->nested.current_vmptr);
11430
11431 load_vmcs12_host_state(vcpu, vmcs12);
11432
Paolo Bonzini93140062016-07-06 13:23:51 +020011433 /* Update any VMCS fields that might have changed while L2 ran */
Jim Mattson83bafef2016-10-04 10:48:38 -070011434 vmcs_write32(VM_EXIT_MSR_LOAD_COUNT, vmx->msr_autoload.nr);
11435 vmcs_write32(VM_ENTRY_MSR_LOAD_COUNT, vmx->msr_autoload.nr);
Paolo Bonziniea26e4e2016-11-01 00:39:48 +010011436 vmcs_write64(TSC_OFFSET, vcpu->arch.tsc_offset);
Paolo Bonzini93140062016-07-06 13:23:51 +020011437 if (vmx->hv_deadline_tsc == -1)
11438 vmcs_clear_bits(PIN_BASED_VM_EXEC_CONTROL,
11439 PIN_BASED_VMX_PREEMPTION_TIMER);
11440 else
11441 vmcs_set_bits(PIN_BASED_VM_EXEC_CONTROL,
11442 PIN_BASED_VMX_PREEMPTION_TIMER);
Peter Feinerc95ba922016-08-17 09:36:47 -070011443 if (kvm_has_tsc_control)
11444 decache_tsc_multiplier(vmx);
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011445
Radim Krčmářdccbfcf2016-08-08 20:16:23 +020011446 if (vmx->nested.change_vmcs01_virtual_x2apic_mode) {
11447 vmx->nested.change_vmcs01_virtual_x2apic_mode = false;
11448 vmx_set_virtual_x2apic_mode(vcpu,
11449 vcpu->arch.apic_base & X2APIC_ENABLE);
Jim Mattsonfb6c8192017-03-16 13:53:59 -070011450 } else if (!nested_cpu_has_ept(vmcs12) &&
11451 nested_cpu_has2(vmcs12,
11452 SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES)) {
11453 vmx_flush_tlb_ept_only(vcpu);
Radim Krčmářdccbfcf2016-08-08 20:16:23 +020011454 }
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011455
11456 /* This is needed for same reason as it was needed in prepare_vmcs02 */
11457 vmx->host_rsp = 0;
11458
11459 /* Unpin physical memory we referred to in vmcs02 */
11460 if (vmx->nested.apic_access_page) {
David Hildenbrand53a70da2017-08-03 18:11:05 +020011461 kvm_release_page_dirty(vmx->nested.apic_access_page);
Paolo Bonzini48d89b92014-08-26 13:27:46 +020011462 vmx->nested.apic_access_page = NULL;
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011463 }
Wanpeng Lia7c0b072014-08-21 19:46:50 +080011464 if (vmx->nested.virtual_apic_page) {
David Hildenbrand53a70da2017-08-03 18:11:05 +020011465 kvm_release_page_dirty(vmx->nested.virtual_apic_page);
Paolo Bonzini48d89b92014-08-26 13:27:46 +020011466 vmx->nested.virtual_apic_page = NULL;
Wanpeng Lia7c0b072014-08-21 19:46:50 +080011467 }
Wincy Van705699a2015-02-03 23:58:17 +080011468 if (vmx->nested.pi_desc_page) {
11469 kunmap(vmx->nested.pi_desc_page);
David Hildenbrand53a70da2017-08-03 18:11:05 +020011470 kvm_release_page_dirty(vmx->nested.pi_desc_page);
Wincy Van705699a2015-02-03 23:58:17 +080011471 vmx->nested.pi_desc_page = NULL;
11472 vmx->nested.pi_desc = NULL;
11473 }
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011474
11475 /*
Tang Chen38b99172014-09-24 15:57:54 +080011476 * We are now running in L2, mmu_notifier will force to reload the
11477 * page's hpa for L2 vmcs. Need to reload it for L1 before entering L1.
11478 */
Wanpeng Lic83b6d12016-09-06 17:20:33 +080011479 kvm_make_request(KVM_REQ_APIC_PAGE_RELOAD, vcpu);
Tang Chen38b99172014-09-24 15:57:54 +080011480
11481 /*
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011482 * Exiting from L2 to L1, we're now back to L1 which thinks it just
11483 * finished a VMLAUNCH or VMRESUME instruction, so we need to set the
11484 * success or failure flag accordingly.
11485 */
11486 if (unlikely(vmx->fail)) {
11487 vmx->fail = 0;
Jim Mattsoncf3215d2016-09-06 09:33:21 -070011488 nested_vmx_failValid(vcpu, vm_inst_error);
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011489 } else
11490 nested_vmx_succeed(vcpu);
Abel Gordon012f83c2013-04-18 14:39:25 +030011491 if (enable_shadow_vmcs)
11492 vmx->nested.sync_shadow_vmcs = true;
Jan Kiszkab6b8a142014-03-07 20:03:12 +010011493
11494 /* in case we halted in L2 */
11495 vcpu->arch.mp_state = KVM_MP_STATE_RUNNABLE;
Nadav Har'El4704d0b2011-05-25 23:11:34 +030011496}
11497
Nadav Har'El7c177932011-05-25 23:12:04 +030011498/*
Jan Kiszka42124922014-01-04 18:47:19 +010011499 * Forcibly leave nested mode in order to be able to reset the VCPU later on.
11500 */
11501static void vmx_leave_nested(struct kvm_vcpu *vcpu)
11502{
Wanpeng Li2f707d92017-03-06 04:03:28 -080011503 if (is_guest_mode(vcpu)) {
11504 to_vmx(vcpu)->nested.nested_run_pending = 0;
Jan Kiszka533558b2014-01-04 18:47:20 +010011505 nested_vmx_vmexit(vcpu, -1, 0, 0);
Wanpeng Li2f707d92017-03-06 04:03:28 -080011506 }
Jan Kiszka42124922014-01-04 18:47:19 +010011507 free_nested(to_vmx(vcpu));
11508}
11509
11510/*
Nadav Har'El7c177932011-05-25 23:12:04 +030011511 * L1's failure to enter L2 is a subset of a normal exit, as explained in
11512 * 23.7 "VM-entry failures during or after loading guest state" (this also
11513 * lists the acceptable exit-reason and exit-qualification parameters).
11514 * It should only be called before L2 actually succeeded to run, and when
11515 * vmcs01 is current (it doesn't leave_guest_mode() or switch vmcss).
11516 */
11517static void nested_vmx_entry_failure(struct kvm_vcpu *vcpu,
11518 struct vmcs12 *vmcs12,
11519 u32 reason, unsigned long qualification)
11520{
11521 load_vmcs12_host_state(vcpu, vmcs12);
11522 vmcs12->vm_exit_reason = reason | VMX_EXIT_REASONS_FAILED_VMENTRY;
11523 vmcs12->exit_qualification = qualification;
11524 nested_vmx_succeed(vcpu);
Abel Gordon012f83c2013-04-18 14:39:25 +030011525 if (enable_shadow_vmcs)
11526 to_vmx(vcpu)->nested.sync_shadow_vmcs = true;
Nadav Har'El7c177932011-05-25 23:12:04 +030011527}
11528
Joerg Roedel8a76d7f2011-04-04 12:39:27 +020011529static int vmx_check_intercept(struct kvm_vcpu *vcpu,
11530 struct x86_instruction_info *info,
11531 enum x86_intercept_stage stage)
11532{
11533 return X86EMUL_CONTINUE;
11534}
11535
Yunhong Jiang64672c92016-06-13 14:19:59 -070011536#ifdef CONFIG_X86_64
11537/* (a << shift) / divisor, return 1 if overflow otherwise 0 */
11538static inline int u64_shl_div_u64(u64 a, unsigned int shift,
11539 u64 divisor, u64 *result)
11540{
11541 u64 low = a << shift, high = a >> (64 - shift);
11542
11543 /* To avoid the overflow on divq */
11544 if (high >= divisor)
11545 return 1;
11546
11547 /* Low hold the result, high hold rem which is discarded */
11548 asm("divq %2\n\t" : "=a" (low), "=d" (high) :
11549 "rm" (divisor), "0" (low), "1" (high));
11550 *result = low;
11551
11552 return 0;
11553}
11554
11555static int vmx_set_hv_timer(struct kvm_vcpu *vcpu, u64 guest_deadline_tsc)
11556{
11557 struct vcpu_vmx *vmx = to_vmx(vcpu);
Paolo Bonzini9175d2e2016-06-27 15:08:01 +020011558 u64 tscl = rdtsc();
11559 u64 guest_tscl = kvm_read_l1_tsc(vcpu, tscl);
11560 u64 delta_tsc = max(guest_deadline_tsc, guest_tscl) - guest_tscl;
Yunhong Jiang64672c92016-06-13 14:19:59 -070011561
11562 /* Convert to host delta tsc if tsc scaling is enabled */
11563 if (vcpu->arch.tsc_scaling_ratio != kvm_default_tsc_scaling_ratio &&
11564 u64_shl_div_u64(delta_tsc,
11565 kvm_tsc_scaling_ratio_frac_bits,
11566 vcpu->arch.tsc_scaling_ratio,
11567 &delta_tsc))
11568 return -ERANGE;
11569
11570 /*
11571 * If the delta tsc can't fit in the 32 bit after the multi shift,
11572 * we can't use the preemption timer.
11573 * It's possible that it fits on later vmentries, but checking
11574 * on every vmentry is costly so we just use an hrtimer.
11575 */
11576 if (delta_tsc >> (cpu_preemption_timer_multi + 32))
11577 return -ERANGE;
11578
11579 vmx->hv_deadline_tsc = tscl + delta_tsc;
11580 vmcs_set_bits(PIN_BASED_VM_EXEC_CONTROL,
11581 PIN_BASED_VMX_PREEMPTION_TIMER);
Wanpeng Lic8533542017-06-29 06:28:09 -070011582
11583 return delta_tsc == 0;
Yunhong Jiang64672c92016-06-13 14:19:59 -070011584}
11585
11586static void vmx_cancel_hv_timer(struct kvm_vcpu *vcpu)
11587{
11588 struct vcpu_vmx *vmx = to_vmx(vcpu);
11589 vmx->hv_deadline_tsc = -1;
11590 vmcs_clear_bits(PIN_BASED_VM_EXEC_CONTROL,
11591 PIN_BASED_VMX_PREEMPTION_TIMER);
11592}
11593#endif
11594
Paolo Bonzini48d89b92014-08-26 13:27:46 +020011595static void vmx_sched_in(struct kvm_vcpu *vcpu, int cpu)
Radim Krčmářae97a3b2014-08-21 18:08:06 +020011596{
Radim Krčmářb4a2d312014-08-21 18:08:08 +020011597 if (ple_gap)
11598 shrink_ple_window(vcpu);
Radim Krčmářae97a3b2014-08-21 18:08:06 +020011599}
11600
Kai Huang843e4332015-01-28 10:54:28 +080011601static void vmx_slot_enable_log_dirty(struct kvm *kvm,
11602 struct kvm_memory_slot *slot)
11603{
11604 kvm_mmu_slot_leaf_clear_dirty(kvm, slot);
11605 kvm_mmu_slot_largepage_remove_write_access(kvm, slot);
11606}
11607
11608static void vmx_slot_disable_log_dirty(struct kvm *kvm,
11609 struct kvm_memory_slot *slot)
11610{
11611 kvm_mmu_slot_set_dirty(kvm, slot);
11612}
11613
11614static void vmx_flush_log_dirty(struct kvm *kvm)
11615{
11616 kvm_flush_pml_buffers(kvm);
11617}
11618
Bandan Dasc5f983f2017-05-05 15:25:14 -040011619static int vmx_write_pml_buffer(struct kvm_vcpu *vcpu)
11620{
11621 struct vmcs12 *vmcs12;
11622 struct vcpu_vmx *vmx = to_vmx(vcpu);
11623 gpa_t gpa;
11624 struct page *page = NULL;
11625 u64 *pml_address;
11626
11627 if (is_guest_mode(vcpu)) {
11628 WARN_ON_ONCE(vmx->nested.pml_full);
11629
11630 /*
11631 * Check if PML is enabled for the nested guest.
11632 * Whether eptp bit 6 is set is already checked
11633 * as part of A/D emulation.
11634 */
11635 vmcs12 = get_vmcs12(vcpu);
11636 if (!nested_cpu_has_pml(vmcs12))
11637 return 0;
11638
Dan Carpenter47698862017-05-10 22:43:17 +030011639 if (vmcs12->guest_pml_index >= PML_ENTITY_NUM) {
Bandan Dasc5f983f2017-05-05 15:25:14 -040011640 vmx->nested.pml_full = true;
11641 return 1;
11642 }
11643
11644 gpa = vmcs_read64(GUEST_PHYSICAL_ADDRESS) & ~0xFFFull;
11645
David Hildenbrand5e2f30b2017-08-03 18:11:04 +020011646 page = kvm_vcpu_gpa_to_page(vcpu, vmcs12->pml_address);
11647 if (is_error_page(page))
Bandan Dasc5f983f2017-05-05 15:25:14 -040011648 return 0;
11649
11650 pml_address = kmap(page);
11651 pml_address[vmcs12->guest_pml_index--] = gpa;
11652 kunmap(page);
David Hildenbrand53a70da2017-08-03 18:11:05 +020011653 kvm_release_page_clean(page);
Bandan Dasc5f983f2017-05-05 15:25:14 -040011654 }
11655
11656 return 0;
11657}
11658
Kai Huang843e4332015-01-28 10:54:28 +080011659static void vmx_enable_log_dirty_pt_masked(struct kvm *kvm,
11660 struct kvm_memory_slot *memslot,
11661 gfn_t offset, unsigned long mask)
11662{
11663 kvm_mmu_clear_dirty_pt_masked(kvm, memslot, offset, mask);
11664}
11665
Feng Wuefc64402015-09-18 22:29:51 +080011666/*
Feng Wubf9f6ac2015-09-18 22:29:55 +080011667 * This routine does the following things for vCPU which is going
11668 * to be blocked if VT-d PI is enabled.
11669 * - Store the vCPU to the wakeup list, so when interrupts happen
11670 * we can find the right vCPU to wake up.
11671 * - Change the Posted-interrupt descriptor as below:
11672 * 'NDST' <-- vcpu->pre_pcpu
11673 * 'NV' <-- POSTED_INTR_WAKEUP_VECTOR
11674 * - If 'ON' is set during this process, which means at least one
11675 * interrupt is posted for this vCPU, we cannot block it, in
11676 * this case, return 1, otherwise, return 0.
11677 *
11678 */
Yunhong Jiangbc225122016-06-13 14:19:58 -070011679static int pi_pre_block(struct kvm_vcpu *vcpu)
Feng Wubf9f6ac2015-09-18 22:29:55 +080011680{
11681 unsigned long flags;
11682 unsigned int dest;
11683 struct pi_desc old, new;
11684 struct pi_desc *pi_desc = vcpu_to_pi_desc(vcpu);
11685
11686 if (!kvm_arch_has_assigned_device(vcpu->kvm) ||
Yang Zhanga0052192016-06-13 09:56:56 +080011687 !irq_remapping_cap(IRQ_POSTING_CAP) ||
11688 !kvm_vcpu_apicv_active(vcpu))
Feng Wubf9f6ac2015-09-18 22:29:55 +080011689 return 0;
11690
11691 vcpu->pre_pcpu = vcpu->cpu;
11692 spin_lock_irqsave(&per_cpu(blocked_vcpu_on_cpu_lock,
11693 vcpu->pre_pcpu), flags);
11694 list_add_tail(&vcpu->blocked_vcpu_list,
11695 &per_cpu(blocked_vcpu_on_cpu,
11696 vcpu->pre_pcpu));
11697 spin_unlock_irqrestore(&per_cpu(blocked_vcpu_on_cpu_lock,
11698 vcpu->pre_pcpu), flags);
11699
11700 do {
11701 old.control = new.control = pi_desc->control;
11702
11703 /*
11704 * We should not block the vCPU if
11705 * an interrupt is posted for it.
11706 */
11707 if (pi_test_on(pi_desc) == 1) {
11708 spin_lock_irqsave(&per_cpu(blocked_vcpu_on_cpu_lock,
11709 vcpu->pre_pcpu), flags);
11710 list_del(&vcpu->blocked_vcpu_list);
11711 spin_unlock_irqrestore(
11712 &per_cpu(blocked_vcpu_on_cpu_lock,
11713 vcpu->pre_pcpu), flags);
11714 vcpu->pre_pcpu = -1;
11715
11716 return 1;
11717 }
11718
11719 WARN((pi_desc->sn == 1),
11720 "Warning: SN field of posted-interrupts "
11721 "is set before blocking\n");
11722
11723 /*
11724 * Since vCPU can be preempted during this process,
11725 * vcpu->cpu could be different with pre_pcpu, we
11726 * need to set pre_pcpu as the destination of wakeup
11727 * notification event, then we can find the right vCPU
11728 * to wakeup in wakeup handler if interrupts happen
11729 * when the vCPU is in blocked state.
11730 */
11731 dest = cpu_physical_id(vcpu->pre_pcpu);
11732
11733 if (x2apic_enabled())
11734 new.ndst = dest;
11735 else
11736 new.ndst = (dest << 8) & 0xFF00;
11737
11738 /* set 'NV' to 'wakeup vector' */
11739 new.nv = POSTED_INTR_WAKEUP_VECTOR;
11740 } while (cmpxchg(&pi_desc->control, old.control,
11741 new.control) != old.control);
11742
11743 return 0;
11744}
11745
Yunhong Jiangbc225122016-06-13 14:19:58 -070011746static int vmx_pre_block(struct kvm_vcpu *vcpu)
11747{
11748 if (pi_pre_block(vcpu))
11749 return 1;
11750
Yunhong Jiang64672c92016-06-13 14:19:59 -070011751 if (kvm_lapic_hv_timer_in_use(vcpu))
11752 kvm_lapic_switch_to_sw_timer(vcpu);
11753
Yunhong Jiangbc225122016-06-13 14:19:58 -070011754 return 0;
11755}
11756
11757static void pi_post_block(struct kvm_vcpu *vcpu)
Feng Wubf9f6ac2015-09-18 22:29:55 +080011758{
11759 struct pi_desc *pi_desc = vcpu_to_pi_desc(vcpu);
11760 struct pi_desc old, new;
11761 unsigned int dest;
11762 unsigned long flags;
11763
11764 if (!kvm_arch_has_assigned_device(vcpu->kvm) ||
Yang Zhanga0052192016-06-13 09:56:56 +080011765 !irq_remapping_cap(IRQ_POSTING_CAP) ||
11766 !kvm_vcpu_apicv_active(vcpu))
Feng Wubf9f6ac2015-09-18 22:29:55 +080011767 return;
11768
11769 do {
11770 old.control = new.control = pi_desc->control;
11771
11772 dest = cpu_physical_id(vcpu->cpu);
11773
11774 if (x2apic_enabled())
11775 new.ndst = dest;
11776 else
11777 new.ndst = (dest << 8) & 0xFF00;
11778
11779 /* Allow posting non-urgent interrupts */
11780 new.sn = 0;
11781
11782 /* set 'NV' to 'notification vector' */
11783 new.nv = POSTED_INTR_VECTOR;
11784 } while (cmpxchg(&pi_desc->control, old.control,
11785 new.control) != old.control);
11786
11787 if(vcpu->pre_pcpu != -1) {
11788 spin_lock_irqsave(
11789 &per_cpu(blocked_vcpu_on_cpu_lock,
11790 vcpu->pre_pcpu), flags);
11791 list_del(&vcpu->blocked_vcpu_list);
11792 spin_unlock_irqrestore(
11793 &per_cpu(blocked_vcpu_on_cpu_lock,
11794 vcpu->pre_pcpu), flags);
11795 vcpu->pre_pcpu = -1;
11796 }
11797}
11798
Yunhong Jiangbc225122016-06-13 14:19:58 -070011799static void vmx_post_block(struct kvm_vcpu *vcpu)
11800{
Yunhong Jiang64672c92016-06-13 14:19:59 -070011801 if (kvm_x86_ops->set_hv_timer)
11802 kvm_lapic_switch_to_hv_timer(vcpu);
11803
Yunhong Jiangbc225122016-06-13 14:19:58 -070011804 pi_post_block(vcpu);
11805}
11806
Feng Wubf9f6ac2015-09-18 22:29:55 +080011807/*
Feng Wuefc64402015-09-18 22:29:51 +080011808 * vmx_update_pi_irte - set IRTE for Posted-Interrupts
11809 *
11810 * @kvm: kvm
11811 * @host_irq: host irq of the interrupt
11812 * @guest_irq: gsi of the interrupt
11813 * @set: set or unset PI
11814 * returns 0 on success, < 0 on failure
11815 */
11816static int vmx_update_pi_irte(struct kvm *kvm, unsigned int host_irq,
11817 uint32_t guest_irq, bool set)
11818{
11819 struct kvm_kernel_irq_routing_entry *e;
11820 struct kvm_irq_routing_table *irq_rt;
11821 struct kvm_lapic_irq irq;
11822 struct kvm_vcpu *vcpu;
11823 struct vcpu_data vcpu_info;
11824 int idx, ret = -EINVAL;
11825
11826 if (!kvm_arch_has_assigned_device(kvm) ||
Yang Zhanga0052192016-06-13 09:56:56 +080011827 !irq_remapping_cap(IRQ_POSTING_CAP) ||
11828 !kvm_vcpu_apicv_active(kvm->vcpus[0]))
Feng Wuefc64402015-09-18 22:29:51 +080011829 return 0;
11830
11831 idx = srcu_read_lock(&kvm->irq_srcu);
11832 irq_rt = srcu_dereference(kvm->irq_routing, &kvm->irq_srcu);
11833 BUG_ON(guest_irq >= irq_rt->nr_rt_entries);
11834
11835 hlist_for_each_entry(e, &irq_rt->map[guest_irq], link) {
11836 if (e->type != KVM_IRQ_ROUTING_MSI)
11837 continue;
11838 /*
11839 * VT-d PI cannot support posting multicast/broadcast
11840 * interrupts to a vCPU, we still use interrupt remapping
11841 * for these kind of interrupts.
11842 *
11843 * For lowest-priority interrupts, we only support
11844 * those with single CPU as the destination, e.g. user
11845 * configures the interrupts via /proc/irq or uses
11846 * irqbalance to make the interrupts single-CPU.
11847 *
11848 * We will support full lowest-priority interrupt later.
11849 */
11850
Radim Krčmář371313132016-07-12 22:09:27 +020011851 kvm_set_msi_irq(kvm, e, &irq);
Feng Wu23a1c252016-01-25 16:53:32 +080011852 if (!kvm_intr_is_single_vcpu(kvm, &irq, &vcpu)) {
11853 /*
11854 * Make sure the IRTE is in remapped mode if
11855 * we don't handle it in posted mode.
11856 */
11857 ret = irq_set_vcpu_affinity(host_irq, NULL);
11858 if (ret < 0) {
11859 printk(KERN_INFO
11860 "failed to back to remapped mode, irq: %u\n",
11861 host_irq);
11862 goto out;
11863 }
11864
Feng Wuefc64402015-09-18 22:29:51 +080011865 continue;
Feng Wu23a1c252016-01-25 16:53:32 +080011866 }
Feng Wuefc64402015-09-18 22:29:51 +080011867
11868 vcpu_info.pi_desc_addr = __pa(vcpu_to_pi_desc(vcpu));
11869 vcpu_info.vector = irq.vector;
11870
Feng Wub6ce9782016-01-25 16:53:35 +080011871 trace_kvm_pi_irte_update(vcpu->vcpu_id, host_irq, e->gsi,
Feng Wuefc64402015-09-18 22:29:51 +080011872 vcpu_info.vector, vcpu_info.pi_desc_addr, set);
11873
11874 if (set)
11875 ret = irq_set_vcpu_affinity(host_irq, &vcpu_info);
11876 else {
11877 /* suppress notification event before unposting */
11878 pi_set_sn(vcpu_to_pi_desc(vcpu));
11879 ret = irq_set_vcpu_affinity(host_irq, NULL);
11880 pi_clear_sn(vcpu_to_pi_desc(vcpu));
11881 }
11882
11883 if (ret < 0) {
11884 printk(KERN_INFO "%s: failed to update PI IRTE\n",
11885 __func__);
11886 goto out;
11887 }
11888 }
11889
11890 ret = 0;
11891out:
11892 srcu_read_unlock(&kvm->irq_srcu, idx);
11893 return ret;
11894}
11895
Ashok Rajc45dcc72016-06-22 14:59:56 +080011896static void vmx_setup_mce(struct kvm_vcpu *vcpu)
11897{
11898 if (vcpu->arch.mcg_cap & MCG_LMCE_P)
11899 to_vmx(vcpu)->msr_ia32_feature_control_valid_bits |=
11900 FEATURE_CONTROL_LMCE;
11901 else
11902 to_vmx(vcpu)->msr_ia32_feature_control_valid_bits &=
11903 ~FEATURE_CONTROL_LMCE;
11904}
11905
Kees Cook404f6aa2016-08-08 16:29:06 -070011906static struct kvm_x86_ops vmx_x86_ops __ro_after_init = {
Avi Kivity6aa8b732006-12-10 02:21:36 -080011907 .cpu_has_kvm_support = cpu_has_kvm_support,
11908 .disabled_by_bios = vmx_disabled_by_bios,
11909 .hardware_setup = hardware_setup,
11910 .hardware_unsetup = hardware_unsetup,
Yang, Sheng002c7f72007-07-31 14:23:01 +030011911 .check_processor_compatibility = vmx_check_processor_compat,
Avi Kivity6aa8b732006-12-10 02:21:36 -080011912 .hardware_enable = hardware_enable,
11913 .hardware_disable = hardware_disable,
Sheng Yang04547152009-04-01 15:52:31 +080011914 .cpu_has_accelerated_tpr = report_flexpriority,
Paolo Bonzini6d396b52015-04-01 14:25:33 +020011915 .cpu_has_high_real_mode_segbase = vmx_has_high_real_mode_segbase,
Avi Kivity6aa8b732006-12-10 02:21:36 -080011916
11917 .vcpu_create = vmx_create_vcpu,
11918 .vcpu_free = vmx_free_vcpu,
Avi Kivity04d2cc72007-09-10 18:10:54 +030011919 .vcpu_reset = vmx_vcpu_reset,
Avi Kivity6aa8b732006-12-10 02:21:36 -080011920
Avi Kivity04d2cc72007-09-10 18:10:54 +030011921 .prepare_guest_switch = vmx_save_host_state,
Avi Kivity6aa8b732006-12-10 02:21:36 -080011922 .vcpu_load = vmx_vcpu_load,
11923 .vcpu_put = vmx_vcpu_put,
11924
Paolo Bonzinia96036b2015-11-10 11:55:36 +010011925 .update_bp_intercept = update_exception_bitmap,
Avi Kivity6aa8b732006-12-10 02:21:36 -080011926 .get_msr = vmx_get_msr,
11927 .set_msr = vmx_set_msr,
11928 .get_segment_base = vmx_get_segment_base,
11929 .get_segment = vmx_get_segment,
11930 .set_segment = vmx_set_segment,
Izik Eidus2e4d2652008-03-24 19:38:34 +020011931 .get_cpl = vmx_get_cpl,
Avi Kivity6aa8b732006-12-10 02:21:36 -080011932 .get_cs_db_l_bits = vmx_get_cs_db_l_bits,
Avi Kivitye8467fd2009-12-29 18:43:06 +020011933 .decache_cr0_guest_bits = vmx_decache_cr0_guest_bits,
Avi Kivityaff48ba2010-12-05 18:56:11 +020011934 .decache_cr3 = vmx_decache_cr3,
Anthony Liguori25c4c272007-04-27 09:29:21 +030011935 .decache_cr4_guest_bits = vmx_decache_cr4_guest_bits,
Avi Kivity6aa8b732006-12-10 02:21:36 -080011936 .set_cr0 = vmx_set_cr0,
Avi Kivity6aa8b732006-12-10 02:21:36 -080011937 .set_cr3 = vmx_set_cr3,
11938 .set_cr4 = vmx_set_cr4,
Avi Kivity6aa8b732006-12-10 02:21:36 -080011939 .set_efer = vmx_set_efer,
Avi Kivity6aa8b732006-12-10 02:21:36 -080011940 .get_idt = vmx_get_idt,
11941 .set_idt = vmx_set_idt,
11942 .get_gdt = vmx_get_gdt,
11943 .set_gdt = vmx_set_gdt,
Jan Kiszka73aaf249e2014-01-04 18:47:16 +010011944 .get_dr6 = vmx_get_dr6,
11945 .set_dr6 = vmx_set_dr6,
Gleb Natapov020df072010-04-13 10:05:23 +030011946 .set_dr7 = vmx_set_dr7,
Paolo Bonzini81908bf2014-02-21 10:32:27 +010011947 .sync_dirty_debug_regs = vmx_sync_dirty_debug_regs,
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -030011948 .cache_reg = vmx_cache_reg,
Avi Kivity6aa8b732006-12-10 02:21:36 -080011949 .get_rflags = vmx_get_rflags,
11950 .set_rflags = vmx_set_rflags,
Huaitong Hanbe94f6b2016-03-22 16:51:20 +080011951
11952 .get_pkru = vmx_get_pkru,
11953
Avi Kivity6aa8b732006-12-10 02:21:36 -080011954 .tlb_flush = vmx_flush_tlb,
Avi Kivity6aa8b732006-12-10 02:21:36 -080011955
Avi Kivity6aa8b732006-12-10 02:21:36 -080011956 .run = vmx_vcpu_run,
Avi Kivity6062d012009-03-23 17:35:17 +020011957 .handle_exit = vmx_handle_exit,
Avi Kivity6aa8b732006-12-10 02:21:36 -080011958 .skip_emulated_instruction = skip_emulated_instruction,
Glauber Costa2809f5d2009-05-12 16:21:05 -040011959 .set_interrupt_shadow = vmx_set_interrupt_shadow,
11960 .get_interrupt_shadow = vmx_get_interrupt_shadow,
Ingo Molnar102d8322007-02-19 14:37:47 +020011961 .patch_hypercall = vmx_patch_hypercall,
Eddie Dong2a8067f2007-08-06 16:29:07 +030011962 .set_irq = vmx_inject_irq,
Gleb Natapov95ba8273132009-04-21 17:45:08 +030011963 .set_nmi = vmx_inject_nmi,
Avi Kivity298101d2007-11-25 13:41:11 +020011964 .queue_exception = vmx_queue_exception,
Avi Kivityb463a6f2010-07-20 15:06:17 +030011965 .cancel_injection = vmx_cancel_injection,
Gleb Natapov78646122009-03-23 12:12:11 +020011966 .interrupt_allowed = vmx_interrupt_allowed,
Gleb Natapov95ba8273132009-04-21 17:45:08 +030011967 .nmi_allowed = vmx_nmi_allowed,
Jan Kiszka3cfc3092009-11-12 01:04:25 +010011968 .get_nmi_mask = vmx_get_nmi_mask,
11969 .set_nmi_mask = vmx_set_nmi_mask,
Gleb Natapov95ba8273132009-04-21 17:45:08 +030011970 .enable_nmi_window = enable_nmi_window,
11971 .enable_irq_window = enable_irq_window,
11972 .update_cr8_intercept = update_cr8_intercept,
Yang Zhang8d146952013-01-25 10:18:50 +080011973 .set_virtual_x2apic_mode = vmx_set_virtual_x2apic_mode,
Tang Chen38b99172014-09-24 15:57:54 +080011974 .set_apic_access_page_addr = vmx_set_apic_access_page_addr,
Andrey Smetanind62caab2015-11-10 15:36:33 +030011975 .get_enable_apicv = vmx_get_enable_apicv,
11976 .refresh_apicv_exec_ctrl = vmx_refresh_apicv_exec_ctrl,
Yang Zhangc7c9c562013-01-25 10:18:51 +080011977 .load_eoi_exitmap = vmx_load_eoi_exitmap,
Paolo Bonzini967235d2016-12-19 14:03:45 +010011978 .apicv_post_state_restore = vmx_apicv_post_state_restore,
Yang Zhangc7c9c562013-01-25 10:18:51 +080011979 .hwapic_irr_update = vmx_hwapic_irr_update,
11980 .hwapic_isr_update = vmx_hwapic_isr_update,
Yang Zhanga20ed542013-04-11 19:25:15 +080011981 .sync_pir_to_irr = vmx_sync_pir_to_irr,
11982 .deliver_posted_interrupt = vmx_deliver_posted_interrupt,
Gleb Natapov95ba8273132009-04-21 17:45:08 +030011983
Izik Eiduscbc94022007-10-25 00:29:55 +020011984 .set_tss_addr = vmx_set_tss_addr,
Sheng Yang67253af2008-04-25 10:20:22 +080011985 .get_tdp_level = get_ept_level,
Sheng Yang4b12f0d2009-04-27 20:35:42 +080011986 .get_mt_mask = vmx_get_mt_mask,
Marcelo Tosatti229456f2009-06-17 09:22:14 -030011987
Avi Kivity586f9602010-11-18 13:09:54 +020011988 .get_exit_info = vmx_get_exit_info,
Avi Kivity586f9602010-11-18 13:09:54 +020011989
Sheng Yang17cc3932010-01-05 19:02:27 +080011990 .get_lpage_level = vmx_get_lpage_level,
Sheng Yang0e851882009-12-18 16:48:46 +080011991
11992 .cpuid_update = vmx_cpuid_update,
Sheng Yang4e47c7a2009-12-18 16:48:47 +080011993
11994 .rdtscp_supported = vmx_rdtscp_supported,
Mao, Junjiead756a12012-07-02 01:18:48 +000011995 .invpcid_supported = vmx_invpcid_supported,
Joerg Roedeld4330ef2010-04-22 12:33:11 +020011996
11997 .set_supported_cpuid = vmx_set_supported_cpuid,
Sheng Yangf5f48ee2010-06-30 12:25:15 +080011998
11999 .has_wbinvd_exit = cpu_has_vmx_wbinvd_exit,
Zachary Amsden99e3e302010-08-19 22:07:17 -100012000
12001 .write_tsc_offset = vmx_write_tsc_offset,
Joerg Roedel1c97f0a2010-09-10 17:30:41 +020012002
12003 .set_tdp_cr3 = vmx_set_cr3,
Joerg Roedel8a76d7f2011-04-04 12:39:27 +020012004
12005 .check_intercept = vmx_check_intercept,
Yang Zhanga547c6d2013-04-11 19:25:10 +080012006 .handle_external_intr = vmx_handle_external_intr,
Liu, Jinsongda8999d2014-02-24 10:55:46 +000012007 .mpx_supported = vmx_mpx_supported,
Wanpeng Li55412b22014-12-02 19:21:30 +080012008 .xsaves_supported = vmx_xsaves_supported,
Jan Kiszkab6b8a142014-03-07 20:03:12 +010012009
12010 .check_nested_events = vmx_check_nested_events,
Radim Krčmářae97a3b2014-08-21 18:08:06 +020012011
12012 .sched_in = vmx_sched_in,
Kai Huang843e4332015-01-28 10:54:28 +080012013
12014 .slot_enable_log_dirty = vmx_slot_enable_log_dirty,
12015 .slot_disable_log_dirty = vmx_slot_disable_log_dirty,
12016 .flush_log_dirty = vmx_flush_log_dirty,
12017 .enable_log_dirty_pt_masked = vmx_enable_log_dirty_pt_masked,
Bandan Dasc5f983f2017-05-05 15:25:14 -040012018 .write_log_dirty = vmx_write_pml_buffer,
Wei Huang25462f7f2015-06-19 15:45:05 +020012019
Feng Wubf9f6ac2015-09-18 22:29:55 +080012020 .pre_block = vmx_pre_block,
12021 .post_block = vmx_post_block,
12022
Wei Huang25462f7f2015-06-19 15:45:05 +020012023 .pmu_ops = &intel_pmu_ops,
Feng Wuefc64402015-09-18 22:29:51 +080012024
12025 .update_pi_irte = vmx_update_pi_irte,
Yunhong Jiang64672c92016-06-13 14:19:59 -070012026
12027#ifdef CONFIG_X86_64
12028 .set_hv_timer = vmx_set_hv_timer,
12029 .cancel_hv_timer = vmx_cancel_hv_timer,
12030#endif
Ashok Rajc45dcc72016-06-22 14:59:56 +080012031
12032 .setup_mce = vmx_setup_mce,
Avi Kivity6aa8b732006-12-10 02:21:36 -080012033};
12034
12035static int __init vmx_init(void)
12036{
Tiejun Chen34a1cd62014-10-28 10:14:48 +080012037 int r = kvm_init(&vmx_x86_ops, sizeof(struct vcpu_vmx),
12038 __alignof__(struct vcpu_vmx), THIS_MODULE);
He, Qingfdef3ad2007-04-30 09:45:24 +030012039 if (r)
Tiejun Chen34a1cd62014-10-28 10:14:48 +080012040 return r;
Sheng Yang25c5f222008-03-28 13:18:56 +080012041
Dave Young2965faa2015-09-09 15:38:55 -070012042#ifdef CONFIG_KEXEC_CORE
Zhang Yanfei8f536b72012-12-06 23:43:34 +080012043 rcu_assign_pointer(crash_vmclear_loaded_vmcss,
12044 crash_vmclear_local_loaded_vmcss);
12045#endif
12046
He, Qingfdef3ad2007-04-30 09:45:24 +030012047 return 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -080012048}
12049
12050static void __exit vmx_exit(void)
12051{
Dave Young2965faa2015-09-09 15:38:55 -070012052#ifdef CONFIG_KEXEC_CORE
Monam Agarwal3b63a432014-03-22 12:28:10 +053012053 RCU_INIT_POINTER(crash_vmclear_loaded_vmcss, NULL);
Zhang Yanfei8f536b72012-12-06 23:43:34 +080012054 synchronize_rcu();
12055#endif
12056
Zhang Xiantaocb498ea2007-11-14 20:39:31 +080012057 kvm_exit();
Avi Kivity6aa8b732006-12-10 02:21:36 -080012058}
12059
12060module_init(vmx_init)
12061module_exit(vmx_exit)